The Events Calendar - Version 3.1

Version Description

  • Significant performance improvements to month view (thanks to Grgory for the initial report!)
  • Improved compatibility with Canvas and other themes by WooThemes (thanks to Paul Pruneau for the heads up!)
  • Fixed several bugs relating to event cutoff times and month view (thanks jadonulrich for the report!)
  • The correct default view now applies to event category listings
  • Tag cloud links now work on both events and non-events pages (thanks to user 'onelittlemoose' for the report!)
  • Days with no events are no longer linked from the month view (thanks to reneeyoxon for the original report!)
  • Fixed a bug where the selected category would not apply after you navigate to the next month in Month view (thanks to Kyle for the report!)
  • Fixed bug where the comments form would show twice on single events
  • Enabled auto-submissions in situations where classic view is present instead of the event bar (thanks to user wiredimpact for getting the discussion started on this!)
  • New "System Information" section on the Events > Help page
  • Updated translations: Brazilian Portuguese (new), Turkish (new), Norwegian Dutch, Icelandic, Greek, Finnish, French, and German (French courtesy of Rick)
  • Fixed some display bugs in IE (thanks to user wiredimpact for bringing up most of these!)
  • Various minor bug and security fixes
Download this release

Release Info

Developer jazbek
Plugin Icon The Events Calendar
Version 3.1
Comparing to
See all releases

Code changes from version 3.0.3 to 3.1

Files changed (49) hide show
  1. admin-views/events-meta-box.php +13 -13
  2. admin-views/organizer-meta-box.php +4 -4
  3. admin-views/tribe-options-general.php +4 -2
  4. admin-views/tribe-options-help.php +4 -0
  5. admin-views/venue-meta-box.php +22 -22
  6. lang/hu_HU.mo +0 -0
  7. lang/hu_HU.po +2909 -0
  8. lang/tribe-events-calendar-de_DE.mo +0 -0
  9. lang/tribe-events-calendar-de_DE.po +5 -5
  10. lang/tribe-events-calendar-el.mo +0 -0
  11. lang/tribe-events-calendar-el.po +301 -216
  12. lang/tribe-events-calendar-fi.mo +0 -0
  13. lang/tribe-events-calendar-fi.po +3325 -0
  14. lang/tribe-events-calendar-fr_FR.mo +0 -0
  15. lang/tribe-events-calendar-fr_FR.po +383 -360
  16. lang/tribe-events-calendar-is_IS.mo +0 -0
  17. lang/tribe-events-calendar-is_IS.po +3583 -0
  18. lang/tribe-events-calendar-nb_NO.mo +0 -0
  19. lang/tribe-events-calendar-nb_NO.po +572 -443
  20. lang/tribe-events-calendar-nl_NL.mo +0 -0
  21. lang/tribe-events-calendar-nl_NL.po +596 -667
  22. lang/tribe-events-calendar-pt_BR.mo +0 -0
  23. lang/tribe-events-calendar-pt_BR.po +956 -1104
  24. lang/tribe-events-calendar-tr_TR.mo +0 -0
  25. lang/tribe-events-calendar-tr_TR.po +3589 -0
  26. lib/template-classes/month.php +27 -42
  27. lib/template-classes/month.php.orig +417 -0
  28. lib/the-events-calendar.class.php +71 -91
  29. lib/tickets/tribe-tickets-attendees.php +8 -1
  30. lib/tickets/tribe-tickets.php +1 -1
  31. lib/tribe-admin-events-list.class.php +1 -1
  32. lib/tribe-event-query.class.php +302 -134
  33. lib/tribe-event-query.class.php.orig +840 -0
  34. lib/tribe-events-update.class.php +52 -0
  35. lib/tribe-field.class.php +26 -1
  36. lib/tribe-template-factory.class.php +58 -3
  37. lib/tribe-templates.class.php +15 -5
  38. public/advanced-functions/meta.php +3 -3
  39. public/template-tags/date.php +1 -1
  40. public/template-tags/general.php +56 -3
  41. public/template-tags/link.php +21 -8
  42. public/template-tags/loop.php +4 -5
  43. public/template-tags/meta.php +1 -1
  44. public/template-tags/organizer.php +22 -4
  45. readme.txt +56 -10
  46. resources/deprecated/chosen-load.min.js +1 -0
  47. resources/deprecated/chosen.min.css +1 -0
  48. resources/deprecated/select2/select2.min.css +1 -0
  49. resources/deprecated/select2/select2.min.js +55 -77
admin-views/events-meta-box.php CHANGED
@@ -33,23 +33,23 @@ if ( !defined('ABSPATH') ) { die('-1'); }
33
  </tr>
34
  <tr>
35
  <td><?php _e('All Day Event:', 'tribe-events-calendar'); ?></td>
36
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='checkbox' id='allDayCheckbox' name='EventAllDay' value='yes' <?php echo $isEventAllDay; ?> /></td>
37
  </tr>
38
  <tr>
39
  <td style="width:175px;"><?php _e('Start Date &amp; Time:','tribe-events-calendar'); ?></td>
40
  <td>
41
- <input autocomplete="off" tabindex="<?php $this->tabIndex(); ?>" 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'>
44
  @
45
- <select tabindex="<?php $this->tabIndex(); ?>" name='EventStartHour'>
46
  <?php echo $startHourOptions; ?>
47
  </select>
48
- <select tabindex="<?php $this->tabIndex(); ?>" name='EventStartMinute'>
49
  <?php echo $startMinuteOptions; ?>
50
  </select>
51
  <?php if ( !strstr( get_option( 'time_format', TribeDateUtils::TIMEFORMAT ), 'H' ) ) : ?>
52
- <select tabindex="<?php $this->tabIndex(); ?>" name='EventStartMeridian'>
53
  <?php echo $startMeridianOptions; ?>
54
  </select>
55
  <?php endif; ?>
@@ -63,14 +63,14 @@ if ( !defined('ABSPATH') ) { die('-1'); }
63
  <span class="helper-text hide-if-js"><?php _e('YYYY-MM-DD', 'tribe-events-calendar') ?></span>
64
  <span class='timeofdayoptions'>
65
  @
66
- <select class="tribeEventsInput" tabindex="<?php $this->tabIndex(); ?>" name='EventEndHour'>
67
  <?php echo $endHourOptions; ?>
68
  </select>
69
- <select tabindex="<?php $this->tabIndex(); ?>" name='EventEndMinute'>
70
  <?php echo $endMinuteOptions; ?>
71
  </select>
72
  <?php if ( !strstr( get_option( 'time_format', TribeDateUtils::TIMEFORMAT ), 'H' ) ) : ?>
73
- <select tabindex="<?php $this->tabIndex(); ?>" name='EventEndMeridian'>
74
  <?php echo $endMeridianOptions; ?>
75
  </select>
76
  <?php endif; ?>
@@ -102,13 +102,13 @@ if ( !defined('ABSPATH') ) { die('-1'); }
102
  </tr>
103
  <tr>
104
  <td style="width:172px;"><?php _e('URL:','tribe-events-calendar'); ?></td>
105
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventURL' name='EventURL' size='25' value='<?php echo (isset($_EventURL)) ? esc_attr($_EventURL) : ''; ?>' placeholder='example.com' /></td>
106
  </tr>
107
  <?php $this->do_action('tribe_events_url_table', $postId, true) ?>
108
  </table>
109
 
110
  <?php $this->do_action('tribe_events_details_table_bottom', $postId, true) ?>
111
-
112
  <table id="event_cost" class="eventtable">
113
  <?php if ( tribe_events_admin_show_cost_field() ) : ?>
114
  <tr>
@@ -116,11 +116,11 @@ if ( !defined('ABSPATH') ) { die('-1'); }
116
  </tr>
117
  <tr>
118
  <td><?php _e('Currency Symbol:','tribe-events-calendar'); ?></td>
119
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventCurrencySymbol' name='EventCurrencySymbol' size='2' value='<?php echo (isset($_EventCurrencySymbol)) ? esc_attr($_EventCurrencySymbol) : tribe_get_option( 'defaultCurrencySymbol', '$' ); ?>' /></td>
120
  </tr>
121
  <tr>
122
  <td><?php _e('Cost:','tribe-events-calendar'); ?></td>
123
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventCost' name='EventCost' size='6' value='<?php echo (isset($_EventCost)) ? esc_attr($_EventCost) : ''; ?>' /></td>
124
  </tr>
125
  <tr>
126
  <td></td>
@@ -129,7 +129,7 @@ if ( !defined('ABSPATH') ) { die('-1'); }
129
  <?php endif; ?>
130
  <?php $this->do_action('tribe_events_cost_table', $postId, true) ?>
131
  </table>
132
-
133
  </div>
134
  <?php $this->do_action('tribe_events_above_donate', $postId, true) ?>
135
  <?php $this->do_action('tribe_events_details_bottom', $postId, true) ?>
33
  </tr>
34
  <tr>
35
  <td><?php _e('All Day Event:', 'tribe-events-calendar'); ?></td>
36
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" type='checkbox' id='allDayCheckbox' name='EventAllDay' value='yes' <?php echo $isEventAllDay; ?> /></td>
37
  </tr>
38
  <tr>
39
  <td style="width:175px;"><?php _e('Start Date &amp; 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'>
44
  @
45
+ <select tabindex="<?php tribe_events_tab_index(); ?>" name='EventStartHour'>
46
  <?php echo $startHourOptions; ?>
47
  </select>
48
+ <select tabindex="<?php tribe_events_tab_index(); ?>" name='EventStartMinute'>
49
  <?php echo $startMinuteOptions; ?>
50
  </select>
51
  <?php if ( !strstr( get_option( 'time_format', TribeDateUtils::TIMEFORMAT ), 'H' ) ) : ?>
52
+ <select tabindex="<?php tribe_events_tab_index(); ?>" name='EventStartMeridian'>
53
  <?php echo $startMeridianOptions; ?>
54
  </select>
55
  <?php endif; ?>
63
  <span class="helper-text hide-if-js"><?php _e('YYYY-MM-DD', 'tribe-events-calendar') ?></span>
64
  <span class='timeofdayoptions'>
65
  @
66
+ <select class="tribeEventsInput" tabindex="<?php tribe_events_tab_index(); ?>" name='EventEndHour'>
67
  <?php echo $endHourOptions; ?>
68
  </select>
69
+ <select tabindex="<?php tribe_events_tab_index(); ?>" name='EventEndMinute'>
70
  <?php echo $endMinuteOptions; ?>
71
  </select>
72
  <?php if ( !strstr( get_option( 'time_format', TribeDateUtils::TIMEFORMAT ), 'H' ) ) : ?>
73
+ <select tabindex="<?php tribe_events_tab_index(); ?>" name='EventEndMeridian'>
74
  <?php echo $endMeridianOptions; ?>
75
  </select>
76
  <?php endif; ?>
102
  </tr>
103
  <tr>
104
  <td style="width:172px;"><?php _e('URL:','tribe-events-calendar'); ?></td>
105
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" type='text' id='EventURL' name='EventURL' size='25' value='<?php echo (isset($_EventURL)) ? esc_attr($_EventURL) : ''; ?>' placeholder='example.com' /></td>
106
  </tr>
107
  <?php $this->do_action('tribe_events_url_table', $postId, true) ?>
108
  </table>
109
 
110
  <?php $this->do_action('tribe_events_details_table_bottom', $postId, true) ?>
111
+
112
  <table id="event_cost" class="eventtable">
113
  <?php if ( tribe_events_admin_show_cost_field() ) : ?>
114
  <tr>
116
  </tr>
117
  <tr>
118
  <td><?php _e('Currency Symbol:','tribe-events-calendar'); ?></td>
119
+ <td><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', '$' ); ?>' /></td>
120
  </tr>
121
  <tr>
122
  <td><?php _e('Cost:','tribe-events-calendar'); ?></td>
123
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" type='text' id='EventCost' name='EventCost' size='6' value='<?php echo (isset($_EventCost)) ? esc_attr($_EventCost) : ''; ?>' /></td>
124
  </tr>
125
  <tr>
126
  <td></td>
129
  <?php endif; ?>
130
  <?php $this->do_action('tribe_events_cost_table', $postId, true) ?>
131
  </table>
132
+
133
  </div>
134
  <?php $this->do_action('tribe_events_above_donate', $postId, true) ?>
135
  <?php $this->do_action('tribe_events_details_bottom', $postId, true) ?>
admin-views/organizer-meta-box.php CHANGED
@@ -11,21 +11,21 @@ if ( !defined('ABSPATH') ) { die('-1'); }
11
  <tr class="organizer">
12
  <td><?php _e('Organizer Name:','tribe-events-calendar'); ?></td>
13
  <td>
14
- <input tabindex="<?php $this->tabIndex(); ?>" type='text' name='organizer[Organizer]' size='25' value='<?php echo isset($_OrganizerOrganizer) ? esc_attr($_OrganizerOrganizer) : ""; ?>' />
15
  </td>
16
  </tr>
17
  <?php endif; ?>
18
  <tr class="organizer">
19
  <td><?php _e('Phone:','tribe-events-calendar'); ?></td>
20
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='OrganizerPhone' name='organizer[Phone]' size='25' value='<?php echo isset($_OrganizerPhone) ? esc_attr($_OrganizerPhone) : ""; ?>' /></td>
21
  </tr>
22
  <tr class="organizer">
23
  <td><?php _e('Website:','tribe-events-calendar'); ?></td>
24
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='OrganizerWebsite' name='organizer[Website]' size='25' value='<?php echo isset($_OrganizerWebsite) ? esc_attr($_OrganizerWebsite) : ""; ?>' /></td>
25
  </tr>
26
  <tr class="organizer">
27
  <td><?php _e('Email:','tribe-events-calendar'); ?></td>
28
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='OrganizerEmail' name='organizer[Email]' size='25' value='<?php echo isset($_OrganizerEmail) ? esc_attr($_OrganizerEmail) : ""; ?>' /></td>
29
  </tr>
30
 
31
  <script type="text/javascript">
11
  <tr class="organizer">
12
  <td><?php _e('Organizer Name:','tribe-events-calendar'); ?></td>
13
  <td>
14
+ <input tabindex="<?php tribe_events_tab_index(); ?>" type='text' name='organizer[Organizer]' size='25' value='<?php echo isset($_OrganizerOrganizer) ? esc_attr($_OrganizerOrganizer) : ""; ?>' />
15
  </td>
16
  </tr>
17
  <?php endif; ?>
18
  <tr class="organizer">
19
  <td><?php _e('Phone:','tribe-events-calendar'); ?></td>
20
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" type='text' id='OrganizerPhone' name='organizer[Phone]' size='25' value='<?php echo isset($_OrganizerPhone) ? esc_attr($_OrganizerPhone) : ""; ?>' /></td>
21
  </tr>
22
  <tr class="organizer">
23
  <td><?php _e('Website:','tribe-events-calendar'); ?></td>
24
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" type='text' id='OrganizerWebsite' name='organizer[Website]' size='25' value='<?php echo isset($_OrganizerWebsite) ? esc_attr($_OrganizerWebsite) : ""; ?>' /></td>
25
  </tr>
26
  <tr class="organizer">
27
  <td><?php _e('Email:','tribe-events-calendar'); ?></td>
28
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" type='text' id='OrganizerEmail' name='organizer[Email]' size='25' value='<?php echo isset($_OrganizerEmail) ? esc_attr($_OrganizerEmail) : ""; ?>' /></td>
29
  </tr>
30
 
31
  <script type="text/javascript">
admin-views/tribe-options-general.php CHANGED
@@ -69,10 +69,12 @@ $generalTab = array(
69
  ),
70
  'liveFiltersUpdate' => array(
71
  'type' => 'checkbox_bool',
72
- 'label' => __( 'Use Javascript to control page load', 'tribe-events-calendar' ),
73
- 'tooltip' => __( 'Enable ajax to live refresh content.' , 'tribe-events-calendar' ),
 
74
  'default' => true,
75
  'validation_type' => 'boolean',
 
76
  ),
77
  'showComments' => array(
78
  'type' => 'checkbox_bool',
69
  ),
70
  'liveFiltersUpdate' => array(
71
  'type' => 'checkbox_bool',
72
+ 'label' => __( 'Use Javascript to control date filtering', 'tribe-events-calendar' ),
73
+ 'tooltip' => tribe_get_option('tribeDisableTribeBar', false) == true ? __( 'This option is disabled when "Disable the Event Search Bar" is checked on the Display settings tab.' , 'tribe-events-calendar' ) : __( 'Enable live ajax for datepicker on front end (User submit not required).' , 'tribe-events-calendar' ),
74
+ 'attributes' => tribe_get_option('tribeDisableTribeBar', false) == true ? array('disabled' => 'disabled') : null,
75
  'default' => true,
76
  'validation_type' => 'boolean',
77
+ 'class' => tribe_get_option('tribeDisableTribeBar', false) == true ? 'tribe-fieldset-disabled' : null,
78
  ),
79
  'showComments' => array(
80
  'type' => 'checkbox_bool',
admin-views/tribe-options-help.php CHANGED
@@ -159,6 +159,8 @@ $more_text = __('More...', 'tribe-events-calendar');
159
  <h3><?php _e('Not getting help?', 'tribe-events-calendar'); ?></h3>
160
  <?php echo( apply_filters( 'tribe_help_tab_outro', $outro_text ) ); ?>
161
 
 
 
162
  </div>
163
 
164
  </div>
@@ -209,4 +211,6 @@ $more_text = __('More...', 'tribe-events-calendar');
209
  ?>
210
  </ul>
211
 
 
 
212
  </div>
159
  <h3><?php _e('Not getting help?', 'tribe-events-calendar'); ?></h3>
160
  <?php echo( apply_filters( 'tribe_help_tab_outro', $outro_text ) ); ?>
161
 
162
+ <?php do_action( 'tribe_help_tab_sections' ); ?>
163
+
164
  </div>
165
 
166
  </div>
211
  ?>
212
  </ul>
213
 
214
+ <?php do_action( 'tribe_help_tab_sidebar' ); ?>
215
+
216
  </div>
admin-views/venue-meta-box.php CHANGED
@@ -19,17 +19,17 @@ if ( tribe_get_option( 'defaultValueReplace' ) && $post->post_type != TribeEvent
19
  <tr class="venue">
20
  <td><?php _e('Venue Name:','tribe-events-calendar'); ?></td>
21
  <td>
22
- <input tabindex="<?php $this->tabIndex(); ?>" type='text' name='venue[Venue]' size='25' value='<?php if( isset($_VenueVenue) ) echo esc_attr($_VenueVenue); ?>' />
23
  </td>
24
  </tr>
25
  <?php endif; ?>
26
  <tr class="venue">
27
  <td><?php _e('Address:','tribe-events-calendar'); ?></td>
28
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' name='venue[Address]' size='25' value='<?php if( isset($_VenueAddress) ) echo esc_attr($_VenueAddress); ?>' /></td>
29
  </tr>
30
  <tr class="venue">
31
  <td><?php _e('City:','tribe-events-calendar'); ?></td>
32
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' name='venue[City]' size='25' value='<?php if( isset($_VenueCity) ) echo esc_attr($_VenueCity); ?>' /></td>
33
  </tr>
34
  <tr class="venue">
35
  <td><?php _e('Country:','tribe-events-calendar'); ?></td>
@@ -45,16 +45,16 @@ if ( tribe_get_option( 'defaultValueReplace' ) && $post->post_type != TribeEvent
45
  $current = null;
46
  }
47
  ?>
48
- <select class="chosen" tabindex="<?php $this->tabIndex(); ?>" name='venue[Country]' id="EventCountry">
49
  <?php
50
  foreach ($countries as $abbr => $fullname) {
51
  if ( $abbr == '' ) {
52
  echo '<option value="">' . esc_html( $fullname ) . '</option>';
53
  } else {
54
  echo '<option value="' . esc_attr($fullname) . '" ';
55
-
56
  selected(($current == $fullname));
57
-
58
  echo '>' . esc_html($fullname) . '</option>';
59
  }
60
  }
@@ -71,8 +71,8 @@ if ( tribe_get_option( 'defaultValueReplace' ) && $post->post_type != TribeEvent
71
  $currentProvince = ( !isset( $_VenueProvince ) && tribe_get_option( 'defaultValueReplace' ) ) ? $defaultProvince : $_VenueProvince;
72
  ?>
73
  <td><?php _e('State or Province:','tribe-events-calendar'); ?></td>
74
- <td><input tabindex="<?php $this->tabIndex(); ?>" id="StateProvinceText" name="venue[Province]" type='text' name='' size='25' value='<?php echo ( isset($_VenueProvince) && $_VenueProvince != '' ) ? esc_attr($currentProvince) : esc_attr(''); ?>' />
75
- <select class="chosen" tabindex="<?php $this->tabIndex(); ?>" id="StateProvinceSelect" name="venue[State]">
76
  <option value=""><?php _e('Select a State:','tribe-events-calendar'); ?></option>
77
  <?php
78
  foreach (TribeEventsViewHelpers::loadStates() as $abbr => $fullname) {
@@ -87,15 +87,15 @@ if ( tribe_get_option( 'defaultValueReplace' ) && $post->post_type != TribeEvent
87
  </tr>
88
  <tr class="venue">
89
  <td><?php _e('Postal Code:','tribe-events-calendar'); ?></td>
90
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventZip' name='venue[Zip]' size='6' value='<?php if( isset($_VenueZip) ) echo esc_attr($_VenueZip); ?>' /></td>
91
  </tr>
92
  <tr class="venue">
93
  <td><?php _e('Phone:','tribe-events-calendar'); ?></td>
94
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventPhone' name='venue[Phone]' size='14' value='<?php if( isset($_VenuePhone) ) echo esc_attr($_VenuePhone); ?>' /></td>
95
  </tr>
96
  <tr class="venue">
97
  <td><?php _e('Website:','tribe-events-calendar'); ?></td>
98
- <td><input tabindex="<?php $this->tabIndex(); ?>" type='text' id='EventWebsite' name='venue[URL]' size='14' value='<?php if( isset($_VenueURL) ) echo esc_attr($_VenueURL); ?>' /></td>
99
  </tr>
100
 
101
  <?php
@@ -103,51 +103,51 @@ $google_map_toggle = false;
103
  $google_map_link_toggle = false;
104
 
105
  if ( $post->post_type != TribeEvents::VENUE_POST_TYPE ) {
106
-
107
  if( tribe_get_option( 'embedGoogleMaps', true ) ) { // Only show if embed option selected
108
-
109
  $google_map_toggle = ( tribe_embed_google_map( $postId ) || get_post_status($postId) == 'auto-draft' ) ? true : false;
110
  ?>
111
  <tr id="google_map_toggle">
112
  <td><?php _e('Show Google Map:','tribe-events-calendar'); ?></td>
113
  <td>
114
- <input tabindex="<?php $this->tabIndex(); ?>" type="checkbox" id="EventShowMap" name="venue[EventShowMap]" value="1" <?php checked( $google_map_toggle ); ?> />
115
  </td>
116
  </tr>
117
- <?php
118
  }
119
  $google_map_link_toggle = ( get_post_status($postId) == 'auto-draft' && $google_map_toggle ) ? true : get_post_meta( $postId, '_EventShowMapLink', true );
120
  ?>
121
  <tr id="google_map_link_toggle">
122
  <td><?php _e('Show Google Maps Link:','tribe-events-calendar'); ?></td>
123
  <td>
124
- <input tabindex="<?php $this->tabIndex(); ?>" type="checkbox" id="EventShowMapLink" name="venue[EventShowMapLink]" value="1" <?php checked( $google_map_link_toggle ); ?> />
125
  </td>
126
  </tr>
127
- <?php
128
  } else {
129
  if( tribe_get_option('embedGoogleMaps', true) ) { // Only show if embed option selected
130
-
131
  $google_map_toggle = ( tribe_embed_google_map( $postId ) || get_post_status($postId) == 'auto-draft' ) ? true : false;
132
  ?>
133
  <tr id="google_map_toggle">
134
  <td><?php _e('Show Google Map:','tribe-events-calendar'); ?></td>
135
  <td>
136
- <input tabindex="<?php $this->tabIndex(); ?>" type="checkbox" id="VenueShowMap" name="venue[ShowMap]" value="true" <?php checked( $google_map_toggle ); ?> />
137
  </td>
138
  </tr>
139
  <?php
140
- }
141
  $google_map_link_toggle = ( get_post_status($postId) != 'auto-draft' || get_post_meta( $postId, '_VenueShowMapLink', true ) !== 'false' ) ? true : false;
142
  ?>
143
  <tr id="google_map_link_toggle">
144
  <td><?php _e('Show Google Maps Link:','tribe-events-calendar'); ?></td>
145
  <td>
146
- <input tabindex="<?php $this->tabIndex(); ?>" type="checkbox" id="VenueShowMapLink" name="venue[ShowMapLink]" value="true" <?php checked( $google_map_link_toggle ); ?> />
147
  </td>
148
  </tr>
149
  <?php
150
- }
151
  ?>
152
 
153
  <script type="text/javascript">
19
  <tr class="venue">
20
  <td><?php _e('Venue Name:','tribe-events-calendar'); ?></td>
21
  <td>
22
+ <input tabindex="<?php tribe_events_tab_index(); ?>" type='text' name='venue[Venue]' size='25' value='<?php if( isset($_VenueVenue) ) echo esc_attr($_VenueVenue); ?>' />
23
  </td>
24
  </tr>
25
  <?php endif; ?>
26
  <tr class="venue">
27
  <td><?php _e('Address:','tribe-events-calendar'); ?></td>
28
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" type='text' name='venue[Address]' size='25' value='<?php if( isset($_VenueAddress) ) echo esc_attr($_VenueAddress); ?>' /></td>
29
  </tr>
30
  <tr class="venue">
31
  <td><?php _e('City:','tribe-events-calendar'); ?></td>
32
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" type='text' name='venue[City]' size='25' value='<?php if( isset($_VenueCity) ) echo esc_attr($_VenueCity); ?>' /></td>
33
  </tr>
34
  <tr class="venue">
35
  <td><?php _e('Country:','tribe-events-calendar'); ?></td>
45
  $current = null;
46
  }
47
  ?>
48
+ <select class="chosen" tabindex="<?php tribe_events_tab_index(); ?>" name='venue[Country]' id="EventCountry">
49
  <?php
50
  foreach ($countries as $abbr => $fullname) {
51
  if ( $abbr == '' ) {
52
  echo '<option value="">' . esc_html( $fullname ) . '</option>';
53
  } else {
54
  echo '<option value="' . esc_attr($fullname) . '" ';
55
+
56
  selected(($current == $fullname));
57
+
58
  echo '>' . esc_html($fullname) . '</option>';
59
  }
60
  }
71
  $currentProvince = ( !isset( $_VenueProvince ) && tribe_get_option( 'defaultValueReplace' ) ) ? $defaultProvince : $_VenueProvince;
72
  ?>
73
  <td><?php _e('State or Province:','tribe-events-calendar'); ?></td>
74
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" id="StateProvinceText" name="venue[Province]" type='text' name='' size='25' value='<?php echo ( isset($_VenueProvince) && $_VenueProvince != '' ) ? esc_attr($currentProvince) : esc_attr(''); ?>' />
75
+ <select class="chosen" tabindex="<?php tribe_events_tab_index(); ?>" id="StateProvinceSelect" name="venue[State]">
76
  <option value=""><?php _e('Select a State:','tribe-events-calendar'); ?></option>
77
  <?php
78
  foreach (TribeEventsViewHelpers::loadStates() as $abbr => $fullname) {
87
  </tr>
88
  <tr class="venue">
89
  <td><?php _e('Postal Code:','tribe-events-calendar'); ?></td>
90
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" type='text' id='EventZip' name='venue[Zip]' size='6' value='<?php if( isset($_VenueZip) ) echo esc_attr($_VenueZip); ?>' /></td>
91
  </tr>
92
  <tr class="venue">
93
  <td><?php _e('Phone:','tribe-events-calendar'); ?></td>
94
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" type='text' id='EventPhone' name='venue[Phone]' size='14' value='<?php if( isset($_VenuePhone) ) echo esc_attr($_VenuePhone); ?>' /></td>
95
  </tr>
96
  <tr class="venue">
97
  <td><?php _e('Website:','tribe-events-calendar'); ?></td>
98
+ <td><input tabindex="<?php tribe_events_tab_index(); ?>" type='text' id='EventWebsite' name='venue[URL]' size='14' value='<?php if( isset($_VenueURL) ) echo esc_attr($_VenueURL); ?>' /></td>
99
  </tr>
100
 
101
  <?php
103
  $google_map_link_toggle = false;
104
 
105
  if ( $post->post_type != TribeEvents::VENUE_POST_TYPE ) {
106
+
107
  if( tribe_get_option( 'embedGoogleMaps', true ) ) { // Only show if embed option selected
108
+
109
  $google_map_toggle = ( tribe_embed_google_map( $postId ) || get_post_status($postId) == 'auto-draft' ) ? true : false;
110
  ?>
111
  <tr id="google_map_toggle">
112
  <td><?php _e('Show Google Map:','tribe-events-calendar'); ?></td>
113
  <td>
114
+ <input tabindex="<?php tribe_events_tab_index(); ?>" type="checkbox" id="EventShowMap" name="venue[EventShowMap]" value="1" <?php checked( $google_map_toggle ); ?> />
115
  </td>
116
  </tr>
117
+ <?php
118
  }
119
  $google_map_link_toggle = ( get_post_status($postId) == 'auto-draft' && $google_map_toggle ) ? true : get_post_meta( $postId, '_EventShowMapLink', true );
120
  ?>
121
  <tr id="google_map_link_toggle">
122
  <td><?php _e('Show Google Maps Link:','tribe-events-calendar'); ?></td>
123
  <td>
124
+ <input tabindex="<?php tribe_events_tab_index(); ?>" type="checkbox" id="EventShowMapLink" name="venue[EventShowMapLink]" value="1" <?php checked( $google_map_link_toggle ); ?> />
125
  </td>
126
  </tr>
127
+ <?php
128
  } else {
129
  if( tribe_get_option('embedGoogleMaps', true) ) { // Only show if embed option selected
130
+
131
  $google_map_toggle = ( tribe_embed_google_map( $postId ) || get_post_status($postId) == 'auto-draft' ) ? true : false;
132
  ?>
133
  <tr id="google_map_toggle">
134
  <td><?php _e('Show Google Map:','tribe-events-calendar'); ?></td>
135
  <td>
136
+ <input tabindex="<?php tribe_events_tab_index(); ?>" type="checkbox" id="VenueShowMap" name="venue[ShowMap]" value="true" <?php checked( $google_map_toggle ); ?> />
137
  </td>
138
  </tr>
139
  <?php
140
+ }
141
  $google_map_link_toggle = ( get_post_status($postId) != 'auto-draft' || get_post_meta( $postId, '_VenueShowMapLink', true ) !== 'false' ) ? true : false;
142
  ?>
143
  <tr id="google_map_link_toggle">
144
  <td><?php _e('Show Google Maps Link:','tribe-events-calendar'); ?></td>
145
  <td>
146
+ <input tabindex="<?php tribe_events_tab_index(); ?>" type="checkbox" id="VenueShowMapLink" name="venue[ShowMapLink]" value="true" <?php checked( $google_map_link_toggle ); ?> />
147
  </td>
148
  </tr>
149
  <?php
150
+ }
151
  ?>
152
 
153
  <script type="text/javascript">
lang/hu_HU.mo ADDED
Binary file
lang/hu_HU.po ADDED
@@ -0,0 +1,2909 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 &amp; 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 &#8220;%s&#8221;"
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 "&laquo; Previous Events"
2865
+ msgstr ""
2866
+
2867
+ #: ../views/list.php:159 ../views/list.php:161 ../views/list.php:163
2868
+ msgid "Next Events &raquo;"
2869
+ msgstr ""
2870
+
2871
+ #: ../views/single.php:12
2872
+ msgid "&laquo; 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 &raquo;"
2909
+ msgstr ""
lang/tribe-events-calendar-de_DE.mo CHANGED
Binary file
lang/tribe-events-calendar-de_DE.po CHANGED
@@ -6,7 +6,7 @@ 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-07-02 11:27-0800\n"
10
  "Last-Translator: Thomas Butzek <ThomasButzek@live.de>\n"
11
  "Language-Team: DECKERWEB <deckerweb.mobil@googlemail.com>\n"
12
  "Language: de_DE\n"
@@ -19,7 +19,7 @@ msgstr ""
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-Textdomain-Support: yes\n"
22
- "X-Generator: Poedit 1.5.5\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  # @ tribe-events-calendar
@@ -3815,11 +3815,11 @@ msgstr "Bestellstatus"
3815
 
3816
  #: ../lib/tickets/tribe-tickets-attendees.php:69
3817
  msgid "Purchaser name"
3818
- msgstr "Verkäufer Name"
3819
 
3820
  #: ../lib/tickets/tribe-tickets-attendees.php:70
3821
  msgid "Purchaser email"
3822
- msgstr "Verkäufer E-Mail"
3823
 
3824
  #: ../lib/tickets/tribe-tickets-attendees.php:71
3825
  msgid "Ticket type"
@@ -4092,7 +4092,7 @@ msgstr "Kartenart"
4092
 
4093
  #: ../views/tickets/email.php:324
4094
  msgid "Purchaser"
4095
- msgstr "Verkäufer"
4096
 
4097
  #~ msgid ""
4098
  #~ "Want to modify the display of this widget? Try a %stemplate override%s."
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-09-10 14:43-0800\n"
10
  "Last-Translator: Thomas Butzek <ThomasButzek@live.de>\n"
11
  "Language-Team: DECKERWEB <deckerweb.mobil@googlemail.com>\n"
12
  "Language: de_DE\n"
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-Textdomain-Support: yes\n"
22
+ "X-Generator: Poedit 1.5.7\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  # @ tribe-events-calendar
3815
 
3816
  #: ../lib/tickets/tribe-tickets-attendees.php:69
3817
  msgid "Purchaser name"
3818
+ msgstr "Käufer Name"
3819
 
3820
  #: ../lib/tickets/tribe-tickets-attendees.php:70
3821
  msgid "Purchaser email"
3822
+ msgstr "Käufer E-Mail"
3823
 
3824
  #: ../lib/tickets/tribe-tickets-attendees.php:71
3825
  msgid "Ticket type"
4092
 
4093
  #: ../views/tickets/email.php:324
4094
  msgid "Purchaser"
4095
+ msgstr "Käufer"
4096
 
4097
  #~ msgid ""
4098
  #~ "Want to modify the display of this widget? Try a %stemplate override%s."
lang/tribe-events-calendar-el.mo CHANGED
Binary file
lang/tribe-events-calendar-el.po CHANGED
@@ -6,8 +6,8 @@ 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-07-02 11:27-0800\n"
10
- "Last-Translator: Smart Studios <info@smartstudios.gr>\n"
11
  "Language-Team: pro@tri.be <g.koustoubardis@gmail.com>\n"
12
  "Language: el_GR\n"
13
  "MIME-Version: 1.0\n"
@@ -19,7 +19,7 @@ msgstr ""
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-Textdomain-Support: yes\n"
22
- "X-Generator: Poedit 1.5.5\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  #
@@ -41,7 +41,7 @@ msgstr "Απόκρυψη από τη Λίστα Εκδηλώσεων"
41
 
42
  #: ../admin-views/event-sidebar-options.php:12
43
  msgid "Sticky in Calendar View"
44
- msgstr "Κολλημένο στην Εμφάνιση του Ημερολογίου"
45
 
46
  #
47
  #: ../admin-views/events-audit-trail.php:41
@@ -58,7 +58,7 @@ msgstr "Διαδρομή Ελέγχου:"
58
 
59
  #: ../admin-views/events-meta-box.php:26
60
  msgid "Event Time &amp; Date"
61
- msgstr "Ώρα και Ημερομηνία Εκδήλωσης"
62
 
63
  #: ../admin-views/events-meta-box.php:32
64
  msgid ""
@@ -66,9 +66,9 @@ msgid ""
66
  "update all future events. If you did not mean to change all events, then "
67
  "please refresh the page."
68
  msgstr ""
69
- "Έχετε αλλάξει τους κανόνες επανάληψης αυτής της εκδήλωσης. Αποθηκεύοντάς το "
70
- "θα ενημερωθούν όλες οι μελλοντικές εκδηλώσεις. Εάν δεν επιθυμείτε να "
71
- "αλλάξετε όλες τις εκδηλώσεις, τότε παρακαλούμε ανανεώστε τη σελίδα."
72
 
73
  #
74
  #: ../admin-views/events-meta-box.php:35
@@ -78,7 +78,7 @@ msgstr "Ολοήμερη Εκδήλωση:"
78
  #
79
  #: ../admin-views/events-meta-box.php:39
80
  msgid "Start Date &amp; Time:"
81
- msgstr "Ώρα και Ημερομηνία Έναρξης:"
82
 
83
  #: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
84
  msgid "YYYY-MM-DD"
@@ -87,20 +87,20 @@ msgstr "ΧΧΧΧ-ΜΜ-ΗΗ"
87
  #
88
  #: ../admin-views/events-meta-box.php:60
89
  msgid "End Date &amp; Time:"
90
- msgstr "Ώρα και Ημερομηνία Λήξης:"
91
 
92
  #: ../admin-views/events-meta-box.php:85
93
  msgid "Event Location Details"
94
- msgstr "Λεπτομέριες Χώρου Εκδήλωσης"
95
 
96
  #: ../admin-views/events-meta-box.php:93
97
  msgid "Event Organizer Details"
98
- msgstr "Λεπτομέριες Διοργανωτή Εκδήλωσης"
99
 
100
  #
101
  #: ../admin-views/events-meta-box.php:101
102
  msgid "Event Website"
103
- msgstr "Δικτυακός Τόπος Εκδήλωσης"
104
 
105
  #: ../admin-views/events-meta-box.php:104
106
  msgid "URL:"
@@ -122,7 +122,7 @@ msgstr "Κόστος:"
122
  #: ../admin-views/events-meta-box.php:127
123
  msgid "Enter a 0 for events that are free or leave blank to hide the field."
124
  msgstr ""
125
- "Εισάγετε ένα 0 για εκδηλώσεις με ελεύθερη είσοδο ή αφήστε το κενό για να "
126
  "αποκρύψετε το πεδίο."
127
 
128
  #: ../admin-views/organizer-meta-box.php:12
@@ -144,7 +144,7 @@ msgstr "Τηλέφωνο:"
144
  #: ../public/advanced-functions/meta.php:383
145
  #: ../public/advanced-functions/meta.php:445
146
  msgid "Website:"
147
- msgstr "Ιστότοπος:"
148
 
149
  #: ../admin-views/organizer-meta-box.php:27
150
  #: ../public/advanced-functions/meta.php:432
@@ -156,8 +156,8 @@ msgid ""
156
  "Would you like to change only this instance of the event, or all future "
157
  "events in this series?"
158
  msgstr ""
159
- "Θέλετε να αλλάξετε μόνο αυτή την περίπτωση της εκδήλωσης, ή όλες τις "
160
- "μελλοντικές εκδηλώσεις σε αυτή τη σειρά;"
161
 
162
  #: ../admin-views/recurrence-dialog.php:15
163
  #: ../admin-views/recurrence-dialog.php:23
@@ -188,8 +188,8 @@ msgid ""
188
  "Would you like to delete only this instance of the event, or all future "
189
  "events in this series?"
190
  msgstr ""
191
- "Θέλετε να διαγράψετε μόνο αυτή την περίπτωση της εκδήλωσης, ή όλες τις "
192
- "μελλοντικές εκδηλώσεις σε αυτή τη σειρά;"
193
 
194
  #: ../admin-views/recurrence-dialog.php:23
195
  msgid "All other future events in the series will not be deleted."
@@ -214,7 +214,7 @@ msgid "Display Settings"
214
  msgstr "Προβολή Ρυθμίσεων"
215
 
216
  #: ../admin-views/tribe-options-display.php:34
217
- #, fuzzy, php-format
218
  msgid ""
219
  "<p>The settings below control the display of your calendar. If things don't "
220
  "look right, try switching between the three style sheet options or pick a "
@@ -227,10 +227,11 @@ msgstr ""
227
  "<p> Οι παρακάτω ρυθμίσεις ελέγχουν την εμφάνιση του ημερολογίου σας. Αν τα "
228
  "πράγματα δεν φαίνονται σωστά, δοκιμάστε να πραγματοποιήσετε εναλλαγή μεταξύ "
229
  "των τριών επιλογών στυλ ή επιλέξτε ένα πρότυπο σελίδας από το θέμα σας.</"
230
- "p><p>Ελέγξτε τον <a href=\"%s\">οδηγό θεμάτων</a> για οδηγίες σχετικά με "
 
231
  "προσαρμοσμένες τροποποιήσεις. Θέλετε να δημιουργήσετε μία νέα εμφάνιση; "
232
- "Αρπάξτε ένα αντίγραφο του προσθέτου <a href=\"%s\">Εμφάνιση Δείγματος "
233
- "Ατζέντας από το Github</a></p>"
234
 
235
  #
236
  #: ../admin-views/tribe-options-display.php:49
@@ -239,7 +240,9 @@ msgstr "Βασικές Ρυθμίσεις Προτύπου"
239
 
240
  #: ../admin-views/tribe-options-display.php:53
241
  msgid "Default stylesheet used for events templates"
242
- msgstr "Προεπιλεγμένο φύλλο στυλ που χρησιμοποιείται για τα πρότυπα εκδηλώσεων"
 
 
243
 
244
  #: ../admin-views/tribe-options-display.php:56
245
  msgid "Skeleton Styles"
@@ -250,14 +253,18 @@ msgid ""
250
  "Only includes enough css to achieve complex layouts like calendar and week "
251
  "view."
252
  msgstr ""
 
 
253
 
254
  #: ../admin-views/tribe-options-display.php:60
255
  msgid "Full Styles"
256
- msgstr "Πλήρες Στυλ"
257
 
258
  #: ../admin-views/tribe-options-display.php:62
259
  msgid "More detailed styling, tries to grab styles from your theme."
260
  msgstr ""
 
 
261
 
262
  #
263
  #: ../admin-views/tribe-options-display.php:64
@@ -267,6 +274,8 @@ msgstr "Στυλ Tribe Events"
267
  #: ../admin-views/tribe-options-display.php:66
268
  msgid "A fully designed and styled theme for your events pages."
269
  msgstr ""
 
 
270
 
271
  #
272
  #: ../admin-views/tribe-options-display.php:73
@@ -294,15 +303,12 @@ msgid "Default view"
294
  msgstr "Προεπιλεγμένη εμφάνιση"
295
 
296
  #: ../admin-views/tribe-options-display.php:98
297
- #, fuzzy
298
  msgid "Disable the Event Search Bar"
299
- msgstr "Χρησιμοποιήσετε τη Γραμμή Αναζήτησης Εκδηλώσεων"
300
 
301
  #: ../admin-views/tribe-options-display.php:99
302
- #, fuzzy
303
  msgid "Check this to use the classic header."
304
- msgstr ""
305
- "Καταργήστε την επιλογή αυτή για να χρησιμοποιήσετε την κλασική κεφαλίδα."
306
 
307
  #
308
  #: ../admin-views/tribe-options-display.php:105
@@ -320,7 +326,8 @@ msgid ""
320
  "template. Some themes may require this to help with styling or layout."
321
  msgstr ""
322
  "Αν είστε εξοικειωμένοι με την HTML, μπορείτε να προσθέσετε επιπλέον κώδικα "
323
- "πριν από το πρότυπο εκδηλώσεων."
 
324
 
325
  #
326
  #: ../admin-views/tribe-options-display.php:115
@@ -333,11 +340,12 @@ msgid ""
333
  "template. Some themes may require this to help with styling or layout."
334
  msgstr ""
335
  "Αν είστε εξοικειωμένοι με την HTML, μπορείτε να προσθέσετε επιπλέον κώδικα "
336
- "μετά το πρότυπο εκδηλώσεων."
 
337
 
338
  #: ../admin-views/tribe-options-general.php:14
339
  msgid "Finding & extending your calendar."
340
- msgstr "Εύρεση και επέκταση του ημερολογίου σας."
341
 
342
  #: ../admin-views/tribe-options-general.php:19
343
  msgid "Finding your calendar."
@@ -368,7 +376,7 @@ msgstr "Ελέγξτε τις διαθέσιμες επεκτάσεις"
368
 
369
  #: ../admin-views/tribe-options-general.php:33
370
  msgid "We hope our plugin is helping you out."
371
- msgstr "Ελπίζουμε το πρόσθετο μας να σας βοηθάει."
372
 
373
  #: ../admin-views/tribe-options-general.php:37
374
  msgid ""
@@ -417,7 +425,7 @@ msgstr "Αριθμός εκδηλώσεων ανά σελίδα"
417
 
418
  #: ../admin-views/tribe-options-general.php:72
419
  msgid "Use Javascript to control page load"
420
- msgstr "Χρησιμοποιήστε Javascript για να ελέγξετε τη φόρτωση σελίδας"
421
 
422
  #: ../admin-views/tribe-options-general.php:73
423
  msgid "Enable ajax to live refresh content."
@@ -434,15 +442,15 @@ msgstr "Ενεργοποίηση σχολίων στις σελίδες εκδη
434
 
435
  #: ../admin-views/tribe-options-general.php:86
436
  msgid "Include events in main blog loop"
437
- msgstr "Συμπερίληψη εκδηλώσεων στον κύριο βρόχο του ιστολογίου"
438
 
439
  #: ../admin-views/tribe-options-general.php:87
440
  msgid ""
441
  "Show events with the site's other posts. When this box is checked, events "
442
  "will also continue to appear on the default events page."
443
  msgstr ""
444
- "Εμφάνιση εκδηλώσεων με άλλα άρθρα του δικτυακού τόπου. Όταν αυτό το πλαίσιο "
445
- "είναι επιλεγμένο, οι εκδηλώσεις θα συνεχίσουν επίσης να εμφανίζονται στην "
446
  "προεπιλεγμένη σελίδα των εκδηλώσεων."
447
 
448
  #: ../admin-views/tribe-options-general.php:93
@@ -459,10 +467,10 @@ msgid ""
459
  "\">enable pretty permalinks</a>."
460
  msgstr ""
461
  "Δεν μπορείτε να επεξεργαστείτε το slug για τη σελίδα εκδηλώσεων, καθώς δεν "
462
- "έχετε ρυθμίσει καταλλήλως τους μόνιμους συνδέσμους. Η τρέχουσα διεύθυνση URL "
463
- "για τη σελίδα εκδηλώσεων είναι <a href=\"%s\">%s</a>. Για να επεξεργαστείτε "
464
- "το slug εδώ, <a href=\"%soptions-permalink.php\">ενεργοποιήστε τα pretty "
465
- "permalinks</a>."
466
 
467
  #
468
  #: ../admin-views/tribe-options-general.php:106
@@ -473,7 +481,7 @@ msgstr "Το slug χρησιμοποιείται για την κατασκευ
473
  #: ../admin-views/tribe-options-general.php:106
474
  #, php-format
475
  msgid "Your current events URL is: %s"
476
- msgstr "Η τρέχουσα διεύθυνση URL των εκδηλώσεων είναι: %s"
477
 
478
  #
479
  #: ../admin-views/tribe-options-general.php:111
@@ -492,12 +500,12 @@ msgid ""
492
  "The above should ideally be plural, and this singular.<br />Your single "
493
  "event URL is: %s"
494
  msgstr ""
495
- "Τα παραπάνω θα πρέπει ιδανικά να είναι στον πληθυντικό, και αυτό μοναδικό. "
496
- "<br /> Το URL της μεμονομένης εκδήλωσής σας είναι: %s."
497
 
498
  #: ../admin-views/tribe-options-general.php:128
499
  msgid "End of day cutoff"
500
- msgstr "Τέλος της ημέρας αποκοπής"
501
 
502
  #: ../admin-views/tribe-options-general.php:136
503
  msgid ""
@@ -533,17 +541,16 @@ msgstr "Ενεργοποίηση των Χαρτών Google"
533
  #: ../admin-views/tribe-options-general.php:154
534
  msgid "Check to enable maps for events and venues."
535
  msgstr ""
536
- "Επιλέγξτε για να ενεργοποιήσετε τους χάρτες για τις εκδηλώσεις και τους "
537
- "χώρους διεξαγωγής."
538
 
539
  #: ../admin-views/tribe-options-general.php:161
540
- #, fuzzy
541
  msgid "Google Maps default zoom level"
542
  msgstr "Προεπιλεγμένο επίπεδο εστίασης για τους Χάρτες Google"
543
 
544
  #: ../admin-views/tribe-options-general.php:162
545
  msgid "0 = zoomed out; 21 = zoomed in."
546
- msgstr "0 = zoomed out, 21 = zoomed in."
547
 
548
  #
549
  #: ../admin-views/tribe-options-general.php:170
@@ -552,7 +559,7 @@ msgstr "Διάφορες Ρυθμίσεις"
552
 
553
  #: ../admin-views/tribe-options-general.php:174
554
  msgid "Duplicate Venues &amp; Organizers"
555
- msgstr "Δημιουργία διπλότυπων Χώρων Διεξαγωγής και Διοργανωτών"
556
 
557
  #: ../admin-views/tribe-options-general.php:174
558
  #: ../lib/tribe-amalgamator.php:252
@@ -565,9 +572,9 @@ msgid ""
565
  "Calendar from a pre-3.0 version. Click this button to automatically merge "
566
  "identical venues and organizers."
567
  msgstr ""
568
- "Ίσως βρείτε διπλότυπα χώρων και διοργανωτών όταν αναβαθμίζετε το Ημερολόγιο "
569
- "Εκδηλώσεων από μία έκδοση παλαιότερη της 3.0. Κάντε κλικ σε αυτό το κουμπί "
570
- "για να συγχωνευθούν αυτόματα οι πανομοιότυποι χώροι και διοργανωτές."
571
 
572
  #
573
  #: ../admin-views/tribe-options-general.php:179
@@ -582,24 +589,24 @@ msgid ""
582
  "browser, then we recommend that you install the %s and look for the \"Tribe"
583
  "\" tab in the debug output."
584
  msgstr ""
585
- "Ενεργοποιήστε αυτή την επιλογή για να καταγράφονται πληροφορίες "
586
  "αποσφαλμάτωσης. Ως προεπιλογή η καταγραφή θα γίνεται στο error log της PHP "
587
- "του διακομιστή σας. Αν θέλετε να δείτε τα μηνύματα καταγραφής στον περιηγητή "
588
- "σας, τότε σας συνιστούμε να εγκαταστήσετε το %s και να αναζητήσετε την "
589
- "καρτέλα \"Tribe\" στην έξοδο αποσφαλμάτωσης."
590
 
591
  #: ../admin-views/tribe-options-general.php:185
592
  msgid "Debug Bar Plugin"
593
- msgstr "Πρόσθετο Γραμμής Αποσφαλμάτωσης"
594
 
595
  #: ../admin-views/tribe-options-help.php:18
596
  msgctxt "not available"
597
  msgid "n/a"
598
- msgstr "μ/δ"
599
 
600
  #: ../admin-views/tribe-options-help.php:19
601
  msgid "You need to upgrade!"
602
- msgstr "Θα πρέπει να αναβαθμίσετε!"
603
 
604
  #: ../admin-views/tribe-options-help.php:19
605
  msgid "You are up to date!"
@@ -617,12 +624,12 @@ msgstr "Eventbrite Tickets"
617
  #
618
  #: ../admin-views/tribe-options-help.php:50
619
  msgid "Community Events"
620
- msgstr "Εκδηλώσεις Κοινότητας"
621
 
622
  #
623
  #: ../admin-views/tribe-options-help.php:54
624
  msgid "Facebook Events"
625
- msgstr "Εκδηλώσεις Facebook"
626
 
627
  #: ../admin-views/tribe-options-help.php:58
628
  msgid "WooTickets"
@@ -665,6 +672,10 @@ msgid ""
665
  "and are already well on your way to creating a first event. Here are some "
666
  "basics we've found helpful for users jumping into it for the first time:"
667
  msgstr ""
 
 
 
 
668
 
669
  #: ../admin-views/tribe-options-help.php:102
670
  #, php-format
@@ -674,6 +685,10 @@ msgid ""
674
  "accompanying screenshots, the primer aims to take you from zero to hero in "
675
  "no time."
676
  msgstr ""
 
 
 
 
677
 
678
  #: ../admin-views/tribe-options-help.php:104
679
  #, php-format
@@ -683,6 +698,11 @@ msgid ""
683
  "helpful as it aims to address any basic install questions not addressed by "
684
  "the new user primer."
685
  msgstr ""
 
 
 
 
 
686
 
687
  #: ../admin-views/tribe-options-help.php:106
688
  #, php-format
@@ -691,12 +711,17 @@ msgid ""
691
  "example plugin that demonstrates how to register a new view. You can "
692
  "%sdownload the plugin at GitHub%s to get started."
693
  msgstr ""
 
 
 
694
 
695
  #: ../admin-views/tribe-options-help.php:108
696
  msgid ""
697
  "Otherwise, if you're feeling adventurous, you can get started by heading to "
698
  "the Events menu and adding your first event."
699
  msgstr ""
 
 
700
 
701
  #: ../admin-views/tribe-options-help.php:112
702
  #, php-format
@@ -705,6 +730,9 @@ msgid ""
705
  "our users. Head over to our %sSupport Page%s and you'll find lots of great "
706
  "resources, including:"
707
  msgstr ""
 
 
 
708
 
709
  #: ../admin-views/tribe-options-help.php:114
710
  #, php-format
@@ -712,6 +740,8 @@ msgid ""
712
  "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
713
  "&amp; Events Calendar PRO"
714
  msgstr ""
 
 
715
 
716
  #: ../admin-views/tribe-options-help.php:116
717
  #, php-format
@@ -719,6 +749,8 @@ msgid ""
719
  "%sFrequently Asked Questions%s ranging from the most basic setup questions "
720
  "to advanced themer tweaks"
721
  msgstr ""
 
 
722
 
723
  #: ../admin-views/tribe-options-help.php:118
724
  #, php-format
@@ -727,12 +759,17 @@ msgid ""
727
  "community, covering custom queries, integration with third-party themes and "
728
  "plugins, etc."
729
  msgstr ""
 
 
 
730
 
731
  #: ../admin-views/tribe-options-help.php:120
732
  msgid ""
733
  "Release notes for painting an overall picture of the plugin's lifecycle and "
734
  "when features/bug fixes were introduced."
735
  msgstr ""
 
 
736
 
737
  #: ../admin-views/tribe-options-help.php:122
738
  #, php-format
@@ -741,6 +778,9 @@ msgid ""
741
  "The Events Calendar (including WooTickets, Community Events, Eventbrite "
742
  "Tickets, Facebook Events, etc)"
743
  msgstr ""
 
 
 
744
 
745
  #: ../admin-views/tribe-options-help.php:124
746
  #, php-format
@@ -752,6 +792,13 @@ msgid ""
752
  "add your own, and help us shape the future of the products business in a way "
753
  "that best meets the community's needs."
754
  msgstr ""
 
 
 
 
 
 
 
755
 
756
  #: ../admin-views/tribe-options-help.php:128
757
  #, php-format
@@ -759,6 +806,9 @@ msgid ""
759
  "Written documentation can only take things so far...sometimes, you need help "
760
  "from a real person. This is where our %ssupport forums%s come into play."
761
  msgstr ""
 
 
 
762
 
763
  #: ../admin-views/tribe-options-help.php:129
764
  #, php-format
@@ -769,6 +819,12 @@ msgid ""
769
  "to read our %ssupport expectations sticky thread%s before posting so you "
770
  "understand our limitations."
771
  msgstr ""
 
 
 
 
 
 
772
 
773
  #: ../admin-views/tribe-options-help.php:130
774
  msgid ""
@@ -778,6 +834,11 @@ msgid ""
778
  "provide customization tips or assist in integrating with 3rd party plugins "
779
  "or themes."
780
  msgstr ""
 
 
 
 
 
781
 
782
  #: ../admin-views/tribe-options-help.php:131
783
  #, php-format
@@ -787,52 +848,57 @@ msgid ""
787
  "deeper level of customization/integration support for paying users than we "
788
  "can on WordPress.org."
789
  msgstr ""
 
 
 
 
 
790
 
791
  #: ../admin-views/tribe-options-help.php:135
792
- #, fuzzy, php-format
793
  msgid ""
794
  "If you find that you aren't getting the level of service you've come to "
795
  "expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
796
  "why. We'll do what we can to make it right."
797
  msgstr ""
798
- "Στείλτε μας ένα email στο %s ή ένα tweet στο %s και πείτε μας γιατί. Θα "
799
- "κάνουμε ό,τι μπορούμε για να το κάνουμε σωστό."
 
800
 
801
  #: ../admin-views/tribe-options-help.php:136
802
  msgid "More..."
803
- msgstr "Περισσότερα..."
804
 
805
  #: ../admin-views/tribe-options-help.php:144
806
  msgid ""
807
  "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
808
  "for installing our labor of love!"
809
  msgstr ""
810
- "Γεια σας! Είμαστε οι Modern Trib και είμαστε εδώ για να σας βοηθήσουμε να "
811
- "κόψετε κώλους. Ευχαριστούμε πολύ για την εγκατάσταση του έργου αγάπης μας!"
 
812
 
813
  #: ../admin-views/tribe-options-help.php:150
814
  msgid "Getting Started"
815
  msgstr "Ξεκινώντας"
816
 
817
  #: ../admin-views/tribe-options-help.php:153
818
- #, fuzzy
819
  msgid "Support Resources To Help You Kick Ass"
820
- msgstr "Πόροι που θα σας βοηθήσουν να κόψετε κώλους"
821
 
822
  #: ../admin-views/tribe-options-help.php:156
823
- #, fuzzy
824
  msgid "Forums: Because Everyone Needs A Buddy"
825
- msgstr "Ο καθένας χρειάζεται ένα φιλαράκι"
826
 
827
  #: ../admin-views/tribe-options-help.php:159
828
  msgid "Not getting help?"
829
- msgstr ""
830
 
831
  #: ../admin-views/tribe-options-help.php:169
832
  #: ../lib/the-events-calendar.class.php:486
833
  #: ../lib/tribe-settings.class.php:135
834
  msgid "The Events Calendar"
835
- msgstr "Το Ημερολόγιο Εκδηλώσεων"
836
 
837
  #: ../admin-views/tribe-options-help.php:173
838
  msgid "Latest Version:"
@@ -875,15 +941,15 @@ msgstr "Δώστε μας 5 αστέρια!"
875
 
876
  #: ../admin-views/tribe-options-help.php:189
877
  msgid "Premium Add-Ons"
878
- msgstr "Premium Add-Ons"
879
 
880
  #: ../admin-views/tribe-options-help.php:195
881
  msgid "(Coming Soon!)"
882
- msgstr "(Έρχεται Σύντομα!)"
883
 
884
  #: ../admin-views/tribe-options-help.php:202
885
  msgid "News and Tutorials"
886
- msgstr "Νέα και Βοηθήματα"
887
 
888
  #
889
  #: ../admin-views/tribe-options-network.php:14
@@ -895,16 +961,16 @@ msgid ""
895
  "This is where all of the global network settings for Modern Tribe's The "
896
  "Events Calendar can be modified."
897
  msgstr ""
898
- "Εδώ μπορείτε να τροποποιήσετε όλες τις γενικές ρυθμίσεις δικτύου για το "
899
- "Ημερολόγιο Εκδηλώσεων της Modern Tribe."
900
 
901
  #: ../admin-views/tribe-options-network.php:26
902
  msgid "Hide the following settings tabs on every site:"
903
- msgstr "Απόκρυψη των παρακάτω καρτελων ρυθμίσεων σε όλους τους ιστότοπους:"
904
 
905
  #: ../admin-views/venue-meta-box.php:20
906
  msgid "Venue Name:"
907
- msgstr "Όνομα Τόπου Διεξαγωγής:"
908
 
909
  #: ../admin-views/venue-meta-box.php:27
910
  #: ../public/advanced-functions/meta.php:371
@@ -921,7 +987,7 @@ msgstr "Χώρα:"
921
 
922
  #: ../admin-views/venue-meta-box.php:73
923
  msgid "State or Province:"
924
- msgstr "Προάστιο:"
925
 
926
  #: ../admin-views/venue-meta-box.php:76
927
  msgid "Select a State:"
@@ -949,7 +1015,7 @@ msgstr "Εμφάνιση:"
949
 
950
  #: ../admin-views/widget-admin-list.php:24
951
  msgid "Show widget only if there are upcoming events:"
952
- msgstr "Εμφάνιση του widget μόνο όταν υπάρχουν επερχόμενες εκδηλώσεις:"
953
 
954
  #: ../admin-views/tickets/attendees.php:9 ../admin-views/tickets/list.php:41
955
  #: ../lib/tickets/tribe-tickets-pro.php:73
@@ -976,7 +1042,7 @@ msgstr "Ημερομηνία / Ώρα Λήξης:"
976
 
977
  #: ../admin-views/tickets/attendees.php:34
978
  msgid "Venue:"
979
- msgstr "Χώρος:"
980
 
981
  #: ../admin-views/tickets/attendees.php:52
982
  msgid "Ticket Sales"
@@ -1002,7 +1068,7 @@ msgstr "Πέρασαν από τον έλεγχο εισιτηρίων:"
1002
 
1003
  #: ../admin-views/tickets/attendees.php:105
1004
  msgid "Send the attendee list by email"
1005
- msgstr "Στείλτε τη λίστα συμμετεχόντων μέσω e-mail"
1006
 
1007
  #
1008
  #: ../admin-views/tickets/attendees.php:109
@@ -1011,7 +1077,7 @@ msgstr "Επιλέξτε ένα Χρήστη:"
1011
 
1012
  #: ../admin-views/tickets/attendees.php:110
1013
  msgid "Select..."
1014
- msgstr "Επιλέξτε..."
1015
 
1016
  #: ../admin-views/tickets/attendees.php:112
1017
  msgid "or"
@@ -1038,19 +1104,19 @@ msgstr "Επεξεργασία σε %s"
1038
  #: ../admin-views/tickets/list.php:27
1039
  #: ../lib/tribe-admin-events-list.class.php:53
1040
  msgid "View"
1041
- msgstr "Εμφάνιση"
1042
 
1043
  #: ../admin-views/tickets/list.php:41 ../lib/tickets/tribe-tickets-pro.php:73
1044
  msgid "See who purchased tickets to this event"
1045
- msgstr "Δείτε ποιος αγόρασε εισιτήρια γι αυτή την εκδήλωση"
1046
 
1047
  #: ../admin-views/tickets/meta-box.php:21
1048
  msgid ""
1049
  "This event was created using Community Events. Are you sure you want to sell "
1050
  "tickets for it?"
1051
  msgstr ""
1052
- "Η εκδήλωση αυτή δημιουργήθηκε χρησιμοποιώντας τις Εκδηλώσεις Κοινότητας. "
1053
- "Είστε σίγουρος ότι θέλετε να πουλήσετε εισιτήρια γι αυτή;"
1054
 
1055
  #: ../admin-views/tickets/meta-box.php:32
1056
  msgid "Upload image for the ticket header"
@@ -1062,14 +1128,14 @@ msgid ""
1062
  "then scaled for mobile. If you would like \"retina\" support use an image "
1063
  "sized to 1160px wide."
1064
  msgstr ""
1065
- "Το μέγιστο μέγεθος της εικόνας στο e-mail θα είναι 580px πλάτος με "
1066
  "οποιοδήποτε ύψος, και στη συνέχεια θα αποκλιμακωθεί για τα κινητά. Αν θέλετε "
1067
- "υποστήριξη \"retina\" χρησιμοποιήστε μια εικόνα πλάτους 1160px."
1068
 
1069
  #
1070
  #: ../admin-views/tickets/meta-box.php:36
1071
  msgid "Select an Image"
1072
- msgstr "Επιλέξτε μια εικόνα"
1073
 
1074
  #: ../admin-views/tickets/meta-box.php:44
1075
  msgid "Remove"
@@ -1118,9 +1184,9 @@ msgid ""
1118
  "When will ticket sales occur? If you don't set a start/end date for sales, "
1119
  "tickets will be available from now until the event ends."
1120
  msgstr ""
1121
- "Πότε θα γίνουν οι πωλήσεις εισιτηρίων; Εάν δεν ορίσετε μια ημερομηνία "
1122
- "έναρξης / λήξης για τις πωλήσεις, τα εισιτήρια θα είναι διαθέσιμα από σήμερα "
1123
- "μέχρι την ολοκλήρωση της εκδήλωσης."
1124
 
1125
  #: ../lib/the-events-calendar.class.php:491
1126
  msgid "month"
@@ -1128,7 +1194,7 @@ msgstr "μήνας"
1128
 
1129
  #: ../lib/the-events-calendar.class.php:492
1130
  msgid "upcoming"
1131
- msgstr "επερχόμενο"
1132
 
1133
  #: ../lib/the-events-calendar.class.php:493
1134
  msgid "past"
@@ -1149,21 +1215,21 @@ msgid ""
1149
  "Your version of The Events Calendar is not up-to-date with one of your The "
1150
  "Events Calendar add-ons. Please %supdate now.%s"
1151
  msgstr ""
1152
- "Η έκδοση του Ημερολογίου Εκδηλώσεων που χρησιμοποιείτε δεν είναι ενημερωμένη "
1153
- "με μία από τις επεκτάσεις του Ημερολογίου Εκδηλώσεων. Παρακαλώ %sαναβαθμίστε "
1154
  "τώρα.%s"
1155
 
1156
  #: ../lib/the-events-calendar.class.php:639
1157
- #, fuzzy, php-format
1158
  msgid ""
1159
  "The following plugins are out of date: <b>%s</b>. All add-ons contain "
1160
  "dependencies on The Events Calendar and will not function properly unless "
1161
  "paired with the right version. %sWant to pair an older version%s?"
1162
  msgstr ""
1163
- "Τα παρακάτω πρόσθετα είναι ξεπερασμένα: <b>%s</b>. Παρακαλώ %s ενημερώστε "
1164
- "τώρα%s. Όλες οι επεκτάσεις σχετίζονται με το Ημερολόγιο Εκδηλώσεων και δεν "
1165
- "θα λειτουργούν σωστά αν δεν συνδιαστούν με τη σωστή έκδοση. %s Θέλετε να "
1166
- "αντιστοιχίσετε μια παλαιότερη έκδοση %s;"
1167
 
1168
  #: ../lib/the-events-calendar.class.php:703
1169
  #: ../lib/the-events-calendar.class.php:738
@@ -1172,7 +1238,7 @@ msgid "Licenses"
1172
  msgstr "Άδειες"
1173
 
1174
  #: ../lib/the-events-calendar.class.php:707
1175
- #, fuzzy, php-format
1176
  msgid ""
1177
  "<p>The license key you received when completing your purchase from %s will "
1178
  "grant you access to support and updates until it expires. You do not need to "
@@ -1188,20 +1254,21 @@ msgid ""
1188
  "expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> "
1189
  "and click \"Check Again\".</p>"
1190
  msgstr ""
1191
- "<p><p> Το κλειδί άδειας χρήσης που λάβατε όταν ολοκληρώσατε την αγορά σας "
1192
- "από το %s θα σας παρέχει πρόσβαση σε υποστήριξη και ενημερώσεις μέχρι τη "
1193
- "λήξη του. Δεν χρειάζετε να εισάγετε το κλειδί σας παρακάτω, αλλά θα "
1194
- "χρειαστεί να το εισάγετε για να λαμβάνετε ατόματες ενημερώσεις. "
1195
- "<strong>Βρείτε το κλειδί σας στο <a href=\"%s\">%s</a></strong>.</p> <p>Κάθε "
1196
- "αγορασμένο πρόσθετο έχει το δικό του κλειδί. Απλά εισάγετε το κλειδί στο "
1197
- "κατάλληλο πεδίο παρακάτω, και δώστε του λίγο χρόνο για να το επικυρώσει. "
1198
- "Ξέρετε ότι είστε έτοιμοι όταν μία πράσινη ημερομηνία λήξης εμφανίζεται "
1199
- "παράλληλα με ένα \"έγκυρο\" μήνυμα. Εάν βλέπετε ένα κόκκινο μήνυμα που "
1200
- "αναφέρει ότι το κλειδί σας δεν είναι έγκυρο ή είναι εκτός εγκατάστασης, "
1201
- "επισκεφθείτε [enter link to account/licenses] για να διαχειριστείτε τις "
1202
- "εγκαταστάσεις σας ή για να ενανεώσετε / αναβαθμίσετε την άδειά σας. Στο "
1203
- "WordPress, μεταβείτε στον <a href=\"%s\">Πίνακα Ελέγχου</a> και κάντε κλικ "
1204
- "στο \"Ελέξτε Ξανά\".</p>"
 
1205
 
1206
  #: ../lib/the-events-calendar.class.php:730
1207
  msgid "General"
@@ -1217,8 +1284,8 @@ msgid ""
1217
  "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
1218
  "your WordPress install."
1219
  msgstr ""
1220
- "Μας συγχωρείτε, το Events Calendar απαιτεί WordPress έκδοσης %s ή νεότερο. "
1221
- "Παρακαλούμε αναβαθμίστε την εγκαταστασή σας."
1222
 
1223
  #: ../lib/the-events-calendar.class.php:785
1224
  #, php-format
@@ -1226,13 +1293,14 @@ msgid ""
1226
  "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
1227
  "about moving you to a newer version of PHP."
1228
  msgstr ""
1229
- "Μας συγχωρείτε, το Events Calendar απαιτεί PHP έκδοσης %s ή νεότερη. "
1230
- "Επικοινωνήστε με τον Web host για να μεταβείτε σε νεότερη έκδοση της PHP."
 
1231
 
1232
  #: ../lib/the-events-calendar.class.php:1000 ../lib/widget-list.class.php:151
1233
  #: ../public/template-tags/loop.php:137
1234
  msgid "Upcoming Events"
1235
- msgstr "Επερχόμενες Εκδηλώσεις"
1236
 
1237
  #: ../lib/the-events-calendar.class.php:1003
1238
  #: ../public/template-tags/loop.php:165
@@ -1256,7 +1324,7 @@ msgstr "Εκδηλώσεις στις %s"
1256
 
1257
  #: ../lib/the-events-calendar.class.php:1041
1258
  msgid "No description has been entered for this event."
1259
- msgstr "Δεν έχει εισαχθεί περιγραφή γι αυτή την εκδήλωση."
1260
 
1261
  #: ../lib/the-events-calendar.class.php:1303
1262
  msgid "category"
@@ -1313,12 +1381,12 @@ msgstr "Δεν βρέθηκε καμία εκδήλωση στον Κάδο Αν
1313
  #: ../lib/the-events-calendar.class.php:1353
1314
  #: ../lib/the-events-calendar.class.php:1465
1315
  msgid "Venues"
1316
- msgstr "Χώροι"
1317
 
1318
  #: ../lib/the-events-calendar.class.php:1354
1319
  #: ../public/advanced-functions/meta.php:331 ../views/tickets/email.php:343
1320
  msgid "Venue"
1321
- msgstr "Χώρος"
1322
 
1323
  #: ../lib/the-events-calendar.class.php:1356
1324
  msgid "Add New Venue"
@@ -1373,7 +1441,7 @@ msgstr "Νέος Διοργανωτής"
1373
  #
1374
  #: ../lib/the-events-calendar.class.php:1372
1375
  msgid "View Organizer"
1376
- msgstr "Εμφάνιση Διοργανωτή"
1377
 
1378
  #: ../lib/the-events-calendar.class.php:1373
1379
  msgid "Search Organizers"
@@ -1432,7 +1500,7 @@ msgstr "Όνομα Νέας Κατηγορίας Εκδήλωσης"
1432
  #: ../lib/the-events-calendar.class.php:1404
1433
  #, php-format
1434
  msgid "Event updated. <a href=\"%s\">View event</a>"
1435
- msgstr "Η εκδήλωση ενημερώθηκε. <a href=\"%s\">Εμφάνηση εκδήλωσης</a>"
1436
 
1437
  #: ../lib/the-events-calendar.class.php:1405
1438
  #: ../lib/the-events-calendar.class.php:1422
@@ -1458,7 +1526,7 @@ msgstr "Η εκδήλωση αποκαταστάθηκε στην αναθεώρ
1458
  #: ../lib/the-events-calendar.class.php:1410
1459
  #, php-format
1460
  msgid "Event published. <a href=\"%s\">View event</a>"
1461
- msgstr "Η εκδήλωση δημοσιεύθηκε. <a href=\"%s\">Εμφάνηση εκδήλωσης</a>"
1462
 
1463
  #: ../lib/the-events-calendar.class.php:1411
1464
  msgid "Event saved."
@@ -1469,7 +1537,7 @@ msgstr "Η εκδήλωση αποθηκεύθηκε."
1469
  msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1470
  msgstr ""
1471
  "Η εκδήλωση υποβλήθηκε. <a target=\"_blank\" href=\"%s\">Προεπισκόπηση "
1472
- "εκδήλωσης </a>"
1473
 
1474
  #: ../lib/the-events-calendar.class.php:1413
1475
  #, php-format
@@ -1496,31 +1564,32 @@ msgstr ""
1496
  #: ../lib/the-events-calendar.class.php:1421
1497
  #, php-format
1498
  msgid "Venue updated. <a href=\"%s\">View venue</a>"
1499
- msgstr "Ο χώρος τροποποιήθηκε. <a href=\"%s\">Εμφάνιση χώρου</a>"
1500
 
1501
  #: ../lib/the-events-calendar.class.php:1424
1502
  msgid "Venue updated."
1503
- msgstr "Ο χώρος τροποποιήθηκε."
1504
 
1505
  #: ../lib/the-events-calendar.class.php:1426
1506
  #, php-format
1507
  msgid "Venue restored to revision from %s"
1508
- msgstr "Ο χώρος αποκαταστάθηκε στην αναθεώρηση από %s"
1509
 
1510
  #: ../lib/the-events-calendar.class.php:1427
1511
  #, php-format
1512
  msgid "Venue published. <a href=\"%s\">View venue</a>"
1513
- msgstr "Ο χώρος δημοσιεύθηκε. <a href=\"%s\">Εμφάνηση χώρου</a>"
1514
 
1515
  #: ../lib/the-events-calendar.class.php:1428
1516
  msgid "Venue saved."
1517
- msgstr "Ο χώρος αποθηκεύθηκε."
1518
 
1519
  #: ../lib/the-events-calendar.class.php:1429
1520
  #, php-format
1521
  msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1522
  msgstr ""
1523
- "Ο χώρος υποβλήθηκε. <a target=\"_blank\" href=\"%s\">Προεπισκόπηση χώρου </a>"
 
1524
 
1525
  #: ../lib/the-events-calendar.class.php:1430
1526
  #, php-format
@@ -1528,20 +1597,20 @@ msgid ""
1528
  "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1529
  "\">Preview venue</a>"
1530
  msgstr ""
1531
- "Ο χώρος έχει προγραμματιστεί για: <strong>%1$s</strong>. <a target=\"_blank"
1532
- "\" href=\"%2$s\">Προεπισκόπηση χώρου</a>"
1533
 
1534
  #: ../lib/the-events-calendar.class.php:1433
1535
  #, php-format
1536
  msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1537
  msgstr ""
1538
- "Το προσχέδιο του χώρου τροποποιήθηκε. <a target=\"_blank\" href=\"%s"
1539
- "\">Προεπισκόπηση χώρου</a>"
1540
 
1541
  #: ../lib/the-events-calendar.class.php:1438
1542
  #, php-format
1543
  msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1544
- msgstr "Ο διοργανωτής τροποποιήθηκε. <a href=\"%s\">Εμφάνιση διοργανωτή</a>"
1545
 
1546
  #: ../lib/the-events-calendar.class.php:1441
1547
  msgid "Organizer updated."
@@ -1555,11 +1624,11 @@ msgstr "Ο διοργανωτής αποκαταστάθηκε στην αναθ
1555
  #: ../lib/the-events-calendar.class.php:1444
1556
  #, php-format
1557
  msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1558
- msgstr "Ο διοργανωτής δημοσιεύθηκε. <a href=\"%s\">Εμφάνηση διοργανωτή</a>"
1559
 
1560
  #: ../lib/the-events-calendar.class.php:1445
1561
  msgid "Organizer saved."
1562
- msgstr "Ο διοργανωτής αποθηκεύτηκε"
1563
 
1564
  #: ../lib/the-events-calendar.class.php:1446
1565
  #, php-format
@@ -1567,7 +1636,7 @@ msgid ""
1567
  "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1568
  msgstr ""
1569
  "Ο διοργανωτής υποβλήθηκε. <a target=\"_blank\" href=\"%s\">Προεπισκόπηση "
1570
- "διοργανωτή </a>"
1571
 
1572
  #: ../lib/the-events-calendar.class.php:1447
1573
  #, php-format
@@ -1589,7 +1658,7 @@ msgstr ""
1589
 
1590
  #: ../lib/the-events-calendar.class.php:1491
1591
  msgid "Use Saved Venue:"
1592
- msgstr "Χρήση Αποθηκευμένου Χώρου:"
1593
 
1594
  #: ../lib/the-events-calendar.class.php:1520
1595
  msgid "Use Saved Organizer:"
@@ -1597,22 +1666,22 @@ msgstr "Χρήση Αποθηκευμένου Διοργανωτή:"
1597
 
1598
  #: ../lib/the-events-calendar.class.php:1556
1599
  msgid "Use New Venue"
1600
- msgstr "Χρήση Νέου Χώρου"
1601
 
1602
  #
1603
  #: ../lib/the-events-calendar.class.php:1558
1604
  msgid "My Venues"
1605
- msgstr "Οι Χώροι μου"
1606
 
1607
  #
1608
  #: ../lib/the-events-calendar.class.php:1563
1609
  msgid "Available Venues"
1610
- msgstr "Διαθέσιμοι Χώροι"
1611
 
1612
  #
1613
  #: ../lib/the-events-calendar.class.php:1574
1614
  msgid "No saved venue exists."
1615
- msgstr "Δεν υπάρχουν αποθηκευμένοι χώροι."
1616
 
1617
  #: ../lib/the-events-calendar.class.php:1608
1618
  msgid "Use New Organizer"
@@ -1669,7 +1738,7 @@ msgstr "Επιλογές Εκδήλωσης"
1669
 
1670
  #: ../lib/the-events-calendar.class.php:3469
1671
  msgid "Venue Information"
1672
- msgstr "Πληροφορίες Χώρου"
1673
 
1674
  #: ../lib/the-events-calendar.class.php:3474
1675
  msgid "Organizer Information"
@@ -1681,12 +1750,12 @@ msgstr "Υποστήριξη"
1681
 
1682
  #: ../lib/the-events-calendar.class.php:3672
1683
  msgid "View All Add-Ons"
1684
- msgstr "Εμφάνιση όλων των Επεκτάσεων"
1685
 
1686
  #
1687
  #: ../lib/the-events-calendar.class.php:3689
1688
  msgid "News from Modern Tribe"
1689
- msgstr "Νέα από τη Modern Tribe"
1690
 
1691
  #: ../lib/the-events-calendar.class.php:3770
1692
  msgid "Additional Functionality"
@@ -1698,7 +1767,7 @@ msgid ""
1698
  "sales, publicly submitted events, new views and more?"
1699
  msgstr ""
1700
  "Ψάχνετε για πρόσθετη λειτουργικότητα όπως επαναλαμβανόμενες εκδηλώσεις, "
1701
- "πωλήσεις εισιτηρίων, δημοσίως υποβληθείσες εκδηλώσεις, νέες εμφανίσεις και "
1702
  "άλλα;"
1703
 
1704
  #: ../lib/the-events-calendar.class.php:3775
@@ -1710,7 +1779,7 @@ msgstr "Ελέγξτε τις <a href=\"%s\">διαθέσιμες επεκτάσ
1710
  #: ../lib/the-events-calendar.class.php:3846
1711
  #: ../lib/the-events-calendar.class.php:3937
1712
  msgid "View Calendar"
1713
- msgstr "Εμφάνιση Ημερολογίου"
1714
 
1715
  #
1716
  #: ../lib/the-events-calendar.class.php:3854
@@ -1734,8 +1803,8 @@ msgid ""
1734
  "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
1735
  "change the events slug, visit %sEvents -> Settings%s."
1736
  msgstr ""
1737
- "Καλώς ήρθατε στο ΗμερολόγιοΕκδηλώσεων! Το ημερολόγιο εκδηλώσεών σας "
1738
- "βρίσκεται στο %s. Για α αλλάξετε το slug των εκδηλώσεων, επισκεφθείτε "
1739
  "%sΕκδηλώσεις -> Ρυθμίσεις%s."
1740
 
1741
  #: ../lib/the-events-calendar.class.php:3974
@@ -1774,20 +1843,20 @@ msgstr "&laquo; Προηγούμενες εκδηλώσεις"
1774
  #: ../lib/the-events-calendar.class.php:4277 ../views/list/nav.php:40
1775
  #: ../views/list/nav.php:43 ../views/list/nav.php:49
1776
  msgid "Next Events &raquo;"
1777
- msgstr "Επόμενα Εκδηλώσεις &raquo;"
1778
 
1779
  #: ../lib/tribe-admin-events-list.class.php:53
1780
  #, php-format
1781
  msgid "View &#8220;%s&#8221;"
1782
- msgstr "Εμφάνιση &#8220;%s&#8221;"
1783
 
1784
  #: ../lib/tribe-admin-events-list.class.php:222
1785
  msgid "Start Date"
1786
- msgstr "Αρχική Ημερομηνία"
1787
 
1788
  #: ../lib/tribe-admin-events-list.class.php:223
1789
  msgid "End Date"
1790
- msgstr "Τελική Ημερομηνία"
1791
 
1792
  #: ../lib/tribe-admin-events-list.class.php:225
1793
  msgid "Recurring?"
@@ -1833,11 +1902,11 @@ msgstr "Ορίστηκε μη έγκυρος τύπος πεδίου"
1833
 
1834
  #: ../lib/tribe-field.class.php:414
1835
  msgid "No radio options specified"
1836
- msgstr "Δεν ορίστηκαν επιλογές ράδιο"
1837
 
1838
  #: ../lib/tribe-field.class.php:451
1839
  msgid "No checkbox options specified"
1840
- msgstr "Δεν ορίστηκαν επιλογές του πλαισίου επιλογών"
1841
 
1842
  #: ../lib/tribe-field.class.php:505
1843
  msgid "No select options specified"
@@ -1846,12 +1915,12 @@ msgstr "Δεν ορίστηκαν επιλογές του select"
1846
  #
1847
  #: ../lib/tribe-settings-tab.class.php:219
1848
  msgid "There are no fields setup for this tab yet."
1849
- msgstr "Δεν έχουν ρυθμιστεί ακόμα πεδία γι αυτή την καρτέλα."
1850
 
1851
  #
1852
  #: ../lib/tribe-settings.class.php:164 ../lib/tribe-settings.class.php:176
1853
  msgid "The Events Calendar Settings"
1854
- msgstr "Ρυθμίσεις του Ημερολογίου Εκδηλώσεων"
1855
 
1856
  #
1857
  #: ../lib/tribe-settings.class.php:176
@@ -1865,7 +1934,7 @@ msgstr "%s Ρυθμίσεις"
1865
 
1866
  #: ../lib/tribe-settings.class.php:239
1867
  msgid "You've requested a non-existent tab."
1868
- msgstr "Έχετε ζητήσει μια ανύπαρκτη καρτέλα."
1869
 
1870
  #
1871
  #: ../lib/tribe-settings.class.php:247
@@ -1882,7 +1951,7 @@ msgstr "Το αίτημα στάλθηκε με μη ασφαλή τρόπο."
1882
 
1883
  #: ../lib/tribe-settings.class.php:311
1884
  msgid "The request wasn't sent from this tab."
1885
- msgstr "Η αίτηση δεν στάλθηκε από αυτή την καρτέλα."
1886
 
1887
  #: ../lib/tribe-settings.class.php:476
1888
  msgid "Your form had the following errors:"
@@ -1890,7 +1959,8 @@ msgstr "Η φόρμα σας είχε τα ακόλουθα σφάλματα:"
1890
 
1891
  #: ../lib/tribe-settings.class.php:485
1892
  msgid "None of your settings were saved. Please try again."
1893
- msgstr "Καμία από τις ρυθμίσεις σας δεν αποθηκεύτηκε. Παρακαλώ δοκιμάστε ξανά."
 
1894
 
1895
  #: ../lib/tribe-settings.class.php:485
1896
  msgid ""
@@ -1898,16 +1968,16 @@ msgid ""
1898
  msgid_plural ""
1899
  "The above settings were not saved. Other settings were successfully saved."
1900
  msgstr[0] ""
1901
- "Η παραπάνω ρύθμιση δεν αποθηκεύτηκε. Άλλες ρυθμίσεις αποθηκεύτηκαν με "
1902
  "επιτυχία."
1903
  msgstr[1] ""
1904
- "Η παραπάνω ρυθμίσεις δεν αποθηκεύτηκαν. Άλλες ρυθμίσεις αποθηκεύτηκαν με "
1905
  "επιτυχία."
1906
 
1907
  #
1908
  #: ../lib/tribe-settings.class.php:509
1909
  msgid "Settings saved."
1910
- msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
1911
 
1912
  #: ../lib/tribe-template-factory.class.php:225
1913
  #, php-format
@@ -1920,7 +1990,7 @@ msgid ""
1920
  "listed under %s. Check out past events for this category or view the full "
1921
  "calendar."
1922
  msgstr ""
1923
- "καταχωρήθηκε στη κατηγορία %s. Ελέγξτε παρελθούσες εκδηλώσεις αυτής της "
1924
  "κατηγορίας ή δείτε το πλήρες ημερολόγιο."
1925
 
1926
  #: ../lib/tribe-template-factory.class.php:237
@@ -1929,30 +1999,30 @@ msgid ""
1929
  "listed under %s. Check out upcoming events for this category or view the "
1930
  "full calendar."
1931
  msgstr ""
1932
- "καταχωρήθηκε στη κατηγορία %s. Ελέγξτε τις επερχόμενες εκδηλώσεις για την "
1933
- "κατηγορία αυτή ή δείτε το πλήρες ημερολόγιο."
1934
 
1935
  #: ../lib/tribe-template-factory.class.php:241
1936
  #, php-format
1937
  msgid "No events scheduled for <strong>%s</strong>. Please try another day."
1938
  msgstr ""
1939
- "Δεν υπάρχουν προγραμματισμένες εκδηλώσεις για <strong>%s</ strong>. Παρακαλώ "
1940
- "δοκιμάστε μια άλλη ημέρα."
1941
 
1942
  #
1943
  #: ../lib/tribe-template-factory.class.php:245
1944
  msgid "No upcoming events "
1945
- msgstr "Δεν υπάρχουν επερχόμενες εκδηλώσεις"
1946
 
1947
  #
1948
  #: ../lib/tribe-template-factory.class.php:247
1949
  msgid "No matching events "
1950
- msgstr "Δεν υπάρχουν εκδηλώσεις που να αντιστοιχούν"
1951
 
1952
  #
1953
  #: ../lib/tribe-template-factory.class.php:250
1954
  msgid "No previous events "
1955
- msgstr "Δεν υπάρχουν προηγούμενες εκδηλώσεις"
1956
 
1957
  #: ../lib/tribe-the-events-calendar-import.class.php:64
1958
  #, php-format
@@ -1969,10 +2039,25 @@ msgid ""
1969
  "><br/> You have events that need to be migrated. Please visit the bottom of "
1970
  "the <a href=\"%s\">settings page</a> to perform the migration."
1971
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1972
 
1973
  #: ../lib/tribe-the-events-calendar-import.class.php:86
1974
  msgid "Upgrade from The Events Calendar"
1975
- msgstr "Αναβάθμηση από το Ημερολόγιο Εκδηλώσεων"
1976
 
1977
  #: ../lib/tribe-the-events-calendar-import.class.php:87
1978
  msgid ""
@@ -1981,18 +2066,18 @@ msgid ""
1981
  "upgrade. This process can not be undone."
1982
  msgstr ""
1983
  "Φαίνεται ότι υπάρχουν κάποια παλαιότερα δεδομένα του ημερολογίου εκδηλώσεων "
1984
- "που πρέπει να αναβαθμιστούν. Παρακαλούμε βεβαιωθείτε ότι έχετε αντίγραφο της "
1985
- "βάσης δεδομένων πριν ξεκινήσετε τη διαδικασία αναβάθμισης. Αυτή η διαδικασία "
1986
- "δεν μπορεί να αναιρεθεί."
1987
 
1988
  #: ../lib/tribe-the-events-calendar-import.class.php:88
1989
  msgid "Migrate Data!"
1990
- msgstr "Συγχώνευση Δεδομένων!"
1991
 
1992
  #: ../lib/tribe-the-events-calendar-import.class.php:166
1993
  #, php-format
1994
  msgid "You successfully migrated (%d) entries."
1995
- msgstr "Συγχωνεύσατε επιτυχώς (%d) καταχωρήσεις."
1996
 
1997
  #: ../lib/tribe-the-events-calendar-import.class.php:242
1998
  msgid "Install has 1 or more legacy event!"
@@ -2055,7 +2140,7 @@ msgid ""
2055
  "Comparison validation failed because no comparison value was provided, for "
2056
  "field %s"
2057
  msgstr ""
2058
- "Η σύγκριση επικύρωσης απέτυχε διότι δεν παρασχέθηκε τιμή σύγκρισης για το "
2059
  "πεδίο %s"
2060
 
2061
  #: ../lib/tribe-validate.class.php:302
@@ -2083,7 +2168,7 @@ msgstr "%s πρέπει να είναι ένας αριθμός μεταξύ 0
2083
  msgid ""
2084
  "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
2085
  msgstr ""
2086
- "% s πρέπει να αποτελείται μόνο από γράμματα, αριθμούς, παύλες, αποστρόφους, "
2087
  "και κενά διαστήματα."
2088
 
2089
  #: ../lib/tribe-validate.class.php:422
@@ -2274,7 +2359,7 @@ msgstr "Πράσινο Ακρωτήριο"
2274
 
2275
  #: ../lib/tribe-view-helpers.class.php:84
2276
  msgid "Cayman Islands"
2277
- msgstr "Νησιά Καϊμάν"
2278
 
2279
  #: ../lib/tribe-view-helpers.class.php:85
2280
  msgid "Central African Republic"
@@ -2414,7 +2499,7 @@ msgstr "Γαλλία"
2414
 
2415
  #: ../lib/tribe-view-helpers.class.php:119
2416
  msgid "France, Metropolitan"
2417
- msgstr "Translate from: ItalianΓαλλία, Μητροπολιτική"
2418
 
2419
  #: ../lib/tribe-view-helpers.class.php:120
2420
  msgid "French Guiana"
@@ -2459,7 +2544,7 @@ msgstr "Ελλάδα"
2459
 
2460
  #: ../lib/tribe-view-helpers.class.php:130
2461
  msgid "Greenland"
2462
- msgstr "Γριλανδία"
2463
 
2464
  #: ../lib/tribe-view-helpers.class.php:131
2465
  msgid "Grenada"
@@ -2728,7 +2813,7 @@ msgstr "Νεπάλ"
2728
 
2729
  #: ../lib/tribe-view-helpers.class.php:197
2730
  msgid "Netherlands"
2731
- msgstr "Ολανδία"
2732
 
2733
  #: ../lib/tribe-view-helpers.class.php:198
2734
  msgid "Netherlands Antilles"
@@ -2920,7 +3005,7 @@ msgstr "Σρι Λάνκα"
2920
 
2921
  #: ../lib/tribe-view-helpers.class.php:245
2922
  msgid "St. Helena"
2923
- msgstr "Άγια Ελένη"
2924
 
2925
  #: ../lib/tribe-view-helpers.class.php:246
2926
  msgid "St. Pierre And Miquelon"
@@ -3024,7 +3109,7 @@ msgstr "Ηνωμένο Βασίλειο"
3024
 
3025
  #: ../lib/tribe-view-helpers.class.php:271
3026
  msgid "United States Minor Outlying Islands"
3027
- msgstr "Ηνωμένες Πολιτείες Μικρά Απομονωένα Νησιά"
3028
 
3029
  #: ../lib/tribe-view-helpers.class.php:272
3030
  msgid "Uruguay"
@@ -3056,7 +3141,7 @@ msgstr "Παρθένες Νήσοι (ΗΠΑ)"
3056
 
3057
  #: ../lib/tribe-view-helpers.class.php:279
3058
  msgid "Wallis And Futuna Islands"
3059
- msgstr "Νήσοι Βάλλις και Φουτούνα"
3060
 
3061
  #: ../lib/tribe-view-helpers.class.php:280
3062
  msgid "Western Sahara"
@@ -3104,7 +3189,7 @@ msgstr "Κονέκτικατ"
3104
 
3105
  #: ../lib/tribe-view-helpers.class.php:315
3106
  msgid "Delaware"
3107
- msgstr "Delaware"
3108
 
3109
  #: ../lib/tribe-view-helpers.class.php:316
3110
  msgid "District of Columbia"
@@ -3168,7 +3253,7 @@ msgstr "Μινεσότα"
3168
 
3169
  #: ../lib/tribe-view-helpers.class.php:332
3170
  msgid "Mississippi"
3171
- msgstr "Μισισιπής"
3172
 
3173
  #: ../lib/tribe-view-helpers.class.php:333
3174
  msgid "Missouri"
@@ -3256,7 +3341,7 @@ msgstr "Βερμόντ"
3256
 
3257
  #: ../lib/tribe-view-helpers.class.php:354
3258
  msgid "Virginia"
3259
- msgstr "Βερμόντ"
3260
 
3261
  #: ../lib/tribe-view-helpers.class.php:355
3262
  msgid "Washington"
@@ -3277,7 +3362,7 @@ msgstr "Ουαϊόμινγκ"
3277
  #
3278
  #: ../lib/widget-list.class.php:21
3279
  msgid "A widget that displays upcoming events."
3280
- msgstr "Ένα widget που εμφανίζει επερχόμενες εκδηλώσεις."
3281
 
3282
  #: ../lib/widget-list.class.php:27
3283
  msgid "Events List"
@@ -3285,11 +3370,11 @@ msgstr "Λίστα Εκδηλώσεων"
3285
 
3286
  #: ../lib/widget-list.class.php:114
3287
  msgid "View All Events"
3288
- msgstr "Εμφάνηση Όλων των Εκδηλώσεων"
3289
 
3290
  #: ../lib/widget-list.class.php:117
3291
  msgid "There are no upcoming events at this time."
3292
- msgstr "Δεν υπάρχουν επερχόμενες εκδηλώσεις αυτή την στιμγή"
3293
 
3294
  #: ../lib/template-classes/month.php:75
3295
  #, php-format
@@ -3297,8 +3382,8 @@ msgid ""
3297
  "There were no results found for <strong>\"%s\"</strong> this month. Try "
3298
  "searching next month."
3299
  msgstr ""
3300
- "Δεν βρέθηκαν αποτελέσματα για <strong>\"%s\"</strong>αυτό το μήνα. Δοκιμάστε "
3301
- "να ψάξετε στον επόμενο μήνα."
3302
 
3303
  #: ../lib/template-classes/single-event.php:99
3304
  msgid "This event has passed."
@@ -3377,12 +3462,12 @@ msgstr "Ορισμός ως κεφαλίδα εισιτηρίου"
3377
  #: ../lib/tickets/tribe-tickets-pro.php:107
3378
  msgid "You need to select a user or type a valid email address"
3379
  msgstr ""
3380
- "Πρέπει να επιλέξετε ένα χρήστη ή να πληκτρολογήσετε μια έγκυρη διεύθυνση "
3381
  "email"
3382
 
3383
  #: ../lib/tickets/tribe-tickets-pro.php:108
3384
  msgid "Sending..."
3385
- msgstr "Αποστέλλεται..."
3386
 
3387
  #: ../lib/tickets/tribe-tickets-pro.php:136
3388
  msgid "Columns"
@@ -3395,7 +3480,7 @@ msgid ""
3395
  "export."
3396
  msgstr ""
3397
  "Μπορείτε να χρησιμοποιήσετε τις επιλογές οθόνης για να επιλέξετε τις στήλες "
3398
- "που θέλετε να δείτε. Η επιλογή λειτουργεί στον παρακάτω πίνακα, στο e-mail, "
3399
  "για εκτύπωση και για την εξαγωγή CSV."
3400
 
3401
  #: ../lib/tickets/tribe-tickets-pro.php:258
@@ -3405,11 +3490,11 @@ msgstr "συμμετέχοντες"
3405
  #: ../lib/tickets/tribe-tickets-pro.php:308
3406
  #, php-format
3407
  msgid "Attendee List for: %s"
3408
- msgstr "Λίστα συμμετεχόντων για: %s"
3409
 
3410
  #: ../lib/tickets/tribe-tickets.php:292
3411
  msgid "Your ticket has been saved."
3412
- msgstr "Το εισιτήριό σας έχει αποθηκευτεί."
3413
 
3414
  #: ../lib/tickets/tribe-tickets.php:369
3415
  msgid "Your ticket has been deleted."
@@ -3430,7 +3515,7 @@ msgstr "Ημερομηνία:"
3430
 
3431
  #: ../public/advanced-functions/meta.php:233
3432
  msgid "Click to view a Google Map"
3433
- msgstr "Κάντε κλικ για να εμφανήσετε ένα χάρτη Google"
3434
 
3435
  #
3436
  #: ../public/advanced-functions/meta.php:234
@@ -3514,8 +3599,8 @@ msgid ""
3514
  "ideally be plural, and this singular.<br />Your single Event URL is like: %s"
3515
  msgstr ""
3516
  "<strong>Δεν</strong> μπορείτε να χρησιμοποιήσετε το ίδιο slug με το "
3517
- "παραπάνω. Ιδανικά, το παραπάνω θα πρέπει να είναι πολλαπλό και αυτό μοναδικό."
3518
- "<br />Το URL μεμονομένης εκδήλωσης είναι σαν: %s"
3519
 
3520
  #
3521
  #: ../views/single-event.php:23
@@ -3525,12 +3610,12 @@ msgstr "&laquo; Όλες οι Εκδηλώσεις"
3525
  #
3526
  #: ../views/single-event.php:42 ../views/single-event.php:73
3527
  msgid "Event Navigation"
3528
- msgstr "Πλοηγός Εκδήλωσης"
3529
 
3530
  #
3531
  #: ../views/list/nav.php:16
3532
  msgid "Events List Navigation"
3533
- msgstr "Πλοηγός Λίστας Εκδηλώσεων"
3534
 
3535
  #: ../views/list/single-event.php:76
3536
  msgid "Find out more"
@@ -3543,12 +3628,12 @@ msgstr "Βρείτε Εκδηλώσεις"
3543
 
3544
  #: ../views/modules/bar.php:38
3545
  msgid "Event Views Navigation"
3546
- msgstr "Πλοηγός Εμφανίσεων Εκδήλωσης"
3547
 
3548
  #
3549
  #: ../views/modules/bar.php:39
3550
  msgid "View As"
3551
- msgstr "Εμφάνιση ως"
3552
 
3553
  #
3554
  #: ../views/month/nav.php:18
@@ -3570,7 +3655,7 @@ msgstr "Τύπος Εισιτηρίου"
3570
 
3571
  #: ../views/tickets/email.php:324
3572
  msgid "Purchaser"
3573
- msgstr "Αγορά"
3574
 
3575
  #~ msgid ""
3576
  #~ "Want to modify the display of this widget? Try a %stemplate override%s."
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-09-07 08:58+0200\n"
10
+ "Last-Translator: Maria Tsilimidou <maria.economides@gmail.com>\n"
11
  "Language-Team: pro@tri.be <g.koustoubardis@gmail.com>\n"
12
  "Language: el_GR\n"
13
  "MIME-Version: 1.0\n"
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-Textdomain-Support: yes\n"
22
+ "X-Generator: Poedit 1.5.7\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  #
41
 
42
  #: ../admin-views/event-sidebar-options.php:12
43
  msgid "Sticky in Calendar View"
44
+ msgstr "Κολλημένο στην Εμφάνιση Ημερολογίου"
45
 
46
  #
47
  #: ../admin-views/events-audit-trail.php:41
58
 
59
  #: ../admin-views/events-meta-box.php:26
60
  msgid "Event Time &amp; Date"
61
+ msgstr "Ώρα &amp; Ημερομηνία Εκδήλωσης"
62
 
63
  #: ../admin-views/events-meta-box.php:32
64
  msgid ""
66
  "update all future events. If you did not mean to change all events, then "
67
  "please refresh the page."
68
  msgstr ""
69
+ "Έχετε αλλάξει τους κανόνες επανάληψης αυτής της εκδήλωσης. Αποθηκεύοντας την "
70
+ "εκδήλωση θα ενημερωθούν όλες οι μελλοντικές εκδηλώσεις. Εάν δεν επιθυμείτε "
71
+ "να αλλάξετε όλες τις εκδηλώσεις, παρακαλούμε ανανεώστε τη σελίδα."
72
 
73
  #
74
  #: ../admin-views/events-meta-box.php:35
78
  #
79
  #: ../admin-views/events-meta-box.php:39
80
  msgid "Start Date &amp; Time:"
81
+ msgstr "Ημερομηνία &amp; Ώρα Έναρξης:"
82
 
83
  #: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
84
  msgid "YYYY-MM-DD"
87
  #
88
  #: ../admin-views/events-meta-box.php:60
89
  msgid "End Date &amp; Time:"
90
+ msgstr "Ημερομηνία &amp; Ώρα Λήξης:"
91
 
92
  #: ../admin-views/events-meta-box.php:85
93
  msgid "Event Location Details"
94
+ msgstr "Λεπτομέρειες Τοποθεσίας Εκδήλωσης"
95
 
96
  #: ../admin-views/events-meta-box.php:93
97
  msgid "Event Organizer Details"
98
+ msgstr "Λεπτομέρειες Διοργανωτή Εκδήλωσης"
99
 
100
  #
101
  #: ../admin-views/events-meta-box.php:101
102
  msgid "Event Website"
103
+ msgstr "Site Εκδήλωσης"
104
 
105
  #: ../admin-views/events-meta-box.php:104
106
  msgid "URL:"
122
  #: ../admin-views/events-meta-box.php:127
123
  msgid "Enter a 0 for events that are free or leave blank to hide the field."
124
  msgstr ""
125
+ "Εισάγετε 0 για εκδηλώσεις με ελεύθερη είσοδο ή αφήστε το κενό για να "
126
  "αποκρύψετε το πεδίο."
127
 
128
  #: ../admin-views/organizer-meta-box.php:12
144
  #: ../public/advanced-functions/meta.php:383
145
  #: ../public/advanced-functions/meta.php:445
146
  msgid "Website:"
147
+ msgstr "Site:"
148
 
149
  #: ../admin-views/organizer-meta-box.php:27
150
  #: ../public/advanced-functions/meta.php:432
156
  "Would you like to change only this instance of the event, or all future "
157
  "events in this series?"
158
  msgstr ""
159
+ "Θέλετε να αλλάξετε μόνο αυτήν την περίπτωση της εκδήλωσης, ή όλες τις "
160
+ "μελλοντικές εκδηλώσεις σε αυτήν τη σειρά;"
161
 
162
  #: ../admin-views/recurrence-dialog.php:15
163
  #: ../admin-views/recurrence-dialog.php:23
188
  "Would you like to delete only this instance of the event, or all future "
189
  "events in this series?"
190
  msgstr ""
191
+ "Θέλετε να διαγράψετε μόνο αυτήν την περίπτωση της εκδήλωσης, ή όλες τις "
192
+ "μελλοντικές εκδηλώσεις σε αυτήν τη σειρά;"
193
 
194
  #: ../admin-views/recurrence-dialog.php:23
195
  msgid "All other future events in the series will not be deleted."
214
  msgstr "Προβολή Ρυθμίσεων"
215
 
216
  #: ../admin-views/tribe-options-display.php:34
217
+ #, php-format
218
  msgid ""
219
  "<p>The settings below control the display of your calendar. If things don't "
220
  "look right, try switching between the three style sheet options or pick a "
227
  "<p> Οι παρακάτω ρυθμίσεις ελέγχουν την εμφάνιση του ημερολογίου σας. Αν τα "
228
  "πράγματα δεν φαίνονται σωστά, δοκιμάστε να πραγματοποιήσετε εναλλαγή μεταξύ "
229
  "των τριών επιλογών στυλ ή επιλέξτε ένα πρότυπο σελίδας από το θέμα σας.</"
230
+ "p><p>Θα υπάρξουν καταστάσεις που κανένα έτοιμο πρότυπο δεν θα είναι 100&#37; "
231
+ "τέλειο. Ελέγξτε τον <a href=\"%s\">οδηγό θεμάτων</a> για οδηγίες σχετικά με "
232
  "προσαρμοσμένες τροποποιήσεις. Θέλετε να δημιουργήσετε μία νέα εμφάνιση; "
233
+ "Πάρτε ένα αντίγραφο του πρόσθετου <a href=\"%s\">Εμφάνιση Δείγματος Ατζέντας "
234
+ "από το Github</a></p>"
235
 
236
  #
237
  #: ../admin-views/tribe-options-display.php:49
240
 
241
  #: ../admin-views/tribe-options-display.php:53
242
  msgid "Default stylesheet used for events templates"
243
+ msgstr ""
244
+ "Προεπιλεγμένο φύλλο μορφοποίησης που χρησιμοποιείται για τα πρότυπα "
245
+ "εκδηλώσεων"
246
 
247
  #: ../admin-views/tribe-options-display.php:56
248
  msgid "Skeleton Styles"
253
  "Only includes enough css to achieve complex layouts like calendar and week "
254
  "view."
255
  msgstr ""
256
+ "Περιλαμβάνει μόνο αρκετά CSS για την επίτευξη σύνθετων διατάξεων, όπως τις "
257
+ "προβολές ημερολογίου και εβδομάδας."
258
 
259
  #: ../admin-views/tribe-options-display.php:60
260
  msgid "Full Styles"
261
+ msgstr "Πλήρη Στυλ"
262
 
263
  #: ../admin-views/tribe-options-display.php:62
264
  msgid "More detailed styling, tries to grab styles from your theme."
265
  msgstr ""
266
+ "Πιο σύνθετη μορφοποίηση, επιχειρεί να υιοθετήσει τη μορφοποίηση του θέματός "
267
+ "σας."
268
 
269
  #
270
  #: ../admin-views/tribe-options-display.php:64
274
  #: ../admin-views/tribe-options-display.php:66
275
  msgid "A fully designed and styled theme for your events pages."
276
  msgstr ""
277
+ "Ένα πλήρως σχεδιασμένο και μορφοποιημένο θέμα για τη σελίδα των εκδηλώσεών "
278
+ "σας."
279
 
280
  #
281
  #: ../admin-views/tribe-options-display.php:73
303
  msgstr "Προεπιλεγμένη εμφάνιση"
304
 
305
  #: ../admin-views/tribe-options-display.php:98
 
306
  msgid "Disable the Event Search Bar"
307
+ msgstr "Απενεργοποίση της Μπάρας Αναζήτησης Εκδηλώσεων"
308
 
309
  #: ../admin-views/tribe-options-display.php:99
 
310
  msgid "Check this to use the classic header."
311
+ msgstr "Επιλέξτε το για να χρησιμοποιήσετε την κλασική κεφαλίδα."
 
312
 
313
  #
314
  #: ../admin-views/tribe-options-display.php:105
326
  "template. Some themes may require this to help with styling or layout."
327
  msgstr ""
328
  "Αν είστε εξοικειωμένοι με την HTML, μπορείτε να προσθέσετε επιπλέον κώδικα "
329
+ "πριν από το πρότυπο εκδηλώσεων. Αυτό είναι απαραίτητο για κάποια θέματα, "
330
+ "καθώς βοηθάει στη μορφοποίηση ή διάταξη."
331
 
332
  #
333
  #: ../admin-views/tribe-options-display.php:115
340
  "template. Some themes may require this to help with styling or layout."
341
  msgstr ""
342
  "Αν είστε εξοικειωμένοι με την HTML, μπορείτε να προσθέσετε επιπλέον κώδικα "
343
+ "μετά το πρότυπο εκδηλώσεων. Αυτό είναι απαραίτητο για κάποια θέματα, καθώς "
344
+ "βοηθάει στη μορφοποίηση ή διάταξη."
345
 
346
  #: ../admin-views/tribe-options-general.php:14
347
  msgid "Finding & extending your calendar."
348
+ msgstr "Εύρεση & επέκταση του ημερολογίου σας."
349
 
350
  #: ../admin-views/tribe-options-general.php:19
351
  msgid "Finding your calendar."
376
 
377
  #: ../admin-views/tribe-options-general.php:33
378
  msgid "We hope our plugin is helping you out."
379
+ msgstr "Ελπίζουμε το πρόσθετό μας να σας βοηθάει."
380
 
381
  #: ../admin-views/tribe-options-general.php:37
382
  msgid ""
425
 
426
  #: ../admin-views/tribe-options-general.php:72
427
  msgid "Use Javascript to control page load"
428
+ msgstr "Χρησιμοποιήστε Javascript για να χειριστείτε τη φόρτωση σελίδας"
429
 
430
  #: ../admin-views/tribe-options-general.php:73
431
  msgid "Enable ajax to live refresh content."
442
 
443
  #: ../admin-views/tribe-options-general.php:86
444
  msgid "Include events in main blog loop"
445
+ msgstr "Συμπερίληψη εκδηλώσεων στον κύριο βρόχο του ιστολογίου (blog)"
446
 
447
  #: ../admin-views/tribe-options-general.php:87
448
  msgid ""
449
  "Show events with the site's other posts. When this box is checked, events "
450
  "will also continue to appear on the default events page."
451
  msgstr ""
452
+ "Εμφάνιση εκδηλώσεων με άλλα άρθρα του site. Όταν αυτό το πλαίσιο είναι "
453
+ "επιλεγμένο, οι εκδηλώσεις θα συνεχίσουν επίσης να εμφανίζονται στην "
454
  "προεπιλεγμένη σελίδα των εκδηλώσεων."
455
 
456
  #: ../admin-views/tribe-options-general.php:93
467
  "\">enable pretty permalinks</a>."
468
  msgstr ""
469
  "Δεν μπορείτε να επεξεργαστείτε το slug για τη σελίδα εκδηλώσεων, καθώς δεν "
470
+ "έχετε ενεργοποιήσει τους μόνιμους συνδέσμους. Η τρέχουσα διεύθυνση URL για "
471
+ "τη σελίδα εκδηλώσεων είναι <a href=\"%s\">%s</a>. Για να επεξεργαστείτε το "
472
+ "slug εδώ, <a href=\"%soptions-permalink.php\">ενεργοποιήστε τους μόνιμους "
473
+ "συνδέσμους</a>."
474
 
475
  #
476
  #: ../admin-views/tribe-options-general.php:106
481
  #: ../admin-views/tribe-options-general.php:106
482
  #, php-format
483
  msgid "Your current events URL is: %s"
484
+ msgstr "Η τρέχουσα διεύθυνση URL των εκδηλώσεων σας είναι: %s"
485
 
486
  #
487
  #: ../admin-views/tribe-options-general.php:111
500
  "The above should ideally be plural, and this singular.<br />Your single "
501
  "event URL is: %s"
502
  msgstr ""
503
+ "Τo παραπάνω θα πρέπει ιδανικά να είναι στον πληθυντικό, και αυτό στον ενικό. "
504
+ "<br /> Το μοναδικό URL της εκδήλωσής σας είναι: %s."
505
 
506
  #: ../admin-views/tribe-options-general.php:128
507
  msgid "End of day cutoff"
508
+ msgstr "Ανώτατο όριο τέλους ημέρας"
509
 
510
  #: ../admin-views/tribe-options-general.php:136
511
  msgid ""
541
  #: ../admin-views/tribe-options-general.php:154
542
  msgid "Check to enable maps for events and venues."
543
  msgstr ""
544
+ "Επιλέγξτε για να ενεργοποιήσετε χάρτες για τις εκδηλώσεις και τους χώρους "
545
+ "διεξαγωγής."
546
 
547
  #: ../admin-views/tribe-options-general.php:161
 
548
  msgid "Google Maps default zoom level"
549
  msgstr "Προεπιλεγμένο επίπεδο εστίασης για τους Χάρτες Google"
550
 
551
  #: ../admin-views/tribe-options-general.php:162
552
  msgid "0 = zoomed out; 21 = zoomed in."
553
+ msgstr "0 = σμίκρυνση, 21 = μεγέθυνση."
554
 
555
  #
556
  #: ../admin-views/tribe-options-general.php:170
559
 
560
  #: ../admin-views/tribe-options-general.php:174
561
  msgid "Duplicate Venues &amp; Organizers"
562
+ msgstr "Διπλότυποι Χώροι Διεξαγωγής και Διοργανωτές"
563
 
564
  #: ../admin-views/tribe-options-general.php:174
565
  #: ../lib/tribe-amalgamator.php:252
572
  "Calendar from a pre-3.0 version. Click this button to automatically merge "
573
  "identical venues and organizers."
574
  msgstr ""
575
+ "Ίσως βρείτε διπλότυπα χώρων και διοργανωτών όταν αναβαθμίζετε το The Events "
576
+ "Calendar από μία έκδοση παλαιότερη της 3.0. Κάντε κλικ σε αυτό το κουμπί για "
577
+ "να συγχωνευθούν αυτόματα οι πανομοιότυποι χώροι και διοργανωτές."
578
 
579
  #
580
  #: ../admin-views/tribe-options-general.php:179
589
  "browser, then we recommend that you install the %s and look for the \"Tribe"
590
  "\" tab in the debug output."
591
  msgstr ""
592
+ "Ενεργοποιήστε αυτήν την επιλογή για να καταγράφονται πληροφορίες "
593
  "αποσφαλμάτωσης. Ως προεπιλογή η καταγραφή θα γίνεται στο error log της PHP "
594
+ "του σέρβερ σας. Αν θέλετε να δείτε τα μηνύματα καταγραφής στον browser σας, "
595
+ "τότε σας συνιστούμε να εγκαταστήσετε το %s και να αναζητήσετε την καρτέλα "
596
+ "\"Tribe\" στην έξοδο αποσφαλμάτωσης."
597
 
598
  #: ../admin-views/tribe-options-general.php:185
599
  msgid "Debug Bar Plugin"
600
+ msgstr "Πρόσθετο Μπάρας Αποσφαλμάτωσης"
601
 
602
  #: ../admin-views/tribe-options-help.php:18
603
  msgctxt "not available"
604
  msgid "n/a"
605
+ msgstr "μ/δ (μη διαθέσιμο)"
606
 
607
  #: ../admin-views/tribe-options-help.php:19
608
  msgid "You need to upgrade!"
609
+ msgstr "Πρέπει να αναβαθμίσετε!"
610
 
611
  #: ../admin-views/tribe-options-help.php:19
612
  msgid "You are up to date!"
624
  #
625
  #: ../admin-views/tribe-options-help.php:50
626
  msgid "Community Events"
627
+ msgstr "Community Events"
628
 
629
  #
630
  #: ../admin-views/tribe-options-help.php:54
631
  msgid "Facebook Events"
632
+ msgstr "Facebook Events"
633
 
634
  #: ../admin-views/tribe-options-help.php:58
635
  msgid "WooTickets"
672
  "and are already well on your way to creating a first event. Here are some "
673
  "basics we've found helpful for users jumping into it for the first time:"
674
  msgstr ""
675
+ "Αν είναι η πρώτη φορά που χρησιμοποιείτε το The Events Calendar, βρίσκεστε "
676
+ "στο σωστό δρόμο. Ετοιμαστείτε να απολαύσετε τη δημιουργία της πρώτης σας "
677
+ "εκδήλωσής. Εδώ θα βρείτε μερικά βασικά στοιχεία που θεωρούμε χρήσιμα για "
678
+ "τους νέους χρήστες."
679
 
680
  #: ../admin-views/tribe-options-help.php:102
681
  #, php-format
685
  "accompanying screenshots, the primer aims to take you from zero to hero in "
686
  "no time."
687
  msgstr ""
688
+ "%sΤο Αλφαβητάρι Νέου Χρήστη%s σχεδιάστηκε για τύπους που βρίσκονται ακριβώς "
689
+ "στη δική σας θέση. Με δύο βήμα-προς-βήμα βίντεο και γραπτές σημειώσεις που "
690
+ "συνοδεύουν τις εικόνες, το αλφαβητάρι επιχειρεί να σας απογειώσει από το "
691
+ "μηδέν στο ζενίθ σε χρόνο μηδέν."
692
 
693
  #: ../admin-views/tribe-options-help.php:104
694
  #, php-format
698
  "helpful as it aims to address any basic install questions not addressed by "
699
  "the new user primer."
700
  msgstr ""
701
+ "%sΟι Συχνές Ερωτήσεις Εγκατάστασης/Ρυθμίσεων%s από τη σελίδα υποστήριξης θα "
702
+ "σας βοηθήσουν να πάρετε μία γενική εικόνα για το τι μπορεί και το τι δεν "
703
+ "μπορεί να κάνει το πρόσθετο (plugin). Αυτή η ενότητα των Συχνών Ερωτήσεων "
704
+ "είναι χρήσιμη δεδομένου ότι έχει ως στόχο την αντιμετώπιση βασικών ζητημάτων "
705
+ "εγκατάστασης που δεν καλύπτονται από το Αλφαβητάρι Νέου Χρήστη."
706
 
707
  #: ../admin-views/tribe-options-help.php:106
708
  #, php-format
711
  "example plugin that demonstrates how to register a new view. You can "
712
  "%sdownload the plugin at GitHub%s to get started."
713
  msgstr ""
714
+ "Είστε προγραμματιστής και θέλετε να χτίσετε τη δική σας frontend προβολή; "
715
+ "Έχουμε δημιουργήσει ένα πρότυπο πρόσθετο που δείχνει πώς να καταχωρήσετε μία "
716
+ "νέα προβολή. Μπορείτε να %sτο κατεβάσετε από το GitHub%s για να ξεκινήσετε."
717
 
718
  #: ../admin-views/tribe-options-help.php:108
719
  msgid ""
720
  "Otherwise, if you're feeling adventurous, you can get started by heading to "
721
  "the Events menu and adding your first event."
722
  msgstr ""
723
+ "Διαφορετικά, αν αισθάνεστε τολμηρός, μπορείτε να ξεκινήσετε αμέσως "
724
+ "πηγαίνοντας στο Μενού Εκδηλώσεων και προσθέτοντας την πρώτη σας εκδήλωση."
725
 
726
  #: ../admin-views/tribe-options-help.php:112
727
  #, php-format
730
  "our users. Head over to our %sSupport Page%s and you'll find lots of great "
731
  "resources, including:"
732
  msgstr ""
733
+ "Έχουμε ξαναφτιάξει τη σελίδα υποστήριξης από το μηδέν, ούτως ώστε να "
734
+ "παρέχουμε καλύτερη βοήθεια στους χρήστες. Πηγαίντε στη %sΣελίδα Υποστήριξης"
735
+ "%s όπου θα βρείτε σημαντικούς πόρους, όπως οι εξής:"
736
 
737
  #: ../admin-views/tribe-options-help.php:114
738
  #, php-format
740
  "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
741
  "&amp; Events Calendar PRO"
742
  msgstr ""
743
+ "%sΕτικέτες προτύπων, λειτουργίες και άγκιστρα & φίλτρα%s για το The Events "
744
+ "Calendar &amp; Events Calendar PRO"
745
 
746
  #: ../admin-views/tribe-options-help.php:116
747
  #, php-format
749
  "%sFrequently Asked Questions%s ranging from the most basic setup questions "
750
  "to advanced themer tweaks"
751
  msgstr ""
752
+ "%sΣυχνές Ερωτήσεις%s που κυμαίνονται από βασικά ερωτήματα εγκατάστασης έως "
753
+ "προηγμένες τροποιποιήσεις θεμάτων."
754
 
755
  #: ../admin-views/tribe-options-help.php:118
756
  #, php-format
759
  "community, covering custom queries, integration with third-party themes and "
760
  "plugins, etc."
761
  msgstr ""
762
+ "%sΟδηγοί εκμάθησης%s γραμμένοι από μέλη της ομάδας μας και από χρήστες της "
763
+ "κοινότητας, τα οποία καλύπτουν προσαρμοσμένα ερωτήματα, ζητήματα ενοποίησης "
764
+ "με θέματα και πρόσθετα τρίτων, κ.λπ."
765
 
766
  #: ../admin-views/tribe-options-help.php:120
767
  msgid ""
768
  "Release notes for painting an overall picture of the plugin's lifecycle and "
769
  "when features/bug fixes were introduced."
770
  msgstr ""
771
+ "Σημειώσεις για να πάρετε μία γενική εικόνα για τον κύκλο ζωής του πρόσθετου "
772
+ "και για το πότε εισήχθησαν οι λειτουργίες/διορθώσεις σφαλμάτων."
773
 
774
  #: ../admin-views/tribe-options-help.php:122
775
  #, php-format
778
  "The Events Calendar (including WooTickets, Community Events, Eventbrite "
779
  "Tickets, Facebook Events, etc)"
780
  msgstr ""
781
+ "%sΠρόσθετη τεκμηρίωση%s για όλες τις επίσημες επεκτάσεις της Modern Tribe "
782
+ "για το The Events Calendar (συμπεριλαμβανονένων των WooTickets, Community "
783
+ "Events, Eventbrite Tickets, Facebook Events, κ.λπ.)"
784
 
785
  #: ../admin-views/tribe-options-help.php:124
786
  #, php-format
792
  "add your own, and help us shape the future of the products business in a way "
793
  "that best meets the community's needs."
794
  msgstr ""
795
+ "Επίσης διαθέτουμε τη σελίδα %sΦωνής Χρήστη της Modern Tribe%s, την οποία "
796
+ "παρακολουθούμε ενεργά, αναζητώντας ιδέες από την κοινότητα. Αν αφού παίξετε "
797
+ "με το πρόσθετο και μελετήσετε τους παραπάνω πόρους, διαπιστώσετε ότι κάποιο "
798
+ "χαρακτηριστικό απουσιάζει, ενημερώστε μας σχετικά. Υπερψηφίστε τα υφιστάμενα "
799
+ "αιτήματα χαρακτηριστικών ή προσθέστε το δικό σας, βοηθώντας μας με αυτόν τον "
800
+ "τρόπο να διαμορφώσουμε το μέλλον των εταιρικών προϊόντων ώστε να "
801
+ "ανταποκρίνονται καλύτερα στις ανάγκες της κοινότητας."
802
 
803
  #: ../admin-views/tribe-options-help.php:128
804
  #, php-format
806
  "Written documentation can only take things so far...sometimes, you need help "
807
  "from a real person. This is where our %ssupport forums%s come into play."
808
  msgstr ""
809
+ "Τα έγγραφα υποστήριξης μπορούν να σας βοηθήσουν ως ένα σημείο… με αποτέλεσμα "
810
+ "μερικές φορές να χρειάζεστε τη συνδρομή ενός πραγματικού προσώπου. Αυτό "
811
+ "είναι το σημείο που το %sφόρουμ υποστήριξης%s μπαίνει στο παιχνίδι."
812
 
813
  #: ../admin-views/tribe-options-help.php:129
814
  #, php-format
819
  "to read our %ssupport expectations sticky thread%s before posting so you "
820
  "understand our limitations."
821
  msgstr ""
822
+ "Οι χρήστες του δωρεάν The Events Calendar θα πρέπει να δημοσιεύουν τα "
823
+ "αιτήματα υποστήριξης %sστο φόρουμ υποστήριξης του WordPress.org%s. Αν και "
824
+ "μας είναι ευχάριστο να αναγνωρίζουμε και να διορθώνουμε τα σφάλματα που "
825
+ "αναφέρονται στο WordPress.org, παρακαλούμε βεβαιωθείτε ότι έχετε διαβάσει το "
826
+ "%sΥπόμνημα Υποστήριξης%s πριν δημοσιεύσετε ένα αίτημα, ώστε να κατανοήσετε "
827
+ "τους περιορισμούς μας."
828
 
829
  #: ../admin-views/tribe-options-help.php:130
830
  msgid ""
834
  "provide customization tips or assist in integrating with 3rd party plugins "
835
  "or themes."
836
  msgstr ""
837
+ "Επισκεπτόμαστε το φόρουμ του WordPress.org όλη την εβδομάδα, αναζητώντας "
838
+ "σφάλματα. Αν αναφέρετε ένα θεμιτό σφάλμα το οποίο μπορούμε να αναπαράγουμε, "
839
+ "θα το καταγράψουμε και θα το διορθώσουμε σε μία από τις επόμενες εκδόσεις. "
840
+ "Δυστυχώς, δεν μπορούμε να παρέχουμε προσαρμοσμένες συμβουλές ή να σας "
841
+ "βοηθήσουμε στην ενσωμάτωση με πρόσθετα και θέματα τρίτων."
842
 
843
  #: ../admin-views/tribe-options-help.php:131
844
  #, php-format
848
  "deeper level of customization/integration support for paying users than we "
849
  "can on WordPress.org."
850
  msgstr ""
851
+ "Αν είστε χρήστης του The Events Calendar και χρειάζεστε περισσότερη "
852
+ "υποστήριξη, παρακαλούμε %sαγοράστε μία PRO άδεια%s. Επισκεπτόμαστε το PRO "
853
+ "φόρουμ καθημερινά και μπορούμε να προσφέρουμε ένα βαθύτερο επίπεδο "
854
+ "υποστήριξης στους PRO χρήστες σε σχέση με εκείνη που μπορούμε να προσφέρουμε "
855
+ "στο WordPress.org."
856
 
857
  #: ../admin-views/tribe-options-help.php:135
858
+ #, php-format
859
  msgid ""
860
  "If you find that you aren't getting the level of service you've come to "
861
  "expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
862
  "why. We'll do what we can to make it right."
863
  msgstr ""
864
+ "Αν διαπιστώσετε ότι δεν παίρνετε το επίπεδο υπηρεσιών που περιμένατε από την "
865
+ "Modern Tribe, στείλτε μας ένα e-mail στο %s ή ένα tweet στο %s και πείτε μας "
866
+ "γιατί. Θα κάνουμε ό,τι μπορούμε για να γίνει το σωστό."
867
 
868
  #: ../admin-views/tribe-options-help.php:136
869
  msgid "More..."
870
+ msgstr "Περισσότερα…"
871
 
872
  #: ../admin-views/tribe-options-help.php:144
873
  msgid ""
874
  "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
875
  "for installing our labor of love!"
876
  msgstr ""
877
+ "Γεια σας! Είμαστε η Modern Tribe και βρισκόμαστε εδώ για να σας βοηθήσουμε "
878
+ "να σκίσετε. Ευχαριστούμε πολύ που εγκαταστήσατε το αποτέλεσμα των κόπων και "
879
+ "της αγάπης μας!"
880
 
881
  #: ../admin-views/tribe-options-help.php:150
882
  msgid "Getting Started"
883
  msgstr "Ξεκινώντας"
884
 
885
  #: ../admin-views/tribe-options-help.php:153
 
886
  msgid "Support Resources To Help You Kick Ass"
887
+ msgstr "Πόροι Υποστήριξης που θα σας βοηθήσουν να σκίσετε!"
888
 
889
  #: ../admin-views/tribe-options-help.php:156
 
890
  msgid "Forums: Because Everyone Needs A Buddy"
891
+ msgstr "Φόρουμ: Γιατί όλοι χρειάζονται ένα φιλαράκι"
892
 
893
  #: ../admin-views/tribe-options-help.php:159
894
  msgid "Not getting help?"
895
+ msgstr "Χρειάζεστε περισσότερη βοήθεια;"
896
 
897
  #: ../admin-views/tribe-options-help.php:169
898
  #: ../lib/the-events-calendar.class.php:486
899
  #: ../lib/tribe-settings.class.php:135
900
  msgid "The Events Calendar"
901
+ msgstr "The Events Calendar"
902
 
903
  #: ../admin-views/tribe-options-help.php:173
904
  msgid "Latest Version:"
941
 
942
  #: ../admin-views/tribe-options-help.php:189
943
  msgid "Premium Add-Ons"
944
+ msgstr "Πρόσθετα Ανώτερης Ποιότητας"
945
 
946
  #: ../admin-views/tribe-options-help.php:195
947
  msgid "(Coming Soon!)"
948
+ msgstr "(Προσεχώς!)"
949
 
950
  #: ../admin-views/tribe-options-help.php:202
951
  msgid "News and Tutorials"
952
+ msgstr "Νέα και Οδηγοί Εκμάθησης"
953
 
954
  #
955
  #: ../admin-views/tribe-options-network.php:14
961
  "This is where all of the global network settings for Modern Tribe's The "
962
  "Events Calendar can be modified."
963
  msgstr ""
964
+ "Εδώ μπορείτε να τροποποιήσετε όλες τις γενικές ρυθμίσεις δικτύου για το The "
965
+ "Events Calendar της Modern Tribe."
966
 
967
  #: ../admin-views/tribe-options-network.php:26
968
  msgid "Hide the following settings tabs on every site:"
969
+ msgstr "Απόκρυψη των παρακάτω καρτέλων ρυθμίσεων σε όλα τα site:"
970
 
971
  #: ../admin-views/venue-meta-box.php:20
972
  msgid "Venue Name:"
973
+ msgstr "Όνομα Χώρου Διεξαγωγής:"
974
 
975
  #: ../admin-views/venue-meta-box.php:27
976
  #: ../public/advanced-functions/meta.php:371
987
 
988
  #: ../admin-views/venue-meta-box.php:73
989
  msgid "State or Province:"
990
+ msgstr "Νομός ή Προάστιο:"
991
 
992
  #: ../admin-views/venue-meta-box.php:76
993
  msgid "Select a State:"
1015
 
1016
  #: ../admin-views/widget-admin-list.php:24
1017
  msgid "Show widget only if there are upcoming events:"
1018
+ msgstr "Εμφάνιση του widget μόνο όταν υπάρχουν προσεχείς εκδηλώσεις:"
1019
 
1020
  #: ../admin-views/tickets/attendees.php:9 ../admin-views/tickets/list.php:41
1021
  #: ../lib/tickets/tribe-tickets-pro.php:73
1042
 
1043
  #: ../admin-views/tickets/attendees.php:34
1044
  msgid "Venue:"
1045
+ msgstr "Χώρος Διεξαγωγής:"
1046
 
1047
  #: ../admin-views/tickets/attendees.php:52
1048
  msgid "Ticket Sales"
1068
 
1069
  #: ../admin-views/tickets/attendees.php:105
1070
  msgid "Send the attendee list by email"
1071
+ msgstr "Στείλτε τη λίστα συμμετεχόντων μέσω email"
1072
 
1073
  #
1074
  #: ../admin-views/tickets/attendees.php:109
1077
 
1078
  #: ../admin-views/tickets/attendees.php:110
1079
  msgid "Select..."
1080
+ msgstr "Επιλέξτε…"
1081
 
1082
  #: ../admin-views/tickets/attendees.php:112
1083
  msgid "or"
1104
  #: ../admin-views/tickets/list.php:27
1105
  #: ../lib/tribe-admin-events-list.class.php:53
1106
  msgid "View"
1107
+ msgstr "Προβολή"
1108
 
1109
  #: ../admin-views/tickets/list.php:41 ../lib/tickets/tribe-tickets-pro.php:73
1110
  msgid "See who purchased tickets to this event"
1111
+ msgstr "Δείτε ποιος αγόρασε εισιτήρια γι' αυτήν την εκδήλωση"
1112
 
1113
  #: ../admin-views/tickets/meta-box.php:21
1114
  msgid ""
1115
  "This event was created using Community Events. Are you sure you want to sell "
1116
  "tickets for it?"
1117
  msgstr ""
1118
+ "Η εκδήλωση αυτή δημιουργήθηκε χρησιμοποιώντας το Community Events. Είστε "
1119
+ "σίγουρος ότι θέλετε να πουλήσετε εισιτήρια γι' αυτήν;"
1120
 
1121
  #: ../admin-views/tickets/meta-box.php:32
1122
  msgid "Upload image for the ticket header"
1128
  "then scaled for mobile. If you would like \"retina\" support use an image "
1129
  "sized to 1160px wide."
1130
  msgstr ""
1131
+ "Το μέγιστο μέγεθος της εικόνας στο email θα είναι 580px πλάτος με "
1132
  "οποιοδήποτε ύψος, και στη συνέχεια θα αποκλιμακωθεί για τα κινητά. Αν θέλετε "
1133
+ "υποστήριξη \"retina\" χρησιμοποιήστε μία εικόνα πλάτους 1160px."
1134
 
1135
  #
1136
  #: ../admin-views/tickets/meta-box.php:36
1137
  msgid "Select an Image"
1138
+ msgstr "Επιλέξτε μία εικόνα"
1139
 
1140
  #: ../admin-views/tickets/meta-box.php:44
1141
  msgid "Remove"
1184
  "When will ticket sales occur? If you don't set a start/end date for sales, "
1185
  "tickets will be available from now until the event ends."
1186
  msgstr ""
1187
+ "Πότε θα πραγματοποιηθούν οι πωλήσεις εισιτηρίων; Εάν δεν ορίσετε μία "
1188
+ "ημερομηνία έναρξης / λήξης για τις πωλήσεις, τα εισιτήρια θα είναι διαθέσιμα "
1189
+ "από σήμερα μέχρι την ολοκλήρωση της εκδήλωσης."
1190
 
1191
  #: ../lib/the-events-calendar.class.php:491
1192
  msgid "month"
1194
 
1195
  #: ../lib/the-events-calendar.class.php:492
1196
  msgid "upcoming"
1197
+ msgstr "προσεχές"
1198
 
1199
  #: ../lib/the-events-calendar.class.php:493
1200
  msgid "past"
1215
  "Your version of The Events Calendar is not up-to-date with one of your The "
1216
  "Events Calendar add-ons. Please %supdate now.%s"
1217
  msgstr ""
1218
+ "Η έκδοση του The Events Calendar που χρησιμοποιείτε δεν είναι ενημερωμένη με "
1219
+ "μία από τις επεκτάσεις του The Events Calendar. Παρακαλούμε %sαναβαθμίστε "
1220
  "τώρα.%s"
1221
 
1222
  #: ../lib/the-events-calendar.class.php:639
1223
+ #, php-format
1224
  msgid ""
1225
  "The following plugins are out of date: <b>%s</b>. All add-ons contain "
1226
  "dependencies on The Events Calendar and will not function properly unless "
1227
  "paired with the right version. %sWant to pair an older version%s?"
1228
  msgstr ""
1229
+ "Τα παρακάτω πρόσθετα είναι ξεπερασμένα: <b>%s</b>. Όλες οι επεκτάσεις "
1230
+ "σχετίζονται με το The Events Calendar και δεν θα λειτουργούν σωστά αν δεν "
1231
+ "συνδυαστούν με τη σωστή έκδοση. %s Θέλετε να συνδυάσετε μία παλαιότερη "
1232
+ "έκδοση %s;"
1233
 
1234
  #: ../lib/the-events-calendar.class.php:703
1235
  #: ../lib/the-events-calendar.class.php:738
1238
  msgstr "Άδειες"
1239
 
1240
  #: ../lib/the-events-calendar.class.php:707
1241
+ #, php-format
1242
  msgid ""
1243
  "<p>The license key you received when completing your purchase from %s will "
1244
  "grant you access to support and updates until it expires. You do not need to "
1254
  "expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> "
1255
  "and click \"Check Again\".</p>"
1256
  msgstr ""
1257
+ "<p> Το κλειδί άδειας χρήσης που λάβατε όταν ολοκληρώσατε την αγορά σας από "
1258
+ "το %s θα σας παρέχει πρόσβαση σε υποστήριξη και ενημερώσεις μέχρι τη λήξη "
1259
+ "του. Δεν χρειάζετε να εισαγάγετε το κλειδί σας παρακάτω για να δουλέψει το "
1260
+ "πρόσθετο, αλλά θα χρειαστεί να το εισαγάγετε για να λάβετε αυτόματες "
1261
+ "ενημερώσεις. <strong>Βρείτε το κλειδί σας στο <a href=\"%s\" target=\"_blank"
1262
+ "\">%s</a></strong>.</p> <p>Κάθε αγορασμένο πρόσθετο έχει το δικό του κλειδί. "
1263
+ "Απλά εισάγετε το κλειδί στο κατάλληλο πεδίο παρακάτω, και δώστε του λίγο "
1264
+ "χρόνο για επικύρωση. Θα ξέρετε ότι είστε έτοιμοι όταν μία πράσινη ημερομηνία "
1265
+ "λήξης εμφανιστεί παράλληλα με ένα \"έγκυρο\" μήνυμα. Εάν βλέπετε ένα κόκκινο "
1266
+ "μήνυμα που αναφέρει ότι το κλειδί σας δεν είναι έγκυρο, ή είναι εκτός "
1267
+ "εγκατάστασης, επισκεφθείτε το <a href=\"%s\" target=\"_blank\">%s</a> για να "
1268
+ "διαχειριστείτε τα εγκατεστημένα σας ή για να ανανεώσετε / αναβαθμίσετε την "
1269
+ "άδειά σας.</p><p>Δεν βλέπετε την ενημέρωση που περιμένατε; Στο WordPress, "
1270
+ "μεταβείτε στον <a href=\"%s\">Πίνακα Ελέγχου > Ενημερώσεις</a> και κάντε "
1271
+ "κλικ στο \"Ελέγξτε Ξανά\".</p>"
1272
 
1273
  #: ../lib/the-events-calendar.class.php:730
1274
  msgid "General"
1284
  "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
1285
  "your WordPress install."
1286
  msgstr ""
1287
+ "Μας συγχωρείτε, το The Events Calendar απαιτεί WordPress έκδοσης %s ή "
1288
+ "νεότερο. Παρακαλούμε αναβαθμίστε την εγκαταστασή σας."
1289
 
1290
  #: ../lib/the-events-calendar.class.php:785
1291
  #, php-format
1293
  "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
1294
  "about moving you to a newer version of PHP."
1295
  msgstr ""
1296
+ "Μας συγχωρείτε, το The Events Calendar απαιτεί PHP έκδοσης %s ή νεότερη. "
1297
+ "Επικοινωνήστε με τον Web hosting πάροχό σας για να μεταβείτε σε νεότερη "
1298
+ "έκδοση της PHP."
1299
 
1300
  #: ../lib/the-events-calendar.class.php:1000 ../lib/widget-list.class.php:151
1301
  #: ../public/template-tags/loop.php:137
1302
  msgid "Upcoming Events"
1303
+ msgstr "Προσεχείς Εκδηλώσεις"
1304
 
1305
  #: ../lib/the-events-calendar.class.php:1003
1306
  #: ../public/template-tags/loop.php:165
1324
 
1325
  #: ../lib/the-events-calendar.class.php:1041
1326
  msgid "No description has been entered for this event."
1327
+ msgstr "Δεν έχει εισαχθεί περιγραφή γι' αυτήν την εκδήλωση."
1328
 
1329
  #: ../lib/the-events-calendar.class.php:1303
1330
  msgid "category"
1381
  #: ../lib/the-events-calendar.class.php:1353
1382
  #: ../lib/the-events-calendar.class.php:1465
1383
  msgid "Venues"
1384
+ msgstr "Χώροι Διεξαγωγής"
1385
 
1386
  #: ../lib/the-events-calendar.class.php:1354
1387
  #: ../public/advanced-functions/meta.php:331 ../views/tickets/email.php:343
1388
  msgid "Venue"
1389
+ msgstr "Χώρος Διεξαγωγής"
1390
 
1391
  #: ../lib/the-events-calendar.class.php:1356
1392
  msgid "Add New Venue"
1441
  #
1442
  #: ../lib/the-events-calendar.class.php:1372
1443
  msgid "View Organizer"
1444
+ msgstr "Προβολή Διοργανωτή"
1445
 
1446
  #: ../lib/the-events-calendar.class.php:1373
1447
  msgid "Search Organizers"
1500
  #: ../lib/the-events-calendar.class.php:1404
1501
  #, php-format
1502
  msgid "Event updated. <a href=\"%s\">View event</a>"
1503
+ msgstr "Η εκδήλωση ενημερώθηκε. <a href=\"%s\">Προβολή εκδήλωσης</a>"
1504
 
1505
  #: ../lib/the-events-calendar.class.php:1405
1506
  #: ../lib/the-events-calendar.class.php:1422
1526
  #: ../lib/the-events-calendar.class.php:1410
1527
  #, php-format
1528
  msgid "Event published. <a href=\"%s\">View event</a>"
1529
+ msgstr "Η εκδήλωση δημοσιεύθηκε. <a href=\"%s\">Προβολή εκδήλωσης</a>"
1530
 
1531
  #: ../lib/the-events-calendar.class.php:1411
1532
  msgid "Event saved."
1537
  msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1538
  msgstr ""
1539
  "Η εκδήλωση υποβλήθηκε. <a target=\"_blank\" href=\"%s\">Προεπισκόπηση "
1540
+ "εκδήλωσης</a>"
1541
 
1542
  #: ../lib/the-events-calendar.class.php:1413
1543
  #, php-format
1564
  #: ../lib/the-events-calendar.class.php:1421
1565
  #, php-format
1566
  msgid "Venue updated. <a href=\"%s\">View venue</a>"
1567
+ msgstr "Ο χώρος διεξαγωγής τροποποιήθηκε. <a href=\"%s\">Προβολή χώρου</a>"
1568
 
1569
  #: ../lib/the-events-calendar.class.php:1424
1570
  msgid "Venue updated."
1571
+ msgstr "Ο χώρος διεξαγωγής τροποποιήθηκε."
1572
 
1573
  #: ../lib/the-events-calendar.class.php:1426
1574
  #, php-format
1575
  msgid "Venue restored to revision from %s"
1576
+ msgstr "Ο χώρος διεξαγωγής αποκαταστάθηκε στην αναθεώρηση από %s"
1577
 
1578
  #: ../lib/the-events-calendar.class.php:1427
1579
  #, php-format
1580
  msgid "Venue published. <a href=\"%s\">View venue</a>"
1581
+ msgstr "Ο χώρος διεξαγωγής δημοσιεύθηκε. <a href=\"%s\">Προβολή χώρου</a>"
1582
 
1583
  #: ../lib/the-events-calendar.class.php:1428
1584
  msgid "Venue saved."
1585
+ msgstr "Ο χώρος διεξαγωγής αποθηκεύθηκε."
1586
 
1587
  #: ../lib/the-events-calendar.class.php:1429
1588
  #, php-format
1589
  msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1590
  msgstr ""
1591
+ "Ο χώρος διεξαγωγής υποβλήθηκε. <a target=\"_blank\" href=\"%s"
1592
+ "\">Προεπισκόπηση χώρου</a>"
1593
 
1594
  #: ../lib/the-events-calendar.class.php:1430
1595
  #, php-format
1597
  "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1598
  "\">Preview venue</a>"
1599
  msgstr ""
1600
+ "Ο χώρος διεξαγωγής έχει προγραμματιστεί για: <strong>%1$s</strong>. <a "
1601
+ "target=\"_blank\" href=\"%2$s\">Προεπισκόπηση χώρου</a>"
1602
 
1603
  #: ../lib/the-events-calendar.class.php:1433
1604
  #, php-format
1605
  msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1606
  msgstr ""
1607
+ "Το προσχέδιο του χώρου διεξαγωγής τροποποιήθηκε. <a target=\"_blank\" href="
1608
+ "\"%s\">Προεπισκόπηση χώρου</a>"
1609
 
1610
  #: ../lib/the-events-calendar.class.php:1438
1611
  #, php-format
1612
  msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1613
+ msgstr "Ο διοργανωτής τροποποιήθηκε. <a href=\"%s\">Προβολή διοργανωτή</a>"
1614
 
1615
  #: ../lib/the-events-calendar.class.php:1441
1616
  msgid "Organizer updated."
1624
  #: ../lib/the-events-calendar.class.php:1444
1625
  #, php-format
1626
  msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1627
+ msgstr "Ο διοργανωτής δημοσιεύθηκε. <a href=\"%s\">Προβολή διοργανωτή</a>"
1628
 
1629
  #: ../lib/the-events-calendar.class.php:1445
1630
  msgid "Organizer saved."
1631
+ msgstr "Ο διοργανωτής αποθηκεύθηκε."
1632
 
1633
  #: ../lib/the-events-calendar.class.php:1446
1634
  #, php-format
1636
  "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1637
  msgstr ""
1638
  "Ο διοργανωτής υποβλήθηκε. <a target=\"_blank\" href=\"%s\">Προεπισκόπηση "
1639
+ "διοργανωτή</a>"
1640
 
1641
  #: ../lib/the-events-calendar.class.php:1447
1642
  #, php-format
1658
 
1659
  #: ../lib/the-events-calendar.class.php:1491
1660
  msgid "Use Saved Venue:"
1661
+ msgstr "Χρήση Αποθηκευμένου Χώρου Διεξαγωγής:"
1662
 
1663
  #: ../lib/the-events-calendar.class.php:1520
1664
  msgid "Use Saved Organizer:"
1666
 
1667
  #: ../lib/the-events-calendar.class.php:1556
1668
  msgid "Use New Venue"
1669
+ msgstr "Χρήση Νέου Χώρου Διεξαγωγής"
1670
 
1671
  #
1672
  #: ../lib/the-events-calendar.class.php:1558
1673
  msgid "My Venues"
1674
+ msgstr "Οι Χώροι Διεξαγωγής μου"
1675
 
1676
  #
1677
  #: ../lib/the-events-calendar.class.php:1563
1678
  msgid "Available Venues"
1679
+ msgstr "Διαθέσιμοι Χώροι Διεξαγωγής"
1680
 
1681
  #
1682
  #: ../lib/the-events-calendar.class.php:1574
1683
  msgid "No saved venue exists."
1684
+ msgstr "Δεν υπάρχουν αποθηκευμένοι χώροι διεξαγωγής."
1685
 
1686
  #: ../lib/the-events-calendar.class.php:1608
1687
  msgid "Use New Organizer"
1738
 
1739
  #: ../lib/the-events-calendar.class.php:3469
1740
  msgid "Venue Information"
1741
+ msgstr "Πληροφορίες Χώρου Διεξαγωγής"
1742
 
1743
  #: ../lib/the-events-calendar.class.php:3474
1744
  msgid "Organizer Information"
1750
 
1751
  #: ../lib/the-events-calendar.class.php:3672
1752
  msgid "View All Add-Ons"
1753
+ msgstr "Προβολή όλων των Επεκτάσεων"
1754
 
1755
  #
1756
  #: ../lib/the-events-calendar.class.php:3689
1757
  msgid "News from Modern Tribe"
1758
+ msgstr "Νέα από την Modern Tribe"
1759
 
1760
  #: ../lib/the-events-calendar.class.php:3770
1761
  msgid "Additional Functionality"
1767
  "sales, publicly submitted events, new views and more?"
1768
  msgstr ""
1769
  "Ψάχνετε για πρόσθετη λειτουργικότητα όπως επαναλαμβανόμενες εκδηλώσεις, "
1770
+ "πωλήσεις εισιτηρίων, δημοσίως καταχωρημένες εκδηλώσεις, νέες εμφανίσεις και "
1771
  "άλλα;"
1772
 
1773
  #: ../lib/the-events-calendar.class.php:3775
1779
  #: ../lib/the-events-calendar.class.php:3846
1780
  #: ../lib/the-events-calendar.class.php:3937
1781
  msgid "View Calendar"
1782
+ msgstr "Προβολή Ημερολογίου"
1783
 
1784
  #
1785
  #: ../lib/the-events-calendar.class.php:3854
1803
  "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
1804
  "change the events slug, visit %sEvents -> Settings%s."
1805
  msgstr ""
1806
+ "Καλώς ήρθατε στο The Events Calendar! Το ημερολόγιο εκδηλώσεών σας βρίσκεται "
1807
+ "στο %s. Για να αλλάξετε το slug των εκδηλώσεων, επισκεφθείτε τις "
1808
  "%sΕκδηλώσεις -> Ρυθμίσεις%s."
1809
 
1810
  #: ../lib/the-events-calendar.class.php:3974
1843
  #: ../lib/the-events-calendar.class.php:4277 ../views/list/nav.php:40
1844
  #: ../views/list/nav.php:43 ../views/list/nav.php:49
1845
  msgid "Next Events &raquo;"
1846
+ msgstr "Επόμενες Εκδηλώσεις &raquo;"
1847
 
1848
  #: ../lib/tribe-admin-events-list.class.php:53
1849
  #, php-format
1850
  msgid "View &#8220;%s&#8221;"
1851
+ msgstr "Προβολή &#8220;%s&#8221;"
1852
 
1853
  #: ../lib/tribe-admin-events-list.class.php:222
1854
  msgid "Start Date"
1855
+ msgstr "Ημερομηνία Έναρξης"
1856
 
1857
  #: ../lib/tribe-admin-events-list.class.php:223
1858
  msgid "End Date"
1859
+ msgstr "Ημερομηνία Λήξης"
1860
 
1861
  #: ../lib/tribe-admin-events-list.class.php:225
1862
  msgid "Recurring?"
1902
 
1903
  #: ../lib/tribe-field.class.php:414
1904
  msgid "No radio options specified"
1905
+ msgstr "Δεν ορίστηκαν επιλογές κουμπιών"
1906
 
1907
  #: ../lib/tribe-field.class.php:451
1908
  msgid "No checkbox options specified"
1909
+ msgstr "Δεν ορίστηκαν επιλογές κουτιών"
1910
 
1911
  #: ../lib/tribe-field.class.php:505
1912
  msgid "No select options specified"
1915
  #
1916
  #: ../lib/tribe-settings-tab.class.php:219
1917
  msgid "There are no fields setup for this tab yet."
1918
+ msgstr "Δεν έχουν ρυθμιστεί ακόμα πεδία γι' αυτήν την καρτέλα."
1919
 
1920
  #
1921
  #: ../lib/tribe-settings.class.php:164 ../lib/tribe-settings.class.php:176
1922
  msgid "The Events Calendar Settings"
1923
+ msgstr "Ρυθμίσεις του The Events Calendar"
1924
 
1925
  #
1926
  #: ../lib/tribe-settings.class.php:176
1934
 
1935
  #: ../lib/tribe-settings.class.php:239
1936
  msgid "You've requested a non-existent tab."
1937
+ msgstr "Έχετε ζητήσει μία ανύπαρκτη καρτέλα."
1938
 
1939
  #
1940
  #: ../lib/tribe-settings.class.php:247
1951
 
1952
  #: ../lib/tribe-settings.class.php:311
1953
  msgid "The request wasn't sent from this tab."
1954
+ msgstr "Η αίτηση δεν στάλθηκε από αυτήν την καρτέλα."
1955
 
1956
  #: ../lib/tribe-settings.class.php:476
1957
  msgid "Your form had the following errors:"
1959
 
1960
  #: ../lib/tribe-settings.class.php:485
1961
  msgid "None of your settings were saved. Please try again."
1962
+ msgstr ""
1963
+ "Καμία από τις ρυθμίσεις σας δεν αποθηκεύτηκε. Παρακαλούμε δοκιμάστε ξανά."
1964
 
1965
  #: ../lib/tribe-settings.class.php:485
1966
  msgid ""
1968
  msgid_plural ""
1969
  "The above settings were not saved. Other settings were successfully saved."
1970
  msgstr[0] ""
1971
+ "Η παραπάνω ρύθμιση δεν αποθηκεύθηκε. Οι άλλες ρυθμίσεις αποθηκεύθηκαν με "
1972
  "επιτυχία."
1973
  msgstr[1] ""
1974
+ "Η παραπάνω ρυθμίσεις δεν αποθηκεύθηκαν. Οι άλλες ρυθμίσεις αποθηκεύθηκαν με "
1975
  "επιτυχία."
1976
 
1977
  #
1978
  #: ../lib/tribe-settings.class.php:509
1979
  msgid "Settings saved."
1980
+ msgstr "Οι ρυθμίσεις αποθηκεύθηκαν."
1981
 
1982
  #: ../lib/tribe-template-factory.class.php:225
1983
  #, php-format
1990
  "listed under %s. Check out past events for this category or view the full "
1991
  "calendar."
1992
  msgstr ""
1993
+ "καταχωρήθηκε στην κατηγορία %s. Ελέγξτε προηγούμενες εκδηλώσεις αυτής της "
1994
  "κατηγορίας ή δείτε το πλήρες ημερολόγιο."
1995
 
1996
  #: ../lib/tribe-template-factory.class.php:237
1999
  "listed under %s. Check out upcoming events for this category or view the "
2000
  "full calendar."
2001
  msgstr ""
2002
+ "καταχωρήθηκε στην κατηγορία %s. Ελέγξτε τις προσεχείς εκδηλώσεις για την "
2003
+ "κατηγορία αυτήν ή δείτε το πλήρες ημερολόγιο."
2004
 
2005
  #: ../lib/tribe-template-factory.class.php:241
2006
  #, php-format
2007
  msgid "No events scheduled for <strong>%s</strong>. Please try another day."
2008
  msgstr ""
2009
+ "Δεν υπάρχουν προγραμματισμένες εκδηλώσεις για <strong>%s</ strong>. "
2010
+ "Παρακαλούμε δοκιμάστε μία άλλη ημέρα."
2011
 
2012
  #
2013
  #: ../lib/tribe-template-factory.class.php:245
2014
  msgid "No upcoming events "
2015
+ msgstr "Δεν υπάρχουν προσεχείς εκδηλώσεις "
2016
 
2017
  #
2018
  #: ../lib/tribe-template-factory.class.php:247
2019
  msgid "No matching events "
2020
+ msgstr "Δεν υπάρχουν εκδηλώσεις που να αντιστοιχούν "
2021
 
2022
  #
2023
  #: ../lib/tribe-template-factory.class.php:250
2024
  msgid "No previous events "
2025
+ msgstr "Δεν υπάρχουν προηγούμενες εκδηλώσεις "
2026
 
2027
  #: ../lib/tribe-the-events-calendar-import.class.php:64
2028
  #, php-format
2039
  "><br/> You have events that need to be migrated. Please visit the bottom of "
2040
  "the <a href=\"%s\">settings page</a> to perform the migration."
2041
  msgstr ""
2042
+ "Καλωσήρθατε στο Events 2.0! Πρόκειται για μία ΤΕΡΑΣΤΙΑ αναβάθμιση από το "
2043
+ "1.6.5. Παρακαλούμε βεβαιωθείτε ότι έχετε δημιουργήσει αντίγραφα ασφαλείας "
2044
+ "πριν προχωρήσετε περαιτέρω. Μπορείτε εύκολα <a href=\"%s\">να επιστρέψετε σε "
2045
+ "μία παλαιότερη έκδοση</a> αν θέλετε να δημιουργήσετε αντίγραφα ασφαλείας "
2046
+ "πρώτα. Η αναβάθμιση περιλαμβάνει δύο βασικά βήματα, <a href=\"%s\">μετατροπή "
2047
+ "&amp; μετεγκατάσταση δεδομένων</a> &amp; ενημέρωση των προτύπων σας ανάλογα "
2048
+ "με τις ανάγκες σας. Υπήρξαν σημαντικές αλλαγές στις ετικέτες προτύπων και "
2049
+ "τις λειτουργίες. Δείτε την <a href=\"%s\">παρουσίαση της αναβάθμισης</a> "
2050
+ "πριν συνεχίσετε, καθώς και τις Συχνές Ερωτήσεις &amp; Βάση Γνώσεων στη <a "
2051
+ "href=\"%s\">σελίδα υποστήριξης</a>. Αν είστε νέος χρήστης του The Events "
2052
+ "Calendar, ενδεχομένως να θέλετε να μελετήσετε το <a href=\"%s\">Αλφαβητάρι "
2053
+ "Νέου Χρήστη</a>.<br/><br/> Έχετε εκδηλώσεις που χρειάζονται μετατροπή &amp; "
2054
+ "μετεγκατάσταση. Παρακαλούμε, πηγαίντε στο κάτω μέρος της <a href=\"%s"
2055
+ "\">σελίδας ρυθμίσεων</a> για να πραγματοποιήσετε τη μετατροπή &amp; "
2056
+ "μετεγκατάσταση."
2057
 
2058
  #: ../lib/tribe-the-events-calendar-import.class.php:86
2059
  msgid "Upgrade from The Events Calendar"
2060
+ msgstr "Αναβάθμιση από το Ημερολόγιο Εκδηλώσεων"
2061
 
2062
  #: ../lib/tribe-the-events-calendar-import.class.php:87
2063
  msgid ""
2066
  "upgrade. This process can not be undone."
2067
  msgstr ""
2068
  "Φαίνεται ότι υπάρχουν κάποια παλαιότερα δεδομένα του ημερολογίου εκδηλώσεων "
2069
+ "που πρέπει να αναβαθμιστούν. Παρακαλούμε βεβαιωθείτε ότι έχετε δημιουργήσει "
2070
+ "αντίγραφο της βάσης δεδομένων πριν ξεκινήσετε τη διαδικασία αναβάθμισης. "
2071
+ "Αυτή η διαδικασία δεν μπορεί να αναιρεθεί."
2072
 
2073
  #: ../lib/tribe-the-events-calendar-import.class.php:88
2074
  msgid "Migrate Data!"
2075
+ msgstr "Μετατροπή &amp; Μετεγκατάσταση Δεδομένων!"
2076
 
2077
  #: ../lib/tribe-the-events-calendar-import.class.php:166
2078
  #, php-format
2079
  msgid "You successfully migrated (%d) entries."
2080
+ msgstr "Μετατρέψατε και μετεγκαταστήσατε επιτυχώς (%d) καταχωρήσεις."
2081
 
2082
  #: ../lib/tribe-the-events-calendar-import.class.php:242
2083
  msgid "Install has 1 or more legacy event!"
2140
  "Comparison validation failed because no comparison value was provided, for "
2141
  "field %s"
2142
  msgstr ""
2143
+ "Η σύγκριση επικύρωσης απέτυχε διότι δεν παρασχέθηκε αξία σύγκρισης για το "
2144
  "πεδίο %s"
2145
 
2146
  #: ../lib/tribe-validate.class.php:302
2168
  msgid ""
2169
  "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
2170
  msgstr ""
2171
+ "% s πρέπει να αποτελείται μόνο από γράμματα, αριθμούς, παύλες, αποστρόφους "
2172
  "και κενά διαστήματα."
2173
 
2174
  #: ../lib/tribe-validate.class.php:422
2359
 
2360
  #: ../lib/tribe-view-helpers.class.php:84
2361
  msgid "Cayman Islands"
2362
+ msgstr "Νησιά Κέιμαν"
2363
 
2364
  #: ../lib/tribe-view-helpers.class.php:85
2365
  msgid "Central African Republic"
2499
 
2500
  #: ../lib/tribe-view-helpers.class.php:119
2501
  msgid "France, Metropolitan"
2502
+ msgstr "Γαλλία, Μητροπολιτική"
2503
 
2504
  #: ../lib/tribe-view-helpers.class.php:120
2505
  msgid "French Guiana"
2544
 
2545
  #: ../lib/tribe-view-helpers.class.php:130
2546
  msgid "Greenland"
2547
+ msgstr "Γροιλανδία"
2548
 
2549
  #: ../lib/tribe-view-helpers.class.php:131
2550
  msgid "Grenada"
2813
 
2814
  #: ../lib/tribe-view-helpers.class.php:197
2815
  msgid "Netherlands"
2816
+ msgstr "Ολλανδία"
2817
 
2818
  #: ../lib/tribe-view-helpers.class.php:198
2819
  msgid "Netherlands Antilles"
3005
 
3006
  #: ../lib/tribe-view-helpers.class.php:245
3007
  msgid "St. Helena"
3008
+ msgstr "Αγία Ελένη"
3009
 
3010
  #: ../lib/tribe-view-helpers.class.php:246
3011
  msgid "St. Pierre And Miquelon"
3109
 
3110
  #: ../lib/tribe-view-helpers.class.php:271
3111
  msgid "United States Minor Outlying Islands"
3112
+ msgstr "Ηνωμένες Πολιτείες Μικρά Απομονωμένα Νησιά"
3113
 
3114
  #: ../lib/tribe-view-helpers.class.php:272
3115
  msgid "Uruguay"
3141
 
3142
  #: ../lib/tribe-view-helpers.class.php:279
3143
  msgid "Wallis And Futuna Islands"
3144
+ msgstr "Νήσοι Ουαλίς και Φουτουνά"
3145
 
3146
  #: ../lib/tribe-view-helpers.class.php:280
3147
  msgid "Western Sahara"
3189
 
3190
  #: ../lib/tribe-view-helpers.class.php:315
3191
  msgid "Delaware"
3192
+ msgstr "Ντέλαγουερ"
3193
 
3194
  #: ../lib/tribe-view-helpers.class.php:316
3195
  msgid "District of Columbia"
3253
 
3254
  #: ../lib/tribe-view-helpers.class.php:332
3255
  msgid "Mississippi"
3256
+ msgstr "Μισισίπι"
3257
 
3258
  #: ../lib/tribe-view-helpers.class.php:333
3259
  msgid "Missouri"
3341
 
3342
  #: ../lib/tribe-view-helpers.class.php:354
3343
  msgid "Virginia"
3344
+ msgstr "Βιρτζίνια"
3345
 
3346
  #: ../lib/tribe-view-helpers.class.php:355
3347
  msgid "Washington"
3362
  #
3363
  #: ../lib/widget-list.class.php:21
3364
  msgid "A widget that displays upcoming events."
3365
+ msgstr "Ένα widget που εμφανίζει προσεχείς εκδηλώσεις."
3366
 
3367
  #: ../lib/widget-list.class.php:27
3368
  msgid "Events List"
3370
 
3371
  #: ../lib/widget-list.class.php:114
3372
  msgid "View All Events"
3373
+ msgstr "Προβολή Όλων των Εκδηλώσεων"
3374
 
3375
  #: ../lib/widget-list.class.php:117
3376
  msgid "There are no upcoming events at this time."
3377
+ msgstr "Δεν υπάρχουν προσεχείς εκδηλώσεις αυτήν τη στιμγή"
3378
 
3379
  #: ../lib/template-classes/month.php:75
3380
  #, php-format
3382
  "There were no results found for <strong>\"%s\"</strong> this month. Try "
3383
  "searching next month."
3384
  msgstr ""
3385
+ "Δεν βρέθηκαν αποτελέσματα για <strong>\"%s\"</strong>αυτόν το μήνα. "
3386
+ "Δοκιμάστε να ψάξετε στον επόμενο μήνα."
3387
 
3388
  #: ../lib/template-classes/single-event.php:99
3389
  msgid "This event has passed."
3462
  #: ../lib/tickets/tribe-tickets-pro.php:107
3463
  msgid "You need to select a user or type a valid email address"
3464
  msgstr ""
3465
+ "Πρέπει να επιλέξετε ένα χρήστη ή να πληκτρολογήσετε μία έγκυρη διεύθυνση "
3466
  "email"
3467
 
3468
  #: ../lib/tickets/tribe-tickets-pro.php:108
3469
  msgid "Sending..."
3470
+ msgstr "Αποστέλλεται…"
3471
 
3472
  #: ../lib/tickets/tribe-tickets-pro.php:136
3473
  msgid "Columns"
3480
  "export."
3481
  msgstr ""
3482
  "Μπορείτε να χρησιμοποιήσετε τις επιλογές οθόνης για να επιλέξετε τις στήλες "
3483
+ "που θέλετε να δείτε. Η επιλογή λειτουργεί στον παρακάτω πίνακα, στο email, "
3484
  "για εκτύπωση και για την εξαγωγή CSV."
3485
 
3486
  #: ../lib/tickets/tribe-tickets-pro.php:258
3490
  #: ../lib/tickets/tribe-tickets-pro.php:308
3491
  #, php-format
3492
  msgid "Attendee List for: %s"
3493
+ msgstr "Λίστα Συμμετεχόντων για: %s"
3494
 
3495
  #: ../lib/tickets/tribe-tickets.php:292
3496
  msgid "Your ticket has been saved."
3497
+ msgstr "Το εισιτήριό σας έχει αποθηκευθεί."
3498
 
3499
  #: ../lib/tickets/tribe-tickets.php:369
3500
  msgid "Your ticket has been deleted."
3515
 
3516
  #: ../public/advanced-functions/meta.php:233
3517
  msgid "Click to view a Google Map"
3518
+ msgstr "Κάντε κλικ για να δείτε ένα χάρτη Google"
3519
 
3520
  #
3521
  #: ../public/advanced-functions/meta.php:234
3599
  "ideally be plural, and this singular.<br />Your single Event URL is like: %s"
3600
  msgstr ""
3601
  "<strong>Δεν</strong> μπορείτε να χρησιμοποιήσετε το ίδιο slug με το "
3602
+ "παραπάνω. Ιδανικά, το παραπάνω θα πρέπει να είναι στον πληθυντικό και αυτό "
3603
+ "στον ενικό.<br />Το URL μεμονομένης εκδήλωσης είναι σαν: %s"
3604
 
3605
  #
3606
  #: ../views/single-event.php:23
3610
  #
3611
  #: ../views/single-event.php:42 ../views/single-event.php:73
3612
  msgid "Event Navigation"
3613
+ msgstr "Πλοήγηση Εκδήλωσης"
3614
 
3615
  #
3616
  #: ../views/list/nav.php:16
3617
  msgid "Events List Navigation"
3618
+ msgstr "Πλοήγηση Λίστας Εκδηλώσεων"
3619
 
3620
  #: ../views/list/single-event.php:76
3621
  msgid "Find out more"
3628
 
3629
  #: ../views/modules/bar.php:38
3630
  msgid "Event Views Navigation"
3631
+ msgstr "Πλοήγηση Προβολών Εκδήλωσης"
3632
 
3633
  #
3634
  #: ../views/modules/bar.php:39
3635
  msgid "View As"
3636
+ msgstr "Προβολή ως"
3637
 
3638
  #
3639
  #: ../views/month/nav.php:18
3655
 
3656
  #: ../views/tickets/email.php:324
3657
  msgid "Purchaser"
3658
+ msgstr "Αγοραστής"
3659
 
3660
  #~ msgid ""
3661
  #~ "Want to modify the display of this widget? Try a %stemplate override%s."
lang/tribe-events-calendar-fi.mo ADDED
Binary file
lang/tribe-events-calendar-fi.po ADDED
@@ -0,0 +1,3325 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # POT for The Events Calendar 2.0 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:29-0800\n"
9
+ "PO-Revision-Date: 2013-07-02 11:29-0800\n"
10
+ "Last-Translator: Paul Hughes <paul@paulalexanderhughes.com>\n"
11
+ "Language-Team: Modern Tribe, Inc. <pro@tri.be>\n"
12
+ "Language: en_US\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-Textdomain-Support: yes\n"
22
+ "X-Generator: Poedit 1.5.5\n"
23
+ "X-Poedit-SearchPath-0: ..\n"
24
+
25
+ #: ../admin-views/app-shop.php:4
26
+ msgid "Tribe Event Add-Ons"
27
+ msgstr "Tribe Lisäosat"
28
+
29
+ #: ../admin-views/app-shop.php:50
30
+ msgid "Version"
31
+ msgstr "Versio"
32
+
33
+ #: ../admin-views/app-shop.php:53
34
+ msgid "Last Update"
35
+ msgstr "Viimeisin päivitys"
36
+
37
+ #: ../admin-views/event-sidebar-options.php:11
38
+ msgid "Hide From Event Listings"
39
+ msgstr "Piilota tapahtumaluetteloista"
40
+
41
+ #: ../admin-views/event-sidebar-options.php:12
42
+ msgid "Sticky in Calendar View"
43
+ msgstr "Kiinnitetty kalenterinäkymään"
44
+
45
+ #: ../admin-views/events-audit-trail.php:41
46
+ msgid "Auditing Information"
47
+ msgstr "Tarkastuksen tiedot"
48
+
49
+ #: ../admin-views/events-audit-trail.php:47
50
+ msgid "Created by:"
51
+ msgstr "Luonut:"
52
+
53
+ #: ../admin-views/events-audit-trail.php:51
54
+ msgid "Audit Trail:"
55
+ msgstr "Tarkastuksen polku:"
56
+
57
+ #: ../admin-views/events-meta-box.php:26
58
+ msgid "Event Time &amp; Date"
59
+ msgstr "Tapahtuma-aika ja -päivä"
60
+
61
+ #: ../admin-views/events-meta-box.php:32
62
+ msgid ""
63
+ "You have changed the recurrence rules of this event. Saving the event will "
64
+ "update all future events. If you did not mean to change all events, then "
65
+ "please refresh the page."
66
+ msgstr "Olet muuttanut tämän tapahtuman toistoa-asetuksia. Tallentaminen päivittää kaikki tulevat tapahtumat. Jos tarkoituksenasi ei ollut muuttaa kaikkia tapahtumia, päivitä sivu."
67
+
68
+ #: ../admin-views/events-meta-box.php:35
69
+ msgid "All Day Event:"
70
+ msgstr "Koko päivän tapahtuma:"
71
+
72
+ #: ../admin-views/events-meta-box.php:39
73
+ msgid "Start Date &amp; Time:"
74
+ msgstr "Aloituspäivä ja -aika:"
75
+
76
+ #: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
77
+ msgid "YYYY-MM-DD"
78
+ msgstr "VVVV-KK-PP"
79
+
80
+ #: ../admin-views/events-meta-box.php:60
81
+ msgid "End Date &amp; Time:"
82
+ msgstr "Lopetuspäivä ja -aika"
83
+
84
+ #: ../admin-views/events-meta-box.php:85
85
+ msgid "Event Location Details"
86
+ msgstr "Tapahtumapaikan tiedot"
87
+
88
+ #: ../admin-views/events-meta-box.php:93
89
+ msgid "Event Organizer Details"
90
+ msgstr "Tapahtuman järjestäjän tiedot"
91
+
92
+ #: ../admin-views/events-meta-box.php:101
93
+ msgid "Event Website"
94
+ msgstr "Tapahtuman sivusto"
95
+
96
+ #: ../admin-views/events-meta-box.php:104
97
+ msgid "URL:"
98
+ msgstr "URL:"
99
+
100
+ #: ../admin-views/events-meta-box.php:115
101
+ msgid "Event Cost"
102
+ msgstr "Tapahtuman hinta"
103
+
104
+ #: ../admin-views/events-meta-box.php:118
105
+ msgid "Currency Symbol:"
106
+ msgstr "Valuutan symbooli:"
107
+
108
+ #: ../admin-views/events-meta-box.php:122
109
+ #: ../public/advanced-functions/meta.php:270
110
+ msgid "Cost:"
111
+ msgstr "Hinta:"
112
+
113
+ #: ../admin-views/events-meta-box.php:127
114
+ msgid "Enter a 0 for events that are free or leave blank to hide the field."
115
+ msgstr "Anna 0 tapahtumille, jotka ovat ilmaisia ​​tai jätä tyhjäksi piilottaaksesi kentän."
116
+
117
+ #: ../admin-views/organizer-meta-box.php:12
118
+ msgid "Organizer Name:"
119
+ msgstr "Järjestäjän nimi:"
120
+
121
+ #: ../admin-views/organizer-meta-box.php:19
122
+ #: ../admin-views/venue-meta-box.php:93
123
+ #: ../admin-views/tickets/attendees.php:39
124
+ #: ../public/advanced-functions/meta.php:357
125
+ #: ../public/advanced-functions/meta.php:419
126
+ msgid "Phone:"
127
+ msgstr "Puhelin:"
128
+
129
+ #: ../admin-views/organizer-meta-box.php:23
130
+ #: ../admin-views/venue-meta-box.php:97
131
+ #: ../admin-views/tickets/attendees.php:45
132
+ #: ../public/advanced-functions/meta.php:308
133
+ #: ../public/advanced-functions/meta.php:383
134
+ #: ../public/advanced-functions/meta.php:445
135
+ msgid "Website:"
136
+ msgstr "Kotisivu:"
137
+
138
+ #: ../admin-views/organizer-meta-box.php:27
139
+ #: ../public/advanced-functions/meta.php:432
140
+ msgid "Email:"
141
+ msgstr "Sähköposti:"
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 "Haluatko muuttaa vain tätä tapahtuman esiintymää vai kaikkia tämän sarjan tulevia esiintymiä?"
148
+
149
+ #: ../admin-views/recurrence-dialog.php:15
150
+ #: ../admin-views/recurrence-dialog.php:23
151
+ msgid "Only This Event:"
152
+ msgstr "Vain tätä esiintymää:"
153
+
154
+ #: ../admin-views/recurrence-dialog.php:15
155
+ msgid "All other future events in the series will remain the same."
156
+ msgstr "Kaikki muut sarjan tapahtumat pysyvät samoina."
157
+
158
+ #: ../admin-views/recurrence-dialog.php:16
159
+ #: ../admin-views/recurrence-dialog.php:24
160
+ msgid "All Events:"
161
+ msgstr "Kaikkia tapahtumia:"
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 "Kaikki tämän sarjan tulevat tapahtumat muuttuvat. Muihin tapahtumiin tehdyt muutokset säilyvät."
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 "Haluatko poistaa vain tämän tapahtuman vai kaikki tämän sarjan tulevat tapahtumat?"
174
+
175
+ #: ../admin-views/recurrence-dialog.php:23
176
+ msgid "All other future events in the series will not be deleted."
177
+ msgstr "Muita sarjan tulevia tapahtumia ei poisteta."
178
+
179
+ #: ../admin-views/recurrence-dialog.php:24
180
+ msgid "All future events in the series will be deleted."
181
+ msgstr "Kaikki sarjan tulevat tapahtumat poistetaan."
182
+
183
+ #: ../admin-views/tribe-options-display.php:4
184
+ msgid "Default Events Template"
185
+ msgstr "Tapahtuman oletuspohja"
186
+
187
+ #: ../admin-views/tribe-options-display.php:5
188
+ msgid "Default Page Template"
189
+ msgstr "Sivun oletuspohja"
190
+
191
+ #: ../admin-views/tribe-options-display.php:29
192
+ msgid "Display Settings"
193
+ msgstr "Näyttämisen asetukset"
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&#37; 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 "<p> Alla olevat asetukset vaikuttavat kalenterisi ulkoasuun. Jos ulkoasu ei näytä oikealta, ​​kokeile vaihtaa tyyliä tai valitse sivupohja teemastasi. </p><p> Joissain tilanteissa mikään malli ei ole suoraan 100&#37; täydellinen. Tutustu <a href=\"%s\">teemaoppaaseemme</a> mukautetun ulkoasun luomiseksi. Haluatko luoda uuden näkymän? Kaappari kopio <a href=\"%s\"> Sample Agenda View lisäosasta Githubista</a> </p>"
206
+
207
+ #: ../admin-views/tribe-options-display.php:49
208
+ msgid "Basic Template Settings"
209
+ msgstr "Pohjan perusasetukset"
210
+
211
+ #: ../admin-views/tribe-options-display.php:53
212
+ msgid "Default stylesheet used for events templates"
213
+ msgstr "Tapahtumapohjissa oletuksena käytettävä tyylitiedosto"
214
+
215
+ #: ../admin-views/tribe-options-display.php:56
216
+ msgid "Skeleton Styles"
217
+ msgstr "Skeleton Styles"
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 "Sisältää vain tarvittavan css-koodin monimutkaisten asettelujen, kuten kalenteri- ja viikkonäkymien luomiseen."
224
+
225
+ #: ../admin-views/tribe-options-display.php:60
226
+ msgid "Full Styles"
227
+ msgstr "Full Styles"
228
+
229
+ #: ../admin-views/tribe-options-display.php:62
230
+ msgid "More detailed styling, tries to grab styles from your theme."
231
+ msgstr "Tarkempi muotoilu, yrittää hyödyntää teemasi tyylejä."
232
+
233
+ #: ../admin-views/tribe-options-display.php:64
234
+ msgid "Tribe Events Styles"
235
+ msgstr "Tribe Event Styles"
236
+
237
+ #: ../admin-views/tribe-options-display.php:66
238
+ msgid "A fully designed and styled theme for your events pages."
239
+ msgstr "Täysin valmis teema tapahtumasivuillesi."
240
+
241
+ #: ../admin-views/tribe-options-display.php:73
242
+ msgid "Events template"
243
+ msgstr "Tapahtumien pohja"
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 "Valitse sivunpohja kalenterin ja tapahtumien sisällön ulkoasua varten."
250
+
251
+ #: ../admin-views/tribe-options-display.php:82
252
+ msgid "Enable event views"
253
+ msgstr "Ota käyttöön tapahtumanäkymiä"
254
+
255
+ #: ../admin-views/tribe-options-display.php:83
256
+ msgid "You must select at least one view."
257
+ msgstr "Sinun on valittava vähintään yksi näkymä."
258
+
259
+ #: ../admin-views/tribe-options-display.php:90
260
+ msgid "Default view"
261
+ msgstr "Oletusnäkymä"
262
+
263
+ #: ../admin-views/tribe-options-display.php:98
264
+ msgid "Disable the Event Search Bar"
265
+ msgstr "Poista hakupalkki"
266
+
267
+ #: ../admin-views/tribe-options-display.php:99
268
+ msgid "Check this to use the classic header."
269
+ msgstr "Valitse tämä käyttääksesi perinteistä otsikkoa."
270
+
271
+ #: ../admin-views/tribe-options-display.php:105
272
+ msgid "Advanced Template Settings"
273
+ msgstr "Pohjan lisäasetukset"
274
+
275
+ #: ../admin-views/tribe-options-display.php:109
276
+ msgid "Add HTML before event content"
277
+ msgstr "Lisää HTML-koodia ennen tapahtuman sisältöä"
278
+
279
+ #: ../admin-views/tribe-options-display.php:110
280
+ msgid ""
281
+ "If you are familiar with HTML, you can add additional code before the event "
282
+ "template. Some themes may require this to help with styling or layout."
283
+ msgstr "Jos olet perehtynyt HTML:ään, voit lisätä koodia ennen tapahtuman pohjaa. Jotkin teemat voivat vaatia tätä muotoilun tai tyylien toimimiseksi."
284
+
285
+ #: ../admin-views/tribe-options-display.php:115
286
+ msgid "Add HTML after event content"
287
+ msgstr "Lisää HTML-koodia tapahtuman sisällön jälkeen"
288
+
289
+ #: ../admin-views/tribe-options-display.php:116
290
+ msgid ""
291
+ "If you are familiar with HTML, you can add additional code after the event "
292
+ "template. Some themes may require this to help with styling or layout."
293
+ msgstr "Jos olet perehtynyt HTML:ään, voit lisätä koodia ennen tapahtuman pohjaa. Jotkin teemat voivat vaatia tätä muotoilun tai tyylien toimimiseksi."
294
+
295
+ #: ../admin-views/tribe-options-general.php:14
296
+ msgid "Finding & extending your calendar."
297
+ msgstr "Kalenterin löytäminen ja laajentaminen."
298
+
299
+ #: ../admin-views/tribe-options-general.php:19
300
+ msgid "Finding your calendar."
301
+ msgstr "Kalenterin löytäminen."
302
+
303
+ #: ../admin-views/tribe-options-general.php:24
304
+ msgid "Where's my calendar?"
305
+ msgstr "Missä minun kalenterini on?"
306
+
307
+ #: ../admin-views/tribe-options-general.php:24
308
+ msgid "Right here"
309
+ msgstr "Täällä"
310
+
311
+ #: ../admin-views/tribe-options-general.php:28
312
+ msgid ""
313
+ "Looking for additional functionality including recurring events, custom "
314
+ "meta, community events, ticket sales and more?"
315
+ msgstr "Etsitkö lisätoimintoja kuten toistuvia tapahtumia, lisätietokenttiä, yhteisöllisiä tapahtumia, lipunmyyntiä ja paljon muuta?"
316
+
317
+ #: ../admin-views/tribe-options-general.php:28
318
+ msgid "Check out the available add-ons"
319
+ msgstr "Tutustu tarjolla oleviin lisäosiin"
320
+
321
+ #: ../admin-views/tribe-options-general.php:33
322
+ msgid "We hope our plugin is helping you out."
323
+ msgstr "Toivomme lisäosamme auttavan sinua."
324
+
325
+ #: ../admin-views/tribe-options-general.php:37
326
+ msgid ""
327
+ "Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
328
+ "Modern Tribe for all their hard work.\" The greatest thanks we could ask for "
329
+ "is recognition. Add a small text-only link at the bottom of your calendar "
330
+ "pointing to The Events Calendar project."
331
+ msgstr "Ajatteletko,\"Vau, tämä lisäosa on hämmästyttävä! Minun pitäisi sanoa: kiitos Modern Tribe kovasta työstä.\"? Suurin kiitos on kertoa meistä. Lisää pieni The Events Calendar -projektin linkki kalenterin alareunaan."
332
+
333
+ #: ../admin-views/tribe-options-general.php:37
334
+ #: ../admin-views/tribe-options-general.php:42
335
+ msgid "See an example of the link"
336
+ msgstr "Katso esimerkki linkistä"
337
+
338
+ #: ../admin-views/tribe-options-general.php:42
339
+ msgid ""
340
+ "Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
341
+ "Modern Tribe for all their hard work.\" The greatest thanks we could ask for "
342
+ "is recognition. Add a small text only link at the bottom of your calendar "
343
+ "pointing to The Events Calendar project."
344
+ msgstr "Ajatteletko,\"Vau, tämä lisäosa on hämmästyttävä! Minun pitäisi sanoa: kiitos Modern Tribe kovasta työstä.\"? Suurin kiitos on kertoa meistä. Lisää pieni The Events Calendar -projektin linkki kalenterin alareunaan."
345
+
346
+ #: ../admin-views/tribe-options-general.php:47
347
+ msgid "Show The Events Calendar link"
348
+ msgstr "Näytä The Events Calendar -projektin linkki"
349
+
350
+ #: ../admin-views/tribe-options-general.php:61
351
+ msgid "General Settings"
352
+ msgstr "Yleiset asetukset"
353
+
354
+ #: ../admin-views/tribe-options-general.php:65
355
+ msgid "Number of events to show per page"
356
+ msgstr "Tapahtumia per sivu"
357
+
358
+ #: ../admin-views/tribe-options-general.php:72
359
+ msgid "Use Javascript to control page load"
360
+ msgstr "Käytä Javascripiat sivun lataksessa"
361
+
362
+ #: ../admin-views/tribe-options-general.php:73
363
+ msgid "Enable ajax to live refresh content."
364
+ msgstr "Ota käyttöön käyttääksesi ajaxia sivun päivittämiseen lennossa."
365
+
366
+ #: ../admin-views/tribe-options-general.php:79
367
+ msgid "Show comments"
368
+ msgstr "Näytä kommentit"
369
+
370
+ #: ../admin-views/tribe-options-general.php:80
371
+ msgid "Enable comments on event pages."
372
+ msgstr "Ota kommentit käyttöön tapahtumasivuilla."
373
+
374
+ #: ../admin-views/tribe-options-general.php:86
375
+ msgid "Include events in main blog loop"
376
+ msgstr "Sisällytä tapahtumat blogin etusivun listaukseen"
377
+
378
+ #: ../admin-views/tribe-options-general.php:87
379
+ msgid ""
380
+ "Show events with the site's other posts. When this box is checked, events "
381
+ "will also continue to appear on the default events page."
382
+ msgstr "Näytä tapahtumat sivuston muiden artikkelien kanssa. Tapahtumat näkyvät edelleen tapahtumasivulla."
383
+
384
+ #: ../admin-views/tribe-options-general.php:93
385
+ #: ../admin-views/tribe-options-general.php:99
386
+ msgid "Events URL slug"
387
+ msgstr "Tapahtumien URL-osoite"
388
+
389
+ #: ../admin-views/tribe-options-general.php:94
390
+ #, php-format
391
+ msgid ""
392
+ "You cannot edit the slug for your events page as you do not have pretty "
393
+ "permalinks enabled. The current URL for your events page is <a href=\"%s\">"
394
+ "%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php"
395
+ "\">enable pretty permalinks</a>."
396
+ msgstr "Et voi muokata tapahtumien osoitetta, koska sinulla ei ole kestolinkkejä käytössä. Nykyinen tapahtuma sivusi URL-osoite on <a href=\"%s\"> %s </a>. Jotta voit muokata URL-osoitetta täällä, <a href=\"%soptions-permalink.php\"> ota kestolinkit käyttöön</a>."
397
+
398
+ #: ../admin-views/tribe-options-general.php:106
399
+ #: ../public/template-tags/options.php:20
400
+ msgid "The slug used for building the events URL."
401
+ msgstr "Tapahtumien URL-osoitteen muoto."
402
+
403
+ #: ../admin-views/tribe-options-general.php:106
404
+ #, php-format
405
+ msgid "Your current events URL is: %s"
406
+ msgstr "Nykyinen tapahtumien URL on: %s"
407
+
408
+ #: ../admin-views/tribe-options-general.php:111
409
+ #: ../public/template-tags/options.php:43
410
+ msgid "Here is the iCal feed URL for your events:"
411
+ msgstr "Tässä on tapahtumien iCal syötteen URL:"
412
+
413
+ #: ../admin-views/tribe-options-general.php:116
414
+ msgid "Single event URL slug"
415
+ msgstr "Yksittäisen tapahtuman URL-osoitteen muoto"
416
+
417
+ #: ../admin-views/tribe-options-general.php:123
418
+ #, php-format
419
+ msgid ""
420
+ "The above should ideally be plural, and this singular.<br />Your single "
421
+ "event URL is: %s"
422
+ msgstr "Edellä olevan tulisi mieluiten olla monikossa, ja tämä yksikkö. <br /> Yksittäisen tapahtuman URL on: %s"
423
+
424
+ #: ../admin-views/tribe-options-general.php:128
425
+ msgid "End of day cutoff"
426
+ msgstr "Päivän loppumisajankohta"
427
+
428
+ #: ../admin-views/tribe-options-general.php:136
429
+ msgid ""
430
+ "Have events that run past midnight? Control when your day official ends to "
431
+ "avoid awkwardly adding your event to the next day."
432
+ msgstr "Onko sinulla tapahtumia, jotka jatkuvat yli puolenyön? Vaikuta siihen, milloin päivä virallisesti loppuu, etteivät tapahtumat näy aiheettomasti seuraavankin päivän kohdalla."
433
+
434
+ #: ../admin-views/tribe-options-general.php:141
435
+ msgid "Default currency symbol"
436
+ msgstr "Oletusvaluuttasymboli"
437
+
438
+ #: ../admin-views/tribe-options-general.php:142
439
+ msgid ""
440
+ "Set the default currency symbol for event costs. Note that this only impacts "
441
+ "future events, and changes made will not apply retroactively."
442
+ msgstr "Aseta oletusvaluuttaa tapahtuman hinnalle. Huomaa, että tämä muutos koskee ainoastaan tulevia tapahtumia."
443
+
444
+ #: ../admin-views/tribe-options-general.php:149
445
+ msgid "Map Settings"
446
+ msgstr "Kartta-asetukset"
447
+
448
+ #: ../admin-views/tribe-options-general.php:153
449
+ msgid "Enable Google Maps"
450
+ msgstr "Ota Google Maps käyttöön"
451
+
452
+ #: ../admin-views/tribe-options-general.php:154
453
+ msgid "Check to enable maps for events and venues."
454
+ msgstr "Valitset, ottaaksesi käyttöön kartan tapahtumille ja paikoille."
455
+
456
+ #: ../admin-views/tribe-options-general.php:161
457
+ msgid "Google Maps default zoom level"
458
+ msgstr "Google Maps oletus zoomaus"
459
+
460
+ #: ../admin-views/tribe-options-general.php:162
461
+ msgid "0 = zoomed out; 21 = zoomed in."
462
+ msgstr "0=pienin zoom (kauimpana) ; 21=suurin zoom (lähimpänä)"
463
+
464
+ #: ../admin-views/tribe-options-general.php:170
465
+ msgid "Miscellaneous Settings"
466
+ msgstr "Muut asetukset"
467
+
468
+ #: ../admin-views/tribe-options-general.php:174
469
+ msgid "Duplicate Venues &amp; Organizers"
470
+ msgstr "Tapahtumapaikkojen ja -järjestäjien kaksoiskappaleet"
471
+
472
+ #: ../admin-views/tribe-options-general.php:174
473
+ #: ../lib/tribe-amalgamator.php:252
474
+ msgid "Merge Duplicates"
475
+ msgstr "Yhdistä kaksoiskappaleet"
476
+
477
+ #: ../admin-views/tribe-options-general.php:174
478
+ msgid ""
479
+ "You might find duplicate venues and organizers when updating The Events "
480
+ "Calendar from a pre-3.0 version. Click this button to automatically merge "
481
+ "identical venues and organizers."
482
+ msgstr "Saatat löytää kahdentuneita tapahtumapaikkoja ja järjestäjiä päivittäessäsi 3.0:aa aikaisemasta versiosta. Klikkaa tätä painiketta yhdistääksesi automaattisesti identtiset tapahtumapaikat ja -järjestäjät."
483
+
484
+ #: ../admin-views/tribe-options-general.php:179
485
+ msgid "Debug mode"
486
+ msgstr "Debug-tila"
487
+
488
+ #: ../admin-views/tribe-options-general.php:185
489
+ #, php-format
490
+ msgid ""
491
+ "Enable this option to log debug information. By default this will log to "
492
+ "your server PHP error log. If you'd like to see the log messages in your "
493
+ "browser, then we recommend that you install the %s and look for the \"Tribe"
494
+ "\" tab in the debug output."
495
+ msgstr "Ota tämä asetus käyttöön tallentaaksesi debug-tietoja. Oletuksena tiedot kirjatuvat palvelimelle PHP:n virhelokiin. Jos haluat nähdä lokeja selaimessasi, suosittelemme, että asennat %s, ja etsit\"Tribe\"-välilehden debug-tiedoista."
496
+
497
+ #: ../admin-views/tribe-options-general.php:185
498
+ msgid "Debug Bar Plugin"
499
+ msgstr "Debug Bar -lisäosa"
500
+
501
+ #: ../admin-views/tribe-options-help.php:18
502
+ msgctxt "not available"
503
+ msgid "n/a"
504
+ msgstr "n/a"
505
+
506
+ #: ../admin-views/tribe-options-help.php:19
507
+ msgid "You need to upgrade!"
508
+ msgstr "Sinun täytyy päivittää!"
509
+
510
+ #: ../admin-views/tribe-options-help.php:19
511
+ msgid "You are up to date!"
512
+ msgstr "Olet ajan tasalla!"
513
+
514
+ #: ../admin-views/tribe-options-help.php:42
515
+ msgid "The Events Calendar PRO"
516
+ msgstr "The Events Calendar PRO"
517
+
518
+ #: ../admin-views/tribe-options-help.php:46
519
+ msgid "Eventbrite Tickets"
520
+ msgstr "Eventbrite Tickets"
521
+
522
+ #: ../admin-views/tribe-options-help.php:50
523
+ msgid "Community Events"
524
+ msgstr "Community Events"
525
+
526
+ #: ../admin-views/tribe-options-help.php:54
527
+ msgid "Facebook Events"
528
+ msgstr "Facebook Events"
529
+
530
+ #: ../admin-views/tribe-options-help.php:58
531
+ msgid "WooTickets"
532
+ msgstr "WooTickets"
533
+
534
+ #: ../admin-views/tribe-options-help.php:63
535
+ msgid "Faceted Filters"
536
+ msgstr "Faceted Filters
537
+ "
538
+
539
+ #: ../admin-views/tribe-options-help.php:71
540
+ msgid "Documentation"
541
+ msgstr "Dokumentaatio"
542
+
543
+ #: ../admin-views/tribe-options-help.php:75
544
+ msgid "FAQ"
545
+ msgstr "FAQ"
546
+
547
+ #: ../admin-views/tribe-options-help.php:79
548
+ #: ../lib/the-events-calendar.class.php:743
549
+ #: ../lib/the-events-calendar.class.php:3889
550
+ #: ../lib/the-events-calendar.class.php:3980
551
+ msgid "Help"
552
+ msgstr "Apua"
553
+
554
+ #: ../admin-views/tribe-options-help.php:83
555
+ msgid "Tutorials"
556
+ msgstr "Oppaat"
557
+
558
+ #: ../admin-views/tribe-options-help.php:87
559
+ msgid "Release Notes"
560
+ msgstr "Julkaisutiedot"
561
+
562
+ #: ../admin-views/tribe-options-help.php:91
563
+ msgid "Forums"
564
+ msgstr "Foorumit"
565
+
566
+ #: ../admin-views/tribe-options-help.php:99
567
+ msgid ""
568
+ "If this is your first time using The Events Calendar, you're in for a treat "
569
+ "and are already well on your way to creating a first event. Here are some "
570
+ "basics we've found helpful for users jumping into it for the first time:"
571
+ msgstr "Jos tämä on ensimmäinen kerta kun käytä The Events Calendaria, tässä muutamia perusasioita, jotka olemme huomanneet käyttäjillemme hyödylliseksi:"
572
+
573
+ #: ../admin-views/tribe-options-help.php:102
574
+ #, php-format
575
+ msgid ""
576
+ "%sOur New User Primer%s was designed for folks in your exact position. "
577
+ "Featuring both step-by-step videos and written walkthroughs that feature "
578
+ "accompanying screenshots, the primer aims to take you from zero to hero in "
579
+ "no time."
580
+ msgstr "%s Meidän uusi käyttöoppaamme%s on suunniteltu juuri kaltaisillesi käyttäjille. Mukana sekä opetusvideioita että kuvilla varustettuja oppaita."
581
+
582
+ #: ../admin-views/tribe-options-help.php:104
583
+ #, php-format
584
+ msgid ""
585
+ "%sInstallation/Setup FAQs%s from our support page can help give an overview "
586
+ "of what the plugin can and cannot do. This section of the FAQs may be "
587
+ "helpful as it aims to address any basic install questions not addressed by "
588
+ "the new user primer."
589
+ msgstr "%sAsennus UKK%s tukisivuillamme voi auttaa sinua saamaan yleiskuvan siitä, mitä lisäosa voi ja ei voi tehdä. Tämä UKK:n osa voi olla hyödyllinen, koska sillä pyritään vastaamaan asennukseen liittyviin kysymyksiin, joihin ei löydy vastauksia käyttöoppaasta."
590
+
591
+ #: ../admin-views/tribe-options-help.php:106
592
+ #, php-format
593
+ msgid ""
594
+ "Are you developer looking to build your own frontend view? We created an "
595
+ "example plugin that demonstrates how to register a new view. You can "
596
+ "%sdownload the plugin at GitHub%s to get started."
597
+ msgstr "Oletko kehittäjä ja haluat rakentaa oman käyttöliittymänäkymän? Loimme esimerkki lisäosan, joka näyttää, miten voit tehdä uuden näkymän. Voit %sladata lisäosan GitHubista %s päästäksesi alkuun."
598
+
599
+ #: ../admin-views/tribe-options-help.php:108
600
+ msgid ""
601
+ "Otherwise, if you're feeling adventurous, you can get started by heading to "
602
+ "the Events menu and adding your first event."
603
+ msgstr "Muutoin, voit jatkaa Tapahtumat-valikkoon ja luoda ensimmäisen tapahtumasi."
604
+
605
+ #: ../admin-views/tribe-options-help.php:112
606
+ #, php-format
607
+ msgid ""
608
+ "We've redone our support page from the ground up in an effort to better help "
609
+ "our users. Head over to our %sSupport Page%s and you'll find lots of great "
610
+ "resources, including:"
611
+ msgstr "Olemme uudistaneet tukisivumme auttaaksemme entistä paremmin uusia käyttäjiä. Mene %stukisivuillemme%s ja löydät paljon hyödyllisiä resursseja, kuten:"
612
+
613
+ #: ../admin-views/tribe-options-help.php:114
614
+ #, php-format
615
+ msgid ""
616
+ "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
617
+ "&amp; Events Calendar PRO"
618
+ msgstr "%sTemplate tags, functions, ja hooks & filters %s The Events Calendaria & Events Calendar PRO:ta varten"
619
+
620
+ #: ../admin-views/tribe-options-help.php:116
621
+ #, php-format
622
+ msgid ""
623
+ "%sFrequently Asked Questions%s ranging from the most basic setup questions "
624
+ "to advanced themer tweaks"
625
+ msgstr "%s Usein kysytyt kysymykset %s vaihtelevat alkeellisinta asennuskysymyksistä pitkälle teemojen hienosäätöön"
626
+
627
+ #: ../admin-views/tribe-options-help.php:118
628
+ #, php-format
629
+ msgid ""
630
+ "%sTutorials%s written by both members of our team and users from the "
631
+ "community, covering custom queries, integration with third-party themes and "
632
+ "plugins, etc."
633
+ msgstr "%s Oppaat %s, joita ovat kirjoittaneet sekä tiimimme jäsenet ja käytäjämme ja jotka kattavat mukautettuja kyselyitä, kolmannen osapuolen teemojen ja lisäosien integroinnin, jne."
634
+
635
+ #: ../admin-views/tribe-options-help.php:120
636
+ msgid ""
637
+ "Release notes for painting an overall picture of the plugin's lifecycle and "
638
+ "when features/bug fixes were introduced."
639
+ msgstr "Julkaisutiedot antavat kokonaiskuvan lisäosan elinkaaresta ja kun ominaisuuksien/korjauksien käyttöönotosta."
640
+
641
+ #: ../admin-views/tribe-options-help.php:122
642
+ #, php-format
643
+ msgid ""
644
+ "%sAdd-on documentation%s for all of Modern Tribe's official extensions for "
645
+ "The Events Calendar (including WooTickets, Community Events, Eventbrite "
646
+ "Tickets, Facebook Events, etc)"
647
+ msgstr "%s Lisäosien dokumentaatio%s kaikille The Events Calendarin virallisille laajennnuksille (mukaan lukien WooTickets, Community Events, Eventbrite Tickets, Facebook Events jne.)"
648
+
649
+ #: ../admin-views/tribe-options-help.php:124
650
+ #, php-format
651
+ msgid ""
652
+ "We've also got a %sModern Tribe UserVoice%s page where we're actively "
653
+ "watching for feature ideas from the community. If after playing with the "
654
+ "plugin and reviewing the resources above, you're finding a feature isn't "
655
+ "present that should be, let us know. Vote up existing feature requests or "
656
+ "add your own, and help us shape the future of the products business in a way "
657
+ "that best meets the community's needs."
658
+ msgstr "Meiltä on myös %sModern Tribe UserVoice%s sivu, jossa aktiivisesti keräämme ideoita ominaisuuksista yhteisöltämme. Jos sinulle tulee lisäosaa käyttäessäsi ideioita uusista ominaisuuksista, kerro meille. Äänestä olemassa olevia ideoita tai lisää omiasi. Näin voimme yhdessä kehittää tuotteita käyttäjien tarpeiden mukaisiksi."
659
+
660
+ #: ../admin-views/tribe-options-help.php:128
661
+ #, php-format
662
+ msgid ""
663
+ "Written documentation can only take things so far...sometimes, you need help "
664
+ "from a real person. This is where our %ssupport forums%s come into play."
665
+ msgstr "Kirjoitettu dokumentaatio voi auttaa vain tietyn matkaa... joskus tarvitset oikean ihmisen apua. Tässä vaiheessa löydät apua meidän on meidän %stukifoorumeiltamme%s."
666
+
667
+ #: ../admin-views/tribe-options-help.php:129
668
+ #, php-format
669
+ msgid ""
670
+ "Users of the free The Events Calendar should post their support concerns to "
671
+ "the plugin's %sWordPress.org support forum%s. While we are happy to help "
672
+ "identify and fix bugs that are reported at WordPress.org, please make sure "
673
+ "to read our %ssupport expectations sticky thread%s before posting so you "
674
+ "understand our limitations."
675
+ msgstr "Ilmaisen The Events Calendar käyttäjien pitäisi lähettää tukipyyntönsä %s WordPress.org tukifoorumeille%s . Vaikka olemme iloisia voidessamme auttaa tunnistamaan ja korjaamaan vikoja, jotka raportoidaan WordPress.org foorumeilla, varmista, että lue %stämä keskustelu%s ennen kirjoittamistasi niin ymmärrät rajoitteemme."
676
+
677
+ #: ../admin-views/tribe-options-help.php:130
678
+ msgid ""
679
+ "We hit the WordPress.org forum throughout the week, watching for bugs. If "
680
+ "you report a legitimate bug that we're able to reproduce, we will log it and "
681
+ "patch for an upcoming release. However we are unfortunately unable to "
682
+ "provide customization tips or assist in integrating with 3rd party plugins "
683
+ "or themes."
684
+ msgstr "Luemme WordPress.org foorumia joka viikkoa, etsien vikoja. Jos ilmoitat oikean vian, jonka pystymme toistamaan, kirjaamme sen ja korjaamme seuraavaan versioon. Emme kuitenkin valitettavasti pysty tarjoamaan räätälöintivinkkejä tai auttamaan muihin lisäosiin tai teemoihin integroinnissa."
685
+
686
+ #: ../admin-views/tribe-options-help.php:131
687
+ #, php-format
688
+ msgid ""
689
+ "If you're a user of The Events Calendar and would like more support, please "
690
+ "%spurchase a PRO license%s. We hit the PRO forums daily, and can provide a "
691
+ "deeper level of customization/integration support for paying users than we "
692
+ "can on WordPress.org."
693
+ msgstr "Jos olet The Events Calendarin käyttäjä ja haluaisint enemmän tukea, ole hyvä ja %s ostaa PRO lisenssi%s . Lueme PRO foorumeita päivittäin, ja voimme tarjota syvemmän tason räätälöinti-/integrointitukea maksaville käyttäjille kuin mitä voimme WordPress.org foorumeilla."
694
+
695
+ #: ../admin-views/tribe-options-help.php:135
696
+ #, php-format
697
+ msgid ""
698
+ "If you find that you aren't getting the level of service you've come to "
699
+ "expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
700
+ "why. We'll do what we can to make it right."
701
+ msgstr "Jos huomaat, että Modern Triben palvelun taso ei vastaa odotuksiasi, lähetä meille sähköpostia osoitteeseen %s tai tweettaa%s ja kerro miksi. Haluamme tehdä parhaamme korjataksemme asian."
702
+
703
+ #: ../admin-views/tribe-options-help.php:136
704
+ msgid "More..."
705
+ msgstr "Lue lisää..."
706
+
707
+ #: ../admin-views/tribe-options-help.php:144
708
+ msgid ""
709
+ "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
710
+ "for installing our labor of love!"
711
+ msgstr "Hi! Olemme Modern Tribe ja olemme täällä auttamassa sinua! Paljon kiitoksia työmme tuloksen asentamisesta!"
712
+
713
+ #: ../admin-views/tribe-options-help.php:150
714
+ msgid "Getting Started"
715
+ msgstr "Aloittaminen"
716
+
717
+ #: ../admin-views/tribe-options-help.php:153
718
+ msgid "Support Resources To Help You Kick Ass"
719
+ msgstr "Tukiresursseja, jotka auttavat sinua"
720
+
721
+ #: ../admin-views/tribe-options-help.php:156
722
+ msgid "Forums: Because Everyone Needs A Buddy"
723
+ msgstr "Foorumit: Koska jokainen tarvitsee kaveria"
724
+
725
+ #: ../admin-views/tribe-options-help.php:159
726
+ msgid "Not getting help?"
727
+ msgstr "Et saada apua?"
728
+
729
+ #: ../admin-views/tribe-options-help.php:169
730
+ #: ../lib/the-events-calendar.class.php:486
731
+ #: ../lib/tribe-settings.class.php:135
732
+ msgid "The Events Calendar"
733
+ msgstr "Tapahtumakalenteri"
734
+
735
+ #: ../admin-views/tribe-options-help.php:173
736
+ msgid "Latest Version:"
737
+ msgstr "Uusin versio:"
738
+
739
+ #: ../admin-views/tribe-options-help.php:174
740
+ msgid "Author:"
741
+ msgstr "Tekijä:"
742
+
743
+ #: ../admin-views/tribe-options-help.php:174
744
+ msgid "Modern Tribe Inc"
745
+ msgstr "Modern Tribe Inc"
746
+
747
+ #: ../admin-views/tribe-options-help.php:175
748
+ msgid "Requires:"
749
+ msgstr "Vaatii:"
750
+
751
+ #: ../admin-views/tribe-options-help.php:175
752
+ msgid "WordPress "
753
+ msgstr "WordPress "
754
+
755
+ #: ../admin-views/tribe-options-help.php:176
756
+ msgid "Wordpress.org Plugin Page"
757
+ msgstr "Wordpress.org lisäosasivu"
758
+
759
+ #: ../admin-views/tribe-options-help.php:181
760
+ msgid "Average Rating"
761
+ msgstr "Keskiarvo"
762
+
763
+ #: ../admin-views/tribe-options-help.php:185
764
+ #, php-format
765
+ msgid "Based on %d rating"
766
+ msgid_plural "Based on %d ratings"
767
+ msgstr[0] "Perustuen %d arvosteluun"
768
+ msgstr[1] "Perustuen %d arvosteluun"
769
+
770
+ #: ../admin-views/tribe-options-help.php:186
771
+ msgid "Give us 5 stars!"
772
+ msgstr "Anna meille 5 tähteä!"
773
+
774
+ #: ../admin-views/tribe-options-help.php:189
775
+ msgid "Premium Add-Ons"
776
+ msgstr "Maksulliset lisäosat"
777
+
778
+ #: ../admin-views/tribe-options-help.php:195
779
+ msgid "(Coming Soon!)"
780
+ msgstr "(Tulossa pian!)"
781
+
782
+ #: ../admin-views/tribe-options-help.php:202
783
+ msgid "News and Tutorials"
784
+ msgstr "Uutiset ja Oppaat"
785
+
786
+ #: ../admin-views/tribe-options-network.php:14
787
+ msgid "Network Settings"
788
+ msgstr "Verkkoasetukset"
789
+
790
+ #: ../admin-views/tribe-options-network.php:18
791
+ msgid ""
792
+ "This is where all of the global network settings for Modern Tribe's The "
793
+ "Events Calendar can be modified."
794
+ msgstr "Täällä voit muokata Modern Triben Tapahtumakalenterin verkkoasetuksia."
795
+
796
+ #: ../admin-views/tribe-options-network.php:26
797
+ msgid "Hide the following settings tabs on every site:"
798
+ msgstr "Piilota seuraavat välilehdet jokaiselle sivulla:"
799
+
800
+ #: ../admin-views/venue-meta-box.php:20
801
+ msgid "Venue Name:"
802
+ msgstr "Tapahtumapaikan nimi:"
803
+
804
+ #: ../admin-views/venue-meta-box.php:27
805
+ #: ../public/advanced-functions/meta.php:371
806
+ msgid "Address:"
807
+ msgstr "Osoite:"
808
+
809
+ #: ../admin-views/venue-meta-box.php:31
810
+ msgid "City:"
811
+ msgstr "Kaupunki:"
812
+
813
+ #: ../admin-views/venue-meta-box.php:35
814
+ msgid "Country:"
815
+ msgstr "Maa:"
816
+
817
+ #: ../admin-views/venue-meta-box.php:73
818
+ msgid "State or Province:"
819
+ msgstr "Osavaltio tai maakunta:"
820
+
821
+ #: ../admin-views/venue-meta-box.php:76
822
+ msgid "Select a State:"
823
+ msgstr "Valitse osavaltio:"
824
+
825
+ #: ../admin-views/venue-meta-box.php:89
826
+ msgid "Postal Code:"
827
+ msgstr "Postinumero:"
828
+
829
+ #: ../admin-views/venue-meta-box.php:112 ../admin-views/venue-meta-box.php:134
830
+ msgid "Show Google Map:"
831
+ msgstr "Näytä Google Map:"
832
+
833
+ #: ../admin-views/venue-meta-box.php:122 ../admin-views/venue-meta-box.php:144
834
+ msgid "Show Google Maps Link:"
835
+ msgstr "Näytä Google Maps linkki:"
836
+
837
+ #: ../admin-views/widget-admin-list.php:11
838
+ msgid "Title:"
839
+ msgstr "Otsikko:"
840
+
841
+ #: ../admin-views/widget-admin-list.php:16
842
+ msgid "Show:"
843
+ msgstr "Näytä:"
844
+
845
+ #: ../admin-views/widget-admin-list.php:24
846
+ msgid "Show widget only if there are upcoming events:"
847
+ msgstr "Näytä vimpain vain, jos siinä on tulevia tapahtumia:"
848
+
849
+ #: ../admin-views/tickets/attendees.php:9 ../admin-views/tickets/list.php:41
850
+ #: ../lib/tickets/tribe-tickets-pro.php:73
851
+ msgid "Attendees"
852
+ msgstr "Osallistujat"
853
+
854
+ #: ../admin-views/tickets/attendees.php:14
855
+ msgid "Event Summary"
856
+ msgstr "Tapahtuman yhteenveto"
857
+
858
+ #: ../admin-views/tickets/attendees.php:22
859
+ msgid "Event Details"
860
+ msgstr "Tapahtuman tiedot"
861
+
862
+ #: ../admin-views/tickets/attendees.php:24
863
+ msgid "Start Date / Time:"
864
+ msgstr "Aloitusajankohta:"
865
+
866
+ #: ../admin-views/tickets/attendees.php:26
867
+ msgid "End Date / Time:"
868
+ msgstr "Lopetusajankohta:"
869
+
870
+ #: ../admin-views/tickets/attendees.php:34
871
+ msgid "Venue:"
872
+ msgstr "Tapahtumapaikka:"
873
+
874
+ #: ../admin-views/tickets/attendees.php:52
875
+ msgid "Ticket Sales"
876
+ msgstr "Lipunmyynti"
877
+
878
+ #: ../admin-views/tickets/attendees.php:64 ../admin-views/tickets/list.php:67
879
+ #, php-format
880
+ msgid "Sold %d"
881
+ msgstr "Myyty %d"
882
+
883
+ #: ../admin-views/tickets/attendees.php:66 ../admin-views/tickets/list.php:69
884
+ #, php-format
885
+ msgid "Sold %d of %d"
886
+ msgstr "Myyty %d / %d"
887
+
888
+ #: ../admin-views/tickets/attendees.php:81
889
+ msgid "Tickets sold:"
890
+ msgstr "Lippuja myyty:"
891
+
892
+ #: ../admin-views/tickets/attendees.php:85
893
+ msgid "Checked in:"
894
+ msgstr "Sisäänkirjautuneet:"
895
+
896
+ #: ../admin-views/tickets/attendees.php:105
897
+ msgid "Send the attendee list by email"
898
+ msgstr "Lähetä osallistujaluettelo sähköpostitse"
899
+
900
+ #: ../admin-views/tickets/attendees.php:109
901
+ msgid "Select a User:"
902
+ msgstr "Valitse käyttäjä:"
903
+
904
+ #: ../admin-views/tickets/attendees.php:110
905
+ msgid "Select..."
906
+ msgstr "Valitse..."
907
+
908
+ #: ../admin-views/tickets/attendees.php:112
909
+ msgid "or"
910
+ msgstr "tai"
911
+
912
+ #: ../admin-views/tickets/attendees.php:114
913
+ msgid "Email Address:"
914
+ msgstr "Sähköpostiosoite:"
915
+
916
+ #: ../admin-views/tickets/list.php:21
917
+ msgid "Edit"
918
+ msgstr "Muokkaa"
919
+
920
+ #: ../admin-views/tickets/list.php:22
921
+ msgid "Delete"
922
+ msgstr "Poista"
923
+
924
+ #: ../admin-views/tickets/list.php:24
925
+ #, php-format
926
+ msgid "Edit in %s"
927
+ msgstr "Muokkaa %s"
928
+
929
+ #: ../admin-views/tickets/list.php:27
930
+ #: ../lib/tribe-admin-events-list.class.php:53
931
+ msgid "View"
932
+ msgstr "Katso"
933
+
934
+ #: ../admin-views/tickets/list.php:41 ../lib/tickets/tribe-tickets-pro.php:73
935
+ msgid "See who purchased tickets to this event"
936
+ msgstr "Katso kuka osti lippuja tähän tapahtumaan"
937
+
938
+ #: ../admin-views/tickets/meta-box.php:21
939
+ msgid ""
940
+ "This event was created using Community Events. Are you sure you want to sell "
941
+ "tickets for it?"
942
+ msgstr "Tämä on yhteisön luoma tapahtuma. Oletko varma, että haluat myydä lippuja siihen?"
943
+
944
+ #: ../admin-views/tickets/meta-box.php:32
945
+ msgid "Upload image for the ticket header"
946
+ msgstr "Lataa kuva lipun otsakkeeseen"
947
+
948
+ #: ../admin-views/tickets/meta-box.php:33
949
+ msgid ""
950
+ "The maximum image size in the email will be 580px wide by any height, and "
951
+ "then scaled for mobile. If you would like \"retina\" support use an image "
952
+ "sized to 1160px wide."
953
+ msgstr "Suurin kuvakoko sähköpostissa on 580 pikseliä (leveys), joka sitten skaalataan mobiililaitteille. Jos haluat\"retina\" tuen lataa 1160 pikseliä leveä kuva."
954
+
955
+ #: ../admin-views/tickets/meta-box.php:36
956
+ msgid "Select an Image"
957
+ msgstr "Valitse kuva"
958
+
959
+ #: ../admin-views/tickets/meta-box.php:44
960
+ msgid "Remove"
961
+ msgstr "Poista"
962
+
963
+ #: ../admin-views/tickets/meta-box.php:62
964
+ #: ../admin-views/tickets/meta-box.php:72
965
+ msgid "Add new ticket"
966
+ msgstr "Lisää uusi lippu"
967
+
968
+ #: ../admin-views/tickets/meta-box.php:73
969
+ msgid "Edit ticket"
970
+ msgstr "Muokkaa lippua"
971
+
972
+ #: ../admin-views/tickets/meta-box.php:79
973
+ msgid "Sell using:"
974
+ msgstr "Myy käyttäen:"
975
+
976
+ #: ../admin-views/tickets/meta-box.php:96
977
+ msgid "Ticket Name:"
978
+ msgstr "Lipun Nimi:"
979
+
980
+ #: ../admin-views/tickets/meta-box.php:103
981
+ msgid "Ticket Description:"
982
+ msgstr "Lipun kuvaus:"
983
+
984
+ #: ../admin-views/tickets/meta-box.php:112
985
+ msgid "Price:"
986
+ msgstr "Hinta:"
987
+
988
+ #: ../admin-views/tickets/meta-box.php:124
989
+ msgid "Start sale:"
990
+ msgstr "Aloita myynti:"
991
+
992
+ #: ../admin-views/tickets/meta-box.php:148
993
+ msgid "End sale:"
994
+ msgstr "Lopeta myynti:"
995
+
996
+ #: ../admin-views/tickets/meta-box.php:170
997
+ msgid ""
998
+ "When will ticket sales occur? If you don't set a start/end date for sales, "
999
+ "tickets will be available from now until the event ends."
1000
+ msgstr "Milloin lipunmyynti tapahtuu? Jos et määritä myynnin aloitus-/päättymispäivää, lippuja on saatavilla tästä hetkestä tapahtuman päättymiseen saakka."
1001
+
1002
+ #: ../lib/the-events-calendar.class.php:491
1003
+ msgid "month"
1004
+ msgstr "kuukausi"
1005
+
1006
+ #: ../lib/the-events-calendar.class.php:492
1007
+ msgid "upcoming"
1008
+ msgstr "tuleva"
1009
+
1010
+ #: ../lib/the-events-calendar.class.php:493
1011
+ msgid "past"
1012
+ msgstr "ohi"
1013
+
1014
+ #: ../lib/the-events-calendar.class.php:495
1015
+ msgid "venue"
1016
+ msgstr "tapahtumapaikka"
1017
+
1018
+ #: ../lib/the-events-calendar.class.php:509
1019
+ #, php-format
1020
+ msgid "Initializing Tribe Events on %s"
1021
+ msgstr "Otetaan käyttöön Tribe Tapahtumat %s"
1022
+
1023
+ #: ../lib/the-events-calendar.class.php:622
1024
+ #, php-format
1025
+ msgid ""
1026
+ "Your version of The Events Calendar is not up-to-date with one of your The "
1027
+ "Events Calendar add-ons. Please %supdate now.%s"
1028
+ msgstr "Versiosi tapahtumakalenterista ei ole ajan tasalla jonkin tapahtumakalenterin lisäosan kanssa. Ole hyvä ja %s päivitä nyt. %s"
1029
+
1030
+ #: ../lib/the-events-calendar.class.php:639
1031
+ #, php-format
1032
+ msgid ""
1033
+ "The following plugins are out of date: <b>%s</b>. All add-ons contain "
1034
+ "dependencies on The Events Calendar and will not function properly unless "
1035
+ "paired with the right version. %sWant to pair an older version%s?"
1036
+ msgstr "Seuraavat lisäosat ovat vanhentuneita: <b> %s </b>. Kaikki lisäosat ovat riippuvaisia tapahtumakalenterista eivätkä toimi kunnolla, ellei käytössä ole oikea versio. %sHaluatko ottaa käyttöön vanhemman version%s ?"
1037
+
1038
+ #: ../lib/the-events-calendar.class.php:703
1039
+ #: ../lib/the-events-calendar.class.php:738
1040
+ #: ../lib/the-events-calendar.class.php:740
1041
+ msgid "Licenses"
1042
+ msgstr "Lisenssit"
1043
+
1044
+ #: ../lib/the-events-calendar.class.php:707
1045
+ #, php-format
1046
+ msgid ""
1047
+ "<p>The license key you received when completing your purchase from %s will "
1048
+ "grant you access to support and updates until it expires. You do not need to "
1049
+ "enter the key below for the plugins to work, but you will need to enter it "
1050
+ "to get automatic updates. <strong>Find your license keys at <a href=\"%s\" "
1051
+ "target=\"_blank\">%s</a></strong>.</p> <p>Each paid add-on has its own "
1052
+ "unique license key. Simply paste the key into its appropriate field on "
1053
+ "below, and give it a moment to validate. You know you're set when a green "
1054
+ "expiration date appears alongside a \"valid\" message.</p> <p>If you're "
1055
+ "seeing a red message telling you that your key isn't valid or is out of "
1056
+ "installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your "
1057
+ "installs or renew / upgrade your license.</p><p>Not seeing an update but "
1058
+ "expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> "
1059
+ "and click \"Check Again\".</p>"
1060
+ msgstr "<p>Oston yhteydessä %s saamasi lisenssiavain myöntää sinulle pääsyn tukeen ja päivityksiin sen voimassaolon aikana. Sinun ei tarvitse syöttää lisenssiavainta lisäosan toimintaa varten, mutta sinun täytyy syöttää se saadaksesi automaattisia päivityksiä. <strong>Löydät lisenssiavaimesi <a href=\"%s\" target=\"_blank\"> %s </a> </strong>. </p><p>Jokaisella maksullisella lisäosalla on oma ainutlaatuinen lisenssiavain. Liitä avain sopivaan alla olevaan kenttään, ja odota hetki sen vahvistamista. Lisenssi on käytössä, kun vihreä voimassaoloaika näkyy\"voimassa\" viestin rinnalla. </p><p> Jos näet punaisen viestin joka kertoo, että avain ei ole voimassa tai asennukset ovat täynnnä, vieraile <a href=\"%s\"target=\"_blank\"> %s </a> hallitsesi asennuksita tai uudistaaksesi/päivittääksesi lisenssisi. </p> Et näe päivitystä vaikka sellainen pitäisi ollai? Mene WordPressissa <a href=\"%s\"> Hallintapaneeli > Päivitykset </a> ja klikkaa\"Tarkista uudelleen\". </p>"
1061
+
1062
+ #: ../lib/the-events-calendar.class.php:730
1063
+ msgid "General"
1064
+ msgstr "Yleinen"
1065
+
1066
+ #: ../lib/the-events-calendar.class.php:731
1067
+ msgid "Display"
1068
+ msgstr "Näyttäminen"
1069
+
1070
+ #: ../lib/the-events-calendar.class.php:782
1071
+ #, php-format
1072
+ msgid ""
1073
+ "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
1074
+ "your WordPress install."
1075
+ msgstr "Anteeksi, Tapahtumakalenteri vaatii WordPress version %s tai uudemman. Päivitä WordPress asennus."
1076
+
1077
+ #: ../lib/the-events-calendar.class.php:785
1078
+ #, php-format
1079
+ msgid ""
1080
+ "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
1081
+ "about moving you to a newer version of PHP."
1082
+ msgstr "Anteeksi, tapahtumakalenteri vaatii PHP version %s tai uudemman. Keskustele palveluntarjoajasi kanssa uudemmasta PHP versiosta."
1083
+
1084
+ #: ../lib/the-events-calendar.class.php:1000 ../lib/widget-list.class.php:151
1085
+ #: ../public/template-tags/loop.php:137
1086
+ msgid "Upcoming Events"
1087
+ msgstr "Tulevat tapahtumat"
1088
+
1089
+ #: ../lib/the-events-calendar.class.php:1003
1090
+ #: ../public/template-tags/loop.php:165
1091
+ msgid "Past Events"
1092
+ msgstr "Menneet tapahtumat"
1093
+
1094
+ #: ../lib/the-events-calendar.class.php:1008
1095
+ #: ../lib/the-events-calendar.class.php:1015
1096
+ #, php-format
1097
+ msgid "Events for %s"
1098
+ msgstr "Tapahtumat %s"
1099
+
1100
+ #: ../lib/the-events-calendar.class.php:1010
1101
+ msgid "Events this month"
1102
+ msgstr "Tapahtumat tässä kuussa"
1103
+
1104
+ #: ../lib/the-events-calendar.class.php:1022
1105
+ #, php-format
1106
+ msgid "Events at %s"
1107
+ msgstr "Tapahtumat %s"
1108
+
1109
+ #: ../lib/the-events-calendar.class.php:1041
1110
+ msgid "No description has been entered for this event."
1111
+ msgstr "Tapahtumalle ei ole lisätty kuvausta."
1112
+
1113
+ #: ../lib/the-events-calendar.class.php:1303
1114
+ msgid "category"
1115
+ msgstr "kategoria"
1116
+
1117
+ #: ../lib/the-events-calendar.class.php:1313
1118
+ msgid "tag"
1119
+ msgstr "tagi"
1120
+
1121
+ #: ../lib/the-events-calendar.class.php:1340
1122
+ #: ../lib/the-events-calendar.class.php:3820
1123
+ #: ../lib/the-events-calendar.class.php:3880
1124
+ msgid "Events"
1125
+ msgstr "Tapahtumat"
1126
+
1127
+ #: ../lib/the-events-calendar.class.php:1341
1128
+ msgid "Event"
1129
+ msgstr "Tapahtuma"
1130
+
1131
+ #: ../lib/the-events-calendar.class.php:1342
1132
+ #: ../lib/the-events-calendar.class.php:1355
1133
+ #: ../lib/the-events-calendar.class.php:1368
1134
+ msgid "Add New"
1135
+ msgstr "Lisää uusi"
1136
+
1137
+ #: ../lib/the-events-calendar.class.php:1343
1138
+ msgid "Add New Event"
1139
+ msgstr "Lisää uusi tapahtuma"
1140
+
1141
+ #: ../lib/the-events-calendar.class.php:1344
1142
+ msgid "Edit Event"
1143
+ msgstr "Muokkaa tapahtumaa"
1144
+
1145
+ #: ../lib/the-events-calendar.class.php:1345
1146
+ msgid "New Event"
1147
+ msgstr "Uusi tapahtuma"
1148
+
1149
+ #: ../lib/the-events-calendar.class.php:1346
1150
+ msgid "View Event"
1151
+ msgstr "Katso tapahtuma"
1152
+
1153
+ #: ../lib/the-events-calendar.class.php:1347
1154
+ msgid "Search Events"
1155
+ msgstr "Hae tapahtumia"
1156
+
1157
+ #: ../lib/the-events-calendar.class.php:1348
1158
+ msgid "No events found"
1159
+ msgstr "Tapahtumia ei löytynyt"
1160
+
1161
+ #: ../lib/the-events-calendar.class.php:1349
1162
+ msgid "No events found in Trash"
1163
+ msgstr "Ei tapahtumia roskakorissa"
1164
+
1165
+ #: ../lib/the-events-calendar.class.php:1353
1166
+ #: ../lib/the-events-calendar.class.php:1465
1167
+ msgid "Venues"
1168
+ msgstr "Tapahtumapaikat"
1169
+
1170
+ #: ../lib/the-events-calendar.class.php:1354
1171
+ #: ../public/advanced-functions/meta.php:331 ../views/tickets/email.php:343
1172
+ msgid "Venue"
1173
+ msgstr "Tapahtumapaikka"
1174
+
1175
+ #: ../lib/the-events-calendar.class.php:1356
1176
+ msgid "Add New Venue"
1177
+ msgstr "Lisää uusi paikka"
1178
+
1179
+ #: ../lib/the-events-calendar.class.php:1357
1180
+ msgid "Edit Venue"
1181
+ msgstr "Muokkaa paikkaa"
1182
+
1183
+ #: ../lib/the-events-calendar.class.php:1358
1184
+ msgid "New Venue"
1185
+ msgstr "Uusi paikka"
1186
+
1187
+ #: ../lib/the-events-calendar.class.php:1359
1188
+ msgid "View Venue"
1189
+ msgstr "Näytä paikka"
1190
+
1191
+ #: ../lib/the-events-calendar.class.php:1360
1192
+ msgid "Search Venues"
1193
+ msgstr "Etsi tapahtumapaikoista"
1194
+
1195
+ #: ../lib/the-events-calendar.class.php:1361
1196
+ msgid "No venue found"
1197
+ msgstr "Paikkaa ei löytynyt"
1198
+
1199
+ #: ../lib/the-events-calendar.class.php:1362
1200
+ msgid "No venues found in Trash"
1201
+ msgstr "Roskakorissa ei ole tapahtumapaikkoja"
1202
+
1203
+ #: ../lib/the-events-calendar.class.php:1366
1204
+ #: ../lib/the-events-calendar.class.php:1466
1205
+ msgid "Organizers"
1206
+ msgstr "Järjestäjät"
1207
+
1208
+ #: ../lib/the-events-calendar.class.php:1367
1209
+ #: ../public/advanced-functions/meta.php:393 ../views/tickets/email.php:362
1210
+ msgid "Organizer"
1211
+ msgstr "Järjestäjä"
1212
+
1213
+ #: ../lib/the-events-calendar.class.php:1369
1214
+ msgid "Add New Organizer"
1215
+ msgstr "Lisää uusi järjestäjä"
1216
+
1217
+ #: ../lib/the-events-calendar.class.php:1370
1218
+ msgid "Edit Organizer"
1219
+ msgstr "Muokkaa järjestäjää"
1220
+
1221
+ #: ../lib/the-events-calendar.class.php:1371
1222
+ msgid "New Organizer"
1223
+ msgstr "Uusi järjestäjä"
1224
+
1225
+ #: ../lib/the-events-calendar.class.php:1372
1226
+ msgid "View Organizer"
1227
+ msgstr "Näytä järjestäjä"
1228
+
1229
+ #: ../lib/the-events-calendar.class.php:1373
1230
+ msgid "Search Organizers"
1231
+ msgstr "Etsi järjestäjistä"
1232
+
1233
+ #: ../lib/the-events-calendar.class.php:1374
1234
+ msgid "No organizer found"
1235
+ msgstr "Järjestäjää ei löytynyt"
1236
+
1237
+ #: ../lib/the-events-calendar.class.php:1375
1238
+ msgid "No organizers found in Trash"
1239
+ msgstr "Roskakorissa ei ole järjestäjiä"
1240
+
1241
+ #: ../lib/the-events-calendar.class.php:1379
1242
+ #: ../lib/tribe-admin-events-list.class.php:217
1243
+ msgid "Event Categories"
1244
+ msgstr "Tapahtumaluokat"
1245
+
1246
+ #: ../lib/the-events-calendar.class.php:1380
1247
+ #: ../public/template-tags/general.php:276
1248
+ msgid "Event Category"
1249
+ msgstr "Tapahtumaluokka"
1250
+
1251
+ #: ../lib/the-events-calendar.class.php:1381
1252
+ msgid "Search Event Categories"
1253
+ msgstr "Etsi tapahtumaluokista"
1254
+
1255
+ #: ../lib/the-events-calendar.class.php:1382
1256
+ msgid "All Event Categories"
1257
+ msgstr "Kaikki tapahtumaluokat"
1258
+
1259
+ #: ../lib/the-events-calendar.class.php:1383
1260
+ msgid "Parent Event Category"
1261
+ msgstr "Ylempi tapahtumaluokka"
1262
+
1263
+ #: ../lib/the-events-calendar.class.php:1384
1264
+ msgid "Parent Event Category:"
1265
+ msgstr "Ylempi tapahtumaluokka:"
1266
+
1267
+ #: ../lib/the-events-calendar.class.php:1385
1268
+ msgid "Edit Event Category"
1269
+ msgstr "Muokkaa tapahtumaluokkaa"
1270
+
1271
+ #: ../lib/the-events-calendar.class.php:1386
1272
+ msgid "Update Event Category"
1273
+ msgstr "Päivitä tapahtumaluokka"
1274
+
1275
+ #: ../lib/the-events-calendar.class.php:1387
1276
+ msgid "Add New Event Category"
1277
+ msgstr "Lisää uusi tapahtumaluokka"
1278
+
1279
+ #: ../lib/the-events-calendar.class.php:1388
1280
+ msgid "New Event Category Name"
1281
+ msgstr "Uuden tapahtumaluokan nimi"
1282
+
1283
+ #: ../lib/the-events-calendar.class.php:1404
1284
+ #, php-format
1285
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1286
+ msgstr "Tapahtuma päivitetty. <a href=\"%s\"> Näytä tapahtuma</a>"
1287
+
1288
+ #: ../lib/the-events-calendar.class.php:1405
1289
+ #: ../lib/the-events-calendar.class.php:1422
1290
+ #: ../lib/the-events-calendar.class.php:1439
1291
+ msgid "Custom field updated."
1292
+ msgstr "Mukauttu kenttä päivitetty."
1293
+
1294
+ #: ../lib/the-events-calendar.class.php:1406
1295
+ #: ../lib/the-events-calendar.class.php:1423
1296
+ #: ../lib/the-events-calendar.class.php:1440
1297
+ msgid "Custom field deleted."
1298
+ msgstr "Mukautettu kenttä poistettu."
1299
+
1300
+ #: ../lib/the-events-calendar.class.php:1407
1301
+ msgid "Event updated."
1302
+ msgstr "Tapahtuma päivitetty."
1303
+
1304
+ #: ../lib/the-events-calendar.class.php:1409
1305
+ #, php-format
1306
+ msgid "Event restored to revision from %s"
1307
+ msgstr "Tapahtuma palautettu versioon %s"
1308
+
1309
+ #: ../lib/the-events-calendar.class.php:1410
1310
+ #, php-format
1311
+ msgid "Event published. <a href=\"%s\">View event</a>"
1312
+ msgstr "Tapahtuma julkaistu. <a href=\"%s\">Näytä tapahtuma</a>"
1313
+
1314
+ #: ../lib/the-events-calendar.class.php:1411
1315
+ msgid "Event saved."
1316
+ msgstr "Tapahtuma tallennettu."
1317
+
1318
+ #: ../lib/the-events-calendar.class.php:1412
1319
+ #, php-format
1320
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1321
+ msgstr "Tapahtuma lisätty. <a target=\"_blank\" href=\"%s\">Esikatsele tapahtumaa</a>"
1322
+
1323
+ #: ../lib/the-events-calendar.class.php:1413
1324
+ #, php-format
1325
+ msgid ""
1326
+ "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1327
+ "\">Preview event</a>"
1328
+ msgstr "Tapahtuma ajoitettu: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\"> Esikatsele tapahtumaa</a>"
1329
+
1330
+ #: ../lib/the-events-calendar.class.php:1415
1331
+ #: ../lib/the-events-calendar.class.php:1432
1332
+ #: ../lib/the-events-calendar.class.php:1449
1333
+ msgid "M j, Y @ G:i"
1334
+ msgstr "j.M.Y @ G:i"
1335
+
1336
+ #: ../lib/the-events-calendar.class.php:1416
1337
+ #, php-format
1338
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1339
+ msgstr "Tapahtuma luonnos päivitetty. <a target=\"_blank\" href=\"%s\"> Esikatselu tapahtuma </a>"
1340
+
1341
+ #: ../lib/the-events-calendar.class.php:1421
1342
+ #, php-format
1343
+ msgid "Venue updated. <a href=\"%s\">View venue</a>"
1344
+ msgstr "Tapahtumapaikka päivitetty. <a href=\"%s\"> Näytä paikka </a>"
1345
+
1346
+ #: ../lib/the-events-calendar.class.php:1424
1347
+ msgid "Venue updated."
1348
+ msgstr "Tapahtumapaikka päivitetty."
1349
+
1350
+ #: ../lib/the-events-calendar.class.php:1426
1351
+ #, php-format
1352
+ msgid "Venue restored to revision from %s"
1353
+ msgstr "Tapahtumapaikka palatettu versioon %s"
1354
+
1355
+ #: ../lib/the-events-calendar.class.php:1427
1356
+ #, php-format
1357
+ msgid "Venue published. <a href=\"%s\">View venue</a>"
1358
+ msgstr "Tapahtumapaikka julkaistu. <a href=\"%s\">Näytä paikka</a>"
1359
+
1360
+ #: ../lib/the-events-calendar.class.php:1428
1361
+ msgid "Venue saved."
1362
+ msgstr "Tapahtumapaikka tallennettu."
1363
+
1364
+ #: ../lib/the-events-calendar.class.php:1429
1365
+ #, php-format
1366
+ msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1367
+ msgstr "Tapahtumapaikka lisätty. <a target=\"_blank\" href=\"%s\">Esikatsele paikkaa</a>"
1368
+
1369
+ #: ../lib/the-events-calendar.class.php:1430
1370
+ #, php-format
1371
+ msgid ""
1372
+ "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1373
+ "\">Preview venue</a>"
1374
+ msgstr "Tapahtumapaikka ajastettu: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\"> Esikatsele paikkaa</a>"
1375
+
1376
+ #: ../lib/the-events-calendar.class.php:1433
1377
+ #, php-format
1378
+ msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1379
+ msgstr "Tapahtumapaikan luonnos päivitetty. <a target=\"_blank\" href=\"%s\">Esikatsele paikkaa</a>"
1380
+
1381
+ #: ../lib/the-events-calendar.class.php:1438
1382
+ #, php-format
1383
+ msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1384
+ msgstr "Järjestäjä päivitetty. <a href=\"%s\">Näytä järjestäjä</a>"
1385
+
1386
+ #: ../lib/the-events-calendar.class.php:1441
1387
+ msgid "Organizer updated."
1388
+ msgstr "Järjestäjä päivitetty."
1389
+
1390
+ #: ../lib/the-events-calendar.class.php:1443
1391
+ #, php-format
1392
+ msgid "Organizer restored to revision from %s"
1393
+ msgstr "Järjestäjä palautettu versioon %s"
1394
+
1395
+ #: ../lib/the-events-calendar.class.php:1444
1396
+ #, php-format
1397
+ msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1398
+ msgstr "Järjestäjä julkaistu. <a href=\"%s\">Näytä järjestäjä</a>"
1399
+
1400
+ #: ../lib/the-events-calendar.class.php:1445
1401
+ msgid "Organizer saved."
1402
+ msgstr "Järjestäjä tallennettu."
1403
+
1404
+ #: ../lib/the-events-calendar.class.php:1446
1405
+ #, php-format
1406
+ msgid ""
1407
+ "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1408
+ msgstr "Järjestäjä lisätty. <a target=\"_blank\" href=\"%s\">Esikatsele järjestäjää</a>"
1409
+
1410
+ #: ../lib/the-events-calendar.class.php:1447
1411
+ #, php-format
1412
+ msgid ""
1413
+ "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
1414
+ "\"%2$s\">Preview organizer</a>"
1415
+ msgstr "Järjestäjä ajastettu: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\"> Esikatsele järjestäjää</a>"
1416
+
1417
+ #: ../lib/the-events-calendar.class.php:1450
1418
+ #, php-format
1419
+ msgid ""
1420
+ "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
1421
+ "a>"
1422
+ msgstr "Järjestäjän luonnos päivitetty. <a target=\"_blank\" href=\"%s\">Esikatsele järjestäjää</a>"
1423
+
1424
+ #: ../lib/the-events-calendar.class.php:1491
1425
+ msgid "Use Saved Venue:"
1426
+ msgstr "Käytä tallennettua paikkaa:"
1427
+
1428
+ #: ../lib/the-events-calendar.class.php:1520
1429
+ msgid "Use Saved Organizer:"
1430
+ msgstr "Käytä tallennettua järjestäjää:"
1431
+
1432
+ #: ../lib/the-events-calendar.class.php:1556
1433
+ msgid "Use New Venue"
1434
+ msgstr "Käytä uutta paikkaa"
1435
+
1436
+ #: ../lib/the-events-calendar.class.php:1558
1437
+ msgid "My Venues"
1438
+ msgstr "Omat paikat"
1439
+
1440
+ #: ../lib/the-events-calendar.class.php:1563
1441
+ msgid "Available Venues"
1442
+ msgstr "Käytettävissä olevat paikat"
1443
+
1444
+ #: ../lib/the-events-calendar.class.php:1574
1445
+ msgid "No saved venue exists."
1446
+ msgstr "Ei tallennettuja paikkoja."
1447
+
1448
+ #: ../lib/the-events-calendar.class.php:1608
1449
+ msgid "Use New Organizer"
1450
+ msgstr "Käytä uutta järjestäjää"
1451
+
1452
+ #: ../lib/the-events-calendar.class.php:1610
1453
+ msgid "My Organizers"
1454
+ msgstr "Omat järjestäjät"
1455
+
1456
+ #: ../lib/the-events-calendar.class.php:1615
1457
+ msgid "Available Organizers"
1458
+ msgstr "Käytettävissä olevat järjestäjät"
1459
+
1460
+ #: ../lib/the-events-calendar.class.php:1626
1461
+ msgid "No saved organizer exists."
1462
+ msgstr "Ei tallennettuja järjestäjiä."
1463
+
1464
+ #: ../lib/the-events-calendar.class.php:1753
1465
+ msgid "Next"
1466
+ msgstr "Seuraava"
1467
+
1468
+ #: ../lib/the-events-calendar.class.php:1754
1469
+ msgid "Prev"
1470
+ msgstr "Edellinen"
1471
+
1472
+ #: ../lib/the-events-calendar.class.php:1755
1473
+ msgid "Today"
1474
+ msgstr "Tänään"
1475
+
1476
+ #: ../lib/the-events-calendar.class.php:1756
1477
+ msgid "Done"
1478
+ msgstr "Tehty"
1479
+
1480
+ #: ../lib/the-events-calendar.class.php:1965
1481
+ msgid "Network"
1482
+ msgstr "Verkko"
1483
+
1484
+ #: ../lib/the-events-calendar.class.php:2902
1485
+ msgid "Unnamed Venue"
1486
+ msgstr "Nimeämätön paikka"
1487
+
1488
+ #: ../lib/the-events-calendar.class.php:2992
1489
+ msgid "Unnamed Organizer"
1490
+ msgstr "Nimeämätön Järjestäjä"
1491
+
1492
+ #: ../lib/the-events-calendar.class.php:3467
1493
+ msgid "Event Options"
1494
+ msgstr "Tapahtuman asetukset"
1495
+
1496
+ #: ../lib/the-events-calendar.class.php:3469
1497
+ msgid "Venue Information"
1498
+ msgstr "Tapahtumapaikan tiedot"
1499
+
1500
+ #: ../lib/the-events-calendar.class.php:3474
1501
+ msgid "Organizer Information"
1502
+ msgstr "Järjestäjän tiedot"
1503
+
1504
+ #: ../lib/the-events-calendar.class.php:3669
1505
+ msgid "Support"
1506
+ msgstr "Tuki"
1507
+
1508
+ #: ../lib/the-events-calendar.class.php:3672
1509
+ msgid "View All Add-Ons"
1510
+ msgstr "Näytä kaikki lisäosat"
1511
+
1512
+ #: ../lib/the-events-calendar.class.php:3689
1513
+ msgid "News from Modern Tribe"
1514
+ msgstr "Uutisia Modern Tribelta"
1515
+
1516
+ #: ../lib/the-events-calendar.class.php:3770
1517
+ msgid "Additional Functionality"
1518
+ msgstr "Lisätoiminnot"
1519
+
1520
+ #: ../lib/the-events-calendar.class.php:3775
1521
+ msgid ""
1522
+ "Looking for additional functionality including recurring events, ticket "
1523
+ "sales, publicly submitted events, new views and more?"
1524
+ msgstr "Etsitkö lisätoimintoja kuten toistuvia tapahtumia, lipunmyyntiä, uusia näkymiä ja enemmän?"
1525
+
1526
+ #: ../lib/the-events-calendar.class.php:3775
1527
+ #, php-format
1528
+ msgid "Check out the <a href=\"%s\">available add-ons</a>."
1529
+ msgstr "Tutustu <a href=\"%s\">saatavilla oleviin lisäosiin</a>."
1530
+
1531
+ #: ../lib/the-events-calendar.class.php:3846
1532
+ #: ../lib/the-events-calendar.class.php:3937
1533
+ msgid "View Calendar"
1534
+ msgstr "Näytä kalenteri"
1535
+
1536
+ #: ../lib/the-events-calendar.class.php:3854
1537
+ msgid "Add Event"
1538
+ msgstr "Lisää tapahtuma"
1539
+
1540
+ #: ../lib/the-events-calendar.class.php:3863
1541
+ msgid "Edit Events"
1542
+ msgstr "Muokkaa tapahtumia"
1543
+
1544
+ #: ../lib/the-events-calendar.class.php:3872
1545
+ #: ../lib/the-events-calendar.class.php:3973
1546
+ #: ../lib/tribe-settings.class.php:164
1547
+ msgid "Settings"
1548
+ msgstr "Asetukset"
1549
+
1550
+ #: ../lib/the-events-calendar.class.php:3908
1551
+ #, php-format
1552
+ msgid ""
1553
+ "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
1554
+ "change the events slug, visit %sEvents -> Settings%s."
1555
+ msgstr "Tervetuloa Tapahtumakalenteriin! Tapahtumakalenterisi löytyy osoitteesta %s . Jos haluat muuttaa tapahtumien osoitetta mene %sEvents -> Asetukset%s ."
1556
+
1557
+ #: ../lib/the-events-calendar.class.php:3974
1558
+ msgid "Calendar"
1559
+ msgstr "Kalenteri"
1560
+
1561
+ #: ../lib/the-events-calendar.class.php:4037
1562
+ msgid "List"
1563
+ msgstr "Lista"
1564
+
1565
+ #: ../lib/the-events-calendar.class.php:4048
1566
+ msgid "Month"
1567
+ msgstr "Kuukausi"
1568
+
1569
+ #: ../lib/the-events-calendar.class.php:4088
1570
+ msgid "Date"
1571
+ msgstr "Päivämäärä"
1572
+
1573
+ #: ../lib/the-events-calendar.class.php:4091
1574
+ msgid "Events In"
1575
+ msgstr "Tapahtumia"
1576
+
1577
+ #: ../lib/the-events-calendar.class.php:4093
1578
+ msgid "Events From"
1579
+ msgstr "Tapahtumia"
1580
+
1581
+ #: ../lib/the-events-calendar.class.php:4276 ../views/list/nav.php:22
1582
+ #: ../views/list/nav.php:28 ../views/list/nav.php:31
1583
+ msgid "&laquo; Previous Events"
1584
+ msgstr "&laquo; Edelliset tapahtumat"
1585
+
1586
+ #: ../lib/the-events-calendar.class.php:4277 ../views/list/nav.php:40
1587
+ #: ../views/list/nav.php:43 ../views/list/nav.php:49
1588
+ msgid "Next Events &raquo;"
1589
+ msgstr "Seuraavat tapahtumat &raquo;"
1590
+
1591
+ #: ../lib/tribe-admin-events-list.class.php:53
1592
+ #, php-format
1593
+ msgid "View &#8220;%s&#8221;"
1594
+ msgstr "Katso “%s”"
1595
+
1596
+ #: ../lib/tribe-admin-events-list.class.php:222
1597
+ msgid "Start Date"
1598
+ msgstr "Aloituspäivä"
1599
+
1600
+ #: ../lib/tribe-admin-events-list.class.php:223
1601
+ msgid "End Date"
1602
+ msgstr "Päättymispäivä"
1603
+
1604
+ #: ../lib/tribe-admin-events-list.class.php:225
1605
+ msgid "Recurring?"
1606
+ msgstr "Toistuva?"
1607
+
1608
+ #: ../lib/tribe-admin-events-list.class.php:282
1609
+ #: ../lib/tickets/tribe-tickets-pro.php:229
1610
+ msgid "Yes"
1611
+ msgstr "Kyllä"
1612
+
1613
+ #: ../lib/tribe-admin-events-list.class.php:282
1614
+ msgid "No"
1615
+ msgstr "Ei"
1616
+
1617
+ #: ../lib/tribe-admin-events-list.class.php:360
1618
+ #, php-format
1619
+ msgid "All %s"
1620
+ msgstr "Kaikki %s"
1621
+
1622
+ #: ../lib/tribe-app-shop.class.php:62 ../lib/tribe-app-shop.class.php:63
1623
+ #: ../lib/tribe-app-shop.class.php:84
1624
+ msgid "Event Add-Ons"
1625
+ msgstr "Tapahtuma-lisäosat"
1626
+
1627
+ #: ../lib/tribe-debug-bar.class.php:29
1628
+ msgid "Tribe"
1629
+ msgstr "Tribe"
1630
+
1631
+ #: ../lib/tribe-event-api.class.php:372 ../lib/tribe-view-helpers.class.php:44
1632
+ #: ../public/template-tags/venue.php:240
1633
+ msgid "United States"
1634
+ msgstr "Yhdysvallat"
1635
+
1636
+ #: ../lib/tribe-event-exception.class.php:17
1637
+ #: ../lib/tribe-event-exception.class.php:34
1638
+ msgid "Error"
1639
+ msgstr "Virhe"
1640
+
1641
+ #: ../lib/tribe-field.class.php:161
1642
+ msgid "Invalid field type specified"
1643
+ msgstr "Virheellinen kentän tyyppi"
1644
+
1645
+ #: ../lib/tribe-field.class.php:414
1646
+ msgid "No radio options specified"
1647
+ msgstr "Ei valintanapin asetuksia määritettynä"
1648
+
1649
+ #: ../lib/tribe-field.class.php:451
1650
+ msgid "No checkbox options specified"
1651
+ msgstr "Ei valintaruudun asetuksia määritettynä"
1652
+
1653
+ #: ../lib/tribe-field.class.php:505
1654
+ msgid "No select options specified"
1655
+ msgstr "Ei monivalinnan asetuksia määritettynä"
1656
+
1657
+ #: ../lib/tribe-settings-tab.class.php:219
1658
+ msgid "There are no fields setup for this tab yet."
1659
+ msgstr "Tällä välilehdellä ei ole vielä kenttiä"
1660
+
1661
+ #: ../lib/tribe-settings.class.php:164 ../lib/tribe-settings.class.php:176
1662
+ msgid "The Events Calendar Settings"
1663
+ msgstr "Tapahtumakalenterin asetukset"
1664
+
1665
+ #: ../lib/tribe-settings.class.php:176
1666
+ msgid "Events Settings"
1667
+ msgstr "Tapahtumien asetukset"
1668
+
1669
+ #: ../lib/tribe-settings.class.php:225
1670
+ #, php-format
1671
+ msgid "%s Settings"
1672
+ msgstr "%s asetukset"
1673
+
1674
+ #: ../lib/tribe-settings.class.php:239
1675
+ msgid "You've requested a non-existent tab."
1676
+ msgstr "Välilehteä ei ole olemassa."
1677
+
1678
+ #: ../lib/tribe-settings.class.php:247
1679
+ msgid " Save Changes"
1680
+ msgstr " Tallenna muutokset"
1681
+
1682
+ #: ../lib/tribe-settings.class.php:299
1683
+ msgid "You don't have permission to do that."
1684
+ msgstr "Sinulla ei ole lupaa tehdä tätä."
1685
+
1686
+ #: ../lib/tribe-settings.class.php:305
1687
+ msgid "The request was sent insecurely."
1688
+ msgstr "Pyyntö lähetettiin suojaamattomana."
1689
+
1690
+ #: ../lib/tribe-settings.class.php:311
1691
+ msgid "The request wasn't sent from this tab."
1692
+ msgstr "Pyyntöä ei lähetetty tältä välilehdeltä."
1693
+
1694
+ #: ../lib/tribe-settings.class.php:476
1695
+ msgid "Your form had the following errors:"
1696
+ msgstr "Lomakkeessa oli seuraavat virheet:"
1697
+
1698
+ #: ../lib/tribe-settings.class.php:485
1699
+ msgid "None of your settings were saved. Please try again."
1700
+ msgstr "Asetuksia ei tallennettu. Ole hyvä ja yritä uudelleen."
1701
+
1702
+ #: ../lib/tribe-settings.class.php:485
1703
+ msgid ""
1704
+ "The above setting was not saved. Other settings were successfully saved."
1705
+ msgid_plural ""
1706
+ "The above settings were not saved. Other settings were successfully saved."
1707
+ msgstr[0] "Edellä olevaa asetusta ei tallennettu. Muiden asetusten tallennus onnistui."
1708
+ msgstr[1] "Edellä olevaa asetusta ei tallennettu. Muiden asetusten tallennus onnistui."
1709
+
1710
+ #: ../lib/tribe-settings.class.php:509
1711
+ msgid "Settings saved."
1712
+ msgstr "Asetukset tallennettu."
1713
+
1714
+ #: ../lib/tribe-template-factory.class.php:225
1715
+ #, php-format
1716
+ msgid "There were no results found for <strong>\"%s\"</strong>."
1717
+ msgstr "Ei tuloksia haulle <strong>\"%s\"</strong>."
1718
+
1719
+ #: ../lib/tribe-template-factory.class.php:235
1720
+ #, php-format
1721
+ msgid ""
1722
+ "listed under %s. Check out past events for this category or view the full "
1723
+ "calendar."
1724
+ msgstr "Luokassa %s . Tutustu luokan menneisiin tapahtumiin tai katso koko kalenteri."
1725
+
1726
+ #: ../lib/tribe-template-factory.class.php:237
1727
+ #, php-format
1728
+ msgid ""
1729
+ "listed under %s. Check out upcoming events for this category or view the "
1730
+ "full calendar."
1731
+ msgstr "Luokassa %s. Tutustu tämän luokan tuleviin tapahtumiin tai katso koko kalenteri."
1732
+
1733
+ #: ../lib/tribe-template-factory.class.php:241
1734
+ #, php-format
1735
+ msgid "No events scheduled for <strong>%s</strong>. Please try another day."
1736
+ msgstr "Ei tapahtumia päivälle <strong>%s</strong>. Yritä toista päivää."
1737
+
1738
+ #: ../lib/tribe-template-factory.class.php:245
1739
+ msgid "No upcoming events "
1740
+ msgstr "Ei tulevia tapahtumia "
1741
+
1742
+ #: ../lib/tribe-template-factory.class.php:247
1743
+ msgid "No matching events "
1744
+ msgstr "Ei sopivia tapahtumia "
1745
+
1746
+ #: ../lib/tribe-template-factory.class.php:250
1747
+ msgid "No previous events "
1748
+ msgstr "Ei menneitä tapahtumia "
1749
+
1750
+ #: ../lib/tribe-the-events-calendar-import.class.php:64
1751
+ #, php-format
1752
+ msgid ""
1753
+ "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure "
1754
+ "you have backed up before proceeding any further. You can easily <a href=\"%s"
1755
+ "\">revert to an old version</a> if you want to backup first. This upgrade "
1756
+ "includes two major steps, <a href=\"%s\">migrating data</a> &amp; updating "
1757
+ "your templates as necessary. There have been significant changes to the "
1758
+ "template tags and functions. Check out our <a href=\"%s\">walk-through on "
1759
+ "the upgrade</a> before proceeding and check out the FAQ &amp; Knowledge base "
1760
+ "from the <a href=\"%s\">support page</a>. If you're new to The Events "
1761
+ "Calendar, you may want to review our <a href=\"%s\">new user primer</a>.<br/"
1762
+ "><br/> You have events that need to be migrated. Please visit the bottom of "
1763
+ "the <a href=\"%s\">settings page</a> to perform the migration."
1764
+ msgstr "Tervetuloa versioon 2.0! Tämä on valtava päivitys versiosta 1.6.5. Varmista, että olet varmuuskopioinut ennen jatkamista. Voit helposti <a href=\"%s\"> palauttaa vanhan version </a>, jos haluat varmuuskopioida ensin. Tämä päivitys sisältää kaksi vaihetta, <a href=\"%s\"> tietojen siirtäminen </a> ja pohjien päivitys. Lisäosaan on tullut merkittäviä muutoksia. Tutustu <a href=\"%s\">päivityksen tietoihin</a> ennen kuin jatkat ja tutustu FAQ ja Knowledge Base <a href=\"%s\"tukisivuilla</a>. Jos olet uusi käyttäjä, haluat ehkä tarkastella <a href=\"%s\">uuden käyttäjän opasta</a>. <br/> Sinulla on tapahtumia, jotka täytyy siirtää. Käy<a href=\"%s\">asetussivun</a> alareunassa tekemässä siirto."
1765
+
1766
+ #: ../lib/tribe-the-events-calendar-import.class.php:86
1767
+ msgid "Upgrade from The Events Calendar"
1768
+ msgstr "Päivitä The Events Calendar -lisäosasta"
1769
+
1770
+ #: ../lib/tribe-the-events-calendar-import.class.php:87
1771
+ msgid ""
1772
+ "It appears that you have some old events calendar data that needs to be "
1773
+ "upgraded. Please be sure to back up your database before initiating the "
1774
+ "upgrade. This process can not be undone."
1775
+ msgstr "Näyttää siltä, ​​että sinulla on joitakin vanhoja tapahtumakalenterin tietoja, joita on päivitettävä. Muista varmuuskopioida tietokanta ennen päivitystä. Tätä prosessia ei voi peruuttaa."
1776
+
1777
+ #: ../lib/tribe-the-events-calendar-import.class.php:88
1778
+ msgid "Migrate Data!"
1779
+ msgstr "Siirtää tietoja!"
1780
+
1781
+ #: ../lib/tribe-the-events-calendar-import.class.php:166
1782
+ #, php-format
1783
+ msgid "You successfully migrated (%d) entries."
1784
+ msgstr "Olet onnistuneesti siirtänyt ( %d ) merkintää."
1785
+
1786
+ #: ../lib/tribe-the-events-calendar-import.class.php:242
1787
+ msgid "Install has 1 or more legacy event!"
1788
+ msgstr "Asennuksessa on 1 tai useampi vanhentunut tapahtuma!"
1789
+
1790
+ #: ../lib/tribe-validate.class.php:77 ../lib/tribe-validate.class.php:115
1791
+ msgid "Invalid or incomplete field passed"
1792
+ msgstr "Virheellinen tai puutteellinen kenttä syötetty"
1793
+
1794
+ #: ../lib/tribe-validate.class.php:78 ../lib/tribe-validate.class.php:110
1795
+ #: ../lib/tribe-validate.class.php:116
1796
+ msgid "Field ID:"
1797
+ msgstr "Kentän ID:"
1798
+
1799
+ #: ../lib/tribe-validate.class.php:109
1800
+ msgid "Non-existant field validation function passed"
1801
+ msgstr "Olematon kenttävalidointia funktio annettu"
1802
+
1803
+ #: ../lib/tribe-validate.class.php:110
1804
+ msgctxt "non-existant function name passed for field validation"
1805
+ msgid "with function name:"
1806
+ msgstr "funktion nimi:"
1807
+
1808
+ #: ../lib/tribe-validate.class.php:135 ../lib/tribe-validate.class.php:153
1809
+ #, php-format
1810
+ msgid "%s must contain numbers and letters only"
1811
+ msgstr "%s on vain oltava numeroita ja kirjaimia"
1812
+
1813
+ #: ../lib/tribe-validate.class.php:171
1814
+ #, php-format
1815
+ msgid "%s must contain numbers, letters and dots only"
1816
+ msgstr "%s on oltava vain numeroita, kirjaimia ja pisteitä"
1817
+
1818
+ #: ../lib/tribe-validate.class.php:187
1819
+ #, php-format
1820
+ msgid "%s must be a positive number."
1821
+ msgstr "%s on oltava positiivinen luku."
1822
+
1823
+ #: ../lib/tribe-validate.class.php:204
1824
+ #, php-format
1825
+ msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
1826
+ msgstr "%s on oltava osoite-muotoa (numeroita, kirjaimia, väliviivoja ja alaviivoja)."
1827
+
1828
+ #: ../lib/tribe-validate.class.php:221
1829
+ #, php-format
1830
+ msgid "%s must be a valid absolute URL."
1831
+ msgstr "%s on oltava kelvollinen URL."
1832
+
1833
+ #: ../lib/tribe-validate.class.php:239 ../lib/tribe-validate.class.php:258
1834
+ #: ../lib/tribe-validate.class.php:279
1835
+ #, php-format
1836
+ msgid "%s must have a value that's part of its options."
1837
+ msgstr "%s on oltava arvo, joka on sen asetuksissa."
1838
+
1839
+ #: ../lib/tribe-validate.class.php:295
1840
+ #, php-format
1841
+ msgid ""
1842
+ "Comparison validation failed because no comparison value was provided, for "
1843
+ "field %s"
1844
+ msgstr "Kentän %s validointi epäonnistui, koska vertailuarvoa ei annetu"
1845
+
1846
+ #: ../lib/tribe-validate.class.php:302
1847
+ #, php-format
1848
+ msgid "%s cannot be the same as %s."
1849
+ msgstr "%s ei voi olla sama kuin %s ."
1850
+
1851
+ #: ../lib/tribe-validate.class.php:304
1852
+ #, php-format
1853
+ msgid "%s cannot be a duplicate"
1854
+ msgstr "%s ei voi olla päällekkäinen"
1855
+
1856
+ #: ../lib/tribe-validate.class.php:322
1857
+ #, php-format
1858
+ msgid "%s must be a number or percentage."
1859
+ msgstr "%s täytyy olla numero tai prosenttiluku."
1860
+
1861
+ #: ../lib/tribe-validate.class.php:386
1862
+ #, php-format
1863
+ msgid "%s must be a number between 0 and 21."
1864
+ msgstr "%s on oltava väliltä 0 ja 21."
1865
+
1866
+ #: ../lib/tribe-validate.class.php:404
1867
+ #, php-format
1868
+ msgid ""
1869
+ "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
1870
+ msgstr "%s saa sisältää vain kirjaimia, numeroita, väliviivoja, heittomerkkeistä, ja välilyöntejä."
1871
+
1872
+ #: ../lib/tribe-validate.class.php:422
1873
+ #, php-format
1874
+ msgid "%s must consist of letters, spaces, apostrophes, and dashes."
1875
+ msgstr "%s saa olla vain kirjaimia, välilyöntejä, heittomerkkejä ja viivoja."
1876
+
1877
+ #: ../lib/tribe-validate.class.php:438
1878
+ #, php-format
1879
+ msgid "%s must consist of 5 numbers."
1880
+ msgstr "%s on sisällettävä 5 numeroa."
1881
+
1882
+ #: ../lib/tribe-validate.class.php:454
1883
+ #, php-format
1884
+ msgid "%s must be a phone number."
1885
+ msgstr "%s on oltava puhelinnumero."
1886
+
1887
+ #: ../lib/tribe-validate.class.php:472
1888
+ msgid ""
1889
+ "Country List must be formatted as one country per line in the following "
1890
+ "format: <br>US, United States <br> UK, United Kingdom."
1891
+ msgstr "Maaluettelossa tulee olla yksi maa per rivi: <br> US, Yhdysvallat <br>UK, Iso-Britannia."
1892
+
1893
+ #: ../lib/tribe-view-helpers.class.php:24
1894
+ #: ../lib/tribe-view-helpers.class.php:43
1895
+ msgid "Select a Country:"
1896
+ msgstr "Valitse maa:"
1897
+
1898
+ #: ../lib/tribe-view-helpers.class.php:45
1899
+ msgid "Afghanistan"
1900
+ msgstr "Afganistan"
1901
+
1902
+ #: ../lib/tribe-view-helpers.class.php:46
1903
+ msgid "Albania"
1904
+ msgstr "Albania"
1905
+
1906
+ #: ../lib/tribe-view-helpers.class.php:47
1907
+ msgid "Algeria"
1908
+ msgstr "Algeria"
1909
+
1910
+ #: ../lib/tribe-view-helpers.class.php:48
1911
+ msgid "American Samoa"
1912
+ msgstr "Amerikan Samoa"
1913
+
1914
+ #: ../lib/tribe-view-helpers.class.php:49
1915
+ msgid "Andorra"
1916
+ msgstr "Andorra"
1917
+
1918
+ #: ../lib/tribe-view-helpers.class.php:50
1919
+ msgid "Angola"
1920
+ msgstr "Angola"
1921
+
1922
+ #: ../lib/tribe-view-helpers.class.php:51
1923
+ msgid "Anguilla"
1924
+ msgstr "Anguilla"
1925
+
1926
+ #: ../lib/tribe-view-helpers.class.php:52
1927
+ msgid "Antarctica"
1928
+ msgstr "Etelämanner"
1929
+
1930
+ #: ../lib/tribe-view-helpers.class.php:53
1931
+ msgid "Antigua And Barbuda"
1932
+ msgstr "Antigua ja Barbuda"
1933
+
1934
+ #: ../lib/tribe-view-helpers.class.php:54
1935
+ msgid "Argentina"
1936
+ msgstr "Argentiina"
1937
+
1938
+ #: ../lib/tribe-view-helpers.class.php:55
1939
+ msgid "Armenia"
1940
+ msgstr "Armenia"
1941
+
1942
+ #: ../lib/tribe-view-helpers.class.php:56
1943
+ msgid "Aruba"
1944
+ msgstr "Aruba"
1945
+
1946
+ #: ../lib/tribe-view-helpers.class.php:57
1947
+ msgid "Australia"
1948
+ msgstr "Australia"
1949
+
1950
+ #: ../lib/tribe-view-helpers.class.php:58
1951
+ msgid "Austria"
1952
+ msgstr "Itävalta"
1953
+
1954
+ #: ../lib/tribe-view-helpers.class.php:59
1955
+ msgid "Azerbaijan"
1956
+ msgstr "Azerbaidžan"
1957
+
1958
+ #: ../lib/tribe-view-helpers.class.php:60
1959
+ msgid "Bahamas"
1960
+ msgstr "Bahama"
1961
+
1962
+ #: ../lib/tribe-view-helpers.class.php:61
1963
+ msgid "Bahrain"
1964
+ msgstr "Bahrain"
1965
+
1966
+ #: ../lib/tribe-view-helpers.class.php:62
1967
+ msgid "Bangladesh"
1968
+ msgstr "Bangladesh"
1969
+
1970
+ #: ../lib/tribe-view-helpers.class.php:63
1971
+ msgid "Barbados"
1972
+ msgstr "Barbados"
1973
+
1974
+ #: ../lib/tribe-view-helpers.class.php:64
1975
+ msgid "Belarus"
1976
+ msgstr "Valko-Venäjä"
1977
+
1978
+ #: ../lib/tribe-view-helpers.class.php:65
1979
+ msgid "Belgium"
1980
+ msgstr "Belgia"
1981
+
1982
+ #: ../lib/tribe-view-helpers.class.php:66
1983
+ msgid "Belize"
1984
+ msgstr "Belize"
1985
+
1986
+ #: ../lib/tribe-view-helpers.class.php:67
1987
+ msgid "Benin"
1988
+ msgstr "Benin"
1989
+
1990
+ #: ../lib/tribe-view-helpers.class.php:68
1991
+ msgid "Bermuda"
1992
+ msgstr "Bermuda"
1993
+
1994
+ #: ../lib/tribe-view-helpers.class.php:69
1995
+ msgid "Bhutan"
1996
+ msgstr "Bhutan"
1997
+
1998
+ #: ../lib/tribe-view-helpers.class.php:70
1999
+ msgid "Bolivia"
2000
+ msgstr "Bolivia"
2001
+
2002
+ #: ../lib/tribe-view-helpers.class.php:71
2003
+ msgid "Bosnia And Herzegowina"
2004
+ msgstr "Bosnia-Hertsegovina"
2005
+
2006
+ #: ../lib/tribe-view-helpers.class.php:72
2007
+ msgid "Botswana"
2008
+ msgstr "Botswana"
2009
+
2010
+ #: ../lib/tribe-view-helpers.class.php:73
2011
+ msgid "Bouvet Island"
2012
+ msgstr "Bouvet Island"
2013
+
2014
+ #: ../lib/tribe-view-helpers.class.php:74
2015
+ msgid "Brazil"
2016
+ msgstr "Brasilia"
2017
+
2018
+ #: ../lib/tribe-view-helpers.class.php:75
2019
+ msgid "British Indian Ocean Territory"
2020
+ msgstr "Brittiläinen Intian valtameren alue"
2021
+
2022
+ #: ../lib/tribe-view-helpers.class.php:76
2023
+ msgid "Brunei Darussalam"
2024
+ msgstr "Brunei"
2025
+
2026
+ #: ../lib/tribe-view-helpers.class.php:77
2027
+ msgid "Bulgaria"
2028
+ msgstr "Bulgaria"
2029
+
2030
+ #: ../lib/tribe-view-helpers.class.php:78
2031
+ msgid "Burkina Faso"
2032
+ msgstr "Burkina Faso"
2033
+
2034
+ #: ../lib/tribe-view-helpers.class.php:79
2035
+ msgid "Burundi"
2036
+ msgstr "Burundi"
2037
+
2038
+ #: ../lib/tribe-view-helpers.class.php:80
2039
+ msgid "Cambodia"
2040
+ msgstr "Kambodza"
2041
+
2042
+ #: ../lib/tribe-view-helpers.class.php:81
2043
+ msgid "Cameroon"
2044
+ msgstr "Kamerun"
2045
+
2046
+ #: ../lib/tribe-view-helpers.class.php:82
2047
+ msgid "Canada"
2048
+ msgstr "Kanada"
2049
+
2050
+ #: ../lib/tribe-view-helpers.class.php:83
2051
+ msgid "Cape Verde"
2052
+ msgstr "Kap Verde"
2053
+
2054
+ #: ../lib/tribe-view-helpers.class.php:84
2055
+ msgid "Cayman Islands"
2056
+ msgstr "Caymansaaret"
2057
+
2058
+ #: ../lib/tribe-view-helpers.class.php:85
2059
+ msgid "Central African Republic"
2060
+ msgstr "Keski-Afrikkalainen tasavalta"
2061
+
2062
+ #: ../lib/tribe-view-helpers.class.php:86
2063
+ msgid "Chad"
2064
+ msgstr "Chad"
2065
+
2066
+ #: ../lib/tribe-view-helpers.class.php:87
2067
+ msgid "Chile"
2068
+ msgstr "Chile"
2069
+
2070
+ #: ../lib/tribe-view-helpers.class.php:88
2071
+ msgid "China"
2072
+ msgstr "Kiina"
2073
+
2074
+ #: ../lib/tribe-view-helpers.class.php:89
2075
+ msgid "Christmas Island"
2076
+ msgstr "Joulusaari"
2077
+
2078
+ #: ../lib/tribe-view-helpers.class.php:90
2079
+ msgid "Cocos (Keeling) Islands"
2080
+ msgstr "Cocos (Keeling) Islands"
2081
+
2082
+ #: ../lib/tribe-view-helpers.class.php:91
2083
+ msgid "Colombia"
2084
+ msgstr "Kolumbia"
2085
+
2086
+ #: ../lib/tribe-view-helpers.class.php:92
2087
+ msgid "Comoros"
2088
+ msgstr "Komorit"
2089
+
2090
+ #: ../lib/tribe-view-helpers.class.php:93
2091
+ msgid "Congo"
2092
+ msgstr "Kongo"
2093
+
2094
+ #: ../lib/tribe-view-helpers.class.php:94
2095
+ msgid "Congo, The Democratic Republic Of The"
2096
+ msgstr "Kongon demokraattinen tasavalta"
2097
+
2098
+ #: ../lib/tribe-view-helpers.class.php:95
2099
+ msgid "Cook Islands"
2100
+ msgstr "Cook Islands"
2101
+
2102
+ #: ../lib/tribe-view-helpers.class.php:96
2103
+ msgid "Costa Rica"
2104
+ msgstr "Costa Rica"
2105
+
2106
+ #: ../lib/tribe-view-helpers.class.php:97
2107
+ msgid "Cote D'Ivoire"
2108
+ msgstr "Norsunluurannikko"
2109
+
2110
+ #: ../lib/tribe-view-helpers.class.php:98
2111
+ msgid "Croatia (Local Name: Hrvatska)"
2112
+ msgstr "Kroatia (paikallinen nimi: Hrvatska)"
2113
+
2114
+ #: ../lib/tribe-view-helpers.class.php:99
2115
+ msgid "Cuba"
2116
+ msgstr "Kuuba"
2117
+
2118
+ #: ../lib/tribe-view-helpers.class.php:100
2119
+ msgid "Cyprus"
2120
+ msgstr "Kypros"
2121
+
2122
+ #: ../lib/tribe-view-helpers.class.php:101
2123
+ msgid "Czech Republic"
2124
+ msgstr "Tšekki"
2125
+
2126
+ #: ../lib/tribe-view-helpers.class.php:102
2127
+ msgid "Denmark"
2128
+ msgstr "Tanska"
2129
+
2130
+ #: ../lib/tribe-view-helpers.class.php:103
2131
+ msgid "Djibouti"
2132
+ msgstr "Djibouti"
2133
+
2134
+ #: ../lib/tribe-view-helpers.class.php:104
2135
+ msgid "Dominica"
2136
+ msgstr "Dominica"
2137
+
2138
+ #: ../lib/tribe-view-helpers.class.php:105
2139
+ msgid "Dominican Republic"
2140
+ msgstr "Dominikaaninen tasavalta"
2141
+
2142
+ #: ../lib/tribe-view-helpers.class.php:106
2143
+ msgid "East Timor"
2144
+ msgstr "Itä-Timor"
2145
+
2146
+ #: ../lib/tribe-view-helpers.class.php:107
2147
+ msgid "Ecuador"
2148
+ msgstr "Ecuador"
2149
+
2150
+ #: ../lib/tribe-view-helpers.class.php:108
2151
+ msgid "Egypt"
2152
+ msgstr "Egypti"
2153
+
2154
+ #: ../lib/tribe-view-helpers.class.php:109
2155
+ msgid "El Salvador"
2156
+ msgstr "El Salvador"
2157
+
2158
+ #: ../lib/tribe-view-helpers.class.php:110
2159
+ msgid "Equatorial Guinea"
2160
+ msgstr "Päiväntasaajan Guinea"
2161
+
2162
+ #: ../lib/tribe-view-helpers.class.php:111
2163
+ msgid "Eritrea"
2164
+ msgstr "Eritrea"
2165
+
2166
+ #: ../lib/tribe-view-helpers.class.php:112
2167
+ msgid "Estonia"
2168
+ msgstr "Viro"
2169
+
2170
+ #: ../lib/tribe-view-helpers.class.php:113
2171
+ msgid "Ethiopia"
2172
+ msgstr "Etiopia"
2173
+
2174
+ #: ../lib/tribe-view-helpers.class.php:114
2175
+ msgid "Falkland Islands (Malvinas)"
2176
+ msgstr "Falklandin saaret (Malvinas)"
2177
+
2178
+ #: ../lib/tribe-view-helpers.class.php:115
2179
+ msgid "Faroe Islands"
2180
+ msgstr "Färsaaret"
2181
+
2182
+ #: ../lib/tribe-view-helpers.class.php:116
2183
+ msgid "Fiji"
2184
+ msgstr "Fidži"
2185
+
2186
+ #: ../lib/tribe-view-helpers.class.php:117
2187
+ msgid "Finland"
2188
+ msgstr "Suomi"
2189
+
2190
+ #: ../lib/tribe-view-helpers.class.php:118
2191
+ msgid "France"
2192
+ msgstr "Ranska"
2193
+
2194
+ #: ../lib/tribe-view-helpers.class.php:119
2195
+ msgid "France, Metropolitan"
2196
+ msgstr "Ranska, Metropolitan"
2197
+
2198
+ #: ../lib/tribe-view-helpers.class.php:120
2199
+ msgid "French Guiana"
2200
+ msgstr "Ranskan Guayana"
2201
+
2202
+ #: ../lib/tribe-view-helpers.class.php:121
2203
+ msgid "French Polynesia"
2204
+ msgstr "Ranskan Polynesia"
2205
+
2206
+ #: ../lib/tribe-view-helpers.class.php:122
2207
+ msgid "French Southern Territories"
2208
+ msgstr "Ranskan eteläiset alueet"
2209
+
2210
+ #: ../lib/tribe-view-helpers.class.php:123
2211
+ msgid "Gabon"
2212
+ msgstr "Gabon"
2213
+
2214
+ #: ../lib/tribe-view-helpers.class.php:124
2215
+ msgid "Gambia"
2216
+ msgstr "Gambia"
2217
+
2218
+ #: ../lib/tribe-view-helpers.class.php:125
2219
+ #: ../lib/tribe-view-helpers.class.php:318
2220
+ msgid "Georgia"
2221
+ msgstr "Georgia"
2222
+
2223
+ #: ../lib/tribe-view-helpers.class.php:126
2224
+ msgid "Germany"
2225
+ msgstr "Saksa"
2226
+
2227
+ #: ../lib/tribe-view-helpers.class.php:127
2228
+ msgid "Ghana"
2229
+ msgstr "Ghana"
2230
+
2231
+ #: ../lib/tribe-view-helpers.class.php:128
2232
+ msgid "Gibraltar"
2233
+ msgstr "Gibraltar"
2234
+
2235
+ #: ../lib/tribe-view-helpers.class.php:129
2236
+ msgid "Greece"
2237
+ msgstr "Kreikka"
2238
+
2239
+ #: ../lib/tribe-view-helpers.class.php:130
2240
+ msgid "Greenland"
2241
+ msgstr "Grönlanti"
2242
+
2243
+ #: ../lib/tribe-view-helpers.class.php:131
2244
+ msgid "Grenada"
2245
+ msgstr "Grenada"
2246
+
2247
+ #: ../lib/tribe-view-helpers.class.php:132
2248
+ msgid "Guadeloupe"
2249
+ msgstr "Guadeloupen"
2250
+
2251
+ #: ../lib/tribe-view-helpers.class.php:133
2252
+ msgid "Guam"
2253
+ msgstr "Guam"
2254
+
2255
+ #: ../lib/tribe-view-helpers.class.php:134
2256
+ msgid "Guatemala"
2257
+ msgstr "Guatemala"
2258
+
2259
+ #: ../lib/tribe-view-helpers.class.php:135
2260
+ msgid "Guinea"
2261
+ msgstr "Guinea"
2262
+
2263
+ #: ../lib/tribe-view-helpers.class.php:136
2264
+ msgid "Guinea-Bissau"
2265
+ msgstr "Guinea-Bissau"
2266
+
2267
+ #: ../lib/tribe-view-helpers.class.php:137
2268
+ msgid "Guyana"
2269
+ msgstr "Guyana"
2270
+
2271
+ #: ../lib/tribe-view-helpers.class.php:138
2272
+ msgid "Haiti"
2273
+ msgstr "Haiti"
2274
+
2275
+ #: ../lib/tribe-view-helpers.class.php:139
2276
+ msgid "Heard And Mc Donald Islands"
2277
+ msgstr "Heard ja Mc Donald Islands"
2278
+
2279
+ #: ../lib/tribe-view-helpers.class.php:140
2280
+ msgid "Holy See (Vatican City State)"
2281
+ msgstr "Pyhä istuin (Vatikaanivaltio)"
2282
+
2283
+ #: ../lib/tribe-view-helpers.class.php:141
2284
+ msgid "Honduras"
2285
+ msgstr "Honduras"
2286
+
2287
+ #: ../lib/tribe-view-helpers.class.php:142
2288
+ msgid "Hong Kong"
2289
+ msgstr "Hong Kong"
2290
+
2291
+ #: ../lib/tribe-view-helpers.class.php:143
2292
+ msgid "Hungary"
2293
+ msgstr "Unkari"
2294
+
2295
+ #: ../lib/tribe-view-helpers.class.php:144
2296
+ msgid "Iceland"
2297
+ msgstr "Islanti"
2298
+
2299
+ #: ../lib/tribe-view-helpers.class.php:145
2300
+ msgid "India"
2301
+ msgstr "Intia"
2302
+
2303
+ #: ../lib/tribe-view-helpers.class.php:146
2304
+ msgid "Indonesia"
2305
+ msgstr "Indonesia"
2306
+
2307
+ #: ../lib/tribe-view-helpers.class.php:147
2308
+ msgid "Iran (Islamic Republic Of)"
2309
+ msgstr "Iran (islamilainen tasavalta)"
2310
+
2311
+ #: ../lib/tribe-view-helpers.class.php:148
2312
+ msgid "Iraq"
2313
+ msgstr "Irak"
2314
+
2315
+ #: ../lib/tribe-view-helpers.class.php:149
2316
+ msgid "Ireland"
2317
+ msgstr "Irlanti"
2318
+
2319
+ #: ../lib/tribe-view-helpers.class.php:150
2320
+ msgid "Israel"
2321
+ msgstr "Israel"
2322
+
2323
+ #: ../lib/tribe-view-helpers.class.php:151
2324
+ msgid "Italy"
2325
+ msgstr "Italia"
2326
+
2327
+ #: ../lib/tribe-view-helpers.class.php:152
2328
+ msgid "Jamaica"
2329
+ msgstr "Jamaika"
2330
+
2331
+ #: ../lib/tribe-view-helpers.class.php:153
2332
+ msgid "Japan"
2333
+ msgstr "Japani"
2334
+
2335
+ #: ../lib/tribe-view-helpers.class.php:154
2336
+ msgid "Jordan"
2337
+ msgstr "Jordan"
2338
+
2339
+ #: ../lib/tribe-view-helpers.class.php:155
2340
+ msgid "Kazakhstan"
2341
+ msgstr "Kazakstan"
2342
+
2343
+ #: ../lib/tribe-view-helpers.class.php:156
2344
+ msgid "Kenya"
2345
+ msgstr "Kenia"
2346
+
2347
+ #: ../lib/tribe-view-helpers.class.php:157
2348
+ msgid "Kiribati"
2349
+ msgstr "Kiribatin"
2350
+
2351
+ #: ../lib/tribe-view-helpers.class.php:158
2352
+ msgid "Korea, Democratic People's Republic Of"
2353
+ msgstr "Korean demokraattinen kansantasavalta"
2354
+
2355
+ #: ../lib/tribe-view-helpers.class.php:159
2356
+ msgid "Korea, Republic Of"
2357
+ msgstr "Korean tasavalta"
2358
+
2359
+ #: ../lib/tribe-view-helpers.class.php:160
2360
+ msgid "Kuwait"
2361
+ msgstr "Kuwait"
2362
+
2363
+ #: ../lib/tribe-view-helpers.class.php:161
2364
+ msgid "Kyrgyzstan"
2365
+ msgstr "Kirgisia"
2366
+
2367
+ #: ../lib/tribe-view-helpers.class.php:162
2368
+ msgid "Lao People's Democratic Republic"
2369
+ msgstr "Lao People's Democratic Republic"
2370
+
2371
+ #: ../lib/tribe-view-helpers.class.php:163
2372
+ msgid "Latvia"
2373
+ msgstr "Latvia"
2374
+
2375
+ #: ../lib/tribe-view-helpers.class.php:164
2376
+ msgid "Lebanon"
2377
+ msgstr "Libanon"
2378
+
2379
+ #: ../lib/tribe-view-helpers.class.php:165
2380
+ msgid "Lesotho"
2381
+ msgstr "Lesotho"
2382
+
2383
+ #: ../lib/tribe-view-helpers.class.php:166
2384
+ msgid "Liberia"
2385
+ msgstr "Liberia"
2386
+
2387
+ #: ../lib/tribe-view-helpers.class.php:167
2388
+ msgid "Libya"
2389
+ msgstr "Libya"
2390
+
2391
+ #: ../lib/tribe-view-helpers.class.php:168
2392
+ msgid "Liechtenstein"
2393
+ msgstr "Liechtenstein"
2394
+
2395
+ #: ../lib/tribe-view-helpers.class.php:169
2396
+ msgid "Lithuania"
2397
+ msgstr "Liettua"
2398
+
2399
+ #: ../lib/tribe-view-helpers.class.php:170
2400
+ msgid "Luxembourg"
2401
+ msgstr "Luxemburg"
2402
+
2403
+ #: ../lib/tribe-view-helpers.class.php:171
2404
+ msgid "Macau"
2405
+ msgstr "Macau"
2406
+
2407
+ #: ../lib/tribe-view-helpers.class.php:172
2408
+ msgid "Macedonia"
2409
+ msgstr "Makedonia"
2410
+
2411
+ #: ../lib/tribe-view-helpers.class.php:173
2412
+ msgid "Madagascar"
2413
+ msgstr "Madagaskar"
2414
+
2415
+ #: ../lib/tribe-view-helpers.class.php:174
2416
+ msgid "Malawi"
2417
+ msgstr "Malawi"
2418
+
2419
+ #: ../lib/tribe-view-helpers.class.php:175
2420
+ msgid "Malaysia"
2421
+ msgstr "Malesia"
2422
+
2423
+ #: ../lib/tribe-view-helpers.class.php:176
2424
+ msgid "Maldives"
2425
+ msgstr "Malediivit"
2426
+
2427
+ #: ../lib/tribe-view-helpers.class.php:177
2428
+ msgid "Mali"
2429
+ msgstr "Mali"
2430
+
2431
+ #: ../lib/tribe-view-helpers.class.php:178
2432
+ msgid "Malta"
2433
+ msgstr "Malta"
2434
+
2435
+ #: ../lib/tribe-view-helpers.class.php:179
2436
+ msgid "Marshall Islands"
2437
+ msgstr "Marshallinsaaret"
2438
+
2439
+ #: ../lib/tribe-view-helpers.class.php:180
2440
+ msgid "Martinique"
2441
+ msgstr "Martinique"
2442
+
2443
+ #: ../lib/tribe-view-helpers.class.php:181
2444
+ msgid "Mauritania"
2445
+ msgstr "Mauritania"
2446
+
2447
+ #: ../lib/tribe-view-helpers.class.php:182
2448
+ msgid "Mauritius"
2449
+ msgstr "Mauritius"
2450
+
2451
+ #: ../lib/tribe-view-helpers.class.php:183
2452
+ msgid "Mayotte"
2453
+ msgstr "Mayotte"
2454
+
2455
+ #: ../lib/tribe-view-helpers.class.php:184
2456
+ msgid "Mexico"
2457
+ msgstr "Meksiko"
2458
+
2459
+ #: ../lib/tribe-view-helpers.class.php:185
2460
+ msgid "Micronesia, Federated States Of"
2461
+ msgstr "Mikronesia Of"
2462
+
2463
+ #: ../lib/tribe-view-helpers.class.php:186
2464
+ msgid "Moldova, Republic Of"
2465
+ msgstr "Moldova"
2466
+
2467
+ #: ../lib/tribe-view-helpers.class.php:187
2468
+ msgid "Monaco"
2469
+ msgstr "Monaco"
2470
+
2471
+ #: ../lib/tribe-view-helpers.class.php:188
2472
+ msgid "Mongolia"
2473
+ msgstr "Mongolia"
2474
+
2475
+ #: ../lib/tribe-view-helpers.class.php:189
2476
+ msgid "Montenegro"
2477
+ msgstr "Montenegro"
2478
+
2479
+ #: ../lib/tribe-view-helpers.class.php:190
2480
+ msgid "Montserrat"
2481
+ msgstr "Montserrat"
2482
+
2483
+ #: ../lib/tribe-view-helpers.class.php:191
2484
+ msgid "Morocco"
2485
+ msgstr "Marokko"
2486
+
2487
+ #: ../lib/tribe-view-helpers.class.php:192
2488
+ msgid "Mozambique"
2489
+ msgstr "Mosambik"
2490
+
2491
+ #: ../lib/tribe-view-helpers.class.php:193
2492
+ msgid "Myanmar"
2493
+ msgstr "Myanmar"
2494
+
2495
+ #: ../lib/tribe-view-helpers.class.php:194
2496
+ msgid "Namibia"
2497
+ msgstr "Namibia"
2498
+
2499
+ #: ../lib/tribe-view-helpers.class.php:195
2500
+ msgid "Nauru"
2501
+ msgstr "Nauru"
2502
+
2503
+ #: ../lib/tribe-view-helpers.class.php:196
2504
+ msgid "Nepal"
2505
+ msgstr "Nepal"
2506
+
2507
+ #: ../lib/tribe-view-helpers.class.php:197
2508
+ msgid "Netherlands"
2509
+ msgstr "Alankomaat"
2510
+
2511
+ #: ../lib/tribe-view-helpers.class.php:198
2512
+ msgid "Netherlands Antilles"
2513
+ msgstr "Alankomaiden Antillit"
2514
+
2515
+ #: ../lib/tribe-view-helpers.class.php:199
2516
+ msgid "New Caledonia"
2517
+ msgstr "Uuden-Kaledonian"
2518
+
2519
+ #: ../lib/tribe-view-helpers.class.php:200
2520
+ msgid "New Zealand"
2521
+ msgstr "Uusi-Seelanti"
2522
+
2523
+ #: ../lib/tribe-view-helpers.class.php:201
2524
+ msgid "Nicaragua"
2525
+ msgstr "Nicaragua"
2526
+
2527
+ #: ../lib/tribe-view-helpers.class.php:202
2528
+ msgid "Niger"
2529
+ msgstr "Niger"
2530
+
2531
+ #: ../lib/tribe-view-helpers.class.php:203
2532
+ msgid "Nigeria"
2533
+ msgstr "Nigeria"
2534
+
2535
+ #: ../lib/tribe-view-helpers.class.php:204
2536
+ msgid "Niue"
2537
+ msgstr "Niue"
2538
+
2539
+ #: ../lib/tribe-view-helpers.class.php:205
2540
+ msgid "Norfolk Island"
2541
+ msgstr "Norfolk Island"
2542
+
2543
+ #: ../lib/tribe-view-helpers.class.php:206
2544
+ msgid "Northern Mariana Islands"
2545
+ msgstr "Pohjois-Mariaanien"
2546
+
2547
+ #: ../lib/tribe-view-helpers.class.php:207
2548
+ msgid "Norway"
2549
+ msgstr "Norja"
2550
+
2551
+ #: ../lib/tribe-view-helpers.class.php:208
2552
+ msgid "Oman"
2553
+ msgstr "Oman"
2554
+
2555
+ #: ../lib/tribe-view-helpers.class.php:209
2556
+ msgid "Pakistan"
2557
+ msgstr "Pakistan"
2558
+
2559
+ #: ../lib/tribe-view-helpers.class.php:210
2560
+ msgid "Palau"
2561
+ msgstr "Palau"
2562
+
2563
+ #: ../lib/tribe-view-helpers.class.php:211
2564
+ msgid "Panama"
2565
+ msgstr "Panama"
2566
+
2567
+ #: ../lib/tribe-view-helpers.class.php:212
2568
+ msgid "Papua New Guinea"
2569
+ msgstr "Papua-Uusi-Guinea"
2570
+
2571
+ #: ../lib/tribe-view-helpers.class.php:213
2572
+ msgid "Paraguay"
2573
+ msgstr "Paraguay"
2574
+
2575
+ #: ../lib/tribe-view-helpers.class.php:214
2576
+ msgid "Peru"
2577
+ msgstr "Peru"
2578
+
2579
+ #: ../lib/tribe-view-helpers.class.php:215
2580
+ msgid "Philippines"
2581
+ msgstr "Filippiinit"
2582
+
2583
+ #: ../lib/tribe-view-helpers.class.php:216
2584
+ msgid "Pitcairn"
2585
+ msgstr "Pitcairn"
2586
+
2587
+ #: ../lib/tribe-view-helpers.class.php:217
2588
+ msgid "Poland"
2589
+ msgstr "Puola"
2590
+
2591
+ #: ../lib/tribe-view-helpers.class.php:218
2592
+ msgid "Portugal"
2593
+ msgstr "Portugali"
2594
+
2595
+ #: ../lib/tribe-view-helpers.class.php:219
2596
+ msgid "Puerto Rico"
2597
+ msgstr "Puerto Rico"
2598
+
2599
+ #: ../lib/tribe-view-helpers.class.php:220
2600
+ msgid "Qatar"
2601
+ msgstr "Qatar"
2602
+
2603
+ #: ../lib/tribe-view-helpers.class.php:221
2604
+ msgid "Reunion"
2605
+ msgstr "Jälleennäkeminen"
2606
+
2607
+ #: ../lib/tribe-view-helpers.class.php:222
2608
+ msgid "Romania"
2609
+ msgstr "Romania"
2610
+
2611
+ #: ../lib/tribe-view-helpers.class.php:223
2612
+ msgid "Russian Federation"
2613
+ msgstr "Venäjä"
2614
+
2615
+ #: ../lib/tribe-view-helpers.class.php:224
2616
+ msgid "Rwanda"
2617
+ msgstr "Ruanda"
2618
+
2619
+ #: ../lib/tribe-view-helpers.class.php:225
2620
+ msgid "Saint Kitts And Nevis"
2621
+ msgstr "Saint Kitts ja Nevis"
2622
+
2623
+ #: ../lib/tribe-view-helpers.class.php:226
2624
+ msgid "Saint Lucia"
2625
+ msgstr "Saint Lucia"
2626
+
2627
+ #: ../lib/tribe-view-helpers.class.php:227
2628
+ msgid "Saint Vincent And The Grenadines"
2629
+ msgstr "Saint Vincent ja Grenadiinit"
2630
+
2631
+ #: ../lib/tribe-view-helpers.class.php:228
2632
+ msgid "Samoa"
2633
+ msgstr "Samoa"
2634
+
2635
+ #: ../lib/tribe-view-helpers.class.php:229
2636
+ msgid "San Marino"
2637
+ msgstr "San Marino"
2638
+
2639
+ #: ../lib/tribe-view-helpers.class.php:230
2640
+ msgid "Sao Tome And Principe"
2641
+ msgstr "Sao Tome ja Principe"
2642
+
2643
+ #: ../lib/tribe-view-helpers.class.php:231
2644
+ msgid "Saudi Arabia"
2645
+ msgstr "Saudi-Arabia"
2646
+
2647
+ #: ../lib/tribe-view-helpers.class.php:232
2648
+ msgid "Senegal"
2649
+ msgstr "Senegal"
2650
+
2651
+ #: ../lib/tribe-view-helpers.class.php:233
2652
+ msgid "Serbia"
2653
+ msgstr "Serbia"
2654
+
2655
+ #: ../lib/tribe-view-helpers.class.php:234
2656
+ msgid "Seychelles"
2657
+ msgstr "Seychellit"
2658
+
2659
+ #: ../lib/tribe-view-helpers.class.php:235
2660
+ msgid "Sierra Leone"
2661
+ msgstr "Sierra Leone"
2662
+
2663
+ #: ../lib/tribe-view-helpers.class.php:236
2664
+ msgid "Singapore"
2665
+ msgstr "Singapore"
2666
+
2667
+ #: ../lib/tribe-view-helpers.class.php:237
2668
+ msgid "Slovakia (Slovak Republic)"
2669
+ msgstr "Slovakia (Slovakia)"
2670
+
2671
+ #: ../lib/tribe-view-helpers.class.php:238
2672
+ msgid "Slovenia"
2673
+ msgstr "Slovenia"
2674
+
2675
+ #: ../lib/tribe-view-helpers.class.php:239
2676
+ msgid "Solomon Islands"
2677
+ msgstr "Salomonsaaret"
2678
+
2679
+ #: ../lib/tribe-view-helpers.class.php:240
2680
+ msgid "Somalia"
2681
+ msgstr "Somalia"
2682
+
2683
+ #: ../lib/tribe-view-helpers.class.php:241
2684
+ msgid "South Africa"
2685
+ msgstr "Etelä-Afrikka"
2686
+
2687
+ #: ../lib/tribe-view-helpers.class.php:242
2688
+ msgid "South Georgia, South Sandwich Islands"
2689
+ msgstr "Etelä-Georgia, Eteläiset Sandwichsaaret"
2690
+
2691
+ #: ../lib/tribe-view-helpers.class.php:243
2692
+ msgid "Spain"
2693
+ msgstr "Espanja"
2694
+
2695
+ #: ../lib/tribe-view-helpers.class.php:244
2696
+ msgid "Sri Lanka"
2697
+ msgstr "Sri Lankassa"
2698
+
2699
+ #: ../lib/tribe-view-helpers.class.php:245
2700
+ msgid "St. Helena"
2701
+ msgstr "St. Helena"
2702
+
2703
+ #: ../lib/tribe-view-helpers.class.php:246
2704
+ msgid "St. Pierre And Miquelon"
2705
+ msgstr "St. Pierre ja Miquelon"
2706
+
2707
+ #: ../lib/tribe-view-helpers.class.php:247
2708
+ msgid "Sudan"
2709
+ msgstr "Sudan"
2710
+
2711
+ #: ../lib/tribe-view-helpers.class.php:248
2712
+ msgid "Suriname"
2713
+ msgstr "Suriname"
2714
+
2715
+ #: ../lib/tribe-view-helpers.class.php:249
2716
+ msgid "Svalbard And Jan Mayen Islands"
2717
+ msgstr "Huippuvuoret ja Jan Mayen"
2718
+
2719
+ #: ../lib/tribe-view-helpers.class.php:250
2720
+ msgid "Swaziland"
2721
+ msgstr "Swazimaa"
2722
+
2723
+ #: ../lib/tribe-view-helpers.class.php:251
2724
+ msgid "Sweden"
2725
+ msgstr "Ruotsi"
2726
+
2727
+ #: ../lib/tribe-view-helpers.class.php:252
2728
+ msgid "Switzerland"
2729
+ msgstr "Sveitsi"
2730
+
2731
+ #: ../lib/tribe-view-helpers.class.php:253
2732
+ msgid "Syrian Arab Republic"
2733
+ msgstr "Syyria"
2734
+
2735
+ #: ../lib/tribe-view-helpers.class.php:254
2736
+ msgid "Taiwan"
2737
+ msgstr "Taiwan"
2738
+
2739
+ #: ../lib/tribe-view-helpers.class.php:255
2740
+ msgid "Tajikistan"
2741
+ msgstr "Tadžikistan"
2742
+
2743
+ #: ../lib/tribe-view-helpers.class.php:256
2744
+ msgid "Tanzania, United Republic Of"
2745
+ msgstr "Tansania Of"
2746
+
2747
+ #: ../lib/tribe-view-helpers.class.php:257
2748
+ msgid "Thailand"
2749
+ msgstr "Thaimaa"
2750
+
2751
+ #: ../lib/tribe-view-helpers.class.php:258
2752
+ msgid "Togo"
2753
+ msgstr "Togo"
2754
+
2755
+ #: ../lib/tribe-view-helpers.class.php:259
2756
+ msgid "Tokelau"
2757
+ msgstr "Tokelau"
2758
+
2759
+ #: ../lib/tribe-view-helpers.class.php:260
2760
+ msgid "Tonga"
2761
+ msgstr "Tonga"
2762
+
2763
+ #: ../lib/tribe-view-helpers.class.php:261
2764
+ msgid "Trinidad And Tobago"
2765
+ msgstr "Trinidad ja Tobago"
2766
+
2767
+ #: ../lib/tribe-view-helpers.class.php:262
2768
+ msgid "Tunisia"
2769
+ msgstr "Tunisia"
2770
+
2771
+ #: ../lib/tribe-view-helpers.class.php:263
2772
+ msgid "Turkey"
2773
+ msgstr "Turkki"
2774
+
2775
+ #: ../lib/tribe-view-helpers.class.php:264
2776
+ msgid "Turkmenistan"
2777
+ msgstr "Turkmenistan"
2778
+
2779
+ #: ../lib/tribe-view-helpers.class.php:265
2780
+ msgid "Turks And Caicos Islands"
2781
+ msgstr "Turks-ja Caicossaaret"
2782
+
2783
+ #: ../lib/tribe-view-helpers.class.php:266
2784
+ msgid "Tuvalu"
2785
+ msgstr "Tuvalu"
2786
+
2787
+ #: ../lib/tribe-view-helpers.class.php:267
2788
+ msgid "Uganda"
2789
+ msgstr "Uganda"
2790
+
2791
+ #: ../lib/tribe-view-helpers.class.php:268
2792
+ msgid "Ukraine"
2793
+ msgstr "Ukraina"
2794
+
2795
+ #: ../lib/tribe-view-helpers.class.php:269
2796
+ msgid "United Arab Emirates"
2797
+ msgstr "Yhdistyneet arabiemiirikunnat"
2798
+
2799
+ #: ../lib/tribe-view-helpers.class.php:270
2800
+ msgid "United Kingdom"
2801
+ msgstr "Iso-Britannia"
2802
+
2803
+ #: ../lib/tribe-view-helpers.class.php:271
2804
+ msgid "United States Minor Outlying Islands"
2805
+ msgstr "Yhdysvaltain pienet erillissaaret"
2806
+
2807
+ #: ../lib/tribe-view-helpers.class.php:272
2808
+ msgid "Uruguay"
2809
+ msgstr "Uruguay"
2810
+
2811
+ #: ../lib/tribe-view-helpers.class.php:273
2812
+ msgid "Uzbekistan"
2813
+ msgstr "Uzbekistan"
2814
+
2815
+ #: ../lib/tribe-view-helpers.class.php:274
2816
+ msgid "Vanuatu"
2817
+ msgstr "Vanuatu"
2818
+
2819
+ #: ../lib/tribe-view-helpers.class.php:275
2820
+ msgid "Venezuela"
2821
+ msgstr "Venezuela"
2822
+
2823
+ #: ../lib/tribe-view-helpers.class.php:276
2824
+ msgid "Viet Nam"
2825
+ msgstr "Viet Nam"
2826
+
2827
+ #: ../lib/tribe-view-helpers.class.php:277
2828
+ msgid "Virgin Islands (British)"
2829
+ msgstr "Virgin Islands (British)"
2830
+
2831
+ #: ../lib/tribe-view-helpers.class.php:278
2832
+ msgid "Virgin Islands (U.S.)"
2833
+ msgstr "Virgin Islands (US)"
2834
+
2835
+ #: ../lib/tribe-view-helpers.class.php:279
2836
+ msgid "Wallis And Futuna Islands"
2837
+ msgstr "Wallis ja Futuna"
2838
+
2839
+ #: ../lib/tribe-view-helpers.class.php:280
2840
+ msgid "Western Sahara"
2841
+ msgstr "Länsi-Sahara"
2842
+
2843
+ #: ../lib/tribe-view-helpers.class.php:281
2844
+ msgid "Yemen"
2845
+ msgstr "Jemen"
2846
+
2847
+ #: ../lib/tribe-view-helpers.class.php:282
2848
+ msgid "Zambia"
2849
+ msgstr "Sambia"
2850
+
2851
+ #: ../lib/tribe-view-helpers.class.php:283
2852
+ msgid "Zimbabwe"
2853
+ msgstr "Zimbabwe"
2854
+
2855
+ #: ../lib/tribe-view-helpers.class.php:308
2856
+ msgid "Alabama"
2857
+ msgstr "Alabama"
2858
+
2859
+ #: ../lib/tribe-view-helpers.class.php:309
2860
+ msgid "Alaska"
2861
+ msgstr "Alaska"
2862
+
2863
+ #: ../lib/tribe-view-helpers.class.php:310
2864
+ msgid "Arizona"
2865
+ msgstr "Arizona"
2866
+
2867
+ #: ../lib/tribe-view-helpers.class.php:311
2868
+ msgid "Arkansas"
2869
+ msgstr "Arkansas"
2870
+
2871
+ #: ../lib/tribe-view-helpers.class.php:312
2872
+ msgid "California"
2873
+ msgstr "Kalifornia"
2874
+
2875
+ #: ../lib/tribe-view-helpers.class.php:313
2876
+ msgid "Colorado"
2877
+ msgstr "Colorado"
2878
+
2879
+ #: ../lib/tribe-view-helpers.class.php:314
2880
+ msgid "Connecticut"
2881
+ msgstr "Connecticut"
2882
+
2883
+ #: ../lib/tribe-view-helpers.class.php:315
2884
+ msgid "Delaware"
2885
+ msgstr "Delaware"
2886
+
2887
+ #: ../lib/tribe-view-helpers.class.php:316
2888
+ msgid "District of Columbia"
2889
+ msgstr "District of Columbia"
2890
+
2891
+ #: ../lib/tribe-view-helpers.class.php:317
2892
+ msgid "Florida"
2893
+ msgstr "Florida"
2894
+
2895
+ #: ../lib/tribe-view-helpers.class.php:319
2896
+ msgid "Hawaii"
2897
+ msgstr "Havaiji"
2898
+
2899
+ #: ../lib/tribe-view-helpers.class.php:320
2900
+ msgid "Idaho"
2901
+ msgstr "Idaho"
2902
+
2903
+ #: ../lib/tribe-view-helpers.class.php:321
2904
+ msgid "Illinois"
2905
+ msgstr "Illinois"
2906
+
2907
+ #: ../lib/tribe-view-helpers.class.php:322
2908
+ msgid "Indiana"
2909
+ msgstr "Indiana"
2910
+
2911
+ #: ../lib/tribe-view-helpers.class.php:323
2912
+ msgid "Iowa"
2913
+ msgstr "Iowa"
2914
+
2915
+ #: ../lib/tribe-view-helpers.class.php:324
2916
+ msgid "Kansas"
2917
+ msgstr "Kansas"
2918
+
2919
+ #: ../lib/tribe-view-helpers.class.php:325
2920
+ msgid "Kentucky"
2921
+ msgstr "Kentucky"
2922
+
2923
+ #: ../lib/tribe-view-helpers.class.php:326
2924
+ msgid "Louisiana"
2925
+ msgstr "Louisiana"
2926
+
2927
+ #: ../lib/tribe-view-helpers.class.php:327
2928
+ msgid "Maine"
2929
+ msgstr "Maine"
2930
+
2931
+ #: ../lib/tribe-view-helpers.class.php:328
2932
+ msgid "Maryland"
2933
+ msgstr "Maryland"
2934
+
2935
+ #: ../lib/tribe-view-helpers.class.php:329
2936
+ msgid "Massachusetts"
2937
+ msgstr "Massachusetts"
2938
+
2939
+ #: ../lib/tribe-view-helpers.class.php:330
2940
+ msgid "Michigan"
2941
+ msgstr "Michigan"
2942
+
2943
+ #: ../lib/tribe-view-helpers.class.php:331
2944
+ msgid "Minnesota"
2945
+ msgstr "Minnesota"
2946
+
2947
+ #: ../lib/tribe-view-helpers.class.php:332
2948
+ msgid "Mississippi"
2949
+ msgstr "Mississippi"
2950
+
2951
+ #: ../lib/tribe-view-helpers.class.php:333
2952
+ msgid "Missouri"
2953
+ msgstr "Missouri"
2954
+
2955
+ #: ../lib/tribe-view-helpers.class.php:334
2956
+ msgid "Montana"
2957
+ msgstr "Montana"
2958
+
2959
+ #: ../lib/tribe-view-helpers.class.php:335
2960
+ msgid "Nebraska"
2961
+ msgstr "Nebraska"
2962
+
2963
+ #: ../lib/tribe-view-helpers.class.php:336
2964
+ msgid "Nevada"
2965
+ msgstr "Nevada"
2966
+
2967
+ #: ../lib/tribe-view-helpers.class.php:337
2968
+ msgid "New Hampshire"
2969
+ msgstr "New Hampshire"
2970
+
2971
+ #: ../lib/tribe-view-helpers.class.php:338
2972
+ msgid "New Jersey"
2973
+ msgstr "New Jersey"
2974
+
2975
+ #: ../lib/tribe-view-helpers.class.php:339
2976
+ msgid "New Mexico"
2977
+ msgstr "New Mexico"
2978
+
2979
+ #: ../lib/tribe-view-helpers.class.php:340
2980
+ msgid "New York"
2981
+ msgstr "New York"
2982
+
2983
+ #: ../lib/tribe-view-helpers.class.php:341
2984
+ msgid "North Carolina"
2985
+ msgstr "North Carolina"
2986
+
2987
+ #: ../lib/tribe-view-helpers.class.php:342
2988
+ msgid "North Dakota"
2989
+ msgstr "North Dakota"
2990
+
2991
+ #: ../lib/tribe-view-helpers.class.php:343
2992
+ msgid "Ohio"
2993
+ msgstr "Ohio"
2994
+
2995
+ #: ../lib/tribe-view-helpers.class.php:344
2996
+ msgid "Oklahoma"
2997
+ msgstr "Oklahoma"
2998
+
2999
+ #: ../lib/tribe-view-helpers.class.php:345
3000
+ msgid "Oregon"
3001
+ msgstr "Oregon"
3002
+
3003
+ #: ../lib/tribe-view-helpers.class.php:346
3004
+ msgid "Pennsylvania"
3005
+ msgstr "Pennsylvania"
3006
+
3007
+ #: ../lib/tribe-view-helpers.class.php:347
3008
+ msgid "Rhode Island"
3009
+ msgstr "Rhode Island"
3010
+
3011
+ #: ../lib/tribe-view-helpers.class.php:348
3012
+ msgid "South Carolina"
3013
+ msgstr "Etelä-Carolina"
3014
+
3015
+ #: ../lib/tribe-view-helpers.class.php:349
3016
+ msgid "South Dakota"
3017
+ msgstr "Etelä-Dakota"
3018
+
3019
+ #: ../lib/tribe-view-helpers.class.php:350
3020
+ msgid "Tennessee"
3021
+ msgstr "Tennessee"
3022
+
3023
+ #: ../lib/tribe-view-helpers.class.php:351
3024
+ msgid "Texas"
3025
+ msgstr "Texas"
3026
+
3027
+ #: ../lib/tribe-view-helpers.class.php:352
3028
+ msgid "Utah"
3029
+ msgstr "Utah"
3030
+
3031
+ #: ../lib/tribe-view-helpers.class.php:353
3032
+ msgid "Vermont"
3033
+ msgstr "Vermont"
3034
+
3035
+ #: ../lib/tribe-view-helpers.class.php:354
3036
+ msgid "Virginia"
3037
+ msgstr "Virginia"
3038
+
3039
+ #: ../lib/tribe-view-helpers.class.php:355
3040
+ msgid "Washington"
3041
+ msgstr "Washington"
3042
+
3043
+ #: ../lib/tribe-view-helpers.class.php:356
3044
+ msgid "West Virginia"
3045
+ msgstr "West Virginia"
3046
+
3047
+ #: ../lib/tribe-view-helpers.class.php:357
3048
+ msgid "Wisconsin"
3049
+ msgstr "Wisconsin"
3050
+
3051
+ #: ../lib/tribe-view-helpers.class.php:358
3052
+ msgid "Wyoming"
3053
+ msgstr "Wyoming"
3054
+
3055
+ #: ../lib/widget-list.class.php:21
3056
+ msgid "A widget that displays upcoming events."
3057
+ msgstr "Vimpain, joka näyttää tulevia tapahtumia."
3058
+
3059
+ #: ../lib/widget-list.class.php:27
3060
+ msgid "Events List"
3061
+ msgstr "Tapahtumalista"
3062
+
3063
+ #: ../lib/widget-list.class.php:114
3064
+ msgid "View All Events"
3065
+ msgstr "Näytä kaikki tapahtumat"
3066
+
3067
+ #: ../lib/widget-list.class.php:117
3068
+ msgid "There are no upcoming events at this time."
3069
+ msgstr "Ei tulevia tapahtumia tällä hetkellä."
3070
+
3071
+ #: ../lib/template-classes/month.php:75
3072
+ #, php-format
3073
+ msgid ""
3074
+ "There were no results found for <strong>\"%s\"</strong> this month. Try "
3075
+ "searching next month."
3076
+ msgstr "Ei tuloksia haulle <strong>\"%s\"</strong> tässä kuussa. Yritä etsiä ensi kuusta."
3077
+
3078
+ #: ../lib/template-classes/single-event.php:99
3079
+ msgid "This event has passed."
3080
+ msgstr "Tämä tapahtuma on ohi."
3081
+
3082
+ #: ../lib/tickets/tribe-tickets-attendees.php:67
3083
+ msgid "Order #"
3084
+ msgstr "Tilaa #"
3085
+
3086
+ #: ../lib/tickets/tribe-tickets-attendees.php:68
3087
+ msgid "Order Status"
3088
+ msgstr "Tilauksen tila"
3089
+
3090
+ #: ../lib/tickets/tribe-tickets-attendees.php:69
3091
+ msgid "Purchaser name"
3092
+ msgstr "Ostajan nimi"
3093
+
3094
+ #: ../lib/tickets/tribe-tickets-attendees.php:70
3095
+ msgid "Purchaser email"
3096
+ msgstr "Ostajan sähköposti"
3097
+
3098
+ #: ../lib/tickets/tribe-tickets-attendees.php:71
3099
+ msgid "Ticket type"
3100
+ msgstr "Lipputyyppi"
3101
+
3102
+ #: ../lib/tickets/tribe-tickets-attendees.php:72
3103
+ #: ../views/tickets/email.php:316
3104
+ msgid "Ticket #"
3105
+ msgstr "Lippu #"
3106
+
3107
+ #: ../lib/tickets/tribe-tickets-attendees.php:73
3108
+ #: ../views/tickets/email.php:328
3109
+ msgid "Security Code"
3110
+ msgstr "Turvallisuuskoodi"
3111
+
3112
+ #: ../lib/tickets/tribe-tickets-attendees.php:74
3113
+ #: ../lib/tickets/tribe-tickets-attendees.php:144
3114
+ #: ../lib/tickets/tribe-tickets-attendees.php:200
3115
+ msgid "Check in"
3116
+ msgstr "Kirjaa itsesi"
3117
+
3118
+ #: ../lib/tickets/tribe-tickets-attendees.php:145
3119
+ #: ../lib/tickets/tribe-tickets-attendees.php:200
3120
+ msgid "Undo Check in"
3121
+ msgstr "Kumoa kirjaus"
3122
+
3123
+ #: ../lib/tickets/tribe-tickets-attendees.php:179
3124
+ msgid "Print"
3125
+ msgstr "Tulosta"
3126
+
3127
+ #: ../lib/tickets/tribe-tickets-attendees.php:180
3128
+ msgid "Email"
3129
+ msgstr "Sähköposti"
3130
+
3131
+ #: ../lib/tickets/tribe-tickets-attendees.php:181
3132
+ msgid "Export"
3133
+ msgstr "Vie"
3134
+
3135
+ #: ../lib/tickets/tribe-tickets-attendees.php:187
3136
+ msgid "Filter by ticket #, order # or security code"
3137
+ msgstr "Suodatta lippu #, tilaus # tai turvakoodin perusteella"
3138
+
3139
+ #: ../lib/tickets/tribe-tickets-metabox.php:24
3140
+ msgid "Tickets"
3141
+ msgstr "Liput"
3142
+
3143
+ #: ../lib/tickets/tribe-tickets-metabox.php:62
3144
+ msgid "Ticket header image"
3145
+ msgstr "Lippujen otsakekuva"
3146
+
3147
+ #: ../lib/tickets/tribe-tickets-metabox.php:62
3148
+ msgid "Set as ticket header"
3149
+ msgstr "Aseta lipun otsakekuvaksi"
3150
+
3151
+ #: ../lib/tickets/tribe-tickets-pro.php:107
3152
+ msgid "You need to select a user or type a valid email address"
3153
+ msgstr "Sinun pitää valita käyttäjä tai kirjoita voimassa oleva sähköpostiosoite"
3154
+
3155
+ #: ../lib/tickets/tribe-tickets-pro.php:108
3156
+ msgid "Sending..."
3157
+ msgstr "Lähetetään..."
3158
+
3159
+ #: ../lib/tickets/tribe-tickets-pro.php:136
3160
+ msgid "Columns"
3161
+ msgstr "Sarakkeet"
3162
+
3163
+ #: ../lib/tickets/tribe-tickets-pro.php:137
3164
+ msgid ""
3165
+ "You can use Screen Options to select which columns you want to see. The "
3166
+ "selection works in the table below, in the email, for print and for the CSV "
3167
+ "export."
3168
+ msgstr "Voit käyttää Näyttövaihtoehtoja valitaksesi, mitkä sarakkeet haluat nähdä. Valinta toimii alla olevassa taulukossa, sähköpostissa, tulostuksessa ja CSV-viennissä."
3169
+
3170
+ #: ../lib/tickets/tribe-tickets-pro.php:258
3171
+ msgid "attendees"
3172
+ msgstr "osallistujat"
3173
+
3174
+ #: ../lib/tickets/tribe-tickets-pro.php:308
3175
+ #, php-format
3176
+ msgid "Attendee List for: %s"
3177
+ msgstr "Osallistujalista: %s"
3178
+
3179
+ #: ../lib/tickets/tribe-tickets.php:292
3180
+ msgid "Your ticket has been saved."
3181
+ msgstr "Lippusi on tallennettu."
3182
+
3183
+ #: ../lib/tickets/tribe-tickets.php:369
3184
+ msgid "Your ticket has been deleted."
3185
+ msgstr "Lippusi on poistettu."
3186
+
3187
+ #: ../public/advanced-functions/meta.php:35
3188
+ msgid "Start:"
3189
+ msgstr "Alkaa:"
3190
+
3191
+ #: ../public/advanced-functions/meta.php:42
3192
+ msgid "End:"
3193
+ msgstr "Loppuu:"
3194
+
3195
+ #: ../public/advanced-functions/meta.php:51
3196
+ msgid "Date:"
3197
+ msgstr "Päivämäärä:"
3198
+
3199
+ #: ../public/advanced-functions/meta.php:233
3200
+ msgid "Click to view a Google Map"
3201
+ msgstr "Klikkaa nähdäksesi Google Mapsissa"
3202
+
3203
+ #: ../public/advanced-functions/meta.php:234
3204
+ msgid "+ Google Map"
3205
+ msgstr "+ Google Maps"
3206
+
3207
+ #: ../public/advanced-functions/meta.php:245
3208
+ msgid "Details"
3209
+ msgstr "Tarkemmat tiedot"
3210
+
3211
+ #: ../public/advanced-functions/meta.php:295
3212
+ msgid "Event Tags:"
3213
+ msgstr "Tapahtuman tagit:"
3214
+
3215
+ #: ../public/advanced-functions/meta.php:321
3216
+ msgid "Origin:"
3217
+ msgstr "Alkuperä:"
3218
+
3219
+ #: ../public/advanced-functions/meta.php:458
3220
+ msgid "Event:"
3221
+ msgstr "Tapahtuma:"
3222
+
3223
+ #: ../public/template-tags/deprecated.php:1143
3224
+ msgid "Category"
3225
+ msgstr "Luokka"
3226
+
3227
+ #: ../public/template-tags/general.php:306
3228
+ msgid "Tags:"
3229
+ msgstr "Avainsanat:"
3230
+
3231
+ #: ../public/template-tags/general.php:392
3232
+ msgid "Loading Events"
3233
+ msgstr "Ladataan tapahtumia"
3234
+
3235
+ #: ../public/template-tags/general.php:531
3236
+ msgid "Free"
3237
+ msgstr "Vapaa"
3238
+
3239
+ #: ../public/template-tags/general.php:703
3240
+ msgid "Recurring Event"
3241
+ msgstr "Toistuva tapahtuma"
3242
+
3243
+ #: ../public/template-tags/general.php:706
3244
+ msgid "(See all)"
3245
+ msgstr "(Katso kaikki)"
3246
+
3247
+ #: ../public/template-tags/general.php:982
3248
+ #, php-format
3249
+ msgid "Calendar powered by %sThe Events Calendar%s"
3250
+ msgstr "Kalenterin voimalähteenä %sThe Events Calendar%s"
3251
+
3252
+ #: ../public/template-tags/loop.php:150
3253
+ #, php-format
3254
+ msgid "Events for %1$s"
3255
+ msgstr "Tapahtumat %1$s"
3256
+
3257
+ #: ../public/template-tags/loop.php:158
3258
+ #, php-format
3259
+ msgid "Events for %1$s through %2$s"
3260
+ msgstr "Tapahtumat aikavälillä %1$s - %2$s"
3261
+
3262
+ #: ../public/template-tags/loop.php:171
3263
+ msgid "Events for "
3264
+ msgstr "Tapahtumat "
3265
+
3266
+ #: ../public/template-tags/options.php:20
3267
+ #, php-format
3268
+ msgid "Your current Events URL is %s"
3269
+ msgstr "Nykyinen tapahtuma URL on %s"
3270
+
3271
+ #: ../public/template-tags/options.php:31
3272
+ #, php-format
3273
+ msgid ""
3274
+ "You <strong>cannot</strong> use the same slug as above. The above should "
3275
+ "ideally be plural, and this singular.<br />Your single Event URL is like: %s"
3276
+ msgstr "Et <strong>voi</strong> käyttää samaa osoitetta kuin edellä. Edellä olevan tulisi mieluiten olla monikko, ja tämän yksikkö. <br /> Sinun yksittäisen tapahtuman URL on muotoa: %s"
3277
+
3278
+ #: ../views/single-event.php:23
3279
+ msgid "&laquo; All Events"
3280
+ msgstr "&laquo; Kaikki tapahtumat"
3281
+
3282
+ #: ../views/single-event.php:42 ../views/single-event.php:73
3283
+ msgid "Event Navigation"
3284
+ msgstr "Tapahtumanavigaatio"
3285
+
3286
+ #: ../views/list/nav.php:16
3287
+ msgid "Events List Navigation"
3288
+ msgstr "Listanavigaatio"
3289
+
3290
+ #: ../views/list/single-event.php:76
3291
+ msgid "Find out more"
3292
+ msgstr "Lue lisää"
3293
+
3294
+ #: ../views/modules/bar.php:31 ../views/modules/bar.php:60
3295
+ msgid "Find Events"
3296
+ msgstr "Hae tapahtumista"
3297
+
3298
+ #: ../views/modules/bar.php:38
3299
+ msgid "Event Views Navigation"
3300
+ msgstr "Navigointinäkymä"
3301
+
3302
+ #: ../views/modules/bar.php:39
3303
+ msgid "View As"
3304
+ msgstr "Näytä"
3305
+
3306
+ #: ../views/month/nav.php:18
3307
+ msgid "Calendar Month Navigation"
3308
+ msgstr "Kuukausinavigaatio"
3309
+
3310
+ #: ../views/tickets/attendees-email.php:25
3311
+ msgid "Attendee List"
3312
+ msgstr "Osallistujalista"
3313
+
3314
+ #: ../views/tickets/email.php:39
3315
+ msgid "Your tickets"
3316
+ msgstr "Lippusi"
3317
+
3318
+ #: ../views/tickets/email.php:320
3319
+ msgid "Ticket Type"
3320
+ msgstr "Lipputyyppi"
3321
+
3322
+ #: ../views/tickets/email.php:324
3323
+ msgid "Purchaser"
3324
+ msgstr "Ostaja"
3325
+
lang/tribe-events-calendar-fr_FR.mo CHANGED
Binary file
lang/tribe-events-calendar-fr_FR.po CHANGED
@@ -5,21 +5,23 @@ 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-07-02 11:27-0800\n"
10
- "Last-Translator: Modern Tribe, Inc. <pro@tri.be>\n"
11
  "Language-Team: Dom Monhardt <thatsniceuk@gmail.com>\n"
12
  "Language: fr\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-Textdomain-Support: yes\n"
22
- "X-Generator: Poedit 1.5.5\n"
 
 
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  #
@@ -54,8 +56,9 @@ msgid "Created by:"
54
  msgstr "Crée par :"
55
 
56
  #: ../admin-views/events-audit-trail.php:51
 
57
  msgid "Audit Trail:"
58
- msgstr "Piste d'Audit"
59
 
60
  #: ../admin-views/events-meta-box.php:26
61
  msgid "Event Time &amp; Date"
@@ -79,7 +82,7 @@ msgstr "Événement sur toute la journée :"
79
  #
80
  #: ../admin-views/events-meta-box.php:39
81
  msgid "Start Date &amp; Time:"
82
- msgstr "Date de début &amp; et heure :"
83
 
84
  #: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
85
  msgid "YYYY-MM-DD"
@@ -118,7 +121,7 @@ msgstr "Symbole de la devise"
118
  #: ../admin-views/events-meta-box.php:122
119
  #: ../public/advanced-functions/meta.php:270
120
  msgid "Cost:"
121
- msgstr "Prix : "
122
 
123
  #: ../admin-views/events-meta-box.php:127
124
  msgid "Enter a 0 for events that are free or leave blank to hide the field."
@@ -128,27 +131,27 @@ msgstr ""
128
 
129
  #: ../admin-views/organizer-meta-box.php:12
130
  msgid "Organizer Name:"
131
- msgstr "Nom de l'organisateur : "
132
 
133
  #: ../admin-views/organizer-meta-box.php:19
134
  #: ../admin-views/venue-meta-box.php:93
135
  #: ../admin-views/tickets/attendees.php:39
136
- #: ../public/advanced-functions/meta.php:357
137
- #: ../public/advanced-functions/meta.php:419
138
  msgid "Phone:"
139
- msgstr "Téléphone : "
140
 
141
  #: ../admin-views/organizer-meta-box.php:23
142
  #: ../admin-views/venue-meta-box.php:97
143
  #: ../admin-views/tickets/attendees.php:45
144
- #: ../public/advanced-functions/meta.php:308
145
- #: ../public/advanced-functions/meta.php:383
146
- #: ../public/advanced-functions/meta.php:445
147
  msgid "Website:"
148
- msgstr "Site Web : "
149
 
150
  #: ../admin-views/organizer-meta-box.php:27
151
- #: ../public/advanced-functions/meta.php:432
152
  msgid "Email:"
153
  msgstr "Courriel :"
154
 
@@ -253,6 +256,8 @@ msgid ""
253
  "Only includes enough css to achieve complex layouts like calendar and week "
254
  "view."
255
  msgstr ""
 
 
256
 
257
  #: ../admin-views/tribe-options-display.php:60
258
  msgid "Full Styles"
@@ -261,6 +266,7 @@ msgstr "Styles complets"
261
  #: ../admin-views/tribe-options-display.php:62
262
  msgid "More detailed styling, tries to grab styles from your theme."
263
  msgstr ""
 
264
 
265
  #
266
  #: ../admin-views/tribe-options-display.php:64
@@ -269,7 +275,7 @@ msgstr "Styles d'événements Tribe"
269
 
270
  #: ../admin-views/tribe-options-display.php:66
271
  msgid "A fully designed and styled theme for your events pages."
272
- msgstr ""
273
 
274
  #
275
  #: ../admin-views/tribe-options-display.php:73
@@ -306,17 +312,25 @@ msgstr "Utilisez la barre de recherche d'événement"
306
  msgid "Check this to use the classic header."
307
  msgstr "Dé-cochez afin d'utiliser l'entête classic."
308
 
309
- #
310
  #: ../admin-views/tribe-options-display.php:105
 
 
 
 
 
 
 
 
 
311
  msgid "Advanced Template Settings"
312
  msgstr "Réglages avancés de Gabarit"
313
 
314
  #
315
- #: ../admin-views/tribe-options-display.php:109
316
  msgid "Add HTML before event content"
317
  msgstr "Ajouter le code HTML avant le contenu de l'événement"
318
 
319
- #: ../admin-views/tribe-options-display.php:110
320
  msgid ""
321
  "If you are familiar with HTML, you can add additional code before the event "
322
  "template. Some themes may require this to help with styling or layout."
@@ -326,11 +340,11 @@ msgstr ""
326
  "styles ou la mise en page."
327
 
328
  #
329
- #: ../admin-views/tribe-options-display.php:115
330
  msgid "Add HTML after event content"
331
  msgstr "Ajouter le code HTML après le contenu de l'événement"
332
 
333
- #: ../admin-views/tribe-options-display.php:116
334
  msgid ""
335
  "If you are familiar with HTML, you can add additional code after the event "
336
  "template. Some themes may require this to help with styling or layout."
@@ -362,7 +376,7 @@ msgid ""
362
  "meta, community events, ticket sales and more?"
363
  msgstr ""
364
  "Vous cherchez d'autres fonctionnalités comme les événements récurrents, meta "
365
- "personnalisés, community events, vente de billets et encore plus ? "
366
 
367
  #
368
  #: ../admin-views/tribe-options-general.php:28
@@ -640,9 +654,9 @@ msgid "FAQ"
640
  msgstr "FAQ"
641
 
642
  #: ../admin-views/tribe-options-help.php:79
643
- #: ../lib/the-events-calendar.class.php:743
644
- #: ../lib/the-events-calendar.class.php:3889
645
- #: ../lib/the-events-calendar.class.php:3980
646
  msgid "Help"
647
  msgstr "Aide"
648
 
@@ -664,6 +678,9 @@ msgid ""
664
  "and are already well on your way to creating a first event. Here are some "
665
  "basics we've found helpful for users jumping into it for the first time:"
666
  msgstr ""
 
 
 
667
 
668
  #: ../admin-views/tribe-options-help.php:102
669
  #, php-format
@@ -829,7 +846,7 @@ msgid "Not getting help?"
829
  msgstr ""
830
 
831
  #: ../admin-views/tribe-options-help.php:169
832
- #: ../lib/the-events-calendar.class.php:486
833
  #: ../lib/tribe-settings.class.php:135
834
  msgid "The Events Calendar"
835
  msgstr "The Events Calendar"
@@ -849,7 +866,7 @@ msgstr "Modern Tribe Inc"
849
 
850
  #: ../admin-views/tribe-options-help.php:175
851
  msgid "Requires:"
852
- msgstr "Config Requis:"
853
 
854
  #: ../admin-views/tribe-options-help.php:175
855
  msgid "WordPress "
@@ -908,9 +925,9 @@ msgid "Venue Name:"
908
  msgstr "Nom de la salle :"
909
 
910
  #: ../admin-views/venue-meta-box.php:27
911
- #: ../public/advanced-functions/meta.php:371
912
  msgid "Address:"
913
- msgstr "Adresse : "
914
 
915
  #: ../admin-views/venue-meta-box.php:31
916
  msgid "City:"
@@ -918,19 +935,19 @@ msgstr "Ville :"
918
 
919
  #: ../admin-views/venue-meta-box.php:35
920
  msgid "Country:"
921
- msgstr "Pays : "
922
 
923
  #: ../admin-views/venue-meta-box.php:73
924
  msgid "State or Province:"
925
- msgstr "Etat ou province : "
926
 
927
  #: ../admin-views/venue-meta-box.php:76
928
  msgid "Select a State:"
929
- msgstr "Sélectionner un Etat : "
930
 
931
  #: ../admin-views/venue-meta-box.php:89
932
  msgid "Postal Code:"
933
- msgstr "Code Postal : "
934
 
935
  #: ../admin-views/venue-meta-box.php:112 ../admin-views/venue-meta-box.php:134
936
  msgid "Show Google Map:"
@@ -942,15 +959,15 @@ msgstr "Afficher le lien Google Map "
942
 
943
  #: ../admin-views/widget-admin-list.php:11
944
  msgid "Title:"
945
- msgstr "Titre : "
946
 
947
  #: ../admin-views/widget-admin-list.php:16
948
  msgid "Show:"
949
- msgstr "Afficher : "
950
 
951
  #: ../admin-views/widget-admin-list.php:24
952
  msgid "Show widget only if there are upcoming events:"
953
- msgstr "Afficher le widget uniquement s'il y a des événements à venir : "
954
 
955
  #: ../admin-views/tickets/attendees.php:9 ../admin-views/tickets/list.php:41
956
  #: ../lib/tickets/tribe-tickets-pro.php:73
@@ -995,7 +1012,7 @@ msgstr "%d vendus sur %d"
995
 
996
  #: ../admin-views/tickets/attendees.php:81
997
  msgid "Tickets sold:"
998
- msgstr "Tickets vendus:"
999
 
1000
  #: ../admin-views/tickets/attendees.php:85
1001
  msgid "Checked in:"
@@ -1098,7 +1115,7 @@ msgstr "Titre du ticket :"
1098
 
1099
  #: ../admin-views/tickets/meta-box.php:103
1100
  msgid "Ticket Description:"
1101
- msgstr "Description du ticket : "
1102
 
1103
  #: ../admin-views/tickets/meta-box.php:112
1104
  msgid "Price:"
@@ -1123,28 +1140,28 @@ msgstr ""
1123
  "date de début/fin de vente, les tickets seront disponibles entre maintenant "
1124
  "jusqu'à la fin de l'événement."
1125
 
1126
- #: ../lib/the-events-calendar.class.php:491
1127
  msgid "month"
1128
  msgstr "mois"
1129
 
1130
- #: ../lib/the-events-calendar.class.php:492
1131
  msgid "upcoming"
1132
  msgstr "à venir"
1133
 
1134
- #: ../lib/the-events-calendar.class.php:493
1135
  msgid "past"
1136
  msgstr "terminé"
1137
 
1138
- #: ../lib/the-events-calendar.class.php:495
1139
  msgid "venue"
1140
  msgstr "lieu"
1141
 
1142
- #: ../lib/the-events-calendar.class.php:509
1143
  #, php-format
1144
  msgid "Initializing Tribe Events on %s"
1145
  msgstr "Initialisation de Tribe Events à %s"
1146
 
1147
- #: ../lib/the-events-calendar.class.php:622
1148
  #, php-format
1149
  msgid ""
1150
  "Your version of The Events Calendar is not up-to-date with one of your The "
@@ -1153,7 +1170,7 @@ msgstr ""
1153
  "Votre version de The Event Calendar n'est pas à jour avec un de vos module "
1154
  "de The Event Calendar. Veuillez %sMettre à jour.%s"
1155
 
1156
- #: ../lib/the-events-calendar.class.php:639
1157
  #, fuzzy, php-format
1158
  msgid ""
1159
  "The following plugins are out of date: <b>%s</b>. All add-ons contain "
@@ -1165,13 +1182,13 @@ msgstr ""
1165
  "Calendar et ne fonctionneront pas correctement à moins qu'ils soient jumelés "
1166
  "avec la version correspondante. %sBesoin d'une version précédente%s?"
1167
 
1168
- #: ../lib/the-events-calendar.class.php:703
1169
- #: ../lib/the-events-calendar.class.php:738
1170
- #: ../lib/the-events-calendar.class.php:740
1171
  msgid "Licenses"
1172
  msgstr "Licences"
1173
 
1174
- #: ../lib/the-events-calendar.class.php:707
1175
  #, fuzzy, php-format
1176
  msgid ""
1177
  "<p>The license key you received when completing your purchase from %s will "
@@ -1204,15 +1221,15 @@ msgstr ""
1204
  "affichée? Allez sur <a href=\"%s\">Tableau de Bord > Mises à jours</a> et "
1205
  "cliquez \"Vérifier à nouveau\".</p>"
1206
 
1207
- #: ../lib/the-events-calendar.class.php:730
1208
  msgid "General"
1209
  msgstr "Général"
1210
 
1211
- #: ../lib/the-events-calendar.class.php:731
1212
  msgid "Display"
1213
  msgstr "Affichage"
1214
 
1215
- #: ../lib/the-events-calendar.class.php:782
1216
  #, php-format
1217
  msgid ""
1218
  "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
@@ -1221,7 +1238,7 @@ msgstr ""
1221
  "Désolé, le plugin The Events Calendar requiert WordPress %s ou + . Mettez à "
1222
  "jour votre installation WordPress "
1223
 
1224
- #: ../lib/the-events-calendar.class.php:785
1225
  #, php-format
1226
  msgid ""
1227
  "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
@@ -1230,247 +1247,247 @@ msgstr ""
1230
  "Désolé, The Events Calendar nécessite PHP %s ou une version plus récente. "
1231
  "Voyez avec votre hébergeur pour voir comment vous pouvez changer ça. "
1232
 
1233
- #: ../lib/the-events-calendar.class.php:1000 ../lib/widget-list.class.php:151
1234
  #: ../public/template-tags/loop.php:137
1235
  msgid "Upcoming Events"
1236
  msgstr "Événements à venir "
1237
 
1238
- #: ../lib/the-events-calendar.class.php:1003
1239
  #: ../public/template-tags/loop.php:165
1240
  msgid "Past Events"
1241
  msgstr "Événements passés"
1242
 
1243
- #: ../lib/the-events-calendar.class.php:1008
1244
- #: ../lib/the-events-calendar.class.php:1015
1245
  #, php-format
1246
  msgid "Events for %s"
1247
  msgstr "Événements pour %s"
1248
 
1249
- #: ../lib/the-events-calendar.class.php:1010
1250
  msgid "Events this month"
1251
  msgstr "Événements du mois"
1252
 
1253
- #: ../lib/the-events-calendar.class.php:1022
1254
  #, php-format
1255
  msgid "Events at %s"
1256
  msgstr "Événements à %s"
1257
 
1258
- #: ../lib/the-events-calendar.class.php:1041
1259
  msgid "No description has been entered for this event."
1260
  msgstr "Aucune description n'a été rentrée pour cet événement. "
1261
 
1262
- #: ../lib/the-events-calendar.class.php:1303
1263
  msgid "category"
1264
  msgstr "catégorie"
1265
 
1266
- #: ../lib/the-events-calendar.class.php:1313
1267
  msgid "tag"
1268
  msgstr "Mot-clef"
1269
 
1270
- #: ../lib/the-events-calendar.class.php:1340
1271
- #: ../lib/the-events-calendar.class.php:3820
1272
- #: ../lib/the-events-calendar.class.php:3880
1273
  msgid "Events"
1274
  msgstr "Événements"
1275
 
1276
- #: ../lib/the-events-calendar.class.php:1341
1277
  msgid "Event"
1278
  msgstr "Evénément"
1279
 
1280
- #: ../lib/the-events-calendar.class.php:1342
1281
- #: ../lib/the-events-calendar.class.php:1355
1282
- #: ../lib/the-events-calendar.class.php:1368
1283
  msgid "Add New"
1284
  msgstr "Nouveau "
1285
 
1286
- #: ../lib/the-events-calendar.class.php:1343
1287
  msgid "Add New Event"
1288
  msgstr "Nouvel événement "
1289
 
1290
- #: ../lib/the-events-calendar.class.php:1344
1291
  msgid "Edit Event"
1292
  msgstr "Editer l'événement "
1293
 
1294
- #: ../lib/the-events-calendar.class.php:1345
1295
  msgid "New Event"
1296
  msgstr "Nouvel événement "
1297
 
1298
- #: ../lib/the-events-calendar.class.php:1346
1299
  msgid "View Event"
1300
  msgstr "Voir l'événement "
1301
 
1302
- #: ../lib/the-events-calendar.class.php:1347
1303
  msgid "Search Events"
1304
  msgstr "Rechercher des événements "
1305
 
1306
- #: ../lib/the-events-calendar.class.php:1348
1307
  msgid "No events found"
1308
  msgstr "Aucun événement "
1309
 
1310
- #: ../lib/the-events-calendar.class.php:1349
1311
  msgid "No events found in Trash"
1312
  msgstr "Aucun événement dans la corbeille "
1313
 
1314
- #: ../lib/the-events-calendar.class.php:1353
1315
- #: ../lib/the-events-calendar.class.php:1465
1316
  msgid "Venues"
1317
  msgstr "Lieux"
1318
 
1319
- #: ../lib/the-events-calendar.class.php:1354
1320
- #: ../public/advanced-functions/meta.php:331 ../views/tickets/email.php:343
1321
  msgid "Venue"
1322
  msgstr "Lieu"
1323
 
1324
- #: ../lib/the-events-calendar.class.php:1356
1325
  msgid "Add New Venue"
1326
  msgstr "Nouveau lieu"
1327
 
1328
- #: ../lib/the-events-calendar.class.php:1357
1329
  msgid "Edit Venue"
1330
  msgstr "Editer le lieu"
1331
 
1332
- #: ../lib/the-events-calendar.class.php:1358
1333
  msgid "New Venue"
1334
  msgstr "Nouveau Lieu"
1335
 
1336
- #: ../lib/the-events-calendar.class.php:1359
1337
  msgid "View Venue"
1338
  msgstr "Voir Lieu"
1339
 
1340
- #: ../lib/the-events-calendar.class.php:1360
1341
  msgid "Search Venues"
1342
  msgstr "Rechercher des lieux"
1343
 
1344
- #: ../lib/the-events-calendar.class.php:1361
1345
  msgid "No venue found"
1346
  msgstr "Aucun lieu trouvé"
1347
 
1348
- #: ../lib/the-events-calendar.class.php:1362
1349
  msgid "No venues found in Trash"
1350
  msgstr "Aucun lieu trouvé dans la poubelle"
1351
 
1352
- #: ../lib/the-events-calendar.class.php:1366
1353
- #: ../lib/the-events-calendar.class.php:1466
1354
  msgid "Organizers"
1355
  msgstr "Organisateurs"
1356
 
1357
- #: ../lib/the-events-calendar.class.php:1367
1358
- #: ../public/advanced-functions/meta.php:393 ../views/tickets/email.php:362
1359
  msgid "Organizer"
1360
  msgstr "Organisateur"
1361
 
1362
- #: ../lib/the-events-calendar.class.php:1369
1363
  msgid "Add New Organizer"
1364
  msgstr "Nouvel organisateur"
1365
 
1366
- #: ../lib/the-events-calendar.class.php:1370
1367
  msgid "Edit Organizer"
1368
  msgstr "Editer l'organisateur"
1369
 
1370
- #: ../lib/the-events-calendar.class.php:1371
1371
  msgid "New Organizer"
1372
  msgstr "Nouvel organisateur"
1373
 
1374
  #
1375
- #: ../lib/the-events-calendar.class.php:1372
1376
  msgid "View Organizer"
1377
  msgstr "Voir Organisateur"
1378
 
1379
- #: ../lib/the-events-calendar.class.php:1373
1380
  msgid "Search Organizers"
1381
  msgstr "Rechercher des organisateurs"
1382
 
1383
- #: ../lib/the-events-calendar.class.php:1374
1384
  msgid "No organizer found"
1385
  msgstr "Pas d'organisateurs"
1386
 
1387
- #: ../lib/the-events-calendar.class.php:1375
1388
  msgid "No organizers found in Trash"
1389
  msgstr "Aucun organisateur dans la Poubelle"
1390
 
1391
- #: ../lib/the-events-calendar.class.php:1379
1392
  #: ../lib/tribe-admin-events-list.class.php:217
1393
  msgid "Event Categories"
1394
  msgstr "Catégories d'événements"
1395
 
1396
- #: ../lib/the-events-calendar.class.php:1380
1397
- #: ../public/template-tags/general.php:276
1398
  msgid "Event Category"
1399
  msgstr "Catégorie de l'événement"
1400
 
1401
- #: ../lib/the-events-calendar.class.php:1381
1402
  msgid "Search Event Categories"
1403
  msgstr "Rechercher des catégories"
1404
 
1405
- #: ../lib/the-events-calendar.class.php:1382
1406
  msgid "All Event Categories"
1407
  msgstr "Toutes les catégories"
1408
 
1409
- #: ../lib/the-events-calendar.class.php:1383
1410
  msgid "Parent Event Category"
1411
  msgstr "Catégorie parente"
1412
 
1413
- #: ../lib/the-events-calendar.class.php:1384
1414
  msgid "Parent Event Category:"
1415
- msgstr "Catégorie parente : "
1416
 
1417
- #: ../lib/the-events-calendar.class.php:1385
1418
  msgid "Edit Event Category"
1419
  msgstr "Éditer la catégorie de l'événement "
1420
 
1421
- #: ../lib/the-events-calendar.class.php:1386
1422
  msgid "Update Event Category"
1423
  msgstr "Mettre à jour la catégories de l'événement "
1424
 
1425
- #: ../lib/the-events-calendar.class.php:1387
1426
  msgid "Add New Event Category"
1427
  msgstr "Nouvelle catégorie d'événement "
1428
 
1429
- #: ../lib/the-events-calendar.class.php:1388
1430
  msgid "New Event Category Name"
1431
  msgstr "Nouveau nom de la catégorie d'événement "
1432
 
1433
- #: ../lib/the-events-calendar.class.php:1404
1434
  #, php-format
1435
  msgid "Event updated. <a href=\"%s\">View event</a>"
1436
  msgstr "Événement mis à jour. <a href=\"%s\">Voir</a> "
1437
 
1438
- #: ../lib/the-events-calendar.class.php:1405
1439
- #: ../lib/the-events-calendar.class.php:1422
1440
- #: ../lib/the-events-calendar.class.php:1439
1441
- msgid "Custom field updated."
1442
- msgstr "Champ Personnalisé mis à jour. "
1443
-
1444
  #: ../lib/the-events-calendar.class.php:1406
1445
  #: ../lib/the-events-calendar.class.php:1423
1446
  #: ../lib/the-events-calendar.class.php:1440
 
 
 
 
 
 
1447
  msgid "Custom field deleted."
1448
  msgstr "Champ Personnalisé effacé. "
1449
 
1450
- #: ../lib/the-events-calendar.class.php:1407
1451
  msgid "Event updated."
1452
  msgstr "Événement mis à jour."
1453
 
1454
- #: ../lib/the-events-calendar.class.php:1409
1455
  #, php-format
1456
  msgid "Event restored to revision from %s"
1457
  msgstr "Evénement restauré à la dernière révision depuis %s"
1458
 
1459
- #: ../lib/the-events-calendar.class.php:1410
1460
  #, php-format
1461
  msgid "Event published. <a href=\"%s\">View event</a>"
1462
  msgstr "Événement publié. <a href=\"%s\">Voir</a> "
1463
 
1464
- #: ../lib/the-events-calendar.class.php:1411
1465
  msgid "Event saved."
1466
  msgstr "Événement enregistré"
1467
 
1468
- #: ../lib/the-events-calendar.class.php:1412
1469
  #, php-format
1470
  msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1471
  msgstr "Événement enregistré. <a href=\"%s\">Aperçu</a> "
1472
 
1473
- #: ../lib/the-events-calendar.class.php:1413
1474
  #, php-format
1475
  msgid ""
1476
  "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
@@ -1479,48 +1496,48 @@ msgstr ""
1479
  "Événement programmé pour le : <strong>%1$s</strong>. <a target=\"_blank\" "
1480
  "href=\"%2$s\">Aperçu</a> "
1481
 
1482
- #: ../lib/the-events-calendar.class.php:1415
1483
- #: ../lib/the-events-calendar.class.php:1432
1484
- #: ../lib/the-events-calendar.class.php:1449
1485
  msgid "M j, Y @ G:i"
1486
  msgstr "M j, A @ G:i "
1487
 
1488
- #: ../lib/the-events-calendar.class.php:1416
1489
  #, php-format
1490
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1491
  msgstr ""
1492
  "Brouillon de l'événement mis à jour. <a target=\"_blank\" href=\"%s"
1493
  "\">Aperçu</a> "
1494
 
1495
- #: ../lib/the-events-calendar.class.php:1421
1496
  #, php-format
1497
  msgid "Venue updated. <a href=\"%s\">View venue</a>"
1498
  msgstr "Lieu mis à jour <a href=\"%s\">Voir le lieu</a>"
1499
 
1500
- #: ../lib/the-events-calendar.class.php:1424
1501
  msgid "Venue updated."
1502
  msgstr "Lieu mis à jour"
1503
 
1504
- #: ../lib/the-events-calendar.class.php:1426
1505
  #, php-format
1506
  msgid "Venue restored to revision from %s"
1507
  msgstr "Lieu restauré à la dernière révision depuis %s"
1508
 
1509
- #: ../lib/the-events-calendar.class.php:1427
1510
  #, php-format
1511
  msgid "Venue published. <a href=\"%s\">View venue</a>"
1512
  msgstr "Lieu publié. <a href=\"%s\">Voir</a>"
1513
 
1514
- #: ../lib/the-events-calendar.class.php:1428
1515
  msgid "Venue saved."
1516
  msgstr "Lieu enregistré."
1517
 
1518
- #: ../lib/the-events-calendar.class.php:1429
1519
  #, php-format
1520
  msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1521
  msgstr "Lieu soumis. <a target=\"_blank\" href=\"%s\">Aperçu</a>"
1522
 
1523
- #: ../lib/the-events-calendar.class.php:1430
1524
  #, php-format
1525
  msgid ""
1526
  "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
@@ -1529,42 +1546,42 @@ msgstr ""
1529
  "Lieu prévu pour : <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1530
  "\">Aperçu</a>"
1531
 
1532
- #: ../lib/the-events-calendar.class.php:1433
1533
  #, php-format
1534
  msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1535
  msgstr ""
1536
  "Brouillon du lieu mis à jour. <a target=\"_blank\" href=\"%s\">Aperçu</a>"
1537
 
1538
- #: ../lib/the-events-calendar.class.php:1438
1539
  #, php-format
1540
  msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1541
  msgstr "Organisateur mis à jour. <a href=\"%s\">Voir</a> "
1542
 
1543
- #: ../lib/the-events-calendar.class.php:1441
1544
  msgid "Organizer updated."
1545
  msgstr "Organisateur mis à jour."
1546
 
1547
- #: ../lib/the-events-calendar.class.php:1443
1548
  #, php-format
1549
  msgid "Organizer restored to revision from %s"
1550
  msgstr "Organisateur restauré à la dernière révision depuis %s"
1551
 
1552
- #: ../lib/the-events-calendar.class.php:1444
1553
  #, php-format
1554
  msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1555
  msgstr "Organisateur publié. <a href=\"%s\">Voir</a>"
1556
 
1557
- #: ../lib/the-events-calendar.class.php:1445
1558
  msgid "Organizer saved."
1559
  msgstr "Organisateur enregistré."
1560
 
1561
- #: ../lib/the-events-calendar.class.php:1446
1562
  #, php-format
1563
  msgid ""
1564
  "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1565
  msgstr "Organisateur soumis. <a target=\"_blank\" href=\"%s\">Aperçu</a> "
1566
 
1567
- #: ../lib/the-events-calendar.class.php:1447
1568
  #, php-format
1569
  msgid ""
1570
  "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
@@ -1573,7 +1590,7 @@ msgstr ""
1573
  "Organisateur prévu pour : <strong>%1$s</strong>. <a target=\"_blank\" href="
1574
  "\"%2$s\">Aperçu</a>"
1575
 
1576
- #: ../lib/the-events-calendar.class.php:1450
1577
  #, php-format
1578
  msgid ""
1579
  "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
@@ -1582,111 +1599,111 @@ msgstr ""
1582
  "Brouillon de l'organisateur mis à jour. <a target=\"_blank\" href=\"%s"
1583
  "\">Aperçu</a>"
1584
 
1585
- #: ../lib/the-events-calendar.class.php:1491
1586
  msgid "Use Saved Venue:"
1587
- msgstr "Utiliser un lieu enregistré : "
1588
 
1589
- #: ../lib/the-events-calendar.class.php:1520
1590
  msgid "Use Saved Organizer:"
1591
  msgstr "Utiliser un organisateur déjà enregistré "
1592
 
1593
- #: ../lib/the-events-calendar.class.php:1556
1594
  msgid "Use New Venue"
1595
  msgstr "Utiliser un nouveau lieu"
1596
 
1597
  #
1598
- #: ../lib/the-events-calendar.class.php:1558
1599
  msgid "My Venues"
1600
  msgstr "Mes Salles"
1601
 
1602
  #
1603
- #: ../lib/the-events-calendar.class.php:1563
1604
  msgid "Available Venues"
1605
  msgstr "Salles disponibles"
1606
 
1607
  #
1608
- #: ../lib/the-events-calendar.class.php:1574
1609
  msgid "No saved venue exists."
1610
  msgstr "Il n'y a pas de salles existantes."
1611
 
1612
- #: ../lib/the-events-calendar.class.php:1608
1613
  msgid "Use New Organizer"
1614
  msgstr "Nouvel organisateur"
1615
 
1616
  #
1617
- #: ../lib/the-events-calendar.class.php:1610
1618
  msgid "My Organizers"
1619
  msgstr "Mes Organisateurs"
1620
 
1621
  #
1622
- #: ../lib/the-events-calendar.class.php:1615
1623
  msgid "Available Organizers"
1624
  msgstr "Organisateurs disponibles"
1625
 
1626
  #
1627
- #: ../lib/the-events-calendar.class.php:1626
1628
  msgid "No saved organizer exists."
1629
  msgstr "Il n'y a pas d'organisateurs existants."
1630
 
1631
- #: ../lib/the-events-calendar.class.php:1753
1632
  msgid "Next"
1633
  msgstr "Suivant"
1634
 
1635
- #: ../lib/the-events-calendar.class.php:1754
1636
  msgid "Prev"
1637
  msgstr "Précédent"
1638
 
1639
- #: ../lib/the-events-calendar.class.php:1755
1640
  msgid "Today"
1641
  msgstr "Aujourd'hui "
1642
 
1643
- #: ../lib/the-events-calendar.class.php:1756
1644
  msgid "Done"
1645
  msgstr "Terminé"
1646
 
1647
- #: ../lib/the-events-calendar.class.php:1965
1648
  msgid "Network"
1649
  msgstr "Réseau"
1650
 
1651
  #
1652
- #: ../lib/the-events-calendar.class.php:2902
1653
  msgid "Unnamed Venue"
1654
  msgstr "Salle non nommée"
1655
 
1656
  #
1657
- #: ../lib/the-events-calendar.class.php:2992
1658
  msgid "Unnamed Organizer"
1659
  msgstr "Organisateur non nommé"
1660
 
1661
- #: ../lib/the-events-calendar.class.php:3467
1662
  msgid "Event Options"
1663
  msgstr "Options de l'événement"
1664
 
1665
- #: ../lib/the-events-calendar.class.php:3469
1666
  msgid "Venue Information"
1667
  msgstr "Information sur le lieu"
1668
 
1669
- #: ../lib/the-events-calendar.class.php:3474
1670
  msgid "Organizer Information"
1671
  msgstr "A propos de l'organisateur"
1672
 
1673
- #: ../lib/the-events-calendar.class.php:3669
1674
  msgid "Support"
1675
  msgstr "Support"
1676
 
1677
- #: ../lib/the-events-calendar.class.php:3672
1678
  msgid "View All Add-Ons"
1679
  msgstr "Voir tous les Add-Ons "
1680
 
1681
- #: ../lib/the-events-calendar.class.php:3689
1682
  msgid "News from Modern Tribe"
1683
  msgstr "Actu de Modern Tribe"
1684
 
1685
- #: ../lib/the-events-calendar.class.php:3770
1686
  msgid "Additional Functionality"
1687
  msgstr "Fonctionnalité supplémentaire "
1688
 
1689
- #: ../lib/the-events-calendar.class.php:3775
1690
  msgid ""
1691
  "Looking for additional functionality including recurring events, ticket "
1692
  "sales, publicly submitted events, new views and more?"
@@ -1695,34 +1712,34 @@ msgstr ""
1695
  "\", \"Vente de tickets\", Événements publiques\", nouveaux modes "
1696
  "d'affichages et bien plus?"
1697
 
1698
- #: ../lib/the-events-calendar.class.php:3775
1699
  #, php-format
1700
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
1701
  msgstr "Visitez les <a href=\"%s\">Modules disponibles</a>."
1702
 
1703
  #
1704
- #: ../lib/the-events-calendar.class.php:3846
1705
- #: ../lib/the-events-calendar.class.php:3937
1706
  msgid "View Calendar"
1707
  msgstr "Afficher Calendrier"
1708
 
1709
  #
1710
- #: ../lib/the-events-calendar.class.php:3854
1711
  msgid "Add Event"
1712
  msgstr "Ajouter Événement"
1713
 
1714
  #
1715
- #: ../lib/the-events-calendar.class.php:3863
1716
  msgid "Edit Events"
1717
  msgstr "Modifier Événements"
1718
 
1719
- #: ../lib/the-events-calendar.class.php:3872
1720
- #: ../lib/the-events-calendar.class.php:3973
1721
  #: ../lib/tribe-settings.class.php:164
1722
  msgid "Settings"
1723
  msgstr "Préférences"
1724
 
1725
- #: ../lib/the-events-calendar.class.php:3908
1726
  #, php-format
1727
  msgid ""
1728
  "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
@@ -1732,40 +1749,47 @@ msgstr ""
1732
  "ici %s. Pour changer le permalien des événements, visitez %sÉvénements -> "
1733
  "Régalges%s."
1734
 
1735
- #: ../lib/the-events-calendar.class.php:3974
1736
  msgid "Calendar"
1737
  msgstr "Calendrier"
1738
 
1739
- #: ../lib/the-events-calendar.class.php:4037
1740
  msgid "List"
1741
  msgstr "Liste"
1742
 
1743
  #
1744
- #: ../lib/the-events-calendar.class.php:4048
1745
  msgid "Month"
1746
  msgstr "Mois"
1747
 
1748
- #
1749
  #: ../lib/the-events-calendar.class.php:4088
 
 
 
 
 
 
 
1750
  msgid "Date"
1751
  msgstr "Date"
1752
 
1753
  #
1754
- #: ../lib/the-events-calendar.class.php:4091
1755
  msgid "Events In"
1756
  msgstr "Événements dans"
1757
 
1758
  #
1759
- #: ../lib/the-events-calendar.class.php:4093
1760
  msgid "Events From"
1761
  msgstr "Événement de"
1762
 
1763
- #: ../lib/the-events-calendar.class.php:4276 ../views/list/nav.php:22
1764
  #: ../views/list/nav.php:28 ../views/list/nav.php:31
1765
  msgid "&laquo; Previous Events"
1766
  msgstr "&laquo; Événements précédents "
1767
 
1768
- #: ../lib/the-events-calendar.class.php:4277 ../views/list/nav.php:40
1769
  #: ../views/list/nav.php:43 ../views/list/nav.php:49
1770
  msgid "Next Events &raquo;"
1771
  msgstr "Prochains événements &raquo;"
@@ -1803,7 +1827,7 @@ msgstr "Tous %s"
1803
 
1804
  #
1805
  #: ../lib/tribe-app-shop.class.php:62 ../lib/tribe-app-shop.class.php:63
1806
- #: ../lib/tribe-app-shop.class.php:84
1807
  msgid "Event Add-Ons"
1808
  msgstr "Modules d'événement"
1809
 
@@ -1811,7 +1835,7 @@ msgstr "Modules d'événement"
1811
  msgid "Tribe"
1812
  msgstr "Tribe"
1813
 
1814
- #: ../lib/tribe-event-api.class.php:372 ../lib/tribe-view-helpers.class.php:44
1815
  #: ../public/template-tags/venue.php:240
1816
  msgid "United States"
1817
  msgstr "USA"
@@ -1950,7 +1974,7 @@ msgid "No previous events "
1950
  msgstr "Il n'y a pas d'anciens événements."
1951
 
1952
  #: ../lib/tribe-the-events-calendar-import.class.php:64
1953
- #, fuzzy, php-format
1954
  msgid ""
1955
  "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure "
1956
  "you have backed up before proceeding any further. You can easily <a href=\"%s"
@@ -1964,20 +1988,19 @@ msgid ""
1964
  "><br/> You have events that need to be migrated. Please visit the bottom of "
1965
  "the <a href=\"%s\">settings page</a> to perform the migration."
1966
  msgstr ""
1967
- "Bienvenue à Events 2.0! C'est une énorme mise à jour depuis la version "
1968
  "1.6.5. Merci de vous assurer d'avoir effectué vos sauvegardes avant de "
1969
  "continuer. Vous pouvez facilement <a href=\"%s\">revenir à l'ancienne "
1970
  "version</a> si vous sauvegardez en premier. Cette mise à jour comprend deux "
1971
  "grandes étapes, <a href=\"%s\">la migration des données</a> & et la mise à "
1972
- "jour de vos thèmes si necessaire. Il y a eu des changements significatifs "
1973
  "aux \"tags\" et fonctions des thèmes. Jettez un oeil au <a href=\"%s"
1974
  "\">parcours de mise à jour</a>avant de procéder et allez voir FAQ & et la "
1975
  "Base de connaissance depuis la <a href=\"%s\">page du support</a>. Si vous "
1976
  "découvrez The Events Calendar, vous pourriez vouloir lire notre<a href=\"%s"
1977
  "\">tour d'horizon pour les nouveaux utilisateurs</a>.<br/><br/> Certains "
1978
- "événements ont besoin de migrer. Merci de visite le bas de la <a href="
1979
- "\"options-general.php?page=tribe-events-calendar\">page des réglages</a> "
1980
- "pour effectuer la migration."
1981
 
1982
  #: ../lib/tribe-the-events-calendar-import.class.php:86
1983
  msgid "Upgrade from The Events Calendar"
@@ -2013,7 +2036,7 @@ msgstr "Champs inséré incomplet ou invalide"
2013
  #: ../lib/tribe-validate.class.php:78 ../lib/tribe-validate.class.php:110
2014
  #: ../lib/tribe-validate.class.php:116
2015
  msgid "Field ID:"
2016
- msgstr "Id du Champ:"
2017
 
2018
  #: ../lib/tribe-validate.class.php:109
2019
  msgid "Non-existant field validation function passed"
@@ -2681,63 +2704,63 @@ msgstr "Mayotte"
2681
 
2682
  #: ../lib/tribe-view-helpers.class.php:184
2683
  msgid "Mexico"
2684
- msgstr ""
2685
 
2686
  #: ../lib/tribe-view-helpers.class.php:185
2687
  msgid "Micronesia, Federated States Of"
2688
- msgstr ""
2689
 
2690
  #: ../lib/tribe-view-helpers.class.php:186
2691
  msgid "Moldova, Republic Of"
2692
- msgstr ""
2693
 
2694
  #: ../lib/tribe-view-helpers.class.php:187
2695
  msgid "Monaco"
2696
- msgstr ""
2697
 
2698
  #: ../lib/tribe-view-helpers.class.php:188
2699
  msgid "Mongolia"
2700
- msgstr ""
2701
 
2702
  #: ../lib/tribe-view-helpers.class.php:189
2703
  msgid "Montenegro"
2704
- msgstr ""
2705
 
2706
  #: ../lib/tribe-view-helpers.class.php:190
2707
  msgid "Montserrat"
2708
- msgstr ""
2709
 
2710
  #: ../lib/tribe-view-helpers.class.php:191
2711
  msgid "Morocco"
2712
- msgstr ""
2713
 
2714
  #: ../lib/tribe-view-helpers.class.php:192
2715
  msgid "Mozambique"
2716
- msgstr ""
2717
 
2718
  #: ../lib/tribe-view-helpers.class.php:193
2719
  msgid "Myanmar"
2720
- msgstr ""
2721
 
2722
  #: ../lib/tribe-view-helpers.class.php:194
2723
  msgid "Namibia"
2724
- msgstr ""
2725
 
2726
  #: ../lib/tribe-view-helpers.class.php:195
2727
  msgid "Nauru"
2728
- msgstr ""
2729
 
2730
  #: ../lib/tribe-view-helpers.class.php:196
2731
  msgid "Nepal"
2732
- msgstr ""
2733
 
2734
  #: ../lib/tribe-view-helpers.class.php:197
2735
  msgid "Netherlands"
2736
- msgstr ""
2737
 
2738
  #: ../lib/tribe-view-helpers.class.php:198
2739
  msgid "Netherlands Antilles"
2740
- msgstr ""
2741
 
2742
  #: ../lib/tribe-view-helpers.class.php:199
2743
  msgid "New Caledonia"
@@ -2749,447 +2772,447 @@ msgstr "Nouvelle Zélande"
2749
 
2750
  #: ../lib/tribe-view-helpers.class.php:201
2751
  msgid "Nicaragua"
2752
- msgstr ""
2753
 
2754
  #: ../lib/tribe-view-helpers.class.php:202
2755
  msgid "Niger"
2756
- msgstr ""
2757
 
2758
  #: ../lib/tribe-view-helpers.class.php:203
2759
  msgid "Nigeria"
2760
- msgstr ""
2761
 
2762
  #: ../lib/tribe-view-helpers.class.php:204
2763
  msgid "Niue"
2764
- msgstr ""
2765
 
2766
  #: ../lib/tribe-view-helpers.class.php:205
2767
  msgid "Norfolk Island"
2768
- msgstr ""
2769
 
2770
  #: ../lib/tribe-view-helpers.class.php:206
2771
  msgid "Northern Mariana Islands"
2772
- msgstr ""
2773
 
2774
  #: ../lib/tribe-view-helpers.class.php:207
2775
  msgid "Norway"
2776
- msgstr ""
2777
 
2778
  #: ../lib/tribe-view-helpers.class.php:208
2779
  msgid "Oman"
2780
- msgstr ""
2781
 
2782
  #: ../lib/tribe-view-helpers.class.php:209
2783
  msgid "Pakistan"
2784
- msgstr ""
2785
 
2786
  #: ../lib/tribe-view-helpers.class.php:210
2787
  msgid "Palau"
2788
- msgstr ""
2789
 
2790
  #: ../lib/tribe-view-helpers.class.php:211
2791
  msgid "Panama"
2792
- msgstr ""
2793
 
2794
  #: ../lib/tribe-view-helpers.class.php:212
2795
  msgid "Papua New Guinea"
2796
- msgstr ""
2797
 
2798
  #: ../lib/tribe-view-helpers.class.php:213
2799
  msgid "Paraguay"
2800
- msgstr ""
2801
 
2802
  #: ../lib/tribe-view-helpers.class.php:214
2803
  msgid "Peru"
2804
- msgstr ""
2805
 
2806
  #: ../lib/tribe-view-helpers.class.php:215
2807
  msgid "Philippines"
2808
- msgstr ""
2809
 
2810
  #: ../lib/tribe-view-helpers.class.php:216
2811
  msgid "Pitcairn"
2812
- msgstr ""
2813
 
2814
  #: ../lib/tribe-view-helpers.class.php:217
2815
  msgid "Poland"
2816
- msgstr ""
2817
 
2818
  #: ../lib/tribe-view-helpers.class.php:218
2819
  msgid "Portugal"
2820
- msgstr ""
2821
 
2822
  #: ../lib/tribe-view-helpers.class.php:219
2823
  msgid "Puerto Rico"
2824
- msgstr ""
2825
 
2826
  #: ../lib/tribe-view-helpers.class.php:220
2827
  msgid "Qatar"
2828
- msgstr ""
2829
 
2830
  #: ../lib/tribe-view-helpers.class.php:221
2831
  msgid "Reunion"
2832
- msgstr ""
2833
 
2834
  #: ../lib/tribe-view-helpers.class.php:222
2835
  msgid "Romania"
2836
- msgstr ""
2837
 
2838
  #: ../lib/tribe-view-helpers.class.php:223
2839
  msgid "Russian Federation"
2840
- msgstr ""
2841
 
2842
  #: ../lib/tribe-view-helpers.class.php:224
2843
  msgid "Rwanda"
2844
- msgstr ""
2845
 
2846
  #: ../lib/tribe-view-helpers.class.php:225
2847
  msgid "Saint Kitts And Nevis"
2848
- msgstr ""
2849
 
2850
  #: ../lib/tribe-view-helpers.class.php:226
2851
  msgid "Saint Lucia"
2852
- msgstr ""
2853
 
2854
  #: ../lib/tribe-view-helpers.class.php:227
2855
  msgid "Saint Vincent And The Grenadines"
2856
- msgstr ""
2857
 
2858
  #: ../lib/tribe-view-helpers.class.php:228
2859
  msgid "Samoa"
2860
- msgstr ""
2861
 
2862
  #: ../lib/tribe-view-helpers.class.php:229
2863
  msgid "San Marino"
2864
- msgstr ""
2865
 
2866
  #: ../lib/tribe-view-helpers.class.php:230
2867
  msgid "Sao Tome And Principe"
2868
- msgstr ""
2869
 
2870
  #: ../lib/tribe-view-helpers.class.php:231
2871
  msgid "Saudi Arabia"
2872
- msgstr ""
2873
 
2874
  #: ../lib/tribe-view-helpers.class.php:232
2875
  msgid "Senegal"
2876
- msgstr ""
2877
 
2878
  #: ../lib/tribe-view-helpers.class.php:233
2879
  msgid "Serbia"
2880
- msgstr ""
2881
 
2882
  #: ../lib/tribe-view-helpers.class.php:234
2883
  msgid "Seychelles"
2884
- msgstr ""
2885
 
2886
  #: ../lib/tribe-view-helpers.class.php:235
2887
  msgid "Sierra Leone"
2888
- msgstr ""
2889
 
2890
  #: ../lib/tribe-view-helpers.class.php:236
2891
  msgid "Singapore"
2892
- msgstr ""
2893
 
2894
  #: ../lib/tribe-view-helpers.class.php:237
2895
  msgid "Slovakia (Slovak Republic)"
2896
- msgstr ""
2897
 
2898
  #: ../lib/tribe-view-helpers.class.php:238
2899
  msgid "Slovenia"
2900
- msgstr ""
2901
 
2902
  #: ../lib/tribe-view-helpers.class.php:239
2903
  msgid "Solomon Islands"
2904
- msgstr ""
2905
 
2906
  #: ../lib/tribe-view-helpers.class.php:240
2907
  msgid "Somalia"
2908
- msgstr ""
2909
 
2910
  #: ../lib/tribe-view-helpers.class.php:241
2911
  msgid "South Africa"
2912
- msgstr ""
2913
 
2914
  #: ../lib/tribe-view-helpers.class.php:242
2915
  msgid "South Georgia, South Sandwich Islands"
2916
- msgstr ""
2917
 
2918
  #: ../lib/tribe-view-helpers.class.php:243
2919
  msgid "Spain"
2920
- msgstr ""
2921
 
2922
  #: ../lib/tribe-view-helpers.class.php:244
2923
  msgid "Sri Lanka"
2924
- msgstr ""
2925
 
2926
  #: ../lib/tribe-view-helpers.class.php:245
2927
  msgid "St. Helena"
2928
- msgstr ""
2929
 
2930
  #: ../lib/tribe-view-helpers.class.php:246
2931
  msgid "St. Pierre And Miquelon"
2932
- msgstr ""
2933
 
2934
  #: ../lib/tribe-view-helpers.class.php:247
2935
  msgid "Sudan"
2936
- msgstr ""
2937
 
2938
  #: ../lib/tribe-view-helpers.class.php:248
2939
  msgid "Suriname"
2940
- msgstr ""
2941
 
2942
  #: ../lib/tribe-view-helpers.class.php:249
2943
  msgid "Svalbard And Jan Mayen Islands"
2944
- msgstr ""
2945
 
2946
  #: ../lib/tribe-view-helpers.class.php:250
2947
  msgid "Swaziland"
2948
- msgstr ""
2949
 
2950
  #: ../lib/tribe-view-helpers.class.php:251
2951
  msgid "Sweden"
2952
- msgstr ""
2953
 
2954
  #: ../lib/tribe-view-helpers.class.php:252
2955
  msgid "Switzerland"
2956
- msgstr ""
2957
 
2958
  #: ../lib/tribe-view-helpers.class.php:253
2959
  msgid "Syrian Arab Republic"
2960
- msgstr ""
2961
 
2962
  #: ../lib/tribe-view-helpers.class.php:254
2963
  msgid "Taiwan"
2964
- msgstr ""
2965
 
2966
  #: ../lib/tribe-view-helpers.class.php:255
2967
  msgid "Tajikistan"
2968
- msgstr ""
2969
 
2970
  #: ../lib/tribe-view-helpers.class.php:256
2971
  msgid "Tanzania, United Republic Of"
2972
- msgstr ""
2973
 
2974
  #: ../lib/tribe-view-helpers.class.php:257
2975
  msgid "Thailand"
2976
- msgstr ""
2977
 
2978
  #: ../lib/tribe-view-helpers.class.php:258
2979
  msgid "Togo"
2980
- msgstr ""
2981
 
2982
  #: ../lib/tribe-view-helpers.class.php:259
2983
  msgid "Tokelau"
2984
- msgstr ""
2985
 
2986
  #: ../lib/tribe-view-helpers.class.php:260
2987
  msgid "Tonga"
2988
- msgstr ""
2989
 
2990
  #: ../lib/tribe-view-helpers.class.php:261
2991
  msgid "Trinidad And Tobago"
2992
- msgstr ""
2993
 
2994
  #: ../lib/tribe-view-helpers.class.php:262
2995
  msgid "Tunisia"
2996
- msgstr ""
2997
 
2998
  #: ../lib/tribe-view-helpers.class.php:263
2999
  msgid "Turkey"
3000
- msgstr ""
3001
 
3002
  #: ../lib/tribe-view-helpers.class.php:264
3003
  msgid "Turkmenistan"
3004
- msgstr ""
3005
 
3006
  #: ../lib/tribe-view-helpers.class.php:265
3007
  msgid "Turks And Caicos Islands"
3008
- msgstr ""
3009
 
3010
  #: ../lib/tribe-view-helpers.class.php:266
3011
  msgid "Tuvalu"
3012
- msgstr ""
3013
 
3014
  #: ../lib/tribe-view-helpers.class.php:267
3015
  msgid "Uganda"
3016
- msgstr ""
3017
 
3018
  #: ../lib/tribe-view-helpers.class.php:268
3019
  msgid "Ukraine"
3020
- msgstr ""
3021
 
3022
  #: ../lib/tribe-view-helpers.class.php:269
3023
  msgid "United Arab Emirates"
3024
- msgstr ""
3025
 
3026
  #: ../lib/tribe-view-helpers.class.php:270
3027
  msgid "United Kingdom"
3028
- msgstr ""
3029
 
3030
  #: ../lib/tribe-view-helpers.class.php:271
3031
  msgid "United States Minor Outlying Islands"
3032
- msgstr ""
3033
 
3034
  #: ../lib/tribe-view-helpers.class.php:272
3035
  msgid "Uruguay"
3036
- msgstr ""
3037
 
3038
  #: ../lib/tribe-view-helpers.class.php:273
3039
  msgid "Uzbekistan"
3040
- msgstr ""
3041
 
3042
  #: ../lib/tribe-view-helpers.class.php:274
3043
  msgid "Vanuatu"
3044
- msgstr ""
3045
 
3046
  #: ../lib/tribe-view-helpers.class.php:275
3047
  msgid "Venezuela"
3048
- msgstr ""
3049
 
3050
  #: ../lib/tribe-view-helpers.class.php:276
3051
  msgid "Viet Nam"
3052
- msgstr ""
3053
 
3054
  #: ../lib/tribe-view-helpers.class.php:277
3055
  msgid "Virgin Islands (British)"
3056
- msgstr ""
3057
 
3058
  #: ../lib/tribe-view-helpers.class.php:278
3059
  msgid "Virgin Islands (U.S.)"
3060
- msgstr ""
3061
 
3062
  #: ../lib/tribe-view-helpers.class.php:279
3063
  msgid "Wallis And Futuna Islands"
3064
- msgstr ""
3065
 
3066
  #: ../lib/tribe-view-helpers.class.php:280
3067
  msgid "Western Sahara"
3068
- msgstr ""
3069
 
3070
  #: ../lib/tribe-view-helpers.class.php:281
3071
  msgid "Yemen"
3072
- msgstr ""
3073
 
3074
  #: ../lib/tribe-view-helpers.class.php:282
3075
  msgid "Zambia"
3076
- msgstr ""
3077
 
3078
  #: ../lib/tribe-view-helpers.class.php:283
3079
  msgid "Zimbabwe"
3080
- msgstr ""
3081
 
3082
  #: ../lib/tribe-view-helpers.class.php:308
3083
  msgid "Alabama"
3084
- msgstr ""
3085
 
3086
  #: ../lib/tribe-view-helpers.class.php:309
3087
  msgid "Alaska"
3088
- msgstr ""
3089
 
3090
  #: ../lib/tribe-view-helpers.class.php:310
3091
  msgid "Arizona"
3092
- msgstr ""
3093
 
3094
  #: ../lib/tribe-view-helpers.class.php:311
3095
  msgid "Arkansas"
3096
- msgstr ""
3097
 
3098
  #: ../lib/tribe-view-helpers.class.php:312
3099
  msgid "California"
3100
- msgstr ""
3101
 
3102
  #: ../lib/tribe-view-helpers.class.php:313
3103
  msgid "Colorado"
3104
- msgstr ""
3105
 
3106
  #: ../lib/tribe-view-helpers.class.php:314
3107
  msgid "Connecticut"
3108
- msgstr ""
3109
 
3110
  #: ../lib/tribe-view-helpers.class.php:315
3111
  msgid "Delaware"
3112
- msgstr ""
3113
 
3114
  #: ../lib/tribe-view-helpers.class.php:316
3115
  msgid "District of Columbia"
3116
- msgstr ""
3117
 
3118
  #: ../lib/tribe-view-helpers.class.php:317
3119
  msgid "Florida"
3120
- msgstr ""
3121
 
3122
  #: ../lib/tribe-view-helpers.class.php:319
3123
  msgid "Hawaii"
3124
- msgstr ""
3125
 
3126
  #: ../lib/tribe-view-helpers.class.php:320
3127
  msgid "Idaho"
3128
- msgstr ""
3129
 
3130
  #: ../lib/tribe-view-helpers.class.php:321
3131
  msgid "Illinois"
3132
- msgstr ""
3133
 
3134
  #: ../lib/tribe-view-helpers.class.php:322
3135
  msgid "Indiana"
3136
- msgstr ""
3137
 
3138
  #: ../lib/tribe-view-helpers.class.php:323
3139
  msgid "Iowa"
3140
- msgstr ""
3141
 
3142
  #: ../lib/tribe-view-helpers.class.php:324
3143
  msgid "Kansas"
3144
- msgstr ""
3145
 
3146
  #: ../lib/tribe-view-helpers.class.php:325
3147
  msgid "Kentucky"
3148
- msgstr ""
3149
 
3150
  #: ../lib/tribe-view-helpers.class.php:326
3151
  msgid "Louisiana"
3152
- msgstr ""
3153
 
3154
  #: ../lib/tribe-view-helpers.class.php:327
3155
  msgid "Maine"
3156
- msgstr ""
3157
 
3158
  #: ../lib/tribe-view-helpers.class.php:328
3159
  msgid "Maryland"
3160
- msgstr ""
3161
 
3162
  #: ../lib/tribe-view-helpers.class.php:329
3163
  msgid "Massachusetts"
3164
- msgstr ""
3165
 
3166
  #: ../lib/tribe-view-helpers.class.php:330
3167
  msgid "Michigan"
3168
- msgstr ""
3169
 
3170
  #: ../lib/tribe-view-helpers.class.php:331
3171
  msgid "Minnesota"
3172
- msgstr ""
3173
 
3174
  #: ../lib/tribe-view-helpers.class.php:332
3175
  msgid "Mississippi"
3176
- msgstr ""
3177
 
3178
  #: ../lib/tribe-view-helpers.class.php:333
3179
  msgid "Missouri"
3180
- msgstr ""
3181
 
3182
  #: ../lib/tribe-view-helpers.class.php:334
3183
  msgid "Montana"
3184
- msgstr ""
3185
 
3186
  #: ../lib/tribe-view-helpers.class.php:335
3187
  msgid "Nebraska"
3188
- msgstr ""
3189
 
3190
  #: ../lib/tribe-view-helpers.class.php:336
3191
  msgid "Nevada"
3192
- msgstr ""
3193
 
3194
  #: ../lib/tribe-view-helpers.class.php:337
3195
  msgid "New Hampshire"
@@ -3209,75 +3232,75 @@ msgstr "New York"
3209
 
3210
  #: ../lib/tribe-view-helpers.class.php:341
3211
  msgid "North Carolina"
3212
- msgstr ""
3213
 
3214
  #: ../lib/tribe-view-helpers.class.php:342
3215
  msgid "North Dakota"
3216
- msgstr ""
3217
 
3218
  #: ../lib/tribe-view-helpers.class.php:343
3219
  msgid "Ohio"
3220
- msgstr ""
3221
 
3222
  #: ../lib/tribe-view-helpers.class.php:344
3223
  msgid "Oklahoma"
3224
- msgstr ""
3225
 
3226
  #: ../lib/tribe-view-helpers.class.php:345
3227
  msgid "Oregon"
3228
- msgstr ""
3229
 
3230
  #: ../lib/tribe-view-helpers.class.php:346
3231
  msgid "Pennsylvania"
3232
- msgstr ""
3233
 
3234
  #: ../lib/tribe-view-helpers.class.php:347
3235
  msgid "Rhode Island"
3236
- msgstr ""
3237
 
3238
  #: ../lib/tribe-view-helpers.class.php:348
3239
  msgid "South Carolina"
3240
- msgstr ""
3241
 
3242
  #: ../lib/tribe-view-helpers.class.php:349
3243
  msgid "South Dakota"
3244
- msgstr ""
3245
 
3246
  #: ../lib/tribe-view-helpers.class.php:350
3247
  msgid "Tennessee"
3248
- msgstr ""
3249
 
3250
  #: ../lib/tribe-view-helpers.class.php:351
3251
  msgid "Texas"
3252
- msgstr ""
3253
 
3254
  #: ../lib/tribe-view-helpers.class.php:352
3255
  msgid "Utah"
3256
- msgstr ""
3257
 
3258
  #: ../lib/tribe-view-helpers.class.php:353
3259
  msgid "Vermont"
3260
- msgstr ""
3261
 
3262
  #: ../lib/tribe-view-helpers.class.php:354
3263
  msgid "Virginia"
3264
- msgstr ""
3265
 
3266
  #: ../lib/tribe-view-helpers.class.php:355
3267
  msgid "Washington"
3268
- msgstr ""
3269
 
3270
  #: ../lib/tribe-view-helpers.class.php:356
3271
  msgid "West Virginia"
3272
- msgstr ""
3273
 
3274
  #: ../lib/tribe-view-helpers.class.php:357
3275
  msgid "Wisconsin"
3276
- msgstr ""
3277
 
3278
  #: ../lib/tribe-view-helpers.class.php:358
3279
  msgid "Wyoming"
3280
- msgstr ""
3281
 
3282
  #
3283
  #: ../lib/widget-list.class.php:21
@@ -3288,15 +3311,15 @@ msgstr "Un widget qui affiche les événements à venir."
3288
  msgid "Events List"
3289
  msgstr "Liste d'événements"
3290
 
3291
- #: ../lib/widget-list.class.php:114
3292
  msgid "View All Events"
3293
  msgstr "Voir tous les événements"
3294
 
3295
- #: ../lib/widget-list.class.php:117
3296
  msgid "There are no upcoming events at this time."
3297
  msgstr "Aucun événement à venir prochainement."
3298
 
3299
- #: ../lib/template-classes/month.php:75
3300
  #, php-format
3301
  msgid ""
3302
  "There were no results found for <strong>\"%s\"</strong> this month. Try "
@@ -3412,17 +3435,17 @@ msgstr "participants"
3412
  msgid "Attendee List for: %s"
3413
  msgstr "Liste de participants pour : %s"
3414
 
3415
- #: ../lib/tickets/tribe-tickets.php:292
3416
  msgid "Your ticket has been saved."
3417
  msgstr "Votre ticket à été sauvegardé."
3418
 
3419
- #: ../lib/tickets/tribe-tickets.php:369
3420
  msgid "Your ticket has been deleted."
3421
  msgstr "Votre ticket à été supprimé."
3422
 
3423
  #: ../public/advanced-functions/meta.php:35
3424
  msgid "Start:"
3425
- msgstr "Début : "
3426
 
3427
  #: ../public/advanced-functions/meta.php:42
3428
  msgid "End:"
@@ -3430,7 +3453,7 @@ msgstr "Fin :"
3430
 
3431
  #: ../public/advanced-functions/meta.php:51
3432
  msgid "Date:"
3433
- msgstr "Date"
3434
 
3435
  #: ../public/advanced-functions/meta.php:233
3436
  msgid "Click to view a Google Map"
@@ -3446,15 +3469,15 @@ msgid "Details"
3446
  msgstr "Détails"
3447
 
3448
  #
3449
- #: ../public/advanced-functions/meta.php:295
3450
  msgid "Event Tags:"
3451
  msgstr "Mots-clefs de l'événement :"
3452
 
3453
- #: ../public/advanced-functions/meta.php:321
3454
  msgid "Origin:"
3455
  msgstr "Origine :"
3456
 
3457
- #: ../public/advanced-functions/meta.php:458
3458
  msgid "Event:"
3459
  msgstr "Evénément :"
3460
 
@@ -3463,29 +3486,29 @@ msgstr "Evénément :"
3463
  msgid "Category"
3464
  msgstr "Catégorie"
3465
 
3466
- #: ../public/template-tags/general.php:306
3467
  msgid "Tags:"
3468
  msgstr "Mots-clefs :"
3469
 
3470
  #
3471
- #: ../public/template-tags/general.php:392
3472
  msgid "Loading Events"
3473
  msgstr "Chargement des événements"
3474
 
3475
- #: ../public/template-tags/general.php:531
3476
  msgid "Free"
3477
  msgstr "Gratuit"
3478
 
3479
  #
3480
- #: ../public/template-tags/general.php:703
3481
  msgid "Recurring Event"
3482
  msgstr "Événement récurrent"
3483
 
3484
- #: ../public/template-tags/general.php:706
3485
  msgid "(See all)"
3486
  msgstr "(Voir tous)"
3487
 
3488
- #: ../public/template-tags/general.php:982
3489
  #, php-format
3490
  msgid "Calendar powered by %sThe Events Calendar%s"
3491
  msgstr "Calendrier créer avec %sThe Events Calendar%s"
@@ -3503,7 +3526,7 @@ msgstr "Événements pour %1$s jusqu'à %2$s"
3503
  #
3504
  #: ../public/template-tags/loop.php:171
3505
  msgid "Events for "
3506
- msgstr "Événements pour"
3507
 
3508
  #: ../public/template-tags/options.php:20
3509
  #, php-format
@@ -3516,8 +3539,8 @@ msgid ""
3516
  "You <strong>cannot</strong> use the same slug as above. The above should "
3517
  "ideally be plural, and this singular.<br />Your single Event URL is like: %s"
3518
  msgstr ""
3519
- "Vous <strong>ne pouvez pas</strong> utiliser le même permalien que ci-"
3520
- "dessus. Le permalien ci-dessus devrait être au pluriel et celui-ci devrait "
3521
  "être singulier. <br />Votre URL d'événement unique est: %s"
3522
 
3523
  #
@@ -3540,7 +3563,7 @@ msgid "Find out more"
3540
  msgstr "Découvrir plus d'infos"
3541
 
3542
  #
3543
- #: ../views/modules/bar.php:31 ../views/modules/bar.php:60
3544
  msgid "Find Events"
3545
  msgstr "Trouver des événements"
3546
 
5
  msgstr ""
6
  "Project-Id-Version: The Events Calendar\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-09-18 15:57+0100\n"
9
+ "PO-Revision-Date: 2013-09-18 16:31+0100\n"
10
+ "Last-Translator: Benoît Burgener <benoit.burgener@gmail.com>\n"
11
  "Language-Team: Dom Monhardt <thatsniceuk@gmail.com>\n"
12
  "Language: fr\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-Textdomain-Support: yes\n"
22
+ "X-Generator: Poedit 1.5.7\n"
23
+ "X-Language: fr_CH\n"
24
+ "X-Source-Language: en\n"
25
  "X-Poedit-SearchPath-0: ..\n"
26
 
27
  #
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
 
63
  #: ../admin-views/events-meta-box.php:26
64
  msgid "Event Time &amp; Date"
82
  #
83
  #: ../admin-views/events-meta-box.php:39
84
  msgid "Start Date &amp; Time:"
85
+ msgstr "Date de début &amp; et heure :"
86
 
87
  #: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
88
  msgid "YYYY-MM-DD"
121
  #: ../admin-views/events-meta-box.php:122
122
  #: ../public/advanced-functions/meta.php:270
123
  msgid "Cost:"
124
+ msgstr "Prix :"
125
 
126
  #: ../admin-views/events-meta-box.php:127
127
  msgid "Enter a 0 for events that are free or leave blank to hide the field."
131
 
132
  #: ../admin-views/organizer-meta-box.php:12
133
  msgid "Organizer Name:"
134
+ msgstr "Nom de l'organisateur :"
135
 
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:358
140
+ #: ../public/advanced-functions/meta.php:420
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:309
148
+ #: ../public/advanced-functions/meta.php:384
149
+ #: ../public/advanced-functions/meta.php:446
150
  msgid "Website:"
151
+ msgstr "Site Web :"
152
 
153
  #: ../admin-views/organizer-meta-box.php:27
154
+ #: ../public/advanced-functions/meta.php:433
155
  msgid "Email:"
156
  msgstr "Courriel :"
157
 
256
  "Only includes enough css to achieve complex layouts like calendar and week "
257
  "view."
258
  msgstr ""
259
+ "Inclus uniquement le CSS nécessaire pour afficher les éléments complexes "
260
+ "comme la vue calendrier ou par semaine."
261
 
262
  #: ../admin-views/tribe-options-display.php:60
263
  msgid "Full Styles"
266
  #: ../admin-views/tribe-options-display.php:62
267
  msgid "More detailed styling, tries to grab styles from your theme."
268
  msgstr ""
269
+ "Apparence plus détaillée, essaie de réutiliser le style de votre thème."
270
 
271
  #
272
  #: ../admin-views/tribe-options-display.php:64
275
 
276
  #: ../admin-views/tribe-options-display.php:66
277
  msgid "A fully designed and styled theme for your events pages."
278
+ msgstr "Apparence complète pour les événements."
279
 
280
  #
281
  #: ../admin-views/tribe-options-display.php:73
312
  msgid "Check this to use the classic header."
313
  msgstr "Dé-cochez afin d'utiliser l'entête classic."
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 calendrier"
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 que les 3 événements par défaut de la vue par mois."
322
+
323
+ #
324
+ #: ../admin-views/tribe-options-display.php:113
325
  msgid "Advanced Template Settings"
326
  msgstr "Réglages avancés de Gabarit"
327
 
328
  #
329
+ #: ../admin-views/tribe-options-display.php:117
330
  msgid "Add HTML before event content"
331
  msgstr "Ajouter le code HTML avant le contenu de l'événement"
332
 
333
+ #: ../admin-views/tribe-options-display.php:118
334
  msgid ""
335
  "If you are familiar with HTML, you can add additional code before the event "
336
  "template. Some themes may require this to help with styling or layout."
340
  "styles ou la mise en page."
341
 
342
  #
343
+ #: ../admin-views/tribe-options-display.php:123
344
  msgid "Add HTML after event content"
345
  msgstr "Ajouter le code HTML après le contenu de l'événement"
346
 
347
+ #: ../admin-views/tribe-options-display.php:124
348
  msgid ""
349
  "If you are familiar with HTML, you can add additional code after the event "
350
  "template. Some themes may require this to help with styling or layout."
376
  "meta, community events, ticket sales and more?"
377
  msgstr ""
378
  "Vous cherchez d'autres fonctionnalités comme les événements récurrents, meta "
379
+ "personnalisés, community évents, vente de billets et encore plus ? "
380
 
381
  #
382
  #: ../admin-views/tribe-options-general.php:28
654
  msgstr "FAQ"
655
 
656
  #: ../admin-views/tribe-options-help.php:79
657
+ #: ../lib/the-events-calendar.class.php:744
658
+ #: ../lib/the-events-calendar.class.php:3905
659
+ #: ../lib/the-events-calendar.class.php:3998
660
  msgid "Help"
661
  msgstr "Aide"
662
 
678
  "and are already well on your way to creating a first event. Here are some "
679
  "basics we've found helpful for users jumping into it for the first time:"
680
  msgstr ""
681
+ "Si ceci est votre première utilisation de The Events Calendar, vous êtes sur "
682
+ "la bonne voie pour créer votre premier événement. Voici quelques "
683
+ "explications de base que nous avons trouvé utile de partager aux débutants."
684
 
685
  #: ../admin-views/tribe-options-help.php:102
686
  #, php-format
846
  msgstr ""
847
 
848
  #: ../admin-views/tribe-options-help.php:169
849
+ #: ../lib/the-events-calendar.class.php:487
850
  #: ../lib/tribe-settings.class.php:135
851
  msgid "The Events Calendar"
852
  msgstr "The Events Calendar"
866
 
867
  #: ../admin-views/tribe-options-help.php:175
868
  msgid "Requires:"
869
+ msgstr "Requiert :"
870
 
871
  #: ../admin-views/tribe-options-help.php:175
872
  msgid "WordPress "
925
  msgstr "Nom de la salle :"
926
 
927
  #: ../admin-views/venue-meta-box.php:27
928
+ #: ../public/advanced-functions/meta.php:372
929
  msgid "Address:"
930
+ msgstr "Adresse :"
931
 
932
  #: ../admin-views/venue-meta-box.php:31
933
  msgid "City:"
935
 
936
  #: ../admin-views/venue-meta-box.php:35
937
  msgid "Country:"
938
+ msgstr "Pays :"
939
 
940
  #: ../admin-views/venue-meta-box.php:73
941
  msgid "State or Province:"
942
+ msgstr "Etat ou province :"
943
 
944
  #: ../admin-views/venue-meta-box.php:76
945
  msgid "Select a State:"
946
+ msgstr "Sélectionner un Etat :"
947
 
948
  #: ../admin-views/venue-meta-box.php:89
949
  msgid "Postal Code:"
950
+ msgstr "Code Postal :"
951
 
952
  #: ../admin-views/venue-meta-box.php:112 ../admin-views/venue-meta-box.php:134
953
  msgid "Show Google Map:"
959
 
960
  #: ../admin-views/widget-admin-list.php:11
961
  msgid "Title:"
962
+ msgstr "Titre :"
963
 
964
  #: ../admin-views/widget-admin-list.php:16
965
  msgid "Show:"
966
+ msgstr "Afficher :"
967
 
968
  #: ../admin-views/widget-admin-list.php:24
969
  msgid "Show widget only if there are upcoming events:"
970
+ msgstr "Afficher le widget uniquement s'il y a des événements à venir :"
971
 
972
  #: ../admin-views/tickets/attendees.php:9 ../admin-views/tickets/list.php:41
973
  #: ../lib/tickets/tribe-tickets-pro.php:73
1012
 
1013
  #: ../admin-views/tickets/attendees.php:81
1014
  msgid "Tickets sold:"
1015
+ msgstr "Tickets vendus :"
1016
 
1017
  #: ../admin-views/tickets/attendees.php:85
1018
  msgid "Checked in:"
1115
 
1116
  #: ../admin-views/tickets/meta-box.php:103
1117
  msgid "Ticket Description:"
1118
+ msgstr "Description du ticket :"
1119
 
1120
  #: ../admin-views/tickets/meta-box.php:112
1121
  msgid "Price:"
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:492
1144
  msgid "month"
1145
  msgstr "mois"
1146
 
1147
+ #: ../lib/the-events-calendar.class.php:493
1148
  msgid "upcoming"
1149
  msgstr "à venir"
1150
 
1151
+ #: ../lib/the-events-calendar.class.php:494
1152
  msgid "past"
1153
  msgstr "terminé"
1154
 
1155
+ #: ../lib/the-events-calendar.class.php:496
1156
  msgid "venue"
1157
  msgstr "lieu"
1158
 
1159
+ #: ../lib/the-events-calendar.class.php:510
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:623
1165
  #, php-format
1166
  msgid ""
1167
  "Your version of The Events Calendar is not up-to-date with one of your The "
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:640
1174
  #, fuzzy, php-format
1175
  msgid ""
1176
  "The following plugins are out of date: <b>%s</b>. All add-ons contain "
1182
  "Calendar et ne fonctionneront pas correctement à moins qu'ils soient jumelés "
1183
  "avec la version correspondante. %sBesoin d'une version précédente%s?"
1184
 
1185
+ #: ../lib/the-events-calendar.class.php:704
1186
+ #: ../lib/the-events-calendar.class.php:739
1187
+ #: ../lib/the-events-calendar.class.php:741
1188
  msgid "Licenses"
1189
  msgstr "Licences"
1190
 
1191
+ #: ../lib/the-events-calendar.class.php:708
1192
  #, fuzzy, php-format
1193
  msgid ""
1194
  "<p>The license key you received when completing your purchase from %s will "
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:731
1225
  msgid "General"
1226
  msgstr "Général"
1227
 
1228
+ #: ../lib/the-events-calendar.class.php:732
1229
  msgid "Display"
1230
  msgstr "Affichage"
1231
 
1232
+ #: ../lib/the-events-calendar.class.php:783
1233
  #, php-format
1234
  msgid ""
1235
  "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
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:786
1242
  #, php-format
1243
  msgid ""
1244
  "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
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:1001 ../lib/widget-list.class.php:169
1251
  #: ../public/template-tags/loop.php:137
1252
  msgid "Upcoming Events"
1253
  msgstr "Événements à venir "
1254
 
1255
+ #: ../lib/the-events-calendar.class.php:1004
1256
  #: ../public/template-tags/loop.php:165
1257
  msgid "Past Events"
1258
  msgstr "Événements passés"
1259
 
1260
+ #: ../lib/the-events-calendar.class.php:1009
1261
+ #: ../lib/the-events-calendar.class.php:1016
1262
  #, php-format
1263
  msgid "Events for %s"
1264
  msgstr "Événements pour %s"
1265
 
1266
+ #: ../lib/the-events-calendar.class.php:1011
1267
  msgid "Events this month"
1268
  msgstr "Événements du mois"
1269
 
1270
+ #: ../lib/the-events-calendar.class.php:1023
1271
  #, php-format
1272
  msgid "Events at %s"
1273
  msgstr "Événements à %s"
1274
 
1275
+ #: ../lib/the-events-calendar.class.php:1042
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:1304
1280
  msgid "category"
1281
  msgstr "catégorie"
1282
 
1283
+ #: ../lib/the-events-calendar.class.php:1314
1284
  msgid "tag"
1285
  msgstr "Mot-clef"
1286
 
1287
+ #: ../lib/the-events-calendar.class.php:1341
1288
+ #: ../lib/the-events-calendar.class.php:3835
1289
+ #: ../lib/the-events-calendar.class.php:3896
1290
  msgid "Events"
1291
  msgstr "Événements"
1292
 
1293
+ #: ../lib/the-events-calendar.class.php:1342
1294
  msgid "Event"
1295
  msgstr "Evénément"
1296
 
1297
+ #: ../lib/the-events-calendar.class.php:1343
1298
+ #: ../lib/the-events-calendar.class.php:1356
1299
+ #: ../lib/the-events-calendar.class.php:1369
1300
  msgid "Add New"
1301
  msgstr "Nouveau "
1302
 
1303
+ #: ../lib/the-events-calendar.class.php:1344
1304
  msgid "Add New Event"
1305
  msgstr "Nouvel événement "
1306
 
1307
+ #: ../lib/the-events-calendar.class.php:1345
1308
  msgid "Edit Event"
1309
  msgstr "Editer l'événement "
1310
 
1311
+ #: ../lib/the-events-calendar.class.php:1346
1312
  msgid "New Event"
1313
  msgstr "Nouvel événement "
1314
 
1315
+ #: ../lib/the-events-calendar.class.php:1347
1316
  msgid "View Event"
1317
  msgstr "Voir l'événement "
1318
 
1319
+ #: ../lib/the-events-calendar.class.php:1348
1320
  msgid "Search Events"
1321
  msgstr "Rechercher des événements "
1322
 
1323
+ #: ../lib/the-events-calendar.class.php:1349
1324
  msgid "No events found"
1325
  msgstr "Aucun événement "
1326
 
1327
+ #: ../lib/the-events-calendar.class.php:1350
1328
  msgid "No events found in Trash"
1329
  msgstr "Aucun événement dans la corbeille "
1330
 
1331
+ #: ../lib/the-events-calendar.class.php:1354
1332
+ #: ../lib/the-events-calendar.class.php:1466
1333
  msgid "Venues"
1334
  msgstr "Lieux"
1335
 
1336
+ #: ../lib/the-events-calendar.class.php:1355
1337
+ #: ../public/advanced-functions/meta.php:332 ../views/tickets/email.php:343
1338
  msgid "Venue"
1339
  msgstr "Lieu"
1340
 
1341
+ #: ../lib/the-events-calendar.class.php:1357
1342
  msgid "Add New Venue"
1343
  msgstr "Nouveau lieu"
1344
 
1345
+ #: ../lib/the-events-calendar.class.php:1358
1346
  msgid "Edit Venue"
1347
  msgstr "Editer le lieu"
1348
 
1349
+ #: ../lib/the-events-calendar.class.php:1359
1350
  msgid "New Venue"
1351
  msgstr "Nouveau Lieu"
1352
 
1353
+ #: ../lib/the-events-calendar.class.php:1360
1354
  msgid "View Venue"
1355
  msgstr "Voir Lieu"
1356
 
1357
+ #: ../lib/the-events-calendar.class.php:1361
1358
  msgid "Search Venues"
1359
  msgstr "Rechercher des lieux"
1360
 
1361
+ #: ../lib/the-events-calendar.class.php:1362
1362
  msgid "No venue found"
1363
  msgstr "Aucun lieu trouvé"
1364
 
1365
+ #: ../lib/the-events-calendar.class.php:1363
1366
  msgid "No venues found in Trash"
1367
  msgstr "Aucun lieu trouvé dans la poubelle"
1368
 
1369
+ #: ../lib/the-events-calendar.class.php:1367
1370
+ #: ../lib/the-events-calendar.class.php:1467
1371
  msgid "Organizers"
1372
  msgstr "Organisateurs"
1373
 
1374
+ #: ../lib/the-events-calendar.class.php:1368
1375
+ #: ../public/advanced-functions/meta.php:394 ../views/tickets/email.php:362
1376
  msgid "Organizer"
1377
  msgstr "Organisateur"
1378
 
1379
+ #: ../lib/the-events-calendar.class.php:1370
1380
  msgid "Add New Organizer"
1381
  msgstr "Nouvel organisateur"
1382
 
1383
+ #: ../lib/the-events-calendar.class.php:1371
1384
  msgid "Edit Organizer"
1385
  msgstr "Editer l'organisateur"
1386
 
1387
+ #: ../lib/the-events-calendar.class.php:1372
1388
  msgid "New Organizer"
1389
  msgstr "Nouvel organisateur"
1390
 
1391
  #
1392
+ #: ../lib/the-events-calendar.class.php:1373
1393
  msgid "View Organizer"
1394
  msgstr "Voir Organisateur"
1395
 
1396
+ #: ../lib/the-events-calendar.class.php:1374
1397
  msgid "Search Organizers"
1398
  msgstr "Rechercher des organisateurs"
1399
 
1400
+ #: ../lib/the-events-calendar.class.php:1375
1401
  msgid "No organizer found"
1402
  msgstr "Pas d'organisateurs"
1403
 
1404
+ #: ../lib/the-events-calendar.class.php:1376
1405
  msgid "No organizers found in Trash"
1406
  msgstr "Aucun organisateur dans la Poubelle"
1407
 
1408
+ #: ../lib/the-events-calendar.class.php:1380
1409
  #: ../lib/tribe-admin-events-list.class.php:217
1410
  msgid "Event Categories"
1411
  msgstr "Catégories d'événements"
1412
 
1413
+ #: ../lib/the-events-calendar.class.php:1381
1414
+ #: ../public/template-tags/general.php:277
1415
  msgid "Event Category"
1416
  msgstr "Catégorie de l'événement"
1417
 
1418
+ #: ../lib/the-events-calendar.class.php:1382
1419
  msgid "Search Event Categories"
1420
  msgstr "Rechercher des catégories"
1421
 
1422
+ #: ../lib/the-events-calendar.class.php:1383
1423
  msgid "All Event Categories"
1424
  msgstr "Toutes les catégories"
1425
 
1426
+ #: ../lib/the-events-calendar.class.php:1384
1427
  msgid "Parent Event Category"
1428
  msgstr "Catégorie parente"
1429
 
1430
+ #: ../lib/the-events-calendar.class.php:1385
1431
  msgid "Parent Event Category:"
1432
+ msgstr "Catégorie parente :"
1433
 
1434
+ #: ../lib/the-events-calendar.class.php:1386
1435
  msgid "Edit Event Category"
1436
  msgstr "Éditer la catégorie de l'événement "
1437
 
1438
+ #: ../lib/the-events-calendar.class.php:1387
1439
  msgid "Update Event Category"
1440
  msgstr "Mettre à jour la catégories de l'événement "
1441
 
1442
+ #: ../lib/the-events-calendar.class.php:1388
1443
  msgid "Add New Event Category"
1444
  msgstr "Nouvelle catégorie d'événement "
1445
 
1446
+ #: ../lib/the-events-calendar.class.php:1389
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:1405
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:1406
1456
  #: ../lib/the-events-calendar.class.php:1423
1457
  #: ../lib/the-events-calendar.class.php:1440
1458
+ msgid "Custom field updated."
1459
+ msgstr "Champ Personnalisé mis à jour. "
1460
+
1461
+ #: ../lib/the-events-calendar.class.php:1407
1462
+ #: ../lib/the-events-calendar.class.php:1424
1463
+ #: ../lib/the-events-calendar.class.php:1441
1464
  msgid "Custom field deleted."
1465
  msgstr "Champ Personnalisé effacé. "
1466
 
1467
+ #: ../lib/the-events-calendar.class.php:1408
1468
  msgid "Event updated."
1469
  msgstr "Événement mis à jour."
1470
 
1471
+ #: ../lib/the-events-calendar.class.php:1410
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:1411
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:1412
1482
  msgid "Event saved."
1483
  msgstr "Événement enregistré"
1484
 
1485
+ #: ../lib/the-events-calendar.class.php:1413
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:1414
1491
  #, php-format
1492
  msgid ""
1493
  "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
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:1416
1500
+ #: ../lib/the-events-calendar.class.php:1433
1501
+ #: ../lib/the-events-calendar.class.php:1450
1502
  msgid "M j, Y @ G:i"
1503
  msgstr "M j, A @ G:i "
1504
 
1505
+ #: ../lib/the-events-calendar.class.php:1417
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:1422
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:1425
1518
  msgid "Venue updated."
1519
  msgstr "Lieu mis à jour"
1520
 
1521
+ #: ../lib/the-events-calendar.class.php:1427
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:1428
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:1429
1532
  msgid "Venue saved."
1533
  msgstr "Lieu enregistré."
1534
 
1535
+ #: ../lib/the-events-calendar.class.php:1430
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:1431
1541
  #, php-format
1542
  msgid ""
1543
  "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
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:1434
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:1439
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:1442
1561
  msgid "Organizer updated."
1562
  msgstr "Organisateur mis à jour."
1563
 
1564
+ #: ../lib/the-events-calendar.class.php:1444
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:1445
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:1446
1575
  msgid "Organizer saved."
1576
  msgstr "Organisateur enregistré."
1577
 
1578
+ #: ../lib/the-events-calendar.class.php:1447
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:1448
1585
  #, php-format
1586
  msgid ""
1587
  "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
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:1451
1594
  #, php-format
1595
  msgid ""
1596
  "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
1599
  "Brouillon de l'organisateur mis à jour. <a target=\"_blank\" href=\"%s"
1600
  "\">Aperçu</a>"
1601
 
1602
+ #: ../lib/the-events-calendar.class.php:1492
1603
  msgid "Use Saved Venue:"
1604
+ msgstr "Utiliser un lieu enregistré :"
1605
 
1606
+ #: ../lib/the-events-calendar.class.php:1521
1607
  msgid "Use Saved Organizer:"
1608
  msgstr "Utiliser un organisateur déjà enregistré "
1609
 
1610
+ #: ../lib/the-events-calendar.class.php:1557
1611
  msgid "Use New Venue"
1612
  msgstr "Utiliser un nouveau lieu"
1613
 
1614
  #
1615
+ #: ../lib/the-events-calendar.class.php:1559
1616
  msgid "My Venues"
1617
  msgstr "Mes Salles"
1618
 
1619
  #
1620
+ #: ../lib/the-events-calendar.class.php:1564
1621
  msgid "Available Venues"
1622
  msgstr "Salles disponibles"
1623
 
1624
  #
1625
+ #: ../lib/the-events-calendar.class.php:1575
1626
  msgid "No saved venue exists."
1627
  msgstr "Il n'y a pas de salles existantes."
1628
 
1629
+ #: ../lib/the-events-calendar.class.php:1609
1630
  msgid "Use New Organizer"
1631
  msgstr "Nouvel organisateur"
1632
 
1633
  #
1634
+ #: ../lib/the-events-calendar.class.php:1611
1635
  msgid "My Organizers"
1636
  msgstr "Mes Organisateurs"
1637
 
1638
  #
1639
+ #: ../lib/the-events-calendar.class.php:1616
1640
  msgid "Available Organizers"
1641
  msgstr "Organisateurs disponibles"
1642
 
1643
  #
1644
+ #: ../lib/the-events-calendar.class.php:1627
1645
  msgid "No saved organizer exists."
1646
  msgstr "Il n'y a pas d'organisateurs existants."
1647
 
1648
+ #: ../lib/the-events-calendar.class.php:1754
1649
  msgid "Next"
1650
  msgstr "Suivant"
1651
 
1652
+ #: ../lib/the-events-calendar.class.php:1755
1653
  msgid "Prev"
1654
  msgstr "Précédent"
1655
 
1656
+ #: ../lib/the-events-calendar.class.php:1756
1657
  msgid "Today"
1658
  msgstr "Aujourd'hui "
1659
 
1660
+ #: ../lib/the-events-calendar.class.php:1757
1661
  msgid "Done"
1662
  msgstr "Terminé"
1663
 
1664
+ #: ../lib/the-events-calendar.class.php:1966
1665
  msgid "Network"
1666
  msgstr "Réseau"
1667
 
1668
  #
1669
+ #: ../lib/the-events-calendar.class.php:2914
1670
  msgid "Unnamed Venue"
1671
  msgstr "Salle non nommée"
1672
 
1673
  #
1674
+ #: ../lib/the-events-calendar.class.php:3004
1675
  msgid "Unnamed Organizer"
1676
  msgstr "Organisateur non nommé"
1677
 
1678
+ #: ../lib/the-events-calendar.class.php:3481
1679
  msgid "Event Options"
1680
  msgstr "Options de l'événement"
1681
 
1682
+ #: ../lib/the-events-calendar.class.php:3483
1683
  msgid "Venue Information"
1684
  msgstr "Information sur le lieu"
1685
 
1686
+ #: ../lib/the-events-calendar.class.php:3488
1687
  msgid "Organizer Information"
1688
  msgstr "A propos de l'organisateur"
1689
 
1690
+ #: ../lib/the-events-calendar.class.php:3684
1691
  msgid "Support"
1692
  msgstr "Support"
1693
 
1694
+ #: ../lib/the-events-calendar.class.php:3687
1695
  msgid "View All Add-Ons"
1696
  msgstr "Voir tous les Add-Ons "
1697
 
1698
+ #: ../lib/the-events-calendar.class.php:3704
1699
  msgid "News from Modern Tribe"
1700
  msgstr "Actu de Modern Tribe"
1701
 
1702
+ #: ../lib/the-events-calendar.class.php:3785
1703
  msgid "Additional Functionality"
1704
  msgstr "Fonctionnalité supplémentaire "
1705
 
1706
+ #: ../lib/the-events-calendar.class.php:3790
1707
  msgid ""
1708
  "Looking for additional functionality including recurring events, ticket "
1709
  "sales, publicly submitted events, new views and more?"
1712
  "\", \"Vente de tickets\", Événements publiques\", nouveaux modes "
1713
  "d'affichages et bien plus?"
1714
 
1715
+ #: ../lib/the-events-calendar.class.php:3790
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:3862
1722
+ #: ../lib/the-events-calendar.class.php:3953
1723
  msgid "View Calendar"
1724
  msgstr "Afficher Calendrier"
1725
 
1726
  #
1727
+ #: ../lib/the-events-calendar.class.php:3870
1728
  msgid "Add Event"
1729
  msgstr "Ajouter Événement"
1730
 
1731
  #
1732
+ #: ../lib/the-events-calendar.class.php:3879
1733
  msgid "Edit Events"
1734
  msgstr "Modifier Événements"
1735
 
1736
+ #: ../lib/the-events-calendar.class.php:3888
1737
+ #: ../lib/the-events-calendar.class.php:3989
1738
  #: ../lib/tribe-settings.class.php:164
1739
  msgid "Settings"
1740
  msgstr "Préférences"
1741
 
1742
+ #: ../lib/the-events-calendar.class.php:3924
1743
  #, php-format
1744
  msgid ""
1745
  "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
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:3990
1753
  msgid "Calendar"
1754
  msgstr "Calendrier"
1755
 
1756
+ #: ../lib/the-events-calendar.class.php:4056
1757
  msgid "List"
1758
  msgstr "Liste"
1759
 
1760
  #
1761
+ #: ../lib/the-events-calendar.class.php:4067
1762
  msgid "Month"
1763
  msgstr "Mois"
1764
 
1765
+ #: ../lib/the-events-calendar.class.php:4086
1766
  #: ../lib/the-events-calendar.class.php:4088
1767
+ #, fuzzy
1768
+ msgid "Search"
1769
+ msgstr "Rechercher des événements "
1770
+
1771
+ #
1772
+ #: ../lib/the-events-calendar.class.php:4108
1773
+ #: ../lib/the-events-calendar.class.php:4120
1774
  msgid "Date"
1775
  msgstr "Date"
1776
 
1777
  #
1778
+ #: ../lib/the-events-calendar.class.php:4111
1779
  msgid "Events In"
1780
  msgstr "Événements dans"
1781
 
1782
  #
1783
+ #: ../lib/the-events-calendar.class.php:4113
1784
  msgid "Events From"
1785
  msgstr "Événement de"
1786
 
1787
+ #: ../lib/the-events-calendar.class.php:4296 ../views/list/nav.php:22
1788
  #: ../views/list/nav.php:28 ../views/list/nav.php:31
1789
  msgid "&laquo; Previous Events"
1790
  msgstr "&laquo; Événements précédents "
1791
 
1792
+ #: ../lib/the-events-calendar.class.php:4297 ../views/list/nav.php:40
1793
  #: ../views/list/nav.php:43 ../views/list/nav.php:49
1794
  msgid "Next Events &raquo;"
1795
  msgstr "Prochains événements &raquo;"
1827
 
1828
  #
1829
  #: ../lib/tribe-app-shop.class.php:62 ../lib/tribe-app-shop.class.php:63
1830
+ #: ../lib/tribe-app-shop.class.php:87
1831
  msgid "Event Add-Ons"
1832
  msgstr "Modules d'événement"
1833
 
1835
  msgid "Tribe"
1836
  msgstr "Tribe"
1837
 
1838
+ #: ../lib/tribe-event-api.class.php:374 ../lib/tribe-view-helpers.class.php:44
1839
  #: ../public/template-tags/venue.php:240
1840
  msgid "United States"
1841
  msgstr "USA"
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 ""
1979
  "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure "
1980
  "you have backed up before proceeding any further. You can easily <a href=\"%s"
1988
  "><br/> You have events that need to be migrated. Please visit the bottom of "
1989
  "the <a href=\"%s\">settings page</a> to perform the migration."
1990
  msgstr ""
1991
+ "Bienvenue à Events 2.0! C'est une énorme mise à jour depuis la version "
1992
  "1.6.5. Merci de vous assurer d'avoir effectué vos sauvegardes avant de "
1993
  "continuer. Vous pouvez facilement <a href=\"%s\">revenir à l'ancienne "
1994
  "version</a> si vous sauvegardez en premier. Cette mise à jour comprend deux "
1995
  "grandes étapes, <a href=\"%s\">la migration des données</a> & et la mise à "
1996
+ "jour de vos thèmes si nécessaire. Il y a eu des changements significatifs "
1997
  "aux \"tags\" et fonctions des thèmes. Jettez un oeil au <a href=\"%s"
1998
  "\">parcours de mise à jour</a>avant de procéder et allez voir FAQ & et la "
1999
  "Base de connaissance depuis la <a href=\"%s\">page du support</a>. Si vous "
2000
  "découvrez The Events Calendar, vous pourriez vouloir lire notre<a href=\"%s"
2001
  "\">tour d'horizon pour les nouveaux utilisateurs</a>.<br/><br/> Certains "
2002
+ "événements ont besoin de migrer. Merci de visite le bas de la <a href=\"%s"
2003
+ "\">page des réglages</a> pour effectuer la migration."
 
2004
 
2005
  #: ../lib/tribe-the-events-calendar-import.class.php:86
2006
  msgid "Upgrade from The Events Calendar"
2036
  #: ../lib/tribe-validate.class.php:78 ../lib/tribe-validate.class.php:110
2037
  #: ../lib/tribe-validate.class.php:116
2038
  msgid "Field ID:"
2039
+ msgstr "Identifiant du Champ :"
2040
 
2041
  #: ../lib/tribe-validate.class.php:109
2042
  msgid "Non-existant field validation function passed"
2704
 
2705
  #: ../lib/tribe-view-helpers.class.php:184
2706
  msgid "Mexico"
2707
+ msgstr "Mexico"
2708
 
2709
  #: ../lib/tribe-view-helpers.class.php:185
2710
  msgid "Micronesia, Federated States Of"
2711
+ msgstr "Micronesia, Federated States Of"
2712
 
2713
  #: ../lib/tribe-view-helpers.class.php:186
2714
  msgid "Moldova, Republic Of"
2715
+ msgstr "Moldova, Republic Of"
2716
 
2717
  #: ../lib/tribe-view-helpers.class.php:187
2718
  msgid "Monaco"
2719
+ msgstr "Monaco"
2720
 
2721
  #: ../lib/tribe-view-helpers.class.php:188
2722
  msgid "Mongolia"
2723
+ msgstr "Mongolia"
2724
 
2725
  #: ../lib/tribe-view-helpers.class.php:189
2726
  msgid "Montenegro"
2727
+ msgstr "Montenegro"
2728
 
2729
  #: ../lib/tribe-view-helpers.class.php:190
2730
  msgid "Montserrat"
2731
+ msgstr "Montserrat"
2732
 
2733
  #: ../lib/tribe-view-helpers.class.php:191
2734
  msgid "Morocco"
2735
+ msgstr "Morocco"
2736
 
2737
  #: ../lib/tribe-view-helpers.class.php:192
2738
  msgid "Mozambique"
2739
+ msgstr "Mozambique"
2740
 
2741
  #: ../lib/tribe-view-helpers.class.php:193
2742
  msgid "Myanmar"
2743
+ msgstr "Myanmar"
2744
 
2745
  #: ../lib/tribe-view-helpers.class.php:194
2746
  msgid "Namibia"
2747
+ msgstr "Namibia"
2748
 
2749
  #: ../lib/tribe-view-helpers.class.php:195
2750
  msgid "Nauru"
2751
+ msgstr "Nauru"
2752
 
2753
  #: ../lib/tribe-view-helpers.class.php:196
2754
  msgid "Nepal"
2755
+ msgstr "Nepal"
2756
 
2757
  #: ../lib/tribe-view-helpers.class.php:197
2758
  msgid "Netherlands"
2759
+ msgstr "Netherlands"
2760
 
2761
  #: ../lib/tribe-view-helpers.class.php:198
2762
  msgid "Netherlands Antilles"
2763
+ msgstr "Netherlands Antilles"
2764
 
2765
  #: ../lib/tribe-view-helpers.class.php:199
2766
  msgid "New Caledonia"
2772
 
2773
  #: ../lib/tribe-view-helpers.class.php:201
2774
  msgid "Nicaragua"
2775
+ msgstr "Nicaragua"
2776
 
2777
  #: ../lib/tribe-view-helpers.class.php:202
2778
  msgid "Niger"
2779
+ msgstr "Niger"
2780
 
2781
  #: ../lib/tribe-view-helpers.class.php:203
2782
  msgid "Nigeria"
2783
+ msgstr "Nigeria"
2784
 
2785
  #: ../lib/tribe-view-helpers.class.php:204
2786
  msgid "Niue"
2787
+ msgstr "Niue"
2788
 
2789
  #: ../lib/tribe-view-helpers.class.php:205
2790
  msgid "Norfolk Island"
2791
+ msgstr "Norfolk Island"
2792
 
2793
  #: ../lib/tribe-view-helpers.class.php:206
2794
  msgid "Northern Mariana Islands"
2795
+ msgstr "Northern Mariana Islands"
2796
 
2797
  #: ../lib/tribe-view-helpers.class.php:207
2798
  msgid "Norway"
2799
+ msgstr "Norway"
2800
 
2801
  #: ../lib/tribe-view-helpers.class.php:208
2802
  msgid "Oman"
2803
+ msgstr "Oman"
2804
 
2805
  #: ../lib/tribe-view-helpers.class.php:209
2806
  msgid "Pakistan"
2807
+ msgstr "Pakistan"
2808
 
2809
  #: ../lib/tribe-view-helpers.class.php:210
2810
  msgid "Palau"
2811
+ msgstr "Palau"
2812
 
2813
  #: ../lib/tribe-view-helpers.class.php:211
2814
  msgid "Panama"
2815
+ msgstr "Panama"
2816
 
2817
  #: ../lib/tribe-view-helpers.class.php:212
2818
  msgid "Papua New Guinea"
2819
+ msgstr "Papua New Guinea"
2820
 
2821
  #: ../lib/tribe-view-helpers.class.php:213
2822
  msgid "Paraguay"
2823
+ msgstr "Paraguay"
2824
 
2825
  #: ../lib/tribe-view-helpers.class.php:214
2826
  msgid "Peru"
2827
+ msgstr "Peru"
2828
 
2829
  #: ../lib/tribe-view-helpers.class.php:215
2830
  msgid "Philippines"
2831
+ msgstr "Philippines"
2832
 
2833
  #: ../lib/tribe-view-helpers.class.php:216
2834
  msgid "Pitcairn"
2835
+ msgstr "Pitcairn"
2836
 
2837
  #: ../lib/tribe-view-helpers.class.php:217
2838
  msgid "Poland"
2839
+ msgstr "Poland"
2840
 
2841
  #: ../lib/tribe-view-helpers.class.php:218
2842
  msgid "Portugal"
2843
+ msgstr "Portugal"
2844
 
2845
  #: ../lib/tribe-view-helpers.class.php:219
2846
  msgid "Puerto Rico"
2847
+ msgstr "Puerto Rico"
2848
 
2849
  #: ../lib/tribe-view-helpers.class.php:220
2850
  msgid "Qatar"
2851
+ msgstr "Qatar"
2852
 
2853
  #: ../lib/tribe-view-helpers.class.php:221
2854
  msgid "Reunion"
2855
+ msgstr "Reunion"
2856
 
2857
  #: ../lib/tribe-view-helpers.class.php:222
2858
  msgid "Romania"
2859
+ msgstr "Romania"
2860
 
2861
  #: ../lib/tribe-view-helpers.class.php:223
2862
  msgid "Russian Federation"
2863
+ msgstr "Russian Federation"
2864
 
2865
  #: ../lib/tribe-view-helpers.class.php:224
2866
  msgid "Rwanda"
2867
+ msgstr "Rwanda"
2868
 
2869
  #: ../lib/tribe-view-helpers.class.php:225
2870
  msgid "Saint Kitts And Nevis"
2871
+ msgstr "Saint Kitts And Nevis"
2872
 
2873
  #: ../lib/tribe-view-helpers.class.php:226
2874
  msgid "Saint Lucia"
2875
+ msgstr "Saint Lucia"
2876
 
2877
  #: ../lib/tribe-view-helpers.class.php:227
2878
  msgid "Saint Vincent And The Grenadines"
2879
+ msgstr "Saint Vincent And The Grenadines"
2880
 
2881
  #: ../lib/tribe-view-helpers.class.php:228
2882
  msgid "Samoa"
2883
+ msgstr "Samoa"
2884
 
2885
  #: ../lib/tribe-view-helpers.class.php:229
2886
  msgid "San Marino"
2887
+ msgstr "San Marino"
2888
 
2889
  #: ../lib/tribe-view-helpers.class.php:230
2890
  msgid "Sao Tome And Principe"
2891
+ msgstr "Sao Tome And Principe"
2892
 
2893
  #: ../lib/tribe-view-helpers.class.php:231
2894
  msgid "Saudi Arabia"
2895
+ msgstr "Saudi Arabia"
2896
 
2897
  #: ../lib/tribe-view-helpers.class.php:232
2898
  msgid "Senegal"
2899
+ msgstr "Senegal"
2900
 
2901
  #: ../lib/tribe-view-helpers.class.php:233
2902
  msgid "Serbia"
2903
+ msgstr "Serbia"
2904
 
2905
  #: ../lib/tribe-view-helpers.class.php:234
2906
  msgid "Seychelles"
2907
+ msgstr "Seychelles"
2908
 
2909
  #: ../lib/tribe-view-helpers.class.php:235
2910
  msgid "Sierra Leone"
2911
+ msgstr "Sierra Leone"
2912
 
2913
  #: ../lib/tribe-view-helpers.class.php:236
2914
  msgid "Singapore"
2915
+ msgstr "Singapore"
2916
 
2917
  #: ../lib/tribe-view-helpers.class.php:237
2918
  msgid "Slovakia (Slovak Republic)"
2919
+ msgstr "Slovakia (Slovak Republic)"
2920
 
2921
  #: ../lib/tribe-view-helpers.class.php:238
2922
  msgid "Slovenia"
2923
+ msgstr "Slovenia"
2924
 
2925
  #: ../lib/tribe-view-helpers.class.php:239
2926
  msgid "Solomon Islands"
2927
+ msgstr "Solomon Islands"
2928
 
2929
  #: ../lib/tribe-view-helpers.class.php:240
2930
  msgid "Somalia"
2931
+ msgstr "Somalia"
2932
 
2933
  #: ../lib/tribe-view-helpers.class.php:241
2934
  msgid "South Africa"
2935
+ msgstr "South Africa"
2936
 
2937
  #: ../lib/tribe-view-helpers.class.php:242
2938
  msgid "South Georgia, South Sandwich Islands"
2939
+ msgstr "South Georgia, South Sandwich Islands"
2940
 
2941
  #: ../lib/tribe-view-helpers.class.php:243
2942
  msgid "Spain"
2943
+ msgstr "Spain"
2944
 
2945
  #: ../lib/tribe-view-helpers.class.php:244
2946
  msgid "Sri Lanka"
2947
+ msgstr "Sri Lanka"
2948
 
2949
  #: ../lib/tribe-view-helpers.class.php:245
2950
  msgid "St. Helena"
2951
+ msgstr "St. Helena"
2952
 
2953
  #: ../lib/tribe-view-helpers.class.php:246
2954
  msgid "St. Pierre And Miquelon"
2955
+ msgstr "St. Pierre And Miquelon"
2956
 
2957
  #: ../lib/tribe-view-helpers.class.php:247
2958
  msgid "Sudan"
2959
+ msgstr "Sudan"
2960
 
2961
  #: ../lib/tribe-view-helpers.class.php:248
2962
  msgid "Suriname"
2963
+ msgstr "Suriname"
2964
 
2965
  #: ../lib/tribe-view-helpers.class.php:249
2966
  msgid "Svalbard And Jan Mayen Islands"
2967
+ msgstr "Svalbard And Jan Mayen Islands"
2968
 
2969
  #: ../lib/tribe-view-helpers.class.php:250
2970
  msgid "Swaziland"
2971
+ msgstr "Swaziland"
2972
 
2973
  #: ../lib/tribe-view-helpers.class.php:251
2974
  msgid "Sweden"
2975
+ msgstr "Sweden"
2976
 
2977
  #: ../lib/tribe-view-helpers.class.php:252
2978
  msgid "Switzerland"
2979
+ msgstr "Switzerland"
2980
 
2981
  #: ../lib/tribe-view-helpers.class.php:253
2982
  msgid "Syrian Arab Republic"
2983
+ msgstr "Syrian Arab Republic"
2984
 
2985
  #: ../lib/tribe-view-helpers.class.php:254
2986
  msgid "Taiwan"
2987
+ msgstr "Taiwan"
2988
 
2989
  #: ../lib/tribe-view-helpers.class.php:255
2990
  msgid "Tajikistan"
2991
+ msgstr "Tajikistan"
2992
 
2993
  #: ../lib/tribe-view-helpers.class.php:256
2994
  msgid "Tanzania, United Republic Of"
2995
+ msgstr "Tanzania, United Republic Of"
2996
 
2997
  #: ../lib/tribe-view-helpers.class.php:257
2998
  msgid "Thailand"
2999
+ msgstr "Thailand"
3000
 
3001
  #: ../lib/tribe-view-helpers.class.php:258
3002
  msgid "Togo"
3003
+ msgstr "Togo"
3004
 
3005
  #: ../lib/tribe-view-helpers.class.php:259
3006
  msgid "Tokelau"
3007
+ msgstr "Tokelau"
3008
 
3009
  #: ../lib/tribe-view-helpers.class.php:260
3010
  msgid "Tonga"
3011
+ msgstr "Tonga"
3012
 
3013
  #: ../lib/tribe-view-helpers.class.php:261
3014
  msgid "Trinidad And Tobago"
3015
+ msgstr "Trinidad And Tobago"
3016
 
3017
  #: ../lib/tribe-view-helpers.class.php:262
3018
  msgid "Tunisia"
3019
+ msgstr "Tunisia"
3020
 
3021
  #: ../lib/tribe-view-helpers.class.php:263
3022
  msgid "Turkey"
3023
+ msgstr "Turkey"
3024
 
3025
  #: ../lib/tribe-view-helpers.class.php:264
3026
  msgid "Turkmenistan"
3027
+ msgstr "Turkmenistan"
3028
 
3029
  #: ../lib/tribe-view-helpers.class.php:265
3030
  msgid "Turks And Caicos Islands"
3031
+ msgstr "Turks And Caicos Islands"
3032
 
3033
  #: ../lib/tribe-view-helpers.class.php:266
3034
  msgid "Tuvalu"
3035
+ msgstr "Tuvalu"
3036
 
3037
  #: ../lib/tribe-view-helpers.class.php:267
3038
  msgid "Uganda"
3039
+ msgstr "Uganda"
3040
 
3041
  #: ../lib/tribe-view-helpers.class.php:268
3042
  msgid "Ukraine"
3043
+ msgstr "Ukraine"
3044
 
3045
  #: ../lib/tribe-view-helpers.class.php:269
3046
  msgid "United Arab Emirates"
3047
+ msgstr "United Arab Emirates"
3048
 
3049
  #: ../lib/tribe-view-helpers.class.php:270
3050
  msgid "United Kingdom"
3051
+ msgstr "United Kingdom"
3052
 
3053
  #: ../lib/tribe-view-helpers.class.php:271
3054
  msgid "United States Minor Outlying Islands"
3055
+ msgstr "United States Minor Outlying Islands"
3056
 
3057
  #: ../lib/tribe-view-helpers.class.php:272
3058
  msgid "Uruguay"
3059
+ msgstr "Uruguay"
3060
 
3061
  #: ../lib/tribe-view-helpers.class.php:273
3062
  msgid "Uzbekistan"
3063
+ msgstr "Uzbekistan"
3064
 
3065
  #: ../lib/tribe-view-helpers.class.php:274
3066
  msgid "Vanuatu"
3067
+ msgstr "Vanuatu"
3068
 
3069
  #: ../lib/tribe-view-helpers.class.php:275
3070
  msgid "Venezuela"
3071
+ msgstr "Venezuela"
3072
 
3073
  #: ../lib/tribe-view-helpers.class.php:276
3074
  msgid "Viet Nam"
3075
+ msgstr "Viet Nam"
3076
 
3077
  #: ../lib/tribe-view-helpers.class.php:277
3078
  msgid "Virgin Islands (British)"
3079
+ msgstr "Virgin Islands (British)"
3080
 
3081
  #: ../lib/tribe-view-helpers.class.php:278
3082
  msgid "Virgin Islands (U.S.)"
3083
+ msgstr "Virgin Islands (U.S.)"
3084
 
3085
  #: ../lib/tribe-view-helpers.class.php:279
3086
  msgid "Wallis And Futuna Islands"
3087
+ msgstr "Wallis And Futuna Islands"
3088
 
3089
  #: ../lib/tribe-view-helpers.class.php:280
3090
  msgid "Western Sahara"
3091
+ msgstr "Western Sahara"
3092
 
3093
  #: ../lib/tribe-view-helpers.class.php:281
3094
  msgid "Yemen"
3095
+ msgstr "Yemen"
3096
 
3097
  #: ../lib/tribe-view-helpers.class.php:282
3098
  msgid "Zambia"
3099
+ msgstr "Zambia"
3100
 
3101
  #: ../lib/tribe-view-helpers.class.php:283
3102
  msgid "Zimbabwe"
3103
+ msgstr "Zimbabwe"
3104
 
3105
  #: ../lib/tribe-view-helpers.class.php:308
3106
  msgid "Alabama"
3107
+ msgstr "Alabama"
3108
 
3109
  #: ../lib/tribe-view-helpers.class.php:309
3110
  msgid "Alaska"
3111
+ msgstr "Alaska"
3112
 
3113
  #: ../lib/tribe-view-helpers.class.php:310
3114
  msgid "Arizona"
3115
+ msgstr "Arizona"
3116
 
3117
  #: ../lib/tribe-view-helpers.class.php:311
3118
  msgid "Arkansas"
3119
+ msgstr "Arkansas"
3120
 
3121
  #: ../lib/tribe-view-helpers.class.php:312
3122
  msgid "California"
3123
+ msgstr "California"
3124
 
3125
  #: ../lib/tribe-view-helpers.class.php:313
3126
  msgid "Colorado"
3127
+ msgstr "Colorado"
3128
 
3129
  #: ../lib/tribe-view-helpers.class.php:314
3130
  msgid "Connecticut"
3131
+ msgstr "Connecticut"
3132
 
3133
  #: ../lib/tribe-view-helpers.class.php:315
3134
  msgid "Delaware"
3135
+ msgstr "Delaware"
3136
 
3137
  #: ../lib/tribe-view-helpers.class.php:316
3138
  msgid "District of Columbia"
3139
+ msgstr "District of Columbia"
3140
 
3141
  #: ../lib/tribe-view-helpers.class.php:317
3142
  msgid "Florida"
3143
+ msgstr "Florida"
3144
 
3145
  #: ../lib/tribe-view-helpers.class.php:319
3146
  msgid "Hawaii"
3147
+ msgstr "Hawaii"
3148
 
3149
  #: ../lib/tribe-view-helpers.class.php:320
3150
  msgid "Idaho"
3151
+ msgstr "Idaho"
3152
 
3153
  #: ../lib/tribe-view-helpers.class.php:321
3154
  msgid "Illinois"
3155
+ msgstr "Illinois"
3156
 
3157
  #: ../lib/tribe-view-helpers.class.php:322
3158
  msgid "Indiana"
3159
+ msgstr "Indiana"
3160
 
3161
  #: ../lib/tribe-view-helpers.class.php:323
3162
  msgid "Iowa"
3163
+ msgstr "Iowa"
3164
 
3165
  #: ../lib/tribe-view-helpers.class.php:324
3166
  msgid "Kansas"
3167
+ msgstr "Kansas"
3168
 
3169
  #: ../lib/tribe-view-helpers.class.php:325
3170
  msgid "Kentucky"
3171
+ msgstr "Kentucky"
3172
 
3173
  #: ../lib/tribe-view-helpers.class.php:326
3174
  msgid "Louisiana"
3175
+ msgstr "Louisiana"
3176
 
3177
  #: ../lib/tribe-view-helpers.class.php:327
3178
  msgid "Maine"
3179
+ msgstr "Maine"
3180
 
3181
  #: ../lib/tribe-view-helpers.class.php:328
3182
  msgid "Maryland"
3183
+ msgstr "Maryland"
3184
 
3185
  #: ../lib/tribe-view-helpers.class.php:329
3186
  msgid "Massachusetts"
3187
+ msgstr "Massachusetts"
3188
 
3189
  #: ../lib/tribe-view-helpers.class.php:330
3190
  msgid "Michigan"
3191
+ msgstr "Michigan"
3192
 
3193
  #: ../lib/tribe-view-helpers.class.php:331
3194
  msgid "Minnesota"
3195
+ msgstr "Minnesota"
3196
 
3197
  #: ../lib/tribe-view-helpers.class.php:332
3198
  msgid "Mississippi"
3199
+ msgstr "Mississippi"
3200
 
3201
  #: ../lib/tribe-view-helpers.class.php:333
3202
  msgid "Missouri"
3203
+ msgstr "Missouri"
3204
 
3205
  #: ../lib/tribe-view-helpers.class.php:334
3206
  msgid "Montana"
3207
+ msgstr "Montana"
3208
 
3209
  #: ../lib/tribe-view-helpers.class.php:335
3210
  msgid "Nebraska"
3211
+ msgstr "Nebraska"
3212
 
3213
  #: ../lib/tribe-view-helpers.class.php:336
3214
  msgid "Nevada"
3215
+ msgstr "Nevada"
3216
 
3217
  #: ../lib/tribe-view-helpers.class.php:337
3218
  msgid "New Hampshire"
3232
 
3233
  #: ../lib/tribe-view-helpers.class.php:341
3234
  msgid "North Carolina"
3235
+ msgstr "North Carolina"
3236
 
3237
  #: ../lib/tribe-view-helpers.class.php:342
3238
  msgid "North Dakota"
3239
+ msgstr "North Dakota"
3240
 
3241
  #: ../lib/tribe-view-helpers.class.php:343
3242
  msgid "Ohio"
3243
+ msgstr "Ohio"
3244
 
3245
  #: ../lib/tribe-view-helpers.class.php:344
3246
  msgid "Oklahoma"
3247
+ msgstr "Oklahoma"
3248
 
3249
  #: ../lib/tribe-view-helpers.class.php:345
3250
  msgid "Oregon"
3251
+ msgstr "Oregon"
3252
 
3253
  #: ../lib/tribe-view-helpers.class.php:346
3254
  msgid "Pennsylvania"
3255
+ msgstr "Pennsylvania"
3256
 
3257
  #: ../lib/tribe-view-helpers.class.php:347
3258
  msgid "Rhode Island"
3259
+ msgstr "Rhode Island"
3260
 
3261
  #: ../lib/tribe-view-helpers.class.php:348
3262
  msgid "South Carolina"
3263
+ msgstr "South Carolina"
3264
 
3265
  #: ../lib/tribe-view-helpers.class.php:349
3266
  msgid "South Dakota"
3267
+ msgstr "South Dakota"
3268
 
3269
  #: ../lib/tribe-view-helpers.class.php:350
3270
  msgid "Tennessee"
3271
+ msgstr "Tennessee"
3272
 
3273
  #: ../lib/tribe-view-helpers.class.php:351
3274
  msgid "Texas"
3275
+ msgstr "Texas"
3276
 
3277
  #: ../lib/tribe-view-helpers.class.php:352
3278
  msgid "Utah"
3279
+ msgstr "Utah"
3280
 
3281
  #: ../lib/tribe-view-helpers.class.php:353
3282
  msgid "Vermont"
3283
+ msgstr "Vermont"
3284
 
3285
  #: ../lib/tribe-view-helpers.class.php:354
3286
  msgid "Virginia"
3287
+ msgstr "Virginia"
3288
 
3289
  #: ../lib/tribe-view-helpers.class.php:355
3290
  msgid "Washington"
3291
+ msgstr "Washington"
3292
 
3293
  #: ../lib/tribe-view-helpers.class.php:356
3294
  msgid "West Virginia"
3295
+ msgstr "West Virginia"
3296
 
3297
  #: ../lib/tribe-view-helpers.class.php:357
3298
  msgid "Wisconsin"
3299
+ msgstr "Wisconsin"
3300
 
3301
  #: ../lib/tribe-view-helpers.class.php:358
3302
  msgid "Wyoming"
3303
+ msgstr "Wyoming"
3304
 
3305
  #
3306
  #: ../lib/widget-list.class.php:21
3311
  msgid "Events List"
3312
  msgstr "Liste d'événements"
3313
 
3314
+ #: ../lib/widget-list.class.php:124
3315
  msgid "View All Events"
3316
  msgstr "Voir tous les événements"
3317
 
3318
+ #: ../lib/widget-list.class.php:127
3319
  msgid "There are no upcoming events at this time."
3320
  msgstr "Aucun événement à venir prochainement."
3321
 
3322
+ #: ../lib/template-classes/month.php:102
3323
  #, php-format
3324
  msgid ""
3325
  "There were no results found for <strong>\"%s\"</strong> this month. Try "
3435
  msgid "Attendee List for: %s"
3436
  msgstr "Liste de participants pour : %s"
3437
 
3438
+ #: ../lib/tickets/tribe-tickets.php:298
3439
  msgid "Your ticket has been saved."
3440
  msgstr "Votre ticket à été sauvegardé."
3441
 
3442
+ #: ../lib/tickets/tribe-tickets.php:375
3443
  msgid "Your ticket has been deleted."
3444
  msgstr "Votre ticket à été supprimé."
3445
 
3446
  #: ../public/advanced-functions/meta.php:35
3447
  msgid "Start:"
3448
+ msgstr "Début :"
3449
 
3450
  #: ../public/advanced-functions/meta.php:42
3451
  msgid "End:"
3453
 
3454
  #: ../public/advanced-functions/meta.php:51
3455
  msgid "Date:"
3456
+ msgstr "Date :"
3457
 
3458
  #: ../public/advanced-functions/meta.php:233
3459
  msgid "Click to view a Google Map"
3469
  msgstr "Détails"
3470
 
3471
  #
3472
+ #: ../public/advanced-functions/meta.php:296
3473
  msgid "Event Tags:"
3474
  msgstr "Mots-clefs de l'événement :"
3475
 
3476
+ #: ../public/advanced-functions/meta.php:322
3477
  msgid "Origin:"
3478
  msgstr "Origine :"
3479
 
3480
+ #: ../public/advanced-functions/meta.php:459
3481
  msgid "Event:"
3482
  msgstr "Evénément :"
3483
 
3486
  msgid "Category"
3487
  msgstr "Catégorie"
3488
 
3489
+ #: ../public/template-tags/general.php:307
3490
  msgid "Tags:"
3491
  msgstr "Mots-clefs :"
3492
 
3493
  #
3494
+ #: ../public/template-tags/general.php:394
3495
  msgid "Loading Events"
3496
  msgstr "Chargement des événements"
3497
 
3498
+ #: ../public/template-tags/general.php:532
3499
  msgid "Free"
3500
  msgstr "Gratuit"
3501
 
3502
  #
3503
+ #: ../public/template-tags/general.php:704
3504
  msgid "Recurring Event"
3505
  msgstr "Événement récurrent"
3506
 
3507
+ #: ../public/template-tags/general.php:707
3508
  msgid "(See all)"
3509
  msgstr "(Voir tous)"
3510
 
3511
+ #: ../public/template-tags/general.php:978
3512
  #, php-format
3513
  msgid "Calendar powered by %sThe Events Calendar%s"
3514
  msgstr "Calendrier créer avec %sThe Events Calendar%s"
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
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
+ "Vous <strong>ne pouvez pas</strong> utiliser le même percaline que ci-"
3543
+ "dessus. Le percaline ci-dessus devrait être au pluriel et celui-ci devrait "
3544
  "être singulier. <br />Votre URL d'événement unique est: %s"
3545
 
3546
  #
3563
  msgstr "Découvrir plus d'infos"
3564
 
3565
  #
3566
+ #: ../views/modules/bar.php:31 ../views/modules/bar.php:61
3567
  msgid "Find Events"
3568
  msgstr "Trouver des événements"
3569
 
lang/tribe-events-calendar-is_IS.mo ADDED
Binary file
lang/tribe-events-calendar-is_IS.po ADDED
@@ -0,0 +1,3583 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # POT for The Events Calendar 2.0 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:26-0800\n"
9
+ "PO-Revision-Date: 2013-09-04 13:41-0000\n"
10
+ "Last-Translator: Modern Tribe, Inc. <pro@tri.be>\n"
11
+ "Language-Team: Modern Tribe, Inc. <pro@tri.be>\n"
12
+ "Language: en_US\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-Textdomain-Support: yes\n"
22
+ "X-Generator: Poedit 1.5.7\n"
23
+ "X-Poedit-SearchPath-0: ..\n"
24
+
25
+ #: ../admin-views/app-shop.php:4
26
+ msgid "Tribe Event Add-Ons"
27
+ msgstr "Tribe Event viðbætur"
28
+
29
+ #: ../admin-views/app-shop.php:50
30
+ msgid "Version"
31
+ msgstr "Útgáfa"
32
+
33
+ #: ../admin-views/app-shop.php:53
34
+ msgid "Last Update"
35
+ msgstr "Síðast uppfært"
36
+
37
+ #: ../admin-views/event-sidebar-options.php:11
38
+ msgid "Hide From Event Listings"
39
+ msgstr "Ekki sýn í viðburðar lista"
40
+
41
+ #: ../admin-views/event-sidebar-options.php:12
42
+ msgid "Sticky in Calendar View"
43
+ msgstr "Sticky í dagatal ham"
44
+
45
+ #: ../admin-views/events-audit-trail.php:41
46
+ msgid "Auditing Information"
47
+ msgstr "Breytu upplýsingar"
48
+
49
+ #: ../admin-views/events-audit-trail.php:47
50
+ msgid "Created by:"
51
+ msgstr "Hannað af:"
52
+
53
+ #: ../admin-views/events-audit-trail.php:51
54
+ msgid "Audit Trail:"
55
+ msgstr "Uppfærslu leið:"
56
+
57
+ #: ../admin-views/events-meta-box.php:26
58
+ msgid "Event Time &amp; Date"
59
+ msgstr "Viðburðar tími &amp; dagsetning"
60
+
61
+ #: ../admin-views/events-meta-box.php:32
62
+ msgid ""
63
+ "You have changed the recurrence rules of this event. Saving the event will "
64
+ "update all future events. If you did not mean to change all events, then "
65
+ "please refresh the page."
66
+ msgstr ""
67
+ "Þú hefur breytt endurtekningar reglu þessa viðburðar. Með því að vista "
68
+ "viðburð uppfærist hann að fullu. Ef þú vilt ekki framkvæma þessar "
69
+ "breytingar, vinsamlega endurnýja þessa síðu."
70
+
71
+ #: ../admin-views/events-meta-box.php:35
72
+ msgid "All Day Event:"
73
+ msgstr "Heilsdags viðburður"
74
+
75
+ #: ../admin-views/events-meta-box.php:39
76
+ msgid "Start Date &amp; Time:"
77
+ msgstr "Upphafsdagsetning &amp; tími"
78
+
79
+ #: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
80
+ msgid "YYYY-MM-DD"
81
+ msgstr "YYYY-MM-DD"
82
+
83
+ #: ../admin-views/events-meta-box.php:60
84
+ msgid "End Date &amp; Time:"
85
+ msgstr "Enda dagsetning &ap; tími:"
86
+
87
+ #: ../admin-views/events-meta-box.php:85
88
+ msgid "Event Location Details"
89
+ msgstr "Upplýsingar um staðsetningu viðburðar"
90
+
91
+ #: ../admin-views/events-meta-box.php:93
92
+ msgid "Event Organizer Details"
93
+ msgstr "Upplýsingar um kipuleggjandi viðburðar"
94
+
95
+ #: ../admin-views/events-meta-box.php:101
96
+ msgid "Event Website"
97
+ msgstr "Vefsíða viðburðar"
98
+
99
+ #: ../admin-views/events-meta-box.php:104
100
+ msgid "URL:"
101
+ msgstr "URL:"
102
+
103
+ #: ../admin-views/events-meta-box.php:115
104
+ msgid "Event Cost"
105
+ msgstr "Kostnaður viðburðar"
106
+
107
+ #: ../admin-views/events-meta-box.php:118
108
+ msgid "Currency Symbol:"
109
+ msgstr "Mynt:"
110
+
111
+ #: ../admin-views/events-meta-box.php:122
112
+ #: ../public/advanced-functions/meta.php:270
113
+ msgid "Cost:"
114
+ msgstr "Verð:"
115
+
116
+ #: ../admin-views/events-meta-box.php:127
117
+ msgid "Enter a 0 for events that are free or leave blank to hide the field."
118
+ msgstr "Setjið 0 fyrir fría viðburði eða hafið autt til að fela svæði."
119
+
120
+ #: ../admin-views/organizer-meta-box.php:12
121
+ msgid "Organizer Name:"
122
+ msgstr "Nafn skipuleggjanda:"
123
+
124
+ #: ../admin-views/organizer-meta-box.php:19
125
+ #: ../admin-views/venue-meta-box.php:93
126
+ #: ../admin-views/tickets/attendees.php:39
127
+ #: ../public/advanced-functions/meta.php:357
128
+ #: ../public/advanced-functions/meta.php:419
129
+ msgid "Phone:"
130
+ msgstr "Sími:"
131
+
132
+ #: ../admin-views/organizer-meta-box.php:23
133
+ #: ../admin-views/venue-meta-box.php:97
134
+ #: ../admin-views/tickets/attendees.php:45
135
+ #: ../public/advanced-functions/meta.php:308
136
+ #: ../public/advanced-functions/meta.php:383
137
+ #: ../public/advanced-functions/meta.php:445
138
+ msgid "Website:"
139
+ msgstr "Vefsíða:"
140
+
141
+ #: ../admin-views/organizer-meta-box.php:27
142
+ #: ../public/advanced-functions/meta.php:432
143
+ msgid "Email:"
144
+ msgstr "Netfang:"
145
+
146
+ #: ../admin-views/recurrence-dialog.php:13
147
+ msgid ""
148
+ "Would you like to change only this instance of the event, or all future "
149
+ "events in this series?"
150
+ msgstr "Viltu breyta aðeins þessum hluta viðburðar, eða allri viðburðarseriu?"
151
+
152
+ #: ../admin-views/recurrence-dialog.php:15
153
+ #: ../admin-views/recurrence-dialog.php:23
154
+ msgid "Only This Event:"
155
+ msgstr "Aðeins þessum viðburði:"
156
+
157
+ #: ../admin-views/recurrence-dialog.php:15
158
+ msgid "All other future events in the series will remain the same."
159
+ msgstr "Allir aðrir viðburðir í seríu haldast óbreyttir."
160
+
161
+ #: ../admin-views/recurrence-dialog.php:16
162
+ #: ../admin-views/recurrence-dialog.php:24
163
+ msgid "All Events:"
164
+ msgstr "Allir viðburðir:"
165
+
166
+ #: ../admin-views/recurrence-dialog.php:16
167
+ msgid ""
168
+ "All future events in the series will be changed. Any changes made to other "
169
+ "events will be kept."
170
+ msgstr ""
171
+ "Allir viðburðir í seríunni munu breytast. Breytingar á öðrum viðburður halda "
172
+ "sér."
173
+
174
+ #: ../admin-views/recurrence-dialog.php:21
175
+ msgid ""
176
+ "Would you like to delete only this instance of the event, or all future "
177
+ "events in this series?"
178
+ msgstr "Viltu eyða þessum hluta viðburðarseríu, eða allri seríunni?"
179
+
180
+ #: ../admin-views/recurrence-dialog.php:23
181
+ msgid "All other future events in the series will not be deleted."
182
+ msgstr "Allir aðrir hlutar viðburðarseríu munu ekki eyðast."
183
+
184
+ #: ../admin-views/recurrence-dialog.php:24
185
+ msgid "All future events in the series will be deleted."
186
+ msgstr "Allir aðrir hlutar viðburðarseríu mun verða eytt."
187
+
188
+ #: ../admin-views/tribe-options-display.php:4
189
+ msgid "Default Events Template"
190
+ msgstr "Sjálgefið viðburðar sniðmát"
191
+
192
+ #: ../admin-views/tribe-options-display.php:5
193
+ msgid "Default Page Template"
194
+ msgstr "Sjálfgefið blaðsíðu sniðmát"
195
+
196
+ #: ../admin-views/tribe-options-display.php:29
197
+ msgid "Display Settings"
198
+ msgstr "Sýna stillingar"
199
+
200
+ #: ../admin-views/tribe-options-display.php:34
201
+ #, php-format
202
+ msgid ""
203
+ "<p>The settings below control the display of your calendar. If things don't "
204
+ "look right, try switching between the three style sheet options or pick a "
205
+ "page template from your theme.</p><p>There are going to be situations where "
206
+ "no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s"
207
+ "\">our themer's guide</a> for instructions on custom modifications. Want to "
208
+ "create a new view? Grab a copy of the <a href=\"%s\">Sample Agenda View "
209
+ "plugin from Github</a></p>"
210
+ msgstr ""
211
+ "<p>Stillingar hér að neðan stýra hvernig dagatalið birtist. Ef hlutirnir eru "
212
+ "ekki í lagi, prófið að skipta á milli þessara þriggja síðna eða veljið "
213
+ "síðusniðmát frá þemanu.</p><p> Það geta komið upp tilfelli þar sem engin out-"
214
+ "of-the-box snimát eru 100&#37; perfect. Skoðið <a href=\"%s\">our themer's "
215
+ "guide</a> fyrir leiðbeiningar vegna breytinga. Viltu búa til nýtt útlit? "
216
+ "Gríptu þá eintak af <a href=\"%s\">Sample Agenda View plugin from Github</"
217
+ "a></p>"
218
+
219
+ #: ../admin-views/tribe-options-display.php:49
220
+ msgid "Basic Template Settings"
221
+ msgstr "Undirstöðu stillingar sniðmáts."
222
+
223
+ #: ../admin-views/tribe-options-display.php:53
224
+ msgid "Default stylesheet used for events templates"
225
+ msgstr "Sjálfgefið stílblað sem notað er fyrir viðburðar sniðmát"
226
+
227
+ #: ../admin-views/tribe-options-display.php:56
228
+ msgid "Skeleton Styles"
229
+ msgstr "Einfalt útlit"
230
+
231
+ #: ../admin-views/tribe-options-display.php:58
232
+ msgid ""
233
+ "Only includes enough css to achieve complex layouts like calendar and week "
234
+ "view."
235
+ msgstr ""
236
+
237
+ #: ../admin-views/tribe-options-display.php:60
238
+ msgid "Full Styles"
239
+ msgstr "Fullt útlít"
240
+
241
+ #: ../admin-views/tribe-options-display.php:62
242
+ msgid "More detailed styling, tries to grab styles from your theme."
243
+ msgstr ""
244
+
245
+ #: ../admin-views/tribe-options-display.php:64
246
+ msgid "Tribe Events Styles"
247
+ msgstr "Tribe útlit"
248
+
249
+ #: ../admin-views/tribe-options-display.php:66
250
+ msgid "A fully designed and styled theme for your events pages."
251
+ msgstr ""
252
+
253
+ #: ../admin-views/tribe-options-display.php:73
254
+ msgid "Events template"
255
+ msgstr "Viðburðar sniðmát"
256
+
257
+ #: ../admin-views/tribe-options-display.php:74
258
+ msgid ""
259
+ "Choose a page template to control the appearance of your calendar and event "
260
+ "content."
261
+ msgstr ""
262
+ "Veljið síðu sniðmát til að stýra útliti dagatals og viðburðar innihaldi."
263
+
264
+ #: ../admin-views/tribe-options-display.php:82
265
+ msgid "Enable event views"
266
+ msgstr "Leyfa sýningu viðburðar"
267
+
268
+ #: ../admin-views/tribe-options-display.php:83
269
+ msgid "You must select at least one view."
270
+ msgstr "Nauðsynlegt að velja í það minnsta einn viðburð"
271
+
272
+ #: ../admin-views/tribe-options-display.php:90
273
+ msgid "Default view"
274
+ msgstr "Sjálfgefin sýning viðburðar"
275
+
276
+ #: ../admin-views/tribe-options-display.php:98
277
+ msgid "Disable the Event Search Bar"
278
+ msgstr "Slökkva á viðburðar leitarstiku"
279
+
280
+ #: ../admin-views/tribe-options-display.php:99
281
+ msgid "Check this to use the classic header."
282
+ msgstr "Hakið hér til að nota classic haus."
283
+
284
+ #: ../admin-views/tribe-options-display.php:105
285
+ msgid "Advanced Template Settings"
286
+ msgstr "Meiri sniðmát stillingar"
287
+
288
+ #: ../admin-views/tribe-options-display.php:109
289
+ msgid "Add HTML before event content"
290
+ msgstr "Bæta HTML á undan innihaldi viðburðar"
291
+
292
+ #: ../admin-views/tribe-options-display.php:110
293
+ msgid ""
294
+ "If you are familiar with HTML, you can add additional code before the event "
295
+ "template. Some themes may require this to help with styling or layout."
296
+ msgstr ""
297
+ "Ef þú þekki til HTML, þá getur þú bætt viðbótar forritun á undan viðburðar "
298
+ "sniðmáti. Þetta gæti þurft við sum þemu til að hjálpa til við útlit."
299
+
300
+ #: ../admin-views/tribe-options-display.php:115
301
+ msgid "Add HTML after event content"
302
+ msgstr "Bæta við HTML eftir innihald viðburðar"
303
+
304
+ #: ../admin-views/tribe-options-display.php:116
305
+ msgid ""
306
+ "If you are familiar with HTML, you can add additional code after the event "
307
+ "template. Some themes may require this to help with styling or layout."
308
+ msgstr ""
309
+ "Ef þú þekki til HTML, þá getur þú bætt viðbótar forritun á eftir viðburðar "
310
+ "sniðmáti. Þetta gæti þurft við sum þemu til að hjálpa til við útlit."
311
+
312
+ #: ../admin-views/tribe-options-general.php:14
313
+ msgid "Finding & extending your calendar."
314
+ msgstr "Finna & bæta við dagatalið þitt."
315
+
316
+ #: ../admin-views/tribe-options-general.php:19
317
+ msgid "Finding your calendar."
318
+ msgstr "Finna dagatal."
319
+
320
+ #: ../admin-views/tribe-options-general.php:24
321
+ msgid "Where's my calendar?"
322
+ msgstr "Hvar er dagatalið mitt?"
323
+
324
+ #: ../admin-views/tribe-options-general.php:24
325
+ msgid "Right here"
326
+ msgstr "Það er hér"
327
+
328
+ #: ../admin-views/tribe-options-general.php:28
329
+ msgid ""
330
+ "Looking for additional functionality including recurring events, custom "
331
+ "meta, community events, ticket sales and more?"
332
+ msgstr ""
333
+ "Ertu að leyta að viðbótar virkni svo sem endurteknum viðburðum, sérsniðnu "
334
+ "meta, samfélagslegum viðburðum, miðsölu ofl?"
335
+
336
+ #: ../admin-views/tribe-options-general.php:28
337
+ msgid "Check out the available add-ons"
338
+ msgstr "Skoða þær viðbætur sem í boði eru"
339
+
340
+ #: ../admin-views/tribe-options-general.php:33
341
+ msgid "We hope our plugin is helping you out."
342
+ msgstr "Við vonum að þetta plugin okkar hjálpi þér."
343
+
344
+ #: ../admin-views/tribe-options-general.php:37
345
+ msgid ""
346
+ "Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
347
+ "Modern Tribe for all their hard work.\" The greatest thanks we could ask for "
348
+ "is recognition. Add a small text-only link at the bottom of your calendar "
349
+ "pointing to The Events Calendar project."
350
+ msgstr ""
351
+ "Ert þú að hugsa \"Wow, þetta dagatal er æði!. Ég þarf að þakka Modern Tribe "
352
+ "fyrir alla þessa frábæru vinnu.\" Best er að láta vita af þessu dagatali. "
353
+ "Bætið við texta-link á dagatalið."
354
+
355
+ #: ../admin-views/tribe-options-general.php:37
356
+ #: ../admin-views/tribe-options-general.php:42
357
+ msgid "See an example of the link"
358
+ msgstr "Sjá hér sýnishorn af tengli"
359
+
360
+ #: ../admin-views/tribe-options-general.php:42
361
+ msgid ""
362
+ "Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
363
+ "Modern Tribe for all their hard work.\" The greatest thanks we could ask for "
364
+ "is recognition. Add a small text only link at the bottom of your calendar "
365
+ "pointing to The Events Calendar project."
366
+ msgstr ""
367
+ "Ert þú að hugsa \"Wow, þetta dagatal er æði!. Ég þarf að þakka Modern Tribe "
368
+ "fyrir alla þessa frábæru vinnu.\" Best er að láta vita af þessu dagatali. "
369
+ "Bætið við texta-link á dagatalið."
370
+
371
+ #: ../admin-views/tribe-options-general.php:47
372
+ msgid "Show The Events Calendar link"
373
+ msgstr "Sýna Events Calendar hlekk"
374
+
375
+ #: ../admin-views/tribe-options-general.php:61
376
+ msgid "General Settings"
377
+ msgstr "Almennar stillingar"
378
+
379
+ #: ../admin-views/tribe-options-general.php:65
380
+ msgid "Number of events to show per page"
381
+ msgstr "Fjöldi viðburða sjáanlegir per dag"
382
+
383
+ #: ../admin-views/tribe-options-general.php:72
384
+ msgid "Use Javascript to control page load"
385
+ msgstr "Nota Javascript til stýringar á síðu"
386
+
387
+ #: ../admin-views/tribe-options-general.php:73
388
+ msgid "Enable ajax to live refresh content."
389
+ msgstr "Vrikja ajax til að endurvekja innihald."
390
+
391
+ #: ../admin-views/tribe-options-general.php:79
392
+ msgid "Show comments"
393
+ msgstr "Sýna skoðanir"
394
+
395
+ #: ../admin-views/tribe-options-general.php:80
396
+ msgid "Enable comments on event pages."
397
+ msgstr "Virkja skoðanir á hverri viðburðarsíðu."
398
+
399
+ #: ../admin-views/tribe-options-general.php:86
400
+ msgid "Include events in main blog loop"
401
+ msgstr "Bæta viðburðum við aðal blogg"
402
+
403
+ #: ../admin-views/tribe-options-general.php:87
404
+ msgid ""
405
+ "Show events with the site's other posts. When this box is checked, events "
406
+ "will also continue to appear on the default events page."
407
+ msgstr ""
408
+ "Sýna viðburði með öðru innleggi á síðu. Þegar hakað er við hér, þá munu "
409
+ "viðburðir einnig sjást á sjálfgefnu viðburðarsíðunni."
410
+
411
+ #: ../admin-views/tribe-options-general.php:93
412
+ #: ../admin-views/tribe-options-general.php:99
413
+ msgid "Events URL slug"
414
+ msgstr "URL titill viðburðar"
415
+
416
+ #: ../admin-views/tribe-options-general.php:94
417
+ #, php-format
418
+ msgid ""
419
+ "You cannot edit the slug for your events page as you do not have pretty "
420
+ "permalinks enabled. The current URL for your events page is <a href=\"%s\">"
421
+ "%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php"
422
+ "\">enable pretty permalinks</a>."
423
+ msgstr ""
424
+ "Ekki er hægt að breyta slug/titil á viðburðarsíðu þar sem þú hefur ekki "
425
+ "pretty permalinks virkjað. Núverandi URL fyrir viðburðarsíðu er <a href=\"%s"
426
+ "\">%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php"
427
+ "\">enable pretty permalinks</a>."
428
+
429
+ #: ../admin-views/tribe-options-general.php:106
430
+ #: ../public/template-tags/options.php:20
431
+ msgid "The slug used for building the events URL."
432
+ msgstr "Stutti titillinn sem notaður er við innsetningu viðburðar URL."
433
+
434
+ #: ../admin-views/tribe-options-general.php:106
435
+ #, php-format
436
+ msgid "Your current events URL is: %s"
437
+ msgstr "Núverandi viðburðar URL er: %s"
438
+
439
+ #: ../admin-views/tribe-options-general.php:111
440
+ #: ../public/template-tags/options.php:43
441
+ msgid "Here is the iCal feed URL for your events:"
442
+ msgstr "Hérna er iCal URL fyrir viðuburðinn:"
443
+
444
+ #: ../admin-views/tribe-options-general.php:116
445
+ msgid "Single event URL slug"
446
+ msgstr "Stutt URL fyrir stakan viðburð"
447
+
448
+ #: ../admin-views/tribe-options-general.php:123
449
+ #, php-format
450
+ msgid ""
451
+ "The above should ideally be plural, and this singular.<br />Your single "
452
+ "event URL is: %s"
453
+ msgstr ""
454
+ "Ofangreint þarf helst að vera fleirtala, og þetta eintala. <br />Your single "
455
+ "event URL is: %s"
456
+
457
+ #: ../admin-views/tribe-options-general.php:128
458
+ msgid "End of day cutoff"
459
+ msgstr "Lok dags tímapunktur"
460
+
461
+ #: ../admin-views/tribe-options-general.php:136
462
+ msgid ""
463
+ "Have events that run past midnight? Control when your day official ends to "
464
+ "avoid awkwardly adding your event to the next day."
465
+ msgstr ""
466
+ "Hafa viðburð sem fer framyfir miðnætti? Stýra því hvenær dagur endar til að "
467
+ "koma í veg fyrir að setja viðburð óvart yfir á næsta dag."
468
+
469
+ #: ../admin-views/tribe-options-general.php:141
470
+ msgid "Default currency symbol"
471
+ msgstr "Sjálfgefið gjaldmiðils merki"
472
+
473
+ #: ../admin-views/tribe-options-general.php:142
474
+ msgid ""
475
+ "Set the default currency symbol for event costs. Note that this only impacts "
476
+ "future events, and changes made will not apply retroactively."
477
+ msgstr ""
478
+ "Stilling á sjálfgefnu gjaldmiðils merki fyrir kostnað viðburðar. Takið "
479
+ "eftir, þetta hefur aðeins áhrif á komandi viðburði, og breytingar sem gerðar "
480
+ "eru verða ekki afturvirkar."
481
+
482
+ #: ../admin-views/tribe-options-general.php:149
483
+ msgid "Map Settings"
484
+ msgstr "Korta stillingar"
485
+
486
+ #: ../admin-views/tribe-options-general.php:153
487
+ msgid "Enable Google Maps"
488
+ msgstr "Virkja Google Maps"
489
+
490
+ #: ../admin-views/tribe-options-general.php:154
491
+ msgid "Check to enable maps for events and venues."
492
+ msgstr ""
493
+ "Haka við til að heimila virkni kort á viðburði og viðburðastaðsetningu."
494
+
495
+ #: ../admin-views/tribe-options-general.php:161
496
+ msgid "Google Maps default zoom level"
497
+ msgstr "Google Maps sjálfgefna zoom stilling"
498
+
499
+ #: ../admin-views/tribe-options-general.php:162
500
+ msgid "0 = zoomed out; 21 = zoomed in."
501
+ msgstr "0 = zoomað út; 21 = zoomað inn."
502
+
503
+ #: ../admin-views/tribe-options-general.php:170
504
+ msgid "Miscellaneous Settings"
505
+ msgstr "Ýmsar stillingar"
506
+
507
+ #: ../admin-views/tribe-options-general.php:174
508
+ msgid "Duplicate Venues &amp; Organizers"
509
+ msgstr "Afrita viðburð &amp; Skipuleggjanda"
510
+
511
+ #: ../admin-views/tribe-options-general.php:174
512
+ #: ../lib/tribe-amalgamator.php:252
513
+ msgid "Merge Duplicates"
514
+ msgstr "Sameina afritun"
515
+
516
+ #: ../admin-views/tribe-options-general.php:174
517
+ msgid ""
518
+ "You might find duplicate venues and organizers when updating The Events "
519
+ "Calendar from a pre-3.0 version. Click this button to automatically merge "
520
+ "identical venues and organizers."
521
+ msgstr ""
522
+ "Mögulega sjást afritaðir viðburðir og staðsetningar þegar The Events "
523
+ "Calendar er uppfært frá pre-3.0 útgáfu. Smellið hér til að sjálfkrafa "
524
+ "sameina samskonar viðburðir og skipulegganda."
525
+
526
+ #: ../admin-views/tribe-options-general.php:179
527
+ msgid "Debug mode"
528
+ msgstr "Leiðréttunar viðmót"
529
+
530
+ #: ../admin-views/tribe-options-general.php:185
531
+ #, php-format
532
+ msgid ""
533
+ "Enable this option to log debug information. By default this will log to "
534
+ "your server PHP error log. If you'd like to see the log messages in your "
535
+ "browser, then we recommend that you install the %s and look for the \"Tribe"
536
+ "\" tab in the debug output."
537
+ msgstr ""
538
+ "Virkja þennan valkost til að skrá leiðréttar upplýsingar. Þetta skráist "
539
+ "sjálfkrafa á PHP serverinn sem error log. Ef þú vilt að sjá þessar "
540
+ "upplýsingar í vafra þá mælum við með að setja þetta inn %s and look for the "
541
+ "\"Tribe\" tab in the debug output."
542
+
543
+ #: ../admin-views/tribe-options-general.php:185
544
+ msgid "Debug Bar Plugin"
545
+ msgstr "Villu leiðréttingar stiku viðbót"
546
+
547
+ #: ../admin-views/tribe-options-help.php:18
548
+ msgctxt "not available"
549
+ msgid "n/a"
550
+ msgstr "n/a"
551
+
552
+ #: ../admin-views/tribe-options-help.php:19
553
+ msgid "You need to upgrade!"
554
+ msgstr "Vinsamlega uppfærið!"
555
+
556
+ #: ../admin-views/tribe-options-help.php:19
557
+ msgid "You are up to date!"
558
+ msgstr "Premium Add-OnsÞú ert með nýjustu útgáfuna!"
559
+
560
+ #: ../admin-views/tribe-options-help.php:42
561
+ msgid "The Events Calendar PRO"
562
+ msgstr "The Events Calendar PRO"
563
+
564
+ #: ../admin-views/tribe-options-help.php:46
565
+ msgid "Eventbrite Tickets"
566
+ msgstr "Eventbrite Tickets"
567
+
568
+ #: ../admin-views/tribe-options-help.php:50
569
+ msgid "Community Events"
570
+ msgstr "Sammfélags viðburðir"
571
+
572
+ #: ../admin-views/tribe-options-help.php:54
573
+ msgid "Facebook Events"
574
+ msgstr "Facebook viðburðir"
575
+
576
+ #: ../admin-views/tribe-options-help.php:58
577
+ msgid "WooTickets"
578
+ msgstr "WooTickets"
579
+
580
+ #: ../admin-views/tribe-options-help.php:63
581
+ msgid "Faceted Filters"
582
+ msgstr "Ítarlegri síur"
583
+
584
+ #: ../admin-views/tribe-options-help.php:71
585
+ msgid "Documentation"
586
+ msgstr "Skjöl"
587
+
588
+ #: ../admin-views/tribe-options-help.php:75
589
+ msgid "FAQ"
590
+ msgstr "Algengar spurningar"
591
+
592
+ #: ../admin-views/tribe-options-help.php:79
593
+ #: ../lib/the-events-calendar.class.php:743
594
+ #: ../lib/the-events-calendar.class.php:3889
595
+ #: ../lib/the-events-calendar.class.php:3980
596
+ msgid "Help"
597
+ msgstr "Hjálp"
598
+
599
+ #: ../admin-views/tribe-options-help.php:83
600
+ msgid "Tutorials"
601
+ msgstr "Leiðbeiningar"
602
+
603
+ #: ../admin-views/tribe-options-help.php:87
604
+ msgid "Release Notes"
605
+ msgstr "Release notes"
606
+
607
+ #: ../admin-views/tribe-options-help.php:91
608
+ msgid "Forums"
609
+ msgstr "Forums"
610
+
611
+ #: ../admin-views/tribe-options-help.php:99
612
+ msgid ""
613
+ "If this is your first time using The Events Calendar, you're in for a treat "
614
+ "and are already well on your way to creating a first event. Here are some "
615
+ "basics we've found helpful for users jumping into it for the first time:"
616
+ msgstr ""
617
+
618
+ #: ../admin-views/tribe-options-help.php:102
619
+ #, php-format
620
+ msgid ""
621
+ "%sOur New User Primer%s was designed for folks in your exact position. "
622
+ "Featuring both step-by-step videos and written walkthroughs that feature "
623
+ "accompanying screenshots, the primer aims to take you from zero to hero in "
624
+ "no time."
625
+ msgstr ""
626
+
627
+ #: ../admin-views/tribe-options-help.php:104
628
+ #, php-format
629
+ msgid ""
630
+ "%sInstallation/Setup FAQs%s from our support page can help give an overview "
631
+ "of what the plugin can and cannot do. This section of the FAQs may be "
632
+ "helpful as it aims to address any basic install questions not addressed by "
633
+ "the new user primer."
634
+ msgstr ""
635
+
636
+ #: ../admin-views/tribe-options-help.php:106
637
+ #, php-format
638
+ msgid ""
639
+ "Are you developer looking to build your own frontend view? We created an "
640
+ "example plugin that demonstrates how to register a new view. You can "
641
+ "%sdownload the plugin at GitHub%s to get started."
642
+ msgstr ""
643
+
644
+ #: ../admin-views/tribe-options-help.php:108
645
+ msgid ""
646
+ "Otherwise, if you're feeling adventurous, you can get started by heading to "
647
+ "the Events menu and adding your first event."
648
+ msgstr ""
649
+
650
+ #: ../admin-views/tribe-options-help.php:112
651
+ #, php-format
652
+ msgid ""
653
+ "We've redone our support page from the ground up in an effort to better help "
654
+ "our users. Head over to our %sSupport Page%s and you'll find lots of great "
655
+ "resources, including:"
656
+ msgstr ""
657
+
658
+ #: ../admin-views/tribe-options-help.php:114
659
+ #, php-format
660
+ msgid ""
661
+ "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
662
+ "&amp; Events Calendar PRO"
663
+ msgstr ""
664
+
665
+ #: ../admin-views/tribe-options-help.php:116
666
+ #, php-format
667
+ msgid ""
668
+ "%sFrequently Asked Questions%s ranging from the most basic setup questions "
669
+ "to advanced themer tweaks"
670
+ msgstr ""
671
+
672
+ #: ../admin-views/tribe-options-help.php:118
673
+ #, php-format
674
+ msgid ""
675
+ "%sTutorials%s written by both members of our team and users from the "
676
+ "community, covering custom queries, integration with third-party themes and "
677
+ "plugins, etc."
678
+ msgstr ""
679
+
680
+ #: ../admin-views/tribe-options-help.php:120
681
+ msgid ""
682
+ "Release notes for painting an overall picture of the plugin's lifecycle and "
683
+ "when features/bug fixes were introduced."
684
+ msgstr ""
685
+
686
+ #: ../admin-views/tribe-options-help.php:122
687
+ #, php-format
688
+ msgid ""
689
+ "%sAdd-on documentation%s for all of Modern Tribe's official extensions for "
690
+ "The Events Calendar (including WooTickets, Community Events, Eventbrite "
691
+ "Tickets, Facebook Events, etc)"
692
+ msgstr ""
693
+
694
+ #: ../admin-views/tribe-options-help.php:124
695
+ #, php-format
696
+ msgid ""
697
+ "We've also got a %sModern Tribe UserVoice%s page where we're actively "
698
+ "watching for feature ideas from the community. If after playing with the "
699
+ "plugin and reviewing the resources above, you're finding a feature isn't "
700
+ "present that should be, let us know. Vote up existing feature requests or "
701
+ "add your own, and help us shape the future of the products business in a way "
702
+ "that best meets the community's needs."
703
+ msgstr ""
704
+
705
+ #: ../admin-views/tribe-options-help.php:128
706
+ #, php-format
707
+ msgid ""
708
+ "Written documentation can only take things so far...sometimes, you need help "
709
+ "from a real person. This is where our %ssupport forums%s come into play."
710
+ msgstr ""
711
+
712
+ #: ../admin-views/tribe-options-help.php:129
713
+ #, php-format
714
+ msgid ""
715
+ "Users of the free The Events Calendar should post their support concerns to "
716
+ "the plugin's %sWordPress.org support forum%s. While we are happy to help "
717
+ "identify and fix bugs that are reported at WordPress.org, please make sure "
718
+ "to read our %ssupport expectations sticky thread%s before posting so you "
719
+ "understand our limitations."
720
+ msgstr ""
721
+
722
+ #: ../admin-views/tribe-options-help.php:130
723
+ msgid ""
724
+ "We hit the WordPress.org forum throughout the week, watching for bugs. If "
725
+ "you report a legitimate bug that we're able to reproduce, we will log it and "
726
+ "patch for an upcoming release. However we are unfortunately unable to "
727
+ "provide customization tips or assist in integrating with 3rd party plugins "
728
+ "or themes."
729
+ msgstr ""
730
+
731
+ #: ../admin-views/tribe-options-help.php:131
732
+ #, php-format
733
+ msgid ""
734
+ "If you're a user of The Events Calendar and would like more support, please "
735
+ "%spurchase a PRO license%s. We hit the PRO forums daily, and can provide a "
736
+ "deeper level of customization/integration support for paying users than we "
737
+ "can on WordPress.org."
738
+ msgstr ""
739
+
740
+ #: ../admin-views/tribe-options-help.php:135
741
+ #, php-format
742
+ msgid ""
743
+ "If you find that you aren't getting the level of service you've come to "
744
+ "expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
745
+ "why. We'll do what we can to make it right."
746
+ msgstr ""
747
+ "EF þér finnst þú ekki fá þá þjónustu sem þú áttir von á frá Modern Tribe, "
748
+ "skjóttu á okkur tölvupóst á %s eða tísti %s og láttu okkur vita. Við munum "
749
+ "gera allt sem við getum til að lagfæra."
750
+
751
+ #: ../admin-views/tribe-options-help.php:136
752
+ msgid "More..."
753
+ msgstr "Meira..."
754
+
755
+ #: ../admin-views/tribe-options-help.php:144
756
+ msgid ""
757
+ "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
758
+ "for installing our labor of love!"
759
+ msgstr ""
760
+ "Hæ! Við erum Modern Trive og við ætlum að hjálpa þér að vera frábær. Takk "
761
+ "fyrir að sækja þetta flotta verk okkar!"
762
+
763
+ #: ../admin-views/tribe-options-help.php:150
764
+ msgid "Getting Started"
765
+ msgstr "Byrja hér"
766
+
767
+ #: ../admin-views/tribe-options-help.php:153
768
+ msgid "Support Resources To Help You Kick Ass"
769
+ msgstr "Aðstoð sem rokkar"
770
+
771
+ #: ../admin-views/tribe-options-help.php:156
772
+ msgid "Forums: Because Everyone Needs A Buddy"
773
+ msgstr "Spjall; allir þurfa vini"
774
+
775
+ #: ../admin-views/tribe-options-help.php:159
776
+ msgid "Not getting help?"
777
+ msgstr ""
778
+
779
+ #: ../admin-views/tribe-options-help.php:169
780
+ #: ../lib/the-events-calendar.class.php:486
781
+ #: ../lib/tribe-settings.class.php:135
782
+ msgid "The Events Calendar"
783
+ msgstr "The Events Calendar"
784
+
785
+ #: ../admin-views/tribe-options-help.php:173
786
+ msgid "Latest Version:"
787
+ msgstr "Nýjasta útgáfan:"
788
+
789
+ #: ../admin-views/tribe-options-help.php:174
790
+ msgid "Author:"
791
+ msgstr "Höfundur:"
792
+
793
+ #: ../admin-views/tribe-options-help.php:174
794
+ msgid "Modern Tribe Inc"
795
+ msgstr "Modern Tribe Inc"
796
+
797
+ #: ../admin-views/tribe-options-help.php:175
798
+ msgid "Requires:"
799
+ msgstr "Krefst:"
800
+
801
+ #: ../admin-views/tribe-options-help.php:175
802
+ msgid "WordPress "
803
+ msgstr "WordPress "
804
+
805
+ #: ../admin-views/tribe-options-help.php:176
806
+ msgid "Wordpress.org Plugin Page"
807
+ msgstr "Wordpress.org Plugin Page"
808
+
809
+ #: ../admin-views/tribe-options-help.php:181
810
+ msgid "Average Rating"
811
+ msgstr "Meðaltals einkunn"
812
+
813
+ #: ../admin-views/tribe-options-help.php:185
814
+ #, php-format
815
+ msgid "Based on %d rating"
816
+ msgid_plural "Based on %d ratings"
817
+ msgstr[0] "Miðað við %d einkunn"
818
+ msgstr[1] "Based on %d ratings"
819
+
820
+ #: ../admin-views/tribe-options-help.php:186
821
+ msgid "Give us 5 stars!"
822
+ msgstr "Gefðu okkur 5 stjörnur!"
823
+
824
+ #: ../admin-views/tribe-options-help.php:189
825
+ msgid "Premium Add-Ons"
826
+ msgstr "Premium viðbætur"
827
+
828
+ #: ../admin-views/tribe-options-help.php:195
829
+ msgid "(Coming Soon!)"
830
+ msgstr "(Kemur bráðum!)"
831
+
832
+ #: ../admin-views/tribe-options-help.php:202
833
+ msgid "News and Tutorials"
834
+ msgstr "Fréttir og leiðbeiningar"
835
+
836
+ #: ../admin-views/tribe-options-network.php:14
837
+ msgid "Network Settings"
838
+ msgstr "Netstillingar"
839
+
840
+ #: ../admin-views/tribe-options-network.php:18
841
+ msgid ""
842
+ "This is where all of the global network settings for Modern Tribe's The "
843
+ "Events Calendar can be modified."
844
+ msgstr ""
845
+ "Hérna eru mögulegt að breyta öllum net stillingar fyrir Modern Tribe The "
846
+ "Events Calendar"
847
+
848
+ #: ../admin-views/tribe-options-network.php:26
849
+ msgid "Hide the following settings tabs on every site:"
850
+ msgstr "Fela þennan stillingar flipa á öllum síðum:"
851
+
852
+ #: ../admin-views/venue-meta-box.php:20
853
+ msgid "Venue Name:"
854
+ msgstr "Nafn staðsetningar:"
855
+
856
+ #: ../admin-views/venue-meta-box.php:27
857
+ #: ../public/advanced-functions/meta.php:371
858
+ msgid "Address:"
859
+ msgstr "Heimilisfang:"
860
+
861
+ #: ../admin-views/venue-meta-box.php:31
862
+ msgid "City:"
863
+ msgstr "Borg:"
864
+
865
+ #: ../admin-views/venue-meta-box.php:35
866
+ msgid "Country:"
867
+ msgstr "Land:"
868
+
869
+ #: ../admin-views/venue-meta-box.php:73
870
+ msgid "State or Province:"
871
+ msgstr "Sýsla/svæði:"
872
+
873
+ #: ../admin-views/venue-meta-box.php:76
874
+ msgid "Select a State:"
875
+ msgstr "Fylki:"
876
+
877
+ #: ../admin-views/venue-meta-box.php:89
878
+ msgid "Postal Code:"
879
+ msgstr "Póstnúmer:"
880
+
881
+ #: ../admin-views/venue-meta-box.php:112 ../admin-views/venue-meta-box.php:134
882
+ msgid "Show Google Map:"
883
+ msgstr "Sýna Google Map:"
884
+
885
+ #: ../admin-views/venue-meta-box.php:122 ../admin-views/venue-meta-box.php:144
886
+ msgid "Show Google Maps Link:"
887
+ msgstr "Sýna Google Maps hlekk:"
888
+
889
+ #: ../admin-views/widget-admin-list.php:11
890
+ msgid "Title:"
891
+ msgstr "Titill:"
892
+
893
+ #: ../admin-views/widget-admin-list.php:16
894
+ msgid "Show:"
895
+ msgstr "Sýna:"
896
+
897
+ #: ../admin-views/widget-admin-list.php:24
898
+ msgid "Show widget only if there are upcoming events:"
899
+ msgstr "Sýna widget aðeins ef það er viðburður framundan:"
900
+
901
+ #: ../admin-views/tickets/attendees.php:9 ../admin-views/tickets/list.php:41
902
+ #: ../lib/tickets/tribe-tickets-pro.php:73
903
+ msgid "Attendees"
904
+ msgstr "Boðsgestir"
905
+
906
+ #: ../admin-views/tickets/attendees.php:14
907
+ msgid "Event Summary"
908
+ msgstr "Samantekt viðburðar"
909
+
910
+ #: ../admin-views/tickets/attendees.php:22
911
+ msgid "Event Details"
912
+ msgstr "Viðuburðar upplýsingar"
913
+
914
+ #: ../admin-views/tickets/attendees.php:24
915
+ msgid "Start Date / Time:"
916
+ msgstr "Upphafsdagsetning / tími:"
917
+
918
+ #: ../admin-views/tickets/attendees.php:26
919
+ msgid "End Date / Time:"
920
+ msgstr "Loka dagsetning / tími:"
921
+
922
+ #: ../admin-views/tickets/attendees.php:34
923
+ msgid "Venue:"
924
+ msgstr "Staður:"
925
+
926
+ #: ../admin-views/tickets/attendees.php:52
927
+ msgid "Ticket Sales"
928
+ msgstr "MIðasala"
929
+
930
+ #: ../admin-views/tickets/attendees.php:64 ../admin-views/tickets/list.php:67
931
+ #, php-format
932
+ msgid "Sold %d"
933
+ msgstr "Selt %d"
934
+
935
+ #: ../admin-views/tickets/attendees.php:66 ../admin-views/tickets/list.php:69
936
+ #, php-format
937
+ msgid "Sold %d of %d"
938
+ msgstr "Selt %d af %d"
939
+
940
+ #: ../admin-views/tickets/attendees.php:81
941
+ msgid "Tickets sold:"
942
+ msgstr "Seldir miðar:"
943
+
944
+ #: ../admin-views/tickets/attendees.php:85
945
+ msgid "Checked in:"
946
+ msgstr "Merkt við:"
947
+
948
+ #: ../admin-views/tickets/attendees.php:105
949
+ msgid "Send the attendee list by email"
950
+ msgstr "Senda þáttakendalista í tölvupósti"
951
+
952
+ #: ../admin-views/tickets/attendees.php:109
953
+ msgid "Select a User:"
954
+ msgstr "Velja notenda:"
955
+
956
+ #: ../admin-views/tickets/attendees.php:110
957
+ msgid "Select..."
958
+ msgstr "Velja..."
959
+
960
+ #: ../admin-views/tickets/attendees.php:112
961
+ msgid "or"
962
+ msgstr "eða"
963
+
964
+ #: ../admin-views/tickets/attendees.php:114
965
+ msgid "Email Address:"
966
+ msgstr "Netfang:"
967
+
968
+ #: ../admin-views/tickets/list.php:21
969
+ msgid "Edit"
970
+ msgstr "Leiðrétta"
971
+
972
+ #: ../admin-views/tickets/list.php:22
973
+ msgid "Delete"
974
+ msgstr "Eyða"
975
+
976
+ #: ../admin-views/tickets/list.php:24
977
+ #, php-format
978
+ msgid "Edit in %s"
979
+ msgstr "Eyða í %s"
980
+
981
+ #: ../admin-views/tickets/list.php:27
982
+ #: ../lib/tribe-admin-events-list.class.php:53
983
+ msgid "View"
984
+ msgstr "Skoða"
985
+
986
+ #: ../admin-views/tickets/list.php:41 ../lib/tickets/tribe-tickets-pro.php:73
987
+ msgid "See who purchased tickets to this event"
988
+ msgstr "Sjá hver hefur keypt miða á þennan viðburð"
989
+
990
+ #: ../admin-views/tickets/meta-box.php:21
991
+ msgid ""
992
+ "This event was created using Community Events. Are you sure you want to sell "
993
+ "tickets for it?"
994
+ msgstr ""
995
+ "Þessi viðburður var stofnaður í Community Events. Ertu viss um að þú viljir "
996
+ "selja miða á þennan viðburð?"
997
+
998
+ #: ../admin-views/tickets/meta-box.php:32
999
+ msgid "Upload image for the ticket header"
1000
+ msgstr "Hlaða upp mynd fyrir miða haus"
1001
+
1002
+ #: ../admin-views/tickets/meta-box.php:33
1003
+ msgid ""
1004
+ "The maximum image size in the email will be 580px wide by any height, and "
1005
+ "then scaled for mobile. If you would like \"retina\" support use an image "
1006
+ "sized to 1160px wide."
1007
+ msgstr ""
1008
+ "Hámarks stærð á mynd er 580 pixlar á breidd sama hver hæðin er, aðlagað að "
1009
+ "farsíma. Ef þú vilt \"retina\" aðstoð notið þá mynd sem er 1160 pixlar á "
1010
+ "breidd."
1011
+
1012
+ #: ../admin-views/tickets/meta-box.php:36
1013
+ msgid "Select an Image"
1014
+ msgstr "Veljið mynd"
1015
+
1016
+ #: ../admin-views/tickets/meta-box.php:44
1017
+ msgid "Remove"
1018
+ msgstr "Fjarlægja"
1019
+
1020
+ #: ../admin-views/tickets/meta-box.php:62
1021
+ #: ../admin-views/tickets/meta-box.php:72
1022
+ msgid "Add new ticket"
1023
+ msgstr "Bæta við miða"
1024
+
1025
+ #: ../admin-views/tickets/meta-box.php:73
1026
+ msgid "Edit ticket"
1027
+ msgstr "Lagfæra miða"
1028
+
1029
+ #: ../admin-views/tickets/meta-box.php:79
1030
+ msgid "Sell using:"
1031
+ msgstr "Selja með:"
1032
+
1033
+ #: ../admin-views/tickets/meta-box.php:96
1034
+ msgid "Ticket Name:"
1035
+ msgstr "Nafn á miða:"
1036
+
1037
+ #: ../admin-views/tickets/meta-box.php:103
1038
+ msgid "Ticket Description:"
1039
+ msgstr "Lýsing á miða:"
1040
+
1041
+ #: ../admin-views/tickets/meta-box.php:112
1042
+ msgid "Price:"
1043
+ msgstr "Verð:"
1044
+
1045
+ #: ../admin-views/tickets/meta-box.php:124
1046
+ msgid "Start sale:"
1047
+ msgstr "Hefja sölu:"
1048
+
1049
+ #: ../admin-views/tickets/meta-box.php:148
1050
+ msgid "End sale:"
1051
+ msgstr "Ljúka sölu:"
1052
+
1053
+ #: ../admin-views/tickets/meta-box.php:170
1054
+ msgid ""
1055
+ "When will ticket sales occur? If you don't set a start/end date for sales, "
1056
+ "tickets will be available from now until the event ends."
1057
+ msgstr ""
1058
+ "Hvenær er miðasala? Ef ekki er sett upphafs og enda dagsetning fyrir söluna "
1059
+ "þá verða miðar í boði fram að lokum viðburðar."
1060
+
1061
+ #: ../lib/the-events-calendar.class.php:491
1062
+ msgid "month"
1063
+ msgstr "mánuður"
1064
+
1065
+ #: ../lib/the-events-calendar.class.php:492
1066
+ msgid "upcoming"
1067
+ msgstr "komandi"
1068
+
1069
+ #: ../lib/the-events-calendar.class.php:493
1070
+ msgid "past"
1071
+ msgstr "liðinn"
1072
+
1073
+ #: ../lib/the-events-calendar.class.php:495
1074
+ msgid "venue"
1075
+ msgstr "saðsetning"
1076
+
1077
+ #: ../lib/the-events-calendar.class.php:509
1078
+ #, php-format
1079
+ msgid "Initializing Tribe Events on %s"
1080
+ msgstr "Frumstilla Tribe Events á %s"
1081
+
1082
+ #: ../lib/the-events-calendar.class.php:622
1083
+ #, php-format
1084
+ msgid ""
1085
+ "Your version of The Events Calendar is not up-to-date with one of your The "
1086
+ "Events Calendar add-ons. Please %supdate now.%s"
1087
+ msgstr ""
1088
+ "Þessi útgáfa af The Events Calendar er ekki í samræmi við eina af The Events "
1089
+ "Calendar vibótum. Vinsamlega %supdate now.%s"
1090
+
1091
+ #: ../lib/the-events-calendar.class.php:639
1092
+ #, php-format
1093
+ msgid ""
1094
+ "The following plugins are out of date: <b>%s</b>. All add-ons contain "
1095
+ "dependencies on The Events Calendar and will not function properly unless "
1096
+ "paired with the right version. %sWant to pair an older version%s?"
1097
+ msgstr ""
1098
+ "Meðfylgjandi plugins eru unnrunnin: <b>%s</b>. Allar viðbætur innihalda "
1099
+ "tengingu við The Events Calendar og munu ekki virka sem skyldi án þessa að "
1100
+ "vera rétt. %sViltu para við eldri útgáfu%s?"
1101
+
1102
+ #: ../lib/the-events-calendar.class.php:703
1103
+ #: ../lib/the-events-calendar.class.php:738
1104
+ #: ../lib/the-events-calendar.class.php:740
1105
+ msgid "Licenses"
1106
+ msgstr "Skírteini"
1107
+
1108
+ #: ../lib/the-events-calendar.class.php:707
1109
+ #, php-format
1110
+ msgid ""
1111
+ "<p>The license key you received when completing your purchase from %s will "
1112
+ "grant you access to support and updates until it expires. You do not need to "
1113
+ "enter the key below for the plugins to work, but you will need to enter it "
1114
+ "to get automatic updates. <strong>Find your license keys at <a href=\"%s\" "
1115
+ "target=\"_blank\">%s</a></strong>.</p> <p>Each paid add-on has its own "
1116
+ "unique license key. Simply paste the key into its appropriate field on "
1117
+ "below, and give it a moment to validate. You know you're set when a green "
1118
+ "expiration date appears alongside a \"valid\" message.</p> <p>If you're "
1119
+ "seeing a red message telling you that your key isn't valid or is out of "
1120
+ "installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your "
1121
+ "installs or renew / upgrade your license.</p><p>Not seeing an update but "
1122
+ "expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> "
1123
+ "and click \"Check Again\".</p>"
1124
+ msgstr ""
1125
+ "<p> Leyfislykill sem þú fékkst við kaupin frá %s veitir þér aðgang að aðstoð "
1126
+ "og uppfærslum þangað til það rennur út. Þú þarft ekki að skrá númerið hér að "
1127
+ "neðan svo að plugin virki, en þú þarft að skrá það til að fá sjálfvirkar "
1128
+ "uppfærslur, <strong>Find your license keys at <a href=\"%s\" target=\"_blank"
1129
+ "\">%s</a></strong>.</p> <p> Hver keypt viðbót hefur sinn leyfislykil. "
1130
+ "Einfaldlega skráið leyfislykilinn í viðeigandi svæði og dokið við. Þú veist "
1131
+ "að allt er klárt þegar grænn litur birtist við hliðina á \"valid\" "
1132
+ "skilaboðum.</p> <p>If you're seeing a red message telling you that your key "
1133
+ "isn't valid or is out of installs, visit <a href=\"%s\" target=\"_blank\">"
1134
+ "%s</a> to manage your installs or renew / upgrade your license.</p><p>Not "
1135
+ "seeing an update but expecting one? In WordPress, go to <a href=\"%s"
1136
+ "\">Dashboard > Updates</a> and click \"Check Again\".</p>"
1137
+
1138
+ #: ../lib/the-events-calendar.class.php:730
1139
+ msgid "General"
1140
+ msgstr "Flokkur"
1141
+
1142
+ #: ../lib/the-events-calendar.class.php:731
1143
+ msgid "Display"
1144
+ msgstr "Sýna"
1145
+
1146
+ #: ../lib/the-events-calendar.class.php:782
1147
+ #, php-format
1148
+ msgid ""
1149
+ "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
1150
+ "your WordPress install."
1151
+ msgstr ""
1152
+ "The Events Calendar þarf WordPress %s eða nýrra. Vinsamlega uppfærið Word "
1153
+ "Press."
1154
+
1155
+ #: ../lib/the-events-calendar.class.php:785
1156
+ #, php-format
1157
+ msgid ""
1158
+ "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
1159
+ "about moving you to a newer version of PHP."
1160
+ msgstr ""
1161
+ "Afsakið, The Events Calendar requires PHP %s or higher. Hafið samband við "
1162
+ "hýsingar aðila til að uppfæra í nýrri útgáfu af PHP."
1163
+
1164
+ #: ../lib/the-events-calendar.class.php:1000 ../lib/widget-list.class.php:151
1165
+ #: ../public/template-tags/loop.php:137
1166
+ msgid "Upcoming Events"
1167
+ msgstr "Komandi viðburðir"
1168
+
1169
+ #: ../lib/the-events-calendar.class.php:1003
1170
+ #: ../public/template-tags/loop.php:165
1171
+ msgid "Past Events"
1172
+ msgstr "Liðnir viðburðir"
1173
+
1174
+ #: ../lib/the-events-calendar.class.php:1008
1175
+ #: ../lib/the-events-calendar.class.php:1015
1176
+ #, php-format
1177
+ msgid "Events for %s"
1178
+ msgstr "Viðburðir fyrir %s"
1179
+
1180
+ #: ../lib/the-events-calendar.class.php:1010
1181
+ msgid "Events this month"
1182
+ msgstr "Viðburðir í þessum mánuði"
1183
+
1184
+ #: ../lib/the-events-calendar.class.php:1022
1185
+ #, php-format
1186
+ msgid "Events at %s"
1187
+ msgstr "Viðburðir á %s"
1188
+
1189
+ #: ../lib/the-events-calendar.class.php:1041
1190
+ msgid "No description has been entered for this event."
1191
+ msgstr "Engin lýsing hefur verið sett fyrir þennan viðburð."
1192
+
1193
+ #: ../lib/the-events-calendar.class.php:1303
1194
+ msgid "category"
1195
+ msgstr "kategori"
1196
+
1197
+ #: ../lib/the-events-calendar.class.php:1313
1198
+ msgid "tag"
1199
+ msgstr "tag"
1200
+
1201
+ #: ../lib/the-events-calendar.class.php:1340
1202
+ #: ../lib/the-events-calendar.class.php:3820
1203
+ #: ../lib/the-events-calendar.class.php:3880
1204
+ msgid "Events"
1205
+ msgstr "Viðburðir"
1206
+
1207
+ #: ../lib/the-events-calendar.class.php:1341
1208
+ msgid "Event"
1209
+ msgstr "Viðburður"
1210
+
1211
+ #: ../lib/the-events-calendar.class.php:1342
1212
+ #: ../lib/the-events-calendar.class.php:1355
1213
+ #: ../lib/the-events-calendar.class.php:1368
1214
+ msgid "Add New"
1215
+ msgstr "Bæta við nýjum"
1216
+
1217
+ #: ../lib/the-events-calendar.class.php:1343
1218
+ msgid "Add New Event"
1219
+ msgstr "Bæta við nýjum viðburði"
1220
+
1221
+ #: ../lib/the-events-calendar.class.php:1344
1222
+ msgid "Edit Event"
1223
+ msgstr "Lagfæra viðburð"
1224
+
1225
+ #: ../lib/the-events-calendar.class.php:1345
1226
+ msgid "New Event"
1227
+ msgstr "Nýr viðburður"
1228
+
1229
+ #: ../lib/the-events-calendar.class.php:1346
1230
+ msgid "View Event"
1231
+ msgstr "Skoða viðburð"
1232
+
1233
+ #: ../lib/the-events-calendar.class.php:1347
1234
+ msgid "Search Events"
1235
+ msgstr "Leita að viðburðum"
1236
+
1237
+ #: ../lib/the-events-calendar.class.php:1348
1238
+ msgid "No events found"
1239
+ msgstr "Enginn viðburður finnst"
1240
+
1241
+ #: ../lib/the-events-calendar.class.php:1349
1242
+ msgid "No events found in Trash"
1243
+ msgstr "Enginn viðburður í ruslafötu"
1244
+
1245
+ #: ../lib/the-events-calendar.class.php:1353
1246
+ #: ../lib/the-events-calendar.class.php:1465
1247
+ msgid "Venues"
1248
+ msgstr "Staðsetningar"
1249
+
1250
+ #: ../lib/the-events-calendar.class.php:1354
1251
+ #: ../public/advanced-functions/meta.php:331 ../views/tickets/email.php:343
1252
+ msgid "Venue"
1253
+ msgstr "Staðsetning"
1254
+
1255
+ #: ../lib/the-events-calendar.class.php:1356
1256
+ msgid "Add New Venue"
1257
+ msgstr "Bæta við staðsetningu"
1258
+
1259
+ #: ../lib/the-events-calendar.class.php:1357
1260
+ msgid "Edit Venue"
1261
+ msgstr "Lagfæra staðsetningu"
1262
+
1263
+ #: ../lib/the-events-calendar.class.php:1358
1264
+ msgid "New Venue"
1265
+ msgstr "Ný staðsetning"
1266
+
1267
+ #: ../lib/the-events-calendar.class.php:1359
1268
+ msgid "View Venue"
1269
+ msgstr "Skoða staðsetningu"
1270
+
1271
+ #: ../lib/the-events-calendar.class.php:1360
1272
+ msgid "Search Venues"
1273
+ msgstr "Leita að staðsetningum"
1274
+
1275
+ #: ../lib/the-events-calendar.class.php:1361
1276
+ msgid "No venue found"
1277
+ msgstr "Engin staðsetning finnst"
1278
+
1279
+ #: ../lib/the-events-calendar.class.php:1362
1280
+ msgid "No venues found in Trash"
1281
+ msgstr "Engin staðsetning í ruslafötu"
1282
+
1283
+ #: ../lib/the-events-calendar.class.php:1366
1284
+ #: ../lib/the-events-calendar.class.php:1466
1285
+ msgid "Organizers"
1286
+ msgstr "Skipuleggjendur"
1287
+
1288
+ #: ../lib/the-events-calendar.class.php:1367
1289
+ #: ../public/advanced-functions/meta.php:393 ../views/tickets/email.php:362
1290
+ msgid "Organizer"
1291
+ msgstr "Skipuleggjandi"
1292
+
1293
+ #: ../lib/the-events-calendar.class.php:1369
1294
+ msgid "Add New Organizer"
1295
+ msgstr "Bæta við skipuleggjanda"
1296
+
1297
+ #: ../lib/the-events-calendar.class.php:1370
1298
+ msgid "Edit Organizer"
1299
+ msgstr "Lagfæra skipuleggjanda"
1300
+
1301
+ #: ../lib/the-events-calendar.class.php:1371
1302
+ msgid "New Organizer"
1303
+ msgstr "Nýr skipuleggjandi"
1304
+
1305
+ #: ../lib/the-events-calendar.class.php:1372
1306
+ msgid "View Organizer"
1307
+ msgstr "Skoða skipuleggjanda"
1308
+
1309
+ #: ../lib/the-events-calendar.class.php:1373
1310
+ msgid "Search Organizers"
1311
+ msgstr "Leita að skipuleggjendum"
1312
+
1313
+ #: ../lib/the-events-calendar.class.php:1374
1314
+ msgid "No organizer found"
1315
+ msgstr "Enginn skipuleggjandi finnst"
1316
+
1317
+ #: ../lib/the-events-calendar.class.php:1375
1318
+ msgid "No organizers found in Trash"
1319
+ msgstr "Enginn skipuleggjandi í ruslafötu"
1320
+
1321
+ #: ../lib/the-events-calendar.class.php:1379
1322
+ #: ../lib/tribe-admin-events-list.class.php:217
1323
+ msgid "Event Categories"
1324
+ msgstr "Viðburðar flokkar"
1325
+
1326
+ #: ../lib/the-events-calendar.class.php:1380
1327
+ #: ../public/template-tags/general.php:276
1328
+ msgid "Event Category"
1329
+ msgstr "Viðburðar flokkur"
1330
+
1331
+ #: ../lib/the-events-calendar.class.php:1381
1332
+ msgid "Search Event Categories"
1333
+ msgstr "Leita að viðburðar flokk"
1334
+
1335
+ #: ../lib/the-events-calendar.class.php:1382
1336
+ msgid "All Event Categories"
1337
+ msgstr "Allir viðburðarflokkar"
1338
+
1339
+ #: ../lib/the-events-calendar.class.php:1383
1340
+ msgid "Parent Event Category"
1341
+ msgstr "Höfuð flokkur viðburða"
1342
+
1343
+ #: ../lib/the-events-calendar.class.php:1384
1344
+ msgid "Parent Event Category:"
1345
+ msgstr "Höfuð flokkur viðburða:"
1346
+
1347
+ #: ../lib/the-events-calendar.class.php:1385
1348
+ msgid "Edit Event Category"
1349
+ msgstr "Lagfæa viðburðarflokka"
1350
+
1351
+ #: ../lib/the-events-calendar.class.php:1386
1352
+ msgid "Update Event Category"
1353
+ msgstr "Uppfæra viðburðarflokka"
1354
+
1355
+ #: ../lib/the-events-calendar.class.php:1387
1356
+ msgid "Add New Event Category"
1357
+ msgstr "Bæta við nýjum viðburðar flokk"
1358
+
1359
+ #: ../lib/the-events-calendar.class.php:1388
1360
+ msgid "New Event Category Name"
1361
+ msgstr "Nafn á nýjum viðburðarflokki"
1362
+
1363
+ #: ../lib/the-events-calendar.class.php:1404
1364
+ #, php-format
1365
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1366
+ msgstr "Viðburður uppfærður. <a href=\"%s\">Skoða viðburð</a>"
1367
+
1368
+ #: ../lib/the-events-calendar.class.php:1405
1369
+ #: ../lib/the-events-calendar.class.php:1422
1370
+ #: ../lib/the-events-calendar.class.php:1439
1371
+ msgid "Custom field updated."
1372
+ msgstr "Sérsniðið svæði uppfært."
1373
+
1374
+ #: ../lib/the-events-calendar.class.php:1406
1375
+ #: ../lib/the-events-calendar.class.php:1423
1376
+ #: ../lib/the-events-calendar.class.php:1440
1377
+ msgid "Custom field deleted."
1378
+ msgstr "Sérsniðnu svæði eytt."
1379
+
1380
+ #: ../lib/the-events-calendar.class.php:1407
1381
+ msgid "Event updated."
1382
+ msgstr "Viðburður uppfærður."
1383
+
1384
+ #: ../lib/the-events-calendar.class.php:1409
1385
+ #, php-format
1386
+ msgid "Event restored to revision from %s"
1387
+ msgstr "Viðburður endurstilltur frá %s"
1388
+
1389
+ #: ../lib/the-events-calendar.class.php:1410
1390
+ #, php-format
1391
+ msgid "Event published. <a href=\"%s\">View event</a>"
1392
+ msgstr "Viðburður skráður. <a href=\"%s\">Forkoða viðburð</a>"
1393
+
1394
+ #: ../lib/the-events-calendar.class.php:1411
1395
+ msgid "Event saved."
1396
+ msgstr "Viðburður vistaður."
1397
+
1398
+ #: ../lib/the-events-calendar.class.php:1412
1399
+ #, php-format
1400
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1401
+ msgstr ""
1402
+ "Viðburði bætt við. <a target=\"_blank\" href=\"%s\">Forsýna viðburð</a>"
1403
+
1404
+ #: ../lib/the-events-calendar.class.php:1413
1405
+ #, php-format
1406
+ msgid ""
1407
+ "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1408
+ "\">Preview event</a>"
1409
+ msgstr ""
1410
+ "Viðburður áætlaður: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1411
+ "\">Forskoða viðburð</a>"
1412
+
1413
+ #: ../lib/the-events-calendar.class.php:1415
1414
+ #: ../lib/the-events-calendar.class.php:1432
1415
+ #: ../lib/the-events-calendar.class.php:1449
1416
+ msgid "M j, Y @ G:i"
1417
+ msgstr "M j, Y @ G:i"
1418
+
1419
+ #: ../lib/the-events-calendar.class.php:1416
1420
+ #, php-format
1421
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1422
+ msgstr ""
1423
+ "Uppfært uppkast viðburðar. <a target=\"_blank\" href=\"%s\">Forskoða "
1424
+ "viðburð</a>"
1425
+
1426
+ #: ../lib/the-events-calendar.class.php:1421
1427
+ #, php-format
1428
+ msgid "Venue updated. <a href=\"%s\">View venue</a>"
1429
+ msgstr "Staðsetning uppfærð. <a href=\"%s\">Skoða staðsetningu</a>"
1430
+
1431
+ #: ../lib/the-events-calendar.class.php:1424
1432
+ msgid "Venue updated."
1433
+ msgstr "Staðsetning uppfærð"
1434
+
1435
+ #: ../lib/the-events-calendar.class.php:1426
1436
+ #, php-format
1437
+ msgid "Venue restored to revision from %s"
1438
+ msgstr "Staðsetning endurstillt frá %s"
1439
+
1440
+ #: ../lib/the-events-calendar.class.php:1427
1441
+ #, php-format
1442
+ msgid "Venue published. <a href=\"%s\">View venue</a>"
1443
+ msgstr "Staðsetning skráð. <a href=\"%s\">Skoða staðsetningu</a>"
1444
+
1445
+ #: ../lib/the-events-calendar.class.php:1428
1446
+ msgid "Venue saved."
1447
+ msgstr "Staðsetning vistuð."
1448
+
1449
+ #: ../lib/the-events-calendar.class.php:1429
1450
+ #, php-format
1451
+ msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1452
+ msgstr ""
1453
+ "Staðsetning skráð. <a target=\"_blank\" href=\"%s\">Forskoða staðsetningu</a>"
1454
+
1455
+ #: ../lib/the-events-calendar.class.php:1430
1456
+ #, php-format
1457
+ msgid ""
1458
+ "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1459
+ "\">Preview venue</a>"
1460
+ msgstr ""
1461
+ "Staðsetning áætluð fyrir: <strong>%1$s</strong>. <a target=\"_blank\" href="
1462
+ "\"%2$s\">Forskoða staðsetningu</a>"
1463
+
1464
+ #: ../lib/the-events-calendar.class.php:1433
1465
+ #, php-format
1466
+ msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1467
+ msgstr ""
1468
+ "Drög að staðsetningu uppfærð. <a target=\"_blank\" href=\"%s\">Forskoða "
1469
+ "staðsetningu</a>"
1470
+
1471
+ #: ../lib/the-events-calendar.class.php:1438
1472
+ #, php-format
1473
+ msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1474
+ msgstr "Skipuleggjandi uppfærður. <a href=\"%s\">Skoða skipuleggjanda</a>"
1475
+
1476
+ #: ../lib/the-events-calendar.class.php:1441
1477
+ msgid "Organizer updated."
1478
+ msgstr "Skipuleggjandi uppfærður"
1479
+
1480
+ #: ../lib/the-events-calendar.class.php:1443
1481
+ #, php-format
1482
+ msgid "Organizer restored to revision from %s"
1483
+ msgstr "Skipuleggjandi uppfærður frá %s"
1484
+
1485
+ #: ../lib/the-events-calendar.class.php:1444
1486
+ #, php-format
1487
+ msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1488
+ msgstr "Skipuleggjandi skráður. <a href=\"%s\">Skoða skipuleggjanda</a>"
1489
+
1490
+ #: ../lib/the-events-calendar.class.php:1445
1491
+ msgid "Organizer saved."
1492
+ msgstr "Skipuleggjandi vistaður."
1493
+
1494
+ #: ../lib/the-events-calendar.class.php:1446
1495
+ #, php-format
1496
+ msgid ""
1497
+ "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1498
+ msgstr ""
1499
+ "Skipuleggjandi skráður inn. <a target=\"_blank\" href=\"%s\">Forskoða "
1500
+ "skipuleggjanda</a>"
1501
+
1502
+ #: ../lib/the-events-calendar.class.php:1447
1503
+ #, php-format
1504
+ msgid ""
1505
+ "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
1506
+ "\"%2$s\">Preview organizer</a>"
1507
+ msgstr ""
1508
+ "Skipuleggjandi áætlaður fyrir: <strong>%1$s</strong>. <a target=\"_blank\" "
1509
+ "href=\"%2$s\">Forskoða skipuleggjanda</a>"
1510
+
1511
+ #: ../lib/the-events-calendar.class.php:1450
1512
+ #, php-format
1513
+ msgid ""
1514
+ "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
1515
+ "a>"
1516
+ msgstr ""
1517
+ "Drög að skipuleggjanda uppfærð. <a target=\"_blank\" href=\"%s\">Forskoða "
1518
+ "skipuleggjanda</a>"
1519
+
1520
+ #: ../lib/the-events-calendar.class.php:1491
1521
+ msgid "Use Saved Venue:"
1522
+ msgstr "Nota vistaða staðsetningu:"
1523
+
1524
+ #: ../lib/the-events-calendar.class.php:1520
1525
+ msgid "Use Saved Organizer:"
1526
+ msgstr "Nota vistaðan skipuleggjanda:"
1527
+
1528
+ #: ../lib/the-events-calendar.class.php:1556
1529
+ msgid "Use New Venue"
1530
+ msgstr "Nota nýja staðsetningu"
1531
+
1532
+ #: ../lib/the-events-calendar.class.php:1558
1533
+ msgid "My Venues"
1534
+ msgstr "Mín staðsetning"
1535
+
1536
+ #: ../lib/the-events-calendar.class.php:1563
1537
+ msgid "Available Venues"
1538
+ msgstr "Lausar staðsetningar"
1539
+
1540
+ #: ../lib/the-events-calendar.class.php:1574
1541
+ msgid "No saved venue exists."
1542
+ msgstr "Engin staðsetning vistuð."
1543
+
1544
+ #: ../lib/the-events-calendar.class.php:1608
1545
+ msgid "Use New Organizer"
1546
+ msgstr "Nota nýjan skipuleggjanda"
1547
+
1548
+ #: ../lib/the-events-calendar.class.php:1610
1549
+ msgid "My Organizers"
1550
+ msgstr "Mínir skipuleggjendur"
1551
+
1552
+ #: ../lib/the-events-calendar.class.php:1615
1553
+ msgid "Available Organizers"
1554
+ msgstr "Lausir skipuleggjendur"
1555
+
1556
+ #: ../lib/the-events-calendar.class.php:1626
1557
+ msgid "No saved organizer exists."
1558
+ msgstr "Enginn vistaður skipuleggjandi."
1559
+
1560
+ #: ../lib/the-events-calendar.class.php:1753
1561
+ msgid "Next"
1562
+ msgstr "Næsti"
1563
+
1564
+ #: ../lib/the-events-calendar.class.php:1754
1565
+ msgid "Prev"
1566
+ msgstr "Fyrri"
1567
+
1568
+ #: ../lib/the-events-calendar.class.php:1755
1569
+ msgid "Today"
1570
+ msgstr "Í dag"
1571
+
1572
+ #: ../lib/the-events-calendar.class.php:1756
1573
+ msgid "Done"
1574
+ msgstr "Lokið"
1575
+
1576
+ #: ../lib/the-events-calendar.class.php:1965
1577
+ msgid "Network"
1578
+ msgstr "Net"
1579
+
1580
+ #: ../lib/the-events-calendar.class.php:2902
1581
+ msgid "Unnamed Venue"
1582
+ msgstr "Nafnlaus staðsetning"
1583
+
1584
+ #: ../lib/the-events-calendar.class.php:2992
1585
+ msgid "Unnamed Organizer"
1586
+ msgstr "Nafnlaus skipuleggjandi"
1587
+
1588
+ #: ../lib/the-events-calendar.class.php:3467
1589
+ msgid "Event Options"
1590
+ msgstr "Viðburðar valkostir"
1591
+
1592
+ #: ../lib/the-events-calendar.class.php:3469
1593
+ msgid "Venue Information"
1594
+ msgstr "Staðsetningar upplýsingar"
1595
+
1596
+ #: ../lib/the-events-calendar.class.php:3474
1597
+ msgid "Organizer Information"
1598
+ msgstr "Skipuleggjanda upplýsingar"
1599
+
1600
+ #: ../lib/the-events-calendar.class.php:3669
1601
+ msgid "Support"
1602
+ msgstr "Aðstoð"
1603
+
1604
+ #: ../lib/the-events-calendar.class.php:3672
1605
+ msgid "View All Add-Ons"
1606
+ msgstr "Skoða allar viðbætur"
1607
+
1608
+ #: ../lib/the-events-calendar.class.php:3689
1609
+ msgid "News from Modern Tribe"
1610
+ msgstr "Fréttir frá Modern Tribe"
1611
+
1612
+ #: ../lib/the-events-calendar.class.php:3770
1613
+ msgid "Additional Functionality"
1614
+ msgstr "Viðbótar virkni"
1615
+
1616
+ #: ../lib/the-events-calendar.class.php:3775
1617
+ msgid ""
1618
+ "Looking for additional functionality including recurring events, ticket "
1619
+ "sales, publicly submitted events, new views and more?"
1620
+ msgstr ""
1621
+ "Ertu að leyta að viðbótar virkni svo sem endurteknum viðburður, miðasölu, "
1622
+ "innsendum viðburðum, ofl?"
1623
+
1624
+ #: ../lib/the-events-calendar.class.php:3775
1625
+ #, php-format
1626
+ msgid "Check out the <a href=\"%s\">available add-ons</a>."
1627
+ msgstr "Kíktu á <a href=\"%s\">fáanlegar viðbætur</a>."
1628
+
1629
+ #: ../lib/the-events-calendar.class.php:3846
1630
+ #: ../lib/the-events-calendar.class.php:3937
1631
+ msgid "View Calendar"
1632
+ msgstr "Skoða dagatal"
1633
+
1634
+ #: ../lib/the-events-calendar.class.php:3854
1635
+ msgid "Add Event"
1636
+ msgstr "Bæta við viðburðum"
1637
+
1638
+ #: ../lib/the-events-calendar.class.php:3863
1639
+ msgid "Edit Events"
1640
+ msgstr "Lagfæra viðburði"
1641
+
1642
+ #: ../lib/the-events-calendar.class.php:3872
1643
+ #: ../lib/the-events-calendar.class.php:3973
1644
+ #: ../lib/tribe-settings.class.php:164
1645
+ msgid "Settings"
1646
+ msgstr "Stillingar"
1647
+
1648
+ #: ../lib/the-events-calendar.class.php:3908
1649
+ #, php-format
1650
+ msgid ""
1651
+ "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
1652
+ "change the events slug, visit %sEvents -> Settings%s."
1653
+ msgstr ""
1654
+ "Velkomin í The Events Calendar! Þú getur skoðað dagatalið þitt á %s. Til að "
1655
+ "breyta farðu inná %sEvents -> Settings%s."
1656
+
1657
+ #: ../lib/the-events-calendar.class.php:3974
1658
+ msgid "Calendar"
1659
+ msgstr "Dagatal"
1660
+
1661
+ #: ../lib/the-events-calendar.class.php:4037
1662
+ msgid "List"
1663
+ msgstr "Listi"
1664
+
1665
+ #: ../lib/the-events-calendar.class.php:4048
1666
+ msgid "Month"
1667
+ msgstr "Mánuður"
1668
+
1669
+ #: ../lib/the-events-calendar.class.php:4088
1670
+ msgid "Date"
1671
+ msgstr "Dagsetning"
1672
+
1673
+ #: ../lib/the-events-calendar.class.php:4091
1674
+ msgid "Events In"
1675
+ msgstr "Viðburðir í"
1676
+
1677
+ #: ../lib/the-events-calendar.class.php:4093
1678
+ msgid "Events From"
1679
+ msgstr "Viðburðir frá"
1680
+
1681
+ #: ../lib/the-events-calendar.class.php:4276 ../views/list/nav.php:22
1682
+ #: ../views/list/nav.php:28 ../views/list/nav.php:31
1683
+ msgid "&laquo; Previous Events"
1684
+ msgstr "&laquo; Fyrri viðburðir"
1685
+
1686
+ #: ../lib/the-events-calendar.class.php:4277 ../views/list/nav.php:40
1687
+ #: ../views/list/nav.php:43 ../views/list/nav.php:49
1688
+ msgid "Next Events &raquo;"
1689
+ msgstr "Næstu viðburðir &raquo;"
1690
+
1691
+ #: ../lib/tribe-admin-events-list.class.php:53
1692
+ #, php-format
1693
+ msgid "View &#8220;%s&#8221;"
1694
+ msgstr "Skoða &#8220;%s&#8221;"
1695
+
1696
+ #: ../lib/tribe-admin-events-list.class.php:222
1697
+ msgid "Start Date"
1698
+ msgstr "Upphafsdagsetning"
1699
+
1700
+ #: ../lib/tribe-admin-events-list.class.php:223
1701
+ msgid "End Date"
1702
+ msgstr "Loka dagsetning"
1703
+
1704
+ #: ../lib/tribe-admin-events-list.class.php:225
1705
+ msgid "Recurring?"
1706
+ msgstr "Endurtekning?"
1707
+
1708
+ #: ../lib/tribe-admin-events-list.class.php:282
1709
+ #: ../lib/tickets/tribe-tickets-pro.php:229
1710
+ msgid "Yes"
1711
+ msgstr "Já"
1712
+
1713
+ #: ../lib/tribe-admin-events-list.class.php:282
1714
+ msgid "No"
1715
+ msgstr "Nei"
1716
+
1717
+ #: ../lib/tribe-admin-events-list.class.php:360
1718
+ #, php-format
1719
+ msgid "All %s"
1720
+ msgstr "Allt %s"
1721
+
1722
+ #: ../lib/tribe-app-shop.class.php:62 ../lib/tribe-app-shop.class.php:63
1723
+ #: ../lib/tribe-app-shop.class.php:84
1724
+ msgid "Event Add-Ons"
1725
+ msgstr "Viðbætur viðburða"
1726
+
1727
+ #: ../lib/tribe-debug-bar.class.php:29
1728
+ msgid "Tribe"
1729
+ msgstr "Tribe"
1730
+
1731
+ #: ../lib/tribe-event-api.class.php:372 ../lib/tribe-view-helpers.class.php:44
1732
+ #: ../public/template-tags/venue.php:240
1733
+ msgid "United States"
1734
+ msgstr "United States"
1735
+
1736
+ #: ../lib/tribe-event-exception.class.php:17
1737
+ #: ../lib/tribe-event-exception.class.php:34
1738
+ msgid "Error"
1739
+ msgstr "Villa"
1740
+
1741
+ #: ../lib/tribe-field.class.php:161
1742
+ msgid "Invalid field type specified"
1743
+ msgstr "Ógild tegund svæðis ákveðin"
1744
+
1745
+ #: ../lib/tribe-field.class.php:414
1746
+ msgid "No radio options specified"
1747
+ msgstr "Engin útvarps valmöguleiki ákveðinn"
1748
+
1749
+ #: ../lib/tribe-field.class.php:451
1750
+ msgid "No checkbox options specified"
1751
+ msgstr "Engin valglugga möguleiki ákveðinn"
1752
+
1753
+ #: ../lib/tribe-field.class.php:505
1754
+ msgid "No select options specified"
1755
+ msgstr "Enginn valinn valkostur ákveðinn"
1756
+
1757
+ #: ../lib/tribe-settings-tab.class.php:219
1758
+ msgid "There are no fields setup for this tab yet."
1759
+ msgstr "Það eru engin svæði uppsett fyrir þennan flipa."
1760
+
1761
+ #: ../lib/tribe-settings.class.php:164 ../lib/tribe-settings.class.php:176
1762
+ msgid "The Events Calendar Settings"
1763
+ msgstr "The Events Calendar stillingar"
1764
+
1765
+ #: ../lib/tribe-settings.class.php:176
1766
+ msgid "Events Settings"
1767
+ msgstr "Viðburðar stillingar"
1768
+
1769
+ #: ../lib/tribe-settings.class.php:225
1770
+ #, php-format
1771
+ msgid "%s Settings"
1772
+ msgstr "%s stillingar"
1773
+
1774
+ #: ../lib/tribe-settings.class.php:239
1775
+ msgid "You've requested a non-existent tab."
1776
+ msgstr "Þú hefur beðið um flipa sem er ekki til."
1777
+
1778
+ #: ../lib/tribe-settings.class.php:247
1779
+ msgid " Save Changes"
1780
+ msgstr "Vista breytingar"
1781
+
1782
+ #: ../lib/tribe-settings.class.php:299
1783
+ msgid "You don't have permission to do that."
1784
+ msgstr "Þú hefur ekki heimild til að gera þetta."
1785
+
1786
+ #: ../lib/tribe-settings.class.php:305
1787
+ msgid "The request was sent insecurely."
1788
+ msgstr "Beiðni var send ótryggilega."
1789
+
1790
+ #: ../lib/tribe-settings.class.php:311
1791
+ msgid "The request wasn't sent from this tab."
1792
+ msgstr "Beiðni var ekki send frá flipa."
1793
+
1794
+ #: ../lib/tribe-settings.class.php:476
1795
+ msgid "Your form had the following errors:"
1796
+ msgstr "Eftirfarandi villur voru á beiðni:"
1797
+
1798
+ #: ../lib/tribe-settings.class.php:485
1799
+ msgid "None of your settings were saved. Please try again."
1800
+ msgstr "Engar stillingar voru vistaðar. Reyndu aftur."
1801
+
1802
+ #: ../lib/tribe-settings.class.php:485
1803
+ msgid ""
1804
+ "The above setting was not saved. Other settings were successfully saved."
1805
+ msgid_plural ""
1806
+ "The above settings were not saved. Other settings were successfully saved."
1807
+ msgstr[0] "Ofannefnd stilling var ekki vistuð. Aðrar stillingar voru vistaðar."
1808
+ msgstr[1] ""
1809
+ "Ofannefndar stillingar voru ekki vistaðar. Aðrar stillingar voru vistaðar."
1810
+
1811
+ #: ../lib/tribe-settings.class.php:509
1812
+ msgid "Settings saved."
1813
+ msgstr "Stiilingar vistaðar."
1814
+
1815
+ #: ../lib/tribe-template-factory.class.php:225
1816
+ #, php-format
1817
+ msgid "There were no results found for <strong>\"%s\"</strong>."
1818
+ msgstr "Engar niðurstöður fundust fyrir <strong>\"%s\"</strong>."
1819
+
1820
+ #: ../lib/tribe-template-factory.class.php:235
1821
+ #, php-format
1822
+ msgid ""
1823
+ "listed under %s. Check out past events for this category or view the full "
1824
+ "calendar."
1825
+ msgstr ""
1826
+ "vistað undir %s. Skoðið fyrri viðburði í þessum flokk eða skoðið allt "
1827
+ "dagatalið."
1828
+
1829
+ #: ../lib/tribe-template-factory.class.php:237
1830
+ #, php-format
1831
+ msgid ""
1832
+ "listed under %s. Check out upcoming events for this category or view the "
1833
+ "full calendar."
1834
+ msgstr ""
1835
+ "vistað undir %s. Skoðið komandi viðburði í þessum flokk eða skoðið allt "
1836
+ "dagatalið."
1837
+
1838
+ #: ../lib/tribe-template-factory.class.php:241
1839
+ #, php-format
1840
+ msgid "No events scheduled for <strong>%s</strong>. Please try another day."
1841
+ msgstr "Enignn viðbuður áætlaður fyrir <strong>%s</strong>. Reyndu annan dag."
1842
+
1843
+ #: ../lib/tribe-template-factory.class.php:245
1844
+ msgid "No upcoming events "
1845
+ msgstr "Enginn komandi viðburður"
1846
+
1847
+ #: ../lib/tribe-template-factory.class.php:247
1848
+ msgid "No matching events "
1849
+ msgstr "Enginn viðburður sem passar"
1850
+
1851
+ #: ../lib/tribe-template-factory.class.php:250
1852
+ msgid "No previous events "
1853
+ msgstr "Enginn fyrri viðburður"
1854
+
1855
+ #: ../lib/tribe-the-events-calendar-import.class.php:64
1856
+ #, php-format
1857
+ msgid ""
1858
+ "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure "
1859
+ "you have backed up before proceeding any further. You can easily <a href=\"%s"
1860
+ "\">revert to an old version</a> if you want to backup first. This upgrade "
1861
+ "includes two major steps, <a href=\"%s\">migrating data</a> &amp; updating "
1862
+ "your templates as necessary. There have been significant changes to the "
1863
+ "template tags and functions. Check out our <a href=\"%s\">walk-through on "
1864
+ "the upgrade</a> before proceeding and check out the FAQ &amp; Knowledge base "
1865
+ "from the <a href=\"%s\">support page</a>. If you're new to The Events "
1866
+ "Calendar, you may want to review our <a href=\"%s\">new user primer</a>.<br/"
1867
+ "><br/> You have events that need to be migrated. Please visit the bottom of "
1868
+ "the <a href=\"%s\">settings page</a> to perform the migration."
1869
+ msgstr ""
1870
+
1871
+ #: ../lib/tribe-the-events-calendar-import.class.php:86
1872
+ msgid "Upgrade from The Events Calendar"
1873
+ msgstr "Uppfæra frá TheEvents Calendar"
1874
+
1875
+ #: ../lib/tribe-the-events-calendar-import.class.php:87
1876
+ msgid ""
1877
+ "It appears that you have some old events calendar data that needs to be "
1878
+ "upgraded. Please be sure to back up your database before initiating the "
1879
+ "upgrade. This process can not be undone."
1880
+ msgstr ""
1881
+ "Þú virðist hafa eldri dagatals upplýsingar sem þarf að uppfæra. Vinsamlega "
1882
+ "taktu afrit áður en þú uppfærir. Ekki er hægt að bakfæra þessa aðgerð."
1883
+
1884
+ #: ../lib/tribe-the-events-calendar-import.class.php:88
1885
+ msgid "Migrate Data!"
1886
+ msgstr "Flytja upplýsingar!"
1887
+
1888
+ #: ../lib/tribe-the-events-calendar-import.class.php:166
1889
+ #, php-format
1890
+ msgid "You successfully migrated (%d) entries."
1891
+ msgstr "Flutningur tókst fyrir (%d) skráningar."
1892
+
1893
+ #: ../lib/tribe-the-events-calendar-import.class.php:242
1894
+ msgid "Install has 1 or more legacy event!"
1895
+ msgstr "Innsetning hefur 1 eða fleiri eldri viðburði!"
1896
+
1897
+ #: ../lib/tribe-validate.class.php:77 ../lib/tribe-validate.class.php:115
1898
+ msgid "Invalid or incomplete field passed"
1899
+ msgstr "Ógild eða ófullnægjandi svæði ekki fyllt"
1900
+
1901
+ #: ../lib/tribe-validate.class.php:78 ../lib/tribe-validate.class.php:110
1902
+ #: ../lib/tribe-validate.class.php:116
1903
+ msgid "Field ID:"
1904
+ msgstr "Svæið ID:"
1905
+
1906
+ #: ../lib/tribe-validate.class.php:109
1907
+ msgid "Non-existant field validation function passed"
1908
+ msgstr "Virkni svæðis sem ekki er til ekki fyllt"
1909
+
1910
+ #: ../lib/tribe-validate.class.php:110
1911
+ msgctxt "non-existant function name passed for field validation"
1912
+ msgid "with function name:"
1913
+ msgstr "með nafni virknis:"
1914
+
1915
+ #: ../lib/tribe-validate.class.php:135 ../lib/tribe-validate.class.php:153
1916
+ #, php-format
1917
+ msgid "%s must contain numbers and letters only"
1918
+ msgstr "%s má aðeins innihalda tölur og bókstafi"
1919
+
1920
+ #: ../lib/tribe-validate.class.php:171
1921
+ #, php-format
1922
+ msgid "%s must contain numbers, letters and dots only"
1923
+ msgstr "%s má aðeins innihalda tölur, bókstafi og punkta"
1924
+
1925
+ #: ../lib/tribe-validate.class.php:187
1926
+ #, php-format
1927
+ msgid "%s must be a positive number."
1928
+ msgstr "%s verður að vera slétt tala."
1929
+
1930
+ #: ../lib/tribe-validate.class.php:204
1931
+ #, php-format
1932
+ msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
1933
+ msgstr ""
1934
+ "%s verður að vera gilt gildi (tölur, bókstafir, bandstirk eða undirstrik)."
1935
+
1936
+ #: ../lib/tribe-validate.class.php:221
1937
+ #, php-format
1938
+ msgid "%s must be a valid absolute URL."
1939
+ msgstr "%s verður að vera gilt endanlegt URL."
1940
+
1941
+ #: ../lib/tribe-validate.class.php:239 ../lib/tribe-validate.class.php:258
1942
+ #: ../lib/tribe-validate.class.php:279
1943
+ #, php-format
1944
+ msgid "%s must have a value that's part of its options."
1945
+ msgstr "%s verður að vera gildi sem er hluti af valkosti."
1946
+
1947
+ #: ../lib/tribe-validate.class.php:295
1948
+ #, php-format
1949
+ msgid ""
1950
+ "Comparison validation failed because no comparison value was provided, for "
1951
+ "field %s"
1952
+ msgstr ""
1953
+ "Samanburðar skránign tókst ekki þar sem engin samanburðar gildi var "
1954
+ "tilgreint fyrir svæði %s"
1955
+
1956
+ #: ../lib/tribe-validate.class.php:302
1957
+ #, php-format
1958
+ msgid "%s cannot be the same as %s."
1959
+ msgstr "%s má ekki vera sama og %s."
1960
+
1961
+ #: ../lib/tribe-validate.class.php:304
1962
+ #, php-format
1963
+ msgid "%s cannot be a duplicate"
1964
+ msgstr "%s má ekki vera afrit"
1965
+
1966
+ #: ../lib/tribe-validate.class.php:322
1967
+ #, php-format
1968
+ msgid "%s must be a number or percentage."
1969
+ msgstr "%s verður að vera tala eða prósenta."
1970
+
1971
+ #: ../lib/tribe-validate.class.php:386
1972
+ #, php-format
1973
+ msgid "%s must be a number between 0 and 21."
1974
+ msgstr "%s verður að vera tala á milli 0 og 21."
1975
+
1976
+ #: ../lib/tribe-validate.class.php:404
1977
+ #, php-format
1978
+ msgid ""
1979
+ "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
1980
+ msgstr ""
1981
+ "%s verður að innihalda bókstafi, tölur, bandstrik, úrfellingarmerki og bil."
1982
+
1983
+ #: ../lib/tribe-validate.class.php:422
1984
+ #, php-format
1985
+ msgid "%s must consist of letters, spaces, apostrophes, and dashes."
1986
+ msgstr "%s verður að vera bókstafir, bil, úrfellingarmerki og bandstrik."
1987
+
1988
+ #: ../lib/tribe-validate.class.php:438
1989
+ #, php-format
1990
+ msgid "%s must consist of 5 numbers."
1991
+ msgstr "%s verður að innihalda 5 tölustafi."
1992
+
1993
+ #: ../lib/tribe-validate.class.php:454
1994
+ #, php-format
1995
+ msgid "%s must be a phone number."
1996
+ msgstr "%s verður að vera símanúmer."
1997
+
1998
+ #: ../lib/tribe-validate.class.php:472
1999
+ msgid ""
2000
+ "Country List must be formatted as one country per line in the following "
2001
+ "format: <br>US, United States <br> UK, United Kingdom."
2002
+ msgstr ""
2003
+ "Landslisti verður að vera með aðeins eitt land í línu og líta svona út: "
2004
+ "<br>US, United States <br> UK, United Kingdom."
2005
+
2006
+ #: ../lib/tribe-view-helpers.class.php:24
2007
+ #: ../lib/tribe-view-helpers.class.php:43
2008
+ msgid "Select a Country:"
2009
+ msgstr "Veldu land:"
2010
+
2011
+ #: ../lib/tribe-view-helpers.class.php:45
2012
+ msgid "Afghanistan"
2013
+ msgstr "Afghanistan"
2014
+
2015
+ #: ../lib/tribe-view-helpers.class.php:46
2016
+ msgid "Albania"
2017
+ msgstr "Albania"
2018
+
2019
+ #: ../lib/tribe-view-helpers.class.php:47
2020
+ msgid "Algeria"
2021
+ msgstr "Algeria"
2022
+
2023
+ #: ../lib/tribe-view-helpers.class.php:48
2024
+ msgid "American Samoa"
2025
+ msgstr "American Samoa"
2026
+
2027
+ #: ../lib/tribe-view-helpers.class.php:49
2028
+ msgid "Andorra"
2029
+ msgstr "Andorra"
2030
+
2031
+ #: ../lib/tribe-view-helpers.class.php:50
2032
+ msgid "Angola"
2033
+ msgstr "Angola"
2034
+
2035
+ #: ../lib/tribe-view-helpers.class.php:51
2036
+ msgid "Anguilla"
2037
+ msgstr "Anguilla"
2038
+
2039
+ #: ../lib/tribe-view-helpers.class.php:52
2040
+ msgid "Antarctica"
2041
+ msgstr "Antarctica"
2042
+
2043
+ #: ../lib/tribe-view-helpers.class.php:53
2044
+ msgid "Antigua And Barbuda"
2045
+ msgstr "Antigua And Barbuda"
2046
+
2047
+ #: ../lib/tribe-view-helpers.class.php:54
2048
+ msgid "Argentina"
2049
+ msgstr "Argentina"
2050
+
2051
+ #: ../lib/tribe-view-helpers.class.php:55
2052
+ msgid "Armenia"
2053
+ msgstr "Armenia"
2054
+
2055
+ #: ../lib/tribe-view-helpers.class.php:56
2056
+ msgid "Aruba"
2057
+ msgstr "Aruba"
2058
+
2059
+ #: ../lib/tribe-view-helpers.class.php:57
2060
+ msgid "Australia"
2061
+ msgstr "Australia"
2062
+
2063
+ #: ../lib/tribe-view-helpers.class.php:58
2064
+ msgid "Austria"
2065
+ msgstr "Austria"
2066
+
2067
+ #: ../lib/tribe-view-helpers.class.php:59
2068
+ msgid "Azerbaijan"
2069
+ msgstr "Azerbaijan"
2070
+
2071
+ #: ../lib/tribe-view-helpers.class.php:60
2072
+ msgid "Bahamas"
2073
+ msgstr "Bahamas"
2074
+
2075
+ #: ../lib/tribe-view-helpers.class.php:61
2076
+ msgid "Bahrain"
2077
+ msgstr "Bahrain"
2078
+
2079
+ #: ../lib/tribe-view-helpers.class.php:62
2080
+ msgid "Bangladesh"
2081
+ msgstr "Bangladesh"
2082
+
2083
+ #: ../lib/tribe-view-helpers.class.php:63
2084
+ msgid "Barbados"
2085
+ msgstr "Barbados"
2086
+
2087
+ #: ../lib/tribe-view-helpers.class.php:64
2088
+ msgid "Belarus"
2089
+ msgstr "Belarus"
2090
+
2091
+ #: ../lib/tribe-view-helpers.class.php:65
2092
+ msgid "Belgium"
2093
+ msgstr "Belgium"
2094
+
2095
+ #: ../lib/tribe-view-helpers.class.php:66
2096
+ msgid "Belize"
2097
+ msgstr "Belize"
2098
+
2099
+ #: ../lib/tribe-view-helpers.class.php:67
2100
+ msgid "Benin"
2101
+ msgstr "Benin"
2102
+
2103
+ #: ../lib/tribe-view-helpers.class.php:68
2104
+ msgid "Bermuda"
2105
+ msgstr "Bermuda"
2106
+
2107
+ #: ../lib/tribe-view-helpers.class.php:69
2108
+ msgid "Bhutan"
2109
+ msgstr "Bhutan"
2110
+
2111
+ #: ../lib/tribe-view-helpers.class.php:70
2112
+ msgid "Bolivia"
2113
+ msgstr "Bolivia"
2114
+
2115
+ #: ../lib/tribe-view-helpers.class.php:71
2116
+ msgid "Bosnia And Herzegowina"
2117
+ msgstr "Bosnia And Herzegowina"
2118
+
2119
+ #: ../lib/tribe-view-helpers.class.php:72
2120
+ msgid "Botswana"
2121
+ msgstr "Botswana"
2122
+
2123
+ #: ../lib/tribe-view-helpers.class.php:73
2124
+ msgid "Bouvet Island"
2125
+ msgstr "Bouvet Island"
2126
+
2127
+ #: ../lib/tribe-view-helpers.class.php:74
2128
+ msgid "Brazil"
2129
+ msgstr "Brazil"
2130
+
2131
+ #: ../lib/tribe-view-helpers.class.php:75
2132
+ msgid "British Indian Ocean Territory"
2133
+ msgstr "British Indian Ocean Territory"
2134
+
2135
+ #: ../lib/tribe-view-helpers.class.php:76
2136
+ msgid "Brunei Darussalam"
2137
+ msgstr "Brunei Darussalam"
2138
+
2139
+ #: ../lib/tribe-view-helpers.class.php:77
2140
+ msgid "Bulgaria"
2141
+ msgstr "Bulgaria"
2142
+
2143
+ #: ../lib/tribe-view-helpers.class.php:78
2144
+ msgid "Burkina Faso"
2145
+ msgstr "Burkina Faso"
2146
+
2147
+ #: ../lib/tribe-view-helpers.class.php:79
2148
+ msgid "Burundi"
2149
+ msgstr "Burundi"
2150
+
2151
+ #: ../lib/tribe-view-helpers.class.php:80
2152
+ msgid "Cambodia"
2153
+ msgstr "Cambodia"
2154
+
2155
+ #: ../lib/tribe-view-helpers.class.php:81
2156
+ msgid "Cameroon"
2157
+ msgstr "Cameroon"
2158
+
2159
+ #: ../lib/tribe-view-helpers.class.php:82
2160
+ msgid "Canada"
2161
+ msgstr "Canada"
2162
+
2163
+ #: ../lib/tribe-view-helpers.class.php:83
2164
+ msgid "Cape Verde"
2165
+ msgstr "Cape Verde"
2166
+
2167
+ #: ../lib/tribe-view-helpers.class.php:84
2168
+ msgid "Cayman Islands"
2169
+ msgstr "Cayman Islands"
2170
+
2171
+ #: ../lib/tribe-view-helpers.class.php:85
2172
+ msgid "Central African Republic"
2173
+ msgstr "Central African Republic"
2174
+
2175
+ #: ../lib/tribe-view-helpers.class.php:86
2176
+ msgid "Chad"
2177
+ msgstr "Chad"
2178
+
2179
+ #: ../lib/tribe-view-helpers.class.php:87
2180
+ msgid "Chile"
2181
+ msgstr "Chile"
2182
+
2183
+ #: ../lib/tribe-view-helpers.class.php:88
2184
+ msgid "China"
2185
+ msgstr "China"
2186
+
2187
+ #: ../lib/tribe-view-helpers.class.php:89
2188
+ msgid "Christmas Island"
2189
+ msgstr "Christmas Island"
2190
+
2191
+ #: ../lib/tribe-view-helpers.class.php:90
2192
+ msgid "Cocos (Keeling) Islands"
2193
+ msgstr "Cocos (Keeling) Islands"
2194
+
2195
+ #: ../lib/tribe-view-helpers.class.php:91
2196
+ msgid "Colombia"
2197
+ msgstr "Colombia"
2198
+
2199
+ #: ../lib/tribe-view-helpers.class.php:92
2200
+ msgid "Comoros"
2201
+ msgstr "Comoros"
2202
+
2203
+ #: ../lib/tribe-view-helpers.class.php:93
2204
+ msgid "Congo"
2205
+ msgstr "Congo"
2206
+
2207
+ #: ../lib/tribe-view-helpers.class.php:94
2208
+ msgid "Congo, The Democratic Republic Of The"
2209
+ msgstr "Congo, The Democratic Republic Of The"
2210
+
2211
+ #: ../lib/tribe-view-helpers.class.php:95
2212
+ msgid "Cook Islands"
2213
+ msgstr "Cook Islands"
2214
+
2215
+ #: ../lib/tribe-view-helpers.class.php:96
2216
+ msgid "Costa Rica"
2217
+ msgstr "Costa Rica"
2218
+
2219
+ #: ../lib/tribe-view-helpers.class.php:97
2220
+ msgid "Cote D'Ivoire"
2221
+ msgstr "Cote D'Ivoire"
2222
+
2223
+ #: ../lib/tribe-view-helpers.class.php:98
2224
+ msgid "Croatia (Local Name: Hrvatska)"
2225
+ msgstr "Croatia (Local Name: Hrvatska)"
2226
+
2227
+ #: ../lib/tribe-view-helpers.class.php:99
2228
+ msgid "Cuba"
2229
+ msgstr "Cuba"
2230
+
2231
+ #: ../lib/tribe-view-helpers.class.php:100
2232
+ msgid "Cyprus"
2233
+ msgstr "Cyprus"
2234
+
2235
+ #: ../lib/tribe-view-helpers.class.php:101
2236
+ msgid "Czech Republic"
2237
+ msgstr "Czech Republic"
2238
+
2239
+ #: ../lib/tribe-view-helpers.class.php:102
2240
+ msgid "Denmark"
2241
+ msgstr "Danmark"
2242
+
2243
+ #: ../lib/tribe-view-helpers.class.php:103
2244
+ msgid "Djibouti"
2245
+ msgstr "Djibouti"
2246
+
2247
+ #: ../lib/tribe-view-helpers.class.php:104
2248
+ msgid "Dominica"
2249
+ msgstr "Dominica"
2250
+
2251
+ #: ../lib/tribe-view-helpers.class.php:105
2252
+ msgid "Dominican Republic"
2253
+ msgstr "Dominican Republic"
2254
+
2255
+ #: ../lib/tribe-view-helpers.class.php:106
2256
+ msgid "East Timor"
2257
+ msgstr "East Timor"
2258
+
2259
+ #: ../lib/tribe-view-helpers.class.php:107
2260
+ msgid "Ecuador"
2261
+ msgstr "Ecuador"
2262
+
2263
+ #: ../lib/tribe-view-helpers.class.php:108
2264
+ msgid "Egypt"
2265
+ msgstr "Egypt"
2266
+
2267
+ #: ../lib/tribe-view-helpers.class.php:109
2268
+ msgid "El Salvador"
2269
+ msgstr "El Salvador"
2270
+
2271
+ #: ../lib/tribe-view-helpers.class.php:110
2272
+ msgid "Equatorial Guinea"
2273
+ msgstr "Equatorial Guinea"
2274
+
2275
+ #: ../lib/tribe-view-helpers.class.php:111
2276
+ msgid "Eritrea"
2277
+ msgstr "Eritrea"
2278
+
2279
+ #: ../lib/tribe-view-helpers.class.php:112
2280
+ msgid "Estonia"
2281
+ msgstr "Estonia"
2282
+
2283
+ #: ../lib/tribe-view-helpers.class.php:113
2284
+ msgid "Ethiopia"
2285
+ msgstr "Ethiopia"
2286
+
2287
+ #: ../lib/tribe-view-helpers.class.php:114
2288
+ msgid "Falkland Islands (Malvinas)"
2289
+ msgstr "Falkland Islands (Malvinas)"
2290
+
2291
+ #: ../lib/tribe-view-helpers.class.php:115
2292
+ msgid "Faroe Islands"
2293
+ msgstr "Faroe Islands"
2294
+
2295
+ #: ../lib/tribe-view-helpers.class.php:116
2296
+ msgid "Fiji"
2297
+ msgstr "Fiji"
2298
+
2299
+ #: ../lib/tribe-view-helpers.class.php:117
2300
+ msgid "Finland"
2301
+ msgstr "Finland"
2302
+
2303
+ #: ../lib/tribe-view-helpers.class.php:118
2304
+ msgid "France"
2305
+ msgstr "France"
2306
+
2307
+ #: ../lib/tribe-view-helpers.class.php:119
2308
+ msgid "France, Metropolitan"
2309
+ msgstr "France, Metropolitan"
2310
+
2311
+ #: ../lib/tribe-view-helpers.class.php:120
2312
+ msgid "French Guiana"
2313
+ msgstr "French Guiana"
2314
+
2315
+ #: ../lib/tribe-view-helpers.class.php:121
2316
+ msgid "French Polynesia"
2317
+ msgstr "French Polynesia"
2318
+
2319
+ #: ../lib/tribe-view-helpers.class.php:122
2320
+ msgid "French Southern Territories"
2321
+ msgstr "French Southern Territories"
2322
+
2323
+ #: ../lib/tribe-view-helpers.class.php:123
2324
+ msgid "Gabon"
2325
+ msgstr "Gabon"
2326
+
2327
+ #: ../lib/tribe-view-helpers.class.php:124
2328
+ msgid "Gambia"
2329
+ msgstr "Gambia"
2330
+
2331
+ #: ../lib/tribe-view-helpers.class.php:125
2332
+ #: ../lib/tribe-view-helpers.class.php:318
2333
+ msgid "Georgia"
2334
+ msgstr "Georgia"
2335
+
2336
+ #: ../lib/tribe-view-helpers.class.php:126
2337
+ msgid "Germany"
2338
+ msgstr "Germany"
2339
+
2340
+ #: ../lib/tribe-view-helpers.class.php:127
2341
+ msgid "Ghana"
2342
+ msgstr "Ghana"
2343
+
2344
+ #: ../lib/tribe-view-helpers.class.php:128
2345
+ msgid "Gibraltar"
2346
+ msgstr "Gibraltar"
2347
+
2348
+ #: ../lib/tribe-view-helpers.class.php:129
2349
+ msgid "Greece"
2350
+ msgstr "Greece"
2351
+
2352
+ #: ../lib/tribe-view-helpers.class.php:130
2353
+ msgid "Greenland"
2354
+ msgstr "Greenland"
2355
+
2356
+ #: ../lib/tribe-view-helpers.class.php:131
2357
+ msgid "Grenada"
2358
+ msgstr "Grenada"
2359
+
2360
+ #: ../lib/tribe-view-helpers.class.php:132
2361
+ msgid "Guadeloupe"
2362
+ msgstr "Guadeloupe"
2363
+
2364
+ #: ../lib/tribe-view-helpers.class.php:133
2365
+ msgid "Guam"
2366
+ msgstr "Guam"
2367
+
2368
+ #: ../lib/tribe-view-helpers.class.php:134
2369
+ msgid "Guatemala"
2370
+ msgstr "Guatemala"
2371
+
2372
+ #: ../lib/tribe-view-helpers.class.php:135
2373
+ msgid "Guinea"
2374
+ msgstr "Guinea"
2375
+
2376
+ #: ../lib/tribe-view-helpers.class.php:136
2377
+ msgid "Guinea-Bissau"
2378
+ msgstr "Guinea-Bissau"
2379
+
2380
+ #: ../lib/tribe-view-helpers.class.php:137
2381
+ msgid "Guyana"
2382
+ msgstr "Guyana"
2383
+
2384
+ #: ../lib/tribe-view-helpers.class.php:138
2385
+ msgid "Haiti"
2386
+ msgstr "Haiti"
2387
+
2388
+ #: ../lib/tribe-view-helpers.class.php:139
2389
+ msgid "Heard And Mc Donald Islands"
2390
+ msgstr "Heard And Mc Donald Islands"
2391
+
2392
+ #: ../lib/tribe-view-helpers.class.php:140
2393
+ msgid "Holy See (Vatican City State)"
2394
+ msgstr "Holy See (Vatican City State)"
2395
+
2396
+ #: ../lib/tribe-view-helpers.class.php:141
2397
+ msgid "Honduras"
2398
+ msgstr "Honduras"
2399
+
2400
+ #: ../lib/tribe-view-helpers.class.php:142
2401
+ msgid "Hong Kong"
2402
+ msgstr "Hong Kong"
2403
+
2404
+ #: ../lib/tribe-view-helpers.class.php:143
2405
+ msgid "Hungary"
2406
+ msgstr "Hungary"
2407
+
2408
+ #: ../lib/tribe-view-helpers.class.php:144
2409
+ msgid "Iceland"
2410
+ msgstr "Iceland"
2411
+
2412
+ #: ../lib/tribe-view-helpers.class.php:145
2413
+ msgid "India"
2414
+ msgstr "India"
2415
+
2416
+ #: ../lib/tribe-view-helpers.class.php:146
2417
+ msgid "Indonesia"
2418
+ msgstr "Indonesia"
2419
+
2420
+ #: ../lib/tribe-view-helpers.class.php:147
2421
+ msgid "Iran (Islamic Republic Of)"
2422
+ msgstr "Iran (Islamic Republic Of)"
2423
+
2424
+ #: ../lib/tribe-view-helpers.class.php:148
2425
+ msgid "Iraq"
2426
+ msgstr "Iraq"
2427
+
2428
+ #: ../lib/tribe-view-helpers.class.php:149
2429
+ msgid "Ireland"
2430
+ msgstr "Ireland"
2431
+
2432
+ #: ../lib/tribe-view-helpers.class.php:150
2433
+ msgid "Israel"
2434
+ msgstr "Israel"
2435
+
2436
+ #: ../lib/tribe-view-helpers.class.php:151
2437
+ msgid "Italy"
2438
+ msgstr "Italy"
2439
+
2440
+ #: ../lib/tribe-view-helpers.class.php:152
2441
+ msgid "Jamaica"
2442
+ msgstr "Jamaica"
2443
+
2444
+ #: ../lib/tribe-view-helpers.class.php:153
2445
+ msgid "Japan"
2446
+ msgstr "Japan"
2447
+
2448
+ #: ../lib/tribe-view-helpers.class.php:154
2449
+ msgid "Jordan"
2450
+ msgstr "Jordan"
2451
+
2452
+ #: ../lib/tribe-view-helpers.class.php:155
2453
+ msgid "Kazakhstan"
2454
+ msgstr "Kazakhstan"
2455
+
2456
+ #: ../lib/tribe-view-helpers.class.php:156
2457
+ msgid "Kenya"
2458
+ msgstr "Kenya"
2459
+
2460
+ #: ../lib/tribe-view-helpers.class.php:157
2461
+ msgid "Kiribati"
2462
+ msgstr "Kiribati"
2463
+
2464
+ #: ../lib/tribe-view-helpers.class.php:158
2465
+ msgid "Korea, Democratic People's Republic Of"
2466
+ msgstr "Korea, Democratic People's Republic Of"
2467
+
2468
+ #: ../lib/tribe-view-helpers.class.php:159
2469
+ msgid "Korea, Republic Of"
2470
+ msgstr "Korea, Republic Of"
2471
+
2472
+ #: ../lib/tribe-view-helpers.class.php:160
2473
+ msgid "Kuwait"
2474
+ msgstr "Kuwait"
2475
+
2476
+ #: ../lib/tribe-view-helpers.class.php:161
2477
+ msgid "Kyrgyzstan"
2478
+ msgstr "Kyrgyzstan"
2479
+
2480
+ #: ../lib/tribe-view-helpers.class.php:162
2481
+ msgid "Lao People's Democratic Republic"
2482
+ msgstr "Lao People's Democratic Republic"
2483
+
2484
+ #: ../lib/tribe-view-helpers.class.php:163
2485
+ msgid "Latvia"
2486
+ msgstr "Latvia"
2487
+
2488
+ #: ../lib/tribe-view-helpers.class.php:164
2489
+ msgid "Lebanon"
2490
+ msgstr "Lebanon"
2491
+
2492
+ #: ../lib/tribe-view-helpers.class.php:165
2493
+ msgid "Lesotho"
2494
+ msgstr "Lesotho"
2495
+
2496
+ #: ../lib/tribe-view-helpers.class.php:166
2497
+ msgid "Liberia"
2498
+ msgstr "Liberia"
2499
+
2500
+ #: ../lib/tribe-view-helpers.class.php:167
2501
+ msgid "Libya"
2502
+ msgstr "Libya"
2503
+
2504
+ #: ../lib/tribe-view-helpers.class.php:168
2505
+ msgid "Liechtenstein"
2506
+ msgstr "Liechtenstein"
2507
+
2508
+ #: ../lib/tribe-view-helpers.class.php:169
2509
+ msgid "Lithuania"
2510
+ msgstr "Lithuania"
2511
+
2512
+ #: ../lib/tribe-view-helpers.class.php:170
2513
+ msgid "Luxembourg"
2514
+ msgstr "Luxembourg"
2515
+
2516
+ #: ../lib/tribe-view-helpers.class.php:171
2517
+ msgid "Macau"
2518
+ msgstr "Macau"
2519
+
2520
+ #: ../lib/tribe-view-helpers.class.php:172
2521
+ msgid "Macedonia"
2522
+ msgstr "Macedonia"
2523
+
2524
+ #: ../lib/tribe-view-helpers.class.php:173
2525
+ msgid "Madagascar"
2526
+ msgstr "Madagascar"
2527
+
2528
+ #: ../lib/tribe-view-helpers.class.php:174
2529
+ msgid "Malawi"
2530
+ msgstr "Malawi"
2531
+
2532
+ #: ../lib/tribe-view-helpers.class.php:175
2533
+ msgid "Malaysia"
2534
+ msgstr "Malaysia"
2535
+
2536
+ #: ../lib/tribe-view-helpers.class.php:176
2537
+ msgid "Maldives"
2538
+ msgstr "Maldives"
2539
+
2540
+ #: ../lib/tribe-view-helpers.class.php:177
2541
+ msgid "Mali"
2542
+ msgstr "Mali"
2543
+
2544
+ #: ../lib/tribe-view-helpers.class.php:178
2545
+ msgid "Malta"
2546
+ msgstr "Malta"
2547
+
2548
+ #: ../lib/tribe-view-helpers.class.php:179
2549
+ msgid "Marshall Islands"
2550
+ msgstr "Marshall Islands"
2551
+
2552
+ #: ../lib/tribe-view-helpers.class.php:180
2553
+ msgid "Martinique"
2554
+ msgstr "Martinique"
2555
+
2556
+ #: ../lib/tribe-view-helpers.class.php:181
2557
+ msgid "Mauritania"
2558
+ msgstr "Mauritania"
2559
+
2560
+ #: ../lib/tribe-view-helpers.class.php:182
2561
+ msgid "Mauritius"
2562
+ msgstr "Mauritius"
2563
+
2564
+ #: ../lib/tribe-view-helpers.class.php:183
2565
+ msgid "Mayotte"
2566
+ msgstr "Mayotte"
2567
+
2568
+ #: ../lib/tribe-view-helpers.class.php:184
2569
+ msgid "Mexico"
2570
+ msgstr "Mexico"
2571
+
2572
+ #: ../lib/tribe-view-helpers.class.php:185
2573
+ msgid "Micronesia, Federated States Of"
2574
+ msgstr "Micronesia, Federated States Of"
2575
+
2576
+ #: ../lib/tribe-view-helpers.class.php:186
2577
+ msgid "Moldova, Republic Of"
2578
+ msgstr "Moldova, Republic Of"
2579
+
2580
+ #: ../lib/tribe-view-helpers.class.php:187
2581
+ msgid "Monaco"
2582
+ msgstr "Monaco"
2583
+
2584
+ #: ../lib/tribe-view-helpers.class.php:188
2585
+ msgid "Mongolia"
2586
+ msgstr "Mongolia"
2587
+
2588
+ #: ../lib/tribe-view-helpers.class.php:189
2589
+ msgid "Montenegro"
2590
+ msgstr "Montenegro"
2591
+
2592
+ #: ../lib/tribe-view-helpers.class.php:190
2593
+ msgid "Montserrat"
2594
+ msgstr "Montserrat"
2595
+
2596
+ #: ../lib/tribe-view-helpers.class.php:191
2597
+ msgid "Morocco"
2598
+ msgstr "Morocco"
2599
+
2600
+ #: ../lib/tribe-view-helpers.class.php:192
2601
+ msgid "Mozambique"
2602
+ msgstr "Mozambique"
2603
+
2604
+ #: ../lib/tribe-view-helpers.class.php:193
2605
+ msgid "Myanmar"
2606
+ msgstr "Myanmar"
2607
+
2608
+ #: ../lib/tribe-view-helpers.class.php:194
2609
+ msgid "Namibia"
2610
+ msgstr "Namibia"
2611
+
2612
+ #: ../lib/tribe-view-helpers.class.php:195
2613
+ msgid "Nauru"
2614
+ msgstr "Nauru"
2615
+
2616
+ #: ../lib/tribe-view-helpers.class.php:196
2617
+ msgid "Nepal"
2618
+ msgstr "Nepal"
2619
+
2620
+ #: ../lib/tribe-view-helpers.class.php:197
2621
+ msgid "Netherlands"
2622
+ msgstr "Netherlands"
2623
+
2624
+ #: ../lib/tribe-view-helpers.class.php:198
2625
+ msgid "Netherlands Antilles"
2626
+ msgstr "Netherlands Antilles"
2627
+
2628
+ #: ../lib/tribe-view-helpers.class.php:199
2629
+ msgid "New Caledonia"
2630
+ msgstr "New Caledonia"
2631
+
2632
+ #: ../lib/tribe-view-helpers.class.php:200
2633
+ msgid "New Zealand"
2634
+ msgstr "New Zealand"
2635
+
2636
+ #: ../lib/tribe-view-helpers.class.php:201
2637
+ msgid "Nicaragua"
2638
+ msgstr "Nicaragua"
2639
+
2640
+ #: ../lib/tribe-view-helpers.class.php:202
2641
+ msgid "Niger"
2642
+ msgstr "Niger"
2643
+
2644
+ #: ../lib/tribe-view-helpers.class.php:203
2645
+ msgid "Nigeria"
2646
+ msgstr "Nigeria"
2647
+
2648
+ #: ../lib/tribe-view-helpers.class.php:204
2649
+ msgid "Niue"
2650
+ msgstr "Niue"
2651
+
2652
+ #: ../lib/tribe-view-helpers.class.php:205
2653
+ msgid "Norfolk Island"
2654
+ msgstr "Norfolk Island"
2655
+
2656
+ #: ../lib/tribe-view-helpers.class.php:206
2657
+ msgid "Northern Mariana Islands"
2658
+ msgstr "Northern Mariana Islands"
2659
+
2660
+ #: ../lib/tribe-view-helpers.class.php:207
2661
+ msgid "Norway"
2662
+ msgstr "Norway"
2663
+
2664
+ #: ../lib/tribe-view-helpers.class.php:208
2665
+ msgid "Oman"
2666
+ msgstr "Oman"
2667
+
2668
+ #: ../lib/tribe-view-helpers.class.php:209
2669
+ msgid "Pakistan"
2670
+ msgstr "Pakistan"
2671
+
2672
+ #: ../lib/tribe-view-helpers.class.php:210
2673
+ msgid "Palau"
2674
+ msgstr "Palau"
2675
+
2676
+ #: ../lib/tribe-view-helpers.class.php:211
2677
+ msgid "Panama"
2678
+ msgstr "Panama"
2679
+
2680
+ #: ../lib/tribe-view-helpers.class.php:212
2681
+ msgid "Papua New Guinea"
2682
+ msgstr "Papua New Guinea"
2683
+
2684
+ #: ../lib/tribe-view-helpers.class.php:213
2685
+ msgid "Paraguay"
2686
+ msgstr "Paraguay"
2687
+
2688
+ #: ../lib/tribe-view-helpers.class.php:214
2689
+ msgid "Peru"
2690
+ msgstr "Peru"
2691
+
2692
+ #: ../lib/tribe-view-helpers.class.php:215
2693
+ msgid "Philippines"
2694
+ msgstr "Philippines"
2695
+
2696
+ #: ../lib/tribe-view-helpers.class.php:216
2697
+ msgid "Pitcairn"
2698
+ msgstr "Pitcairn"
2699
+
2700
+ #: ../lib/tribe-view-helpers.class.php:217
2701
+ msgid "Poland"
2702
+ msgstr "Poland"
2703
+
2704
+ #: ../lib/tribe-view-helpers.class.php:218
2705
+ msgid "Portugal"
2706
+ msgstr "Portugal"
2707
+
2708
+ #: ../lib/tribe-view-helpers.class.php:219
2709
+ msgid "Puerto Rico"
2710
+ msgstr "Puerto Rico"
2711
+
2712
+ #: ../lib/tribe-view-helpers.class.php:220
2713
+ msgid "Qatar"
2714
+ msgstr "Qatar"
2715
+
2716
+ #: ../lib/tribe-view-helpers.class.php:221
2717
+ msgid "Reunion"
2718
+ msgstr "Reunion"
2719
+
2720
+ #: ../lib/tribe-view-helpers.class.php:222
2721
+ msgid "Romania"
2722
+ msgstr "Romania"
2723
+
2724
+ #: ../lib/tribe-view-helpers.class.php:223
2725
+ msgid "Russian Federation"
2726
+ msgstr "Russian Federation"
2727
+
2728
+ #: ../lib/tribe-view-helpers.class.php:224
2729
+ msgid "Rwanda"
2730
+ msgstr "Rwanda"
2731
+
2732
+ #: ../lib/tribe-view-helpers.class.php:225
2733
+ msgid "Saint Kitts And Nevis"
2734
+ msgstr "Saint Kitts And Nevis"
2735
+
2736
+ #: ../lib/tribe-view-helpers.class.php:226
2737
+ msgid "Saint Lucia"
2738
+ msgstr "Saint Lucia"
2739
+
2740
+ #: ../lib/tribe-view-helpers.class.php:227
2741
+ msgid "Saint Vincent And The Grenadines"
2742
+ msgstr "Saint Vincent And The Grenadines"
2743
+
2744
+ #: ../lib/tribe-view-helpers.class.php:228
2745
+ msgid "Samoa"
2746
+ msgstr "Samoa"
2747
+
2748
+ #: ../lib/tribe-view-helpers.class.php:229
2749
+ msgid "San Marino"
2750
+ msgstr "San Marino"
2751
+
2752
+ #: ../lib/tribe-view-helpers.class.php:230
2753
+ msgid "Sao Tome And Principe"
2754
+ msgstr "Sao Tome And Principe"
2755
+
2756
+ #: ../lib/tribe-view-helpers.class.php:231
2757
+ msgid "Saudi Arabia"
2758
+ msgstr "Saudi Arabia"
2759
+
2760
+ #: ../lib/tribe-view-helpers.class.php:232
2761
+ msgid "Senegal"
2762
+ msgstr "Senegal"
2763
+
2764
+ #: ../lib/tribe-view-helpers.class.php:233
2765
+ msgid "Serbia"
2766
+ msgstr "Serbia"
2767
+
2768
+ #: ../lib/tribe-view-helpers.class.php:234
2769
+ msgid "Seychelles"
2770
+ msgstr "Seychelles"
2771
+
2772
+ #: ../lib/tribe-view-helpers.class.php:235
2773
+ msgid "Sierra Leone"
2774
+ msgstr "Sierra Leone"
2775
+
2776
+ #: ../lib/tribe-view-helpers.class.php:236
2777
+ msgid "Singapore"
2778
+ msgstr "Singapore"
2779
+
2780
+ #: ../lib/tribe-view-helpers.class.php:237
2781
+ msgid "Slovakia (Slovak Republic)"
2782
+ msgstr "Slovakia (Slovak Republic)"
2783
+
2784
+ #: ../lib/tribe-view-helpers.class.php:238
2785
+ msgid "Slovenia"
2786
+ msgstr "Slovenia"
2787
+
2788
+ #: ../lib/tribe-view-helpers.class.php:239
2789
+ msgid "Solomon Islands"
2790
+ msgstr "Solomon Islands"
2791
+
2792
+ #: ../lib/tribe-view-helpers.class.php:240
2793
+ msgid "Somalia"
2794
+ msgstr "Somalia"
2795
+
2796
+ #: ../lib/tribe-view-helpers.class.php:241
2797
+ msgid "South Africa"
2798
+ msgstr "South Africa"
2799
+
2800
+ #: ../lib/tribe-view-helpers.class.php:242
2801
+ msgid "South Georgia, South Sandwich Islands"
2802
+ msgstr "South Georgia, South Sandwich Islands"
2803
+
2804
+ #: ../lib/tribe-view-helpers.class.php:243
2805
+ msgid "Spain"
2806
+ msgstr "Spain"
2807
+
2808
+ #: ../lib/tribe-view-helpers.class.php:244
2809
+ msgid "Sri Lanka"
2810
+ msgstr "Sri Lanka"
2811
+
2812
+ #: ../lib/tribe-view-helpers.class.php:245
2813
+ msgid "St. Helena"
2814
+ msgstr "St. Helena"
2815
+
2816
+ #: ../lib/tribe-view-helpers.class.php:246
2817
+ msgid "St. Pierre And Miquelon"
2818
+ msgstr "St. Pierre And Miquelon"
2819
+
2820
+ #: ../lib/tribe-view-helpers.class.php:247
2821
+ msgid "Sudan"
2822
+ msgstr "Sudan"
2823
+
2824
+ #: ../lib/tribe-view-helpers.class.php:248
2825
+ msgid "Suriname"
2826
+ msgstr "Suriname"
2827
+
2828
+ #: ../lib/tribe-view-helpers.class.php:249
2829
+ msgid "Svalbard And Jan Mayen Islands"
2830
+ msgstr "Svalbard And Jan Mayen Islands"
2831
+
2832
+ #: ../lib/tribe-view-helpers.class.php:250
2833
+ msgid "Swaziland"
2834
+ msgstr "Swaziland"
2835
+
2836
+ #: ../lib/tribe-view-helpers.class.php:251
2837
+ msgid "Sweden"
2838
+ msgstr "Sweden"
2839
+
2840
+ #: ../lib/tribe-view-helpers.class.php:252
2841
+ msgid "Switzerland"
2842
+ msgstr "Switzerland"
2843
+
2844
+ #: ../lib/tribe-view-helpers.class.php:253
2845
+ msgid "Syrian Arab Republic"
2846
+ msgstr "Syrian Arab Republic"
2847
+
2848
+ #: ../lib/tribe-view-helpers.class.php:254
2849
+ msgid "Taiwan"
2850
+ msgstr "Taiwan"
2851
+
2852
+ #: ../lib/tribe-view-helpers.class.php:255
2853
+ msgid "Tajikistan"
2854
+ msgstr "Tajikistan"
2855
+
2856
+ #: ../lib/tribe-view-helpers.class.php:256
2857
+ msgid "Tanzania, United Republic Of"
2858
+ msgstr "Tanzania, United Republic Of"
2859
+
2860
+ #: ../lib/tribe-view-helpers.class.php:257
2861
+ msgid "Thailand"
2862
+ msgstr "Thailand"
2863
+
2864
+ #: ../lib/tribe-view-helpers.class.php:258
2865
+ msgid "Togo"
2866
+ msgstr "Togo"
2867
+
2868
+ #: ../lib/tribe-view-helpers.class.php:259
2869
+ msgid "Tokelau"
2870
+ msgstr "Tokelau"
2871
+
2872
+ #: ../lib/tribe-view-helpers.class.php:260
2873
+ msgid "Tonga"
2874
+ msgstr "Tonga"
2875
+
2876
+ #: ../lib/tribe-view-helpers.class.php:261
2877
+ msgid "Trinidad And Tobago"
2878
+ msgstr "Trinidad And Tobago"
2879
+
2880
+ #: ../lib/tribe-view-helpers.class.php:262
2881
+ msgid "Tunisia"
2882
+ msgstr "Tunisia"
2883
+
2884
+ #: ../lib/tribe-view-helpers.class.php:263
2885
+ msgid "Turkey"
2886
+ msgstr "Turkey"
2887
+
2888
+ #: ../lib/tribe-view-helpers.class.php:264
2889
+ msgid "Turkmenistan"
2890
+ msgstr "Turkmenistan"
2891
+
2892
+ #: ../lib/tribe-view-helpers.class.php:265
2893
+ msgid "Turks And Caicos Islands"
2894
+ msgstr "Turks And Caicos Islands"
2895
+
2896
+ #: ../lib/tribe-view-helpers.class.php:266
2897
+ msgid "Tuvalu"
2898
+ msgstr "Tuvalu"
2899
+
2900
+ #: ../lib/tribe-view-helpers.class.php:267
2901
+ msgid "Uganda"
2902
+ msgstr "Uganda"
2903
+
2904
+ #: ../lib/tribe-view-helpers.class.php:268
2905
+ msgid "Ukraine"
2906
+ msgstr "Ukraine"
2907
+
2908
+ #: ../lib/tribe-view-helpers.class.php:269
2909
+ msgid "United Arab Emirates"
2910
+ msgstr "United Arab Emirates"
2911
+
2912
+ #: ../lib/tribe-view-helpers.class.php:270
2913
+ msgid "United Kingdom"
2914
+ msgstr "United Kingdom"
2915
+
2916
+ #: ../lib/tribe-view-helpers.class.php:271
2917
+ msgid "United States Minor Outlying Islands"
2918
+ msgstr "United States Minor Outlying Islands"
2919
+
2920
+ #: ../lib/tribe-view-helpers.class.php:272
2921
+ msgid "Uruguay"
2922
+ msgstr "Uruguay"
2923
+
2924
+ #: ../lib/tribe-view-helpers.class.php:273
2925
+ msgid "Uzbekistan"
2926
+ msgstr "Uzbekistan"
2927
+
2928
+ #: ../lib/tribe-view-helpers.class.php:274
2929
+ msgid "Vanuatu"
2930
+ msgstr "Vanuatu"
2931
+
2932
+ #: ../lib/tribe-view-helpers.class.php:275
2933
+ msgid "Venezuela"
2934
+ msgstr "Venezuela"
2935
+
2936
+ #: ../lib/tribe-view-helpers.class.php:276
2937
+ msgid "Viet Nam"
2938
+ msgstr "Viet Nam"
2939
+
2940
+ #: ../lib/tribe-view-helpers.class.php:277
2941
+ msgid "Virgin Islands (British)"
2942
+ msgstr "Virgin Islands (British)"
2943
+
2944
+ #: ../lib/tribe-view-helpers.class.php:278
2945
+ msgid "Virgin Islands (U.S.)"
2946
+ msgstr "Virgin Islands (U.S.)"
2947
+
2948
+ #: ../lib/tribe-view-helpers.class.php:279
2949
+ msgid "Wallis And Futuna Islands"
2950
+ msgstr "Wallis And Futuna Islands"
2951
+
2952
+ #: ../lib/tribe-view-helpers.class.php:280
2953
+ msgid "Western Sahara"
2954
+ msgstr "Western Sahara"
2955
+
2956
+ #: ../lib/tribe-view-helpers.class.php:281
2957
+ msgid "Yemen"
2958
+ msgstr "Yemen"
2959
+
2960
+ #: ../lib/tribe-view-helpers.class.php:282
2961
+ msgid "Zambia"
2962
+ msgstr "Zambia"
2963
+
2964
+ #: ../lib/tribe-view-helpers.class.php:283
2965
+ msgid "Zimbabwe"
2966
+ msgstr "Zimbabwe"
2967
+
2968
+ #: ../lib/tribe-view-helpers.class.php:308
2969
+ msgid "Alabama"
2970
+ msgstr "Alabama"
2971
+
2972
+ #: ../lib/tribe-view-helpers.class.php:309
2973
+ msgid "Alaska"
2974
+ msgstr "Alaska"
2975
+
2976
+ #: ../lib/tribe-view-helpers.class.php:310
2977
+ msgid "Arizona"
2978
+ msgstr "Arizona"
2979
+
2980
+ #: ../lib/tribe-view-helpers.class.php:311
2981
+ msgid "Arkansas"
2982
+ msgstr "Arkansas"
2983
+
2984
+ #: ../lib/tribe-view-helpers.class.php:312
2985
+ msgid "California"
2986
+ msgstr "California"
2987
+
2988
+ #: ../lib/tribe-view-helpers.class.php:313
2989
+ msgid "Colorado"
2990
+ msgstr "Colorado"
2991
+
2992
+ #: ../lib/tribe-view-helpers.class.php:314
2993
+ msgid "Connecticut"
2994
+ msgstr "Connecticut"
2995
+
2996
+ #: ../lib/tribe-view-helpers.class.php:315
2997
+ msgid "Delaware"
2998
+ msgstr "Delaware"
2999
+
3000
+ #: ../lib/tribe-view-helpers.class.php:316
3001
+ msgid "District of Columbia"
3002
+ msgstr "District of Columbia"
3003
+
3004
+ #: ../lib/tribe-view-helpers.class.php:317
3005
+ msgid "Florida"
3006
+ msgstr "Florida"
3007
+
3008
+ #: ../lib/tribe-view-helpers.class.php:319
3009
+ msgid "Hawaii"
3010
+ msgstr "Hawaii"
3011
+
3012
+ #: ../lib/tribe-view-helpers.class.php:320
3013
+ msgid "Idaho"
3014
+ msgstr "Idaho"
3015
+
3016
+ #: ../lib/tribe-view-helpers.class.php:321
3017
+ msgid "Illinois"
3018
+ msgstr "Illinois"
3019
+
3020
+ #: ../lib/tribe-view-helpers.class.php:322
3021
+ msgid "Indiana"
3022
+ msgstr "Indiana"
3023
+
3024
+ #: ../lib/tribe-view-helpers.class.php:323
3025
+ msgid "Iowa"
3026
+ msgstr "Iowa"
3027
+
3028
+ #: ../lib/tribe-view-helpers.class.php:324
3029
+ msgid "Kansas"
3030
+ msgstr "Kansas"
3031
+
3032
+ #: ../lib/tribe-view-helpers.class.php:325
3033
+ msgid "Kentucky"
3034
+ msgstr "Kentucky"
3035
+
3036
+ #: ../lib/tribe-view-helpers.class.php:326
3037
+ msgid "Louisiana"
3038
+ msgstr "Louisiana"
3039
+
3040
+ #: ../lib/tribe-view-helpers.class.php:327
3041
+ msgid "Maine"
3042
+ msgstr "Maine"
3043
+
3044
+ #: ../lib/tribe-view-helpers.class.php:328
3045
+ msgid "Maryland"
3046
+ msgstr "Maryland"
3047
+
3048
+ #: ../lib/tribe-view-helpers.class.php:329
3049
+ msgid "Massachusetts"
3050
+ msgstr "Massachusetts"
3051
+
3052
+ #: ../lib/tribe-view-helpers.class.php:330
3053
+ msgid "Michigan"
3054
+ msgstr "Michigan"
3055
+
3056
+ #: ../lib/tribe-view-helpers.class.php:331
3057
+ msgid "Minnesota"
3058
+ msgstr "Minnesota"
3059
+
3060
+ #: ../lib/tribe-view-helpers.class.php:332
3061
+ msgid "Mississippi"
3062
+ msgstr "Mississippi"
3063
+
3064
+ #: ../lib/tribe-view-helpers.class.php:333
3065
+ msgid "Missouri"
3066
+ msgstr "Missouri"
3067
+
3068
+ #: ../lib/tribe-view-helpers.class.php:334
3069
+ msgid "Montana"
3070
+ msgstr "Montana"
3071
+
3072
+ #: ../lib/tribe-view-helpers.class.php:335
3073
+ msgid "Nebraska"
3074
+ msgstr "Nebraska"
3075
+
3076
+ #: ../lib/tribe-view-helpers.class.php:336
3077
+ msgid "Nevada"
3078
+ msgstr "Nevada"
3079
+
3080
+ #: ../lib/tribe-view-helpers.class.php:337
3081
+ msgid "New Hampshire"
3082
+ msgstr "New Hampshire"
3083
+
3084
+ #: ../lib/tribe-view-helpers.class.php:338
3085
+ msgid "New Jersey"
3086
+ msgstr "New Jersey"
3087
+
3088
+ #: ../lib/tribe-view-helpers.class.php:339
3089
+ msgid "New Mexico"
3090
+ msgstr "New Mexico"
3091
+
3092
+ #: ../lib/tribe-view-helpers.class.php:340
3093
+ msgid "New York"
3094
+ msgstr "New York"
3095
+
3096
+ #: ../lib/tribe-view-helpers.class.php:341
3097
+ msgid "North Carolina"
3098
+ msgstr "North Carolina"
3099
+
3100
+ #: ../lib/tribe-view-helpers.class.php:342
3101
+ msgid "North Dakota"
3102
+ msgstr "North Dakota"
3103
+
3104
+ #: ../lib/tribe-view-helpers.class.php:343
3105
+ msgid "Ohio"
3106
+ msgstr "Ohio"
3107
+
3108
+ #: ../lib/tribe-view-helpers.class.php:344
3109
+ msgid "Oklahoma"
3110
+ msgstr "Oklahoma"
3111
+
3112
+ #: ../lib/tribe-view-helpers.class.php:345
3113
+ msgid "Oregon"
3114
+ msgstr "Oregon"
3115
+
3116
+ #: ../lib/tribe-view-helpers.class.php:346
3117
+ msgid "Pennsylvania"
3118
+ msgstr "Pennsylvania"
3119
+
3120
+ #: ../lib/tribe-view-helpers.class.php:347
3121
+ msgid "Rhode Island"
3122
+ msgstr "Rhode Island"
3123
+
3124
+ #: ../lib/tribe-view-helpers.class.php:348
3125
+ msgid "South Carolina"
3126
+ msgstr "South Carolina"
3127
+
3128
+ #: ../lib/tribe-view-helpers.class.php:349
3129
+ msgid "South Dakota"
3130
+ msgstr "South Dakota"
3131
+
3132
+ #: ../lib/tribe-view-helpers.class.php:350
3133
+ msgid "Tennessee"
3134
+ msgstr "Tennessee"
3135
+
3136
+ #: ../lib/tribe-view-helpers.class.php:351
3137
+ msgid "Texas"
3138
+ msgstr "Texas"
3139
+
3140
+ #: ../lib/tribe-view-helpers.class.php:352
3141
+ msgid "Utah"
3142
+ msgstr "Utah"
3143
+
3144
+ #: ../lib/tribe-view-helpers.class.php:353
3145
+ msgid "Vermont"
3146
+ msgstr "Vermont"
3147
+
3148
+ #: ../lib/tribe-view-helpers.class.php:354
3149
+ msgid "Virginia"
3150
+ msgstr "Virginia"
3151
+
3152
+ #: ../lib/tribe-view-helpers.class.php:355
3153
+ msgid "Washington"
3154
+ msgstr "Washington"
3155
+
3156
+ #: ../lib/tribe-view-helpers.class.php:356
3157
+ msgid "West Virginia"
3158
+ msgstr "West Virginia"
3159
+
3160
+ #: ../lib/tribe-view-helpers.class.php:357
3161
+ msgid "Wisconsin"
3162
+ msgstr "Wisconsin"
3163
+
3164
+ #: ../lib/tribe-view-helpers.class.php:358
3165
+ msgid "Wyoming"
3166
+ msgstr "Wyoming"
3167
+
3168
+ #: ../lib/widget-list.class.php:21
3169
+ msgid "A widget that displays upcoming events."
3170
+ msgstr "Widget, sem sýnir komandi viðburði."
3171
+
3172
+ #: ../lib/widget-list.class.php:27
3173
+ msgid "Events List"
3174
+ msgstr "Listi viðburða"
3175
+
3176
+ #: ../lib/widget-list.class.php:114
3177
+ msgid "View All Events"
3178
+ msgstr "Skoða alla viðburði"
3179
+
3180
+ #: ../lib/widget-list.class.php:117
3181
+ msgid "There are no upcoming events at this time."
3182
+ msgstr "Það er enginn skráður viðburður eins og er."
3183
+
3184
+ #: ../lib/template-classes/month.php:75
3185
+ #, php-format
3186
+ msgid ""
3187
+ "There were no results found for <strong>\"%s\"</strong> this month. Try "
3188
+ "searching next month."
3189
+ msgstr ""
3190
+ "Engin niðurstaða finnst fyrir <strong>\"%s\"</strong> þennan mánuð. Reyndu "
3191
+ "leit í næsta mánuð."
3192
+
3193
+ #: ../lib/template-classes/single-event.php:99
3194
+ msgid "This event has passed."
3195
+ msgstr "Þessi viðburður er liðinn."
3196
+
3197
+ #: ../lib/tickets/tribe-tickets-attendees.php:67
3198
+ msgid "Order #"
3199
+ msgstr "Pöntun #"
3200
+
3201
+ #: ../lib/tickets/tribe-tickets-attendees.php:68
3202
+ msgid "Order Status"
3203
+ msgstr "Staða pöntunar"
3204
+
3205
+ #: ../lib/tickets/tribe-tickets-attendees.php:69
3206
+ msgid "Purchaser name"
3207
+ msgstr "Nafn kaupanda"
3208
+
3209
+ #: ../lib/tickets/tribe-tickets-attendees.php:70
3210
+ msgid "Purchaser email"
3211
+ msgstr "Netfang kaupanda"
3212
+
3213
+ #: ../lib/tickets/tribe-tickets-attendees.php:71
3214
+ msgid "Ticket type"
3215
+ msgstr "Tegund miða"
3216
+
3217
+ #: ../lib/tickets/tribe-tickets-attendees.php:72
3218
+ #: ../views/tickets/email.php:316
3219
+ msgid "Ticket #"
3220
+ msgstr "Miða #"
3221
+
3222
+ #: ../lib/tickets/tribe-tickets-attendees.php:73
3223
+ #: ../views/tickets/email.php:328
3224
+ msgid "Security Code"
3225
+ msgstr "Öryggis kóði"
3226
+
3227
+ #: ../lib/tickets/tribe-tickets-attendees.php:74
3228
+ #: ../lib/tickets/tribe-tickets-attendees.php:144
3229
+ #: ../lib/tickets/tribe-tickets-attendees.php:200
3230
+ msgid "Check in"
3231
+ msgstr "Innskráning"
3232
+
3233
+ #: ../lib/tickets/tribe-tickets-attendees.php:145
3234
+ #: ../lib/tickets/tribe-tickets-attendees.php:200
3235
+ msgid "Undo Check in"
3236
+ msgstr "Bakfæra innskráningu"
3237
+
3238
+ #: ../lib/tickets/tribe-tickets-attendees.php:179
3239
+ msgid "Print"
3240
+ msgstr "Prenta"
3241
+
3242
+ #: ../lib/tickets/tribe-tickets-attendees.php:180
3243
+ msgid "Email"
3244
+ msgstr "Netfang"
3245
+
3246
+ #: ../lib/tickets/tribe-tickets-attendees.php:181
3247
+ msgid "Export"
3248
+ msgstr "Flytja"
3249
+
3250
+ #: ../lib/tickets/tribe-tickets-attendees.php:187
3251
+ msgid "Filter by ticket #, order # or security code"
3252
+ msgstr "Sía eftir miða#,order# eða öryggis kóða"
3253
+
3254
+ #: ../lib/tickets/tribe-tickets-metabox.php:24
3255
+ msgid "Tickets"
3256
+ msgstr "Miðar"
3257
+
3258
+ #: ../lib/tickets/tribe-tickets-metabox.php:62
3259
+ msgid "Ticket header image"
3260
+ msgstr "Mynd á miðahaus"
3261
+
3262
+ #: ../lib/tickets/tribe-tickets-metabox.php:62
3263
+ msgid "Set as ticket header"
3264
+ msgstr "Setja sem mynd á miðahaus"
3265
+
3266
+ #: ../lib/tickets/tribe-tickets-pro.php:107
3267
+ msgid "You need to select a user or type a valid email address"
3268
+ msgstr "Þú verður að velja notenda eða skrá gilt netfang"
3269
+
3270
+ #: ../lib/tickets/tribe-tickets-pro.php:108
3271
+ msgid "Sending..."
3272
+ msgstr "Sendi..."
3273
+
3274
+ #: ../lib/tickets/tribe-tickets-pro.php:136
3275
+ msgid "Columns"
3276
+ msgstr "Dálkar"
3277
+
3278
+ #: ../lib/tickets/tribe-tickets-pro.php:137
3279
+ msgid ""
3280
+ "You can use Screen Options to select which columns you want to see. The "
3281
+ "selection works in the table below, in the email, for print and for the CSV "
3282
+ "export."
3283
+ msgstr ""
3284
+ "Notið Screen Options til að velja hvaða dálkar sjást. Þetta val virkar með "
3285
+ "töflunni hér fyrir neðan, í tölvupósti, prentun og fyrir CSV flutning."
3286
+
3287
+ #: ../lib/tickets/tribe-tickets-pro.php:258
3288
+ msgid "attendees"
3289
+ msgstr "þáttakendur"
3290
+
3291
+ #: ../lib/tickets/tribe-tickets-pro.php:308
3292
+ #, php-format
3293
+ msgid "Attendee List for: %s"
3294
+ msgstr "Þáttakenda listi: %s"
3295
+
3296
+ #: ../lib/tickets/tribe-tickets.php:292
3297
+ msgid "Your ticket has been saved."
3298
+ msgstr "Miðinn hefur vistast."
3299
+
3300
+ #: ../lib/tickets/tribe-tickets.php:369
3301
+ msgid "Your ticket has been deleted."
3302
+ msgstr "Miðanumu hefur verið eytt."
3303
+
3304
+ #: ../public/advanced-functions/meta.php:35
3305
+ msgid "Start:"
3306
+ msgstr "Byrja:"
3307
+
3308
+ #: ../public/advanced-functions/meta.php:42
3309
+ msgid "End:"
3310
+ msgstr "Enda:"
3311
+
3312
+ #: ../public/advanced-functions/meta.php:51
3313
+ msgid "Date:"
3314
+ msgstr "Dagsetn:"
3315
+
3316
+ #: ../public/advanced-functions/meta.php:233
3317
+ msgid "Click to view a Google Map"
3318
+ msgstr "Smellið til að skoða Google Map"
3319
+
3320
+ #: ../public/advanced-functions/meta.php:234
3321
+ msgid "+ Google Map"
3322
+ msgstr "+ Google Map"
3323
+
3324
+ #: ../public/advanced-functions/meta.php:245
3325
+ msgid "Details"
3326
+ msgstr "Upplýsingar"
3327
+
3328
+ #: ../public/advanced-functions/meta.php:295
3329
+ msgid "Event Tags:"
3330
+ msgstr "Viðburðar merki:"
3331
+
3332
+ #: ../public/advanced-functions/meta.php:321
3333
+ msgid "Origin:"
3334
+ msgstr "Uppruni:"
3335
+
3336
+ #: ../public/advanced-functions/meta.php:458
3337
+ msgid "Event:"
3338
+ msgstr "Viðburður:"
3339
+
3340
+ #: ../public/template-tags/deprecated.php:1143
3341
+ msgid "Category"
3342
+ msgstr "Flokkur"
3343
+
3344
+ #: ../public/template-tags/general.php:306
3345
+ msgid "Tags:"
3346
+ msgstr "Merki:"
3347
+
3348
+ #: ../public/template-tags/general.php:392
3349
+ msgid "Loading Events"
3350
+ msgstr "Hleð viðburðum"
3351
+
3352
+ #: ../public/template-tags/general.php:531
3353
+ msgid "Free"
3354
+ msgstr "Frítt"
3355
+
3356
+ #: ../public/template-tags/general.php:703
3357
+ msgid "Recurring Event"
3358
+ msgstr "Endurtekinn viðburður"
3359
+
3360
+ #: ../public/template-tags/general.php:706
3361
+ msgid "(See all)"
3362
+ msgstr "(Sjá alla)"
3363
+
3364
+ #: ../public/template-tags/general.php:982
3365
+ #, php-format
3366
+ msgid "Calendar powered by %sThe Events Calendar%s"
3367
+ msgstr "Dagatal keyrt af %sThe Events Calendar%s"
3368
+
3369
+ #: ../public/template-tags/loop.php:150
3370
+ #, php-format
3371
+ msgid "Events for %1$s"
3372
+ msgstr "Viðburðir fyrir %1$s"
3373
+
3374
+ #: ../public/template-tags/loop.php:158
3375
+ #, php-format
3376
+ msgid "Events for %1$s through %2$s"
3377
+ msgstr "Viðburðir fyrir %1$stilogmeð%2$s"
3378
+
3379
+ #: ../public/template-tags/loop.php:171
3380
+ msgid "Events for "
3381
+ msgstr "Viðburðir fyrir"
3382
+
3383
+ #: ../public/template-tags/options.php:20
3384
+ #, php-format
3385
+ msgid "Your current Events URL is %s"
3386
+ msgstr "URL viðburðar er %s"
3387
+
3388
+ #: ../public/template-tags/options.php:31
3389
+ #, php-format
3390
+ msgid ""
3391
+ "You <strong>cannot</strong> use the same slug as above. The above should "
3392
+ "ideally be plural, and this singular.<br />Your single Event URL is like: %s"
3393
+ msgstr ""
3394
+ "Þú <strong>mátt ekki</strong>nota sama slug og að ofan. Ofangreint ætti að "
3395
+ "vera í fleirtölu og þetta eintölu.<br/>URL staks viðburðar er eins og:%s"
3396
+
3397
+ #: ../views/single-event.php:23
3398
+ msgid "&laquo; All Events"
3399
+ msgstr "&laquo; Allir viðburðir"
3400
+
3401
+ #: ../views/single-event.php:42 ../views/single-event.php:73
3402
+ msgid "Event Navigation"
3403
+ msgstr "Viðburðar stýringa"
3404
+
3405
+ #: ../views/list/nav.php:16
3406
+ msgid "Events List Navigation"
3407
+ msgstr "Listi viðburðarstýringar"
3408
+
3409
+ #: ../views/list/single-event.php:76
3410
+ msgid "Find out more"
3411
+ msgstr "Lesa meira"
3412
+
3413
+ #: ../views/modules/bar.php:31 ../views/modules/bar.php:60
3414
+ msgid "Find Events"
3415
+ msgstr "Leita viðburða"
3416
+
3417
+ #: ../views/modules/bar.php:38
3418
+ msgid "Event Views Navigation"
3419
+ msgstr "Viðburðar skoðunar stýring"
3420
+
3421
+ #: ../views/modules/bar.php:39
3422
+ msgid "View As"
3423
+ msgstr "Skoða sem"
3424
+
3425
+ #: ../views/month/nav.php:18
3426
+ msgid "Calendar Month Navigation"
3427
+ msgstr "Mánaðardagals stýring"
3428
+
3429
+ #: ../views/tickets/attendees-email.php:25
3430
+ msgid "Attendee List"
3431
+ msgstr "Þáttakenda listi"
3432
+
3433
+ #: ../views/tickets/email.php:39
3434
+ msgid "Your tickets"
3435
+ msgstr "Miðinn þinn"
3436
+
3437
+ #: ../views/tickets/email.php:320
3438
+ msgid "Ticket Type"
3439
+ msgstr "Tegund miða"
3440
+
3441
+ #: ../views/tickets/email.php:324
3442
+ msgid "Purchaser"
3443
+ msgstr "Kaupandi"
3444
+
3445
+ #~ msgid ""
3446
+ #~ "Want to modify the display of this widget? Try a %stemplate override%s."
3447
+ #~ msgstr "Hvis du vil ændre udseendet på denne widget, så %sklik her%s. "
3448
+
3449
+ #~ msgid ""
3450
+ #~ "These styles provide a bare minimum level of layout for the more complex "
3451
+ #~ "templates, and is recommended if you're customizing the events template "
3452
+ #~ "styles."
3453
+ #~ msgstr ""
3454
+ #~ "Disse layouts indeholder kun det mest nødvendige. Kan bruges som "
3455
+ #~ "udgangspunkt for et personaliseret kalenderlayout."
3456
+
3457
+ #~ msgid ""
3458
+ #~ "These styles provide a more complex level of layout and style and should "
3459
+ #~ "adapt to your theme"
3460
+ #~ msgstr ""
3461
+ #~ "Disse layouts er mere fuldendte/komplekse og skal tilpasses dit sidetema."
3462
+
3463
+ #~ msgid "These styles provide a fully designed events theme"
3464
+ #~ msgstr "Disse layouts indeholder fuldt designede begivenhedsvisninger"
3465
+
3466
+ #~ msgid ""
3467
+ #~ "If this is your first time using The Events Calendar,you're in for a "
3468
+ #~ "treat. You're going to find it super-easy to get up and running with "
3469
+ #~ "managing your events. Here are some ways to get started:</"
3470
+ #~ "p><ul><li><strong>Feeling adventurous?</strong> Jump right into it by "
3471
+ #~ "visiting the Events menu to <a href=\"%s\">add your first event</a>.</"
3472
+ #~ "li><li><strong>Want to get the low-down first?</strong> Visit our <a href="
3473
+ #~ "\"%s\">new user primer</a>, designed to help familiarize you with the "
3474
+ #~ "plugin basics.</li></ul>"
3475
+ #~ msgstr ""
3476
+ #~ "If this is your first time using The Events Calendar,you're in for a "
3477
+ #~ "treat. You're going to find it super-easy to get up and running with "
3478
+ #~ "managing your events. Here are some ways to get started:</"
3479
+ #~ "p><ul><li><strong>Feeling adventurous?</strong> Jump right into it by "
3480
+ #~ "visiting the Events menu to <a href=\"%s\">add your first event</a>.</"
3481
+ #~ "li><li><strong>Want to get the low-down first?</strong> Visit our <a href="
3482
+ #~ "\"%s\">new user primer</a>, designed to help familiarize you with the "
3483
+ #~ "plugin basics.</li></ul>"
3484
+
3485
+ #~ msgid ""
3486
+ #~ "<p>We love all our users and want to help free & PRO customers alike. If "
3487
+ #~ "you're running the latest version of The Events Calendar and are having "
3488
+ #~ "problems, post a thread at the %s on WordPress.org. We hit the forum once "
3489
+ #~ "a week to look for legitimate bug reports and do what we can to assist "
3490
+ #~ "users.</p>"
3491
+ #~ msgstr ""
3492
+ #~ "<p>We love all our users and want to help free & PRO customers alike. If "
3493
+ #~ "you're running the latest version of The Events Calendar and are having "
3494
+ #~ "problems, post a thread at the %s on WordPress.org. We hit the forum once "
3495
+ #~ "a week to look for legitimate bug reports and do what we can to assist "
3496
+ #~ "users.</p>"
3497
+
3498
+ #~ msgid "forum for The Events Calendar"
3499
+ #~ msgstr "forum for The Events Calendar"
3500
+
3501
+ #~ msgid ""
3502
+ #~ "<p>If you need additional help, %sEvents Calendar Pro%s gets you access "
3503
+ #~ "to our support forums for a full year.</p>"
3504
+ #~ msgstr ""
3505
+ #~ "<p>If you need additional help, %sEvents Calendar Pro%s gets you access "
3506
+ #~ "to our support forums for a full year.</p>"
3507
+
3508
+ #~ msgid "A few things to keep in mind before posting:"
3509
+ #~ msgstr "A few things to keep in mind before posting:"
3510
+
3511
+ #~ msgid ""
3512
+ #~ "Search recent threads before posting a new one to check that there isn't "
3513
+ #~ "already a discussion about your issue."
3514
+ #~ msgstr ""
3515
+ #~ "Search recent threads before posting a new one to check that there isn't "
3516
+ #~ "already a discussion about your issue."
3517
+
3518
+ #~ msgid ""
3519
+ #~ "Check whether the issue is a conflict with another plugin or your theme. "
3520
+ #~ "This can be tested easily on a staging site by deactivating other plugins "
3521
+ #~ "one-by-one, and reverting to the default Twenty Twelve theme to see if "
3522
+ #~ "conflicts can be easily identified. If you find a conflict, note it in a "
3523
+ #~ "support thread."
3524
+ #~ msgstr ""
3525
+ #~ "Check whether the issue is a conflict with another plugin or your theme. "
3526
+ #~ "This can be tested easily on a staging site by deactivating other plugins "
3527
+ #~ "one-by-one, and reverting to the default Twenty Twelve theme to see if "
3528
+ #~ "conflicts can be easily identified. If you find a conflict, note it in a "
3529
+ #~ "support thread."
3530
+
3531
+ #~ msgid ""
3532
+ #~ "Sometimes, resaving your permalinks (under <a href=\"%s\">Settings > "
3533
+ #~ "Permalinks</a>) can resolve events-related problems on your site. Before "
3534
+ #~ "creating a new thread try this handy trick."
3535
+ #~ msgstr ""
3536
+ #~ "Sometimes, resaving your permalinks (under <a href=\"%s\">Settings > "
3537
+ #~ "Permalinks</a>) can resolve events-related problems on your site. Before "
3538
+ #~ "creating a new thread try this handy trick."
3539
+
3540
+ #~ msgid ""
3541
+ #~ "While we are happy to help with bugs and provide light integration tips "
3542
+ #~ "for users of The Events Calendar, on the WordPress.org support forums "
3543
+ #~ "we're not able to provide customization tips or assist in integration "
3544
+ #~ "with 3rd party plugins."
3545
+ #~ msgstr ""
3546
+ #~ "While we are happy to help with bugs and provide light integration tips "
3547
+ #~ "for users of The Events Calendar, on the WordPress.org support forums "
3548
+ #~ "we're not able to provide customization tips or assist in integration "
3549
+ #~ "with 3rd party plugins."
3550
+
3551
+ #~ msgid "Still Not Satisfied?"
3552
+ #~ msgstr "Still Not Satisfied?"
3553
+
3554
+ #~ msgid ""
3555
+ #~ "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make "
3556
+ #~ "sure you have backed up before proceeding any further. You can easily <a "
3557
+ #~ "href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/"
3558
+ #~ "\">revert to an old version</a> if you want to backup first. This upgrade "
3559
+ #~ "includes two major steps, <a href=\"edit.php?post_type="
3560
+ #~ msgstr ""
3561
+ #~ "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make "
3562
+ #~ "sure you have backed up before proceeding any further. You can easily <a "
3563
+ #~ "href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/"
3564
+ #~ "\">revert to an old version</a> if you want to backup first. This upgrade "
3565
+ #~ "includes two major steps, <a href=\"edit.php?post_type="
3566
+
3567
+ #~ msgid "Send PressTrends data"
3568
+ #~ msgstr "Send PressTrends data"
3569
+
3570
+ #~ msgid ""
3571
+ #~ "Help us out by sending analytics data about your usage of The Events "
3572
+ #~ "Calendar."
3573
+ #~ msgstr ""
3574
+ #~ "Hjælp os ved at sende anonymt data vedrørende din brug til The Events "
3575
+ #~ "Calendar."
3576
+
3577
+ #~ msgid ""
3578
+ #~ "Would you like to help us out and send analytics about your usage of The "
3579
+ #~ "Events Calendar?"
3580
+ #~ msgstr ""
3581
+ #~ "Du kan hjælpe os ved at sende anonymt data til os vedrørende din brug af "
3582
+ #~ "The Events Calendar."
3583
+
lang/tribe-events-calendar-nb_NO.mo CHANGED
Binary file
lang/tribe-events-calendar-nb_NO.po CHANGED
@@ -5,10 +5,10 @@ msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Events Calendar Pro\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2013-07-02 11:27-0800\n"
9
- "PO-Revision-Date: 2013-07-02 11:27-0800\n"
10
- "Last-Translator: Modern Tribe, Inc. <pro@tri.be>\n"
11
- "Language-Team: Modern Tribe, Inc. <pro@tri.be>\n"
12
  "Language: nb_NO\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,13 +19,13 @@ msgstr ""
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-Textdomain-Support: yes\n"
22
- "X-Generator: Poedit 1.5.5\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  #
26
  #: ../admin-views/app-shop.php:4
27
  msgid "Tribe Event Add-Ons"
28
- msgstr "Tribe utvidelser"
29
 
30
  #: ../admin-views/app-shop.php:50
31
  msgid "Version"
@@ -38,7 +38,7 @@ msgstr "Siste oppdatering"
38
 
39
  #: ../admin-views/event-sidebar-options.php:11
40
  msgid "Hide From Event Listings"
41
- msgstr "Skjul fra aktivitets listen"
42
 
43
  #: ../admin-views/event-sidebar-options.php:12
44
  msgid "Sticky in Calendar View"
@@ -55,11 +55,11 @@ msgstr "Opprettet av:"
55
 
56
  #: ../admin-views/events-audit-trail.php:51
57
  msgid "Audit Trail:"
58
- msgstr ""
59
 
60
  #: ../admin-views/events-meta-box.php:26
61
  msgid "Event Time &amp; Date"
62
- msgstr "Tidspunkt"
63
 
64
  #: ../admin-views/events-meta-box.php:32
65
  msgid ""
@@ -75,12 +75,12 @@ msgstr ""
75
  #
76
  #: ../admin-views/events-meta-box.php:35
77
  msgid "All Day Event:"
78
- msgstr "Hele dagen:"
79
 
80
  #
81
  #: ../admin-views/events-meta-box.php:39
82
  msgid "Start Date &amp; Time:"
83
- msgstr "Start dato og tid:"
84
 
85
  #: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
86
  msgid "YYYY-MM-DD"
@@ -110,11 +110,11 @@ msgstr "URL:"
110
 
111
  #: ../admin-views/events-meta-box.php:115
112
  msgid "Event Cost"
113
- msgstr "Pris for deltakelse"
114
 
115
  #: ../admin-views/events-meta-box.php:118
116
  msgid "Currency Symbol:"
117
- msgstr "Valuta symbol:"
118
 
119
  #: ../admin-views/events-meta-box.php:122
120
  #: ../public/advanced-functions/meta.php:270
@@ -124,7 +124,7 @@ msgstr "Pris:"
124
  #: ../admin-views/events-meta-box.php:127
125
  msgid "Enter a 0 for events that are free or leave blank to hide the field."
126
  msgstr ""
127
- "Skriv inn 0 for arrangementer som er gratis eller la stå tomt for å skjule "
128
  "feltet."
129
 
130
  #: ../admin-views/organizer-meta-box.php:12
@@ -168,46 +168,50 @@ msgstr "Kun denne aktiviteten:"
168
 
169
  #: ../admin-views/recurrence-dialog.php:15
170
  msgid "All other future events in the series will remain the same."
171
- msgstr ""
172
 
173
  #
174
  #: ../admin-views/recurrence-dialog.php:16
175
  #: ../admin-views/recurrence-dialog.php:24
176
  msgid "All Events:"
177
- msgstr "Alle aktiviteter:"
178
 
179
  #: ../admin-views/recurrence-dialog.php:16
180
  msgid ""
181
  "All future events in the series will be changed. Any changes made to other "
182
  "events will be kept."
183
  msgstr ""
 
 
184
 
185
  #: ../admin-views/recurrence-dialog.php:21
186
  msgid ""
187
  "Would you like to delete only this instance of the event, or all future "
188
  "events in this series?"
189
  msgstr ""
 
 
190
 
191
  #: ../admin-views/recurrence-dialog.php:23
192
  msgid "All other future events in the series will not be deleted."
193
- msgstr ""
194
 
195
  #: ../admin-views/recurrence-dialog.php:24
196
  msgid "All future events in the series will be deleted."
197
- msgstr ""
198
 
199
  #: ../admin-views/tribe-options-display.php:4
200
  msgid "Default Events Template"
201
- msgstr "Standard aktivitetsmal"
202
 
203
  #: ../admin-views/tribe-options-display.php:5
204
  msgid "Default Page Template"
205
- msgstr "Standard sidemal"
206
 
207
  #
208
  #: ../admin-views/tribe-options-display.php:29
209
  msgid "Display Settings"
210
- msgstr "Visnings Innstillinger"
211
 
212
  #: ../admin-views/tribe-options-display.php:34
213
  #, fuzzy, php-format
@@ -236,51 +240,54 @@ msgstr "Grunnleggende Malinnstillinger"
236
  #
237
  #: ../admin-views/tribe-options-display.php:53
238
  msgid "Default stylesheet used for events templates"
239
- msgstr "Standard stil bruktarrangement malene"
240
 
241
  #: ../admin-views/tribe-options-display.php:56
242
  msgid "Skeleton Styles"
243
- msgstr ""
244
 
245
  #: ../admin-views/tribe-options-display.php:58
246
  msgid ""
247
  "Only includes enough css to achieve complex layouts like calendar and week "
248
  "view."
249
  msgstr ""
 
 
250
 
251
  #: ../admin-views/tribe-options-display.php:60
252
  msgid "Full Styles"
253
- msgstr ""
254
 
255
  #: ../admin-views/tribe-options-display.php:62
256
  msgid "More detailed styling, tries to grab styles from your theme."
257
  msgstr ""
 
258
 
259
  # Er ikke dette et egennavn? Skal man oversette det?
260
  #
261
  #: ../admin-views/tribe-options-display.php:64
262
  msgid "Tribe Events Styles"
263
- msgstr ""
264
 
265
  #: ../admin-views/tribe-options-display.php:66
266
  msgid "A fully designed and styled theme for your events pages."
267
- msgstr ""
268
 
269
  #
270
  #: ../admin-views/tribe-options-display.php:73
271
  msgid "Events template"
272
- msgstr "Aktivitets mal"
273
 
274
  #: ../admin-views/tribe-options-display.php:74
275
  msgid ""
276
  "Choose a page template to control the appearance of your calendar and event "
277
  "content."
278
  msgstr ""
279
- "Velg en side mal for å styre utseendet på din kalender og aktivitets innhold"
280
 
281
  #: ../admin-views/tribe-options-display.php:82
282
  msgid "Enable event views"
283
- msgstr "Aktiver aktivitet visninger"
284
 
285
  #: ../admin-views/tribe-options-display.php:83
286
  msgid "You must select at least one view."
@@ -291,59 +298,67 @@ msgid "Default view"
291
  msgstr "Standard visning"
292
 
293
  #: ../admin-views/tribe-options-display.php:98
294
- #, fuzzy
295
  msgid "Disable the Event Search Bar"
296
- msgstr "Bruk Arrangement Søkelinje"
297
 
298
  #: ../admin-views/tribe-options-display.php:99
299
- #, fuzzy
300
  msgid "Check this to use the classic header."
301
- msgstr "Fjern merkingen for å bruke den vanlige toppen."
302
 
303
- #
304
  #: ../admin-views/tribe-options-display.php:105
 
 
 
 
 
 
 
 
 
305
  msgid "Advanced Template Settings"
306
- msgstr "Avanserte Mal innstillinger"
307
 
308
  #
309
- #: ../admin-views/tribe-options-display.php:109
310
  msgid "Add HTML before event content"
311
- msgstr "Legg HTML før arrangementets innhold"
312
 
313
- #: ../admin-views/tribe-options-display.php:110
314
  msgid ""
315
  "If you are familiar with HTML, you can add additional code before the event "
316
  "template. Some themes may require this to help with styling or layout."
317
  msgstr ""
318
- "Hvis du er kjent med HTML, kan du legge til ekstra kode før arrangementet i "
319
- "mal. Noen temaer kan kreve dette for å hjelpe med styling eller layout."
 
320
 
321
  #
322
- #: ../admin-views/tribe-options-display.php:115
323
  msgid "Add HTML after event content"
324
- msgstr "Legg HTML etter arrangementets innhold"
325
 
326
- #: ../admin-views/tribe-options-display.php:116
327
  msgid ""
328
  "If you are familiar with HTML, you can add additional code after the event "
329
  "template. Some themes may require this to help with styling or layout."
330
  msgstr ""
331
- "Hvis du er kjent med HTML, kan du legge til ekstra kode etter arrangementet "
332
- "i mal. Noen temaer kan kreve dette for å hjelpe med styling eller layout."
 
333
 
334
  #: ../admin-views/tribe-options-general.php:14
335
  msgid "Finding & extending your calendar."
336
- msgstr "Finn og utvide din kalender."
337
 
338
  #: ../admin-views/tribe-options-general.php:19
339
  msgid "Finding your calendar."
340
- msgstr ""
341
 
342
  # Er ikke dette et egennavn? Skal man oversette det?
343
  #
344
  #: ../admin-views/tribe-options-general.php:24
345
  msgid "Where's my calendar?"
346
- msgstr "Hvor er min kalender?"
347
 
348
  #: ../admin-views/tribe-options-general.php:24
349
  msgid "Right here"
@@ -364,7 +379,7 @@ msgstr "Sjekk ut tilgjengelige utvidelser"
364
 
365
  #: ../admin-views/tribe-options-general.php:33
366
  msgid "We hope our plugin is helping you out."
367
- msgstr "Vi håper vår plugin-utvidelse hjelper deg."
368
 
369
  #: ../admin-views/tribe-options-general.php:37
370
  msgid ""
@@ -373,10 +388,11 @@ msgid ""
373
  "is recognition. Add a small text-only link at the bottom of your calendar "
374
  "pointing to The Events Calendar project."
375
  msgstr ""
376
- "Tenker du \"Wow, denne utvidelsen er fantastisk! Jeg burde si takk til "
377
- "Modern Tribe for alt det harde arbeidet.\" Den største takken vi kan be om "
378
- "er anerkjennelse. Legg en liten tekst-kobling nederst på kalenderen som "
379
- "peker til aktivitetskalender prosjektet."
 
380
 
381
  #: ../admin-views/tribe-options-general.php:37
382
  #: ../admin-views/tribe-options-general.php:42
@@ -390,12 +406,17 @@ msgid ""
390
  "is recognition. Add a small text only link at the bottom of your calendar "
391
  "pointing to The Events Calendar project."
392
  msgstr ""
 
 
 
 
 
393
 
394
  # Er ikke dette et egennavn? Skal man oversette det?
395
  #
396
  #: ../admin-views/tribe-options-general.php:47
397
  msgid "Show The Events Calendar link"
398
- msgstr "Vis aktivitetskalender kobling"
399
 
400
  #
401
  #: ../admin-views/tribe-options-general.php:61
@@ -412,7 +433,7 @@ msgstr "Bruk Javascript for å kontrollere lasting av side"
412
 
413
  #: ../admin-views/tribe-options-general.php:73
414
  msgid "Enable ajax to live refresh content."
415
- msgstr "Aktiver ajax å kunne oppdatere innhold."
416
 
417
  #
418
  #: ../admin-views/tribe-options-general.php:79
@@ -421,24 +442,25 @@ msgstr "Vis kommentarer"
421
 
422
  #: ../admin-views/tribe-options-general.php:80
423
  msgid "Enable comments on event pages."
424
- msgstr "Aktiver kommentarer på aktivitets sider."
425
 
426
  #: ../admin-views/tribe-options-general.php:86
427
  msgid "Include events in main blog loop"
428
- msgstr "Inkluder arrangementer i hoved blog loop"
429
 
430
  #: ../admin-views/tribe-options-general.php:87
431
  msgid ""
432
  "Show events with the site's other posts. When this box is checked, events "
433
  "will also continue to appear on the default events page."
434
  msgstr ""
435
- "Vis hendelser med nettstedets andre innlegg. Når denne boksen er huket av, "
436
- "vil aktiviteter også fortsette å vises på standard aktiviteter siden"
 
437
 
438
  #: ../admin-views/tribe-options-general.php:93
439
  #: ../admin-views/tribe-options-general.php:99
440
  msgid "Events URL slug"
441
- msgstr "Kortnavn for aktivitets-URL"
442
 
443
  #: ../admin-views/tribe-options-general.php:94
444
  #, php-format
@@ -448,12 +470,17 @@ msgid ""
448
  "%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php"
449
  "\">enable pretty permalinks</a>."
450
  msgstr ""
 
 
 
 
 
451
 
452
  #
453
  #: ../admin-views/tribe-options-general.php:106
454
  #: ../public/template-tags/options.php:20
455
  msgid "The slug used for building the events URL."
456
- msgstr "Stikkord brukt for å bygge hendelsene URL."
457
 
458
  #: ../admin-views/tribe-options-general.php:106
459
  #, php-format
@@ -464,12 +491,12 @@ msgstr "Din nåværende aktivitets URL er: %s"
464
  #: ../admin-views/tribe-options-general.php:111
465
  #: ../public/template-tags/options.php:43
466
  msgid "Here is the iCal feed URL for your events:"
467
- msgstr ""
468
 
469
  #
470
  #: ../admin-views/tribe-options-general.php:116
471
  msgid "Single event URL slug"
472
- msgstr ""
473
 
474
  #: ../admin-views/tribe-options-general.php:123
475
  #, php-format
@@ -477,38 +504,39 @@ msgid ""
477
  "The above should ideally be plural, and this singular.<br />Your single "
478
  "event URL is: %s"
479
  msgstr ""
480
- "Listen bør ideelt være flertall, og denne ental.<br />Din enkelt aktivitet "
481
- "URL er: %s"
 
482
 
483
  #: ../admin-views/tribe-options-general.php:128
484
  msgid "End of day cutoff"
485
- msgstr "Slutten dagen"
486
 
487
  #: ../admin-views/tribe-options-general.php:136
488
  msgid ""
489
  "Have events that run past midnight? Control when your day official ends to "
490
  "avoid awkwardly adding your event to the next day."
491
  msgstr ""
492
- "Har aktiviteter, fortsatt over midnatt? Styr når dagen offisielt slutter å "
493
- "unngå unødig og legge ditt arrangement til neste dag."
494
 
495
  #: ../admin-views/tribe-options-general.php:141
496
  msgid "Default currency symbol"
497
- msgstr "Standard valuta symbol"
498
 
499
  #: ../admin-views/tribe-options-general.php:142
500
  msgid ""
501
  "Set the default currency symbol for event costs. Note that this only impacts "
502
  "future events, and changes made will not apply retroactively."
503
  msgstr ""
504
- "Angi standard valuta symbol for arrangement kostnader. Merk at dette bare "
505
- "påvirker fremtidige hendelser, og at endringer gjort ikke vil gjelde med "
506
- "tilbakevirkende kraft."
507
 
508
  #
509
  #: ../admin-views/tribe-options-general.php:149
510
  msgid "Map Settings"
511
- msgstr "Kart Innstillinger"
512
 
513
  #: ../admin-views/tribe-options-general.php:153
514
  msgid "Enable Google Maps"
@@ -516,7 +544,7 @@ msgstr "Aktiver Google Maps"
516
 
517
  #: ../admin-views/tribe-options-general.php:154
518
  msgid "Check to enable maps for events and venues."
519
- msgstr "Kryss av for å aktivere kart for arrangementer og møtested."
520
 
521
  #: ../admin-views/tribe-options-general.php:161
522
  #, fuzzy
@@ -525,7 +553,7 @@ msgstr "Google Maps Standard zoomnivå"
525
 
526
  #: ../admin-views/tribe-options-general.php:162
527
  msgid "0 = zoomed out; 21 = zoomed in."
528
- msgstr "0 = zoom ut; 21 = zoom inn."
529
 
530
  #
531
  #: ../admin-views/tribe-options-general.php:170
@@ -534,7 +562,7 @@ msgstr "Diverse innstillinger"
534
 
535
  #: ../admin-views/tribe-options-general.php:174
536
  msgid "Duplicate Venues &amp; Organizers"
537
- msgstr "Dobble steder og arrangører"
538
 
539
  #: ../admin-views/tribe-options-general.php:174
540
  #: ../lib/tribe-amalgamator.php:252
@@ -547,8 +575,8 @@ msgid ""
547
  "Calendar from a pre-3.0 version. Click this button to automatically merge "
548
  "identical venues and organizers."
549
  msgstr ""
550
- "Du kan finne dobble steder og arrangører når du oppdaterer "
551
- "aktivitetskalenderen fra en pre-3.0-versjonen. Klikk på denne knappen for å "
552
  "automatisk slå sammen identiske steder og arrangører."
553
 
554
  #
@@ -565,13 +593,13 @@ msgid ""
565
  "\" tab in the debug output."
566
  msgstr ""
567
  "Aktiver dette alternativet for å logge feilsøkingsmodus informasjon. Som "
568
- "standard lagrer den loggen til din PHP server, feil logg. Hvis du ønsker å "
569
- "se loggen med meldinger i nettleseren din, anbefaler vi at du installerer "
570
- "%s og ser etter \"Tribe\" fanen i feilrettingsdataene."
571
 
572
  #: ../admin-views/tribe-options-general.php:185
573
  msgid "Debug Bar Plugin"
574
- msgstr ""
575
 
576
  #: ../admin-views/tribe-options-help.php:18
577
  msgctxt "not available"
@@ -594,25 +622,25 @@ msgstr "The Events Calendar PRO"
594
 
595
  #: ../admin-views/tribe-options-help.php:46
596
  msgid "Eventbrite Tickets"
597
- msgstr ""
598
 
599
  #
600
  #: ../admin-views/tribe-options-help.php:50
601
  msgid "Community Events"
602
- msgstr ""
603
 
604
  #
605
  #: ../admin-views/tribe-options-help.php:54
606
  msgid "Facebook Events"
607
- msgstr ""
608
 
609
  #: ../admin-views/tribe-options-help.php:58
610
  msgid "WooTickets"
611
- msgstr ""
612
 
613
  #: ../admin-views/tribe-options-help.php:63
614
  msgid "Faceted Filters"
615
- msgstr ""
616
 
617
  #: ../admin-views/tribe-options-help.php:71
618
  msgid "Documentation"
@@ -623,19 +651,19 @@ msgid "FAQ"
623
  msgstr "FAQ - Spørsmål og svar"
624
 
625
  #: ../admin-views/tribe-options-help.php:79
626
- #: ../lib/the-events-calendar.class.php:743
627
- #: ../lib/the-events-calendar.class.php:3889
628
- #: ../lib/the-events-calendar.class.php:3980
629
  msgid "Help"
630
  msgstr "Hjelp"
631
 
632
  #: ../admin-views/tribe-options-help.php:83
633
  msgid "Tutorials"
634
- msgstr "Brukerveiledning"
635
 
636
  #: ../admin-views/tribe-options-help.php:87
637
  msgid "Release Notes"
638
- msgstr "Utgivelses historikk"
639
 
640
  #: ../admin-views/tribe-options-help.php:91
641
  msgid "Forums"
@@ -647,6 +675,10 @@ msgid ""
647
  "and are already well on your way to creating a first event. Here are some "
648
  "basics we've found helpful for users jumping into it for the first time:"
649
  msgstr ""
 
 
 
 
650
 
651
  #: ../admin-views/tribe-options-help.php:102
652
  #, php-format
@@ -656,6 +688,10 @@ msgid ""
656
  "accompanying screenshots, the primer aims to take you from zero to hero in "
657
  "no time."
658
  msgstr ""
 
 
 
 
659
 
660
  #: ../admin-views/tribe-options-help.php:104
661
  #, php-format
@@ -665,6 +701,10 @@ msgid ""
665
  "helpful as it aims to address any basic install questions not addressed by "
666
  "the new user primer."
667
  msgstr ""
 
 
 
 
668
 
669
  #: ../admin-views/tribe-options-help.php:106
670
  #, php-format
@@ -673,12 +713,17 @@ msgid ""
673
  "example plugin that demonstrates how to register a new view. You can "
674
  "%sdownload the plugin at GitHub%s to get started."
675
  msgstr ""
 
 
 
676
 
677
  #: ../admin-views/tribe-options-help.php:108
678
  msgid ""
679
  "Otherwise, if you're feeling adventurous, you can get started by heading to "
680
  "the Events menu and adding your first event."
681
  msgstr ""
 
 
682
 
683
  #: ../admin-views/tribe-options-help.php:112
684
  #, php-format
@@ -687,6 +732,9 @@ msgid ""
687
  "our users. Head over to our %sSupport Page%s and you'll find lots of great "
688
  "resources, including:"
689
  msgstr ""
 
 
 
690
 
691
  #: ../admin-views/tribe-options-help.php:114
692
  #, php-format
@@ -694,6 +742,8 @@ msgid ""
694
  "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
695
  "&amp; Events Calendar PRO"
696
  msgstr ""
 
 
697
 
698
  #: ../admin-views/tribe-options-help.php:116
699
  #, php-format
@@ -701,6 +751,8 @@ msgid ""
701
  "%sFrequently Asked Questions%s ranging from the most basic setup questions "
702
  "to advanced themer tweaks"
703
  msgstr ""
 
 
704
 
705
  #: ../admin-views/tribe-options-help.php:118
706
  #, php-format
@@ -709,12 +761,17 @@ msgid ""
709
  "community, covering custom queries, integration with third-party themes and "
710
  "plugins, etc."
711
  msgstr ""
 
 
 
712
 
713
  #: ../admin-views/tribe-options-help.php:120
714
  msgid ""
715
  "Release notes for painting an overall picture of the plugin's lifecycle and "
716
  "when features/bug fixes were introduced."
717
  msgstr ""
 
 
718
 
719
  #: ../admin-views/tribe-options-help.php:122
720
  #, php-format
@@ -723,6 +780,9 @@ msgid ""
723
  "The Events Calendar (including WooTickets, Community Events, Eventbrite "
724
  "Tickets, Facebook Events, etc)"
725
  msgstr ""
 
 
 
726
 
727
  #: ../admin-views/tribe-options-help.php:124
728
  #, php-format
@@ -734,6 +794,13 @@ msgid ""
734
  "add your own, and help us shape the future of the products business in a way "
735
  "that best meets the community's needs."
736
  msgstr ""
 
 
 
 
 
 
 
737
 
738
  #: ../admin-views/tribe-options-help.php:128
739
  #, php-format
@@ -741,6 +808,8 @@ msgid ""
741
  "Written documentation can only take things so far...sometimes, you need help "
742
  "from a real person. This is where our %ssupport forums%s come into play."
743
  msgstr ""
 
 
744
 
745
  #: ../admin-views/tribe-options-help.php:129
746
  #, php-format
@@ -751,6 +820,12 @@ msgid ""
751
  "to read our %ssupport expectations sticky thread%s before posting so you "
752
  "understand our limitations."
753
  msgstr ""
 
 
 
 
 
 
754
 
755
  #: ../admin-views/tribe-options-help.php:130
756
  msgid ""
@@ -760,6 +835,11 @@ msgid ""
760
  "provide customization tips or assist in integrating with 3rd party plugins "
761
  "or themes."
762
  msgstr ""
 
 
 
 
 
763
 
764
  #: ../admin-views/tribe-options-help.php:131
765
  #, php-format
@@ -769,28 +849,33 @@ msgid ""
769
  "deeper level of customization/integration support for paying users than we "
770
  "can on WordPress.org."
771
  msgstr ""
 
 
 
 
772
 
773
  #: ../admin-views/tribe-options-help.php:135
774
- #, fuzzy, php-format
775
  msgid ""
776
  "If you find that you aren't getting the level of service you've come to "
777
  "expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
778
  "why. We'll do what we can to make it right."
779
  msgstr ""
780
- "Send oss en e-post ved %s eller twitter oss %s og fortell oss hvorfor. Vi "
781
- "vil gjøre hva vi kan for å gjøre det riktig."
 
782
 
783
  #: ../admin-views/tribe-options-help.php:136
784
  msgid "More..."
785
- msgstr "Mer..."
786
 
787
  #: ../admin-views/tribe-options-help.php:144
788
  msgid ""
789
  "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
790
  "for installing our labor of love!"
791
  msgstr ""
792
- "Hei! Vi er Modern Tribe og vi er her for å hjelpe deg i gang. Takk mye "
793
- "for å bruke vår arbeidskraft av kjærlighet!"
794
 
795
  #: ../admin-views/tribe-options-help.php:150
796
  msgid "Getting Started"
@@ -802,17 +887,16 @@ msgid "Support Resources To Help You Kick Ass"
802
  msgstr "Ressurser som hjelper deg å komme i gang"
803
 
804
  #: ../admin-views/tribe-options-help.php:156
805
- #, fuzzy
806
  msgid "Forums: Because Everyone Needs A Buddy"
807
- msgstr "Alle trenger en Buddy"
808
 
809
  #: ../admin-views/tribe-options-help.php:159
810
  msgid "Not getting help?"
811
- msgstr ""
812
 
813
  # Er ikke dette et egennavn? Skal man oversette det?
814
  #: ../admin-views/tribe-options-help.php:169
815
- #: ../lib/the-events-calendar.class.php:486
816
  #: ../lib/tribe-settings.class.php:135
817
  msgid "The Events Calendar"
818
  msgstr "The Events Calendar"
@@ -840,7 +924,7 @@ msgstr "WordPress "
840
 
841
  #: ../admin-views/tribe-options-help.php:176
842
  msgid "Wordpress.org Plugin Page"
843
- msgstr "Wordpress.org Plugin side"
844
 
845
  #: ../admin-views/tribe-options-help.php:181
846
  msgid "Average Rating"
@@ -859,7 +943,7 @@ msgstr "Gi oss 5 stjerner!"
859
 
860
  #: ../admin-views/tribe-options-help.php:189
861
  msgid "Premium Add-Ons"
862
- msgstr "Premium utvidelser"
863
 
864
  #: ../admin-views/tribe-options-help.php:195
865
  msgid "(Coming Soon!)"
@@ -867,7 +951,7 @@ msgstr "(Kommer snart!)"
867
 
868
  #: ../admin-views/tribe-options-help.php:202
869
  msgid "News and Tutorials"
870
- msgstr "Nyheter og veiledninger"
871
 
872
  #
873
  #: ../admin-views/tribe-options-network.php:14
@@ -879,14 +963,16 @@ msgid ""
879
  "This is where all of the global network settings for Modern Tribe's The "
880
  "Events Calendar can be modified."
881
  msgstr ""
 
 
882
 
883
  #: ../admin-views/tribe-options-network.php:26
884
  msgid "Hide the following settings tabs on every site:"
885
- msgstr ""
886
 
887
  #: ../admin-views/venue-meta-box.php:20
888
  msgid "Venue Name:"
889
- msgstr "Navn på lokale/sted:"
890
 
891
  #: ../admin-views/venue-meta-box.php:27
892
  #: ../public/advanced-functions/meta.php:371
@@ -903,11 +989,11 @@ msgstr "Land:"
903
 
904
  #: ../admin-views/venue-meta-box.php:73
905
  msgid "State or Province:"
906
- msgstr "Fylke eller område:"
907
 
908
  #: ../admin-views/venue-meta-box.php:76
909
  msgid "Select a State:"
910
- msgstr "Velg stat:"
911
 
912
  #: ../admin-views/venue-meta-box.php:89
913
  msgid "Postal Code:"
@@ -941,12 +1027,12 @@ msgstr "Deltakere"
941
  #
942
  #: ../admin-views/tickets/attendees.php:14
943
  msgid "Event Summary"
944
- msgstr ""
945
 
946
  #
947
  #: ../admin-views/tickets/attendees.php:22
948
  msgid "Event Details"
949
- msgstr ""
950
 
951
  #: ../admin-views/tickets/attendees.php:24
952
  msgid "Start Date / Time:"
@@ -962,7 +1048,7 @@ msgstr "Sted:"
962
 
963
  #: ../admin-views/tickets/attendees.php:52
964
  msgid "Ticket Sales"
965
- msgstr ""
966
 
967
  #: ../admin-views/tickets/attendees.php:64 ../admin-views/tickets/list.php:67
968
  #, php-format
@@ -976,11 +1062,11 @@ msgstr "Solgt %d av %d"
976
 
977
  #: ../admin-views/tickets/attendees.php:81
978
  msgid "Tickets sold:"
979
- msgstr ""
980
 
981
  #: ../admin-views/tickets/attendees.php:85
982
  msgid "Checked in:"
983
- msgstr ""
984
 
985
  #: ../admin-views/tickets/attendees.php:105
986
  msgid "Send the attendee list by email"
@@ -989,11 +1075,11 @@ msgstr "Send deltakerlisten via e-post"
989
  #
990
  #: ../admin-views/tickets/attendees.php:109
991
  msgid "Select a User:"
992
- msgstr "Velg en bruker:"
993
 
994
  #: ../admin-views/tickets/attendees.php:110
995
  msgid "Select..."
996
- msgstr "Velg..."
997
 
998
  #: ../admin-views/tickets/attendees.php:112
999
  msgid "or"
@@ -1024,17 +1110,19 @@ msgstr "Vis"
1024
 
1025
  #: ../admin-views/tickets/list.php:41 ../lib/tickets/tribe-tickets-pro.php:73
1026
  msgid "See who purchased tickets to this event"
1027
- msgstr ""
1028
 
1029
  #: ../admin-views/tickets/meta-box.php:21
1030
  msgid ""
1031
  "This event was created using Community Events. Are you sure you want to sell "
1032
  "tickets for it?"
1033
  msgstr ""
 
 
1034
 
1035
  #: ../admin-views/tickets/meta-box.php:32
1036
  msgid "Upload image for the ticket header"
1037
- msgstr ""
1038
 
1039
  #: ../admin-views/tickets/meta-box.php:33
1040
  msgid ""
@@ -1042,9 +1130,9 @@ msgid ""
1042
  "then scaled for mobile. If you would like \"retina\" support use an image "
1043
  "sized to 1160px wide."
1044
  msgstr ""
1045
- "Den maksimale bildestørrelsen i e-posten vil være 580px bred, og med valgfri "
1046
- "høyde, og vil bli skalert for mobil. Hvis du ønsker \"retina \" støtte, "
1047
- "bruke et bilde som har bredden 1160px."
1048
 
1049
  #
1050
  #: ../admin-views/tickets/meta-box.php:36
@@ -1059,25 +1147,25 @@ msgstr "Fjern"
1059
  #: ../admin-views/tickets/meta-box.php:62
1060
  #: ../admin-views/tickets/meta-box.php:72
1061
  msgid "Add new ticket"
1062
- msgstr ""
1063
 
1064
  #
1065
  #: ../admin-views/tickets/meta-box.php:73
1066
  msgid "Edit ticket"
1067
- msgstr ""
1068
 
1069
  #: ../admin-views/tickets/meta-box.php:79
1070
  msgid "Sell using:"
1071
- msgstr ""
1072
 
1073
  #
1074
  #: ../admin-views/tickets/meta-box.php:96
1075
  msgid "Ticket Name:"
1076
- msgstr ""
1077
 
1078
  #: ../admin-views/tickets/meta-box.php:103
1079
  msgid "Ticket Description:"
1080
- msgstr ""
1081
 
1082
  #: ../admin-views/tickets/meta-box.php:112
1083
  msgid "Price:"
@@ -1086,7 +1174,7 @@ msgstr "Pris:"
1086
  #
1087
  #: ../admin-views/tickets/meta-box.php:124
1088
  msgid "Start sale:"
1089
- msgstr "Start salg:"
1090
 
1091
  #
1092
  #: ../admin-views/tickets/meta-box.php:148
@@ -1098,50 +1186,57 @@ msgid ""
1098
  "When will ticket sales occur? If you don't set a start/end date for sales, "
1099
  "tickets will be available from now until the event ends."
1100
  msgstr ""
 
 
1101
 
1102
- #: ../lib/the-events-calendar.class.php:491
1103
  msgid "month"
1104
  msgstr "måned"
1105
 
1106
- #: ../lib/the-events-calendar.class.php:492
1107
  msgid "upcoming"
1108
  msgstr "kommende"
1109
 
1110
- #: ../lib/the-events-calendar.class.php:493
1111
  msgid "past"
1112
  msgstr "tidligere"
1113
 
1114
- #: ../lib/the-events-calendar.class.php:495
1115
  msgid "venue"
1116
  msgstr "sted"
1117
 
1118
- #: ../lib/the-events-calendar.class.php:509
1119
  #, php-format
1120
  msgid "Initializing Tribe Events on %s"
1121
- msgstr "Initialiserer Tribe-aktiviteter for %s"
1122
 
1123
- #: ../lib/the-events-calendar.class.php:622
1124
  #, php-format
1125
  msgid ""
1126
  "Your version of The Events Calendar is not up-to-date with one of your The "
1127
  "Events Calendar add-ons. Please %supdate now.%s"
1128
  msgstr ""
 
 
1129
 
1130
- #: ../lib/the-events-calendar.class.php:639
1131
  #, php-format
1132
  msgid ""
1133
  "The following plugins are out of date: <b>%s</b>. All add-ons contain "
1134
  "dependencies on The Events Calendar and will not function properly unless "
1135
  "paired with the right version. %sWant to pair an older version%s?"
1136
  msgstr ""
 
 
 
1137
 
1138
- #: ../lib/the-events-calendar.class.php:703
1139
- #: ../lib/the-events-calendar.class.php:738
1140
- #: ../lib/the-events-calendar.class.php:740
1141
  msgid "Licenses"
1142
  msgstr "Lisenser"
1143
 
1144
- #: ../lib/the-events-calendar.class.php:707
1145
  #, fuzzy, php-format
1146
  msgid ""
1147
  "<p>The license key you received when completing your purchase from %s will "
@@ -1173,15 +1268,15 @@ msgstr ""
1173
  "<a href=\"%s\">Kontrollpanel > Oppdateringer</ a> og klikk \"Sjekk igjen \"."
1174
  "</p>"
1175
 
1176
- #: ../lib/the-events-calendar.class.php:730
1177
  msgid "General"
1178
  msgstr "Generelt"
1179
 
1180
- #: ../lib/the-events-calendar.class.php:731
1181
  msgid "Display"
1182
  msgstr "Vis"
1183
 
1184
- #: ../lib/the-events-calendar.class.php:782
1185
  #, php-format
1186
  msgid ""
1187
  "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
@@ -1190,552 +1285,569 @@ msgstr ""
1190
  "Beklager, The Events Calendar krever WordPress %s eller nyere. Vennligst "
1191
  "oppgrader WordPress."
1192
 
1193
- #: ../lib/the-events-calendar.class.php:785
1194
  #, php-format
1195
  msgid ""
1196
  "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
1197
  "about moving you to a newer version of PHP."
1198
  msgstr ""
1199
- "Beklager, The Events Calendar krever PHP %s eller nyere. Be din "
1200
- "systemadministrator om å migrere deg til en nyere versjon av PHP."
1201
 
1202
- #: ../lib/the-events-calendar.class.php:1000 ../lib/widget-list.class.php:151
1203
  #: ../public/template-tags/loop.php:137
1204
  msgid "Upcoming Events"
1205
- msgstr "Kommende aktiviteter"
1206
 
1207
- #: ../lib/the-events-calendar.class.php:1003
1208
  #: ../public/template-tags/loop.php:165
1209
  msgid "Past Events"
1210
- msgstr "Tidligere aktiviteter"
1211
 
1212
- #: ../lib/the-events-calendar.class.php:1008
1213
- #: ../lib/the-events-calendar.class.php:1015
1214
  #, php-format
1215
  msgid "Events for %s"
1216
  msgstr "Aktiviteter for %s"
1217
 
1218
- #: ../lib/the-events-calendar.class.php:1010
1219
  msgid "Events this month"
1220
  msgstr "Aktiviteter denne måneden"
1221
 
1222
- #: ../lib/the-events-calendar.class.php:1022
1223
  #, php-format
1224
  msgid "Events at %s"
1225
  msgstr "Aktiviteter ved %s"
1226
 
1227
- #: ../lib/the-events-calendar.class.php:1041
1228
  msgid "No description has been entered for this event."
1229
  msgstr "Denne aktiviteten har ingen beskrivelse."
1230
 
1231
- #: ../lib/the-events-calendar.class.php:1303
1232
  msgid "category"
1233
  msgstr "kategori"
1234
 
1235
- #: ../lib/the-events-calendar.class.php:1313
1236
  msgid "tag"
1237
  msgstr "merk"
1238
 
1239
- #: ../lib/the-events-calendar.class.php:1340
1240
- #: ../lib/the-events-calendar.class.php:3820
1241
- #: ../lib/the-events-calendar.class.php:3880
1242
  msgid "Events"
1243
  msgstr "Aktiviteter"
1244
 
1245
- #: ../lib/the-events-calendar.class.php:1341
1246
  msgid "Event"
1247
- msgstr "Aktiviteter"
1248
 
1249
- #: ../lib/the-events-calendar.class.php:1342
1250
- #: ../lib/the-events-calendar.class.php:1355
1251
- #: ../lib/the-events-calendar.class.php:1368
1252
  msgid "Add New"
1253
  msgstr "Legg til ny"
1254
 
1255
- #: ../lib/the-events-calendar.class.php:1343
1256
  msgid "Add New Event"
1257
- msgstr "Legg til ny aktivitet"
1258
 
1259
- #: ../lib/the-events-calendar.class.php:1344
1260
  msgid "Edit Event"
1261
- msgstr "Rediger aktivitet"
1262
 
1263
- #: ../lib/the-events-calendar.class.php:1345
1264
  msgid "New Event"
1265
  msgstr "Ny aktivitet"
1266
 
1267
- #: ../lib/the-events-calendar.class.php:1346
1268
  msgid "View Event"
1269
- msgstr "Vis aktivitet"
1270
 
1271
- #: ../lib/the-events-calendar.class.php:1347
1272
  msgid "Search Events"
1273
- msgstr "Søk i aktiviteter"
1274
 
1275
- #: ../lib/the-events-calendar.class.php:1348
1276
  msgid "No events found"
1277
  msgstr "Fant ingen aktiviteter"
1278
 
1279
- #: ../lib/the-events-calendar.class.php:1349
1280
  msgid "No events found in Trash"
1281
  msgstr "Fant ingen aktiviteter i søppelkassen"
1282
 
1283
- #: ../lib/the-events-calendar.class.php:1353
1284
- #: ../lib/the-events-calendar.class.php:1465
1285
  msgid "Venues"
1286
  msgstr "Steder"
1287
 
1288
- #: ../lib/the-events-calendar.class.php:1354
1289
  #: ../public/advanced-functions/meta.php:331 ../views/tickets/email.php:343
1290
  msgid "Venue"
1291
  msgstr "Sted"
1292
 
1293
- #: ../lib/the-events-calendar.class.php:1356
1294
  msgid "Add New Venue"
1295
- msgstr "Legg til nytt sted"
1296
 
1297
- #: ../lib/the-events-calendar.class.php:1357
1298
  msgid "Edit Venue"
1299
- msgstr "Rediger sted"
1300
 
1301
- #: ../lib/the-events-calendar.class.php:1358
1302
  msgid "New Venue"
1303
  msgstr "Nytt sted"
1304
 
1305
- #: ../lib/the-events-calendar.class.php:1359
1306
  msgid "View Venue"
1307
- msgstr "Vis sted"
1308
 
1309
- #: ../lib/the-events-calendar.class.php:1360
1310
  msgid "Search Venues"
1311
- msgstr "Søk i steder"
1312
 
1313
- #: ../lib/the-events-calendar.class.php:1361
1314
  msgid "No venue found"
1315
  msgstr "Fant ingen steder"
1316
 
1317
- #: ../lib/the-events-calendar.class.php:1362
1318
  msgid "No venues found in Trash"
1319
  msgstr "Fant ingen steder i søppelkassen"
1320
 
1321
- #: ../lib/the-events-calendar.class.php:1366
1322
- #: ../lib/the-events-calendar.class.php:1466
1323
  msgid "Organizers"
1324
  msgstr "Arrangører"
1325
 
1326
- #: ../lib/the-events-calendar.class.php:1367
1327
  #: ../public/advanced-functions/meta.php:393 ../views/tickets/email.php:362
1328
  msgid "Organizer"
1329
  msgstr "Arrangør"
1330
 
1331
- #: ../lib/the-events-calendar.class.php:1369
1332
  msgid "Add New Organizer"
1333
- msgstr "Legg til ny arrangør"
1334
 
1335
- #: ../lib/the-events-calendar.class.php:1370
1336
  msgid "Edit Organizer"
1337
- msgstr "Rediger arrangør"
1338
 
1339
- #: ../lib/the-events-calendar.class.php:1371
1340
  msgid "New Organizer"
1341
- msgstr "Ny arrangør"
1342
 
1343
  #
1344
- #: ../lib/the-events-calendar.class.php:1372
1345
  msgid "View Organizer"
1346
- msgstr "Vis sortering"
1347
 
1348
- #: ../lib/the-events-calendar.class.php:1373
1349
  msgid "Search Organizers"
1350
- msgstr "Søk i arrangører"
1351
 
1352
- #: ../lib/the-events-calendar.class.php:1374
1353
  msgid "No organizer found"
1354
  msgstr "Fant ingen arrangører"
1355
 
1356
- #: ../lib/the-events-calendar.class.php:1375
1357
  msgid "No organizers found in Trash"
1358
  msgstr "Fant ingen arrangører i søppelkassen"
1359
 
1360
- #: ../lib/the-events-calendar.class.php:1379
1361
  #: ../lib/tribe-admin-events-list.class.php:217
1362
  msgid "Event Categories"
1363
- msgstr "Kategorier"
1364
 
1365
- #: ../lib/the-events-calendar.class.php:1380
1366
- #: ../public/template-tags/general.php:276
1367
  msgid "Event Category"
1368
- msgstr "Kategori"
1369
 
1370
- #: ../lib/the-events-calendar.class.php:1381
1371
  msgid "Search Event Categories"
1372
- msgstr "Søk i kategorier"
1373
 
1374
- #: ../lib/the-events-calendar.class.php:1382
1375
  msgid "All Event Categories"
1376
- msgstr "Alle kategorier"
1377
 
1378
- #: ../lib/the-events-calendar.class.php:1383
1379
  msgid "Parent Event Category"
1380
- msgstr "Overordnet kategori"
1381
 
1382
- #: ../lib/the-events-calendar.class.php:1384
1383
  msgid "Parent Event Category:"
1384
- msgstr "Overordnet kategori:"
1385
 
1386
- #: ../lib/the-events-calendar.class.php:1385
1387
  msgid "Edit Event Category"
1388
- msgstr "Rediger kategori"
1389
 
1390
- #: ../lib/the-events-calendar.class.php:1386
1391
  msgid "Update Event Category"
1392
- msgstr "Oppdater kategori"
1393
 
1394
- #: ../lib/the-events-calendar.class.php:1387
1395
  msgid "Add New Event Category"
1396
  msgstr "Legg til ny kategori"
1397
 
1398
- #: ../lib/the-events-calendar.class.php:1388
1399
  msgid "New Event Category Name"
1400
- msgstr "Navnny kategori"
1401
 
1402
- #: ../lib/the-events-calendar.class.php:1404
1403
  #, php-format
1404
  msgid "Event updated. <a href=\"%s\">View event</a>"
1405
  msgstr "Aktivitet oppdatert. <a href=\"%s\">Vis aktivitet</a>"
1406
 
1407
- #: ../lib/the-events-calendar.class.php:1405
1408
- #: ../lib/the-events-calendar.class.php:1422
1409
- #: ../lib/the-events-calendar.class.php:1439
1410
- msgid "Custom field updated."
1411
- msgstr "Egendefinert felt oppdatert."
1412
-
1413
  #: ../lib/the-events-calendar.class.php:1406
1414
  #: ../lib/the-events-calendar.class.php:1423
1415
  #: ../lib/the-events-calendar.class.php:1440
 
 
 
 
 
 
1416
  msgid "Custom field deleted."
1417
  msgstr "Egendefinert felt slettet."
1418
 
1419
- #: ../lib/the-events-calendar.class.php:1407
1420
  msgid "Event updated."
1421
  msgstr "Aktivitet oppdatert."
1422
 
1423
- #: ../lib/the-events-calendar.class.php:1409
1424
  #, php-format
1425
  msgid "Event restored to revision from %s"
1426
  msgstr "Aktivitet gjenopprettet til revisjon fra %s"
1427
 
1428
- #: ../lib/the-events-calendar.class.php:1410
1429
  #, php-format
1430
  msgid "Event published. <a href=\"%s\">View event</a>"
1431
  msgstr "Aktivitet publisert. <a href=\"%s\">Vis aktivitet</a>"
1432
 
1433
- #: ../lib/the-events-calendar.class.php:1411
1434
  msgid "Event saved."
1435
  msgstr "Aktivitet lagret."
1436
 
1437
- #: ../lib/the-events-calendar.class.php:1412
1438
  #, php-format
1439
  msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1440
- msgstr "Aktivitet innsendt. <a target=\"_blank\" href=\"%s\">Forhåndsvis</a>"
 
 
1441
 
1442
- #: ../lib/the-events-calendar.class.php:1413
1443
  #, php-format
1444
  msgid ""
1445
  "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1446
  "\">Preview event</a>"
1447
  msgstr ""
1448
  "Aktivitet planlagt til <strong>%1$s</strong>. <a target=\"_blank\" href="
1449
- "\"%2$s\">Forhåndsvis</a>"
1450
 
1451
- #: ../lib/the-events-calendar.class.php:1415
1452
- #: ../lib/the-events-calendar.class.php:1432
1453
- #: ../lib/the-events-calendar.class.php:1449
1454
  msgid "M j, Y @ G:i"
1455
  msgstr "Y-m-d @ G:i"
1456
 
1457
- #: ../lib/the-events-calendar.class.php:1416
1458
  #, php-format
1459
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1460
  msgstr ""
1461
- "Utkast for aktivitet oppdatert. <a target=\"_blank\" href=\"%s"
1462
- "\">Forhåndsvis</a>"
1463
 
1464
- #: ../lib/the-events-calendar.class.php:1421
1465
  #, php-format
1466
  msgid "Venue updated. <a href=\"%s\">View venue</a>"
1467
  msgstr "Sted oppdatert. <a href=\"%s\">Vis sted</a>"
1468
 
1469
- #: ../lib/the-events-calendar.class.php:1424
1470
  msgid "Venue updated."
1471
  msgstr "Sted oppdatert."
1472
 
1473
- #: ../lib/the-events-calendar.class.php:1426
1474
  #, php-format
1475
  msgid "Venue restored to revision from %s"
1476
  msgstr "Sted gjenopprettet til revisjon fra %s"
1477
 
1478
- #: ../lib/the-events-calendar.class.php:1427
1479
  #, php-format
1480
  msgid "Venue published. <a href=\"%s\">View venue</a>"
1481
  msgstr "Sted publisert. <a href=\"%s\">Vis sted</a>"
1482
 
1483
- #: ../lib/the-events-calendar.class.php:1428
1484
  msgid "Venue saved."
1485
  msgstr "Sted lagret."
1486
 
1487
- #: ../lib/the-events-calendar.class.php:1429
1488
  #, php-format
1489
  msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1490
- msgstr "Sted innsendt. <a target=\"_blank\" href=\"%s\">Forhåndsvis</a>"
 
 
1491
 
1492
- #: ../lib/the-events-calendar.class.php:1430
1493
  #, php-format
1494
  msgid ""
1495
  "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1496
  "\">Preview venue</a>"
1497
  msgstr ""
1498
  "Sted lagt til for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1499
- "\">Forhåndsvis</a>"
1500
 
1501
- #: ../lib/the-events-calendar.class.php:1433
1502
  #, php-format
1503
  msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1504
  msgstr ""
1505
- "Utkast for sted oppdatert. <a target=\"_blank\" href=\"%s\">Forhåndsvis</a>"
 
1506
 
1507
- #: ../lib/the-events-calendar.class.php:1438
1508
  #, php-format
1509
  msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1510
  msgstr "Arrangør oppdatert. <a href=\"%s\">Vis arrangør</a>"
1511
 
1512
- #: ../lib/the-events-calendar.class.php:1441
1513
  msgid "Organizer updated."
1514
  msgstr "Arrangør oppdatert."
1515
 
1516
- #: ../lib/the-events-calendar.class.php:1443
1517
  #, php-format
1518
  msgid "Organizer restored to revision from %s"
1519
  msgstr "Arrangør gjenopprettet til revisjon fra %s"
1520
 
1521
- #: ../lib/the-events-calendar.class.php:1444
1522
  #, php-format
1523
  msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1524
  msgstr "Arrangør publisert. <a href=\"%s\">Vis arrangør</a>"
1525
 
1526
- #: ../lib/the-events-calendar.class.php:1445
1527
  msgid "Organizer saved."
1528
  msgstr "Arrangør lagret."
1529
 
1530
- #: ../lib/the-events-calendar.class.php:1446
1531
  #, php-format
1532
  msgid ""
1533
  "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1534
- msgstr "Arrangør innsendt. <a target=\"_blank\" href=\"%s\">Forhåndsvis</a>"
 
 
1535
 
1536
- #: ../lib/the-events-calendar.class.php:1447
1537
  #, php-format
1538
  msgid ""
1539
  "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
1540
  "\"%2$s\">Preview organizer</a>"
1541
  msgstr ""
1542
  "Arrangør lagt til for: <strong>%1$s</strong>. <a target=\"_blank\" href="
1543
- "\"%2$s\">Vis arrangør</a>"
1544
 
1545
- #: ../lib/the-events-calendar.class.php:1450
1546
  #, php-format
1547
  msgid ""
1548
  "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
1549
  "a>"
1550
  msgstr ""
1551
- "Utkast for arrangør oppdatert. <a target=\"_blank\" href=\"%s\">Preview "
1552
- "organizer</a>"
1553
 
1554
- #: ../lib/the-events-calendar.class.php:1491
1555
  msgid "Use Saved Venue:"
1556
- msgstr "Bruk lagret lokasjon:"
1557
 
1558
  #
1559
- #: ../lib/the-events-calendar.class.php:1520
1560
  msgid "Use Saved Organizer:"
1561
  msgstr "Bruk lagret arrangør:"
1562
 
1563
  #
1564
- #: ../lib/the-events-calendar.class.php:1556
1565
  msgid "Use New Venue"
1566
- msgstr "Bruk ny lokasjon"
1567
 
1568
  #
1569
- #: ../lib/the-events-calendar.class.php:1558
1570
  msgid "My Venues"
1571
- msgstr ""
1572
 
1573
  #
1574
- #: ../lib/the-events-calendar.class.php:1563
1575
  msgid "Available Venues"
1576
- msgstr ""
1577
 
1578
- #: ../lib/the-events-calendar.class.php:1574
1579
  msgid "No saved venue exists."
1580
- msgstr ""
1581
 
1582
  #
1583
- #: ../lib/the-events-calendar.class.php:1608
1584
  msgid "Use New Organizer"
1585
  msgstr "Bruk ny arrangør"
1586
 
1587
  #
1588
- #: ../lib/the-events-calendar.class.php:1610
1589
  msgid "My Organizers"
1590
- msgstr "Mine sorteringer"
1591
 
1592
  #
1593
- #: ../lib/the-events-calendar.class.php:1615
1594
  msgid "Available Organizers"
1595
- msgstr "Tilgjengelige sorteringer"
1596
 
1597
  #
1598
- #: ../lib/the-events-calendar.class.php:1626
1599
  msgid "No saved organizer exists."
1600
- msgstr ""
1601
 
1602
- #: ../lib/the-events-calendar.class.php:1753
1603
  msgid "Next"
1604
  msgstr "Neste"
1605
 
1606
- #: ../lib/the-events-calendar.class.php:1754
1607
  msgid "Prev"
1608
  msgstr "Forrige"
1609
 
1610
- #: ../lib/the-events-calendar.class.php:1755
1611
  msgid "Today"
1612
  msgstr "I dag"
1613
 
1614
- #: ../lib/the-events-calendar.class.php:1756
1615
  msgid "Done"
1616
  msgstr "Ferdig"
1617
 
1618
- #: ../lib/the-events-calendar.class.php:1965
1619
  msgid "Network"
1620
  msgstr "Nettverk"
1621
 
1622
  #
1623
- #: ../lib/the-events-calendar.class.php:2902
1624
  msgid "Unnamed Venue"
1625
- msgstr ""
1626
 
1627
  #
1628
- #: ../lib/the-events-calendar.class.php:2992
1629
  msgid "Unnamed Organizer"
1630
- msgstr ""
1631
 
1632
- #: ../lib/the-events-calendar.class.php:3467
1633
  msgid "Event Options"
1634
- msgstr "Alternativer for aktivitet"
1635
 
1636
- #: ../lib/the-events-calendar.class.php:3469
1637
  msgid "Venue Information"
1638
  msgstr "Stedsinformasjon"
1639
 
1640
- #: ../lib/the-events-calendar.class.php:3474
1641
  msgid "Organizer Information"
1642
  msgstr "Arrangørinformasjon"
1643
 
1644
- #: ../lib/the-events-calendar.class.php:3669
1645
  msgid "Support"
1646
  msgstr "Brukerstøtte"
1647
 
1648
- #: ../lib/the-events-calendar.class.php:3672
1649
  msgid "View All Add-Ons"
1650
- msgstr "Vis alle tillegg"
1651
 
1652
- #: ../lib/the-events-calendar.class.php:3689
1653
  msgid "News from Modern Tribe"
1654
  msgstr "Nyheter fra Modern Tribe"
1655
 
1656
- #: ../lib/the-events-calendar.class.php:3770
1657
  msgid "Additional Functionality"
1658
  msgstr "Tilleggsfunksjonalitet"
1659
 
1660
- #: ../lib/the-events-calendar.class.php:3775
1661
  msgid ""
1662
  "Looking for additional functionality including recurring events, ticket "
1663
  "sales, publicly submitted events, new views and more?"
1664
  msgstr ""
1665
- " jakt etter ytterligere funksjonalitet, inkludert gjentakende hendelser, "
1666
- "billettsalg, offentlig innsendte arrangement, andre utseender og mer?"
 
1667
 
1668
- #: ../lib/the-events-calendar.class.php:3775
1669
  #, php-format
1670
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
1671
  msgstr "Sjekk ut <a href=\"%s\">tilgjengelige utvidelser</a>."
1672
 
1673
  #
1674
- #: ../lib/the-events-calendar.class.php:3846
1675
- #: ../lib/the-events-calendar.class.php:3937
1676
  msgid "View Calendar"
1677
- msgstr "Se kalender"
1678
 
1679
  #
1680
- #: ../lib/the-events-calendar.class.php:3854
1681
  msgid "Add Event"
1682
- msgstr "Legg til aktivitet"
1683
 
1684
  #
1685
- #: ../lib/the-events-calendar.class.php:3863
1686
  msgid "Edit Events"
1687
- msgstr "Rediger aktivitet"
1688
 
1689
- #: ../lib/the-events-calendar.class.php:3872
1690
- #: ../lib/the-events-calendar.class.php:3973
1691
  #: ../lib/tribe-settings.class.php:164
1692
  msgid "Settings"
1693
  msgstr "Innstillinger"
1694
 
1695
- #: ../lib/the-events-calendar.class.php:3908
1696
  #, php-format
1697
  msgid ""
1698
  "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
1699
  "change the events slug, visit %sEvents -> Settings%s."
1700
  msgstr ""
 
 
 
1701
 
1702
- #: ../lib/the-events-calendar.class.php:3974
1703
  msgid "Calendar"
1704
  msgstr "Kalender"
1705
 
1706
- #: ../lib/the-events-calendar.class.php:4037
1707
  msgid "List"
1708
  msgstr "Liste"
1709
 
1710
  #
1711
- #: ../lib/the-events-calendar.class.php:4048
1712
  msgid "Month"
1713
  msgstr "Måned"
1714
 
 
 
 
 
 
1715
  #
1716
- #: ../lib/the-events-calendar.class.php:4088
 
1717
  msgid "Date"
1718
  msgstr "Dato"
1719
 
1720
  #
1721
- #: ../lib/the-events-calendar.class.php:4091
1722
  msgid "Events In"
1723
  msgstr "Aktiviteter i"
1724
 
1725
  #
1726
- #: ../lib/the-events-calendar.class.php:4093
1727
  msgid "Events From"
1728
- msgstr ""
1729
 
1730
- #: ../lib/the-events-calendar.class.php:4276 ../views/list/nav.php:22
1731
  #: ../views/list/nav.php:28 ../views/list/nav.php:31
1732
  msgid "&laquo; Previous Events"
1733
  msgstr "&laquo; Tidligere aktiviteter"
1734
 
1735
- #: ../lib/the-events-calendar.class.php:4277 ../views/list/nav.php:40
1736
  #: ../views/list/nav.php:43 ../views/list/nav.php:49
1737
  msgid "Next Events &raquo;"
1738
- msgstr "Neste aktiviteter &raquo;"
1739
 
1740
  #: ../lib/tribe-admin-events-list.class.php:53
1741
  #, php-format
@@ -1770,16 +1882,16 @@ msgstr "Alle %s"
1770
 
1771
  #
1772
  #: ../lib/tribe-app-shop.class.php:62 ../lib/tribe-app-shop.class.php:63
1773
- #: ../lib/tribe-app-shop.class.php:84
1774
  msgid "Event Add-Ons"
1775
- msgstr "Utvidelser"
1776
 
1777
  # Jeg tenker dette er et egennavn. Lar den stå.
1778
  #: ../lib/tribe-debug-bar.class.php:29
1779
  msgid "Tribe"
1780
  msgstr "Tribe"
1781
 
1782
- #: ../lib/tribe-event-api.class.php:372 ../lib/tribe-view-helpers.class.php:44
1783
  #: ../public/template-tags/venue.php:240
1784
  msgid "United States"
1785
  msgstr "USA"
@@ -1791,35 +1903,35 @@ msgstr "Feil"
1791
 
1792
  #: ../lib/tribe-field.class.php:161
1793
  msgid "Invalid field type specified"
1794
- msgstr ""
1795
 
1796
  #: ../lib/tribe-field.class.php:414
1797
  msgid "No radio options specified"
1798
- msgstr ""
1799
 
1800
  #: ../lib/tribe-field.class.php:451
1801
  msgid "No checkbox options specified"
1802
- msgstr ""
1803
 
1804
  #: ../lib/tribe-field.class.php:505
1805
  msgid "No select options specified"
1806
- msgstr ""
1807
 
1808
  #
1809
  #: ../lib/tribe-settings-tab.class.php:219
1810
  msgid "There are no fields setup for this tab yet."
1811
- msgstr ""
1812
 
1813
  # Er ikke dette et egennavn? Skal man oversette det?
1814
  #
1815
  #: ../lib/tribe-settings.class.php:164 ../lib/tribe-settings.class.php:176
1816
  msgid "The Events Calendar Settings"
1817
- msgstr "Aktivitetskalender Innstillinger"
1818
 
1819
  #
1820
  #: ../lib/tribe-settings.class.php:176
1821
  msgid "Events Settings"
1822
- msgstr ""
1823
 
1824
  #: ../lib/tribe-settings.class.php:225
1825
  #, php-format
@@ -1828,7 +1940,7 @@ msgstr "%s Innstillinger"
1828
 
1829
  #: ../lib/tribe-settings.class.php:239
1830
  msgid "You've requested a non-existent tab."
1831
- msgstr ""
1832
 
1833
  #
1834
  #: ../lib/tribe-settings.class.php:247
@@ -1845,7 +1957,7 @@ msgstr "Forespørselen ble sendt usikret."
1845
 
1846
  #: ../lib/tribe-settings.class.php:311
1847
  msgid "The request wasn't sent from this tab."
1848
- msgstr ""
1849
 
1850
  #: ../lib/tribe-settings.class.php:476
1851
  msgid "Your form had the following errors:"
@@ -1853,7 +1965,7 @@ msgstr "Skjemaet hadde følgende feil:"
1853
 
1854
  #: ../lib/tribe-settings.class.php:485
1855
  msgid "None of your settings were saved. Please try again."
1856
- msgstr ""
1857
 
1858
  #: ../lib/tribe-settings.class.php:485
1859
  msgid ""
@@ -1861,7 +1973,10 @@ msgid ""
1861
  msgid_plural ""
1862
  "The above settings were not saved. Other settings were successfully saved."
1863
  msgstr[0] ""
 
1864
  msgstr[1] ""
 
 
1865
 
1866
  #
1867
  #: ../lib/tribe-settings.class.php:509
@@ -1895,22 +2010,23 @@ msgstr ""
1895
  #, php-format
1896
  msgid "No events scheduled for <strong>%s</strong>. Please try another day."
1897
  msgstr ""
1898
- "Ingen aktiviteter planlagt for <strong>%s</strong>. Forsøk en annen dag."
 
1899
 
1900
  #
1901
  #: ../lib/tribe-template-factory.class.php:245
1902
  msgid "No upcoming events "
1903
- msgstr "Ingen arrangementer"
1904
 
1905
  #
1906
  #: ../lib/tribe-template-factory.class.php:247
1907
  msgid "No matching events "
1908
- msgstr ""
1909
 
1910
  #
1911
  #: ../lib/tribe-template-factory.class.php:250
1912
  msgid "No previous events "
1913
- msgstr ""
1914
 
1915
  #: ../lib/tribe-the-events-calendar-import.class.php:64
1916
  #, fuzzy, php-format
@@ -1951,9 +2067,9 @@ msgid ""
1951
  "upgraded. Please be sure to back up your database before initiating the "
1952
  "upgrade. This process can not be undone."
1953
  msgstr ""
1954
- "Det ser ut for at du har noen eldre Events Calendar -data som må "
1955
- "oppgraderes. Vennligst tilse at du har en sikkerhetskopi av databasen før du "
1956
- "utfører oppgraderingen. Denne prosessen kan ikke angres."
1957
 
1958
  #: ../lib/tribe-the-events-calendar-import.class.php:88
1959
  msgid "Migrate Data!"
@@ -1962,15 +2078,16 @@ msgstr "Migrer data!"
1962
  #: ../lib/tribe-the-events-calendar-import.class.php:166
1963
  #, php-format
1964
  msgid "You successfully migrated (%d) entries."
1965
- msgstr "Du har lykkes i å migrere (%d) oppføringer."
1966
 
1967
  #: ../lib/tribe-the-events-calendar-import.class.php:242
1968
  msgid "Install has 1 or more legacy event!"
1969
- msgstr "Installasjonen har en eller flere aktiviteter av gammel type!"
 
1970
 
1971
  #: ../lib/tribe-validate.class.php:77 ../lib/tribe-validate.class.php:115
1972
  msgid "Invalid or incomplete field passed"
1973
- msgstr ""
1974
 
1975
  #: ../lib/tribe-validate.class.php:78 ../lib/tribe-validate.class.php:110
1976
  #: ../lib/tribe-validate.class.php:116
@@ -1979,43 +2096,44 @@ msgstr "Felt-ID:"
1979
 
1980
  #: ../lib/tribe-validate.class.php:109
1981
  msgid "Non-existant field validation function passed"
1982
- msgstr "Ikke-eksisterende felt validerings funksjon godkjent"
1983
 
1984
  #: ../lib/tribe-validate.class.php:110
1985
  msgctxt "non-existant function name passed for field validation"
1986
  msgid "with function name:"
1987
- msgstr ""
1988
 
1989
  #: ../lib/tribe-validate.class.php:135 ../lib/tribe-validate.class.php:153
1990
  #, php-format
1991
  msgid "%s must contain numbers and letters only"
1992
- msgstr ""
1993
 
1994
  #: ../lib/tribe-validate.class.php:171
1995
  #, php-format
1996
  msgid "%s must contain numbers, letters and dots only"
1997
- msgstr ""
1998
 
1999
  #: ../lib/tribe-validate.class.php:187
2000
  #, php-format
2001
  msgid "%s must be a positive number."
2002
- msgstr ""
2003
 
2004
  #: ../lib/tribe-validate.class.php:204
2005
  #, php-format
2006
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
2007
  msgstr ""
 
2008
 
2009
  #: ../lib/tribe-validate.class.php:221
2010
  #, php-format
2011
  msgid "%s must be a valid absolute URL."
2012
- msgstr ""
2013
 
2014
  #: ../lib/tribe-validate.class.php:239 ../lib/tribe-validate.class.php:258
2015
  #: ../lib/tribe-validate.class.php:279
2016
  #, php-format
2017
  msgid "%s must have a value that's part of its options."
2018
- msgstr ""
2019
 
2020
  #: ../lib/tribe-validate.class.php:295
2021
  #, php-format
@@ -2023,6 +2141,8 @@ msgid ""
2023
  "Comparison validation failed because no comparison value was provided, for "
2024
  "field %s"
2025
  msgstr ""
 
 
2026
 
2027
  #: ../lib/tribe-validate.class.php:302
2028
  #, php-format
@@ -2032,7 +2152,7 @@ msgstr "%s kan ikke være det samme som %s."
2032
  #: ../lib/tribe-validate.class.php:304
2033
  #, php-format
2034
  msgid "%s cannot be a duplicate"
2035
- msgstr "%s kan ikke være dobbelt"
2036
 
2037
  #: ../lib/tribe-validate.class.php:322
2038
  #, php-format
@@ -2042,35 +2162,36 @@ msgstr "%s må være et tall eller prosent."
2042
  #: ../lib/tribe-validate.class.php:386
2043
  #, php-format
2044
  msgid "%s must be a number between 0 and 21."
2045
- msgstr ""
2046
 
2047
  #: ../lib/tribe-validate.class.php:404
2048
  #, php-format
2049
  msgid ""
2050
  "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
2051
- msgstr ""
2052
 
2053
  #: ../lib/tribe-validate.class.php:422
2054
  #, php-format
2055
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
2056
  msgstr ""
 
2057
 
2058
  #: ../lib/tribe-validate.class.php:438
2059
  #, php-format
2060
  msgid "%s must consist of 5 numbers."
2061
- msgstr ""
2062
 
2063
  #: ../lib/tribe-validate.class.php:454
2064
  #, php-format
2065
  msgid "%s must be a phone number."
2066
- msgstr ""
2067
 
2068
  #: ../lib/tribe-validate.class.php:472
2069
  msgid ""
2070
  "Country List must be formatted as one country per line in the following "
2071
  "format: <br>US, United States <br> UK, United Kingdom."
2072
  msgstr ""
2073
- "Listen over land må være formatert som ett land per linje i følgende format: "
2074
  "<br>US, USA <br> UK, Storbritannia."
2075
 
2076
  #: ../lib/tribe-view-helpers.class.php:24
@@ -2236,7 +2357,7 @@ msgstr "Kapp Verde"
2236
 
2237
  #: ../lib/tribe-view-helpers.class.php:84
2238
  msgid "Cayman Islands"
2239
- msgstr "Cayman Islands"
2240
 
2241
  #: ../lib/tribe-view-helpers.class.php:85
2242
  msgid "Central African Republic"
@@ -2340,7 +2461,7 @@ msgstr "El Salvador"
2340
 
2341
  #: ../lib/tribe-view-helpers.class.php:110
2342
  msgid "Equatorial Guinea"
2343
- msgstr ""
2344
 
2345
  #: ../lib/tribe-view-helpers.class.php:111
2346
  msgid "Eritrea"
@@ -2384,7 +2505,7 @@ msgstr "Fransk Guiana"
2384
 
2385
  #: ../lib/tribe-view-helpers.class.php:121
2386
  msgid "French Polynesia"
2387
- msgstr ""
2388
 
2389
  #: ../lib/tribe-view-helpers.class.php:122
2390
  msgid "French Southern Territories"
@@ -2392,7 +2513,7 @@ msgstr "Franske sørlige territorier"
2392
 
2393
  #: ../lib/tribe-view-helpers.class.php:123
2394
  msgid "Gabon"
2395
- msgstr ""
2396
 
2397
  #: ../lib/tribe-view-helpers.class.php:124
2398
  msgid "Gambia"
@@ -2425,11 +2546,11 @@ msgstr "Grønland"
2425
 
2426
  #: ../lib/tribe-view-helpers.class.php:131
2427
  msgid "Grenada"
2428
- msgstr ""
2429
 
2430
  #: ../lib/tribe-view-helpers.class.php:132
2431
  msgid "Guadeloupe"
2432
- msgstr ""
2433
 
2434
  #: ../lib/tribe-view-helpers.class.php:133
2435
  msgid "Guam"
@@ -2445,11 +2566,11 @@ msgstr "Guinea"
2445
 
2446
  #: ../lib/tribe-view-helpers.class.php:136
2447
  msgid "Guinea-Bissau"
2448
- msgstr ""
2449
 
2450
  #: ../lib/tribe-view-helpers.class.php:137
2451
  msgid "Guyana"
2452
- msgstr ""
2453
 
2454
  #: ../lib/tribe-view-helpers.class.php:138
2455
  msgid "Haiti"
@@ -2457,11 +2578,11 @@ msgstr "Haiti"
2457
 
2458
  #: ../lib/tribe-view-helpers.class.php:139
2459
  msgid "Heard And Mc Donald Islands"
2460
- msgstr ""
2461
 
2462
  #: ../lib/tribe-view-helpers.class.php:140
2463
  msgid "Holy See (Vatican City State)"
2464
- msgstr ""
2465
 
2466
  #: ../lib/tribe-view-helpers.class.php:141
2467
  msgid "Honduras"
@@ -2489,7 +2610,7 @@ msgstr "Indonesia"
2489
 
2490
  #: ../lib/tribe-view-helpers.class.php:147
2491
  msgid "Iran (Islamic Republic Of)"
2492
- msgstr "Iran (Den Islamiske Republik)"
2493
 
2494
  #: ../lib/tribe-view-helpers.class.php:148
2495
  msgid "Iraq"
@@ -2529,15 +2650,15 @@ msgstr "Kenya"
2529
 
2530
  #: ../lib/tribe-view-helpers.class.php:157
2531
  msgid "Kiribati"
2532
- msgstr ""
2533
 
2534
  #: ../lib/tribe-view-helpers.class.php:158
2535
  msgid "Korea, Democratic People's Republic Of"
2536
- msgstr ""
2537
 
2538
  #: ../lib/tribe-view-helpers.class.php:159
2539
  msgid "Korea, Republic Of"
2540
- msgstr ""
2541
 
2542
  #: ../lib/tribe-view-helpers.class.php:160
2543
  msgid "Kuwait"
@@ -2549,7 +2670,7 @@ msgstr "Kirgizistan"
2549
 
2550
  #: ../lib/tribe-view-helpers.class.php:162
2551
  msgid "Lao People's Democratic Republic"
2552
- msgstr ""
2553
 
2554
  #: ../lib/tribe-view-helpers.class.php:163
2555
  msgid "Latvia"
@@ -2561,7 +2682,7 @@ msgstr "Libanon"
2561
 
2562
  #: ../lib/tribe-view-helpers.class.php:165
2563
  msgid "Lesotho"
2564
- msgstr ""
2565
 
2566
  #: ../lib/tribe-view-helpers.class.php:166
2567
  msgid "Liberia"
@@ -2585,7 +2706,7 @@ msgstr "Luxembourg"
2585
 
2586
  #: ../lib/tribe-view-helpers.class.php:171
2587
  msgid "Macau"
2588
- msgstr ""
2589
 
2590
  #: ../lib/tribe-view-helpers.class.php:172
2591
  msgid "Macedonia"
@@ -2597,7 +2718,7 @@ msgstr "Madagaskar"
2597
 
2598
  #: ../lib/tribe-view-helpers.class.php:174
2599
  msgid "Malawi"
2600
- msgstr ""
2601
 
2602
  #: ../lib/tribe-view-helpers.class.php:175
2603
  msgid "Malaysia"
@@ -2621,19 +2742,19 @@ msgstr "Marshall-øyene"
2621
 
2622
  #: ../lib/tribe-view-helpers.class.php:180
2623
  msgid "Martinique"
2624
- msgstr ""
2625
 
2626
  #: ../lib/tribe-view-helpers.class.php:181
2627
  msgid "Mauritania"
2628
- msgstr ""
2629
 
2630
  #: ../lib/tribe-view-helpers.class.php:182
2631
  msgid "Mauritius"
2632
- msgstr ""
2633
 
2634
  #: ../lib/tribe-view-helpers.class.php:183
2635
  msgid "Mayotte"
2636
- msgstr ""
2637
 
2638
  #: ../lib/tribe-view-helpers.class.php:184
2639
  msgid "Mexico"
@@ -2641,7 +2762,7 @@ msgstr "Mexico"
2641
 
2642
  #: ../lib/tribe-view-helpers.class.php:185
2643
  msgid "Micronesia, Federated States Of"
2644
- msgstr ""
2645
 
2646
  #: ../lib/tribe-view-helpers.class.php:186
2647
  msgid "Moldova, Republic Of"
@@ -2661,7 +2782,7 @@ msgstr "Montenegro"
2661
 
2662
  #: ../lib/tribe-view-helpers.class.php:190
2663
  msgid "Montserrat"
2664
- msgstr ""
2665
 
2666
  #: ../lib/tribe-view-helpers.class.php:191
2667
  msgid "Morocco"
@@ -2681,7 +2802,7 @@ msgstr "Namibia"
2681
 
2682
  #: ../lib/tribe-view-helpers.class.php:195
2683
  msgid "Nauru"
2684
- msgstr ""
2685
 
2686
  #: ../lib/tribe-view-helpers.class.php:196
2687
  msgid "Nepal"
@@ -2717,7 +2838,7 @@ msgstr "Nigeria"
2717
 
2718
  #: ../lib/tribe-view-helpers.class.php:204
2719
  msgid "Niue"
2720
- msgstr ""
2721
 
2722
  #: ../lib/tribe-view-helpers.class.php:205
2723
  msgid "Norfolk Island"
@@ -2725,7 +2846,7 @@ msgstr "Norfolk Island"
2725
 
2726
  #: ../lib/tribe-view-helpers.class.php:206
2727
  msgid "Northern Mariana Islands"
2728
- msgstr ""
2729
 
2730
  #: ../lib/tribe-view-helpers.class.php:207
2731
  msgid "Norway"
@@ -2741,7 +2862,7 @@ msgstr "Pakistan"
2741
 
2742
  #: ../lib/tribe-view-helpers.class.php:210
2743
  msgid "Palau"
2744
- msgstr ""
2745
 
2746
  #: ../lib/tribe-view-helpers.class.php:211
2747
  msgid "Panama"
@@ -2749,7 +2870,7 @@ msgstr "Panama"
2749
 
2750
  #: ../lib/tribe-view-helpers.class.php:212
2751
  msgid "Papua New Guinea"
2752
- msgstr "Papua New Guinea"
2753
 
2754
  #: ../lib/tribe-view-helpers.class.php:213
2755
  msgid "Paraguay"
@@ -2765,7 +2886,7 @@ msgstr "Filipinene"
2765
 
2766
  #: ../lib/tribe-view-helpers.class.php:216
2767
  msgid "Pitcairn"
2768
- msgstr ""
2769
 
2770
  #: ../lib/tribe-view-helpers.class.php:217
2771
  msgid "Poland"
@@ -2785,7 +2906,7 @@ msgstr "Qatar"
2785
 
2786
  #: ../lib/tribe-view-helpers.class.php:221
2787
  msgid "Reunion"
2788
- msgstr "Reunion"
2789
 
2790
  #: ../lib/tribe-view-helpers.class.php:222
2791
  msgid "Romania"
@@ -2801,7 +2922,7 @@ msgstr "Rwanda"
2801
 
2802
  #: ../lib/tribe-view-helpers.class.php:225
2803
  msgid "Saint Kitts And Nevis"
2804
- msgstr ""
2805
 
2806
  #: ../lib/tribe-view-helpers.class.php:226
2807
  msgid "Saint Lucia"
@@ -2821,7 +2942,7 @@ msgstr "San Marino"
2821
 
2822
  #: ../lib/tribe-view-helpers.class.php:230
2823
  msgid "Sao Tome And Principe"
2824
- msgstr ""
2825
 
2826
  #: ../lib/tribe-view-helpers.class.php:231
2827
  msgid "Saudi Arabia"
@@ -2869,7 +2990,7 @@ msgstr "Sør-Afrika"
2869
 
2870
  #: ../lib/tribe-view-helpers.class.php:242
2871
  msgid "South Georgia, South Sandwich Islands"
2872
- msgstr ""
2873
 
2874
  #: ../lib/tribe-view-helpers.class.php:243
2875
  msgid "Spain"
@@ -2885,15 +3006,16 @@ msgstr "St. Helena"
2885
 
2886
  #: ../lib/tribe-view-helpers.class.php:246
2887
  msgid "St. Pierre And Miquelon"
2888
- msgstr ""
2889
 
2890
  #: ../lib/tribe-view-helpers.class.php:247
2891
  msgid "Sudan"
2892
  msgstr "Sudan"
2893
 
2894
  #: ../lib/tribe-view-helpers.class.php:248
 
2895
  msgid "Suriname"
2896
- msgstr ""
2897
 
2898
  #: ../lib/tribe-view-helpers.class.php:249
2899
  msgid "Svalbard And Jan Mayen Islands"
@@ -3238,21 +3360,21 @@ msgstr "Wyoming"
3238
  #
3239
  #: ../lib/widget-list.class.php:21
3240
  msgid "A widget that displays upcoming events."
3241
- msgstr ""
3242
 
3243
  #: ../lib/widget-list.class.php:27
3244
  msgid "Events List"
3245
- msgstr ""
3246
 
3247
- #: ../lib/widget-list.class.php:114
3248
  msgid "View All Events"
3249
- msgstr "Vis alle aktiviteter"
3250
 
3251
- #: ../lib/widget-list.class.php:117
3252
  msgid "There are no upcoming events at this time."
3253
  msgstr "Det finnes for tiden ingen kommende aktiviteter"
3254
 
3255
- #: ../lib/template-classes/month.php:75
3256
  #, php-format
3257
  msgid ""
3258
  "There were no results found for <strong>\"%s\"</strong> this month. Try "
@@ -3263,7 +3385,7 @@ msgstr ""
3263
 
3264
  #: ../lib/template-classes/single-event.php:99
3265
  msgid "This event has passed."
3266
- msgstr "Tidspunktet for aktiviteten er passert."
3267
 
3268
  #: ../lib/tickets/tribe-tickets-attendees.php:67
3269
  msgid "Order #"
@@ -3283,12 +3405,12 @@ msgstr "Kjøpers e-post"
3283
 
3284
  #: ../lib/tickets/tribe-tickets-attendees.php:71
3285
  msgid "Ticket type"
3286
- msgstr ""
3287
 
3288
  #: ../lib/tickets/tribe-tickets-attendees.php:72
3289
  #: ../views/tickets/email.php:316
3290
  msgid "Ticket #"
3291
- msgstr ""
3292
 
3293
  #: ../lib/tickets/tribe-tickets-attendees.php:73
3294
  #: ../views/tickets/email.php:328
@@ -3299,12 +3421,12 @@ msgstr "Sikkerhets kode"
3299
  #: ../lib/tickets/tribe-tickets-attendees.php:144
3300
  #: ../lib/tickets/tribe-tickets-attendees.php:200
3301
  msgid "Check in"
3302
- msgstr ""
3303
 
3304
  #: ../lib/tickets/tribe-tickets-attendees.php:145
3305
  #: ../lib/tickets/tribe-tickets-attendees.php:200
3306
  msgid "Undo Check in"
3307
- msgstr ""
3308
 
3309
  #: ../lib/tickets/tribe-tickets-attendees.php:179
3310
  msgid "Print"
@@ -3318,31 +3440,31 @@ msgstr "E-post"
3318
  #
3319
  #: ../lib/tickets/tribe-tickets-attendees.php:181
3320
  msgid "Export"
3321
- msgstr "Eksportere"
3322
 
3323
  #: ../lib/tickets/tribe-tickets-attendees.php:187
3324
  msgid "Filter by ticket #, order # or security code"
3325
- msgstr ""
3326
 
3327
  #: ../lib/tickets/tribe-tickets-metabox.php:24
3328
  msgid "Tickets"
3329
- msgstr ""
3330
 
3331
  #: ../lib/tickets/tribe-tickets-metabox.php:62
3332
  msgid "Ticket header image"
3333
- msgstr ""
3334
 
3335
  #: ../lib/tickets/tribe-tickets-metabox.php:62
3336
  msgid "Set as ticket header"
3337
- msgstr ""
3338
 
3339
  #: ../lib/tickets/tribe-tickets-pro.php:107
3340
  msgid "You need to select a user or type a valid email address"
3341
- msgstr "Du må velge en bruker eller skriv en gyldig e-postadresse"
3342
 
3343
  #: ../lib/tickets/tribe-tickets-pro.php:108
3344
  msgid "Sending..."
3345
- msgstr "Sender..."
3346
 
3347
  #: ../lib/tickets/tribe-tickets-pro.php:136
3348
  msgid "Columns"
@@ -3354,6 +3476,9 @@ msgid ""
3354
  "selection works in the table below, in the email, for print and for the CSV "
3355
  "export."
3356
  msgstr ""
 
 
 
3357
 
3358
  #: ../lib/tickets/tribe-tickets-pro.php:258
3359
  msgid "attendees"
@@ -3362,15 +3487,15 @@ msgstr "deltakere"
3362
  #: ../lib/tickets/tribe-tickets-pro.php:308
3363
  #, php-format
3364
  msgid "Attendee List for: %s"
3365
- msgstr ""
3366
 
3367
- #: ../lib/tickets/tribe-tickets.php:292
3368
  msgid "Your ticket has been saved."
3369
- msgstr ""
3370
 
3371
- #: ../lib/tickets/tribe-tickets.php:369
3372
  msgid "Your ticket has been deleted."
3373
- msgstr ""
3374
 
3375
  #: ../public/advanced-functions/meta.php:35
3376
  msgid "Start:"
@@ -3400,7 +3525,7 @@ msgstr "Detaljer"
3400
  #
3401
  #: ../public/advanced-functions/meta.php:295
3402
  msgid "Event Tags:"
3403
- msgstr ""
3404
 
3405
  #: ../public/advanced-functions/meta.php:321
3406
  msgid "Origin:"
@@ -3415,29 +3540,29 @@ msgstr "Aktivitet:"
3415
  msgid "Category"
3416
  msgstr "Kategori"
3417
 
3418
- #: ../public/template-tags/general.php:306
3419
  msgid "Tags:"
3420
  msgstr "Merknad:"
3421
 
3422
  #
3423
- #: ../public/template-tags/general.php:392
3424
  msgid "Loading Events"
3425
- msgstr "Laster aktiviteter"
3426
 
3427
- #: ../public/template-tags/general.php:531
3428
  msgid "Free"
3429
  msgstr "Gratis"
3430
 
3431
  #
3432
- #: ../public/template-tags/general.php:703
3433
  msgid "Recurring Event"
3434
- msgstr "Periodisk gjentagende aktivitet"
3435
 
3436
- #: ../public/template-tags/general.php:706
3437
  msgid "(See all)"
3438
  msgstr "(Vis alle)"
3439
 
3440
- #: ../public/template-tags/general.php:982
3441
  #, php-format
3442
  msgid "Calendar powered by %sThe Events Calendar%s"
3443
  msgstr "Kalender drives av %sThe Events Calendar%s"
@@ -3450,7 +3575,7 @@ msgstr "Aktiviteter for %1$s"
3450
  #: ../public/template-tags/loop.php:158
3451
  #, php-format
3452
  msgid "Events for %1$s through %2$s"
3453
- msgstr ""
3454
 
3455
  #
3456
  #: ../public/template-tags/loop.php:171
@@ -3460,7 +3585,7 @@ msgstr "Aktiviteter for"
3460
  #: ../public/template-tags/options.php:20
3461
  #, php-format
3462
  msgid "Your current Events URL is %s"
3463
- msgstr ""
3464
 
3465
  #: ../public/template-tags/options.php:31
3466
  #, php-format
@@ -3468,34 +3593,37 @@ msgid ""
3468
  "You <strong>cannot</strong> use the same slug as above. The above should "
3469
  "ideally be plural, and this singular.<br />Your single Event URL is like: %s"
3470
  msgstr ""
 
 
 
3471
 
3472
  #
3473
  #: ../views/single-event.php:23
3474
  msgid "&laquo; All Events"
3475
- msgstr ""
3476
 
3477
  #
3478
  #: ../views/single-event.php:42 ../views/single-event.php:73
3479
  msgid "Event Navigation"
3480
- msgstr ""
3481
 
3482
  #
3483
  #: ../views/list/nav.php:16
3484
  msgid "Events List Navigation"
3485
- msgstr ""
3486
 
3487
  #: ../views/list/single-event.php:76
3488
  msgid "Find out more"
3489
  msgstr "Finn ut mer"
3490
 
3491
  #
3492
- #: ../views/modules/bar.php:31 ../views/modules/bar.php:60
3493
  msgid "Find Events"
3494
  msgstr "Finn Aktivitet"
3495
 
3496
  #: ../views/modules/bar.php:38
3497
  msgid "Event Views Navigation"
3498
- msgstr ""
3499
 
3500
  #
3501
  #: ../views/modules/bar.php:39
@@ -3505,20 +3633,20 @@ msgstr "Vis som"
3505
  #
3506
  #: ../views/month/nav.php:18
3507
  msgid "Calendar Month Navigation"
3508
- msgstr "Kalendermåned Navigation"
3509
 
3510
  #
3511
  #: ../views/tickets/attendees-email.php:25
3512
  msgid "Attendee List"
3513
- msgstr "Deltaker liste"
3514
 
3515
  #: ../views/tickets/email.php:39
3516
  msgid "Your tickets"
3517
- msgstr ""
3518
 
3519
  #: ../views/tickets/email.php:320
3520
  msgid "Ticket Type"
3521
- msgstr ""
3522
 
3523
  #: ../views/tickets/email.php:324
3524
  msgid "Purchaser"
@@ -3573,3 +3701,4 @@ msgstr "Kjøper"
3573
  #~ "har problemer, så legg inn en tråd på %s på WordPress.org. Vi sjekker "
3574
  #~ "forumet en gang i uken for å se etter legitime feilrapporter og gjøre det "
3575
  #~ "vi kan for å hjelpe brukerne.</p>"
 
5
  msgstr ""
6
  "Project-Id-Version: Events Calendar Pro\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-07-29 07:10+0100\n"
9
+ "PO-Revision-Date: 2013-07-29 12:18+0100\n"
10
+ "Last-Translator: Andreas Lorentsen <andreas@sounds.no>\n"
11
+ "Language-Team: Modern Tribe, Inc. <andreas@sounds.no>\n"
12
  "Language: nb_NO\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
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-Textdomain-Support: yes\n"
22
+ "X-Generator: Poedit 1.5.7\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
  #
26
  #: ../admin-views/app-shop.php:4
27
  msgid "Tribe Event Add-Ons"
28
+ msgstr "Tribe Aktivitetsutvidelser"
29
 
30
  #: ../admin-views/app-shop.php:50
31
  msgid "Version"
38
 
39
  #: ../admin-views/event-sidebar-options.php:11
40
  msgid "Hide From Event Listings"
41
+ msgstr "Skjul fra aktivitetsoppføringer"
42
 
43
  #: ../admin-views/event-sidebar-options.php:12
44
  msgid "Sticky in Calendar View"
55
 
56
  #: ../admin-views/events-audit-trail.php:51
57
  msgid "Audit Trail:"
58
+ msgstr "Revisjonshistorikk:"
59
 
60
  #: ../admin-views/events-meta-box.php:26
61
  msgid "Event Time &amp; Date"
62
+ msgstr "Tidspunkt for aktiviteten"
63
 
64
  #: ../admin-views/events-meta-box.php:32
65
  msgid ""
75
  #
76
  #: ../admin-views/events-meta-box.php:35
77
  msgid "All Day Event:"
78
+ msgstr "Heldagsaktivitet:"
79
 
80
  #
81
  #: ../admin-views/events-meta-box.php:39
82
  msgid "Start Date &amp; Time:"
83
+ msgstr "Startdato og tid:"
84
 
85
  #: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
86
  msgid "YYYY-MM-DD"
110
 
111
  #: ../admin-views/events-meta-box.php:115
112
  msgid "Event Cost"
113
+ msgstr "Pris for Aktiviteten"
114
 
115
  #: ../admin-views/events-meta-box.php:118
116
  msgid "Currency Symbol:"
117
+ msgstr "Valutasymbol:"
118
 
119
  #: ../admin-views/events-meta-box.php:122
120
  #: ../public/advanced-functions/meta.php:270
124
  #: ../admin-views/events-meta-box.php:127
125
  msgid "Enter a 0 for events that are free or leave blank to hide the field."
126
  msgstr ""
127
+ "Tast inn 0 for arrangementer som er gratis eller la stå tomt for å skjule "
128
  "feltet."
129
 
130
  #: ../admin-views/organizer-meta-box.php:12
168
 
169
  #: ../admin-views/recurrence-dialog.php:15
170
  msgid "All other future events in the series will remain the same."
171
+ msgstr "Alle andre framtidige aktiviteter i serien vil forbli uendret."
172
 
173
  #
174
  #: ../admin-views/recurrence-dialog.php:16
175
  #: ../admin-views/recurrence-dialog.php:24
176
  msgid "All Events:"
177
+ msgstr "Alle Aktiviteter:"
178
 
179
  #: ../admin-views/recurrence-dialog.php:16
180
  msgid ""
181
  "All future events in the series will be changed. Any changes made to other "
182
  "events will be kept."
183
  msgstr ""
184
+ "Alle framtidige aktiviteter i serien vil endres. Eventuelle endringer til "
185
+ "andre aktiviteter vil beholdes."
186
 
187
  #: ../admin-views/recurrence-dialog.php:21
188
  msgid ""
189
  "Would you like to delete only this instance of the event, or all future "
190
  "events in this series?"
191
  msgstr ""
192
+ "Vil du slette kun denne instansen av aktiviteten, eller alle framtidige "
193
+ "aktiviteter i denne serien?"
194
 
195
  #: ../admin-views/recurrence-dialog.php:23
196
  msgid "All other future events in the series will not be deleted."
197
+ msgstr "Alle andre framtidige aktiviteter i serien vil ikke bli slettet"
198
 
199
  #: ../admin-views/recurrence-dialog.php:24
200
  msgid "All future events in the series will be deleted."
201
+ msgstr "Alle fremtidige aktiviteter i serien vil bli slettet."
202
 
203
  #: ../admin-views/tribe-options-display.php:4
204
  msgid "Default Events Template"
205
+ msgstr "Standard Aktivitetsmal"
206
 
207
  #: ../admin-views/tribe-options-display.php:5
208
  msgid "Default Page Template"
209
+ msgstr "Standard Sidemal"
210
 
211
  #
212
  #: ../admin-views/tribe-options-display.php:29
213
  msgid "Display Settings"
214
+ msgstr "Visningsnnstillinger"
215
 
216
  #: ../admin-views/tribe-options-display.php:34
217
  #, fuzzy, php-format
240
  #
241
  #: ../admin-views/tribe-options-display.php:53
242
  msgid "Default stylesheet used for events templates"
243
+ msgstr "Standard stilsett som benyttes aktivitetsmalene"
244
 
245
  #: ../admin-views/tribe-options-display.php:56
246
  msgid "Skeleton Styles"
247
+ msgstr "Skjelett-Stilsett"
248
 
249
  #: ../admin-views/tribe-options-display.php:58
250
  msgid ""
251
  "Only includes enough css to achieve complex layouts like calendar and week "
252
  "view."
253
  msgstr ""
254
+ "Inkluderer kun nok css til å oppnå komplekse sideoppsett som kalender- og "
255
+ "ukevisning."
256
 
257
  #: ../admin-views/tribe-options-display.php:60
258
  msgid "Full Styles"
259
+ msgstr "Komplett Stilsett"
260
 
261
  #: ../admin-views/tribe-options-display.php:62
262
  msgid "More detailed styling, tries to grab styles from your theme."
263
  msgstr ""
264
+ "Mer detaljert stilsetting, forsøker å dra ut stiler fra det aktive temaet."
265
 
266
  # Er ikke dette et egennavn? Skal man oversette det?
267
  #
268
  #: ../admin-views/tribe-options-display.php:64
269
  msgid "Tribe Events Styles"
270
+ msgstr "Tribe Aktivitets-Stilsett"
271
 
272
  #: ../admin-views/tribe-options-display.php:66
273
  msgid "A fully designed and styled theme for your events pages."
274
+ msgstr "Et gjennomdesignet og stilsatt tema for dine aktivitetssider."
275
 
276
  #
277
  #: ../admin-views/tribe-options-display.php:73
278
  msgid "Events template"
279
+ msgstr "Aktivitetsmal"
280
 
281
  #: ../admin-views/tribe-options-display.php:74
282
  msgid ""
283
  "Choose a page template to control the appearance of your calendar and event "
284
  "content."
285
  msgstr ""
286
+ "Velg en sidemal for å styre utseendet på kalenderen og aktivitetenes innhold"
287
 
288
  #: ../admin-views/tribe-options-display.php:82
289
  msgid "Enable event views"
290
+ msgstr "Aktiver Aktivitetsvisninger"
291
 
292
  #: ../admin-views/tribe-options-display.php:83
293
  msgid "You must select at least one view."
298
  msgstr "Standard visning"
299
 
300
  #: ../admin-views/tribe-options-display.php:98
 
301
  msgid "Disable the Event Search Bar"
302
+ msgstr "Deaktiver søkefeltet for aktiviteten"
303
 
304
  #: ../admin-views/tribe-options-display.php:99
 
305
  msgid "Check this to use the classic header."
306
+ msgstr "Aktiver dette for å bruke den klassiske sidetoppen."
307
 
 
308
  #: ../admin-views/tribe-options-display.php:105
309
+ msgid "Month view events per day"
310
+ msgstr "Månedsvisning aktiviteter per dag"
311
+
312
+ #: ../admin-views/tribe-options-display.php:106
313
+ msgid "Allow more than the default 3 events per day in month view."
314
+ msgstr "Tillater mer enn standard 3 aktiviteter per dag i månedsvisning."
315
+
316
+ #
317
+ #: ../admin-views/tribe-options-display.php:113
318
  msgid "Advanced Template Settings"
319
+ msgstr "Avanserte Malinnstillinger"
320
 
321
  #
322
+ #: ../admin-views/tribe-options-display.php:117
323
  msgid "Add HTML before event content"
324
+ msgstr "Legg til HTML før Aktivitetens innhold"
325
 
326
+ #: ../admin-views/tribe-options-display.php:118
327
  msgid ""
328
  "If you are familiar with HTML, you can add additional code before the event "
329
  "template. Some themes may require this to help with styling or layout."
330
  msgstr ""
331
+ "Hvis du er HTML-kyndig, kan du legge til ekstra kode før aktivitetsmalen. "
332
+ "Dette kan være nødvendig med enkelte Temaer, for å hjelpe med styling eller "
333
+ "sideoppsett."
334
 
335
  #
336
+ #: ../admin-views/tribe-options-display.php:123
337
  msgid "Add HTML after event content"
338
+ msgstr "Legg til HTML etter aktivitetens innhold"
339
 
340
+ #: ../admin-views/tribe-options-display.php:124
341
  msgid ""
342
  "If you are familiar with HTML, you can add additional code after the event "
343
  "template. Some themes may require this to help with styling or layout."
344
  msgstr ""
345
+ "Hvis du er HTML-kyndig, kan du legge til ekstra kode etter Aktivitetsmalen. "
346
+ "Dette kan være nødvendig med enkelte Temaer, for å hjelpe med styling eller "
347
+ "sideoppsett."
348
 
349
  #: ../admin-views/tribe-options-general.php:14
350
  msgid "Finding & extending your calendar."
351
+ msgstr "Å Finne og utvikle din kalender."
352
 
353
  #: ../admin-views/tribe-options-general.php:19
354
  msgid "Finding your calendar."
355
+ msgstr "Finner din kalender."
356
 
357
  # Er ikke dette et egennavn? Skal man oversette det?
358
  #
359
  #: ../admin-views/tribe-options-general.php:24
360
  msgid "Where's my calendar?"
361
+ msgstr "Hvor er kalenderen min?"
362
 
363
  #: ../admin-views/tribe-options-general.php:24
364
  msgid "Right here"
379
 
380
  #: ../admin-views/tribe-options-general.php:33
381
  msgid "We hope our plugin is helping you out."
382
+ msgstr "Vi håper at vår utvidelse er til nytte for deg."
383
 
384
  #: ../admin-views/tribe-options-general.php:37
385
  msgid ""
388
  "is recognition. Add a small text-only link at the bottom of your calendar "
389
  "pointing to The Events Calendar project."
390
  msgstr ""
391
+ "Tenker du \"Wow, denne utvidelsen er utrolig! Jeg burde vise min "
392
+ "takknemlighet til Modern Tribe for alt det harde arbeidet de har gjort.\" "
393
+ "Den største takken vi kunne spurt om er gjenkjennelse. Legg til en liten "
394
+ "lenke nederst i kalenderen (kun tekst) som fører til The Events Calendar-"
395
+ "prosjektet."
396
 
397
  #: ../admin-views/tribe-options-general.php:37
398
  #: ../admin-views/tribe-options-general.php:42
406
  "is recognition. Add a small text only link at the bottom of your calendar "
407
  "pointing to The Events Calendar project."
408
  msgstr ""
409
+ "Tenker du \"Wow, denne utvidelsen er utrolig! Jeg burde vise min "
410
+ "takknemlighet til Modern Tribe for alt det harde arbeidet de har gjort.\" "
411
+ "Den største takken vi kunne spurt om er gjenkjennelse. Legg til en liten "
412
+ "lenke nederst i kalenderen (kun tekst) som fører til The Events Calendar-"
413
+ "prosjektet."
414
 
415
  # Er ikke dette et egennavn? Skal man oversette det?
416
  #
417
  #: ../admin-views/tribe-options-general.php:47
418
  msgid "Show The Events Calendar link"
419
+ msgstr "Vis kobling til The Events Calendar"
420
 
421
  #
422
  #: ../admin-views/tribe-options-general.php:61
433
 
434
  #: ../admin-views/tribe-options-general.php:73
435
  msgid "Enable ajax to live refresh content."
436
+ msgstr "Aktiver ajax å oppdatere innhold i sanntid."
437
 
438
  #
439
  #: ../admin-views/tribe-options-general.php:79
442
 
443
  #: ../admin-views/tribe-options-general.php:80
444
  msgid "Enable comments on event pages."
445
+ msgstr "Aktiver kommentarer på aktivitetsider."
446
 
447
  #: ../admin-views/tribe-options-general.php:86
448
  msgid "Include events in main blog loop"
449
+ msgstr "Inkluder arrangementer i loopen ti Hovedbloggen"
450
 
451
  #: ../admin-views/tribe-options-general.php:87
452
  msgid ""
453
  "Show events with the site's other posts. When this box is checked, events "
454
  "will also continue to appear on the default events page."
455
  msgstr ""
456
+ "Vis hendelser fra nettstedets andre innlegg. Når denne innstillingen er "
457
+ "aktivert, vil aktiviteter i tillegg fortsette å vises på standardsiden for "
458
+ "Aktiviteter."
459
 
460
  #: ../admin-views/tribe-options-general.php:93
461
  #: ../admin-views/tribe-options-general.php:99
462
  msgid "Events URL slug"
463
+ msgstr "Kortlenke for aktivitets-URL"
464
 
465
  #: ../admin-views/tribe-options-general.php:94
466
  #, php-format
470
  "%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php"
471
  "\">enable pretty permalinks</a>."
472
  msgstr ""
473
+ "Du kan ikke redigere kortlenken til aktivitetssiden ettersom du ikke har "
474
+ "aktivert visuelt fine permalenker . For øyeblikket er URL´en til din "
475
+ "aktivitetsside <a href=\"%s\">%s</a>. For å redigere kortlenken her, <a href="
476
+ "\"%soptions-permalink.php\">aktivér en av de to nederste alternativene for "
477
+ "permalenker</a>."
478
 
479
  #
480
  #: ../admin-views/tribe-options-general.php:106
481
  #: ../public/template-tags/options.php:20
482
  msgid "The slug used for building the events URL."
483
+ msgstr "Stikkord benyttet for å bygge opp URLen til aktiviteten."
484
 
485
  #: ../admin-views/tribe-options-general.php:106
486
  #, php-format
491
  #: ../admin-views/tribe-options-general.php:111
492
  #: ../public/template-tags/options.php:43
493
  msgid "Here is the iCal feed URL for your events:"
494
+ msgstr "Dette er iCal matings-URL´en for dine aktiviteter:"
495
 
496
  #
497
  #: ../admin-views/tribe-options-general.php:116
498
  msgid "Single event URL slug"
499
+ msgstr "Enkel Aktivitet - URL kortlenke"
500
 
501
  #: ../admin-views/tribe-options-general.php:123
502
  #, php-format
504
  "The above should ideally be plural, and this singular.<br />Your single "
505
  "event URL is: %s"
506
  msgstr ""
507
+ "Det overstående bør idéelt sett være formulert i flertallsform, mens denne "
508
+ "bør være skrevet i entallsform.<br />Din Aktivitets-URL for enkeltaktivitet "
509
+ "er: %s"
510
 
511
  #: ../admin-views/tribe-options-general.php:128
512
  msgid "End of day cutoff"
513
+ msgstr "Dagen avsluttes "
514
 
515
  #: ../admin-views/tribe-options-general.php:136
516
  msgid ""
517
  "Have events that run past midnight? Control when your day official ends to "
518
  "avoid awkwardly adding your event to the next day."
519
  msgstr ""
520
+ "Har du aktiviteter som varer over midnatt? Du kan velge når dagen offisiellt "
521
+ "slutter for å unngå å måtte benytte neste dag i kalenderen i tillegg."
522
 
523
  #: ../admin-views/tribe-options-general.php:141
524
  msgid "Default currency symbol"
525
+ msgstr "Standard valutasymbol"
526
 
527
  #: ../admin-views/tribe-options-general.php:142
528
  msgid ""
529
  "Set the default currency symbol for event costs. Note that this only impacts "
530
  "future events, and changes made will not apply retroactively."
531
  msgstr ""
532
+ "Angi standard valuta symbol for kostnader relatert til aktiviteten. Merk at "
533
+ "dette bare påvirker fremtidige hendelser, og at endringer gjort ikke vil "
534
+ "gjelde med tilbakevirkende kraft."
535
 
536
  #
537
  #: ../admin-views/tribe-options-general.php:149
538
  msgid "Map Settings"
539
+ msgstr "Kartinnstillinger"
540
 
541
  #: ../admin-views/tribe-options-general.php:153
542
  msgid "Enable Google Maps"
544
 
545
  #: ../admin-views/tribe-options-general.php:154
546
  msgid "Check to enable maps for events and venues."
547
+ msgstr "Sjekk for å aktivere kart for Arrangementer og Steder."
548
 
549
  #: ../admin-views/tribe-options-general.php:161
550
  #, fuzzy
553
 
554
  #: ../admin-views/tribe-options-general.php:162
555
  msgid "0 = zoomed out; 21 = zoomed in."
556
+ msgstr "0 = zoomet ut; 21 = zoomet inn."
557
 
558
  #
559
  #: ../admin-views/tribe-options-general.php:170
562
 
563
  #: ../admin-views/tribe-options-general.php:174
564
  msgid "Duplicate Venues &amp; Organizers"
565
+ msgstr "Duplikatsteder og Arrangører"
566
 
567
  #: ../admin-views/tribe-options-general.php:174
568
  #: ../lib/tribe-amalgamator.php:252
575
  "Calendar from a pre-3.0 version. Click this button to automatically merge "
576
  "identical venues and organizers."
577
  msgstr ""
578
+ "Du kan finne duplikater av steder og arrangører når du oppdaterer "
579
+ "aktivitetskalenderen fra en pre-3.0-versjon. Klikk på denne knappen for å "
580
  "automatisk slå sammen identiske steder og arrangører."
581
 
582
  #
593
  "\" tab in the debug output."
594
  msgstr ""
595
  "Aktiver dette alternativet for å logge feilsøkingsmodus informasjon. Som "
596
+ "standard lagres denne til din servers PHP-feillogg. Hvis du ønsker å se "
597
+ "loggen med meldinger i nettleseren din, anbefaler vi at du installerer %s og "
598
+ "ser etter \"Tribe\"-fanen i feilsøkingsdataene."
599
 
600
  #: ../admin-views/tribe-options-general.php:185
601
  msgid "Debug Bar Plugin"
602
+ msgstr "Utvidelse for Feilsøkingslinje "
603
 
604
  #: ../admin-views/tribe-options-help.php:18
605
  msgctxt "not available"
622
 
623
  #: ../admin-views/tribe-options-help.php:46
624
  msgid "Eventbrite Tickets"
625
+ msgstr "Eventbrite Billetter"
626
 
627
  #
628
  #: ../admin-views/tribe-options-help.php:50
629
  msgid "Community Events"
630
+ msgstr "Samfunnsaktiviteter"
631
 
632
  #
633
  #: ../admin-views/tribe-options-help.php:54
634
  msgid "Facebook Events"
635
+ msgstr "Facebook-aktiviteter"
636
 
637
  #: ../admin-views/tribe-options-help.php:58
638
  msgid "WooTickets"
639
+ msgstr "WooTickets"
640
 
641
  #: ../admin-views/tribe-options-help.php:63
642
  msgid "Faceted Filters"
643
+ msgstr "Avanserte filter"
644
 
645
  #: ../admin-views/tribe-options-help.php:71
646
  msgid "Documentation"
651
  msgstr "FAQ - Spørsmål og svar"
652
 
653
  #: ../admin-views/tribe-options-help.php:79
654
+ #: ../lib/the-events-calendar.class.php:744
655
+ #: ../lib/the-events-calendar.class.php:3908
656
+ #: ../lib/the-events-calendar.class.php:4001
657
  msgid "Help"
658
  msgstr "Hjelp"
659
 
660
  #: ../admin-views/tribe-options-help.php:83
661
  msgid "Tutorials"
662
+ msgstr "Brukerveiledninger"
663
 
664
  #: ../admin-views/tribe-options-help.php:87
665
  msgid "Release Notes"
666
+ msgstr "Versjonsinformasjon"
667
 
668
  #: ../admin-views/tribe-options-help.php:91
669
  msgid "Forums"
675
  "and are already well on your way to creating a first event. Here are some "
676
  "basics we've found helpful for users jumping into it for the first time:"
677
  msgstr ""
678
+ "Om dette er første gang du bruker The Events Calendar, har du mye fint i "
679
+ "vente og er allerede godt på vei til å opprette din første aktivitet. Her er "
680
+ "noen grunnleggende saker som vi har merket oss er nyttig for brukere som "
681
+ "hopper i det for første gang:"
682
 
683
  #: ../admin-views/tribe-options-help.php:102
684
  #, php-format
688
  "accompanying screenshots, the primer aims to take you from zero to hero in "
689
  "no time."
690
  msgstr ""
691
+ "%sVår nye Brukerveiledning%s ble designet for folk i nøyaktig din posisjon. "
692
+ "Med både steg-for-steg videoer og skrevne gjennomganger med medfølgende "
693
+ "skjermbilder, sikter vi med veiledningen på å transformere deg fra "
694
+ "grønnskolling til superhelt på minimal tid."
695
 
696
  #: ../admin-views/tribe-options-help.php:104
697
  #, php-format
701
  "helpful as it aims to address any basic install questions not addressed by "
702
  "the new user primer."
703
  msgstr ""
704
+ "%sInstallasjon/Oppsett-FAQs%s fra vår supportside kan være til hjelp med å "
705
+ "gi et overblikk over hva utvidelsen kan og ikke kan gjøre. Denne delen av FAQ"
706
+ "´en kan være nyttig ettersom den sikter på å gjennomgå alle grunnleggende "
707
+ "installeringsspørsmål som ikke dekkes av den nye brukerprimeren."
708
 
709
  #: ../admin-views/tribe-options-help.php:106
710
  #, php-format
713
  "example plugin that demonstrates how to register a new view. You can "
714
  "%sdownload the plugin at GitHub%s to get started."
715
  msgstr ""
716
+ "Er du utvikler og ønsker å bygge opp din egen front-end visning? Vi skapte "
717
+ "en eksempel-utvidelse som demonstrerer hvordan en registrerer en ny visning. "
718
+ "Du kan %slaste ned utvidelsen på GitHub%s for å komme i gang."
719
 
720
  #: ../admin-views/tribe-options-help.php:108
721
  msgid ""
722
  "Otherwise, if you're feeling adventurous, you can get started by heading to "
723
  "the Events menu and adding your first event."
724
  msgstr ""
725
+ "I motsatt fall, om du føler deg eventyrlysten, kan du komme i gang ved å gå "
726
+ "på Aktiviteter-menyen og legge til din første Aktivitet."
727
 
728
  #: ../admin-views/tribe-options-help.php:112
729
  #, php-format
732
  "our users. Head over to our %sSupport Page%s and you'll find lots of great "
733
  "resources, including:"
734
  msgstr ""
735
+ "Vi har bygget opp brukerstøtte-siden igjen fra grunnen av, i et forsøk på å "
736
+ "hjelpe brukerne våre bedre. Sjekk innom vår %sBrukerstøtte%s der du vil "
737
+ "finne mange flotte ressurser, inkludert:"
738
 
739
  #: ../admin-views/tribe-options-help.php:114
740
  #, php-format
742
  "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
743
  "&amp; Events Calendar PRO"
744
  msgstr ""
745
+ "%sMal-koder, funksjoner, hooks og filtere%s for The Events Calendar &amp; "
746
+ "Events Calendar PRO"
747
 
748
  #: ../admin-views/tribe-options-help.php:116
749
  #, php-format
751
  "%sFrequently Asked Questions%s ranging from the most basic setup questions "
752
  "to advanced themer tweaks"
753
  msgstr ""
754
+ "%sOfte Stilte Spørsmål (FAQ)%s som dekker alt fra grunnleggende "
755
+ "innstillinger til avanserte valg for tematweaks."
756
 
757
  #: ../admin-views/tribe-options-help.php:118
758
  #, php-format
761
  "community, covering custom queries, integration with third-party themes and "
762
  "plugins, etc."
763
  msgstr ""
764
+ "%sOpplæringstekster%s skrevet av både medlemmer fra vårt team og brukere fra "
765
+ "nettsamfunnet, som dekker spesialtilpassede spørringer, integrasjon med "
766
+ "tredjeparts temaer og utvidelser, etc."
767
 
768
  #: ../admin-views/tribe-options-help.php:120
769
  msgid ""
770
  "Release notes for painting an overall picture of the plugin's lifecycle and "
771
  "when features/bug fixes were introduced."
772
  msgstr ""
773
+ "Lanseringsvedlegg som gir deg en oversikt over vedleggets livssyklus og "
774
+ "tidspunkter når funksjoner og feilopprettinger ble utført og introdusert."
775
 
776
  #: ../admin-views/tribe-options-help.php:122
777
  #, php-format
780
  "The Events Calendar (including WooTickets, Community Events, Eventbrite "
781
  "Tickets, Facebook Events, etc)"
782
  msgstr ""
783
+ "%sDokumentasjon for Programtillegg%s for alle Modern Tribe sine offisielle "
784
+ "utvidelsespakker til The Events Calendar (inkludert WooTickets, "
785
+ "Samfunnsaktiviteter, Eventbrite Billetter, Facebook-aktiviteter, etc.)"
786
 
787
  #: ../admin-views/tribe-options-help.php:124
788
  #, php-format
794
  "add your own, and help us shape the future of the products business in a way "
795
  "that best meets the community's needs."
796
  msgstr ""
797
+ "Vi har også en %sModern Tribe UserVoice%s -side som vi aktivt følger med på "
798
+ "for idéer til fremtidige funksjoner, fra brukere på nettet. Hvis du finner "
799
+ "en funksjon som ikke finnes - som burde ha vært der, etter at du har lekt "
800
+ "litt rundt med utvidelsen og sett på ressursene over, la oss få vite om det. "
801
+ "Stem fram eksisterende funksjonsønsker og legg til dine egne. Med dette er "
802
+ "du med på å forme framtiden for produktet på en måte som på best mulig vis "
803
+ "dekker brukernes etterspørsel."
804
 
805
  #: ../admin-views/tribe-options-help.php:128
806
  #, php-format
808
  "Written documentation can only take things so far...sometimes, you need help "
809
  "from a real person. This is where our %ssupport forums%s come into play."
810
  msgstr ""
811
+ "Skrevet dokumentasjon er bare nok til et visst punkt. Noen ganger trenger en "
812
+ "hjelp fra en person. Dette er der våre %sbrukerforum%s kommer inn i bildet. "
813
 
814
  #: ../admin-views/tribe-options-help.php:129
815
  #, php-format
820
  "to read our %ssupport expectations sticky thread%s before posting so you "
821
  "understand our limitations."
822
  msgstr ""
823
+ "Brukerne av The Events Calendar - gratisversjonen, oppfordres til å "
824
+ "publisere spørsmål og andre ting på utvidelsens %sWordPress.org support-fora"
825
+ "%s. Vi er glade for å hjelpe til med å identifisere programfeil som blir "
826
+ "rapportert på Wordpress.org, men vennligst les alle våre %sklebrige tråder "
827
+ "vedrørende hvilke forventninger en kan ha til brukerstøtte%s før du "
828
+ "publiserer, så du forstår våre begrensninger på forhånd."
829
 
830
  #: ../admin-views/tribe-options-help.php:130
831
  msgid ""
835
  "provide customization tips or assist in integrating with 3rd party plugins "
836
  "or themes."
837
  msgstr ""
838
+ "Vi holder oss på WordPress.org-forumet hele uka, og ser etter bugs/feil. Om "
839
+ "du rapporterer en faktisk bug som vi klarer å reprodusere, vil vi logge det "
840
+ "etter hvert slippe en patch. Når det er sagt har vi desverre ikke mulighet "
841
+ "for å tilby tips og råd for spesialtilpasning, eller assistere med "
842
+ "integrasjon av tredjeparts utvidelser eller temaer."
843
 
844
  #: ../admin-views/tribe-options-help.php:131
845
  #, php-format
849
  "deeper level of customization/integration support for paying users than we "
850
  "can on WordPress.org."
851
  msgstr ""
852
+ "Om du bruker The Events Calendar og behøver mer support, vennligst %skjøp en "
853
+ "PRO-lisens%s. Vi ser gjennom PRO-forumene daglig, og kan tilby et dypere "
854
+ "nivå av brukerstøtte for tilrettelegging/tilpassing og integrasjon for "
855
+ "betalende brukere, enn vi har mulighet til på Wordpress.org."
856
 
857
  #: ../admin-views/tribe-options-help.php:135
858
+ #, php-format
859
  msgid ""
860
  "If you find that you aren't getting the level of service you've come to "
861
  "expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
862
  "why. We'll do what we can to make it right."
863
  msgstr ""
864
+ "Om du opplever at du ikke får det nivået av brukerstøtte du forventer fra "
865
+ "Modern Tribe, send oss en e-post %s eller tvitre oss %s og fortell oss "
866
+ "hvorfor. Vi vil gjøre hva vi kan for at du skal bli fornøyd."
867
 
868
  #: ../admin-views/tribe-options-help.php:136
869
  msgid "More..."
870
+ msgstr "Mer"
871
 
872
  #: ../admin-views/tribe-options-help.php:144
873
  msgid ""
874
  "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
875
  "for installing our labor of love!"
876
  msgstr ""
877
+ "Hei! Vi er Modern Tribe og vi er her for å gjøre deg til den kuleste kiden i "
878
+ "gata. Takk så utrolig mye for at du installerte vårt hjertebarn!"
879
 
880
  #: ../admin-views/tribe-options-help.php:150
881
  msgid "Getting Started"
887
  msgstr "Ressurser som hjelper deg å komme i gang"
888
 
889
  #: ../admin-views/tribe-options-help.php:156
 
890
  msgid "Forums: Because Everyone Needs A Buddy"
891
+ msgstr "Forum: Fordi alle trenger en Buddy"
892
 
893
  #: ../admin-views/tribe-options-help.php:159
894
  msgid "Not getting help?"
895
+ msgstr "Får du ikke hjelp?"
896
 
897
  # Er ikke dette et egennavn? Skal man oversette det?
898
  #: ../admin-views/tribe-options-help.php:169
899
+ #: ../lib/the-events-calendar.class.php:487
900
  #: ../lib/tribe-settings.class.php:135
901
  msgid "The Events Calendar"
902
  msgstr "The Events Calendar"
924
 
925
  #: ../admin-views/tribe-options-help.php:176
926
  msgid "Wordpress.org Plugin Page"
927
+ msgstr "Wordpress.org utvidelsesside"
928
 
929
  #: ../admin-views/tribe-options-help.php:181
930
  msgid "Average Rating"
943
 
944
  #: ../admin-views/tribe-options-help.php:189
945
  msgid "Premium Add-Ons"
946
+ msgstr "Premium Tilleggsutvidelser"
947
 
948
  #: ../admin-views/tribe-options-help.php:195
949
  msgid "(Coming Soon!)"
951
 
952
  #: ../admin-views/tribe-options-help.php:202
953
  msgid "News and Tutorials"
954
+ msgstr "Nyheter og Brukerveiledninger"
955
 
956
  #
957
  #: ../admin-views/tribe-options-network.php:14
963
  "This is where all of the global network settings for Modern Tribe's The "
964
  "Events Calendar can be modified."
965
  msgstr ""
966
+ "Her kan alle globale nettverksinnstillinger for Modern Tribes The Events "
967
+ "Calendar modifiseres."
968
 
969
  #: ../admin-views/tribe-options-network.php:26
970
  msgid "Hide the following settings tabs on every site:"
971
+ msgstr "Gjem de følgende innstillinger-fanene på alle sider:"
972
 
973
  #: ../admin-views/venue-meta-box.php:20
974
  msgid "Venue Name:"
975
+ msgstr "Navn på Sted/Plassering:"
976
 
977
  #: ../admin-views/venue-meta-box.php:27
978
  #: ../public/advanced-functions/meta.php:371
989
 
990
  #: ../admin-views/venue-meta-box.php:73
991
  msgid "State or Province:"
992
+ msgstr "Fylke eller kommune:"
993
 
994
  #: ../admin-views/venue-meta-box.php:76
995
  msgid "Select a State:"
996
+ msgstr "Velg Fylke:"
997
 
998
  #: ../admin-views/venue-meta-box.php:89
999
  msgid "Postal Code:"
1027
  #
1028
  #: ../admin-views/tickets/attendees.php:14
1029
  msgid "Event Summary"
1030
+ msgstr "Aktivitetssammendrag"
1031
 
1032
  #
1033
  #: ../admin-views/tickets/attendees.php:22
1034
  msgid "Event Details"
1035
+ msgstr "Aktivitetsdetaljer"
1036
 
1037
  #: ../admin-views/tickets/attendees.php:24
1038
  msgid "Start Date / Time:"
1048
 
1049
  #: ../admin-views/tickets/attendees.php:52
1050
  msgid "Ticket Sales"
1051
+ msgstr "Billettsalg"
1052
 
1053
  #: ../admin-views/tickets/attendees.php:64 ../admin-views/tickets/list.php:67
1054
  #, php-format
1062
 
1063
  #: ../admin-views/tickets/attendees.php:81
1064
  msgid "Tickets sold:"
1065
+ msgstr "Solgte billetter:"
1066
 
1067
  #: ../admin-views/tickets/attendees.php:85
1068
  msgid "Checked in:"
1069
+ msgstr "Sjekket inn:"
1070
 
1071
  #: ../admin-views/tickets/attendees.php:105
1072
  msgid "Send the attendee list by email"
1075
  #
1076
  #: ../admin-views/tickets/attendees.php:109
1077
  msgid "Select a User:"
1078
+ msgstr "Velg en Bruker:"
1079
 
1080
  #: ../admin-views/tickets/attendees.php:110
1081
  msgid "Select..."
1082
+ msgstr "Velg"
1083
 
1084
  #: ../admin-views/tickets/attendees.php:112
1085
  msgid "or"
1110
 
1111
  #: ../admin-views/tickets/list.php:41 ../lib/tickets/tribe-tickets-pro.php:73
1112
  msgid "See who purchased tickets to this event"
1113
+ msgstr "Se hvem som har kjøpt billetter til denne aktiviteten"
1114
 
1115
  #: ../admin-views/tickets/meta-box.php:21
1116
  msgid ""
1117
  "This event was created using Community Events. Are you sure you want to sell "
1118
  "tickets for it?"
1119
  msgstr ""
1120
+ "Denne aktiviteten ble opprettet gjennom Samfunnsaktiviteter. Er du sikker på "
1121
+ "at du vil selge billetter for den?"
1122
 
1123
  #: ../admin-views/tickets/meta-box.php:32
1124
  msgid "Upload image for the ticket header"
1125
+ msgstr "Last opp bilde for billettoverskriften"
1126
 
1127
  #: ../admin-views/tickets/meta-box.php:33
1128
  msgid ""
1130
  "then scaled for mobile. If you would like \"retina\" support use an image "
1131
  "sized to 1160px wide."
1132
  msgstr ""
1133
+ "Den maksimale bildestørrelsen i e-posten er 580px bred, med valgfri høyde. "
1134
+ "Bildet vil skaleres for mobile enheter. Hvis du ønsker \"retina \"-støtte, "
1135
+ "benytt et bilde som har en bredde på 1160px."
1136
 
1137
  #
1138
  #: ../admin-views/tickets/meta-box.php:36
1147
  #: ../admin-views/tickets/meta-box.php:62
1148
  #: ../admin-views/tickets/meta-box.php:72
1149
  msgid "Add new ticket"
1150
+ msgstr "Legg til ny billett"
1151
 
1152
  #
1153
  #: ../admin-views/tickets/meta-box.php:73
1154
  msgid "Edit ticket"
1155
+ msgstr "Rediger billett"
1156
 
1157
  #: ../admin-views/tickets/meta-box.php:79
1158
  msgid "Sell using:"
1159
+ msgstr "Selg gjennom:"
1160
 
1161
  #
1162
  #: ../admin-views/tickets/meta-box.php:96
1163
  msgid "Ticket Name:"
1164
+ msgstr "Billettnavn:"
1165
 
1166
  #: ../admin-views/tickets/meta-box.php:103
1167
  msgid "Ticket Description:"
1168
+ msgstr "Billettbeskrivelse:"
1169
 
1170
  #: ../admin-views/tickets/meta-box.php:112
1171
  msgid "Price:"
1174
  #
1175
  #: ../admin-views/tickets/meta-box.php:124
1176
  msgid "Start sale:"
1177
+ msgstr "Salget starter:"
1178
 
1179
  #
1180
  #: ../admin-views/tickets/meta-box.php:148
1186
  "When will ticket sales occur? If you don't set a start/end date for sales, "
1187
  "tickets will be available from now until the event ends."
1188
  msgstr ""
1189
+ "Når vil billettsalget foregå? Om du ikke setter en start-/sluttid for salg, "
1190
+ "vil billetter være tilgjengelige fra nå og til aktiviteten avsluttes."
1191
 
1192
+ #: ../lib/the-events-calendar.class.php:492
1193
  msgid "month"
1194
  msgstr "måned"
1195
 
1196
+ #: ../lib/the-events-calendar.class.php:493
1197
  msgid "upcoming"
1198
  msgstr "kommende"
1199
 
1200
+ #: ../lib/the-events-calendar.class.php:494
1201
  msgid "past"
1202
  msgstr "tidligere"
1203
 
1204
+ #: ../lib/the-events-calendar.class.php:496
1205
  msgid "venue"
1206
  msgstr "sted"
1207
 
1208
+ #: ../lib/the-events-calendar.class.php:510
1209
  #, php-format
1210
  msgid "Initializing Tribe Events on %s"
1211
+ msgstr "Initialiserer Tribe-Aktiviteter for %s"
1212
 
1213
+ #: ../lib/the-events-calendar.class.php:623
1214
  #, php-format
1215
  msgid ""
1216
  "Your version of The Events Calendar is not up-to-date with one of your The "
1217
  "Events Calendar add-ons. Please %supdate now.%s"
1218
  msgstr ""
1219
+ "Din versjon av The Events Calendar er ikke oppdatert med en av dine The "
1220
+ "Events Calendar-tillegg. Vennligst %soppdatér nå.%s"
1221
 
1222
+ #: ../lib/the-events-calendar.class.php:640
1223
  #, php-format
1224
  msgid ""
1225
  "The following plugins are out of date: <b>%s</b>. All add-ons contain "
1226
  "dependencies on The Events Calendar and will not function properly unless "
1227
  "paired with the right version. %sWant to pair an older version%s?"
1228
  msgstr ""
1229
+ "De følgende utvidelser er gått ut på dato: <b>%s</b>. Alle Tillegg er "
1230
+ "avhengige av The Events Calendar, og vil ikke fungere som de skal, om de "
1231
+ "ikke er koblet mot korrekt versjon. %sKoble mot en eldre versjon%s?"
1232
 
1233
+ #: ../lib/the-events-calendar.class.php:704
1234
+ #: ../lib/the-events-calendar.class.php:739
1235
+ #: ../lib/the-events-calendar.class.php:741
1236
  msgid "Licenses"
1237
  msgstr "Lisenser"
1238
 
1239
+ #: ../lib/the-events-calendar.class.php:708
1240
  #, fuzzy, php-format
1241
  msgid ""
1242
  "<p>The license key you received when completing your purchase from %s will "
1268
  "<a href=\"%s\">Kontrollpanel > Oppdateringer</ a> og klikk \"Sjekk igjen \"."
1269
  "</p>"
1270
 
1271
+ #: ../lib/the-events-calendar.class.php:731
1272
  msgid "General"
1273
  msgstr "Generelt"
1274
 
1275
+ #: ../lib/the-events-calendar.class.php:732
1276
  msgid "Display"
1277
  msgstr "Vis"
1278
 
1279
+ #: ../lib/the-events-calendar.class.php:783
1280
  #, php-format
1281
  msgid ""
1282
  "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
1285
  "Beklager, The Events Calendar krever WordPress %s eller nyere. Vennligst "
1286
  "oppgrader WordPress."
1287
 
1288
+ #: ../lib/the-events-calendar.class.php:786
1289
  #, php-format
1290
  msgid ""
1291
  "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
1292
  "about moving you to a newer version of PHP."
1293
  msgstr ""
1294
+ "Beklager, The Events Calendar krever PHP %s eller nyere. Be din tilbyder av "
1295
+ "Webserver/webhotell om overflytting til nyere versjon av PHP."
1296
 
1297
+ #: ../lib/the-events-calendar.class.php:1001 ../lib/widget-list.class.php:169
1298
  #: ../public/template-tags/loop.php:137
1299
  msgid "Upcoming Events"
1300
+ msgstr "Kommende Aktiviteter"
1301
 
1302
+ #: ../lib/the-events-calendar.class.php:1004
1303
  #: ../public/template-tags/loop.php:165
1304
  msgid "Past Events"
1305
+ msgstr "Tidligere Aktiviteter"
1306
 
1307
+ #: ../lib/the-events-calendar.class.php:1009
1308
+ #: ../lib/the-events-calendar.class.php:1016
1309
  #, php-format
1310
  msgid "Events for %s"
1311
  msgstr "Aktiviteter for %s"
1312
 
1313
+ #: ../lib/the-events-calendar.class.php:1011
1314
  msgid "Events this month"
1315
  msgstr "Aktiviteter denne måneden"
1316
 
1317
+ #: ../lib/the-events-calendar.class.php:1023
1318
  #, php-format
1319
  msgid "Events at %s"
1320
  msgstr "Aktiviteter ved %s"
1321
 
1322
+ #: ../lib/the-events-calendar.class.php:1042
1323
  msgid "No description has been entered for this event."
1324
  msgstr "Denne aktiviteten har ingen beskrivelse."
1325
 
1326
+ #: ../lib/the-events-calendar.class.php:1304
1327
  msgid "category"
1328
  msgstr "kategori"
1329
 
1330
+ #: ../lib/the-events-calendar.class.php:1314
1331
  msgid "tag"
1332
  msgstr "merk"
1333
 
1334
+ #: ../lib/the-events-calendar.class.php:1341
1335
+ #: ../lib/the-events-calendar.class.php:3838
1336
+ #: ../lib/the-events-calendar.class.php:3899
1337
  msgid "Events"
1338
  msgstr "Aktiviteter"
1339
 
1340
+ #: ../lib/the-events-calendar.class.php:1342
1341
  msgid "Event"
1342
+ msgstr "Aktivitet"
1343
 
1344
+ #: ../lib/the-events-calendar.class.php:1343
1345
+ #: ../lib/the-events-calendar.class.php:1356
1346
+ #: ../lib/the-events-calendar.class.php:1369
1347
  msgid "Add New"
1348
  msgstr "Legg til ny"
1349
 
1350
+ #: ../lib/the-events-calendar.class.php:1344
1351
  msgid "Add New Event"
1352
+ msgstr "Legg til ny Aktivitet"
1353
 
1354
+ #: ../lib/the-events-calendar.class.php:1345
1355
  msgid "Edit Event"
1356
+ msgstr "Rediger Aktivitet"
1357
 
1358
+ #: ../lib/the-events-calendar.class.php:1346
1359
  msgid "New Event"
1360
  msgstr "Ny aktivitet"
1361
 
1362
+ #: ../lib/the-events-calendar.class.php:1347
1363
  msgid "View Event"
1364
+ msgstr "Vis Aktivitet"
1365
 
1366
+ #: ../lib/the-events-calendar.class.php:1348
1367
  msgid "Search Events"
1368
+ msgstr "Søk i Aktiviteter"
1369
 
1370
+ #: ../lib/the-events-calendar.class.php:1349
1371
  msgid "No events found"
1372
  msgstr "Fant ingen aktiviteter"
1373
 
1374
+ #: ../lib/the-events-calendar.class.php:1350
1375
  msgid "No events found in Trash"
1376
  msgstr "Fant ingen aktiviteter i søppelkassen"
1377
 
1378
+ #: ../lib/the-events-calendar.class.php:1354
1379
+ #: ../lib/the-events-calendar.class.php:1466
1380
  msgid "Venues"
1381
  msgstr "Steder"
1382
 
1383
+ #: ../lib/the-events-calendar.class.php:1355
1384
  #: ../public/advanced-functions/meta.php:331 ../views/tickets/email.php:343
1385
  msgid "Venue"
1386
  msgstr "Sted"
1387
 
1388
+ #: ../lib/the-events-calendar.class.php:1357
1389
  msgid "Add New Venue"
1390
+ msgstr "Legg til nytt Sted"
1391
 
1392
+ #: ../lib/the-events-calendar.class.php:1358
1393
  msgid "Edit Venue"
1394
+ msgstr "Rediger Sted"
1395
 
1396
+ #: ../lib/the-events-calendar.class.php:1359
1397
  msgid "New Venue"
1398
  msgstr "Nytt sted"
1399
 
1400
+ #: ../lib/the-events-calendar.class.php:1360
1401
  msgid "View Venue"
1402
+ msgstr "Vis Sted"
1403
 
1404
+ #: ../lib/the-events-calendar.class.php:1361
1405
  msgid "Search Venues"
1406
+ msgstr "Søk i Steder"
1407
 
1408
+ #: ../lib/the-events-calendar.class.php:1362
1409
  msgid "No venue found"
1410
  msgstr "Fant ingen steder"
1411
 
1412
+ #: ../lib/the-events-calendar.class.php:1363
1413
  msgid "No venues found in Trash"
1414
  msgstr "Fant ingen steder i søppelkassen"
1415
 
1416
+ #: ../lib/the-events-calendar.class.php:1367
1417
+ #: ../lib/the-events-calendar.class.php:1467
1418
  msgid "Organizers"
1419
  msgstr "Arrangører"
1420
 
1421
+ #: ../lib/the-events-calendar.class.php:1368
1422
  #: ../public/advanced-functions/meta.php:393 ../views/tickets/email.php:362
1423
  msgid "Organizer"
1424
  msgstr "Arrangør"
1425
 
1426
+ #: ../lib/the-events-calendar.class.php:1370
1427
  msgid "Add New Organizer"
1428
+ msgstr "Legg til ny Arrangør"
1429
 
1430
+ #: ../lib/the-events-calendar.class.php:1371
1431
  msgid "Edit Organizer"
1432
+ msgstr "Rediger Arrangør"
1433
 
1434
+ #: ../lib/the-events-calendar.class.php:1372
1435
  msgid "New Organizer"
1436
+ msgstr "Ny Arrangør"
1437
 
1438
  #
1439
+ #: ../lib/the-events-calendar.class.php:1373
1440
  msgid "View Organizer"
1441
+ msgstr "Vis Arrangør"
1442
 
1443
+ #: ../lib/the-events-calendar.class.php:1374
1444
  msgid "Search Organizers"
1445
+ msgstr "Søk i Arrangører"
1446
 
1447
+ #: ../lib/the-events-calendar.class.php:1375
1448
  msgid "No organizer found"
1449
  msgstr "Fant ingen arrangører"
1450
 
1451
+ #: ../lib/the-events-calendar.class.php:1376
1452
  msgid "No organizers found in Trash"
1453
  msgstr "Fant ingen arrangører i søppelkassen"
1454
 
1455
+ #: ../lib/the-events-calendar.class.php:1380
1456
  #: ../lib/tribe-admin-events-list.class.php:217
1457
  msgid "Event Categories"
1458
+ msgstr "Aktivitetskategorier"
1459
 
1460
+ #: ../lib/the-events-calendar.class.php:1381
1461
+ #: ../public/template-tags/general.php:277
1462
  msgid "Event Category"
1463
+ msgstr "Aktivitetskategori"
1464
 
1465
+ #: ../lib/the-events-calendar.class.php:1382
1466
  msgid "Search Event Categories"
1467
+ msgstr "Søk i Aktivitetskategorier"
1468
 
1469
+ #: ../lib/the-events-calendar.class.php:1383
1470
  msgid "All Event Categories"
1471
+ msgstr "Alle Aktivitetskategorier"
1472
 
1473
+ #: ../lib/the-events-calendar.class.php:1384
1474
  msgid "Parent Event Category"
1475
+ msgstr "Overordnet Aktivitetskategori"
1476
 
1477
+ #: ../lib/the-events-calendar.class.php:1385
1478
  msgid "Parent Event Category:"
1479
+ msgstr "Overordnet Aktivitetskategori:"
1480
 
1481
+ #: ../lib/the-events-calendar.class.php:1386
1482
  msgid "Edit Event Category"
1483
+ msgstr "Rediger Aktivitetskategori"
1484
 
1485
+ #: ../lib/the-events-calendar.class.php:1387
1486
  msgid "Update Event Category"
1487
+ msgstr "Oppdater Aktivitetskategori"
1488
 
1489
+ #: ../lib/the-events-calendar.class.php:1388
1490
  msgid "Add New Event Category"
1491
  msgstr "Legg til ny kategori"
1492
 
1493
+ #: ../lib/the-events-calendar.class.php:1389
1494
  msgid "New Event Category Name"
1495
+ msgstr "Nytt navn Aktivitetskategori"
1496
 
1497
+ #: ../lib/the-events-calendar.class.php:1405
1498
  #, php-format
1499
  msgid "Event updated. <a href=\"%s\">View event</a>"
1500
  msgstr "Aktivitet oppdatert. <a href=\"%s\">Vis aktivitet</a>"
1501
 
 
 
 
 
 
 
1502
  #: ../lib/the-events-calendar.class.php:1406
1503
  #: ../lib/the-events-calendar.class.php:1423
1504
  #: ../lib/the-events-calendar.class.php:1440
1505
+ msgid "Custom field updated."
1506
+ msgstr "Egendefinert felt oppdatert."
1507
+
1508
+ #: ../lib/the-events-calendar.class.php:1407
1509
+ #: ../lib/the-events-calendar.class.php:1424
1510
+ #: ../lib/the-events-calendar.class.php:1441
1511
  msgid "Custom field deleted."
1512
  msgstr "Egendefinert felt slettet."
1513
 
1514
+ #: ../lib/the-events-calendar.class.php:1408
1515
  msgid "Event updated."
1516
  msgstr "Aktivitet oppdatert."
1517
 
1518
+ #: ../lib/the-events-calendar.class.php:1410
1519
  #, php-format
1520
  msgid "Event restored to revision from %s"
1521
  msgstr "Aktivitet gjenopprettet til revisjon fra %s"
1522
 
1523
+ #: ../lib/the-events-calendar.class.php:1411
1524
  #, php-format
1525
  msgid "Event published. <a href=\"%s\">View event</a>"
1526
  msgstr "Aktivitet publisert. <a href=\"%s\">Vis aktivitet</a>"
1527
 
1528
+ #: ../lib/the-events-calendar.class.php:1412
1529
  msgid "Event saved."
1530
  msgstr "Aktivitet lagret."
1531
 
1532
+ #: ../lib/the-events-calendar.class.php:1413
1533
  #, php-format
1534
  msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1535
+ msgstr ""
1536
+ "Aktivitet er levert. <a target=\"_blank\" href=\"%s\">Forhåndsvis aktivitet</"
1537
+ "a>"
1538
 
1539
+ #: ../lib/the-events-calendar.class.php:1414
1540
  #, php-format
1541
  msgid ""
1542
  "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1543
  "\">Preview event</a>"
1544
  msgstr ""
1545
  "Aktivitet planlagt til <strong>%1$s</strong>. <a target=\"_blank\" href="
1546
+ "\"%2$s\">Forhåndsvis aktivitet</a>"
1547
 
1548
+ #: ../lib/the-events-calendar.class.php:1416
1549
+ #: ../lib/the-events-calendar.class.php:1433
1550
+ #: ../lib/the-events-calendar.class.php:1450
1551
  msgid "M j, Y @ G:i"
1552
  msgstr "Y-m-d @ G:i"
1553
 
1554
+ #: ../lib/the-events-calendar.class.php:1417
1555
  #, php-format
1556
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1557
  msgstr ""
1558
+ "Utkast for aktivitet oppdatert. <a target=\"_blank\" href=\"%s\">Forhåndsvis "
1559
+ "Aktivitet</a>"
1560
 
1561
+ #: ../lib/the-events-calendar.class.php:1422
1562
  #, php-format
1563
  msgid "Venue updated. <a href=\"%s\">View venue</a>"
1564
  msgstr "Sted oppdatert. <a href=\"%s\">Vis sted</a>"
1565
 
1566
+ #: ../lib/the-events-calendar.class.php:1425
1567
  msgid "Venue updated."
1568
  msgstr "Sted oppdatert."
1569
 
1570
+ #: ../lib/the-events-calendar.class.php:1427
1571
  #, php-format
1572
  msgid "Venue restored to revision from %s"
1573
  msgstr "Sted gjenopprettet til revisjon fra %s"
1574
 
1575
+ #: ../lib/the-events-calendar.class.php:1428
1576
  #, php-format
1577
  msgid "Venue published. <a href=\"%s\">View venue</a>"
1578
  msgstr "Sted publisert. <a href=\"%s\">Vis sted</a>"
1579
 
1580
+ #: ../lib/the-events-calendar.class.php:1429
1581
  msgid "Venue saved."
1582
  msgstr "Sted lagret."
1583
 
1584
+ #: ../lib/the-events-calendar.class.php:1430
1585
  #, php-format
1586
  msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1587
+ msgstr ""
1588
+ "Sted innsendt. <a target=\"_blank\" href=\"%s\">Forhåndsvis Sted/Plassering</"
1589
+ "a>"
1590
 
1591
+ #: ../lib/the-events-calendar.class.php:1431
1592
  #, php-format
1593
  msgid ""
1594
  "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1595
  "\">Preview venue</a>"
1596
  msgstr ""
1597
  "Sted lagt til for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1598
+ "\">Forhåndsvis Sted</a>"
1599
 
1600
+ #: ../lib/the-events-calendar.class.php:1434
1601
  #, php-format
1602
  msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1603
  msgstr ""
1604
+ "Utkast for sted oppdatert. <a target=\"_blank\" href=\"%s\">Forhåndsvis "
1605
+ "Sted</a>"
1606
 
1607
+ #: ../lib/the-events-calendar.class.php:1439
1608
  #, php-format
1609
  msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1610
  msgstr "Arrangør oppdatert. <a href=\"%s\">Vis arrangør</a>"
1611
 
1612
+ #: ../lib/the-events-calendar.class.php:1442
1613
  msgid "Organizer updated."
1614
  msgstr "Arrangør oppdatert."
1615
 
1616
+ #: ../lib/the-events-calendar.class.php:1444
1617
  #, php-format
1618
  msgid "Organizer restored to revision from %s"
1619
  msgstr "Arrangør gjenopprettet til revisjon fra %s"
1620
 
1621
+ #: ../lib/the-events-calendar.class.php:1445
1622
  #, php-format
1623
  msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1624
  msgstr "Arrangør publisert. <a href=\"%s\">Vis arrangør</a>"
1625
 
1626
+ #: ../lib/the-events-calendar.class.php:1446
1627
  msgid "Organizer saved."
1628
  msgstr "Arrangør lagret."
1629
 
1630
+ #: ../lib/the-events-calendar.class.php:1447
1631
  #, php-format
1632
  msgid ""
1633
  "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1634
+ msgstr ""
1635
+ "Arrangørinformasjon levert <a target=\"_blank\" href=\"%s\">Forhåndsvis "
1636
+ "Arrangør</a>"
1637
 
1638
+ #: ../lib/the-events-calendar.class.php:1448
1639
  #, php-format
1640
  msgid ""
1641
  "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
1642
  "\"%2$s\">Preview organizer</a>"
1643
  msgstr ""
1644
  "Arrangør lagt til for: <strong>%1$s</strong>. <a target=\"_blank\" href="
1645
+ "\"%2$s\">Forhåndsvis arrangør</a>"
1646
 
1647
+ #: ../lib/the-events-calendar.class.php:1451
1648
  #, php-format
1649
  msgid ""
1650
  "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
1651
  "a>"
1652
  msgstr ""
1653
+ "Utkast for Arrangør oppdatert. <a target=\"_blank\" href=\"%s\">Forhåndsvis "
1654
+ "Arrangør</a>"
1655
 
1656
+ #: ../lib/the-events-calendar.class.php:1492
1657
  msgid "Use Saved Venue:"
1658
+ msgstr "Bruk lagret Sted:"
1659
 
1660
  #
1661
+ #: ../lib/the-events-calendar.class.php:1521
1662
  msgid "Use Saved Organizer:"
1663
  msgstr "Bruk lagret arrangør:"
1664
 
1665
  #
1666
+ #: ../lib/the-events-calendar.class.php:1557
1667
  msgid "Use New Venue"
1668
+ msgstr "Bruk nytt Sted"
1669
 
1670
  #
1671
+ #: ../lib/the-events-calendar.class.php:1559
1672
  msgid "My Venues"
1673
+ msgstr "Mine Steder"
1674
 
1675
  #
1676
+ #: ../lib/the-events-calendar.class.php:1564
1677
  msgid "Available Venues"
1678
+ msgstr "Tilgjengelige Steder"
1679
 
1680
+ #: ../lib/the-events-calendar.class.php:1575
1681
  msgid "No saved venue exists."
1682
+ msgstr "Ingen lagrede steder finnes."
1683
 
1684
  #
1685
+ #: ../lib/the-events-calendar.class.php:1609
1686
  msgid "Use New Organizer"
1687
  msgstr "Bruk ny arrangør"
1688
 
1689
  #
1690
+ #: ../lib/the-events-calendar.class.php:1611
1691
  msgid "My Organizers"
1692
+ msgstr "Mine Arrangører"
1693
 
1694
  #
1695
+ #: ../lib/the-events-calendar.class.php:1616
1696
  msgid "Available Organizers"
1697
+ msgstr "Tilgjengelige Arrangører"
1698
 
1699
  #
1700
+ #: ../lib/the-events-calendar.class.php:1627
1701
  msgid "No saved organizer exists."
1702
+ msgstr "Ingen lagrede arrangører finnes."
1703
 
1704
+ #: ../lib/the-events-calendar.class.php:1754
1705
  msgid "Next"
1706
  msgstr "Neste"
1707
 
1708
+ #: ../lib/the-events-calendar.class.php:1755
1709
  msgid "Prev"
1710
  msgstr "Forrige"
1711
 
1712
+ #: ../lib/the-events-calendar.class.php:1756
1713
  msgid "Today"
1714
  msgstr "I dag"
1715
 
1716
+ #: ../lib/the-events-calendar.class.php:1757
1717
  msgid "Done"
1718
  msgstr "Ferdig"
1719
 
1720
+ #: ../lib/the-events-calendar.class.php:1966
1721
  msgid "Network"
1722
  msgstr "Nettverk"
1723
 
1724
  #
1725
+ #: ../lib/the-events-calendar.class.php:2917
1726
  msgid "Unnamed Venue"
1727
+ msgstr "Sted uten navn"
1728
 
1729
  #
1730
+ #: ../lib/the-events-calendar.class.php:3007
1731
  msgid "Unnamed Organizer"
1732
+ msgstr "Arrangør uten navn"
1733
 
1734
+ #: ../lib/the-events-calendar.class.php:3484
1735
  msgid "Event Options"
1736
+ msgstr "Alternativer for Aktivitet"
1737
 
1738
+ #: ../lib/the-events-calendar.class.php:3486
1739
  msgid "Venue Information"
1740
  msgstr "Stedsinformasjon"
1741
 
1742
+ #: ../lib/the-events-calendar.class.php:3491
1743
  msgid "Organizer Information"
1744
  msgstr "Arrangørinformasjon"
1745
 
1746
+ #: ../lib/the-events-calendar.class.php:3687
1747
  msgid "Support"
1748
  msgstr "Brukerstøtte"
1749
 
1750
+ #: ../lib/the-events-calendar.class.php:3690
1751
  msgid "View All Add-Ons"
1752
+ msgstr "Vis alle Tilleggsutvidelser"
1753
 
1754
+ #: ../lib/the-events-calendar.class.php:3707
1755
  msgid "News from Modern Tribe"
1756
  msgstr "Nyheter fra Modern Tribe"
1757
 
1758
+ #: ../lib/the-events-calendar.class.php:3788
1759
  msgid "Additional Functionality"
1760
  msgstr "Tilleggsfunksjonalitet"
1761
 
1762
+ #: ../lib/the-events-calendar.class.php:3793
1763
  msgid ""
1764
  "Looking for additional functionality including recurring events, ticket "
1765
  "sales, publicly submitted events, new views and more?"
1766
  msgstr ""
1767
+ "Er du ute etter ytterligere funksjonalitet, inkludert gjentakende "
1768
+ "aktiviteter, billettsalg, offentlig innsendte arrangementer, andre "
1769
+ "sideoppsett og mer?"
1770
 
1771
+ #: ../lib/the-events-calendar.class.php:3793
1772
  #, php-format
1773
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
1774
  msgstr "Sjekk ut <a href=\"%s\">tilgjengelige utvidelser</a>."
1775
 
1776
  #
1777
+ #: ../lib/the-events-calendar.class.php:3865
1778
+ #: ../lib/the-events-calendar.class.php:3956
1779
  msgid "View Calendar"
1780
+ msgstr "Vis Kalender"
1781
 
1782
  #
1783
+ #: ../lib/the-events-calendar.class.php:3873
1784
  msgid "Add Event"
1785
+ msgstr "Legg til Aktivitet"
1786
 
1787
  #
1788
+ #: ../lib/the-events-calendar.class.php:3882
1789
  msgid "Edit Events"
1790
+ msgstr "Rediger Aktivitet"
1791
 
1792
+ #: ../lib/the-events-calendar.class.php:3891
1793
+ #: ../lib/the-events-calendar.class.php:3992
1794
  #: ../lib/tribe-settings.class.php:164
1795
  msgid "Settings"
1796
  msgstr "Innstillinger"
1797
 
1798
+ #: ../lib/the-events-calendar.class.php:3927
1799
  #, php-format
1800
  msgid ""
1801
  "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
1802
  "change the events slug, visit %sEvents -> Settings%s."
1803
  msgstr ""
1804
+ "Velkommen til The Events Calendar! Din aktivitetskalender finner du på %s. "
1805
+ "For å endre denne aktivitets-kortlenken, besøk %sAktiviteter -> Innstillinger"
1806
+ "%s."
1807
 
1808
+ #: ../lib/the-events-calendar.class.php:3993
1809
  msgid "Calendar"
1810
  msgstr "Kalender"
1811
 
1812
+ #: ../lib/the-events-calendar.class.php:4059
1813
  msgid "List"
1814
  msgstr "Liste"
1815
 
1816
  #
1817
+ #: ../lib/the-events-calendar.class.php:4070
1818
  msgid "Month"
1819
  msgstr "Måned"
1820
 
1821
+ #: ../lib/the-events-calendar.class.php:4089
1822
+ #: ../lib/the-events-calendar.class.php:4091
1823
+ msgid "Search"
1824
+ msgstr "Søk"
1825
+
1826
  #
1827
+ #: ../lib/the-events-calendar.class.php:4111
1828
+ #: ../lib/the-events-calendar.class.php:4123
1829
  msgid "Date"
1830
  msgstr "Dato"
1831
 
1832
  #
1833
+ #: ../lib/the-events-calendar.class.php:4114
1834
  msgid "Events In"
1835
  msgstr "Aktiviteter i"
1836
 
1837
  #
1838
+ #: ../lib/the-events-calendar.class.php:4116
1839
  msgid "Events From"
1840
+ msgstr "Aktiviteter fra"
1841
 
1842
+ #: ../lib/the-events-calendar.class.php:4299 ../views/list/nav.php:22
1843
  #: ../views/list/nav.php:28 ../views/list/nav.php:31
1844
  msgid "&laquo; Previous Events"
1845
  msgstr "&laquo; Tidligere aktiviteter"
1846
 
1847
+ #: ../lib/the-events-calendar.class.php:4300 ../views/list/nav.php:40
1848
  #: ../views/list/nav.php:43 ../views/list/nav.php:49
1849
  msgid "Next Events &raquo;"
1850
+ msgstr "Kommende Aktiviteter &raquo;"
1851
 
1852
  #: ../lib/tribe-admin-events-list.class.php:53
1853
  #, php-format
1882
 
1883
  #
1884
  #: ../lib/tribe-app-shop.class.php:62 ../lib/tribe-app-shop.class.php:63
1885
+ #: ../lib/tribe-app-shop.class.php:87
1886
  msgid "Event Add-Ons"
1887
+ msgstr "Aktivitetsutvidelser"
1888
 
1889
  # Jeg tenker dette er et egennavn. Lar den stå.
1890
  #: ../lib/tribe-debug-bar.class.php:29
1891
  msgid "Tribe"
1892
  msgstr "Tribe"
1893
 
1894
+ #: ../lib/tribe-event-api.class.php:374 ../lib/tribe-view-helpers.class.php:44
1895
  #: ../public/template-tags/venue.php:240
1896
  msgid "United States"
1897
  msgstr "USA"
1903
 
1904
  #: ../lib/tribe-field.class.php:161
1905
  msgid "Invalid field type specified"
1906
+ msgstr "Ugyldig felttype spesifisert"
1907
 
1908
  #: ../lib/tribe-field.class.php:414
1909
  msgid "No radio options specified"
1910
+ msgstr "Ingen radioknappvalg er spesifisert"
1911
 
1912
  #: ../lib/tribe-field.class.php:451
1913
  msgid "No checkbox options specified"
1914
+ msgstr "Ingen sjekkboks-valg er spesifiserte"
1915
 
1916
  #: ../lib/tribe-field.class.php:505
1917
  msgid "No select options specified"
1918
+ msgstr "Ingen valgmuligheter er spesifisert"
1919
 
1920
  #
1921
  #: ../lib/tribe-settings-tab.class.php:219
1922
  msgid "There are no fields setup for this tab yet."
1923
+ msgstr "Det finnes ingen konfigurerte felter for denne fanen enda."
1924
 
1925
  # Er ikke dette et egennavn? Skal man oversette det?
1926
  #
1927
  #: ../lib/tribe-settings.class.php:164 ../lib/tribe-settings.class.php:176
1928
  msgid "The Events Calendar Settings"
1929
+ msgstr "Innstillinger for The Events Calendar"
1930
 
1931
  #
1932
  #: ../lib/tribe-settings.class.php:176
1933
  msgid "Events Settings"
1934
+ msgstr "Aktivitetsinnstillinger"
1935
 
1936
  #: ../lib/tribe-settings.class.php:225
1937
  #, php-format
1940
 
1941
  #: ../lib/tribe-settings.class.php:239
1942
  msgid "You've requested a non-existent tab."
1943
+ msgstr "Du har spesifisert en fane som ikke eksisterer"
1944
 
1945
  #
1946
  #: ../lib/tribe-settings.class.php:247
1957
 
1958
  #: ../lib/tribe-settings.class.php:311
1959
  msgid "The request wasn't sent from this tab."
1960
+ msgstr "Etterspørselen ble ikke sendt fra denne fanen"
1961
 
1962
  #: ../lib/tribe-settings.class.php:476
1963
  msgid "Your form had the following errors:"
1965
 
1966
  #: ../lib/tribe-settings.class.php:485
1967
  msgid "None of your settings were saved. Please try again."
1968
+ msgstr "Ingen av innstillingene dine ble lagret. Vennligst prøv igjen."
1969
 
1970
  #: ../lib/tribe-settings.class.php:485
1971
  msgid ""
1973
  msgid_plural ""
1974
  "The above settings were not saved. Other settings were successfully saved."
1975
  msgstr[0] ""
1976
+ "Innstillingen over ble ikke lagret. Andre innstillinger ble vellykket lagret."
1977
  msgstr[1] ""
1978
+ "Innstillingene over ble ikke lagret. Andre innstillinger ble vellykket "
1979
+ "lagret."
1980
 
1981
  #
1982
  #: ../lib/tribe-settings.class.php:509
2010
  #, php-format
2011
  msgid "No events scheduled for <strong>%s</strong>. Please try another day."
2012
  msgstr ""
2013
+ "Ingen aktiviteter planlagt for <strong>%s</strong>. Vennligst forsøk igjen "
2014
+ "med en annen dag."
2015
 
2016
  #
2017
  #: ../lib/tribe-template-factory.class.php:245
2018
  msgid "No upcoming events "
2019
+ msgstr "Ingen kommende aktiviteter"
2020
 
2021
  #
2022
  #: ../lib/tribe-template-factory.class.php:247
2023
  msgid "No matching events "
2024
+ msgstr "Ingen aktiviteter som passet med kriteriene"
2025
 
2026
  #
2027
  #: ../lib/tribe-template-factory.class.php:250
2028
  msgid "No previous events "
2029
+ msgstr "Ingen tidligere aktiviteter"
2030
 
2031
  #: ../lib/tribe-the-events-calendar-import.class.php:64
2032
  #, fuzzy, php-format
2067
  "upgraded. Please be sure to back up your database before initiating the "
2068
  "upgrade. This process can not be undone."
2069
  msgstr ""
2070
+ "Det ser ut til at du har noen eldre Events Calendar-data som må oppgraderes. "
2071
+ "Vennligst tilse at du har en sikkerhetskopi av databasen før du utfører "
2072
+ "oppgraderingen. Denne prosessen kan ikke angres."
2073
 
2074
  #: ../lib/tribe-the-events-calendar-import.class.php:88
2075
  msgid "Migrate Data!"
2078
  #: ../lib/tribe-the-events-calendar-import.class.php:166
2079
  #, php-format
2080
  msgid "You successfully migrated (%d) entries."
2081
+ msgstr "(%d) oppføringer ble migrert uten feil."
2082
 
2083
  #: ../lib/tribe-the-events-calendar-import.class.php:242
2084
  msgid "Install has 1 or more legacy event!"
2085
+ msgstr ""
2086
+ "Installasjonen har en eller flere aktiviteter med gammelt innholdsformat!"
2087
 
2088
  #: ../lib/tribe-validate.class.php:77 ../lib/tribe-validate.class.php:115
2089
  msgid "Invalid or incomplete field passed"
2090
+ msgstr "Ugyldig eller ufullstendig felt ble sendt"
2091
 
2092
  #: ../lib/tribe-validate.class.php:78 ../lib/tribe-validate.class.php:110
2093
  #: ../lib/tribe-validate.class.php:116
2096
 
2097
  #: ../lib/tribe-validate.class.php:109
2098
  msgid "Non-existant field validation function passed"
2099
+ msgstr "Ikke-eksisterende feltvalideringsfunksjon godkjent"
2100
 
2101
  #: ../lib/tribe-validate.class.php:110
2102
  msgctxt "non-existant function name passed for field validation"
2103
  msgid "with function name:"
2104
+ msgstr "med funksjonsnavnet:"
2105
 
2106
  #: ../lib/tribe-validate.class.php:135 ../lib/tribe-validate.class.php:153
2107
  #, php-format
2108
  msgid "%s must contain numbers and letters only"
2109
+ msgstr "%s må inneholde kun nummer og bokstaver"
2110
 
2111
  #: ../lib/tribe-validate.class.php:171
2112
  #, php-format
2113
  msgid "%s must contain numbers, letters and dots only"
2114
+ msgstr "%s må inneholde kun tall, bokstaver og punktum"
2115
 
2116
  #: ../lib/tribe-validate.class.php:187
2117
  #, php-format
2118
  msgid "%s must be a positive number."
2119
+ msgstr "%s må være et positivt tall."
2120
 
2121
  #: ../lib/tribe-validate.class.php:204
2122
  #, php-format
2123
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
2124
  msgstr ""
2125
+ "%s må være en gyldig slug (tall, bokstaver, bindestrek eller understrek)."
2126
 
2127
  #: ../lib/tribe-validate.class.php:221
2128
  #, php-format
2129
  msgid "%s must be a valid absolute URL."
2130
+ msgstr "%s må være en gyldig absolutt URL."
2131
 
2132
  #: ../lib/tribe-validate.class.php:239 ../lib/tribe-validate.class.php:258
2133
  #: ../lib/tribe-validate.class.php:279
2134
  #, php-format
2135
  msgid "%s must have a value that's part of its options."
2136
+ msgstr "%s må ha en verdi som kan velges gjennom dens innstillinger."
2137
 
2138
  #: ../lib/tribe-validate.class.php:295
2139
  #, php-format
2141
  "Comparison validation failed because no comparison value was provided, for "
2142
  "field %s"
2143
  msgstr ""
2144
+ "Sammenligningsvalidering feilet fordi ingen sammenligningsgrunnlag ble "
2145
+ "spesifisert, for felt %s"
2146
 
2147
  #: ../lib/tribe-validate.class.php:302
2148
  #, php-format
2152
  #: ../lib/tribe-validate.class.php:304
2153
  #, php-format
2154
  msgid "%s cannot be a duplicate"
2155
+ msgstr "%s kan ikke være et duplikat"
2156
 
2157
  #: ../lib/tribe-validate.class.php:322
2158
  #, php-format
2162
  #: ../lib/tribe-validate.class.php:386
2163
  #, php-format
2164
  msgid "%s must be a number between 0 and 21."
2165
+ msgstr "%s må være et nummer mellom 0 og 21."
2166
 
2167
  #: ../lib/tribe-validate.class.php:404
2168
  #, php-format
2169
  msgid ""
2170
  "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
2171
+ msgstr "%s må bestå av kun bokstaver, tall, bindestrek, understrek"
2172
 
2173
  #: ../lib/tribe-validate.class.php:422
2174
  #, php-format
2175
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
2176
  msgstr ""
2177
+ "%s må bestå av bokstaver, mellomrom, apostrofer, bindestrek og understrek."
2178
 
2179
  #: ../lib/tribe-validate.class.php:438
2180
  #, php-format
2181
  msgid "%s must consist of 5 numbers."
2182
+ msgstr "%s må bestå av 5 tall."
2183
 
2184
  #: ../lib/tribe-validate.class.php:454
2185
  #, php-format
2186
  msgid "%s must be a phone number."
2187
+ msgstr "%s må være et telefonnummer."
2188
 
2189
  #: ../lib/tribe-validate.class.php:472
2190
  msgid ""
2191
  "Country List must be formatted as one country per line in the following "
2192
  "format: <br>US, United States <br> UK, United Kingdom."
2193
  msgstr ""
2194
+ "Listen over land må være formatert med ett land per linje i følgende format: "
2195
  "<br>US, USA <br> UK, Storbritannia."
2196
 
2197
  #: ../lib/tribe-view-helpers.class.php:24
2357
 
2358
  #: ../lib/tribe-view-helpers.class.php:84
2359
  msgid "Cayman Islands"
2360
+ msgstr "Cayman-øyene"
2361
 
2362
  #: ../lib/tribe-view-helpers.class.php:85
2363
  msgid "Central African Republic"
2461
 
2462
  #: ../lib/tribe-view-helpers.class.php:110
2463
  msgid "Equatorial Guinea"
2464
+ msgstr "Equatorial Guinea"
2465
 
2466
  #: ../lib/tribe-view-helpers.class.php:111
2467
  msgid "Eritrea"
2505
 
2506
  #: ../lib/tribe-view-helpers.class.php:121
2507
  msgid "French Polynesia"
2508
+ msgstr "Fransk-Polynesia"
2509
 
2510
  #: ../lib/tribe-view-helpers.class.php:122
2511
  msgid "French Southern Territories"
2513
 
2514
  #: ../lib/tribe-view-helpers.class.php:123
2515
  msgid "Gabon"
2516
+ msgstr "Gabon"
2517
 
2518
  #: ../lib/tribe-view-helpers.class.php:124
2519
  msgid "Gambia"
2546
 
2547
  #: ../lib/tribe-view-helpers.class.php:131
2548
  msgid "Grenada"
2549
+ msgstr "Grenada"
2550
 
2551
  #: ../lib/tribe-view-helpers.class.php:132
2552
  msgid "Guadeloupe"
2553
+ msgstr "Guadeloupe"
2554
 
2555
  #: ../lib/tribe-view-helpers.class.php:133
2556
  msgid "Guam"
2566
 
2567
  #: ../lib/tribe-view-helpers.class.php:136
2568
  msgid "Guinea-Bissau"
2569
+ msgstr "Guinea-Bissau"
2570
 
2571
  #: ../lib/tribe-view-helpers.class.php:137
2572
  msgid "Guyana"
2573
+ msgstr "Guyana"
2574
 
2575
  #: ../lib/tribe-view-helpers.class.php:138
2576
  msgid "Haiti"
2578
 
2579
  #: ../lib/tribe-view-helpers.class.php:139
2580
  msgid "Heard And Mc Donald Islands"
2581
+ msgstr "Heard og McDonald-øyene"
2582
 
2583
  #: ../lib/tribe-view-helpers.class.php:140
2584
  msgid "Holy See (Vatican City State)"
2585
+ msgstr "Hellige Stol (Vatikanstaten)"
2586
 
2587
  #: ../lib/tribe-view-helpers.class.php:141
2588
  msgid "Honduras"
2610
 
2611
  #: ../lib/tribe-view-helpers.class.php:147
2612
  msgid "Iran (Islamic Republic Of)"
2613
+ msgstr "Iran (Den Islamske Republik)"
2614
 
2615
  #: ../lib/tribe-view-helpers.class.php:148
2616
  msgid "Iraq"
2650
 
2651
  #: ../lib/tribe-view-helpers.class.php:157
2652
  msgid "Kiribati"
2653
+ msgstr "Kiribati"
2654
 
2655
  #: ../lib/tribe-view-helpers.class.php:158
2656
  msgid "Korea, Democratic People's Republic Of"
2657
+ msgstr "Korea, Den Demokratiske Folkerepublikken"
2658
 
2659
  #: ../lib/tribe-view-helpers.class.php:159
2660
  msgid "Korea, Republic Of"
2661
+ msgstr "Korea, Republikk av"
2662
 
2663
  #: ../lib/tribe-view-helpers.class.php:160
2664
  msgid "Kuwait"
2670
 
2671
  #: ../lib/tribe-view-helpers.class.php:162
2672
  msgid "Lao People's Democratic Republic"
2673
+ msgstr "Lao Folkets Demokratiske Republikk"
2674
 
2675
  #: ../lib/tribe-view-helpers.class.php:163
2676
  msgid "Latvia"
2682
 
2683
  #: ../lib/tribe-view-helpers.class.php:165
2684
  msgid "Lesotho"
2685
+ msgstr "Lesotho"
2686
 
2687
  #: ../lib/tribe-view-helpers.class.php:166
2688
  msgid "Liberia"
2706
 
2707
  #: ../lib/tribe-view-helpers.class.php:171
2708
  msgid "Macau"
2709
+ msgstr "Macau"
2710
 
2711
  #: ../lib/tribe-view-helpers.class.php:172
2712
  msgid "Macedonia"
2718
 
2719
  #: ../lib/tribe-view-helpers.class.php:174
2720
  msgid "Malawi"
2721
+ msgstr "Malawi"
2722
 
2723
  #: ../lib/tribe-view-helpers.class.php:175
2724
  msgid "Malaysia"
2742
 
2743
  #: ../lib/tribe-view-helpers.class.php:180
2744
  msgid "Martinique"
2745
+ msgstr "Martinique"
2746
 
2747
  #: ../lib/tribe-view-helpers.class.php:181
2748
  msgid "Mauritania"
2749
+ msgstr "Mauritania"
2750
 
2751
  #: ../lib/tribe-view-helpers.class.php:182
2752
  msgid "Mauritius"
2753
+ msgstr "Mauritius"
2754
 
2755
  #: ../lib/tribe-view-helpers.class.php:183
2756
  msgid "Mayotte"
2757
+ msgstr "Mayotte"
2758
 
2759
  #: ../lib/tribe-view-helpers.class.php:184
2760
  msgid "Mexico"
2762
 
2763
  #: ../lib/tribe-view-helpers.class.php:185
2764
  msgid "Micronesia, Federated States Of"
2765
+ msgstr "Micronesia, De Føderale Stater av"
2766
 
2767
  #: ../lib/tribe-view-helpers.class.php:186
2768
  msgid "Moldova, Republic Of"
2782
 
2783
  #: ../lib/tribe-view-helpers.class.php:190
2784
  msgid "Montserrat"
2785
+ msgstr "Montserrat"
2786
 
2787
  #: ../lib/tribe-view-helpers.class.php:191
2788
  msgid "Morocco"
2802
 
2803
  #: ../lib/tribe-view-helpers.class.php:195
2804
  msgid "Nauru"
2805
+ msgstr "Nauru"
2806
 
2807
  #: ../lib/tribe-view-helpers.class.php:196
2808
  msgid "Nepal"
2838
 
2839
  #: ../lib/tribe-view-helpers.class.php:204
2840
  msgid "Niue"
2841
+ msgstr "Niue"
2842
 
2843
  #: ../lib/tribe-view-helpers.class.php:205
2844
  msgid "Norfolk Island"
2846
 
2847
  #: ../lib/tribe-view-helpers.class.php:206
2848
  msgid "Northern Mariana Islands"
2849
+ msgstr "De Nordlige Mariana-øyene"
2850
 
2851
  #: ../lib/tribe-view-helpers.class.php:207
2852
  msgid "Norway"
2862
 
2863
  #: ../lib/tribe-view-helpers.class.php:210
2864
  msgid "Palau"
2865
+ msgstr "Palau"
2866
 
2867
  #: ../lib/tribe-view-helpers.class.php:211
2868
  msgid "Panama"
2870
 
2871
  #: ../lib/tribe-view-helpers.class.php:212
2872
  msgid "Papua New Guinea"
2873
+ msgstr "Papua Ny-Guinea"
2874
 
2875
  #: ../lib/tribe-view-helpers.class.php:213
2876
  msgid "Paraguay"
2886
 
2887
  #: ../lib/tribe-view-helpers.class.php:216
2888
  msgid "Pitcairn"
2889
+ msgstr "Pitcairn"
2890
 
2891
  #: ../lib/tribe-view-helpers.class.php:217
2892
  msgid "Poland"
2906
 
2907
  #: ../lib/tribe-view-helpers.class.php:221
2908
  msgid "Reunion"
2909
+ msgstr "Gjensammenkomst"
2910
 
2911
  #: ../lib/tribe-view-helpers.class.php:222
2912
  msgid "Romania"
2922
 
2923
  #: ../lib/tribe-view-helpers.class.php:225
2924
  msgid "Saint Kitts And Nevis"
2925
+ msgstr "Saint Kitts And Nevis"
2926
 
2927
  #: ../lib/tribe-view-helpers.class.php:226
2928
  msgid "Saint Lucia"
2942
 
2943
  #: ../lib/tribe-view-helpers.class.php:230
2944
  msgid "Sao Tome And Principe"
2945
+ msgstr "Sao Tome og Principe"
2946
 
2947
  #: ../lib/tribe-view-helpers.class.php:231
2948
  msgid "Saudi Arabia"
2990
 
2991
  #: ../lib/tribe-view-helpers.class.php:242
2992
  msgid "South Georgia, South Sandwich Islands"
2993
+ msgstr "South Georgia, South Sandwich-øyene"
2994
 
2995
  #: ../lib/tribe-view-helpers.class.php:243
2996
  msgid "Spain"
3006
 
3007
  #: ../lib/tribe-view-helpers.class.php:246
3008
  msgid "St. Pierre And Miquelon"
3009
+ msgstr "St. Pierre og Miquelon"
3010
 
3011
  #: ../lib/tribe-view-helpers.class.php:247
3012
  msgid "Sudan"
3013
  msgstr "Sudan"
3014
 
3015
  #: ../lib/tribe-view-helpers.class.php:248
3016
+ #, fuzzy
3017
  msgid "Suriname"
3018
+ msgstr "Etternavn"
3019
 
3020
  #: ../lib/tribe-view-helpers.class.php:249
3021
  msgid "Svalbard And Jan Mayen Islands"
3360
  #
3361
  #: ../lib/widget-list.class.php:21
3362
  msgid "A widget that displays upcoming events."
3363
+ msgstr "En widget som viser kommende aktiviteter"
3364
 
3365
  #: ../lib/widget-list.class.php:27
3366
  msgid "Events List"
3367
+ msgstr "Aktivitetsliste"
3368
 
3369
+ #: ../lib/widget-list.class.php:124
3370
  msgid "View All Events"
3371
+ msgstr "Vis alle Aktiviteter"
3372
 
3373
+ #: ../lib/widget-list.class.php:127
3374
  msgid "There are no upcoming events at this time."
3375
  msgstr "Det finnes for tiden ingen kommende aktiviteter"
3376
 
3377
+ #: ../lib/template-classes/month.php:102
3378
  #, php-format
3379
  msgid ""
3380
  "There were no results found for <strong>\"%s\"</strong> this month. Try "
3385
 
3386
  #: ../lib/template-classes/single-event.php:99
3387
  msgid "This event has passed."
3388
+ msgstr "Denne aktiviteten er avsluttet."
3389
 
3390
  #: ../lib/tickets/tribe-tickets-attendees.php:67
3391
  msgid "Order #"
3405
 
3406
  #: ../lib/tickets/tribe-tickets-attendees.php:71
3407
  msgid "Ticket type"
3408
+ msgstr "Billettype"
3409
 
3410
  #: ../lib/tickets/tribe-tickets-attendees.php:72
3411
  #: ../views/tickets/email.php:316
3412
  msgid "Ticket #"
3413
+ msgstr "Billett #"
3414
 
3415
  #: ../lib/tickets/tribe-tickets-attendees.php:73
3416
  #: ../views/tickets/email.php:328
3421
  #: ../lib/tickets/tribe-tickets-attendees.php:144
3422
  #: ../lib/tickets/tribe-tickets-attendees.php:200
3423
  msgid "Check in"
3424
+ msgstr "Sjekk inn"
3425
 
3426
  #: ../lib/tickets/tribe-tickets-attendees.php:145
3427
  #: ../lib/tickets/tribe-tickets-attendees.php:200
3428
  msgid "Undo Check in"
3429
+ msgstr "Angre Innsjekking"
3430
 
3431
  #: ../lib/tickets/tribe-tickets-attendees.php:179
3432
  msgid "Print"
3440
  #
3441
  #: ../lib/tickets/tribe-tickets-attendees.php:181
3442
  msgid "Export"
3443
+ msgstr "Eksportering"
3444
 
3445
  #: ../lib/tickets/tribe-tickets-attendees.php:187
3446
  msgid "Filter by ticket #, order # or security code"
3447
+ msgstr "Filtrér etter billett #, ordre # eller sikkerhetskode"
3448
 
3449
  #: ../lib/tickets/tribe-tickets-metabox.php:24
3450
  msgid "Tickets"
3451
+ msgstr "Billetter"
3452
 
3453
  #: ../lib/tickets/tribe-tickets-metabox.php:62
3454
  msgid "Ticket header image"
3455
+ msgstr "Billett Hovedbilde"
3456
 
3457
  #: ../lib/tickets/tribe-tickets-metabox.php:62
3458
  msgid "Set as ticket header"
3459
+ msgstr "Bruk som overskrift på billett"
3460
 
3461
  #: ../lib/tickets/tribe-tickets-pro.php:107
3462
  msgid "You need to select a user or type a valid email address"
3463
+ msgstr "Du må velge en bruker eller taste inn en gyldig e-postadresse"
3464
 
3465
  #: ../lib/tickets/tribe-tickets-pro.php:108
3466
  msgid "Sending..."
3467
+ msgstr "Sender"
3468
 
3469
  #: ../lib/tickets/tribe-tickets-pro.php:136
3470
  msgid "Columns"
3476
  "selection works in the table below, in the email, for print and for the CSV "
3477
  "export."
3478
  msgstr ""
3479
+ "Du kan benytte Skjerminnstillinger for å velge hvilke kolonner du vil vise. "
3480
+ "Valget vil gjelde i tabellen under, i e-posten, for utskrift og CSV-"
3481
+ "eksportering."
3482
 
3483
  #: ../lib/tickets/tribe-tickets-pro.php:258
3484
  msgid "attendees"
3487
  #: ../lib/tickets/tribe-tickets-pro.php:308
3488
  #, php-format
3489
  msgid "Attendee List for: %s"
3490
+ msgstr "Oppmøteliste for: %s"
3491
 
3492
+ #: ../lib/tickets/tribe-tickets.php:298
3493
  msgid "Your ticket has been saved."
3494
+ msgstr "Din billett er nå lagret"
3495
 
3496
+ #: ../lib/tickets/tribe-tickets.php:375
3497
  msgid "Your ticket has been deleted."
3498
+ msgstr "Din billett er nå slettet"
3499
 
3500
  #: ../public/advanced-functions/meta.php:35
3501
  msgid "Start:"
3525
  #
3526
  #: ../public/advanced-functions/meta.php:295
3527
  msgid "Event Tags:"
3528
+ msgstr "Merkelapper (tags) for Aktivitet:"
3529
 
3530
  #: ../public/advanced-functions/meta.php:321
3531
  msgid "Origin:"
3540
  msgid "Category"
3541
  msgstr "Kategori"
3542
 
3543
+ #: ../public/template-tags/general.php:307
3544
  msgid "Tags:"
3545
  msgstr "Merknad:"
3546
 
3547
  #
3548
+ #: ../public/template-tags/general.php:394
3549
  msgid "Loading Events"
3550
+ msgstr "Laster inn Aktiviteter"
3551
 
3552
+ #: ../public/template-tags/general.php:532
3553
  msgid "Free"
3554
  msgstr "Gratis"
3555
 
3556
  #
3557
+ #: ../public/template-tags/general.php:704
3558
  msgid "Recurring Event"
3559
+ msgstr "Gjentakende Aktivitet"
3560
 
3561
+ #: ../public/template-tags/general.php:707
3562
  msgid "(See all)"
3563
  msgstr "(Vis alle)"
3564
 
3565
+ #: ../public/template-tags/general.php:978
3566
  #, php-format
3567
  msgid "Calendar powered by %sThe Events Calendar%s"
3568
  msgstr "Kalender drives av %sThe Events Calendar%s"
3575
  #: ../public/template-tags/loop.php:158
3576
  #, php-format
3577
  msgid "Events for %1$s through %2$s"
3578
+ msgstr "Aktiviteter for %1$s til og med %2$s"
3579
 
3580
  #
3581
  #: ../public/template-tags/loop.php:171
3585
  #: ../public/template-tags/options.php:20
3586
  #, php-format
3587
  msgid "Your current Events URL is %s"
3588
+ msgstr "Din nåværende Aktivitets-URL er %s"
3589
 
3590
  #: ../public/template-tags/options.php:31
3591
  #, php-format
3593
  "You <strong>cannot</strong> use the same slug as above. The above should "
3594
  "ideally be plural, and this singular.<br />Your single Event URL is like: %s"
3595
  msgstr ""
3596
+ "Du <strong>kan ikke</strong> benytte samme kortlenke som vist over. Ordet du "
3597
+ "ser over burde idéelt sett være flertallsbøyd, og den aktuelle i entall.<br /"
3598
+ ">Din enkle Aktivitets-URL er: %s"
3599
 
3600
  #
3601
  #: ../views/single-event.php:23
3602
  msgid "&laquo; All Events"
3603
+ msgstr "&laquo; Alle Aktiviteter"
3604
 
3605
  #
3606
  #: ../views/single-event.php:42 ../views/single-event.php:73
3607
  msgid "Event Navigation"
3608
+ msgstr "Aktivitetsnavigering"
3609
 
3610
  #
3611
  #: ../views/list/nav.php:16
3612
  msgid "Events List Navigation"
3613
+ msgstr "Navigering i Aktivitetslisten"
3614
 
3615
  #: ../views/list/single-event.php:76
3616
  msgid "Find out more"
3617
  msgstr "Finn ut mer"
3618
 
3619
  #
3620
+ #: ../views/modules/bar.php:31 ../views/modules/bar.php:61
3621
  msgid "Find Events"
3622
  msgstr "Finn Aktivitet"
3623
 
3624
  #: ../views/modules/bar.php:38
3625
  msgid "Event Views Navigation"
3626
+ msgstr "Navigering i Aktivitetsvisning"
3627
 
3628
  #
3629
  #: ../views/modules/bar.php:39
3633
  #
3634
  #: ../views/month/nav.php:18
3635
  msgid "Calendar Month Navigation"
3636
+ msgstr "Navigering etter Kalendermåned"
3637
 
3638
  #
3639
  #: ../views/tickets/attendees-email.php:25
3640
  msgid "Attendee List"
3641
+ msgstr "Deltakerliste"
3642
 
3643
  #: ../views/tickets/email.php:39
3644
  msgid "Your tickets"
3645
+ msgstr "Dine billetter"
3646
 
3647
  #: ../views/tickets/email.php:320
3648
  msgid "Ticket Type"
3649
+ msgstr "Billettype"
3650
 
3651
  #: ../views/tickets/email.php:324
3652
  msgid "Purchaser"
3701
  #~ "har problemer, så legg inn en tråd på %s på WordPress.org. Vi sjekker "
3702
  #~ "forumet en gang i uken for å se etter legitime feilrapporter og gjøre det "
3703
  #~ "vi kan for å hjelpe brukerne.</p>"
3704
+
lang/tribe-events-calendar-nl_NL.mo CHANGED
Binary file
lang/tribe-events-calendar-nl_NL.po CHANGED
@@ -5,11 +5,11 @@ 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-07-02 11:27-0800\n"
10
- "Last-Translator: Nico_wsM <nico@weerstationmaurik.nl>\n"
11
  "Language-Team: Modern Tribe, Inc. <pro@tri.be>\n"
12
- "Language: en_US\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
@@ -22,7 +22,6 @@ msgstr ""
22
  "X-Generator: Poedit 1.5.5\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
25
- #
26
  #: ../admin-views/app-shop.php:4
27
  msgid "Tribe Event Add-Ons"
28
  msgstr "Tribe Evenementen Add-Ons"
@@ -33,20 +32,19 @@ msgstr "Versie"
33
 
34
  #: ../admin-views/app-shop.php:53
35
  msgid "Last Update"
36
- msgstr "Laatste Update"
37
 
38
  #: ../admin-views/event-sidebar-options.php:11
39
  msgid "Hide From Event Listings"
40
- msgstr "Verberg in Evenementen Lijsten"
41
 
42
  #: ../admin-views/event-sidebar-options.php:12
43
  msgid "Sticky in Calendar View"
44
- msgstr "Sticky in Kalender Weergave"
45
 
46
- #
47
  #: ../admin-views/events-audit-trail.php:41
48
  msgid "Auditing Information"
49
- msgstr "Auditing Informatie"
50
 
51
  #: ../admin-views/events-audit-trail.php:47
52
  msgid "Created by:"
@@ -54,11 +52,11 @@ msgstr "Gemaakt door:"
54
 
55
  #: ../admin-views/events-audit-trail.php:51
56
  msgid "Audit Trail:"
57
- msgstr "Audit Voortgang:"
58
 
59
  #: ../admin-views/events-meta-box.php:26
60
  msgid "Event Time &amp; Date"
61
- msgstr "Evenement Tijd &amp; Datum"
62
 
63
  #: ../admin-views/events-meta-box.php:32
64
  msgid ""
@@ -70,37 +68,33 @@ msgstr ""
70
  "op te slaan veranderen alle toekomstige evenementen. Als je niet alle "
71
  "evenementen wilde wijzigen, dien je de pagina te verversen."
72
 
73
- #
74
  #: ../admin-views/events-meta-box.php:35
75
  msgid "All Day Event:"
76
- msgstr "Hele dag Evenement"
77
 
78
- #
79
  #: ../admin-views/events-meta-box.php:39
80
  msgid "Start Date &amp; Time:"
81
- msgstr "Start Datum &amp; Tijd:"
82
 
83
  #: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
84
  msgid "YYYY-MM-DD"
85
  msgstr "JJJJ-MM-DD"
86
 
87
- #
88
  #: ../admin-views/events-meta-box.php:60
89
  msgid "End Date &amp; Time:"
90
- msgstr "Eind Datum &amp; Tijd:"
91
 
92
  #: ../admin-views/events-meta-box.php:85
93
  msgid "Event Location Details"
94
- msgstr "Evenement Locatie Gegevens"
95
 
96
  #: ../admin-views/events-meta-box.php:93
97
  msgid "Event Organizer Details"
98
- msgstr "Evenement Organisator Gegevens"
99
 
100
- #
101
  #: ../admin-views/events-meta-box.php:101
102
  msgid "Event Website"
103
- msgstr "Evenement Website"
104
 
105
  #: ../admin-views/events-meta-box.php:104
106
  msgid "URL:"
@@ -108,11 +102,11 @@ msgstr "URL:"
108
 
109
  #: ../admin-views/events-meta-box.php:115
110
  msgid "Event Cost"
111
- msgstr "Evenement kosten"
112
 
113
  #: ../admin-views/events-meta-box.php:118
114
  msgid "Currency Symbol:"
115
- msgstr "Valuta Symbool:"
116
 
117
  #: ../admin-views/events-meta-box.php:122
118
  #: ../public/advanced-functions/meta.php:270
@@ -121,11 +115,11 @@ msgstr "Kosten:"
121
 
122
  #: ../admin-views/events-meta-box.php:127
123
  msgid "Enter a 0 for events that are free or leave blank to hide the field."
124
- msgstr "Voer 0 in voor gratis Evenementen of laat leeg om niet weer te geven."
125
 
126
  #: ../admin-views/organizer-meta-box.php:12
127
  msgid "Organizer Name:"
128
- msgstr "Naam van de Organisator:"
129
 
130
  #: ../admin-views/organizer-meta-box.php:19
131
  #: ../admin-views/venue-meta-box.php:93
@@ -147,30 +141,29 @@ msgstr "Website:"
147
  #: ../admin-views/organizer-meta-box.php:27
148
  #: ../public/advanced-functions/meta.php:432
149
  msgid "Email:"
150
- msgstr "Email:"
151
 
152
  #: ../admin-views/recurrence-dialog.php:13
153
  msgid ""
154
  "Would you like to change only this instance of the event, or all future "
155
  "events in this series?"
156
  msgstr ""
157
- "Will je alleen dit evenement veranderen of ook alle toekomstige evenementen "
158
  "in de serie?"
159
 
160
  #: ../admin-views/recurrence-dialog.php:15
161
  #: ../admin-views/recurrence-dialog.php:23
162
  msgid "Only This Event:"
163
- msgstr "Alleen dit Evenement"
164
 
165
  #: ../admin-views/recurrence-dialog.php:15
166
  msgid "All other future events in the series will remain the same."
167
  msgstr "Alle toekomstige evenementen in de serie blijven onverandered."
168
 
169
- #
170
  #: ../admin-views/recurrence-dialog.php:16
171
  #: ../admin-views/recurrence-dialog.php:24
172
  msgid "All Events:"
173
- msgstr "Alle Evenementen:"
174
 
175
  #: ../admin-views/recurrence-dialog.php:16
176
  msgid ""
@@ -185,13 +178,13 @@ msgid ""
185
  "Would you like to delete only this instance of the event, or all future "
186
  "events in this series?"
187
  msgstr ""
188
- "Wil je alleen dit evenement verwijderen of ook alle toekomstige evenmenten "
189
  "in de serie?"
190
 
191
  #: ../admin-views/recurrence-dialog.php:23
192
  msgid "All other future events in the series will not be deleted."
193
  msgstr ""
194
- "Alle andere toekomstige evenementen in de serie worden niet verwijdered."
195
 
196
  #: ../admin-views/recurrence-dialog.php:24
197
  msgid "All future events in the series will be deleted."
@@ -199,21 +192,19 @@ msgstr "Alle toekomstige evenementen in de serie worden verwijderd."
199
 
200
  #: ../admin-views/tribe-options-display.php:4
201
  msgid "Default Events Template"
202
- msgstr "Standaard Evenementen template"
203
 
204
  #: ../admin-views/tribe-options-display.php:5
205
  msgid "Default Page Template"
206
- msgstr "Standaard Pagina template"
207
 
208
- #
209
  #: ../admin-views/tribe-options-display.php:29
210
  msgid "Display Settings"
211
- msgstr "Weergave Instellingen"
212
 
213
- # added comment "All documentation is in english." to this string.
214
- # Orginal english string has textual error (2x our in href) and too many closing </p>.
215
  #: ../admin-views/tribe-options-display.php:34
216
- #, fuzzy, php-format
217
  msgid ""
218
  "<p>The settings below control the display of your calendar. If things don't "
219
  "look right, try switching between the three style sheet options or pick a "
@@ -224,66 +215,64 @@ msgid ""
224
  "plugin from Github</a></p>"
225
  msgstr ""
226
  "<p>De instellingen hieronder zijn voor de weergave van de kalender. Als het "
227
- "er niet goed uitziet probeer dan te schakelen tussen de drie stylesheet "
228
- "opties of kies een pagina template van je theme. Er zullen situaties "
229
- "voorkomen waarbij geen enkel standaard template 100&#37; perfect is. Kijk "
230
- "naar <a href=\"%s\">onze themer's guide</a> voor instructies over handmatige "
231
- "modificaties. Wil je een nieuwe weergave maken? Bekijk dan de <a href=\"%s"
232
- "\">Sample Agenda View plugin from Github</a> Alle documentatie is in het "
233
- "engels!</p>"
234
-
235
- #
236
  #: ../admin-views/tribe-options-display.php:49
237
  msgid "Basic Template Settings"
238
- msgstr "Basis Template Instellingen"
239
 
240
- #
241
  #: ../admin-views/tribe-options-display.php:53
242
  msgid "Default stylesheet used for events templates"
243
- msgstr "Standaard stylesheet voor evenementen templates"
244
 
245
  #: ../admin-views/tribe-options-display.php:56
246
  msgid "Skeleton Styles"
247
- msgstr "Basis Styles"
248
 
249
  #: ../admin-views/tribe-options-display.php:58
250
  msgid ""
251
  "Only includes enough css to achieve complex layouts like calendar and week "
252
  "view."
253
  msgstr ""
 
 
254
 
255
  #: ../admin-views/tribe-options-display.php:60
256
  msgid "Full Styles"
257
- msgstr "Volledige Styles"
258
 
259
  #: ../admin-views/tribe-options-display.php:62
260
  msgid "More detailed styling, tries to grab styles from your theme."
261
- msgstr ""
262
 
263
- #
264
  #: ../admin-views/tribe-options-display.php:64
265
  msgid "Tribe Events Styles"
266
- msgstr "Tribe Evenementen Styles"
267
 
268
  #: ../admin-views/tribe-options-display.php:66
269
  msgid "A fully designed and styled theme for your events pages."
270
- msgstr ""
271
 
272
- #
273
  #: ../admin-views/tribe-options-display.php:73
274
  msgid "Events template"
275
- msgstr "Evenementen template"
276
 
277
  #: ../admin-views/tribe-options-display.php:74
278
  msgid ""
279
  "Choose a page template to control the appearance of your calendar and event "
280
  "content."
281
  msgstr ""
282
- "Kies een pagina template voor de weergave van je kalender en evenementen."
283
 
284
  #: ../admin-views/tribe-options-display.php:82
285
  msgid "Enable event views"
286
- msgstr "Evenementen views"
287
 
288
  #: ../admin-views/tribe-options-display.php:83
289
  msgid "You must select at least one view."
@@ -291,65 +280,59 @@ msgstr "Je moet minstens één view selecteren"
291
 
292
  #: ../admin-views/tribe-options-display.php:90
293
  msgid "Default view"
294
- msgstr "Standaard view"
295
 
296
  #: ../admin-views/tribe-options-display.php:98
297
- #, fuzzy
298
  msgid "Disable the Event Search Bar"
299
- msgstr "Gebruik de Evenementen Zoekbalk"
300
 
301
  #: ../admin-views/tribe-options-display.php:99
302
- #, fuzzy
303
  msgid "Check this to use the classic header."
304
- msgstr "Zet het vinkje uit om de klassieke header te gebruiken."
305
 
306
- #
307
  #: ../admin-views/tribe-options-display.php:105
308
  msgid "Advanced Template Settings"
309
- msgstr "Geavanceerde Template Instellingen"
310
 
311
- #
312
  #: ../admin-views/tribe-options-display.php:109
313
  msgid "Add HTML before event content"
314
- msgstr "Voeg HTML toe voor de evenement inhoud"
315
 
316
  #: ../admin-views/tribe-options-display.php:110
317
  msgid ""
318
  "If you are familiar with HTML, you can add additional code before the event "
319
  "template. Some themes may require this to help with styling or layout."
320
  msgstr ""
321
- "Als je op de hoogte bent van HTML kun je extra code toevoegen voor het "
322
- "evenement template. Sommige themes hebben dit nodig voor styling of layout."
323
 
324
- #
325
  #: ../admin-views/tribe-options-display.php:115
326
  msgid "Add HTML after event content"
327
- msgstr "Voeg HTML toe na de evenement inhoud"
328
 
329
  #: ../admin-views/tribe-options-display.php:116
330
  msgid ""
331
  "If you are familiar with HTML, you can add additional code after the event "
332
  "template. Some themes may require this to help with styling or layout."
333
  msgstr ""
334
- "Als je op de hoogte bent van HTML kun je extra code toevoegen na het "
335
- "evenement template. Sommige themes hebben dit nodig voor styling of layout."
336
 
337
  #: ../admin-views/tribe-options-general.php:14
338
  msgid "Finding & extending your calendar."
339
- msgstr "Vinden & Uitbreiden van je kalender."
340
 
341
  #: ../admin-views/tribe-options-general.php:19
342
  msgid "Finding your calendar."
343
- msgstr "Vindt je kalender."
344
 
345
- #
346
  #: ../admin-views/tribe-options-general.php:24
347
  msgid "Where's my calendar?"
348
  msgstr "Waar is mijn kalender?"
349
 
350
  #: ../admin-views/tribe-options-general.php:24
351
  msgid "Right here"
352
- msgstr "Hier!"
353
 
354
  #: ../admin-views/tribe-options-general.php:28
355
  msgid ""
@@ -359,7 +342,6 @@ msgstr ""
359
  "Op zoek naar extra functionaliteit waaronder terugkerende evenementen, "
360
  "gemeenschappelijke evenementen, ticketverkoop en meer?"
361
 
362
- #
363
  #: ../admin-views/tribe-options-general.php:28
364
  msgid "Check out the available add-ons"
365
  msgstr "Bekijk de beschikbare add-ons"
@@ -376,15 +358,16 @@ msgid ""
376
  "pointing to The Events Calendar project."
377
  msgstr ""
378
  "Denk je \"Wow, deze plugin is verbazingwekkend! Ik moet Modern Tribe "
379
- "bedanken voor hun harde werk.\" De grootste dank waar we om kunnen vragen "
380
- "is erkenning. Voeg een kleine tekst link toe aan je kalender die verwijst "
381
- "naar het 'The Events Calendar' project."
382
 
383
  #: ../admin-views/tribe-options-general.php:37
384
  #: ../admin-views/tribe-options-general.php:42
385
  msgid "See an example of the link"
386
  msgstr "Bekijk een voorbeeld van deze link"
387
 
 
388
  #: ../admin-views/tribe-options-general.php:42
389
  msgid ""
390
  "Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
@@ -393,19 +376,17 @@ msgid ""
393
  "pointing to The Events Calendar project."
394
  msgstr ""
395
  "Denk je \"Wow, deze plugin is verbazingwekkend! Ik moet Modern Tribe "
396
- "bedanken voor hun harde werk.\" De grootste dank waar we voor kunnen vragen "
397
- "is erkenning. Voeg een kleine tekst link toe aan je kalender die verwijst "
398
- "naar het 'The Events Calendar' project."
399
 
400
- #
401
  #: ../admin-views/tribe-options-general.php:47
402
  msgid "Show The Events Calendar link"
403
- msgstr "Laat de 'the Events Calender Link' zien"
404
 
405
- #
406
  #: ../admin-views/tribe-options-general.php:61
407
  msgid "General Settings"
408
- msgstr "Algemene Instellingen"
409
 
410
  #: ../admin-views/tribe-options-general.php:65
411
  msgid "Number of events to show per page"
@@ -413,24 +394,23 @@ msgstr "Aantal evenementen per pagina"
413
 
414
  #: ../admin-views/tribe-options-general.php:72
415
  msgid "Use Javascript to control page load"
416
- msgstr "Gebruik Javascript om pagina te laden"
417
 
418
  #: ../admin-views/tribe-options-general.php:73
419
  msgid "Enable ajax to live refresh content."
420
  msgstr "Gebruik ajax om de inhoud live te verversen."
421
 
422
- #
423
  #: ../admin-views/tribe-options-general.php:79
424
  msgid "Show comments"
425
  msgstr "Laat reacties zien"
426
 
427
  #: ../admin-views/tribe-options-general.php:80
428
  msgid "Enable comments on event pages."
429
- msgstr "Sta reacties op evenementen pagina's toe."
430
 
431
  #: ../admin-views/tribe-options-general.php:86
432
  msgid "Include events in main blog loop"
433
- msgstr "Gebruik evenementen in de Blog Loop"
434
 
435
  #: ../admin-views/tribe-options-general.php:87
436
  msgid ""
@@ -438,12 +418,12 @@ msgid ""
438
  "will also continue to appear on the default events page."
439
  msgstr ""
440
  "Laat evenementen zien met de overige berichten. Als dit is aangevinkt zullen "
441
- "de evenementen nog steeds op de standaard evenementen pagina verschijnen."
442
 
443
  #: ../admin-views/tribe-options-general.php:93
444
  #: ../admin-views/tribe-options-general.php:99
445
  msgid "Events URL slug"
446
- msgstr "Evenementen URL slug"
447
 
448
  #: ../admin-views/tribe-options-general.php:94
449
  #, php-format
@@ -458,27 +438,24 @@ msgstr ""
458
  "%s</a>. Om de slug te bewerken, <a href=\"%soptions-permalink.php\">vink "
459
  "hier de aangepaste structuur aan.</a>."
460
 
461
- #
462
  #: ../admin-views/tribe-options-general.php:106
463
  #: ../public/template-tags/options.php:20
464
  msgid "The slug used for building the events URL."
465
- msgstr "De slug gebruikt voor het opbouwen van de evenementen URL."
466
 
467
  #: ../admin-views/tribe-options-general.php:106
468
  #, php-format
469
  msgid "Your current events URL is: %s"
470
- msgstr "Je huidige evenementen URL is: %s"
471
 
472
- #
473
  #: ../admin-views/tribe-options-general.php:111
474
  #: ../public/template-tags/options.php:43
475
  msgid "Here is the iCal feed URL for your events:"
476
- msgstr "Hier is het iCal bestand URL voor je evenementen:"
477
 
478
- #
479
  #: ../admin-views/tribe-options-general.php:116
480
  msgid "Single event URL slug"
481
- msgstr "Evenement URL slug"
482
 
483
  #: ../admin-views/tribe-options-general.php:123
484
  #, php-format
@@ -486,12 +463,12 @@ msgid ""
486
  "The above should ideally be plural, and this singular.<br />Your single "
487
  "event URL is: %s"
488
  msgstr ""
489
- "Bovenstaande is idealiter meervoud en dit enkelvoud.<br />Je evenement URL "
490
  "is: %s"
491
 
492
  #: ../admin-views/tribe-options-general.php:128
493
  msgid "End of day cutoff"
494
- msgstr "Einde dag begrenzing"
495
 
496
  #: ../admin-views/tribe-options-general.php:136
497
  msgid ""
@@ -499,55 +476,52 @@ msgid ""
499
  "avoid awkwardly adding your event to the next day."
500
  msgstr ""
501
  "Heb je evenementen die doorgaan na middernacht? Stel het einde van de dag "
502
- "uit om te voorkomen dat je evenement ook op de volgende dag verschijnt."
503
 
504
  #: ../admin-views/tribe-options-general.php:141
505
  msgid "Default currency symbol"
506
- msgstr "Standaard valuta symbool"
507
 
508
  #: ../admin-views/tribe-options-general.php:142
509
  msgid ""
510
  "Set the default currency symbol for event costs. Note that this only impacts "
511
  "future events, and changes made will not apply retroactively."
512
  msgstr ""
513
- "Stel de standaard valuta voor evenements kosten in. Dit geldt vanaf nu en "
514
- "heeft geen wijzigingen van eerdere evenementen tot gevolg."
515
 
516
- #
517
  #: ../admin-views/tribe-options-general.php:149
518
  msgid "Map Settings"
519
- msgstr "Map Instellingen"
520
 
521
  #: ../admin-views/tribe-options-general.php:153
522
  msgid "Enable Google Maps"
523
- msgstr "Sta Google Maps toe"
524
 
525
  #: ../admin-views/tribe-options-general.php:154
526
  msgid "Check to enable maps for events and venues."
527
- msgstr "Vink aan om maps te laten zien bij evenementen en locaties."
528
 
529
  #: ../admin-views/tribe-options-general.php:161
530
- #, fuzzy
531
  msgid "Google Maps default zoom level"
532
- msgstr "Google Maps Standaard Zoom Level"
533
 
534
  #: ../admin-views/tribe-options-general.php:162
535
  msgid "0 = zoomed out; 21 = zoomed in."
536
- msgstr "0=uitgezoomd (wereld); 21 = ingezoomed (straat)"
537
 
538
- #
539
  #: ../admin-views/tribe-options-general.php:170
540
  msgid "Miscellaneous Settings"
541
- msgstr "Overige Instellingen"
542
 
543
  #: ../admin-views/tribe-options-general.php:174
544
  msgid "Duplicate Venues &amp; Organizers"
545
- msgstr "Duplicaat Locaties &amp; Organisatoren"
546
 
547
  #: ../admin-views/tribe-options-general.php:174
548
  #: ../lib/tribe-amalgamator.php:252
549
  msgid "Merge Duplicates"
550
- msgstr "Samenvoegen Duplicaten"
551
 
552
  #: ../admin-views/tribe-options-general.php:174
553
  msgid ""
@@ -555,14 +529,13 @@ msgid ""
555
  "Calendar from a pre-3.0 version. Click this button to automatically merge "
556
  "identical venues and organizers."
557
  msgstr ""
558
- "Je kunt duplicaat locaties en organisatoren vinden als je The Events "
559
- "Calendar upgrade van een eerdere versie. Klik op deze knop om de identieke "
560
  "locaties en organisatoren samen te voegen."
561
 
562
- #
563
  #: ../admin-views/tribe-options-general.php:179
564
  msgid "Debug mode"
565
- msgstr "Debug modus"
566
 
567
  #: ../admin-views/tribe-options-general.php:185
568
  #, php-format
@@ -572,10 +545,10 @@ msgid ""
572
  "browser, then we recommend that you install the %s and look for the \"Tribe"
573
  "\" tab in the debug output."
574
  msgstr ""
575
- "Vink deze optie aan om debug gegevens te loggen. Dit logt standaard naar je "
576
- "server's PHP error log. Als je de log berichten in je browser wilt bekijken "
577
- "stellen we voor dat je %s installeerd en de \"Tribe\" tab in de debug "
578
- "uitvoer bekijkt."
579
 
580
  #: ../admin-views/tribe-options-general.php:185
581
  msgid "Debug Bar Plugin"
@@ -584,17 +557,16 @@ msgstr "Debug Bar Plugin"
584
  #: ../admin-views/tribe-options-help.php:18
585
  msgctxt "not available"
586
  msgid "n/a"
587
- msgstr "nb [ Niet Beschikbaar ]"
588
 
589
  #: ../admin-views/tribe-options-help.php:19
590
  msgid "You need to upgrade!"
591
- msgstr "Je kunt upgraden!"
592
 
593
  #: ../admin-views/tribe-options-help.php:19
594
  msgid "You are up to date!"
595
- msgstr "De nieuwste versie is geladen!"
596
 
597
- #
598
  #: ../admin-views/tribe-options-help.php:42
599
  msgid "The Events Calendar PRO"
600
  msgstr "The Events Calendar PRO"
@@ -603,12 +575,10 @@ msgstr "The Events Calendar PRO"
603
  msgid "Eventbrite Tickets"
604
  msgstr "Eventbrite Tickets"
605
 
606
- #
607
  #: ../admin-views/tribe-options-help.php:50
608
  msgid "Community Events"
609
  msgstr "Community Events"
610
 
611
- #
612
  #: ../admin-views/tribe-options-help.php:54
613
  msgid "Facebook Events"
614
  msgstr "Facebook Events"
@@ -638,7 +608,7 @@ msgstr "Help"
638
 
639
  #: ../admin-views/tribe-options-help.php:83
640
  msgid "Tutorials"
641
- msgstr "Handleidingen"
642
 
643
  #: ../admin-views/tribe-options-help.php:87
644
  msgid "Release Notes"
@@ -778,14 +748,12 @@ msgid ""
778
  msgstr ""
779
 
780
  #: ../admin-views/tribe-options-help.php:135
781
- #, fuzzy, php-format
782
  msgid ""
783
  "If you find that you aren't getting the level of service you've come to "
784
  "expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
785
  "why. We'll do what we can to make it right."
786
  msgstr ""
787
- "Stuur ons een email op %s of tweet %s en vertel ons waarom. We zullen er "
788
- "alles aan doen om het op te lossen."
789
 
790
  #: ../admin-views/tribe-options-help.php:136
791
  msgid "More..."
@@ -797,21 +765,19 @@ msgid ""
797
  "for installing our labor of love!"
798
  msgstr ""
799
  "Hi! Wij zijn Modern Tribe en we zorgen voor die extra wow. Bedankt dat je "
800
- "ons liedeswerk hebt geinstalleerd!"
801
 
802
  #: ../admin-views/tribe-options-help.php:150
803
  msgid "Getting Started"
804
- msgstr "Vanaf de Start"
805
 
806
  #: ../admin-views/tribe-options-help.php:153
807
- #, fuzzy
808
  msgid "Support Resources To Help You Kick Ass"
809
- msgstr "Bronnen om vooruit te komen"
810
 
811
  #: ../admin-views/tribe-options-help.php:156
812
- #, fuzzy
813
  msgid "Forums: Because Everyone Needs A Buddy"
814
- msgstr "Iedereen heeft een buddy nodig"
815
 
816
  #: ../admin-views/tribe-options-help.php:159
817
  msgid "Not getting help?"
@@ -841,7 +807,7 @@ msgstr "Benodigd:"
841
 
842
  #: ../admin-views/tribe-options-help.php:175
843
  msgid "WordPress "
844
- msgstr "Wordpress"
845
 
846
  #: ../admin-views/tribe-options-help.php:176
847
  msgid "Wordpress.org Plugin Page"
@@ -868,32 +834,31 @@ msgstr "Premium Add-Ons"
868
 
869
  #: ../admin-views/tribe-options-help.php:195
870
  msgid "(Coming Soon!)"
871
- msgstr "(Coming Soon!)"
872
 
873
  #: ../admin-views/tribe-options-help.php:202
874
  msgid "News and Tutorials"
875
- msgstr "Nieuws en Handleidingen"
876
 
877
- #
878
  #: ../admin-views/tribe-options-network.php:14
879
  msgid "Network Settings"
880
- msgstr "Netwerk Instellingen"
881
 
882
  #: ../admin-views/tribe-options-network.php:18
883
  msgid ""
884
  "This is where all of the global network settings for Modern Tribe's The "
885
  "Events Calendar can be modified."
886
  msgstr ""
887
- "Hier kunnen alle globale netwerk instellingen voor Modern Tribe's The Events "
888
  "Calendar worden aangepast."
889
 
890
  #: ../admin-views/tribe-options-network.php:26
891
  msgid "Hide the following settings tabs on every site:"
892
- msgstr "Verberg de volgende Instellingen tab op iedere site:"
893
 
894
  #: ../admin-views/venue-meta-box.php:20
895
  msgid "Venue Name:"
896
- msgstr "Naam van de Locatie:"
897
 
898
  #: ../admin-views/venue-meta-box.php:27
899
  #: ../public/advanced-functions/meta.php:371
@@ -910,7 +875,7 @@ msgstr "Land:"
910
 
911
  #: ../admin-views/venue-meta-box.php:73
912
  msgid "State or Province:"
913
- msgstr "Provincie:"
914
 
915
  #: ../admin-views/venue-meta-box.php:76
916
  msgid "Select a State:"
@@ -922,11 +887,11 @@ msgstr "Postcode:"
922
 
923
  #: ../admin-views/venue-meta-box.php:112 ../admin-views/venue-meta-box.php:134
924
  msgid "Show Google Map:"
925
- msgstr "Geef Google maps weer:"
926
 
927
  #: ../admin-views/venue-meta-box.php:122 ../admin-views/venue-meta-box.php:144
928
  msgid "Show Google Maps Link:"
929
- msgstr "Geef Google Maps link weer:"
930
 
931
  #: ../admin-views/widget-admin-list.php:11
932
  msgid "Title:"
@@ -945,23 +910,21 @@ msgstr "De widget alléén weergeven als er toekomstige evenementen zijn:"
945
  msgid "Attendees"
946
  msgstr "Deelnemers"
947
 
948
- #
949
  #: ../admin-views/tickets/attendees.php:14
950
  msgid "Event Summary"
951
- msgstr "Evenement Samenvatting"
952
 
953
- #
954
  #: ../admin-views/tickets/attendees.php:22
955
  msgid "Event Details"
956
- msgstr "Evenement Gegevens"
957
 
958
  #: ../admin-views/tickets/attendees.php:24
959
  msgid "Start Date / Time:"
960
- msgstr "Begin Datum / Tijd:"
961
 
962
  #: ../admin-views/tickets/attendees.php:26
963
  msgid "End Date / Time:"
964
- msgstr "Eind Datum / Tijd:"
965
 
966
  #: ../admin-views/tickets/attendees.php:34
967
  msgid "Venue:"
@@ -969,17 +932,17 @@ msgstr "Locatie:"
969
 
970
  #: ../admin-views/tickets/attendees.php:52
971
  msgid "Ticket Sales"
972
- msgstr "Ticket Verkoop"
973
 
974
  #: ../admin-views/tickets/attendees.php:64 ../admin-views/tickets/list.php:67
975
  #, php-format
976
  msgid "Sold %d"
977
- msgstr "Verkocht %d"
978
 
979
  #: ../admin-views/tickets/attendees.php:66 ../admin-views/tickets/list.php:69
980
  #, php-format
981
  msgid "Sold %d of %d"
982
- msgstr "Verkocht %d van %d"
983
 
984
  #: ../admin-views/tickets/attendees.php:81
985
  msgid "Tickets sold:"
@@ -991,9 +954,8 @@ msgstr "Checked in:"
991
 
992
  #: ../admin-views/tickets/attendees.php:105
993
  msgid "Send the attendee list by email"
994
- msgstr "Verzend de deelnemers lijst per email"
995
 
996
- #
997
  #: ../admin-views/tickets/attendees.php:109
998
  msgid "Select a User:"
999
  msgstr "Selecteer een gebruiker:"
@@ -1006,10 +968,9 @@ msgstr "Selecteer..."
1006
  msgid "or"
1007
  msgstr "of"
1008
 
1009
- #
1010
  #: ../admin-views/tickets/attendees.php:114
1011
  msgid "Email Address:"
1012
- msgstr "Email Adres:"
1013
 
1014
  #: ../admin-views/tickets/list.php:21
1015
  msgid "Edit"
@@ -1038,12 +999,12 @@ msgid ""
1038
  "This event was created using Community Events. Are you sure you want to sell "
1039
  "tickets for it?"
1040
  msgstr ""
1041
- "Dit evenement is aangemaakt via Community Evenets. Wil je echt tickets "
1042
  "hiervoor verkopen?"
1043
 
1044
  #: ../admin-views/tickets/meta-box.php:32
1045
  msgid "Upload image for the ticket header"
1046
- msgstr "Upload afbeelding voor de ticket header"
1047
 
1048
  #: ../admin-views/tickets/meta-box.php:33
1049
  msgid ""
@@ -1051,26 +1012,23 @@ msgid ""
1051
  "then scaled for mobile. If you would like \"retina\" support use an image "
1052
  "sized to 1160px wide."
1053
  msgstr ""
1054
- "De maximum beeldmaten voor de email zijn 580px breed en hoog en hiervan "
1055
- "geschaald voor de mobiel. Voor \"retina\"\" ondersteuning gebruik je een "
1056
- "afbeelding tot 1160px breed."
1057
 
1058
- #
1059
  #: ../admin-views/tickets/meta-box.php:36
1060
  msgid "Select an Image"
1061
- msgstr "Selecteer een Afbeelding"
1062
 
1063
  #: ../admin-views/tickets/meta-box.php:44
1064
  msgid "Remove"
1065
  msgstr "Verwijder"
1066
 
1067
- #
1068
  #: ../admin-views/tickets/meta-box.php:62
1069
  #: ../admin-views/tickets/meta-box.php:72
1070
  msgid "Add new ticket"
1071
  msgstr "Voeg een nieuw ticket toe"
1072
 
1073
- #
1074
  #: ../admin-views/tickets/meta-box.php:73
1075
  msgid "Edit ticket"
1076
  msgstr "Bewerk ticket"
@@ -1079,35 +1037,32 @@ msgstr "Bewerk ticket"
1079
  msgid "Sell using:"
1080
  msgstr "Verkoop via:"
1081
 
1082
- #
1083
  #: ../admin-views/tickets/meta-box.php:96
1084
  msgid "Ticket Name:"
1085
- msgstr "Ticket naam:"
1086
 
1087
  #: ../admin-views/tickets/meta-box.php:103
1088
  msgid "Ticket Description:"
1089
- msgstr "Ticket Beschrijving:"
1090
 
1091
  #: ../admin-views/tickets/meta-box.php:112
1092
  msgid "Price:"
1093
  msgstr "Prijs:"
1094
 
1095
- #
1096
  #: ../admin-views/tickets/meta-box.php:124
1097
  msgid "Start sale:"
1098
- msgstr "Start verkoop:"
1099
 
1100
- #
1101
  #: ../admin-views/tickets/meta-box.php:148
1102
  msgid "End sale:"
1103
- msgstr "Eind verkoop:"
1104
 
1105
  #: ../admin-views/tickets/meta-box.php:170
1106
  msgid ""
1107
  "When will ticket sales occur? If you don't set a start/end date for sales, "
1108
  "tickets will be available from now until the event ends."
1109
  msgstr ""
1110
- "Wanneer is ticketverkoop mogelijk? Als je géén start/eind datum kiest zijn "
1111
  "tickets beschikbaar vanaf nu totdat het evenement is afgelopen."
1112
 
1113
  #: ../lib/the-events-calendar.class.php:491
@@ -1138,19 +1093,19 @@ msgid ""
1138
  "Events Calendar add-ons. Please %supdate now.%s"
1139
  msgstr ""
1140
  "Jouw versie van The Events Calendar is niet up-to-date met één van je The "
1141
- "Events Calendar Add-ons. Daarom graag nu %supdate.now.%s"
1142
 
1143
  #: ../lib/the-events-calendar.class.php:639
1144
- #, fuzzy, php-format
1145
  msgid ""
1146
  "The following plugins are out of date: <b>%s</b>. All add-ons contain "
1147
  "dependencies on The Events Calendar and will not function properly unless "
1148
  "paired with the right version. %sWant to pair an older version%s?"
1149
  msgstr ""
1150
- "De volgende plugins zijn out-of-date: <b>%s</b>. Graag nu %supdate now%s, "
1151
- "Alle add-ons berusten op The Events Calendar en zullen niet goed "
1152
- "functioneren tenzij samen met de juiste versie. %swil samewerken met een "
1153
- "ouder versie%s?"
1154
 
1155
  #: ../lib/the-events-calendar.class.php:703
1156
  #: ../lib/the-events-calendar.class.php:738
@@ -1159,7 +1114,7 @@ msgid "Licenses"
1159
  msgstr "Licenties"
1160
 
1161
  #: ../lib/the-events-calendar.class.php:707
1162
- #, fuzzy, php-format
1163
  msgid ""
1164
  "<p>The license key you received when completing your purchase from %s will "
1165
  "grant you access to support and updates until it expires. You do not need to "
@@ -1175,19 +1130,19 @@ msgid ""
1175
  "expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> "
1176
  "and click \"Check Again\".</p>"
1177
  msgstr ""
1178
- "<p>De licentie key die je ontving na het voltooien van de aankoop op %s "
1179
- "geeft je toegang tot support en updates totdat deze verloopt. Je hoeft de "
1180
- "key hieronder niet in te voeren om de plugins te laten werken, maar je moet "
1181
- "hem invoeren voor automatische udates. <strong>Vind je Licentie keys op <a "
1182
  "href=\"%s\">%s</a></strong>.</p> <p>Elke betaalde add-on heeft zijn eigen "
1183
- "unieke licentie key, paste deze in het juiste veld hieronder en wacht even "
1184
  "voor de validatie. Je weet dat alles goed is als de groene vervaldatum "
1185
  "verschijnt naast een \"valid\" bericht.</p> <p>Als je een rood bericht ziet "
1186
- "dat je key niet geldig is of er teveel installaties hebben plaatsgevonden, "
1187
- "bezoek dan [enter link to account/licenses] om je installaties te managen of "
1188
- "vernieuw/upgrade je licentie.</p><p>Zie je geen update maar verwacht je er "
1189
- "wel één? In Wordpress, ga naar <a href=\"%s\">Dashboard > Updates</a> en "
1190
- "klik \"Check Nogmaals\".</p>"
1191
 
1192
  #: ../lib/the-events-calendar.class.php:730
1193
  msgid "General"
@@ -1204,7 +1159,7 @@ msgid ""
1204
  "your WordPress install."
1205
  msgstr ""
1206
  "Sorry, The Events Calendat heeft Wordpress %s of hoger nodig. Upgrade je "
1207
- "Wordpress installatie."
1208
 
1209
  #: ../lib/the-events-calendar.class.php:785
1210
  #, php-format
@@ -1212,24 +1167,24 @@ msgid ""
1212
  "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
1213
  "about moving you to a newer version of PHP."
1214
  msgstr ""
1215
- "Sorry, The Events Calendar jeeft PHP %s of hoger nodig. Bespreek met je "
1216
  "webhost de mogelijkheid om een nieuwere versie te gebruiken."
1217
 
1218
  #: ../lib/the-events-calendar.class.php:1000 ../lib/widget-list.class.php:151
1219
  #: ../public/template-tags/loop.php:137
1220
  msgid "Upcoming Events"
1221
- msgstr "Toekomstige Evenementen"
1222
 
1223
  #: ../lib/the-events-calendar.class.php:1003
1224
  #: ../public/template-tags/loop.php:165
1225
  msgid "Past Events"
1226
- msgstr "Afgelopen Evenementen"
1227
 
1228
  #: ../lib/the-events-calendar.class.php:1008
1229
  #: ../lib/the-events-calendar.class.php:1015
1230
  #, php-format
1231
  msgid "Events for %s"
1232
- msgstr "Evenementen in %s"
1233
 
1234
  #: ../lib/the-events-calendar.class.php:1010
1235
  msgid "Events this month"
@@ -1238,7 +1193,7 @@ msgstr "Evenementen deze maand"
1238
  #: ../lib/the-events-calendar.class.php:1022
1239
  #, php-format
1240
  msgid "Events at %s"
1241
- msgstr "Evenementen op %s"
1242
 
1243
  #: ../lib/the-events-calendar.class.php:1041
1244
  msgid "No description has been entered for this event."
@@ -1270,23 +1225,23 @@ msgstr "Nieuwe toevoegen"
1270
 
1271
  #: ../lib/the-events-calendar.class.php:1343
1272
  msgid "Add New Event"
1273
- msgstr "Voeg een Nieuw Evenement toe"
1274
 
1275
  #: ../lib/the-events-calendar.class.php:1344
1276
  msgid "Edit Event"
1277
- msgstr "Bewerk Evenement"
1278
 
1279
  #: ../lib/the-events-calendar.class.php:1345
1280
  msgid "New Event"
1281
- msgstr "Nieuw Evenement"
1282
 
1283
  #: ../lib/the-events-calendar.class.php:1346
1284
  msgid "View Event"
1285
- msgstr "Bekijk Evenement"
1286
 
1287
  #: ../lib/the-events-calendar.class.php:1347
1288
  msgid "Search Events"
1289
- msgstr "Doorzoek Evenementen"
1290
 
1291
  #: ../lib/the-events-calendar.class.php:1348
1292
  msgid "No events found"
@@ -1308,23 +1263,23 @@ msgstr "Locatie"
1308
 
1309
  #: ../lib/the-events-calendar.class.php:1356
1310
  msgid "Add New Venue"
1311
- msgstr "Voeg de naam van de locatie toe"
1312
 
1313
  #: ../lib/the-events-calendar.class.php:1357
1314
  msgid "Edit Venue"
1315
- msgstr "Bewerk Locatie"
1316
 
1317
  #: ../lib/the-events-calendar.class.php:1358
1318
  msgid "New Venue"
1319
- msgstr "Nieuwe Locatie"
1320
 
1321
  #: ../lib/the-events-calendar.class.php:1359
1322
  msgid "View Venue"
1323
- msgstr "Bekijk Locatie"
1324
 
1325
  #: ../lib/the-events-calendar.class.php:1360
1326
  msgid "Search Venues"
1327
- msgstr "Doorzoek Locaties"
1328
 
1329
  #: ../lib/the-events-calendar.class.php:1361
1330
  msgid "No venue found"
@@ -1350,20 +1305,19 @@ msgstr "Een nieuwe organisator toevoegen"
1350
 
1351
  #: ../lib/the-events-calendar.class.php:1370
1352
  msgid "Edit Organizer"
1353
- msgstr "Bewerk Organisator"
1354
 
1355
  #: ../lib/the-events-calendar.class.php:1371
1356
  msgid "New Organizer"
1357
- msgstr "Nieuwe Organisator"
1358
 
1359
- #
1360
  #: ../lib/the-events-calendar.class.php:1372
1361
  msgid "View Organizer"
1362
- msgstr "Bekijk Organisator"
1363
 
1364
  #: ../lib/the-events-calendar.class.php:1373
1365
  msgid "Search Organizers"
1366
- msgstr "Doorzoek Organisatoren"
1367
 
1368
  #: ../lib/the-events-calendar.class.php:1374
1369
  msgid "No organizer found"
@@ -1376,65 +1330,65 @@ msgstr "Geen organisator gevonden in de prullenbak"
1376
  #: ../lib/the-events-calendar.class.php:1379
1377
  #: ../lib/tribe-admin-events-list.class.php:217
1378
  msgid "Event Categories"
1379
- msgstr "Categorieën"
1380
 
1381
  #: ../lib/the-events-calendar.class.php:1380
1382
  #: ../public/template-tags/general.php:276
1383
  msgid "Event Category"
1384
- msgstr "Evenementen Categorie"
1385
 
1386
  #: ../lib/the-events-calendar.class.php:1381
1387
  msgid "Search Event Categories"
1388
- msgstr "Doorzoek Evenementen Categorieën"
1389
 
1390
  #: ../lib/the-events-calendar.class.php:1382
1391
  msgid "All Event Categories"
1392
- msgstr "Alle Evenementen Categorieën"
1393
 
1394
  #: ../lib/the-events-calendar.class.php:1383
1395
  msgid "Parent Event Category"
1396
- msgstr "Bovenliggende Evenementen Categorie"
1397
 
1398
  #: ../lib/the-events-calendar.class.php:1384
1399
  msgid "Parent Event Category:"
1400
- msgstr "Bovenliggende Evenementen Categorie:"
1401
 
1402
  #: ../lib/the-events-calendar.class.php:1385
1403
  msgid "Edit Event Category"
1404
- msgstr "Bewerk Evenementen Categorie"
1405
 
1406
  #: ../lib/the-events-calendar.class.php:1386
1407
  msgid "Update Event Category"
1408
- msgstr "Update Evenementen Categorie"
1409
 
1410
  #: ../lib/the-events-calendar.class.php:1387
1411
  msgid "Add New Event Category"
1412
- msgstr "Voeg nieuwe Evenementen Categorie toe"
1413
 
1414
  #: ../lib/the-events-calendar.class.php:1388
1415
  msgid "New Event Category Name"
1416
- msgstr "Naam van de nieuwe Evenementen Categorie"
1417
 
1418
  #: ../lib/the-events-calendar.class.php:1404
1419
  #, php-format
1420
  msgid "Event updated. <a href=\"%s\">View event</a>"
1421
- msgstr "Evenement geupdated. <a href=\"%s\">Bekijk evenement</a>"
1422
 
1423
  #: ../lib/the-events-calendar.class.php:1405
1424
  #: ../lib/the-events-calendar.class.php:1422
1425
  #: ../lib/the-events-calendar.class.php:1439
1426
  msgid "Custom field updated."
1427
- msgstr "Extra veld geupdated"
1428
 
1429
  #: ../lib/the-events-calendar.class.php:1406
1430
  #: ../lib/the-events-calendar.class.php:1423
1431
  #: ../lib/the-events-calendar.class.php:1440
1432
  msgid "Custom field deleted."
1433
- msgstr "Extra veld verwijderd"
1434
 
1435
  #: ../lib/the-events-calendar.class.php:1407
1436
  msgid "Event updated."
1437
- msgstr "Evenement geupdated"
1438
 
1439
  #: ../lib/the-events-calendar.class.php:1409
1440
  #, php-format
@@ -1444,11 +1398,11 @@ msgstr "Evenement teruggezet naar de versie van %s"
1444
  #: ../lib/the-events-calendar.class.php:1410
1445
  #, php-format
1446
  msgid "Event published. <a href=\"%s\">View event</a>"
1447
- msgstr "Evenement gepublicieerd. <a href=\"%s\">Bekijk evenement</a>"
1448
 
1449
  #: ../lib/the-events-calendar.class.php:1411
1450
  msgid "Event saved."
1451
- msgstr "Evenement opgeslagen"
1452
 
1453
  #: ../lib/the-events-calendar.class.php:1412
1454
  #, php-format
@@ -1462,30 +1416,30 @@ msgid ""
1462
  "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1463
  "\">Preview event</a>"
1464
  msgstr ""
1465
- "Evenement ingeplanned voor: <strong>%1$s</strong>. <a target=\"_blank\" href="
1466
- "\"%2$s\">Preview het evenement</a>"
1467
 
1468
  #: ../lib/the-events-calendar.class.php:1415
1469
  #: ../lib/the-events-calendar.class.php:1432
1470
  #: ../lib/the-events-calendar.class.php:1449
1471
  msgid "M j, Y @ G:i"
1472
- msgstr "M j, Y @ G:i"
1473
 
1474
  #: ../lib/the-events-calendar.class.php:1416
1475
  #, php-format
1476
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1477
  msgstr ""
1478
- "Concept evenement geupdated. <a target=\"_blank\" href=\"%s\">Preview "
1479
  "evenement</a>"
1480
 
1481
  #: ../lib/the-events-calendar.class.php:1421
1482
  #, php-format
1483
  msgid "Venue updated. <a href=\"%s\">View venue</a>"
1484
- msgstr "Locatie geupdated. <a href=\"%s\">Bekijk locatie</a>"
1485
 
1486
  #: ../lib/the-events-calendar.class.php:1424
1487
  msgid "Venue updated."
1488
- msgstr "Locatie geupdated."
1489
 
1490
  #: ../lib/the-events-calendar.class.php:1426
1491
  #, php-format
@@ -1505,7 +1459,7 @@ msgstr "Locatie opgeslagen."
1505
  #, php-format
1506
  msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1507
  msgstr ""
1508
- "Locatie toegevoegd. <a target=\"_blank\" href=\"%s\">Preview de locatie</a>"
1509
 
1510
  #: ../lib/the-events-calendar.class.php:1430
1511
  #, php-format
@@ -1513,24 +1467,24 @@ msgid ""
1513
  "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1514
  "\">Preview venue</a>"
1515
  msgstr ""
1516
- "Locatie ingeplanned voor: <strong>%1$s</strong>. <a target=\"_blank\" href="
1517
- "\"%2$s\">Preview de locatie</a>"
1518
 
1519
  #: ../lib/the-events-calendar.class.php:1433
1520
  #, php-format
1521
  msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1522
  msgstr ""
1523
- "Concept locatie opgeslagen. <a target=\"_blank\" href=\"%s\">Preview de "
1524
- "locatie</a>"
1525
 
1526
  #: ../lib/the-events-calendar.class.php:1438
1527
  #, php-format
1528
  msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1529
- msgstr "Organisator geupdated. <a href=\"%s\">Bekijk organisator</a>"
1530
 
1531
  #: ../lib/the-events-calendar.class.php:1441
1532
  msgid "Organizer updated."
1533
- msgstr "Organisator geupdated"
1534
 
1535
  #: ../lib/the-events-calendar.class.php:1443
1536
  #, php-format
@@ -1544,15 +1498,15 @@ msgstr "Organisator gepubliceerd. <a href=\"%s\">Bekijk organisator</a>"
1544
 
1545
  #: ../lib/the-events-calendar.class.php:1445
1546
  msgid "Organizer saved."
1547
- msgstr "Organisator opgeslagen"
1548
 
1549
  #: ../lib/the-events-calendar.class.php:1446
1550
  #, php-format
1551
  msgid ""
1552
  "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1553
  msgstr ""
1554
- "Organisator opgeslagen. <a target=\"_blank\" href=\"%s\">Preview "
1555
- "organisator</a>"
1556
 
1557
  #: ../lib/the-events-calendar.class.php:1447
1558
  #, php-format
@@ -1569,56 +1523,48 @@ msgid ""
1569
  "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
1570
  "a>"
1571
  msgstr ""
1572
- "Concept organisator opgeslagen. <a target=\"_blank\" href=\"%s\">Preview de "
1573
  "organisator</a>"
1574
 
1575
  #: ../lib/the-events-calendar.class.php:1491
1576
  msgid "Use Saved Venue:"
1577
- msgstr "Gebruik opgeslagen Locatie:"
1578
 
1579
- #
1580
  #: ../lib/the-events-calendar.class.php:1520
1581
  msgid "Use Saved Organizer:"
1582
- msgstr "Gebruik opgeslagen Organisator:"
1583
 
1584
- #
1585
  #: ../lib/the-events-calendar.class.php:1556
1586
  msgid "Use New Venue"
1587
- msgstr "Gebruik Nieuwe Locatie"
1588
 
1589
- #
1590
  #: ../lib/the-events-calendar.class.php:1558
1591
  msgid "My Venues"
1592
- msgstr "Mijn Locaties"
1593
 
1594
- #
1595
  #: ../lib/the-events-calendar.class.php:1563
1596
  msgid "Available Venues"
1597
- msgstr "Aanwezige Locaties"
1598
 
1599
  #: ../lib/the-events-calendar.class.php:1574
1600
  msgid "No saved venue exists."
1601
- msgstr "Er is geen opgeslagen Locatie."
1602
 
1603
- #
1604
  #: ../lib/the-events-calendar.class.php:1608
1605
  msgid "Use New Organizer"
1606
- msgstr "Gebruik Nieuwe Organisator"
1607
 
1608
- #
1609
  #: ../lib/the-events-calendar.class.php:1610
1610
  msgid "My Organizers"
1611
- msgstr "Mijn Organisatoren"
1612
 
1613
- #
1614
  #: ../lib/the-events-calendar.class.php:1615
1615
  msgid "Available Organizers"
1616
- msgstr "Aanwezige Organisatoren"
1617
 
1618
- #
1619
  #: ../lib/the-events-calendar.class.php:1626
1620
  msgid "No saved organizer exists."
1621
- msgstr "Er is geen opgeslagen Organisator."
1622
 
1623
  #: ../lib/the-events-calendar.class.php:1753
1624
  msgid "Next"
@@ -1640,27 +1586,25 @@ msgstr "Gereed"
1640
  msgid "Network"
1641
  msgstr "Netwerk"
1642
 
1643
- #
1644
  #: ../lib/the-events-calendar.class.php:2902
1645
  msgid "Unnamed Venue"
1646
- msgstr "Onbenoemde Locatie"
1647
 
1648
- #
1649
  #: ../lib/the-events-calendar.class.php:2992
1650
  msgid "Unnamed Organizer"
1651
- msgstr "Onbenoemde Organisator"
1652
 
1653
  #: ../lib/the-events-calendar.class.php:3467
1654
  msgid "Event Options"
1655
- msgstr "Evenementen Opties"
1656
 
1657
  #: ../lib/the-events-calendar.class.php:3469
1658
  msgid "Venue Information"
1659
- msgstr "Locatie Informatie"
1660
 
1661
  #: ../lib/the-events-calendar.class.php:3474
1662
  msgid "Organizer Information"
1663
- msgstr "Organisator Informatie"
1664
 
1665
  #: ../lib/the-events-calendar.class.php:3669
1666
  msgid "Support"
@@ -1668,12 +1612,11 @@ msgstr "Support"
1668
 
1669
  #: ../lib/the-events-calendar.class.php:3672
1670
  msgid "View All Add-Ons"
1671
- msgstr "Bekijk alle Add-ons"
1672
 
1673
- #
1674
  #: ../lib/the-events-calendar.class.php:3689
1675
  msgid "News from Modern Tribe"
1676
- msgstr "Nieuws van Modern Tribe."
1677
 
1678
  #: ../lib/the-events-calendar.class.php:3770
1679
  msgid "Additional Functionality"
@@ -1684,26 +1627,23 @@ msgid ""
1684
  "Looking for additional functionality including recurring events, ticket "
1685
  "sales, publicly submitted events, new views and more?"
1686
  msgstr ""
1687
- "Opzoek naar extra functionaliteit zoals terugkerende evenementen, ticket "
1688
- "verkoop, gebruikers evenementen, nieuwe views en meer?"
1689
 
1690
  #: ../lib/the-events-calendar.class.php:3775
1691
  #, php-format
1692
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
1693
- msgstr "Check out de <a href=\"%s\">aanwezige add-ons</a>."
1694
 
1695
- #
1696
  #: ../lib/the-events-calendar.class.php:3846
1697
  #: ../lib/the-events-calendar.class.php:3937
1698
  msgid "View Calendar"
1699
- msgstr "Bekijk Kalender"
1700
 
1701
- #
1702
  #: ../lib/the-events-calendar.class.php:3854
1703
  msgid "Add Event"
1704
  msgstr "Evenement toevoegen"
1705
 
1706
- #
1707
  #: ../lib/the-events-calendar.class.php:3863
1708
  msgid "Edit Events"
1709
  msgstr "Evenement bewerken"
@@ -1721,8 +1661,8 @@ msgid ""
1721
  "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
1722
  "change the events slug, visit %sEvents -> Settings%s."
1723
  msgstr ""
1724
- "Welkom bij The Events Calender! Jouw evenementen kalender is beschikbaar via "
1725
- "%s. Om deze slug te veranderen ga je naar %sEvents -> Settings%s."
1726
 
1727
  #: ../lib/the-events-calendar.class.php:3974
1728
  msgid "Calendar"
@@ -1732,22 +1672,18 @@ msgstr "Kalender"
1732
  msgid "List"
1733
  msgstr "Lijst"
1734
 
1735
- #
1736
  #: ../lib/the-events-calendar.class.php:4048
1737
  msgid "Month"
1738
  msgstr "Maand"
1739
 
1740
- #
1741
  #: ../lib/the-events-calendar.class.php:4088
1742
  msgid "Date"
1743
  msgstr "Datum"
1744
 
1745
- #
1746
  #: ../lib/the-events-calendar.class.php:4091
1747
  msgid "Events In"
1748
  msgstr "Evenementen in"
1749
 
1750
- #
1751
  #: ../lib/the-events-calendar.class.php:4093
1752
  msgid "Events From"
1753
  msgstr "Evenementen op"
@@ -1760,7 +1696,7 @@ msgstr "&laquo; Eerdere evenementen "
1760
  #: ../lib/the-events-calendar.class.php:4277 ../views/list/nav.php:40
1761
  #: ../views/list/nav.php:43 ../views/list/nav.php:49
1762
  msgid "Next Events &raquo;"
1763
- msgstr "Volgende evenementen &raquo;"
1764
 
1765
  #: ../lib/tribe-admin-events-list.class.php:53
1766
  #, php-format
@@ -1793,7 +1729,6 @@ msgstr "Nee"
1793
  msgid "All %s"
1794
  msgstr "Alle %s"
1795
 
1796
- #
1797
  #: ../lib/tribe-app-shop.class.php:62 ../lib/tribe-app-shop.class.php:63
1798
  #: ../lib/tribe-app-shop.class.php:84
1799
  msgid "Event Add-Ons"
@@ -1806,7 +1741,7 @@ msgstr "Tribe"
1806
  #: ../lib/tribe-event-api.class.php:372 ../lib/tribe-view-helpers.class.php:44
1807
  #: ../public/template-tags/venue.php:240
1808
  msgid "United States"
1809
- msgstr "United States"
1810
 
1811
  #: ../lib/tribe-event-exception.class.php:17
1812
  #: ../lib/tribe-event-exception.class.php:34
@@ -1815,48 +1750,44 @@ msgstr "Fout"
1815
 
1816
  #: ../lib/tribe-field.class.php:161
1817
  msgid "Invalid field type specified"
1818
- msgstr "Ongeldig veld type gegeven"
1819
 
1820
  #: ../lib/tribe-field.class.php:414
1821
  msgid "No radio options specified"
1822
- msgstr "Geen radio opties gegeven"
1823
 
1824
  #: ../lib/tribe-field.class.php:451
1825
  msgid "No checkbox options specified"
1826
- msgstr "Geen checkbox opties gegeven"
1827
 
1828
  #: ../lib/tribe-field.class.php:505
1829
  msgid "No select options specified"
1830
- msgstr "Geen select opties gegeven"
1831
 
1832
- #
1833
  #: ../lib/tribe-settings-tab.class.php:219
1834
  msgid "There are no fields setup for this tab yet."
1835
  msgstr "Er zijn nog geen velden voor deze tab."
1836
 
1837
- #
1838
  #: ../lib/tribe-settings.class.php:164 ../lib/tribe-settings.class.php:176
1839
  msgid "The Events Calendar Settings"
1840
- msgstr "The Events Calendar Instellingen"
1841
 
1842
- #
1843
  #: ../lib/tribe-settings.class.php:176
1844
  msgid "Events Settings"
1845
- msgstr "Evenement Instellingen"
1846
 
1847
  #: ../lib/tribe-settings.class.php:225
1848
  #, php-format
1849
  msgid "%s Settings"
1850
- msgstr "%s Instellingen"
1851
 
1852
  #: ../lib/tribe-settings.class.php:239
1853
  msgid "You've requested a non-existent tab."
1854
- msgstr "Je hebt een niet bestaande tab verzocht."
1855
 
1856
- #
1857
  #: ../lib/tribe-settings.class.php:247
1858
  msgid " Save Changes"
1859
- msgstr "Veranderingen Opslaan"
1860
 
1861
  #: ../lib/tribe-settings.class.php:299
1862
  msgid "You don't have permission to do that."
@@ -1876,7 +1807,7 @@ msgstr "Je formulier heeft de volgende fouten:"
1876
 
1877
  #: ../lib/tribe-settings.class.php:485
1878
  msgid "None of your settings were saved. Please try again."
1879
- msgstr "Geen van je instelllingen is opgeslagen. Probeer het nogmaals."
1880
 
1881
  #: ../lib/tribe-settings.class.php:485
1882
  msgid ""
@@ -1890,7 +1821,6 @@ msgstr[1] ""
1890
  "De bovenstaande instellingen zijn niet opgeslagen. De overige instellingen "
1891
  "zijn met succes opgeslagen."
1892
 
1893
- #
1894
  #: ../lib/tribe-settings.class.php:509
1895
  msgid "Settings saved."
1896
  msgstr "Instellingen opgeslagen"
@@ -1898,7 +1828,7 @@ msgstr "Instellingen opgeslagen"
1898
  #: ../lib/tribe-template-factory.class.php:225
1899
  #, php-format
1900
  msgid "There were no results found for <strong>\"%s\"</strong>."
1901
- msgstr "Er zijn geen resultaten voor <strong>\"%s\"</strong>."
1902
 
1903
  #: ../lib/tribe-template-factory.class.php:235
1904
  #, php-format
@@ -1906,7 +1836,7 @@ msgid ""
1906
  "listed under %s. Check out past events for this category or view the full "
1907
  "calendar."
1908
  msgstr ""
1909
- "genoteerd onder %s. Probeer de afgelopen evenementen voor deze catregorie of "
1910
  "bekijk de volledige kalender."
1911
 
1912
  #: ../lib/tribe-template-factory.class.php:237
@@ -1915,7 +1845,7 @@ msgid ""
1915
  "listed under %s. Check out upcoming events for this category or view the "
1916
  "full calendar."
1917
  msgstr ""
1918
- "genoteerd onder %s. Probeer de toekomstige evenementen voor deze catregorie "
1919
  "of bekijk de volledige kalender."
1920
 
1921
  #: ../lib/tribe-template-factory.class.php:241
@@ -1924,20 +1854,17 @@ msgid "No events scheduled for <strong>%s</strong>. Please try another day."
1924
  msgstr ""
1925
  "Geen evenementen gepland voor <strong>%s</strong>. Probeer een andere dag."
1926
 
1927
- #
1928
  #: ../lib/tribe-template-factory.class.php:245
1929
  msgid "No upcoming events "
1930
- msgstr "Geen toekomstige evenementen"
1931
 
1932
- #
1933
  #: ../lib/tribe-template-factory.class.php:247
1934
  msgid "No matching events "
1935
- msgstr "Geen overeenkomende evenementen"
1936
 
1937
- #
1938
  #: ../lib/tribe-template-factory.class.php:250
1939
  msgid "No previous events "
1940
- msgstr "Geen eerdere evenementen"
1941
 
1942
  #: ../lib/tribe-the-events-calendar-import.class.php:64
1943
  #, php-format
@@ -1965,7 +1892,7 @@ msgid ""
1965
  "upgraded. Please be sure to back up your database before initiating the "
1966
  "upgrade. This process can not be undone."
1967
  msgstr ""
1968
- "Er zijn oude evenementen waarvan het formaat moeten worden geupgrade. Maak "
1969
  "een backup van de database voor het uitvoeren van de upgrade. Dit proces is "
1970
  "onomkeerbaar."
1971
 
@@ -1976,7 +1903,7 @@ msgstr "Migreer data!"
1976
  #: ../lib/tribe-the-events-calendar-import.class.php:166
1977
  #, php-format
1978
  msgid "You successfully migrated (%d) entries."
1979
- msgstr "Je hebt met succes (%d) items gemigreerd."
1980
 
1981
  #: ../lib/tribe-the-events-calendar-import.class.php:242
1982
  msgid "Install has 1 or more legacy event!"
@@ -1989,16 +1916,16 @@ msgstr "Ongeldig of incompleet veld"
1989
  #: ../lib/tribe-validate.class.php:78 ../lib/tribe-validate.class.php:110
1990
  #: ../lib/tribe-validate.class.php:116
1991
  msgid "Field ID:"
1992
- msgstr "VeldID:"
1993
 
1994
  #: ../lib/tribe-validate.class.php:109
1995
  msgid "Non-existant field validation function passed"
1996
- msgstr "Niet-bestaande veld validatie functie gegeven"
1997
 
1998
  #: ../lib/tribe-validate.class.php:110
1999
  msgctxt "non-existant function name passed for field validation"
2000
  msgid "with function name:"
2001
- msgstr "met functie naam:"
2002
 
2003
  #: ../lib/tribe-validate.class.php:135 ../lib/tribe-validate.class.php:153
2004
  #, php-format
@@ -2019,7 +1946,7 @@ msgstr "%s moet een positief getal zijn."
2019
  #, php-format
2020
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
2021
  msgstr ""
2022
- "%s moet een valide slug zijn (nummers, letters, strepen en underscore)."
2023
 
2024
  #: ../lib/tribe-validate.class.php:221
2025
  #, php-format
@@ -2066,30 +1993,30 @@ msgstr "%s moet een getal tussen 0 en 21 zijn."
2066
  msgid ""
2067
  "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
2068
  msgstr ""
2069
- "%s moet alleen bestaan uit letters, getallen, streepjes, apostrohes en "
2070
  "spaties."
2071
 
2072
  #: ../lib/tribe-validate.class.php:422
2073
  #, php-format
2074
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
2075
- msgstr "%s moet bestaan uit letters, spaties, apostrohes en streepjes."
2076
 
2077
  #: ../lib/tribe-validate.class.php:438
2078
  #, php-format
2079
  msgid "%s must consist of 5 numbers."
2080
- msgstr "%s moet bestaan uit 5 nummers."
2081
 
2082
  #: ../lib/tribe-validate.class.php:454
2083
  #, php-format
2084
  msgid "%s must be a phone number."
2085
- msgstr "%s moet een telefoon nummer zijn."
2086
 
2087
  #: ../lib/tribe-validate.class.php:472
2088
  msgid ""
2089
  "Country List must be formatted as one country per line in the following "
2090
  "format: <br>US, United States <br> UK, United Kingdom."
2091
  msgstr ""
2092
- "Landen lijst moet geformateerd zijn als een land per regel in het volgende "
2093
  "formaat <br>US, United States <br> UK, United Kingdom."
2094
 
2095
  #: ../lib/tribe-view-helpers.class.php:24
@@ -2099,19 +2026,19 @@ msgstr "Selecteer een land:"
2099
 
2100
  #: ../lib/tribe-view-helpers.class.php:45
2101
  msgid "Afghanistan"
2102
- msgstr ""
2103
 
2104
  #: ../lib/tribe-view-helpers.class.php:46
2105
  msgid "Albania"
2106
- msgstr "Albanie"
2107
 
2108
  #: ../lib/tribe-view-helpers.class.php:47
2109
  msgid "Algeria"
2110
- msgstr ""
2111
 
2112
  #: ../lib/tribe-view-helpers.class.php:48
2113
  msgid "American Samoa"
2114
- msgstr ""
2115
 
2116
  #: ../lib/tribe-view-helpers.class.php:49
2117
  msgid "Andorra"
@@ -2119,35 +2046,35 @@ msgstr "Andorra"
2119
 
2120
  #: ../lib/tribe-view-helpers.class.php:50
2121
  msgid "Angola"
2122
- msgstr ""
2123
 
2124
  #: ../lib/tribe-view-helpers.class.php:51
2125
  msgid "Anguilla"
2126
- msgstr ""
2127
 
2128
  #: ../lib/tribe-view-helpers.class.php:52
2129
  msgid "Antarctica"
2130
- msgstr ""
2131
 
2132
  #: ../lib/tribe-view-helpers.class.php:53
2133
  msgid "Antigua And Barbuda"
2134
- msgstr ""
2135
 
2136
  #: ../lib/tribe-view-helpers.class.php:54
2137
  msgid "Argentina"
2138
- msgstr ""
2139
 
2140
  #: ../lib/tribe-view-helpers.class.php:55
2141
  msgid "Armenia"
2142
- msgstr "Armenie"
2143
 
2144
  #: ../lib/tribe-view-helpers.class.php:56
2145
  msgid "Aruba"
2146
- msgstr ""
2147
 
2148
  #: ../lib/tribe-view-helpers.class.php:57
2149
  msgid "Australia"
2150
- msgstr ""
2151
 
2152
  #: ../lib/tribe-view-helpers.class.php:58
2153
  msgid "Austria"
@@ -2155,75 +2082,75 @@ msgstr "Oostenrijk"
2155
 
2156
  #: ../lib/tribe-view-helpers.class.php:59
2157
  msgid "Azerbaijan"
2158
- msgstr ""
2159
 
2160
  #: ../lib/tribe-view-helpers.class.php:60
2161
  msgid "Bahamas"
2162
- msgstr ""
2163
 
2164
  #: ../lib/tribe-view-helpers.class.php:61
2165
  msgid "Bahrain"
2166
- msgstr ""
2167
 
2168
  #: ../lib/tribe-view-helpers.class.php:62
2169
  msgid "Bangladesh"
2170
- msgstr ""
2171
 
2172
  #: ../lib/tribe-view-helpers.class.php:63
2173
  msgid "Barbados"
2174
- msgstr ""
2175
 
2176
  #: ../lib/tribe-view-helpers.class.php:64
2177
  msgid "Belarus"
2178
- msgstr "Belarus"
2179
 
2180
  #: ../lib/tribe-view-helpers.class.php:65
2181
  msgid "Belgium"
2182
- msgstr "Belgie"
2183
 
2184
  #: ../lib/tribe-view-helpers.class.php:66
2185
  msgid "Belize"
2186
- msgstr ""
2187
 
2188
  #: ../lib/tribe-view-helpers.class.php:67
2189
  msgid "Benin"
2190
- msgstr ""
2191
 
2192
  #: ../lib/tribe-view-helpers.class.php:68
2193
  msgid "Bermuda"
2194
- msgstr ""
2195
 
2196
  #: ../lib/tribe-view-helpers.class.php:69
2197
  msgid "Bhutan"
2198
- msgstr ""
2199
 
2200
  #: ../lib/tribe-view-helpers.class.php:70
2201
  msgid "Bolivia"
2202
- msgstr ""
2203
 
2204
  #: ../lib/tribe-view-helpers.class.php:71
2205
  msgid "Bosnia And Herzegowina"
2206
- msgstr "Bosnie en Herzegovina"
2207
 
2208
  #: ../lib/tribe-view-helpers.class.php:72
2209
  msgid "Botswana"
2210
- msgstr ""
2211
 
2212
  #: ../lib/tribe-view-helpers.class.php:73
2213
  msgid "Bouvet Island"
2214
- msgstr ""
2215
 
2216
  #: ../lib/tribe-view-helpers.class.php:74
2217
  msgid "Brazil"
2218
- msgstr ""
2219
 
2220
  #: ../lib/tribe-view-helpers.class.php:75
2221
  msgid "British Indian Ocean Territory"
2222
- msgstr ""
2223
 
2224
  #: ../lib/tribe-view-helpers.class.php:76
2225
  msgid "Brunei Darussalam"
2226
- msgstr ""
2227
 
2228
  #: ../lib/tribe-view-helpers.class.php:77
2229
  msgid "Bulgaria"
@@ -2231,99 +2158,99 @@ msgstr "Bulgarije"
2231
 
2232
  #: ../lib/tribe-view-helpers.class.php:78
2233
  msgid "Burkina Faso"
2234
- msgstr ""
2235
 
2236
  #: ../lib/tribe-view-helpers.class.php:79
2237
  msgid "Burundi"
2238
- msgstr ""
2239
 
2240
  #: ../lib/tribe-view-helpers.class.php:80
2241
  msgid "Cambodia"
2242
- msgstr ""
2243
 
2244
  #: ../lib/tribe-view-helpers.class.php:81
2245
  msgid "Cameroon"
2246
- msgstr ""
2247
 
2248
  #: ../lib/tribe-view-helpers.class.php:82
2249
  msgid "Canada"
2250
- msgstr ""
2251
 
2252
  #: ../lib/tribe-view-helpers.class.php:83
2253
  msgid "Cape Verde"
2254
- msgstr ""
2255
 
2256
  #: ../lib/tribe-view-helpers.class.php:84
2257
  msgid "Cayman Islands"
2258
- msgstr ""
2259
 
2260
  #: ../lib/tribe-view-helpers.class.php:85
2261
  msgid "Central African Republic"
2262
- msgstr ""
2263
 
2264
  #: ../lib/tribe-view-helpers.class.php:86
2265
  msgid "Chad"
2266
- msgstr ""
2267
 
2268
  #: ../lib/tribe-view-helpers.class.php:87
2269
  msgid "Chile"
2270
- msgstr ""
2271
 
2272
  #: ../lib/tribe-view-helpers.class.php:88
2273
  msgid "China"
2274
- msgstr ""
2275
 
2276
  #: ../lib/tribe-view-helpers.class.php:89
2277
  msgid "Christmas Island"
2278
- msgstr ""
2279
 
2280
  #: ../lib/tribe-view-helpers.class.php:90
2281
  msgid "Cocos (Keeling) Islands"
2282
- msgstr ""
2283
 
2284
  #: ../lib/tribe-view-helpers.class.php:91
2285
  msgid "Colombia"
2286
- msgstr ""
2287
 
2288
  #: ../lib/tribe-view-helpers.class.php:92
2289
  msgid "Comoros"
2290
- msgstr ""
2291
 
2292
  #: ../lib/tribe-view-helpers.class.php:93
2293
  msgid "Congo"
2294
- msgstr ""
2295
 
2296
  #: ../lib/tribe-view-helpers.class.php:94
2297
  msgid "Congo, The Democratic Republic Of The"
2298
- msgstr ""
2299
 
2300
  #: ../lib/tribe-view-helpers.class.php:95
2301
  msgid "Cook Islands"
2302
- msgstr ""
2303
 
2304
  #: ../lib/tribe-view-helpers.class.php:96
2305
  msgid "Costa Rica"
2306
- msgstr ""
2307
 
2308
  #: ../lib/tribe-view-helpers.class.php:97
2309
  msgid "Cote D'Ivoire"
2310
- msgstr ""
2311
 
2312
  #: ../lib/tribe-view-helpers.class.php:98
2313
  msgid "Croatia (Local Name: Hrvatska)"
2314
- msgstr "Croatie"
2315
 
2316
  #: ../lib/tribe-view-helpers.class.php:99
2317
  msgid "Cuba"
2318
- msgstr ""
2319
 
2320
  #: ../lib/tribe-view-helpers.class.php:100
2321
  msgid "Cyprus"
2322
- msgstr ""
2323
 
2324
  #: ../lib/tribe-view-helpers.class.php:101
2325
  msgid "Czech Republic"
2326
- msgstr "Tsjechie"
2327
 
2328
  #: ../lib/tribe-view-helpers.class.php:102
2329
  msgid "Denmark"
@@ -2331,59 +2258,59 @@ msgstr "Denemarken"
2331
 
2332
  #: ../lib/tribe-view-helpers.class.php:103
2333
  msgid "Djibouti"
2334
- msgstr ""
2335
 
2336
  #: ../lib/tribe-view-helpers.class.php:104
2337
  msgid "Dominica"
2338
- msgstr ""
2339
 
2340
  #: ../lib/tribe-view-helpers.class.php:105
2341
  msgid "Dominican Republic"
2342
- msgstr ""
2343
 
2344
  #: ../lib/tribe-view-helpers.class.php:106
2345
  msgid "East Timor"
2346
- msgstr ""
2347
 
2348
  #: ../lib/tribe-view-helpers.class.php:107
2349
  msgid "Ecuador"
2350
- msgstr ""
2351
 
2352
  #: ../lib/tribe-view-helpers.class.php:108
2353
  msgid "Egypt"
2354
- msgstr ""
2355
 
2356
  #: ../lib/tribe-view-helpers.class.php:109
2357
  msgid "El Salvador"
2358
- msgstr ""
2359
 
2360
  #: ../lib/tribe-view-helpers.class.php:110
2361
  msgid "Equatorial Guinea"
2362
- msgstr ""
2363
 
2364
  #: ../lib/tribe-view-helpers.class.php:111
2365
  msgid "Eritrea"
2366
- msgstr ""
2367
 
2368
  #: ../lib/tribe-view-helpers.class.php:112
2369
  msgid "Estonia"
2370
- msgstr "Estonie"
2371
 
2372
  #: ../lib/tribe-view-helpers.class.php:113
2373
  msgid "Ethiopia"
2374
- msgstr ""
2375
 
2376
  #: ../lib/tribe-view-helpers.class.php:114
2377
  msgid "Falkland Islands (Malvinas)"
2378
- msgstr ""
2379
 
2380
  #: ../lib/tribe-view-helpers.class.php:115
2381
  msgid "Faroe Islands"
2382
- msgstr ""
2383
 
2384
  #: ../lib/tribe-view-helpers.class.php:116
2385
  msgid "Fiji"
2386
- msgstr ""
2387
 
2388
  #: ../lib/tribe-view-helpers.class.php:117
2389
  msgid "Finland"
@@ -2395,32 +2322,32 @@ msgstr "Frankrijk"
2395
 
2396
  #: ../lib/tribe-view-helpers.class.php:119
2397
  msgid "France, Metropolitan"
2398
- msgstr ""
2399
 
2400
  #: ../lib/tribe-view-helpers.class.php:120
2401
  msgid "French Guiana"
2402
- msgstr ""
2403
 
2404
  #: ../lib/tribe-view-helpers.class.php:121
2405
  msgid "French Polynesia"
2406
- msgstr ""
2407
 
2408
  #: ../lib/tribe-view-helpers.class.php:122
2409
  msgid "French Southern Territories"
2410
- msgstr ""
2411
 
2412
  #: ../lib/tribe-view-helpers.class.php:123
2413
  msgid "Gabon"
2414
- msgstr ""
2415
 
2416
  #: ../lib/tribe-view-helpers.class.php:124
2417
  msgid "Gambia"
2418
- msgstr ""
2419
 
2420
  #: ../lib/tribe-view-helpers.class.php:125
2421
  #: ../lib/tribe-view-helpers.class.php:318
2422
  msgid "Georgia"
2423
- msgstr "Georgie"
2424
 
2425
  #: ../lib/tribe-view-helpers.class.php:126
2426
  msgid "Germany"
@@ -2428,7 +2355,7 @@ msgstr "Duitsland"
2428
 
2429
  #: ../lib/tribe-view-helpers.class.php:127
2430
  msgid "Ghana"
2431
- msgstr ""
2432
 
2433
  #: ../lib/tribe-view-helpers.class.php:128
2434
  msgid "Gibraltar"
@@ -2444,51 +2371,51 @@ msgstr "Groenland"
2444
 
2445
  #: ../lib/tribe-view-helpers.class.php:131
2446
  msgid "Grenada"
2447
- msgstr ""
2448
 
2449
  #: ../lib/tribe-view-helpers.class.php:132
2450
  msgid "Guadeloupe"
2451
- msgstr ""
2452
 
2453
  #: ../lib/tribe-view-helpers.class.php:133
2454
  msgid "Guam"
2455
- msgstr ""
2456
 
2457
  #: ../lib/tribe-view-helpers.class.php:134
2458
  msgid "Guatemala"
2459
- msgstr ""
2460
 
2461
  #: ../lib/tribe-view-helpers.class.php:135
2462
  msgid "Guinea"
2463
- msgstr ""
2464
 
2465
  #: ../lib/tribe-view-helpers.class.php:136
2466
  msgid "Guinea-Bissau"
2467
- msgstr ""
2468
 
2469
  #: ../lib/tribe-view-helpers.class.php:137
2470
  msgid "Guyana"
2471
- msgstr ""
2472
 
2473
  #: ../lib/tribe-view-helpers.class.php:138
2474
  msgid "Haiti"
2475
- msgstr ""
2476
 
2477
  #: ../lib/tribe-view-helpers.class.php:139
2478
  msgid "Heard And Mc Donald Islands"
2479
- msgstr ""
2480
 
2481
  #: ../lib/tribe-view-helpers.class.php:140
2482
  msgid "Holy See (Vatican City State)"
2483
- msgstr ""
2484
 
2485
  #: ../lib/tribe-view-helpers.class.php:141
2486
  msgid "Honduras"
2487
- msgstr ""
2488
 
2489
  #: ../lib/tribe-view-helpers.class.php:142
2490
  msgid "Hong Kong"
2491
- msgstr ""
2492
 
2493
  #: ../lib/tribe-view-helpers.class.php:143
2494
  msgid "Hungary"
@@ -2500,19 +2427,19 @@ msgstr "IJsland"
2500
 
2501
  #: ../lib/tribe-view-helpers.class.php:145
2502
  msgid "India"
2503
- msgstr ""
2504
 
2505
  #: ../lib/tribe-view-helpers.class.php:146
2506
  msgid "Indonesia"
2507
- msgstr ""
2508
 
2509
  #: ../lib/tribe-view-helpers.class.php:147
2510
  msgid "Iran (Islamic Republic Of)"
2511
- msgstr ""
2512
 
2513
  #: ../lib/tribe-view-helpers.class.php:148
2514
  msgid "Iraq"
2515
- msgstr ""
2516
 
2517
  #: ../lib/tribe-view-helpers.class.php:149
2518
  msgid "Ireland"
@@ -2520,75 +2447,75 @@ msgstr "Ierland"
2520
 
2521
  #: ../lib/tribe-view-helpers.class.php:150
2522
  msgid "Israel"
2523
- msgstr ""
2524
 
2525
  #: ../lib/tribe-view-helpers.class.php:151
2526
  msgid "Italy"
2527
- msgstr "Italie"
2528
 
2529
  #: ../lib/tribe-view-helpers.class.php:152
2530
  msgid "Jamaica"
2531
- msgstr ""
2532
 
2533
  #: ../lib/tribe-view-helpers.class.php:153
2534
  msgid "Japan"
2535
- msgstr ""
2536
 
2537
  #: ../lib/tribe-view-helpers.class.php:154
2538
  msgid "Jordan"
2539
- msgstr ""
2540
 
2541
  #: ../lib/tribe-view-helpers.class.php:155
2542
  msgid "Kazakhstan"
2543
- msgstr ""
2544
 
2545
  #: ../lib/tribe-view-helpers.class.php:156
2546
  msgid "Kenya"
2547
- msgstr ""
2548
 
2549
  #: ../lib/tribe-view-helpers.class.php:157
2550
  msgid "Kiribati"
2551
- msgstr ""
2552
 
2553
  #: ../lib/tribe-view-helpers.class.php:158
2554
  msgid "Korea, Democratic People's Republic Of"
2555
- msgstr ""
2556
 
2557
  #: ../lib/tribe-view-helpers.class.php:159
2558
  msgid "Korea, Republic Of"
2559
- msgstr ""
2560
 
2561
  #: ../lib/tribe-view-helpers.class.php:160
2562
  msgid "Kuwait"
2563
- msgstr ""
2564
 
2565
  #: ../lib/tribe-view-helpers.class.php:161
2566
  msgid "Kyrgyzstan"
2567
- msgstr ""
2568
 
2569
  #: ../lib/tribe-view-helpers.class.php:162
2570
  msgid "Lao People's Democratic Republic"
2571
- msgstr ""
2572
 
2573
  #: ../lib/tribe-view-helpers.class.php:163
2574
  msgid "Latvia"
2575
- msgstr ""
2576
 
2577
  #: ../lib/tribe-view-helpers.class.php:164
2578
  msgid "Lebanon"
2579
- msgstr ""
2580
 
2581
  #: ../lib/tribe-view-helpers.class.php:165
2582
  msgid "Lesotho"
2583
- msgstr ""
2584
 
2585
  #: ../lib/tribe-view-helpers.class.php:166
2586
  msgid "Liberia"
2587
- msgstr ""
2588
 
2589
  #: ../lib/tribe-view-helpers.class.php:167
2590
  msgid "Libya"
2591
- msgstr ""
2592
 
2593
  #: ../lib/tribe-view-helpers.class.php:168
2594
  msgid "Liechtenstein"
@@ -2596,7 +2523,7 @@ msgstr "Liechtenstein"
2596
 
2597
  #: ../lib/tribe-view-helpers.class.php:169
2598
  msgid "Lithuania"
2599
- msgstr ""
2600
 
2601
  #: ../lib/tribe-view-helpers.class.php:170
2602
  msgid "Luxembourg"
@@ -2604,31 +2531,31 @@ msgstr "Luxemburg"
2604
 
2605
  #: ../lib/tribe-view-helpers.class.php:171
2606
  msgid "Macau"
2607
- msgstr ""
2608
 
2609
  #: ../lib/tribe-view-helpers.class.php:172
2610
  msgid "Macedonia"
2611
- msgstr ""
2612
 
2613
  #: ../lib/tribe-view-helpers.class.php:173
2614
  msgid "Madagascar"
2615
- msgstr ""
2616
 
2617
  #: ../lib/tribe-view-helpers.class.php:174
2618
  msgid "Malawi"
2619
- msgstr ""
2620
 
2621
  #: ../lib/tribe-view-helpers.class.php:175
2622
  msgid "Malaysia"
2623
- msgstr ""
2624
 
2625
  #: ../lib/tribe-view-helpers.class.php:176
2626
  msgid "Maldives"
2627
- msgstr ""
2628
 
2629
  #: ../lib/tribe-view-helpers.class.php:177
2630
  msgid "Mali"
2631
- msgstr ""
2632
 
2633
  #: ../lib/tribe-view-helpers.class.php:178
2634
  msgid "Malta"
@@ -2636,35 +2563,35 @@ msgstr "Malta"
2636
 
2637
  #: ../lib/tribe-view-helpers.class.php:179
2638
  msgid "Marshall Islands"
2639
- msgstr ""
2640
 
2641
  #: ../lib/tribe-view-helpers.class.php:180
2642
  msgid "Martinique"
2643
- msgstr ""
2644
 
2645
  #: ../lib/tribe-view-helpers.class.php:181
2646
  msgid "Mauritania"
2647
- msgstr ""
2648
 
2649
  #: ../lib/tribe-view-helpers.class.php:182
2650
  msgid "Mauritius"
2651
- msgstr ""
2652
 
2653
  #: ../lib/tribe-view-helpers.class.php:183
2654
  msgid "Mayotte"
2655
- msgstr ""
2656
 
2657
  #: ../lib/tribe-view-helpers.class.php:184
2658
  msgid "Mexico"
2659
- msgstr ""
2660
 
2661
  #: ../lib/tribe-view-helpers.class.php:185
2662
  msgid "Micronesia, Federated States Of"
2663
- msgstr ""
2664
 
2665
  #: ../lib/tribe-view-helpers.class.php:186
2666
  msgid "Moldova, Republic Of"
2667
- msgstr ""
2668
 
2669
  #: ../lib/tribe-view-helpers.class.php:187
2670
  msgid "Monaco"
@@ -2672,7 +2599,7 @@ msgstr "Monaco"
2672
 
2673
  #: ../lib/tribe-view-helpers.class.php:188
2674
  msgid "Mongolia"
2675
- msgstr ""
2676
 
2677
  #: ../lib/tribe-view-helpers.class.php:189
2678
  msgid "Montenegro"
@@ -2680,31 +2607,31 @@ msgstr "Montenegro"
2680
 
2681
  #: ../lib/tribe-view-helpers.class.php:190
2682
  msgid "Montserrat"
2683
- msgstr ""
2684
 
2685
  #: ../lib/tribe-view-helpers.class.php:191
2686
  msgid "Morocco"
2687
- msgstr ""
2688
 
2689
  #: ../lib/tribe-view-helpers.class.php:192
2690
  msgid "Mozambique"
2691
- msgstr ""
2692
 
2693
  #: ../lib/tribe-view-helpers.class.php:193
2694
  msgid "Myanmar"
2695
- msgstr ""
2696
 
2697
  #: ../lib/tribe-view-helpers.class.php:194
2698
  msgid "Namibia"
2699
- msgstr ""
2700
 
2701
  #: ../lib/tribe-view-helpers.class.php:195
2702
  msgid "Nauru"
2703
- msgstr ""
2704
 
2705
  #: ../lib/tribe-view-helpers.class.php:196
2706
  msgid "Nepal"
2707
- msgstr ""
2708
 
2709
  #: ../lib/tribe-view-helpers.class.php:197
2710
  msgid "Netherlands"
@@ -2712,39 +2639,39 @@ msgstr "Nederland"
2712
 
2713
  #: ../lib/tribe-view-helpers.class.php:198
2714
  msgid "Netherlands Antilles"
2715
- msgstr ""
2716
 
2717
  #: ../lib/tribe-view-helpers.class.php:199
2718
  msgid "New Caledonia"
2719
- msgstr ""
2720
 
2721
  #: ../lib/tribe-view-helpers.class.php:200
2722
  msgid "New Zealand"
2723
- msgstr ""
2724
 
2725
  #: ../lib/tribe-view-helpers.class.php:201
2726
  msgid "Nicaragua"
2727
- msgstr ""
2728
 
2729
  #: ../lib/tribe-view-helpers.class.php:202
2730
  msgid "Niger"
2731
- msgstr ""
2732
 
2733
  #: ../lib/tribe-view-helpers.class.php:203
2734
  msgid "Nigeria"
2735
- msgstr ""
2736
 
2737
  #: ../lib/tribe-view-helpers.class.php:204
2738
  msgid "Niue"
2739
- msgstr ""
2740
 
2741
  #: ../lib/tribe-view-helpers.class.php:205
2742
  msgid "Norfolk Island"
2743
- msgstr ""
2744
 
2745
  #: ../lib/tribe-view-helpers.class.php:206
2746
  msgid "Northern Mariana Islands"
2747
- msgstr ""
2748
 
2749
  #: ../lib/tribe-view-helpers.class.php:207
2750
  msgid "Norway"
@@ -2752,39 +2679,39 @@ msgstr "Noorwegen"
2752
 
2753
  #: ../lib/tribe-view-helpers.class.php:208
2754
  msgid "Oman"
2755
- msgstr ""
2756
 
2757
  #: ../lib/tribe-view-helpers.class.php:209
2758
  msgid "Pakistan"
2759
- msgstr ""
2760
 
2761
  #: ../lib/tribe-view-helpers.class.php:210
2762
  msgid "Palau"
2763
- msgstr ""
2764
 
2765
  #: ../lib/tribe-view-helpers.class.php:211
2766
  msgid "Panama"
2767
- msgstr ""
2768
 
2769
  #: ../lib/tribe-view-helpers.class.php:212
2770
  msgid "Papua New Guinea"
2771
- msgstr ""
2772
 
2773
  #: ../lib/tribe-view-helpers.class.php:213
2774
  msgid "Paraguay"
2775
- msgstr ""
2776
 
2777
  #: ../lib/tribe-view-helpers.class.php:214
2778
  msgid "Peru"
2779
- msgstr ""
2780
 
2781
  #: ../lib/tribe-view-helpers.class.php:215
2782
  msgid "Philippines"
2783
- msgstr ""
2784
 
2785
  #: ../lib/tribe-view-helpers.class.php:216
2786
  msgid "Pitcairn"
2787
- msgstr ""
2788
 
2789
  #: ../lib/tribe-view-helpers.class.php:217
2790
  msgid "Poland"
@@ -2796,43 +2723,43 @@ msgstr "Portugal"
2796
 
2797
  #: ../lib/tribe-view-helpers.class.php:219
2798
  msgid "Puerto Rico"
2799
- msgstr ""
2800
 
2801
  #: ../lib/tribe-view-helpers.class.php:220
2802
  msgid "Qatar"
2803
- msgstr ""
2804
 
2805
  #: ../lib/tribe-view-helpers.class.php:221
2806
  msgid "Reunion"
2807
- msgstr ""
2808
 
2809
  #: ../lib/tribe-view-helpers.class.php:222
2810
  msgid "Romania"
2811
- msgstr "Roemenie"
2812
 
2813
  #: ../lib/tribe-view-helpers.class.php:223
2814
  msgid "Russian Federation"
2815
- msgstr ""
2816
 
2817
  #: ../lib/tribe-view-helpers.class.php:224
2818
  msgid "Rwanda"
2819
- msgstr ""
2820
 
2821
  #: ../lib/tribe-view-helpers.class.php:225
2822
  msgid "Saint Kitts And Nevis"
2823
- msgstr ""
2824
 
2825
  #: ../lib/tribe-view-helpers.class.php:226
2826
  msgid "Saint Lucia"
2827
- msgstr ""
2828
 
2829
  #: ../lib/tribe-view-helpers.class.php:227
2830
  msgid "Saint Vincent And The Grenadines"
2831
- msgstr ""
2832
 
2833
  #: ../lib/tribe-view-helpers.class.php:228
2834
  msgid "Samoa"
2835
- msgstr ""
2836
 
2837
  #: ../lib/tribe-view-helpers.class.php:229
2838
  msgid "San Marino"
@@ -2840,31 +2767,31 @@ msgstr "San Marino"
2840
 
2841
  #: ../lib/tribe-view-helpers.class.php:230
2842
  msgid "Sao Tome And Principe"
2843
- msgstr ""
2844
 
2845
  #: ../lib/tribe-view-helpers.class.php:231
2846
  msgid "Saudi Arabia"
2847
- msgstr ""
2848
 
2849
  #: ../lib/tribe-view-helpers.class.php:232
2850
  msgid "Senegal"
2851
- msgstr ""
2852
 
2853
  #: ../lib/tribe-view-helpers.class.php:233
2854
  msgid "Serbia"
2855
- msgstr "Servie"
2856
 
2857
  #: ../lib/tribe-view-helpers.class.php:234
2858
  msgid "Seychelles"
2859
- msgstr ""
2860
 
2861
  #: ../lib/tribe-view-helpers.class.php:235
2862
  msgid "Sierra Leone"
2863
- msgstr ""
2864
 
2865
  #: ../lib/tribe-view-helpers.class.php:236
2866
  msgid "Singapore"
2867
- msgstr ""
2868
 
2869
  #: ../lib/tribe-view-helpers.class.php:237
2870
  msgid "Slovakia (Slovak Republic)"
@@ -2872,23 +2799,23 @@ msgstr "Slowakije"
2872
 
2873
  #: ../lib/tribe-view-helpers.class.php:238
2874
  msgid "Slovenia"
2875
- msgstr "Slovenie"
2876
 
2877
  #: ../lib/tribe-view-helpers.class.php:239
2878
  msgid "Solomon Islands"
2879
- msgstr ""
2880
 
2881
  #: ../lib/tribe-view-helpers.class.php:240
2882
  msgid "Somalia"
2883
- msgstr ""
2884
 
2885
  #: ../lib/tribe-view-helpers.class.php:241
2886
  msgid "South Africa"
2887
- msgstr ""
2888
 
2889
  #: ../lib/tribe-view-helpers.class.php:242
2890
  msgid "South Georgia, South Sandwich Islands"
2891
- msgstr ""
2892
 
2893
  #: ../lib/tribe-view-helpers.class.php:243
2894
  msgid "Spain"
@@ -2896,31 +2823,31 @@ msgstr "Spanje"
2896
 
2897
  #: ../lib/tribe-view-helpers.class.php:244
2898
  msgid "Sri Lanka"
2899
- msgstr ""
2900
 
2901
  #: ../lib/tribe-view-helpers.class.php:245
2902
  msgid "St. Helena"
2903
- msgstr ""
2904
 
2905
  #: ../lib/tribe-view-helpers.class.php:246
2906
  msgid "St. Pierre And Miquelon"
2907
- msgstr ""
2908
 
2909
  #: ../lib/tribe-view-helpers.class.php:247
2910
  msgid "Sudan"
2911
- msgstr ""
2912
 
2913
  #: ../lib/tribe-view-helpers.class.php:248
2914
  msgid "Suriname"
2915
- msgstr ""
2916
 
2917
  #: ../lib/tribe-view-helpers.class.php:249
2918
  msgid "Svalbard And Jan Mayen Islands"
2919
- msgstr ""
2920
 
2921
  #: ../lib/tribe-view-helpers.class.php:250
2922
  msgid "Swaziland"
2923
- msgstr ""
2924
 
2925
  #: ../lib/tribe-view-helpers.class.php:251
2926
  msgid "Sweden"
@@ -2932,43 +2859,43 @@ msgstr "Zwitserland"
2932
 
2933
  #: ../lib/tribe-view-helpers.class.php:253
2934
  msgid "Syrian Arab Republic"
2935
- msgstr ""
2936
 
2937
  #: ../lib/tribe-view-helpers.class.php:254
2938
  msgid "Taiwan"
2939
- msgstr ""
2940
 
2941
  #: ../lib/tribe-view-helpers.class.php:255
2942
  msgid "Tajikistan"
2943
- msgstr ""
2944
 
2945
  #: ../lib/tribe-view-helpers.class.php:256
2946
  msgid "Tanzania, United Republic Of"
2947
- msgstr ""
2948
 
2949
  #: ../lib/tribe-view-helpers.class.php:257
2950
  msgid "Thailand"
2951
- msgstr ""
2952
 
2953
  #: ../lib/tribe-view-helpers.class.php:258
2954
  msgid "Togo"
2955
- msgstr ""
2956
 
2957
  #: ../lib/tribe-view-helpers.class.php:259
2958
  msgid "Tokelau"
2959
- msgstr ""
2960
 
2961
  #: ../lib/tribe-view-helpers.class.php:260
2962
  msgid "Tonga"
2963
- msgstr ""
2964
 
2965
  #: ../lib/tribe-view-helpers.class.php:261
2966
  msgid "Trinidad And Tobago"
2967
- msgstr ""
2968
 
2969
  #: ../lib/tribe-view-helpers.class.php:262
2970
  msgid "Tunisia"
2971
- msgstr ""
2972
 
2973
  #: ../lib/tribe-view-helpers.class.php:263
2974
  msgid "Turkey"
@@ -2976,292 +2903,291 @@ msgstr "Turkije"
2976
 
2977
  #: ../lib/tribe-view-helpers.class.php:264
2978
  msgid "Turkmenistan"
2979
- msgstr ""
2980
 
2981
  #: ../lib/tribe-view-helpers.class.php:265
2982
  msgid "Turks And Caicos Islands"
2983
- msgstr ""
2984
 
2985
  #: ../lib/tribe-view-helpers.class.php:266
2986
  msgid "Tuvalu"
2987
- msgstr ""
2988
 
2989
  #: ../lib/tribe-view-helpers.class.php:267
2990
  msgid "Uganda"
2991
- msgstr ""
2992
 
2993
  #: ../lib/tribe-view-helpers.class.php:268
2994
  msgid "Ukraine"
2995
- msgstr ""
2996
 
2997
  #: ../lib/tribe-view-helpers.class.php:269
2998
  msgid "United Arab Emirates"
2999
- msgstr ""
3000
 
3001
  #: ../lib/tribe-view-helpers.class.php:270
3002
  msgid "United Kingdom"
3003
- msgstr "Groot Brittanie"
3004
 
3005
  #: ../lib/tribe-view-helpers.class.php:271
3006
  msgid "United States Minor Outlying Islands"
3007
- msgstr ""
3008
 
3009
  #: ../lib/tribe-view-helpers.class.php:272
3010
  msgid "Uruguay"
3011
- msgstr ""
3012
 
3013
  #: ../lib/tribe-view-helpers.class.php:273
3014
  msgid "Uzbekistan"
3015
- msgstr ""
3016
 
3017
  #: ../lib/tribe-view-helpers.class.php:274
3018
  msgid "Vanuatu"
3019
- msgstr ""
3020
 
3021
  #: ../lib/tribe-view-helpers.class.php:275
3022
  msgid "Venezuela"
3023
- msgstr ""
3024
 
3025
  #: ../lib/tribe-view-helpers.class.php:276
3026
  msgid "Viet Nam"
3027
- msgstr ""
3028
 
3029
  #: ../lib/tribe-view-helpers.class.php:277
3030
  msgid "Virgin Islands (British)"
3031
- msgstr ""
3032
 
3033
  #: ../lib/tribe-view-helpers.class.php:278
3034
  msgid "Virgin Islands (U.S.)"
3035
- msgstr ""
3036
 
3037
  #: ../lib/tribe-view-helpers.class.php:279
3038
  msgid "Wallis And Futuna Islands"
3039
- msgstr ""
3040
 
3041
  #: ../lib/tribe-view-helpers.class.php:280
3042
  msgid "Western Sahara"
3043
- msgstr ""
3044
 
3045
  #: ../lib/tribe-view-helpers.class.php:281
3046
  msgid "Yemen"
3047
- msgstr ""
3048
 
3049
  #: ../lib/tribe-view-helpers.class.php:282
3050
  msgid "Zambia"
3051
- msgstr ""
3052
 
3053
  #: ../lib/tribe-view-helpers.class.php:283
3054
  msgid "Zimbabwe"
3055
- msgstr ""
3056
 
3057
  #: ../lib/tribe-view-helpers.class.php:308
3058
  msgid "Alabama"
3059
- msgstr ""
3060
 
3061
  #: ../lib/tribe-view-helpers.class.php:309
3062
  msgid "Alaska"
3063
- msgstr ""
3064
 
3065
  #: ../lib/tribe-view-helpers.class.php:310
3066
  msgid "Arizona"
3067
- msgstr ""
3068
 
3069
  #: ../lib/tribe-view-helpers.class.php:311
3070
  msgid "Arkansas"
3071
- msgstr ""
3072
 
3073
  #: ../lib/tribe-view-helpers.class.php:312
3074
  msgid "California"
3075
- msgstr ""
3076
 
3077
  #: ../lib/tribe-view-helpers.class.php:313
3078
  msgid "Colorado"
3079
- msgstr ""
3080
 
3081
  #: ../lib/tribe-view-helpers.class.php:314
3082
  msgid "Connecticut"
3083
- msgstr ""
3084
 
3085
  #: ../lib/tribe-view-helpers.class.php:315
3086
  msgid "Delaware"
3087
- msgstr ""
3088
 
3089
  #: ../lib/tribe-view-helpers.class.php:316
3090
  msgid "District of Columbia"
3091
- msgstr ""
3092
 
3093
  #: ../lib/tribe-view-helpers.class.php:317
3094
  msgid "Florida"
3095
- msgstr ""
3096
 
3097
  #: ../lib/tribe-view-helpers.class.php:319
3098
  msgid "Hawaii"
3099
- msgstr ""
3100
 
3101
  #: ../lib/tribe-view-helpers.class.php:320
3102
  msgid "Idaho"
3103
- msgstr ""
3104
 
3105
  #: ../lib/tribe-view-helpers.class.php:321
3106
  msgid "Illinois"
3107
- msgstr ""
3108
 
3109
  #: ../lib/tribe-view-helpers.class.php:322
3110
  msgid "Indiana"
3111
- msgstr ""
3112
 
3113
  #: ../lib/tribe-view-helpers.class.php:323
3114
  msgid "Iowa"
3115
- msgstr ""
3116
 
3117
  #: ../lib/tribe-view-helpers.class.php:324
3118
  msgid "Kansas"
3119
- msgstr ""
3120
 
3121
  #: ../lib/tribe-view-helpers.class.php:325
3122
  msgid "Kentucky"
3123
- msgstr ""
3124
 
3125
  #: ../lib/tribe-view-helpers.class.php:326
3126
  msgid "Louisiana"
3127
- msgstr ""
3128
 
3129
  #: ../lib/tribe-view-helpers.class.php:327
3130
  msgid "Maine"
3131
- msgstr ""
3132
 
3133
  #: ../lib/tribe-view-helpers.class.php:328
3134
  msgid "Maryland"
3135
- msgstr ""
3136
 
3137
  #: ../lib/tribe-view-helpers.class.php:329
3138
  msgid "Massachusetts"
3139
- msgstr ""
3140
 
3141
  #: ../lib/tribe-view-helpers.class.php:330
3142
  msgid "Michigan"
3143
- msgstr ""
3144
 
3145
  #: ../lib/tribe-view-helpers.class.php:331
3146
  msgid "Minnesota"
3147
- msgstr ""
3148
 
3149
  #: ../lib/tribe-view-helpers.class.php:332
3150
  msgid "Mississippi"
3151
- msgstr ""
3152
 
3153
  #: ../lib/tribe-view-helpers.class.php:333
3154
  msgid "Missouri"
3155
- msgstr ""
3156
 
3157
  #: ../lib/tribe-view-helpers.class.php:334
3158
  msgid "Montana"
3159
- msgstr ""
3160
 
3161
  #: ../lib/tribe-view-helpers.class.php:335
3162
  msgid "Nebraska"
3163
- msgstr ""
3164
 
3165
  #: ../lib/tribe-view-helpers.class.php:336
3166
  msgid "Nevada"
3167
- msgstr ""
3168
 
3169
  #: ../lib/tribe-view-helpers.class.php:337
3170
  msgid "New Hampshire"
3171
- msgstr ""
3172
 
3173
  #: ../lib/tribe-view-helpers.class.php:338
3174
  msgid "New Jersey"
3175
- msgstr ""
3176
 
3177
  #: ../lib/tribe-view-helpers.class.php:339
3178
  msgid "New Mexico"
3179
- msgstr ""
3180
 
3181
  #: ../lib/tribe-view-helpers.class.php:340
3182
  msgid "New York"
3183
- msgstr ""
3184
 
3185
  #: ../lib/tribe-view-helpers.class.php:341
3186
  msgid "North Carolina"
3187
- msgstr ""
3188
 
3189
  #: ../lib/tribe-view-helpers.class.php:342
3190
  msgid "North Dakota"
3191
- msgstr ""
3192
 
3193
  #: ../lib/tribe-view-helpers.class.php:343
3194
  msgid "Ohio"
3195
- msgstr ""
3196
 
3197
  #: ../lib/tribe-view-helpers.class.php:344
3198
  msgid "Oklahoma"
3199
- msgstr ""
3200
 
3201
  #: ../lib/tribe-view-helpers.class.php:345
3202
  msgid "Oregon"
3203
- msgstr ""
3204
 
3205
  #: ../lib/tribe-view-helpers.class.php:346
3206
  msgid "Pennsylvania"
3207
- msgstr ""
3208
 
3209
  #: ../lib/tribe-view-helpers.class.php:347
3210
  msgid "Rhode Island"
3211
- msgstr ""
3212
 
3213
  #: ../lib/tribe-view-helpers.class.php:348
3214
  msgid "South Carolina"
3215
- msgstr ""
3216
 
3217
  #: ../lib/tribe-view-helpers.class.php:349
3218
  msgid "South Dakota"
3219
- msgstr ""
3220
 
3221
  #: ../lib/tribe-view-helpers.class.php:350
3222
  msgid "Tennessee"
3223
- msgstr ""
3224
 
3225
  #: ../lib/tribe-view-helpers.class.php:351
3226
  msgid "Texas"
3227
- msgstr ""
3228
 
3229
  #: ../lib/tribe-view-helpers.class.php:352
3230
  msgid "Utah"
3231
- msgstr ""
3232
 
3233
  #: ../lib/tribe-view-helpers.class.php:353
3234
  msgid "Vermont"
3235
- msgstr ""
3236
 
3237
  #: ../lib/tribe-view-helpers.class.php:354
3238
  msgid "Virginia"
3239
- msgstr ""
3240
 
3241
  #: ../lib/tribe-view-helpers.class.php:355
3242
  msgid "Washington"
3243
- msgstr ""
3244
 
3245
  #: ../lib/tribe-view-helpers.class.php:356
3246
  msgid "West Virginia"
3247
- msgstr ""
3248
 
3249
  #: ../lib/tribe-view-helpers.class.php:357
3250
  msgid "Wisconsin"
3251
- msgstr ""
3252
 
3253
  #: ../lib/tribe-view-helpers.class.php:358
3254
  msgid "Wyoming"
3255
- msgstr ""
3256
 
3257
- #
3258
  #: ../lib/widget-list.class.php:21
3259
  msgid "A widget that displays upcoming events."
3260
- msgstr "Een widget die toekomstige evenemente weergeeft."
3261
 
3262
  #: ../lib/widget-list.class.php:27
3263
  msgid "Events List"
3264
- msgstr "Evenementen Lijst"
3265
 
3266
  #: ../lib/widget-list.class.php:114
3267
  msgid "View All Events"
@@ -3277,7 +3203,7 @@ msgid ""
3277
  "There were no results found for <strong>\"%s\"</strong> this month. Try "
3278
  "searching next month."
3279
  msgstr ""
3280
- "Er zijn geen resultaten gevonden voor <strong>\"%s\"</strong> deze maand. "
3281
  "Probeer volgende maand."
3282
 
3283
  #: ../lib/template-classes/single-event.php:99
@@ -3329,7 +3255,6 @@ msgstr "Maak inchecken ongedaan"
3329
  msgid "Print"
3330
  msgstr "Print"
3331
 
3332
- #
3333
  #: ../lib/tickets/tribe-tickets-attendees.php:180
3334
  msgid "Email"
3335
  msgstr "Email"
@@ -3400,7 +3325,6 @@ msgstr "Begin:"
3400
  msgid "End:"
3401
  msgstr "Einde:"
3402
 
3403
- #
3404
  #: ../public/advanced-functions/meta.php:51
3405
  msgid "Date:"
3406
  msgstr "Datum:"
@@ -3409,31 +3333,27 @@ msgstr "Datum:"
3409
  msgid "Click to view a Google Map"
3410
  msgstr "Klik om te bekijken op Google Maps"
3411
 
3412
- #
3413
  #: ../public/advanced-functions/meta.php:234
3414
  msgid "+ Google Map"
3415
- msgstr "+ Google Map"
3416
 
3417
  #: ../public/advanced-functions/meta.php:245
3418
  msgid "Details"
3419
  msgstr "Gegevens"
3420
 
3421
- #
3422
  #: ../public/advanced-functions/meta.php:295
3423
  msgid "Event Tags:"
3424
- msgstr "Evenement Tags:"
3425
 
3426
  # depends largely on context, 2b checked when ECP runned
3427
  #: ../public/advanced-functions/meta.php:321
3428
  msgid "Origin:"
3429
  msgstr "Achtergrond:"
3430
 
3431
- #
3432
  #: ../public/advanced-functions/meta.php:458
3433
  msgid "Event:"
3434
  msgstr "Evenement:"
3435
 
3436
- #
3437
  #: ../public/template-tags/deprecated.php:1143
3438
  msgid "Category"
3439
  msgstr "Categorie"
@@ -3442,40 +3362,37 @@ msgstr "Categorie"
3442
  msgid "Tags:"
3443
  msgstr "Tags:"
3444
 
3445
- #
3446
  #: ../public/template-tags/general.php:392
3447
  msgid "Loading Events"
3448
- msgstr "Laad Evenementen"
3449
 
3450
  #: ../public/template-tags/general.php:531
3451
  msgid "Free"
3452
  msgstr "Gratis"
3453
 
3454
- #
3455
  #: ../public/template-tags/general.php:703
3456
  msgid "Recurring Event"
3457
- msgstr "Terugkerend Evenement"
3458
 
3459
  #: ../public/template-tags/general.php:706
3460
  msgid "(See all)"
3461
- msgstr "(Bekijk Alles)"
3462
 
3463
  #: ../public/template-tags/general.php:982
3464
  #, php-format
3465
  msgid "Calendar powered by %sThe Events Calendar%s"
3466
- msgstr "Kalender door %sThe Events Calendar%s"
3467
 
3468
  #: ../public/template-tags/loop.php:150
3469
  #, php-format
3470
  msgid "Events for %1$s"
3471
- msgstr "Evenementen op %1$s"
3472
 
3473
  #: ../public/template-tags/loop.php:158
3474
  #, php-format
3475
  msgid "Events for %1$s through %2$s"
3476
- msgstr "Evenementen van %1$s tot %2$s"
3477
 
3478
- #
3479
  #: ../public/template-tags/loop.php:171
3480
  msgid "Events for "
3481
  msgstr "Evenementen in "
@@ -3483,7 +3400,7 @@ msgstr "Evenementen in "
3483
  #: ../public/template-tags/options.php:20
3484
  #, php-format
3485
  msgid "Your current Events URL is %s"
3486
- msgstr "Je huidige Evenementen URL is %s"
3487
 
3488
  #: ../public/template-tags/options.php:31
3489
  #, php-format
@@ -3493,51 +3410,43 @@ msgid ""
3493
  msgstr ""
3494
  "Je kunt <strong>niet</strong> dezelfde slug als hierboven gebruiken. "
3495
  "Bovenstaande zou idealiter meervoud zijn en deze enkelvoud.<br />Je "
3496
- "Evenement URL is als: %s"
3497
 
3498
- #
3499
  #: ../views/single-event.php:23
3500
  msgid "&laquo; All Events"
3501
- msgstr "&laquo; Alle Evenementen"
3502
 
3503
- #
3504
  #: ../views/single-event.php:42 ../views/single-event.php:73
3505
  msgid "Event Navigation"
3506
- msgstr "Evenement Navigatie"
3507
 
3508
- #
3509
  #: ../views/list/nav.php:16
3510
  msgid "Events List Navigation"
3511
- msgstr "Evenementen Lijst Navigatie"
3512
 
3513
- # context? 2b checked ECP running
3514
  #: ../views/list/single-event.php:76
3515
  msgid "Find out more"
3516
- msgstr "Lees meer"
3517
 
3518
- #
3519
  #: ../views/modules/bar.php:31 ../views/modules/bar.php:60
3520
  msgid "Find Events"
3521
- msgstr "Vind Evenementen"
3522
 
3523
  #: ../views/modules/bar.php:38
3524
  msgid "Event Views Navigation"
3525
- msgstr "Evenementen Weergave Navigatie"
3526
 
3527
- #
3528
  #: ../views/modules/bar.php:39
3529
  msgid "View As"
3530
  msgstr "Bekijk als"
3531
 
3532
- #
3533
  #: ../views/month/nav.php:18
3534
  msgid "Calendar Month Navigation"
3535
- msgstr "Kalender Maand Navigatie"
3536
 
3537
- #
3538
  #: ../views/tickets/attendees-email.php:25
3539
  msgid "Attendee List"
3540
- msgstr "Aanwezigen Lijst"
3541
 
3542
  #: ../views/tickets/email.php:39
3543
  msgid "Your tickets"
@@ -3545,36 +3454,44 @@ msgstr "Je tickets"
3545
 
3546
  #: ../views/tickets/email.php:320
3547
  msgid "Ticket Type"
3548
- msgstr "Ticket Type"
3549
 
3550
  #: ../views/tickets/email.php:324
3551
  msgid "Purchaser"
3552
  msgstr "Koper"
3553
 
3554
- #~ msgid ""
3555
- #~ "Want to modify the display of this widget? Try a %stemplate override%s."
3556
- #~ msgstr ""
3557
- #~ "Wil je de weergave van de widget aanpassen? Probeer een %stemplate "
3558
- #~ "override%s."
3559
 
3560
- #~ msgid ""
3561
- #~ "These styles provide a bare minimum level of layout for the more complex "
3562
- #~ "templates, and is recommended if you're customizing the events template "
3563
- #~ "styles."
3564
  #~ msgstr ""
3565
- #~ "Deze styles hebben slechts het hoogst noodzakelijke voor de meer complexe "
3566
- #~ "templates en worden aanbevolen als basis voor het verder aanpassen van de "
3567
- #~ "evementent template styles."
 
 
 
 
 
 
 
 
 
 
 
3568
 
3569
  #~ msgid ""
3570
- #~ "These styles provide a more complex level of layout and style and should "
3571
- #~ "adapt to your theme"
 
 
 
3572
  #~ msgstr ""
3573
- #~ "Deze styles hebben een complexere layout en style waardoor ze zich beter "
3574
- #~ "aanpassen aan je theme"
3575
-
3576
- #~ msgid "These styles provide a fully designed events theme"
3577
- #~ msgstr "Deze styles zijn een volledig ontworpen evenementen theme"
3578
 
3579
  #~ msgid ""
3580
  #~ "If this is your first time using The Events Calendar,you're in for a "
@@ -3596,15 +3513,27 @@ msgstr "Koper"
3596
  #~ "href=\"%s\">new user primer</a>, designed to help familiarize you with "
3597
  #~ "the plugin basics.</li></ul>"
3598
 
 
 
 
3599
  #~ msgid ""
3600
- #~ "<p>We love all our users and want to help free & PRO customers alike. If "
3601
- #~ "you're running the latest version of The Events Calendar and are having "
3602
- #~ "problems, post a thread at the %s on WordPress.org. We hit the forum once "
3603
- #~ "a week to look for legitimate bug reports and do what we can to assist "
3604
- #~ "users.</p>"
3605
  #~ msgstr ""
3606
- #~ "<p>We houden van al onze gebruikers en willen zowel de free & PRO "
3607
- #~ "gebruikers helpen. Als je de laatste versie van The Events Calendar "
3608
- #~ "gebruikt en je hebt problemen, post een bericht onder %s op WordPress."
3609
- #~ "org. We bekijken het forum eens per week voor bug reports en om te zien "
3610
- #~ "hoe we gebruikers kunnen assisteren.</p>"
 
 
 
 
 
 
 
 
 
 
 
 
5
  msgstr ""
6
  "Project-Id-Version: The Events Calendar\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-07-02 11:29-0800\n"
9
+ "PO-Revision-Date: 2013-08-27 23:45+0200\n"
10
+ "Last-Translator: Erik Massop <e.massop@hccnet.nl>\n"
11
  "Language-Team: Modern Tribe, Inc. <pro@tri.be>\n"
12
+ "Language: nl_NL\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
22
  "X-Generator: Poedit 1.5.5\n"
23
  "X-Poedit-SearchPath-0: ..\n"
24
 
 
25
  #: ../admin-views/app-shop.php:4
26
  msgid "Tribe Event Add-Ons"
27
  msgstr "Tribe Evenementen Add-Ons"
32
 
33
  #: ../admin-views/app-shop.php:53
34
  msgid "Last Update"
35
+ msgstr "Laatste update"
36
 
37
  #: ../admin-views/event-sidebar-options.php:11
38
  msgid "Hide From Event Listings"
39
+ msgstr "Verberg in evenementenlijsten"
40
 
41
  #: ../admin-views/event-sidebar-options.php:12
42
  msgid "Sticky in Calendar View"
43
+ msgstr "Sticky in kalenderweergave"
44
 
 
45
  #: ../admin-views/events-audit-trail.php:41
46
  msgid "Auditing Information"
47
+ msgstr "Auditinginformatie"
48
 
49
  #: ../admin-views/events-audit-trail.php:47
50
  msgid "Created by:"
52
 
53
  #: ../admin-views/events-audit-trail.php:51
54
  msgid "Audit Trail:"
55
+ msgstr "Auditvoortgang:"
56
 
57
  #: ../admin-views/events-meta-box.php:26
58
  msgid "Event Time &amp; Date"
59
+ msgstr "Datum &amp; Tijd"
60
 
61
  #: ../admin-views/events-meta-box.php:32
62
  msgid ""
68
  "op te slaan veranderen alle toekomstige evenementen. Als je niet alle "
69
  "evenementen wilde wijzigen, dien je de pagina te verversen."
70
 
 
71
  #: ../admin-views/events-meta-box.php:35
72
  msgid "All Day Event:"
73
+ msgstr "Evenement duurt hele dag:"
74
 
 
75
  #: ../admin-views/events-meta-box.php:39
76
  msgid "Start Date &amp; Time:"
77
+ msgstr "Startdatum &amp; -tijd:"
78
 
79
  #: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
80
  msgid "YYYY-MM-DD"
81
  msgstr "JJJJ-MM-DD"
82
 
 
83
  #: ../admin-views/events-meta-box.php:60
84
  msgid "End Date &amp; Time:"
85
+ msgstr "Einddatum &amp; -tijd:"
86
 
87
  #: ../admin-views/events-meta-box.php:85
88
  msgid "Event Location Details"
89
+ msgstr "Locatie"
90
 
91
  #: ../admin-views/events-meta-box.php:93
92
  msgid "Event Organizer Details"
93
+ msgstr "Organisator"
94
 
 
95
  #: ../admin-views/events-meta-box.php:101
96
  msgid "Event Website"
97
+ msgstr "Evenementwebsite"
98
 
99
  #: ../admin-views/events-meta-box.php:104
100
  msgid "URL:"
102
 
103
  #: ../admin-views/events-meta-box.php:115
104
  msgid "Event Cost"
105
+ msgstr "Evenementkosten"
106
 
107
  #: ../admin-views/events-meta-box.php:118
108
  msgid "Currency Symbol:"
109
+ msgstr "Valutasymbool:"
110
 
111
  #: ../admin-views/events-meta-box.php:122
112
  #: ../public/advanced-functions/meta.php:270
115
 
116
  #: ../admin-views/events-meta-box.php:127
117
  msgid "Enter a 0 for events that are free or leave blank to hide the field."
118
+ msgstr "Voer 0 in voor gratis evenementen of laat leeg om niet weer te geven."
119
 
120
  #: ../admin-views/organizer-meta-box.php:12
121
  msgid "Organizer Name:"
122
+ msgstr "Naam van de organisator:"
123
 
124
  #: ../admin-views/organizer-meta-box.php:19
125
  #: ../admin-views/venue-meta-box.php:93
141
  #: ../admin-views/organizer-meta-box.php:27
142
  #: ../public/advanced-functions/meta.php:432
143
  msgid "Email:"
144
+ msgstr "E-mail:"
145
 
146
  #: ../admin-views/recurrence-dialog.php:13
147
  msgid ""
148
  "Would you like to change only this instance of the event, or all future "
149
  "events in this series?"
150
  msgstr ""
151
+ "Wil je alleen dit evenement veranderen of ook alle toekomstige evenementen "
152
  "in de serie?"
153
 
154
  #: ../admin-views/recurrence-dialog.php:15
155
  #: ../admin-views/recurrence-dialog.php:23
156
  msgid "Only This Event:"
157
+ msgstr "Alleen dit evenement:"
158
 
159
  #: ../admin-views/recurrence-dialog.php:15
160
  msgid "All other future events in the series will remain the same."
161
  msgstr "Alle toekomstige evenementen in de serie blijven onverandered."
162
 
 
163
  #: ../admin-views/recurrence-dialog.php:16
164
  #: ../admin-views/recurrence-dialog.php:24
165
  msgid "All Events:"
166
+ msgstr "Alle evenementen:"
167
 
168
  #: ../admin-views/recurrence-dialog.php:16
169
  msgid ""
178
  "Would you like to delete only this instance of the event, or all future "
179
  "events in this series?"
180
  msgstr ""
181
+ "Wil je alleen dit evenement verwijderen of ook alle toekomstige evenementen "
182
  "in de serie?"
183
 
184
  #: ../admin-views/recurrence-dialog.php:23
185
  msgid "All other future events in the series will not be deleted."
186
  msgstr ""
187
+ "Alle andere toekomstige evenementen in de serie worden niet verwijderd."
188
 
189
  #: ../admin-views/recurrence-dialog.php:24
190
  msgid "All future events in the series will be deleted."
192
 
193
  #: ../admin-views/tribe-options-display.php:4
194
  msgid "Default Events Template"
195
+ msgstr "Standaardevenemententemplate"
196
 
197
  #: ../admin-views/tribe-options-display.php:5
198
  msgid "Default Page Template"
199
+ msgstr "Standaardpaginatemplate"
200
 
 
201
  #: ../admin-views/tribe-options-display.php:29
202
  msgid "Display Settings"
203
+ msgstr "Weergave-instellingen"
204
 
205
+ # Added comment "All documentation is in english." to this string.
 
206
  #: ../admin-views/tribe-options-display.php:34
207
+ #, php-format
208
  msgid ""
209
  "<p>The settings below control the display of your calendar. If things don't "
210
  "look right, try switching between the three style sheet options or pick a "
215
  "plugin from Github</a></p>"
216
  msgstr ""
217
  "<p>De instellingen hieronder zijn voor de weergave van de kalender. Als het "
218
+ "er niet goed uitziet probeer dan te schakelen tussen de drie "
219
+ "stylesheetopties of kies een paginatemplate van je thema.</p><p>Er zullen "
220
+ "situaties voorkomen waarbij geen enkel standaardtemplate 100&#37; perfect "
221
+ "is. Kijk naar <a href=\"%s\">onze themer's guide</a> voor instructies over "
222
+ "handmatige aanpassingen. Wil je een nieuwe weergave maken? Bekijk dan de <a "
223
+ "href=\"%s\">Sample Agenda View plugin op Github</a>. Alle documentatie is in "
224
+ "het engels!</p>"
225
+
 
226
  #: ../admin-views/tribe-options-display.php:49
227
  msgid "Basic Template Settings"
228
+ msgstr "Basis-template-instellingen"
229
 
 
230
  #: ../admin-views/tribe-options-display.php:53
231
  msgid "Default stylesheet used for events templates"
232
+ msgstr "Standaardstylesheet voor evenemententemplates"
233
 
234
  #: ../admin-views/tribe-options-display.php:56
235
  msgid "Skeleton Styles"
236
+ msgstr "Basisstyles"
237
 
238
  #: ../admin-views/tribe-options-display.php:58
239
  msgid ""
240
  "Only includes enough css to achieve complex layouts like calendar and week "
241
  "view."
242
  msgstr ""
243
+ "Bevat slechts genoeg css om complexe opmaak, zoals de kalender- en "
244
+ "weekweergaven, mogelijk te maken"
245
 
246
  #: ../admin-views/tribe-options-display.php:60
247
  msgid "Full Styles"
248
+ msgstr "Volledige styles"
249
 
250
  #: ../admin-views/tribe-options-display.php:62
251
  msgid "More detailed styling, tries to grab styles from your theme."
252
+ msgstr "Gedetailleerdere styling, probeert styles van je thema te gebruiken."
253
 
 
254
  #: ../admin-views/tribe-options-display.php:64
255
  msgid "Tribe Events Styles"
256
+ msgstr "Tribe Events Styles"
257
 
258
  #: ../admin-views/tribe-options-display.php:66
259
  msgid "A fully designed and styled theme for your events pages."
260
+ msgstr "Een volledig ontworpen en gestyled thema voor je evenemententpagina's."
261
 
 
262
  #: ../admin-views/tribe-options-display.php:73
263
  msgid "Events template"
264
+ msgstr "Evenemententemplate"
265
 
266
  #: ../admin-views/tribe-options-display.php:74
267
  msgid ""
268
  "Choose a page template to control the appearance of your calendar and event "
269
  "content."
270
  msgstr ""
271
+ "Kies een paginatemplate voor de weergave van je kalender en evenementen."
272
 
273
  #: ../admin-views/tribe-options-display.php:82
274
  msgid "Enable event views"
275
+ msgstr "Evenementenviews"
276
 
277
  #: ../admin-views/tribe-options-display.php:83
278
  msgid "You must select at least one view."
280
 
281
  #: ../admin-views/tribe-options-display.php:90
282
  msgid "Default view"
283
+ msgstr "Standaardview"
284
 
285
  #: ../admin-views/tribe-options-display.php:98
 
286
  msgid "Disable the Event Search Bar"
287
+ msgstr "Schakel de evenementenzoekbalk uit"
288
 
289
  #: ../admin-views/tribe-options-display.php:99
 
290
  msgid "Check this to use the classic header."
291
+ msgstr "Zet het vinkje aan om de klassieke header te gebruiken."
292
 
 
293
  #: ../admin-views/tribe-options-display.php:105
294
  msgid "Advanced Template Settings"
295
+ msgstr "Geavanceerde template-instellingen"
296
 
 
297
  #: ../admin-views/tribe-options-display.php:109
298
  msgid "Add HTML before event content"
299
+ msgstr "Voeg HTML toe voor de evenementinhoud"
300
 
301
  #: ../admin-views/tribe-options-display.php:110
302
  msgid ""
303
  "If you are familiar with HTML, you can add additional code before the event "
304
  "template. Some themes may require this to help with styling or layout."
305
  msgstr ""
306
+ "Als je vertrouwd bent met HTML kun je extra code toevoegen vóór het "
307
+ "evenementtemplate. Sommige thema's hebben dit nodig voor styling of layout."
308
 
 
309
  #: ../admin-views/tribe-options-display.php:115
310
  msgid "Add HTML after event content"
311
+ msgstr "Voeg HTML toe na de evenementinhoud"
312
 
313
  #: ../admin-views/tribe-options-display.php:116
314
  msgid ""
315
  "If you are familiar with HTML, you can add additional code after the event "
316
  "template. Some themes may require this to help with styling or layout."
317
  msgstr ""
318
+ "Als je op de vertrouwd bent met HTML kun je extra code toevoegen na het "
319
+ "evenementtemplate. Sommige thema's hebben dit nodig voor styling of layout."
320
 
321
  #: ../admin-views/tribe-options-general.php:14
322
  msgid "Finding & extending your calendar."
323
+ msgstr "Vinden & uitbreiden van je kalender."
324
 
325
  #: ../admin-views/tribe-options-general.php:19
326
  msgid "Finding your calendar."
327
+ msgstr "Vind je kalender."
328
 
 
329
  #: ../admin-views/tribe-options-general.php:24
330
  msgid "Where's my calendar?"
331
  msgstr "Waar is mijn kalender?"
332
 
333
  #: ../admin-views/tribe-options-general.php:24
334
  msgid "Right here"
335
+ msgstr "Hier"
336
 
337
  #: ../admin-views/tribe-options-general.php:28
338
  msgid ""
342
  "Op zoek naar extra functionaliteit waaronder terugkerende evenementen, "
343
  "gemeenschappelijke evenementen, ticketverkoop en meer?"
344
 
 
345
  #: ../admin-views/tribe-options-general.php:28
346
  msgid "Check out the available add-ons"
347
  msgstr "Bekijk de beschikbare add-ons"
358
  "pointing to The Events Calendar project."
359
  msgstr ""
360
  "Denk je \"Wow, deze plugin is verbazingwekkend! Ik moet Modern Tribe "
361
+ "bedanken voor hun harde werk\"? De grootste dank waar we om kunnen vragen "
362
+ "is erkenning. Voeg een kleine tekstlink toe aan je kalender die verwijst "
363
+ "naar het 'The Events Calendar'-project."
364
 
365
  #: ../admin-views/tribe-options-general.php:37
366
  #: ../admin-views/tribe-options-general.php:42
367
  msgid "See an example of the link"
368
  msgstr "Bekijk een voorbeeld van deze link"
369
 
370
+ # Difference with line 37 is "text-only" vs "text only"
371
  #: ../admin-views/tribe-options-general.php:42
372
  msgid ""
373
  "Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
376
  "pointing to The Events Calendar project."
377
  msgstr ""
378
  "Denk je \"Wow, deze plugin is verbazingwekkend! Ik moet Modern Tribe "
379
+ "bedanken voor hun harde werk\"? De grootste dank waar we om kunnen vragen "
380
+ "is erkenning. Voeg een kleine tekstlink toe aan je kalender die verwijst "
381
+ "naar het 'The Events Calendar'-project."
382
 
 
383
  #: ../admin-views/tribe-options-general.php:47
384
  msgid "Show The Events Calendar link"
385
+ msgstr "Laat de 'The Events Calender Link' zien"
386
 
 
387
  #: ../admin-views/tribe-options-general.php:61
388
  msgid "General Settings"
389
+ msgstr "Algemene instellingen"
390
 
391
  #: ../admin-views/tribe-options-general.php:65
392
  msgid "Number of events to show per page"
394
 
395
  #: ../admin-views/tribe-options-general.php:72
396
  msgid "Use Javascript to control page load"
397
+ msgstr "Gebruik javascript om pagina te laden"
398
 
399
  #: ../admin-views/tribe-options-general.php:73
400
  msgid "Enable ajax to live refresh content."
401
  msgstr "Gebruik ajax om de inhoud live te verversen."
402
 
 
403
  #: ../admin-views/tribe-options-general.php:79
404
  msgid "Show comments"
405
  msgstr "Laat reacties zien"
406
 
407
  #: ../admin-views/tribe-options-general.php:80
408
  msgid "Enable comments on event pages."
409
+ msgstr "Sta reacties op evenementenpagina's toe."
410
 
411
  #: ../admin-views/tribe-options-general.php:86
412
  msgid "Include events in main blog loop"
413
+ msgstr "Gebruik evenementen in de blog loop"
414
 
415
  #: ../admin-views/tribe-options-general.php:87
416
  msgid ""
418
  "will also continue to appear on the default events page."
419
  msgstr ""
420
  "Laat evenementen zien met de overige berichten. Als dit is aangevinkt zullen "
421
+ "de evenementen nog steeds op de standaardevenementenpagina verschijnen."
422
 
423
  #: ../admin-views/tribe-options-general.php:93
424
  #: ../admin-views/tribe-options-general.php:99
425
  msgid "Events URL slug"
426
+ msgstr "Evenementenslug"
427
 
428
  #: ../admin-views/tribe-options-general.php:94
429
  #, php-format
438
  "%s</a>. Om de slug te bewerken, <a href=\"%soptions-permalink.php\">vink "
439
  "hier de aangepaste structuur aan.</a>."
440
 
 
441
  #: ../admin-views/tribe-options-general.php:106
442
  #: ../public/template-tags/options.php:20
443
  msgid "The slug used for building the events URL."
444
+ msgstr "De slug gebruikt voor het opbouwen van de evenementen-URL."
445
 
446
  #: ../admin-views/tribe-options-general.php:106
447
  #, php-format
448
  msgid "Your current events URL is: %s"
449
+ msgstr "Je huidige evenementen-URL is: %s"
450
 
 
451
  #: ../admin-views/tribe-options-general.php:111
452
  #: ../public/template-tags/options.php:43
453
  msgid "Here is the iCal feed URL for your events:"
454
+ msgstr "Hier is de URL van de iCal-feed voor je evenementen:"
455
 
 
456
  #: ../admin-views/tribe-options-general.php:116
457
  msgid "Single event URL slug"
458
+ msgstr "Slug voor afzonderlijke evenementen"
459
 
460
  #: ../admin-views/tribe-options-general.php:123
461
  #, php-format
463
  "The above should ideally be plural, and this singular.<br />Your single "
464
  "event URL is: %s"
465
  msgstr ""
466
+ "Bovenstaande is idealiter meervoud en dit enkelvoud.<br />Je evenement-URL "
467
  "is: %s"
468
 
469
  #: ../admin-views/tribe-options-general.php:128
470
  msgid "End of day cutoff"
471
+ msgstr "Eindedagbegrenzing"
472
 
473
  #: ../admin-views/tribe-options-general.php:136
474
  msgid ""
476
  "avoid awkwardly adding your event to the next day."
477
  msgstr ""
478
  "Heb je evenementen die doorgaan na middernacht? Stel het einde van de dag "
479
+ "uit om te voorkomen dat je evenementen ook op de volgende dag verschijnen."
480
 
481
  #: ../admin-views/tribe-options-general.php:141
482
  msgid "Default currency symbol"
483
+ msgstr "Standaardvalutasymbool"
484
 
485
  #: ../admin-views/tribe-options-general.php:142
486
  msgid ""
487
  "Set the default currency symbol for event costs. Note that this only impacts "
488
  "future events, and changes made will not apply retroactively."
489
  msgstr ""
490
+ "Stel het standaardvalutasymbool voor evenementskosten in. Dit geldt vanaf nu "
491
+ "en heeft geen wijzigingen van eerdere evenementen tot gevolg."
492
 
 
493
  #: ../admin-views/tribe-options-general.php:149
494
  msgid "Map Settings"
495
+ msgstr "Kaartinstellingen"
496
 
497
  #: ../admin-views/tribe-options-general.php:153
498
  msgid "Enable Google Maps"
499
+ msgstr "Gebruik Google Maps"
500
 
501
  #: ../admin-views/tribe-options-general.php:154
502
  msgid "Check to enable maps for events and venues."
503
+ msgstr "Vink aan om kaarten te laten zien bij evenementen en locaties."
504
 
505
  #: ../admin-views/tribe-options-general.php:161
 
506
  msgid "Google Maps default zoom level"
507
+ msgstr "Standaardzoomlevel voor Google Maps"
508
 
509
  #: ../admin-views/tribe-options-general.php:162
510
  msgid "0 = zoomed out; 21 = zoomed in."
511
+ msgstr "0 = uitgezoomd (wereld); 21 = ingezoomd (straat)."
512
 
 
513
  #: ../admin-views/tribe-options-general.php:170
514
  msgid "Miscellaneous Settings"
515
+ msgstr "Overige instellingen"
516
 
517
  #: ../admin-views/tribe-options-general.php:174
518
  msgid "Duplicate Venues &amp; Organizers"
519
+ msgstr "Duplicaatlocaties &amp; -organisatoren"
520
 
521
  #: ../admin-views/tribe-options-general.php:174
522
  #: ../lib/tribe-amalgamator.php:252
523
  msgid "Merge Duplicates"
524
+ msgstr "Duplicaten samenvoegen"
525
 
526
  #: ../admin-views/tribe-options-general.php:174
527
  msgid ""
529
  "Calendar from a pre-3.0 version. Click this button to automatically merge "
530
  "identical venues and organizers."
531
  msgstr ""
532
+ "Er kunnen duplicaatlocaties en -organisatoren zijn als je The Events "
533
+ "Calendar upgradet van een eerdere versie. Klik op deze knop om identieke "
534
  "locaties en organisatoren samen te voegen."
535
 
 
536
  #: ../admin-views/tribe-options-general.php:179
537
  msgid "Debug mode"
538
+ msgstr "Debugmodus"
539
 
540
  #: ../admin-views/tribe-options-general.php:185
541
  #, php-format
545
  "browser, then we recommend that you install the %s and look for the \"Tribe"
546
  "\" tab in the debug output."
547
  msgstr ""
548
+ "Vink deze optie aan om debuggegevens te loggen. Dit logt standaard naar je "
549
+ "servers PHP error log. Als je de logberichten in je browser wilt bekijken "
550
+ "stellen we voor dat je %s installeert en de \"Tribe\"-tab in de debuguitvoer "
551
+ "bekijkt."
552
 
553
  #: ../admin-views/tribe-options-general.php:185
554
  msgid "Debug Bar Plugin"
557
  #: ../admin-views/tribe-options-help.php:18
558
  msgctxt "not available"
559
  msgid "n/a"
560
+ msgstr ""
561
 
562
  #: ../admin-views/tribe-options-help.php:19
563
  msgid "You need to upgrade!"
564
+ msgstr "Je moet upgraden!"
565
 
566
  #: ../admin-views/tribe-options-help.php:19
567
  msgid "You are up to date!"
568
+ msgstr "Je hebt de nieuwste versie!"
569
 
 
570
  #: ../admin-views/tribe-options-help.php:42
571
  msgid "The Events Calendar PRO"
572
  msgstr "The Events Calendar PRO"
575
  msgid "Eventbrite Tickets"
576
  msgstr "Eventbrite Tickets"
577
 
 
578
  #: ../admin-views/tribe-options-help.php:50
579
  msgid "Community Events"
580
  msgstr "Community Events"
581
 
 
582
  #: ../admin-views/tribe-options-help.php:54
583
  msgid "Facebook Events"
584
  msgstr "Facebook Events"
608
 
609
  #: ../admin-views/tribe-options-help.php:83
610
  msgid "Tutorials"
611
+ msgstr "Tutorials"
612
 
613
  #: ../admin-views/tribe-options-help.php:87
614
  msgid "Release Notes"
748
  msgstr ""
749
 
750
  #: ../admin-views/tribe-options-help.php:135
751
+ #, php-format
752
  msgid ""
753
  "If you find that you aren't getting the level of service you've come to "
754
  "expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
755
  "why. We'll do what we can to make it right."
756
  msgstr ""
 
 
757
 
758
  #: ../admin-views/tribe-options-help.php:136
759
  msgid "More..."
765
  "for installing our labor of love!"
766
  msgstr ""
767
  "Hi! Wij zijn Modern Tribe en we zorgen voor die extra wow. Bedankt dat je "
768
+ "ons liefdeswerk hebt geïnstalleerd!"
769
 
770
  #: ../admin-views/tribe-options-help.php:150
771
  msgid "Getting Started"
772
+ msgstr "Aan de slag"
773
 
774
  #: ../admin-views/tribe-options-help.php:153
 
775
  msgid "Support Resources To Help You Kick Ass"
776
+ msgstr ""
777
 
778
  #: ../admin-views/tribe-options-help.php:156
 
779
  msgid "Forums: Because Everyone Needs A Buddy"
780
+ msgstr "Forums: Iedereen heeft een buddy nodig"
781
 
782
  #: ../admin-views/tribe-options-help.php:159
783
  msgid "Not getting help?"
807
 
808
  #: ../admin-views/tribe-options-help.php:175
809
  msgid "WordPress "
810
+ msgstr "Wordpress "
811
 
812
  #: ../admin-views/tribe-options-help.php:176
813
  msgid "Wordpress.org Plugin Page"
834
 
835
  #: ../admin-views/tribe-options-help.php:195
836
  msgid "(Coming Soon!)"
837
+ msgstr "(Komt binnenkort!)"
838
 
839
  #: ../admin-views/tribe-options-help.php:202
840
  msgid "News and Tutorials"
841
+ msgstr "Nieuws en tutorials"
842
 
 
843
  #: ../admin-views/tribe-options-network.php:14
844
  msgid "Network Settings"
845
+ msgstr "Netwerkinstellingen"
846
 
847
  #: ../admin-views/tribe-options-network.php:18
848
  msgid ""
849
  "This is where all of the global network settings for Modern Tribe's The "
850
  "Events Calendar can be modified."
851
  msgstr ""
852
+ "Hier kunnen alle globale netwerkinstellingen voor Modern Tribe's The Events "
853
  "Calendar worden aangepast."
854
 
855
  #: ../admin-views/tribe-options-network.php:26
856
  msgid "Hide the following settings tabs on every site:"
857
+ msgstr "Verberg de volgende instellingentab op iedere site:"
858
 
859
  #: ../admin-views/venue-meta-box.php:20
860
  msgid "Venue Name:"
861
+ msgstr "Naam van de locatie:"
862
 
863
  #: ../admin-views/venue-meta-box.php:27
864
  #: ../public/advanced-functions/meta.php:371
875
 
876
  #: ../admin-views/venue-meta-box.php:73
877
  msgid "State or Province:"
878
+ msgstr "Staat of provincie:"
879
 
880
  #: ../admin-views/venue-meta-box.php:76
881
  msgid "Select a State:"
887
 
888
  #: ../admin-views/venue-meta-box.php:112 ../admin-views/venue-meta-box.php:134
889
  msgid "Show Google Map:"
890
+ msgstr "Geef kaart van Google Maps weer:"
891
 
892
  #: ../admin-views/venue-meta-box.php:122 ../admin-views/venue-meta-box.php:144
893
  msgid "Show Google Maps Link:"
894
+ msgstr "Geef link naar Google Maps weer:"
895
 
896
  #: ../admin-views/widget-admin-list.php:11
897
  msgid "Title:"
910
  msgid "Attendees"
911
  msgstr "Deelnemers"
912
 
 
913
  #: ../admin-views/tickets/attendees.php:14
914
  msgid "Event Summary"
915
+ msgstr "Evenementsamenvatting"
916
 
 
917
  #: ../admin-views/tickets/attendees.php:22
918
  msgid "Event Details"
919
+ msgstr "Evenementgegevens"
920
 
921
  #: ../admin-views/tickets/attendees.php:24
922
  msgid "Start Date / Time:"
923
+ msgstr "Begindatum / -tijd:"
924
 
925
  #: ../admin-views/tickets/attendees.php:26
926
  msgid "End Date / Time:"
927
+ msgstr "Einddatum / -tijd:"
928
 
929
  #: ../admin-views/tickets/attendees.php:34
930
  msgid "Venue:"
932
 
933
  #: ../admin-views/tickets/attendees.php:52
934
  msgid "Ticket Sales"
935
+ msgstr "Ticketverkoop"
936
 
937
  #: ../admin-views/tickets/attendees.php:64 ../admin-views/tickets/list.php:67
938
  #, php-format
939
  msgid "Sold %d"
940
+ msgstr "%d Verkocht"
941
 
942
  #: ../admin-views/tickets/attendees.php:66 ../admin-views/tickets/list.php:69
943
  #, php-format
944
  msgid "Sold %d of %d"
945
+ msgstr "%d Verkocht van %d"
946
 
947
  #: ../admin-views/tickets/attendees.php:81
948
  msgid "Tickets sold:"
954
 
955
  #: ../admin-views/tickets/attendees.php:105
956
  msgid "Send the attendee list by email"
957
+ msgstr "Verzend de deelnemerslijst per e-mail"
958
 
 
959
  #: ../admin-views/tickets/attendees.php:109
960
  msgid "Select a User:"
961
  msgstr "Selecteer een gebruiker:"
968
  msgid "or"
969
  msgstr "of"
970
 
 
971
  #: ../admin-views/tickets/attendees.php:114
972
  msgid "Email Address:"
973
+ msgstr "E-mailadres:"
974
 
975
  #: ../admin-views/tickets/list.php:21
976
  msgid "Edit"
999
  "This event was created using Community Events. Are you sure you want to sell "
1000
  "tickets for it?"
1001
  msgstr ""
1002
+ "Dit evenement is aangemaakt via Community Events. Wil je echt tickets "
1003
  "hiervoor verkopen?"
1004
 
1005
  #: ../admin-views/tickets/meta-box.php:32
1006
  msgid "Upload image for the ticket header"
1007
+ msgstr "Upload afbeelding voor de ticketheader"
1008
 
1009
  #: ../admin-views/tickets/meta-box.php:33
1010
  msgid ""
1012
  "then scaled for mobile. If you would like \"retina\" support use an image "
1013
  "sized to 1160px wide."
1014
  msgstr ""
1015
+ "De maximumbeeldmaten voor in de e-mail zijn 580px breed en onbeperkt hoog, "
1016
+ "en vervolgens geschaald voor de mobiel. Voor \"retina\"-ondersteuning "
1017
+ "gebruik je een afbeelding tot 1160px breed."
1018
 
 
1019
  #: ../admin-views/tickets/meta-box.php:36
1020
  msgid "Select an Image"
1021
+ msgstr "Selecteer een afbeelding"
1022
 
1023
  #: ../admin-views/tickets/meta-box.php:44
1024
  msgid "Remove"
1025
  msgstr "Verwijder"
1026
 
 
1027
  #: ../admin-views/tickets/meta-box.php:62
1028
  #: ../admin-views/tickets/meta-box.php:72
1029
  msgid "Add new ticket"
1030
  msgstr "Voeg een nieuw ticket toe"
1031
 
 
1032
  #: ../admin-views/tickets/meta-box.php:73
1033
  msgid "Edit ticket"
1034
  msgstr "Bewerk ticket"
1037
  msgid "Sell using:"
1038
  msgstr "Verkoop via:"
1039
 
 
1040
  #: ../admin-views/tickets/meta-box.php:96
1041
  msgid "Ticket Name:"
1042
+ msgstr "Ticketnaam:"
1043
 
1044
  #: ../admin-views/tickets/meta-box.php:103
1045
  msgid "Ticket Description:"
1046
+ msgstr "Ticketbeschrijving:"
1047
 
1048
  #: ../admin-views/tickets/meta-box.php:112
1049
  msgid "Price:"
1050
  msgstr "Prijs:"
1051
 
 
1052
  #: ../admin-views/tickets/meta-box.php:124
1053
  msgid "Start sale:"
1054
+ msgstr "Begin verkoop:"
1055
 
 
1056
  #: ../admin-views/tickets/meta-box.php:148
1057
  msgid "End sale:"
1058
+ msgstr "Einde verkoop:"
1059
 
1060
  #: ../admin-views/tickets/meta-box.php:170
1061
  msgid ""
1062
  "When will ticket sales occur? If you don't set a start/end date for sales, "
1063
  "tickets will be available from now until the event ends."
1064
  msgstr ""
1065
+ "Wanneer is ticketverkoop mogelijk? Als je géén start-/einddatum kiest zijn "
1066
  "tickets beschikbaar vanaf nu totdat het evenement is afgelopen."
1067
 
1068
  #: ../lib/the-events-calendar.class.php:491
1093
  "Events Calendar add-ons. Please %supdate now.%s"
1094
  msgstr ""
1095
  "Jouw versie van The Events Calendar is niet up-to-date met één van je The "
1096
+ "Events Calendar add-ons. Daarom graag %snu updaten.%s"
1097
 
1098
  #: ../lib/the-events-calendar.class.php:639
1099
+ #, php-format
1100
  msgid ""
1101
  "The following plugins are out of date: <b>%s</b>. All add-ons contain "
1102
  "dependencies on The Events Calendar and will not function properly unless "
1103
  "paired with the right version. %sWant to pair an older version%s?"
1104
  msgstr ""
1105
+ "De volgende plugins zijn out-of-date: <b>%s</b>. Alle add-ons zijn "
1106
+ "afhankelijk van The Events Calendar en zullen alleen goed functioneren met "
1107
+ "de juiste versie van The Events Calendar. %sWil je samewerken met een ouder "
1108
+ "versie%s?"
1109
 
1110
  #: ../lib/the-events-calendar.class.php:703
1111
  #: ../lib/the-events-calendar.class.php:738
1114
  msgstr "Licenties"
1115
 
1116
  #: ../lib/the-events-calendar.class.php:707
1117
+ #, php-format
1118
  msgid ""
1119
  "<p>The license key you received when completing your purchase from %s will "
1120
  "grant you access to support and updates until it expires. You do not need to "
1130
  "expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> "
1131
  "and click \"Check Again\".</p>"
1132
  msgstr ""
1133
+ "<p>De license key die je ontving na het voltooien van de aankoop op %s geeft "
1134
+ "je toegang tot support en updates totdat deze verloopt. Je hoeft de key "
1135
+ "hieronder niet in te voeren om de plugins te laten werken, maar je moet hem "
1136
+ "wel invoeren voor automatische updates. <strong>Vind je license keys op <a "
1137
  "href=\"%s\">%s</a></strong>.</p> <p>Elke betaalde add-on heeft zijn eigen "
1138
+ "unieke license key. Plak deze in het juiste veld hieronder en wacht even "
1139
  "voor de validatie. Je weet dat alles goed is als de groene vervaldatum "
1140
  "verschijnt naast een \"valid\" bericht.</p> <p>Als je een rood bericht ziet "
1141
+ "dat je key niet geldig is of dat er teveel installaties hebben "
1142
+ "plaatsgevonden, bezoek dan <a href=\"%s\" target=\"_blank\">%s</a> om je "
1143
+ "installaties te beheren of vernieuw/upgrade je licentie.</p><p>Zie je geen "
1144
+ "update maar verwacht je er wel één? In Wordpress, ga naar <a href=\"%s"
1145
+ "\">Dashboard > Updates</a> en klik \"Check Nogmaals\".</p>"
1146
 
1147
  #: ../lib/the-events-calendar.class.php:730
1148
  msgid "General"
1159
  "your WordPress install."
1160
  msgstr ""
1161
  "Sorry, The Events Calendat heeft Wordpress %s of hoger nodig. Upgrade je "
1162
+ "Wordpressinstallatie."
1163
 
1164
  #: ../lib/the-events-calendar.class.php:785
1165
  #, php-format
1167
  "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
1168
  "about moving you to a newer version of PHP."
1169
  msgstr ""
1170
+ "Sorry, The Events Calendar heeft PHP %s of hoger nodig. Bespreek met je "
1171
  "webhost de mogelijkheid om een nieuwere versie te gebruiken."
1172
 
1173
  #: ../lib/the-events-calendar.class.php:1000 ../lib/widget-list.class.php:151
1174
  #: ../public/template-tags/loop.php:137
1175
  msgid "Upcoming Events"
1176
+ msgstr "Toekomstige evenementen"
1177
 
1178
  #: ../lib/the-events-calendar.class.php:1003
1179
  #: ../public/template-tags/loop.php:165
1180
  msgid "Past Events"
1181
+ msgstr "Afgelopen evenementen"
1182
 
1183
  #: ../lib/the-events-calendar.class.php:1008
1184
  #: ../lib/the-events-calendar.class.php:1015
1185
  #, php-format
1186
  msgid "Events for %s"
1187
+ msgstr "Evenementen voor %s"
1188
 
1189
  #: ../lib/the-events-calendar.class.php:1010
1190
  msgid "Events this month"
1193
  #: ../lib/the-events-calendar.class.php:1022
1194
  #, php-format
1195
  msgid "Events at %s"
1196
+ msgstr "Evenementen bij %s"
1197
 
1198
  #: ../lib/the-events-calendar.class.php:1041
1199
  msgid "No description has been entered for this event."
1225
 
1226
  #: ../lib/the-events-calendar.class.php:1343
1227
  msgid "Add New Event"
1228
+ msgstr "Voeg een nieuw evenement toe"
1229
 
1230
  #: ../lib/the-events-calendar.class.php:1344
1231
  msgid "Edit Event"
1232
+ msgstr "Bewerk evenement"
1233
 
1234
  #: ../lib/the-events-calendar.class.php:1345
1235
  msgid "New Event"
1236
+ msgstr "Nieuw evenement"
1237
 
1238
  #: ../lib/the-events-calendar.class.php:1346
1239
  msgid "View Event"
1240
+ msgstr "Bekijk evenement"
1241
 
1242
  #: ../lib/the-events-calendar.class.php:1347
1243
  msgid "Search Events"
1244
+ msgstr "Doorzoek evenementen"
1245
 
1246
  #: ../lib/the-events-calendar.class.php:1348
1247
  msgid "No events found"
1263
 
1264
  #: ../lib/the-events-calendar.class.php:1356
1265
  msgid "Add New Venue"
1266
+ msgstr "Voeg nieuwe locatie toe"
1267
 
1268
  #: ../lib/the-events-calendar.class.php:1357
1269
  msgid "Edit Venue"
1270
+ msgstr "Bewerk locatie"
1271
 
1272
  #: ../lib/the-events-calendar.class.php:1358
1273
  msgid "New Venue"
1274
+ msgstr "Nieuwe locatie"
1275
 
1276
  #: ../lib/the-events-calendar.class.php:1359
1277
  msgid "View Venue"
1278
+ msgstr "Bekijk locatie"
1279
 
1280
  #: ../lib/the-events-calendar.class.php:1360
1281
  msgid "Search Venues"
1282
+ msgstr "Doorzoek locaties"
1283
 
1284
  #: ../lib/the-events-calendar.class.php:1361
1285
  msgid "No venue found"
1305
 
1306
  #: ../lib/the-events-calendar.class.php:1370
1307
  msgid "Edit Organizer"
1308
+ msgstr "Bewerk organisator"
1309
 
1310
  #: ../lib/the-events-calendar.class.php:1371
1311
  msgid "New Organizer"
1312
+ msgstr "Nieuwe organisator"
1313
 
 
1314
  #: ../lib/the-events-calendar.class.php:1372
1315
  msgid "View Organizer"
1316
+ msgstr "Bekijk organisator"
1317
 
1318
  #: ../lib/the-events-calendar.class.php:1373
1319
  msgid "Search Organizers"
1320
+ msgstr "Doorzoek organisatoren"
1321
 
1322
  #: ../lib/the-events-calendar.class.php:1374
1323
  msgid "No organizer found"
1330
  #: ../lib/the-events-calendar.class.php:1379
1331
  #: ../lib/tribe-admin-events-list.class.php:217
1332
  msgid "Event Categories"
1333
+ msgstr "Evenementcategorieën"
1334
 
1335
  #: ../lib/the-events-calendar.class.php:1380
1336
  #: ../public/template-tags/general.php:276
1337
  msgid "Event Category"
1338
+ msgstr "Evenementencategorie"
1339
 
1340
  #: ../lib/the-events-calendar.class.php:1381
1341
  msgid "Search Event Categories"
1342
+ msgstr "Doorzoek evenementencategorieën"
1343
 
1344
  #: ../lib/the-events-calendar.class.php:1382
1345
  msgid "All Event Categories"
1346
+ msgstr "Alle evenementencategorieën"
1347
 
1348
  #: ../lib/the-events-calendar.class.php:1383
1349
  msgid "Parent Event Category"
1350
+ msgstr "Bovenliggende evenementencategorie"
1351
 
1352
  #: ../lib/the-events-calendar.class.php:1384
1353
  msgid "Parent Event Category:"
1354
+ msgstr "Bovenliggende evenementencategorie:"
1355
 
1356
  #: ../lib/the-events-calendar.class.php:1385
1357
  msgid "Edit Event Category"
1358
+ msgstr "Bewerk evenementencategorie"
1359
 
1360
  #: ../lib/the-events-calendar.class.php:1386
1361
  msgid "Update Event Category"
1362
+ msgstr "Update evenementencategorie"
1363
 
1364
  #: ../lib/the-events-calendar.class.php:1387
1365
  msgid "Add New Event Category"
1366
+ msgstr "Voeg nieuwe evenementencategorie toe"
1367
 
1368
  #: ../lib/the-events-calendar.class.php:1388
1369
  msgid "New Event Category Name"
1370
+ msgstr "Naam van de nieuwe evenementencategorie"
1371
 
1372
  #: ../lib/the-events-calendar.class.php:1404
1373
  #, php-format
1374
  msgid "Event updated. <a href=\"%s\">View event</a>"
1375
+ msgstr "Evenement geüpdatet. <a href=\"%s\">Bekijk evenement</a>"
1376
 
1377
  #: ../lib/the-events-calendar.class.php:1405
1378
  #: ../lib/the-events-calendar.class.php:1422
1379
  #: ../lib/the-events-calendar.class.php:1439
1380
  msgid "Custom field updated."
1381
+ msgstr "Extra veld geüpdatet."
1382
 
1383
  #: ../lib/the-events-calendar.class.php:1406
1384
  #: ../lib/the-events-calendar.class.php:1423
1385
  #: ../lib/the-events-calendar.class.php:1440
1386
  msgid "Custom field deleted."
1387
+ msgstr "Extra veld verwijderd."
1388
 
1389
  #: ../lib/the-events-calendar.class.php:1407
1390
  msgid "Event updated."
1391
+ msgstr "Evenement geüpdatet"
1392
 
1393
  #: ../lib/the-events-calendar.class.php:1409
1394
  #, php-format
1398
  #: ../lib/the-events-calendar.class.php:1410
1399
  #, php-format
1400
  msgid "Event published. <a href=\"%s\">View event</a>"
1401
+ msgstr "Evenement gepubliceerd. <a href=\"%s\">Bekijk evenement</a>"
1402
 
1403
  #: ../lib/the-events-calendar.class.php:1411
1404
  msgid "Event saved."
1405
+ msgstr "Evenement opgeslagen."
1406
 
1407
  #: ../lib/the-events-calendar.class.php:1412
1408
  #, php-format
1416
  "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1417
  "\">Preview event</a>"
1418
  msgstr ""
1419
+ "Evenement ingepland voor: <strong>%1$s</strong>. <a target=\"_blank\" href="
1420
+ "\"%2$s\">Preview evenement</a>"
1421
 
1422
  #: ../lib/the-events-calendar.class.php:1415
1423
  #: ../lib/the-events-calendar.class.php:1432
1424
  #: ../lib/the-events-calendar.class.php:1449
1425
  msgid "M j, Y @ G:i"
1426
+ msgstr "D j M Y @ G:i"
1427
 
1428
  #: ../lib/the-events-calendar.class.php:1416
1429
  #, php-format
1430
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1431
  msgstr ""
1432
+ "Conceptevenement geüpdatet. <a target=\"_blank\" href=\"%s\">Preview "
1433
  "evenement</a>"
1434
 
1435
  #: ../lib/the-events-calendar.class.php:1421
1436
  #, php-format
1437
  msgid "Venue updated. <a href=\"%s\">View venue</a>"
1438
+ msgstr "Locatie geüpdatet. <a href=\"%s\">Bekijk locatie</a>"
1439
 
1440
  #: ../lib/the-events-calendar.class.php:1424
1441
  msgid "Venue updated."
1442
+ msgstr "Locatie geüpdatet."
1443
 
1444
  #: ../lib/the-events-calendar.class.php:1426
1445
  #, php-format
1459
  #, php-format
1460
  msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1461
  msgstr ""
1462
+ "Locatie toegevoegd. <a target=\"_blank\" href=\"%s\">Preview locatie</a>"
1463
 
1464
  #: ../lib/the-events-calendar.class.php:1430
1465
  #, php-format
1467
  "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1468
  "\">Preview venue</a>"
1469
  msgstr ""
1470
+ "Locatie ingepland voor: <strong>%1$s</strong>. <a target=\"_blank\" href="
1471
+ "\"%2$s\">Preview locatie</a>"
1472
 
1473
  #: ../lib/the-events-calendar.class.php:1433
1474
  #, php-format
1475
  msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1476
  msgstr ""
1477
+ "Concept locatie geüpdatet. <a target=\"_blank\" href=\"%s\">Preview locatie</"
1478
+ "a>"
1479
 
1480
  #: ../lib/the-events-calendar.class.php:1438
1481
  #, php-format
1482
  msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1483
+ msgstr "Organisator geüpdatet. <a href=\"%s\">Bekijk organisator</a>"
1484
 
1485
  #: ../lib/the-events-calendar.class.php:1441
1486
  msgid "Organizer updated."
1487
+ msgstr "Organisator geüpdatet."
1488
 
1489
  #: ../lib/the-events-calendar.class.php:1443
1490
  #, php-format
1498
 
1499
  #: ../lib/the-events-calendar.class.php:1445
1500
  msgid "Organizer saved."
1501
+ msgstr "Organisator opgeslagen."
1502
 
1503
  #: ../lib/the-events-calendar.class.php:1446
1504
  #, php-format
1505
  msgid ""
1506
  "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1507
  msgstr ""
1508
+ "Organisator verzonden. <a target=\"_blank\" href=\"%s\">Preview organisator</"
1509
+ "a>"
1510
 
1511
  #: ../lib/the-events-calendar.class.php:1447
1512
  #, php-format
1523
  "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
1524
  "a>"
1525
  msgstr ""
1526
+ "Conceptorganisator geüpdatet. <a target=\"_blank\" href=\"%s\">Preview "
1527
  "organisator</a>"
1528
 
1529
  #: ../lib/the-events-calendar.class.php:1491
1530
  msgid "Use Saved Venue:"
1531
+ msgstr "Gebruik opgeslagen locatie:"
1532
 
 
1533
  #: ../lib/the-events-calendar.class.php:1520
1534
  msgid "Use Saved Organizer:"
1535
+ msgstr "Gebruik opgeslagen organisator:"
1536
 
 
1537
  #: ../lib/the-events-calendar.class.php:1556
1538
  msgid "Use New Venue"
1539
+ msgstr "Gebruik nieuwe locatie"
1540
 
 
1541
  #: ../lib/the-events-calendar.class.php:1558
1542
  msgid "My Venues"
1543
+ msgstr "Mijn locaties"
1544
 
 
1545
  #: ../lib/the-events-calendar.class.php:1563
1546
  msgid "Available Venues"
1547
+ msgstr "Beschikbare locaties"
1548
 
1549
  #: ../lib/the-events-calendar.class.php:1574
1550
  msgid "No saved venue exists."
1551
+ msgstr "Er is geen opgeslagen locatie."
1552
 
 
1553
  #: ../lib/the-events-calendar.class.php:1608
1554
  msgid "Use New Organizer"
1555
+ msgstr "Gebruik nieuwe organisator"
1556
 
 
1557
  #: ../lib/the-events-calendar.class.php:1610
1558
  msgid "My Organizers"
1559
+ msgstr "Mijn organisatoren"
1560
 
 
1561
  #: ../lib/the-events-calendar.class.php:1615
1562
  msgid "Available Organizers"
1563
+ msgstr "Beschikbare organisatoren"
1564
 
 
1565
  #: ../lib/the-events-calendar.class.php:1626
1566
  msgid "No saved organizer exists."
1567
+ msgstr "Er is geen opgeslagen organisator."
1568
 
1569
  #: ../lib/the-events-calendar.class.php:1753
1570
  msgid "Next"
1586
  msgid "Network"
1587
  msgstr "Netwerk"
1588
 
 
1589
  #: ../lib/the-events-calendar.class.php:2902
1590
  msgid "Unnamed Venue"
1591
+ msgstr "Onbenoemde locatie"
1592
 
 
1593
  #: ../lib/the-events-calendar.class.php:2992
1594
  msgid "Unnamed Organizer"
1595
+ msgstr "Onbenoemde organisator"
1596
 
1597
  #: ../lib/the-events-calendar.class.php:3467
1598
  msgid "Event Options"
1599
+ msgstr "Evenementenopties"
1600
 
1601
  #: ../lib/the-events-calendar.class.php:3469
1602
  msgid "Venue Information"
1603
+ msgstr "Locatie-informatie"
1604
 
1605
  #: ../lib/the-events-calendar.class.php:3474
1606
  msgid "Organizer Information"
1607
+ msgstr "Organisatorinformatie"
1608
 
1609
  #: ../lib/the-events-calendar.class.php:3669
1610
  msgid "Support"
1612
 
1613
  #: ../lib/the-events-calendar.class.php:3672
1614
  msgid "View All Add-Ons"
1615
+ msgstr "Bekijk alle add-ons"
1616
 
 
1617
  #: ../lib/the-events-calendar.class.php:3689
1618
  msgid "News from Modern Tribe"
1619
+ msgstr "Nieuws van Modern Tribe"
1620
 
1621
  #: ../lib/the-events-calendar.class.php:3770
1622
  msgid "Additional Functionality"
1627
  "Looking for additional functionality including recurring events, ticket "
1628
  "sales, publicly submitted events, new views and more?"
1629
  msgstr ""
1630
+ "Opzoek naar extra functionaliteit zoals terugkerende evenementen, "
1631
+ "ticketverkoop, gebruikersevenementen, nieuwe views en meer?"
1632
 
1633
  #: ../lib/the-events-calendar.class.php:3775
1634
  #, php-format
1635
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
1636
+ msgstr "Check out de <a href=\"%s\">beschikbare add-ons</a>."
1637
 
 
1638
  #: ../lib/the-events-calendar.class.php:3846
1639
  #: ../lib/the-events-calendar.class.php:3937
1640
  msgid "View Calendar"
1641
+ msgstr "Bekijk kalender"
1642
 
 
1643
  #: ../lib/the-events-calendar.class.php:3854
1644
  msgid "Add Event"
1645
  msgstr "Evenement toevoegen"
1646
 
 
1647
  #: ../lib/the-events-calendar.class.php:3863
1648
  msgid "Edit Events"
1649
  msgstr "Evenement bewerken"
1661
  "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
1662
  "change the events slug, visit %sEvents -> Settings%s."
1663
  msgstr ""
1664
+ "Welkom bij The Events Calender! Jouw evenementenkalender is beschikbaar via "
1665
+ "%s. Om deze slug te veranderen ga je naar %sEvenementen -> Instellingen%s."
1666
 
1667
  #: ../lib/the-events-calendar.class.php:3974
1668
  msgid "Calendar"
1672
  msgid "List"
1673
  msgstr "Lijst"
1674
 
 
1675
  #: ../lib/the-events-calendar.class.php:4048
1676
  msgid "Month"
1677
  msgstr "Maand"
1678
 
 
1679
  #: ../lib/the-events-calendar.class.php:4088
1680
  msgid "Date"
1681
  msgstr "Datum"
1682
 
 
1683
  #: ../lib/the-events-calendar.class.php:4091
1684
  msgid "Events In"
1685
  msgstr "Evenementen in"
1686
 
 
1687
  #: ../lib/the-events-calendar.class.php:4093
1688
  msgid "Events From"
1689
  msgstr "Evenementen op"
1696
  #: ../lib/the-events-calendar.class.php:4277 ../views/list/nav.php:40
1697
  #: ../views/list/nav.php:43 ../views/list/nav.php:49
1698
  msgid "Next Events &raquo;"
1699
+ msgstr "Latere evenementen &raquo;"
1700
 
1701
  #: ../lib/tribe-admin-events-list.class.php:53
1702
  #, php-format
1729
  msgid "All %s"
1730
  msgstr "Alle %s"
1731
 
 
1732
  #: ../lib/tribe-app-shop.class.php:62 ../lib/tribe-app-shop.class.php:63
1733
  #: ../lib/tribe-app-shop.class.php:84
1734
  msgid "Event Add-Ons"
1741
  #: ../lib/tribe-event-api.class.php:372 ../lib/tribe-view-helpers.class.php:44
1742
  #: ../public/template-tags/venue.php:240
1743
  msgid "United States"
1744
+ msgstr "Verenigde Staten"
1745
 
1746
  #: ../lib/tribe-event-exception.class.php:17
1747
  #: ../lib/tribe-event-exception.class.php:34
1750
 
1751
  #: ../lib/tribe-field.class.php:161
1752
  msgid "Invalid field type specified"
1753
+ msgstr "Ongeldig veldtype gegeven"
1754
 
1755
  #: ../lib/tribe-field.class.php:414
1756
  msgid "No radio options specified"
1757
+ msgstr "Geen radio-opties gegeven"
1758
 
1759
  #: ../lib/tribe-field.class.php:451
1760
  msgid "No checkbox options specified"
1761
+ msgstr "Geen checkboxopties gegeven"
1762
 
1763
  #: ../lib/tribe-field.class.php:505
1764
  msgid "No select options specified"
1765
+ msgstr "Geen selectopties gegeven"
1766
 
 
1767
  #: ../lib/tribe-settings-tab.class.php:219
1768
  msgid "There are no fields setup for this tab yet."
1769
  msgstr "Er zijn nog geen velden voor deze tab."
1770
 
 
1771
  #: ../lib/tribe-settings.class.php:164 ../lib/tribe-settings.class.php:176
1772
  msgid "The Events Calendar Settings"
1773
+ msgstr "The Events Calendar-instellingen"
1774
 
 
1775
  #: ../lib/tribe-settings.class.php:176
1776
  msgid "Events Settings"
1777
+ msgstr "Evenementinstellingen"
1778
 
1779
  #: ../lib/tribe-settings.class.php:225
1780
  #, php-format
1781
  msgid "%s Settings"
1782
+ msgstr "%s-instellingen"
1783
 
1784
  #: ../lib/tribe-settings.class.php:239
1785
  msgid "You've requested a non-existent tab."
1786
+ msgstr "Je hebt om een niet bestaande tab verzocht."
1787
 
 
1788
  #: ../lib/tribe-settings.class.php:247
1789
  msgid " Save Changes"
1790
+ msgstr "Veranderingen opslaan"
1791
 
1792
  #: ../lib/tribe-settings.class.php:299
1793
  msgid "You don't have permission to do that."
1807
 
1808
  #: ../lib/tribe-settings.class.php:485
1809
  msgid "None of your settings were saved. Please try again."
1810
+ msgstr "Geen van je instellingen is opgeslagen. Probeer het nogmaals."
1811
 
1812
  #: ../lib/tribe-settings.class.php:485
1813
  msgid ""
1821
  "De bovenstaande instellingen zijn niet opgeslagen. De overige instellingen "
1822
  "zijn met succes opgeslagen."
1823
 
 
1824
  #: ../lib/tribe-settings.class.php:509
1825
  msgid "Settings saved."
1826
  msgstr "Instellingen opgeslagen"
1828
  #: ../lib/tribe-template-factory.class.php:225
1829
  #, php-format
1830
  msgid "There were no results found for <strong>\"%s\"</strong>."
1831
+ msgstr "Er zijn geen resultaten voor <strong>\"%s\"</strong>."
1832
 
1833
  #: ../lib/tribe-template-factory.class.php:235
1834
  #, php-format
1836
  "listed under %s. Check out past events for this category or view the full "
1837
  "calendar."
1838
  msgstr ""
1839
+ "in de categorie %s. Probeer de afgelopen evenementen voor deze categorie of "
1840
  "bekijk de volledige kalender."
1841
 
1842
  #: ../lib/tribe-template-factory.class.php:237
1845
  "listed under %s. Check out upcoming events for this category or view the "
1846
  "full calendar."
1847
  msgstr ""
1848
+ "in de categorie %s. Probeer de toekomstige evenementen voor deze categorie "
1849
  "of bekijk de volledige kalender."
1850
 
1851
  #: ../lib/tribe-template-factory.class.php:241
1854
  msgstr ""
1855
  "Geen evenementen gepland voor <strong>%s</strong>. Probeer een andere dag."
1856
 
 
1857
  #: ../lib/tribe-template-factory.class.php:245
1858
  msgid "No upcoming events "
1859
+ msgstr "Geen toekomstige evenementen "
1860
 
 
1861
  #: ../lib/tribe-template-factory.class.php:247
1862
  msgid "No matching events "
1863
+ msgstr "Geen overeenkomende evenementen "
1864
 
 
1865
  #: ../lib/tribe-template-factory.class.php:250
1866
  msgid "No previous events "
1867
+ msgstr "Geen afgelopen evenementen "
1868
 
1869
  #: ../lib/tribe-the-events-calendar-import.class.php:64
1870
  #, php-format
1892
  "upgraded. Please be sure to back up your database before initiating the "
1893
  "upgrade. This process can not be undone."
1894
  msgstr ""
1895
+ "Er zijn oude evenementen waarvan het formaat moeten worden geüpgraded. Maak "
1896
  "een backup van de database voor het uitvoeren van de upgrade. Dit proces is "
1897
  "onomkeerbaar."
1898
 
1903
  #: ../lib/tribe-the-events-calendar-import.class.php:166
1904
  #, php-format
1905
  msgid "You successfully migrated (%d) entries."
1906
+ msgstr "Je hebt met succes (%d) items gemigreerd."
1907
 
1908
  #: ../lib/tribe-the-events-calendar-import.class.php:242
1909
  msgid "Install has 1 or more legacy event!"
1916
  #: ../lib/tribe-validate.class.php:78 ../lib/tribe-validate.class.php:110
1917
  #: ../lib/tribe-validate.class.php:116
1918
  msgid "Field ID:"
1919
+ msgstr "Veld-ID:"
1920
 
1921
  #: ../lib/tribe-validate.class.php:109
1922
  msgid "Non-existant field validation function passed"
1923
+ msgstr "Niet-bestaande veldvalidatiefunctie gegeven"
1924
 
1925
  #: ../lib/tribe-validate.class.php:110
1926
  msgctxt "non-existant function name passed for field validation"
1927
  msgid "with function name:"
1928
+ msgstr "met functienaam:"
1929
 
1930
  #: ../lib/tribe-validate.class.php:135 ../lib/tribe-validate.class.php:153
1931
  #, php-format
1946
  #, php-format
1947
  msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
1948
  msgstr ""
1949
+ "%s moet een valide slug zijn (nummers, letters, streepjes en underscores)."
1950
 
1951
  #: ../lib/tribe-validate.class.php:221
1952
  #, php-format
1993
  msgid ""
1994
  "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
1995
  msgstr ""
1996
+ "%s moet alleen bestaan uit letters, getallen, streepjes, apostroffen en "
1997
  "spaties."
1998
 
1999
  #: ../lib/tribe-validate.class.php:422
2000
  #, php-format
2001
  msgid "%s must consist of letters, spaces, apostrophes, and dashes."
2002
+ msgstr "%s moet bestaan uit letters, spaties, apostroffen en streepjes."
2003
 
2004
  #: ../lib/tribe-validate.class.php:438
2005
  #, php-format
2006
  msgid "%s must consist of 5 numbers."
2007
+ msgstr "%s moet bestaan uit 5 getallen."
2008
 
2009
  #: ../lib/tribe-validate.class.php:454
2010
  #, php-format
2011
  msgid "%s must be a phone number."
2012
+ msgstr "%s moet een telefoonnummer zijn."
2013
 
2014
  #: ../lib/tribe-validate.class.php:472
2015
  msgid ""
2016
  "Country List must be formatted as one country per line in the following "
2017
  "format: <br>US, United States <br> UK, United Kingdom."
2018
  msgstr ""
2019
+ "Landenlijst moet geformateerd zijn als een land per regel in het volgende "
2020
  "formaat <br>US, United States <br> UK, United Kingdom."
2021
 
2022
  #: ../lib/tribe-view-helpers.class.php:24
2026
 
2027
  #: ../lib/tribe-view-helpers.class.php:45
2028
  msgid "Afghanistan"
2029
+ msgstr "Afghanistan"
2030
 
2031
  #: ../lib/tribe-view-helpers.class.php:46
2032
  msgid "Albania"
2033
+ msgstr "Albanië"
2034
 
2035
  #: ../lib/tribe-view-helpers.class.php:47
2036
  msgid "Algeria"
2037
+ msgstr "Algerije"
2038
 
2039
  #: ../lib/tribe-view-helpers.class.php:48
2040
  msgid "American Samoa"
2041
+ msgstr "Amerikaans Samoa"
2042
 
2043
  #: ../lib/tribe-view-helpers.class.php:49
2044
  msgid "Andorra"
2046
 
2047
  #: ../lib/tribe-view-helpers.class.php:50
2048
  msgid "Angola"
2049
+ msgstr "Angola"
2050
 
2051
  #: ../lib/tribe-view-helpers.class.php:51
2052
  msgid "Anguilla"
2053
+ msgstr "Anguilla"
2054
 
2055
  #: ../lib/tribe-view-helpers.class.php:52
2056
  msgid "Antarctica"
2057
+ msgstr "Antarctica"
2058
 
2059
  #: ../lib/tribe-view-helpers.class.php:53
2060
  msgid "Antigua And Barbuda"
2061
+ msgstr "Antigua en Barbuda"
2062
 
2063
  #: ../lib/tribe-view-helpers.class.php:54
2064
  msgid "Argentina"
2065
+ msgstr "Argentinië"
2066
 
2067
  #: ../lib/tribe-view-helpers.class.php:55
2068
  msgid "Armenia"
2069
+ msgstr "Armenië"
2070
 
2071
  #: ../lib/tribe-view-helpers.class.php:56
2072
  msgid "Aruba"
2073
+ msgstr "Aruba"
2074
 
2075
  #: ../lib/tribe-view-helpers.class.php:57
2076
  msgid "Australia"
2077
+ msgstr "Australië"
2078
 
2079
  #: ../lib/tribe-view-helpers.class.php:58
2080
  msgid "Austria"
2082
 
2083
  #: ../lib/tribe-view-helpers.class.php:59
2084
  msgid "Azerbaijan"
2085
+ msgstr "Azerbeidzjan"
2086
 
2087
  #: ../lib/tribe-view-helpers.class.php:60
2088
  msgid "Bahamas"
2089
+ msgstr "Bahama's"
2090
 
2091
  #: ../lib/tribe-view-helpers.class.php:61
2092
  msgid "Bahrain"
2093
+ msgstr "Bahrein"
2094
 
2095
  #: ../lib/tribe-view-helpers.class.php:62
2096
  msgid "Bangladesh"
2097
+ msgstr "Bangladesh"
2098
 
2099
  #: ../lib/tribe-view-helpers.class.php:63
2100
  msgid "Barbados"
2101
+ msgstr "Barbados"
2102
 
2103
  #: ../lib/tribe-view-helpers.class.php:64
2104
  msgid "Belarus"
2105
+ msgstr "Wit-Rusland"
2106
 
2107
  #: ../lib/tribe-view-helpers.class.php:65
2108
  msgid "Belgium"
2109
+ msgstr "België"
2110
 
2111
  #: ../lib/tribe-view-helpers.class.php:66
2112
  msgid "Belize"
2113
+ msgstr "Belize"
2114
 
2115
  #: ../lib/tribe-view-helpers.class.php:67
2116
  msgid "Benin"
2117
+ msgstr "Benin"
2118
 
2119
  #: ../lib/tribe-view-helpers.class.php:68
2120
  msgid "Bermuda"
2121
+ msgstr "Bermuda"
2122
 
2123
  #: ../lib/tribe-view-helpers.class.php:69
2124
  msgid "Bhutan"
2125
+ msgstr "Bhutan"
2126
 
2127
  #: ../lib/tribe-view-helpers.class.php:70
2128
  msgid "Bolivia"
2129
+ msgstr "Bolivia"
2130
 
2131
  #: ../lib/tribe-view-helpers.class.php:71
2132
  msgid "Bosnia And Herzegowina"
2133
+ msgstr "Bosnië en Herzegovina"
2134
 
2135
  #: ../lib/tribe-view-helpers.class.php:72
2136
  msgid "Botswana"
2137
+ msgstr "Botswana"
2138
 
2139
  #: ../lib/tribe-view-helpers.class.php:73
2140
  msgid "Bouvet Island"
2141
+ msgstr "Bouveteiland"
2142
 
2143
  #: ../lib/tribe-view-helpers.class.php:74
2144
  msgid "Brazil"
2145
+ msgstr "Brazilië"
2146
 
2147
  #: ../lib/tribe-view-helpers.class.php:75
2148
  msgid "British Indian Ocean Territory"
2149
+ msgstr "Brits Indische Oceaanterritorium"
2150
 
2151
  #: ../lib/tribe-view-helpers.class.php:76
2152
  msgid "Brunei Darussalam"
2153
+ msgstr "Brunei"
2154
 
2155
  #: ../lib/tribe-view-helpers.class.php:77
2156
  msgid "Bulgaria"
2158
 
2159
  #: ../lib/tribe-view-helpers.class.php:78
2160
  msgid "Burkina Faso"
2161
+ msgstr "Burkina Faso"
2162
 
2163
  #: ../lib/tribe-view-helpers.class.php:79
2164
  msgid "Burundi"
2165
+ msgstr "Burundi"
2166
 
2167
  #: ../lib/tribe-view-helpers.class.php:80
2168
  msgid "Cambodia"
2169
+ msgstr "Combodja"
2170
 
2171
  #: ../lib/tribe-view-helpers.class.php:81
2172
  msgid "Cameroon"
2173
+ msgstr "Kameroen"
2174
 
2175
  #: ../lib/tribe-view-helpers.class.php:82
2176
  msgid "Canada"
2177
+ msgstr "Canada"
2178
 
2179
  #: ../lib/tribe-view-helpers.class.php:83
2180
  msgid "Cape Verde"
2181
+ msgstr "Kaapverdië"
2182
 
2183
  #: ../lib/tribe-view-helpers.class.php:84
2184
  msgid "Cayman Islands"
2185
+ msgstr "Kaaimaneilanden"
2186
 
2187
  #: ../lib/tribe-view-helpers.class.php:85
2188
  msgid "Central African Republic"
2189
+ msgstr "Centraal-Afrikaanse Republiek"
2190
 
2191
  #: ../lib/tribe-view-helpers.class.php:86
2192
  msgid "Chad"
2193
+ msgstr "Tsjaad"
2194
 
2195
  #: ../lib/tribe-view-helpers.class.php:87
2196
  msgid "Chile"
2197
+ msgstr "Chili"
2198
 
2199
  #: ../lib/tribe-view-helpers.class.php:88
2200
  msgid "China"
2201
+ msgstr "China"
2202
 
2203
  #: ../lib/tribe-view-helpers.class.php:89
2204
  msgid "Christmas Island"
2205
+ msgstr "Christmaseiland"
2206
 
2207
  #: ../lib/tribe-view-helpers.class.php:90
2208
  msgid "Cocos (Keeling) Islands"
2209
+ msgstr "Cocoseilanden"
2210
 
2211
  #: ../lib/tribe-view-helpers.class.php:91
2212
  msgid "Colombia"
2213
+ msgstr "Colombia"
2214
 
2215
  #: ../lib/tribe-view-helpers.class.php:92
2216
  msgid "Comoros"
2217
+ msgstr "Comoren"
2218
 
2219
  #: ../lib/tribe-view-helpers.class.php:93
2220
  msgid "Congo"
2221
+ msgstr "Congo-Brazzaville"
2222
 
2223
  #: ../lib/tribe-view-helpers.class.php:94
2224
  msgid "Congo, The Democratic Republic Of The"
2225
+ msgstr "Congo-Kinshasa"
2226
 
2227
  #: ../lib/tribe-view-helpers.class.php:95
2228
  msgid "Cook Islands"
2229
+ msgstr "Cookeilanden"
2230
 
2231
  #: ../lib/tribe-view-helpers.class.php:96
2232
  msgid "Costa Rica"
2233
+ msgstr "Costa Rica"
2234
 
2235
  #: ../lib/tribe-view-helpers.class.php:97
2236
  msgid "Cote D'Ivoire"
2237
+ msgstr "Ivoorkust"
2238
 
2239
  #: ../lib/tribe-view-helpers.class.php:98
2240
  msgid "Croatia (Local Name: Hrvatska)"
2241
+ msgstr "Croatië"
2242
 
2243
  #: ../lib/tribe-view-helpers.class.php:99
2244
  msgid "Cuba"
2245
+ msgstr "Cuba"
2246
 
2247
  #: ../lib/tribe-view-helpers.class.php:100
2248
  msgid "Cyprus"
2249
+ msgstr "Cyprus"
2250
 
2251
  #: ../lib/tribe-view-helpers.class.php:101
2252
  msgid "Czech Republic"
2253
+ msgstr "Tsjechië"
2254
 
2255
  #: ../lib/tribe-view-helpers.class.php:102
2256
  msgid "Denmark"
2258
 
2259
  #: ../lib/tribe-view-helpers.class.php:103
2260
  msgid "Djibouti"
2261
+ msgstr "Djibouti"
2262
 
2263
  #: ../lib/tribe-view-helpers.class.php:104
2264
  msgid "Dominica"
2265
+ msgstr "Dominica"
2266
 
2267
  #: ../lib/tribe-view-helpers.class.php:105
2268
  msgid "Dominican Republic"
2269
+ msgstr "Dominicaanse Republiek"
2270
 
2271
  #: ../lib/tribe-view-helpers.class.php:106
2272
  msgid "East Timor"
2273
+ msgstr "Oost-Timor"
2274
 
2275
  #: ../lib/tribe-view-helpers.class.php:107
2276
  msgid "Ecuador"
2277
+ msgstr "Ecuador"
2278
 
2279
  #: ../lib/tribe-view-helpers.class.php:108
2280
  msgid "Egypt"
2281
+ msgstr "Egypte"
2282
 
2283
  #: ../lib/tribe-view-helpers.class.php:109
2284
  msgid "El Salvador"
2285
+ msgstr "El Salvador"
2286
 
2287
  #: ../lib/tribe-view-helpers.class.php:110
2288
  msgid "Equatorial Guinea"
2289
+ msgstr "Equatoriaal-Guinea"
2290
 
2291
  #: ../lib/tribe-view-helpers.class.php:111
2292
  msgid "Eritrea"
2293
+ msgstr "Eritrea"
2294
 
2295
  #: ../lib/tribe-view-helpers.class.php:112
2296
  msgid "Estonia"
2297
+ msgstr "Estland"
2298
 
2299
  #: ../lib/tribe-view-helpers.class.php:113
2300
  msgid "Ethiopia"
2301
+ msgstr "Ethopië"
2302
 
2303
  #: ../lib/tribe-view-helpers.class.php:114
2304
  msgid "Falkland Islands (Malvinas)"
2305
+ msgstr "Falklandeilanden"
2306
 
2307
  #: ../lib/tribe-view-helpers.class.php:115
2308
  msgid "Faroe Islands"
2309
+ msgstr "Faeröer"
2310
 
2311
  #: ../lib/tribe-view-helpers.class.php:116
2312
  msgid "Fiji"
2313
+ msgstr "Fiji"
2314
 
2315
  #: ../lib/tribe-view-helpers.class.php:117
2316
  msgid "Finland"
2322
 
2323
  #: ../lib/tribe-view-helpers.class.php:119
2324
  msgid "France, Metropolitan"
2325
+ msgstr "France métropolitaine"
2326
 
2327
  #: ../lib/tribe-view-helpers.class.php:120
2328
  msgid "French Guiana"
2329
+ msgstr "Frans-Guyana"
2330
 
2331
  #: ../lib/tribe-view-helpers.class.php:121
2332
  msgid "French Polynesia"
2333
+ msgstr "Frans-Polynesië"
2334
 
2335
  #: ../lib/tribe-view-helpers.class.php:122
2336
  msgid "French Southern Territories"
2337
+ msgstr "Franse Zuidelijke Gebieden"
2338
 
2339
  #: ../lib/tribe-view-helpers.class.php:123
2340
  msgid "Gabon"
2341
+ msgstr "Gabon"
2342
 
2343
  #: ../lib/tribe-view-helpers.class.php:124
2344
  msgid "Gambia"
2345
+ msgstr "Gambia"
2346
 
2347
  #: ../lib/tribe-view-helpers.class.php:125
2348
  #: ../lib/tribe-view-helpers.class.php:318
2349
  msgid "Georgia"
2350
+ msgstr "Georgië"
2351
 
2352
  #: ../lib/tribe-view-helpers.class.php:126
2353
  msgid "Germany"
2355
 
2356
  #: ../lib/tribe-view-helpers.class.php:127
2357
  msgid "Ghana"
2358
+ msgstr "Ghana"
2359
 
2360
  #: ../lib/tribe-view-helpers.class.php:128
2361
  msgid "Gibraltar"
2371
 
2372
  #: ../lib/tribe-view-helpers.class.php:131
2373
  msgid "Grenada"
2374
+ msgstr "Grenada"
2375
 
2376
  #: ../lib/tribe-view-helpers.class.php:132
2377
  msgid "Guadeloupe"
2378
+ msgstr "Guadeloupe"
2379
 
2380
  #: ../lib/tribe-view-helpers.class.php:133
2381
  msgid "Guam"
2382
+ msgstr "Guam"
2383
 
2384
  #: ../lib/tribe-view-helpers.class.php:134
2385
  msgid "Guatemala"
2386
+ msgstr "Guatemala"
2387
 
2388
  #: ../lib/tribe-view-helpers.class.php:135
2389
  msgid "Guinea"
2390
+ msgstr "Guinee"
2391
 
2392
  #: ../lib/tribe-view-helpers.class.php:136
2393
  msgid "Guinea-Bissau"
2394
+ msgstr "Guinee-Bissau"
2395
 
2396
  #: ../lib/tribe-view-helpers.class.php:137
2397
  msgid "Guyana"
2398
+ msgstr "Guyana"
2399
 
2400
  #: ../lib/tribe-view-helpers.class.php:138
2401
  msgid "Haiti"
2402
+ msgstr "Haïti"
2403
 
2404
  #: ../lib/tribe-view-helpers.class.php:139
2405
  msgid "Heard And Mc Donald Islands"
2406
+ msgstr "Heard en McDonaldeilanden"
2407
 
2408
  #: ../lib/tribe-view-helpers.class.php:140
2409
  msgid "Holy See (Vatican City State)"
2410
+ msgstr "Vaticaanstad"
2411
 
2412
  #: ../lib/tribe-view-helpers.class.php:141
2413
  msgid "Honduras"
2414
+ msgstr "Honduras"
2415
 
2416
  #: ../lib/tribe-view-helpers.class.php:142
2417
  msgid "Hong Kong"
2418
+ msgstr "Hongkong"
2419
 
2420
  #: ../lib/tribe-view-helpers.class.php:143
2421
  msgid "Hungary"
2427
 
2428
  #: ../lib/tribe-view-helpers.class.php:145
2429
  msgid "India"
2430
+ msgstr "India"
2431
 
2432
  #: ../lib/tribe-view-helpers.class.php:146
2433
  msgid "Indonesia"
2434
+ msgstr "Indonesië"
2435
 
2436
  #: ../lib/tribe-view-helpers.class.php:147
2437
  msgid "Iran (Islamic Republic Of)"
2438
+ msgstr "Iran"
2439
 
2440
  #: ../lib/tribe-view-helpers.class.php:148
2441
  msgid "Iraq"
2442
+ msgstr "Irak"
2443
 
2444
  #: ../lib/tribe-view-helpers.class.php:149
2445
  msgid "Ireland"
2447
 
2448
  #: ../lib/tribe-view-helpers.class.php:150
2449
  msgid "Israel"
2450
+ msgstr "Israël"
2451
 
2452
  #: ../lib/tribe-view-helpers.class.php:151
2453
  msgid "Italy"
2454
+ msgstr "Italië"
2455
 
2456
  #: ../lib/tribe-view-helpers.class.php:152
2457
  msgid "Jamaica"
2458
+ msgstr "Jamaica"
2459
 
2460
  #: ../lib/tribe-view-helpers.class.php:153
2461
  msgid "Japan"
2462
+ msgstr "Japan"
2463
 
2464
  #: ../lib/tribe-view-helpers.class.php:154
2465
  msgid "Jordan"
2466
+ msgstr "Jordanië"
2467
 
2468
  #: ../lib/tribe-view-helpers.class.php:155
2469
  msgid "Kazakhstan"
2470
+ msgstr "Kazachstan"
2471
 
2472
  #: ../lib/tribe-view-helpers.class.php:156
2473
  msgid "Kenya"
2474
+ msgstr "Kenia"
2475
 
2476
  #: ../lib/tribe-view-helpers.class.php:157
2477
  msgid "Kiribati"
2478
+ msgstr "Kiribari"
2479
 
2480
  #: ../lib/tribe-view-helpers.class.php:158
2481
  msgid "Korea, Democratic People's Republic Of"
2482
+ msgstr "Noord-Korea"
2483
 
2484
  #: ../lib/tribe-view-helpers.class.php:159
2485
  msgid "Korea, Republic Of"
2486
+ msgstr "Zuid-Korea"
2487
 
2488
  #: ../lib/tribe-view-helpers.class.php:160
2489
  msgid "Kuwait"
2490
+ msgstr "Koeweit"
2491
 
2492
  #: ../lib/tribe-view-helpers.class.php:161
2493
  msgid "Kyrgyzstan"
2494
+ msgstr "Kirgizië"
2495
 
2496
  #: ../lib/tribe-view-helpers.class.php:162
2497
  msgid "Lao People's Democratic Republic"
2498
+ msgstr "Laos"
2499
 
2500
  #: ../lib/tribe-view-helpers.class.php:163
2501
  msgid "Latvia"
2502
+ msgstr "Letland"
2503
 
2504
  #: ../lib/tribe-view-helpers.class.php:164
2505
  msgid "Lebanon"
2506
+ msgstr "Libanon"
2507
 
2508
  #: ../lib/tribe-view-helpers.class.php:165
2509
  msgid "Lesotho"
2510
+ msgstr "Lesotho"
2511
 
2512
  #: ../lib/tribe-view-helpers.class.php:166
2513
  msgid "Liberia"
2514
+ msgstr "Liberia"
2515
 
2516
  #: ../lib/tribe-view-helpers.class.php:167
2517
  msgid "Libya"
2518
+ msgstr "Libië"
2519
 
2520
  #: ../lib/tribe-view-helpers.class.php:168
2521
  msgid "Liechtenstein"
2523
 
2524
  #: ../lib/tribe-view-helpers.class.php:169
2525
  msgid "Lithuania"
2526
+ msgstr "Litouwen"
2527
 
2528
  #: ../lib/tribe-view-helpers.class.php:170
2529
  msgid "Luxembourg"
2531
 
2532
  #: ../lib/tribe-view-helpers.class.php:171
2533
  msgid "Macau"
2534
+ msgstr "Macau"
2535
 
2536
  #: ../lib/tribe-view-helpers.class.php:172
2537
  msgid "Macedonia"
2538
+ msgstr "Macedonië"
2539
 
2540
  #: ../lib/tribe-view-helpers.class.php:173
2541
  msgid "Madagascar"
2542
+ msgstr "Madagaskar"
2543
 
2544
  #: ../lib/tribe-view-helpers.class.php:174
2545
  msgid "Malawi"
2546
+ msgstr "Malawi"
2547
 
2548
  #: ../lib/tribe-view-helpers.class.php:175
2549
  msgid "Malaysia"
2550
+ msgstr "Maleisië"
2551
 
2552
  #: ../lib/tribe-view-helpers.class.php:176
2553
  msgid "Maldives"
2554
+ msgstr "Maldiven"
2555
 
2556
  #: ../lib/tribe-view-helpers.class.php:177
2557
  msgid "Mali"
2558
+ msgstr "Mali"
2559
 
2560
  #: ../lib/tribe-view-helpers.class.php:178
2561
  msgid "Malta"
2563
 
2564
  #: ../lib/tribe-view-helpers.class.php:179
2565
  msgid "Marshall Islands"
2566
+ msgstr "Marshalleilanden"
2567
 
2568
  #: ../lib/tribe-view-helpers.class.php:180
2569
  msgid "Martinique"
2570
+ msgstr "Martinique"
2571
 
2572
  #: ../lib/tribe-view-helpers.class.php:181
2573
  msgid "Mauritania"
2574
+ msgstr "Mauritanië"
2575
 
2576
  #: ../lib/tribe-view-helpers.class.php:182
2577
  msgid "Mauritius"
2578
+ msgstr "Mauritius"
2579
 
2580
  #: ../lib/tribe-view-helpers.class.php:183
2581
  msgid "Mayotte"
2582
+ msgstr "Mayotte"
2583
 
2584
  #: ../lib/tribe-view-helpers.class.php:184
2585
  msgid "Mexico"
2586
+ msgstr "Mexico"
2587
 
2588
  #: ../lib/tribe-view-helpers.class.php:185
2589
  msgid "Micronesia, Federated States Of"
2590
+ msgstr "Micronesia"
2591
 
2592
  #: ../lib/tribe-view-helpers.class.php:186
2593
  msgid "Moldova, Republic Of"
2594
+ msgstr "Moldavië"
2595
 
2596
  #: ../lib/tribe-view-helpers.class.php:187
2597
  msgid "Monaco"
2599
 
2600
  #: ../lib/tribe-view-helpers.class.php:188
2601
  msgid "Mongolia"
2602
+ msgstr "Mongolië"
2603
 
2604
  #: ../lib/tribe-view-helpers.class.php:189
2605
  msgid "Montenegro"
2607
 
2608
  #: ../lib/tribe-view-helpers.class.php:190
2609
  msgid "Montserrat"
2610
+ msgstr "Montserrat"
2611
 
2612
  #: ../lib/tribe-view-helpers.class.php:191
2613
  msgid "Morocco"
2614
+ msgstr "Marokko"
2615
 
2616
  #: ../lib/tribe-view-helpers.class.php:192
2617
  msgid "Mozambique"
2618
+ msgstr "Mozambique"
2619
 
2620
  #: ../lib/tribe-view-helpers.class.php:193
2621
  msgid "Myanmar"
2622
+ msgstr "Myanmar"
2623
 
2624
  #: ../lib/tribe-view-helpers.class.php:194
2625
  msgid "Namibia"
2626
+ msgstr "Namibië"
2627
 
2628
  #: ../lib/tribe-view-helpers.class.php:195
2629
  msgid "Nauru"
2630
+ msgstr "Nauru"
2631
 
2632
  #: ../lib/tribe-view-helpers.class.php:196
2633
  msgid "Nepal"
2634
+ msgstr "Nepal"
2635
 
2636
  #: ../lib/tribe-view-helpers.class.php:197
2637
  msgid "Netherlands"
2639
 
2640
  #: ../lib/tribe-view-helpers.class.php:198
2641
  msgid "Netherlands Antilles"
2642
+ msgstr "Nederlandse Antillen"
2643
 
2644
  #: ../lib/tribe-view-helpers.class.php:199
2645
  msgid "New Caledonia"
2646
+ msgstr "Nieuw-Caledonië"
2647
 
2648
  #: ../lib/tribe-view-helpers.class.php:200
2649
  msgid "New Zealand"
2650
+ msgstr "Nieuw-Zeeland"
2651
 
2652
  #: ../lib/tribe-view-helpers.class.php:201
2653
  msgid "Nicaragua"
2654
+ msgstr "Nicaragua"
2655
 
2656
  #: ../lib/tribe-view-helpers.class.php:202
2657
  msgid "Niger"
2658
+ msgstr "Niger"
2659
 
2660
  #: ../lib/tribe-view-helpers.class.php:203
2661
  msgid "Nigeria"
2662
+ msgstr "Nigeria"
2663
 
2664
  #: ../lib/tribe-view-helpers.class.php:204
2665
  msgid "Niue"
2666
+ msgstr "Niue"
2667
 
2668
  #: ../lib/tribe-view-helpers.class.php:205
2669
  msgid "Norfolk Island"
2670
+ msgstr "Norfolk"
2671
 
2672
  #: ../lib/tribe-view-helpers.class.php:206
2673
  msgid "Northern Mariana Islands"
2674
+ msgstr "Noordelijke Marianen"
2675
 
2676
  #: ../lib/tribe-view-helpers.class.php:207
2677
  msgid "Norway"
2679
 
2680
  #: ../lib/tribe-view-helpers.class.php:208
2681
  msgid "Oman"
2682
+ msgstr "Oman"
2683
 
2684
  #: ../lib/tribe-view-helpers.class.php:209
2685
  msgid "Pakistan"
2686
+ msgstr "Pakistan"
2687
 
2688
  #: ../lib/tribe-view-helpers.class.php:210
2689
  msgid "Palau"
2690
+ msgstr "Palau"
2691
 
2692
  #: ../lib/tribe-view-helpers.class.php:211
2693
  msgid "Panama"
2694
+ msgstr "Panama"
2695
 
2696
  #: ../lib/tribe-view-helpers.class.php:212
2697
  msgid "Papua New Guinea"
2698
+ msgstr "Papoea-Nieuw-Guinea"
2699
 
2700
  #: ../lib/tribe-view-helpers.class.php:213
2701
  msgid "Paraguay"
2702
+ msgstr "Paraguay"
2703
 
2704
  #: ../lib/tribe-view-helpers.class.php:214
2705
  msgid "Peru"
2706
+ msgstr "Peru"
2707
 
2708
  #: ../lib/tribe-view-helpers.class.php:215
2709
  msgid "Philippines"
2710
+ msgstr "Filipijnen"
2711
 
2712
  #: ../lib/tribe-view-helpers.class.php:216
2713
  msgid "Pitcairn"
2714
+ msgstr "Pitcairneilanden"
2715
 
2716
  #: ../lib/tribe-view-helpers.class.php:217
2717
  msgid "Poland"
2723
 
2724
  #: ../lib/tribe-view-helpers.class.php:219
2725
  msgid "Puerto Rico"
2726
+ msgstr "Puerto Rico"
2727
 
2728
  #: ../lib/tribe-view-helpers.class.php:220
2729
  msgid "Qatar"
2730
+ msgstr "Qatar"
2731
 
2732
  #: ../lib/tribe-view-helpers.class.php:221
2733
  msgid "Reunion"
2734
+ msgstr "Réunion"
2735
 
2736
  #: ../lib/tribe-view-helpers.class.php:222
2737
  msgid "Romania"
2738
+ msgstr "Roemenië"
2739
 
2740
  #: ../lib/tribe-view-helpers.class.php:223
2741
  msgid "Russian Federation"
2742
+ msgstr "Rusland"
2743
 
2744
  #: ../lib/tribe-view-helpers.class.php:224
2745
  msgid "Rwanda"
2746
+ msgstr "Rwanda"
2747
 
2748
  #: ../lib/tribe-view-helpers.class.php:225
2749
  msgid "Saint Kitts And Nevis"
2750
+ msgstr "Saint Kitts en Nevis"
2751
 
2752
  #: ../lib/tribe-view-helpers.class.php:226
2753
  msgid "Saint Lucia"
2754
+ msgstr "Saint Lucia"
2755
 
2756
  #: ../lib/tribe-view-helpers.class.php:227
2757
  msgid "Saint Vincent And The Grenadines"
2758
+ msgstr "Saint Vincent en de Grenadines"
2759
 
2760
  #: ../lib/tribe-view-helpers.class.php:228
2761
  msgid "Samoa"
2762
+ msgstr "Samoa"
2763
 
2764
  #: ../lib/tribe-view-helpers.class.php:229
2765
  msgid "San Marino"
2767
 
2768
  #: ../lib/tribe-view-helpers.class.php:230
2769
  msgid "Sao Tome And Principe"
2770
+ msgstr "Sao Tomé en Principe"
2771
 
2772
  #: ../lib/tribe-view-helpers.class.php:231
2773
  msgid "Saudi Arabia"
2774
+ msgstr "Saoedi-Arabië"
2775
 
2776
  #: ../lib/tribe-view-helpers.class.php:232
2777
  msgid "Senegal"
2778
+ msgstr "Senegal"
2779
 
2780
  #: ../lib/tribe-view-helpers.class.php:233
2781
  msgid "Serbia"
2782
+ msgstr "Servië"
2783
 
2784
  #: ../lib/tribe-view-helpers.class.php:234
2785
  msgid "Seychelles"
2786
+ msgstr "Seychellen"
2787
 
2788
  #: ../lib/tribe-view-helpers.class.php:235
2789
  msgid "Sierra Leone"
2790
+ msgstr "Sierra Leone"
2791
 
2792
  #: ../lib/tribe-view-helpers.class.php:236
2793
  msgid "Singapore"
2794
+ msgstr "Singapore"
2795
 
2796
  #: ../lib/tribe-view-helpers.class.php:237
2797
  msgid "Slovakia (Slovak Republic)"
2799
 
2800
  #: ../lib/tribe-view-helpers.class.php:238
2801
  msgid "Slovenia"
2802
+ msgstr "Slovenië"
2803
 
2804
  #: ../lib/tribe-view-helpers.class.php:239
2805
  msgid "Solomon Islands"
2806
+ msgstr "Salomoneilanden"
2807
 
2808
  #: ../lib/tribe-view-helpers.class.php:240
2809
  msgid "Somalia"
2810
+ msgstr "Somalië"
2811
 
2812
  #: ../lib/tribe-view-helpers.class.php:241
2813
  msgid "South Africa"
2814
+ msgstr "Zuid-Afrika"
2815
 
2816
  #: ../lib/tribe-view-helpers.class.php:242
2817
  msgid "South Georgia, South Sandwich Islands"
2818
+ msgstr "Zuid-Georgia en de Zuidelijke Sandwicheilanden"
2819
 
2820
  #: ../lib/tribe-view-helpers.class.php:243
2821
  msgid "Spain"
2823
 
2824
  #: ../lib/tribe-view-helpers.class.php:244
2825
  msgid "Sri Lanka"
2826
+ msgstr "Sri Lanka"
2827
 
2828
  #: ../lib/tribe-view-helpers.class.php:245
2829
  msgid "St. Helena"
2830
+ msgstr "Sint Helena"
2831
 
2832
  #: ../lib/tribe-view-helpers.class.php:246
2833
  msgid "St. Pierre And Miquelon"
2834
+ msgstr "Saint-Pierre en Miquelon"
2835
 
2836
  #: ../lib/tribe-view-helpers.class.php:247
2837
  msgid "Sudan"
2838
+ msgstr "Soedan"
2839
 
2840
  #: ../lib/tribe-view-helpers.class.php:248
2841
  msgid "Suriname"
2842
+ msgstr "Suriname"
2843
 
2844
  #: ../lib/tribe-view-helpers.class.php:249
2845
  msgid "Svalbard And Jan Mayen Islands"
2846
+ msgstr "Spitbergen en Jan Mayen"
2847
 
2848
  #: ../lib/tribe-view-helpers.class.php:250
2849
  msgid "Swaziland"
2850
+ msgstr "Swaziland"
2851
 
2852
  #: ../lib/tribe-view-helpers.class.php:251
2853
  msgid "Sweden"
2859
 
2860
  #: ../lib/tribe-view-helpers.class.php:253
2861
  msgid "Syrian Arab Republic"
2862
+ msgstr "Syrië"
2863
 
2864
  #: ../lib/tribe-view-helpers.class.php:254
2865
  msgid "Taiwan"
2866
+ msgstr "Taiwan"
2867
 
2868
  #: ../lib/tribe-view-helpers.class.php:255
2869
  msgid "Tajikistan"
2870
+ msgstr "Tadzjikistan"
2871
 
2872
  #: ../lib/tribe-view-helpers.class.php:256
2873
  msgid "Tanzania, United Republic Of"
2874
+ msgstr "Tanzania"
2875
 
2876
  #: ../lib/tribe-view-helpers.class.php:257
2877
  msgid "Thailand"
2878
+ msgstr "Thailand"
2879
 
2880
  #: ../lib/tribe-view-helpers.class.php:258
2881
  msgid "Togo"
2882
+ msgstr "Togo"
2883
 
2884
  #: ../lib/tribe-view-helpers.class.php:259
2885
  msgid "Tokelau"
2886
+ msgstr "Tokelau"
2887
 
2888
  #: ../lib/tribe-view-helpers.class.php:260
2889
  msgid "Tonga"
2890
+ msgstr "Tonga"
2891
 
2892
  #: ../lib/tribe-view-helpers.class.php:261
2893
  msgid "Trinidad And Tobago"
2894
+ msgstr "Trinidad en Tobago"
2895
 
2896
  #: ../lib/tribe-view-helpers.class.php:262
2897
  msgid "Tunisia"
2898
+ msgstr "Tunesië"
2899
 
2900
  #: ../lib/tribe-view-helpers.class.php:263
2901
  msgid "Turkey"
2903
 
2904
  #: ../lib/tribe-view-helpers.class.php:264
2905
  msgid "Turkmenistan"
2906
+ msgstr "Turkmenistan"
2907
 
2908
  #: ../lib/tribe-view-helpers.class.php:265
2909
  msgid "Turks And Caicos Islands"
2910
+ msgstr "Turks- en Caicoseilanden"
2911
 
2912
  #: ../lib/tribe-view-helpers.class.php:266
2913
  msgid "Tuvalu"
2914
+ msgstr "Tuvalu"
2915
 
2916
  #: ../lib/tribe-view-helpers.class.php:267
2917
  msgid "Uganda"
2918
+ msgstr "Oeganda"
2919
 
2920
  #: ../lib/tribe-view-helpers.class.php:268
2921
  msgid "Ukraine"
2922
+ msgstr "Oekraïne"
2923
 
2924
  #: ../lib/tribe-view-helpers.class.php:269
2925
  msgid "United Arab Emirates"
2926
+ msgstr "Verenigde Arabische Emiraten"
2927
 
2928
  #: ../lib/tribe-view-helpers.class.php:270
2929
  msgid "United Kingdom"
2930
+ msgstr "Verenigd Koninkrijk"
2931
 
2932
  #: ../lib/tribe-view-helpers.class.php:271
2933
  msgid "United States Minor Outlying Islands"
2934
+ msgstr "Kleine afgelegen eilanden van de Verenigde Staten"
2935
 
2936
  #: ../lib/tribe-view-helpers.class.php:272
2937
  msgid "Uruguay"
2938
+ msgstr "Uruguay"
2939
 
2940
  #: ../lib/tribe-view-helpers.class.php:273
2941
  msgid "Uzbekistan"
2942
+ msgstr "Oezbekistan"
2943
 
2944
  #: ../lib/tribe-view-helpers.class.php:274
2945
  msgid "Vanuatu"
2946
+ msgstr "Vanuatu"
2947
 
2948
  #: ../lib/tribe-view-helpers.class.php:275
2949
  msgid "Venezuela"
2950
+ msgstr "Venezuela"
2951
 
2952
  #: ../lib/tribe-view-helpers.class.php:276
2953
  msgid "Viet Nam"
2954
+ msgstr "Vietnam"
2955
 
2956
  #: ../lib/tribe-view-helpers.class.php:277
2957
  msgid "Virgin Islands (British)"
2958
+ msgstr "Britse Maagdeneilanden"
2959
 
2960
  #: ../lib/tribe-view-helpers.class.php:278
2961
  msgid "Virgin Islands (U.S.)"
2962
+ msgstr "Amerikaanse Maagdeneilanden"
2963
 
2964
  #: ../lib/tribe-view-helpers.class.php:279
2965
  msgid "Wallis And Futuna Islands"
2966
+ msgstr "Wallis en Futuna"
2967
 
2968
  #: ../lib/tribe-view-helpers.class.php:280
2969
  msgid "Western Sahara"
2970
+ msgstr "Westelijke Sahara"
2971
 
2972
  #: ../lib/tribe-view-helpers.class.php:281
2973
  msgid "Yemen"
2974
+ msgstr "Jemen"
2975
 
2976
  #: ../lib/tribe-view-helpers.class.php:282
2977
  msgid "Zambia"
2978
+ msgstr "Zambia"
2979
 
2980
  #: ../lib/tribe-view-helpers.class.php:283
2981
  msgid "Zimbabwe"
2982
+ msgstr "Zimbabwe"
2983
 
2984
  #: ../lib/tribe-view-helpers.class.php:308
2985
  msgid "Alabama"
2986
+ msgstr "Alabama"
2987
 
2988
  #: ../lib/tribe-view-helpers.class.php:309
2989
  msgid "Alaska"
2990
+ msgstr "Alaska"
2991
 
2992
  #: ../lib/tribe-view-helpers.class.php:310
2993
  msgid "Arizona"
2994
+ msgstr "Arizona"
2995
 
2996
  #: ../lib/tribe-view-helpers.class.php:311
2997
  msgid "Arkansas"
2998
+ msgstr "Arkansas"
2999
 
3000
  #: ../lib/tribe-view-helpers.class.php:312
3001
  msgid "California"
3002
+ msgstr "Californië"
3003
 
3004
  #: ../lib/tribe-view-helpers.class.php:313
3005
  msgid "Colorado"
3006
+ msgstr "Colorado"
3007
 
3008
  #: ../lib/tribe-view-helpers.class.php:314
3009
  msgid "Connecticut"
3010
+ msgstr "Connecticut"
3011
 
3012
  #: ../lib/tribe-view-helpers.class.php:315
3013
  msgid "Delaware"
3014
+ msgstr "Delaware"
3015
 
3016
  #: ../lib/tribe-view-helpers.class.php:316
3017
  msgid "District of Columbia"
3018
+ msgstr "District of Columbia"
3019
 
3020
  #: ../lib/tribe-view-helpers.class.php:317
3021
  msgid "Florida"
3022
+ msgstr "Florida"
3023
 
3024
  #: ../lib/tribe-view-helpers.class.php:319
3025
  msgid "Hawaii"
3026
+ msgstr "Hawaï"
3027
 
3028
  #: ../lib/tribe-view-helpers.class.php:320
3029
  msgid "Idaho"
3030
+ msgstr "Idaho"
3031
 
3032
  #: ../lib/tribe-view-helpers.class.php:321
3033
  msgid "Illinois"
3034
+ msgstr "Illinois"
3035
 
3036
  #: ../lib/tribe-view-helpers.class.php:322
3037
  msgid "Indiana"
3038
+ msgstr "Indiana"
3039
 
3040
  #: ../lib/tribe-view-helpers.class.php:323
3041
  msgid "Iowa"
3042
+ msgstr "Iowa"
3043
 
3044
  #: ../lib/tribe-view-helpers.class.php:324
3045
  msgid "Kansas"
3046
+ msgstr "Kansas"
3047
 
3048
  #: ../lib/tribe-view-helpers.class.php:325
3049
  msgid "Kentucky"
3050
+ msgstr "Kentucky"
3051
 
3052
  #: ../lib/tribe-view-helpers.class.php:326
3053
  msgid "Louisiana"
3054
+ msgstr "Louisiana"
3055
 
3056
  #: ../lib/tribe-view-helpers.class.php:327
3057
  msgid "Maine"
3058
+ msgstr "Maine"
3059
 
3060
  #: ../lib/tribe-view-helpers.class.php:328
3061
  msgid "Maryland"
3062
+ msgstr "Maryland"
3063
 
3064
  #: ../lib/tribe-view-helpers.class.php:329
3065
  msgid "Massachusetts"
3066
+ msgstr "Massachusetts"
3067
 
3068
  #: ../lib/tribe-view-helpers.class.php:330
3069
  msgid "Michigan"
3070
+ msgstr "Michigan"
3071
 
3072
  #: ../lib/tribe-view-helpers.class.php:331
3073
  msgid "Minnesota"
3074
+ msgstr "Minnesota"
3075
 
3076
  #: ../lib/tribe-view-helpers.class.php:332
3077
  msgid "Mississippi"
3078
+ msgstr "Mississippi"
3079
 
3080
  #: ../lib/tribe-view-helpers.class.php:333
3081
  msgid "Missouri"
3082
+ msgstr "Missouri"
3083
 
3084
  #: ../lib/tribe-view-helpers.class.php:334
3085
  msgid "Montana"
3086
+ msgstr "Montana"
3087
 
3088
  #: ../lib/tribe-view-helpers.class.php:335
3089
  msgid "Nebraska"
3090
+ msgstr "Nebraska"
3091
 
3092
  #: ../lib/tribe-view-helpers.class.php:336
3093
  msgid "Nevada"
3094
+ msgstr "Nevada"
3095
 
3096
  #: ../lib/tribe-view-helpers.class.php:337
3097
  msgid "New Hampshire"
3098
+ msgstr "New Hampshire"
3099
 
3100
  #: ../lib/tribe-view-helpers.class.php:338
3101
  msgid "New Jersey"
3102
+ msgstr "New Jersey"
3103
 
3104
  #: ../lib/tribe-view-helpers.class.php:339
3105
  msgid "New Mexico"
3106
+ msgstr "New Mexico"
3107
 
3108
  #: ../lib/tribe-view-helpers.class.php:340
3109
  msgid "New York"
3110
+ msgstr "New York"
3111
 
3112
  #: ../lib/tribe-view-helpers.class.php:341
3113
  msgid "North Carolina"
3114
+ msgstr "North Carolina"
3115
 
3116
  #: ../lib/tribe-view-helpers.class.php:342
3117
  msgid "North Dakota"
3118
+ msgstr "North Dakota"
3119
 
3120
  #: ../lib/tribe-view-helpers.class.php:343
3121
  msgid "Ohio"
3122
+ msgstr "Ohia"
3123
 
3124
  #: ../lib/tribe-view-helpers.class.php:344
3125
  msgid "Oklahoma"
3126
+ msgstr "Oklahoma"
3127
 
3128
  #: ../lib/tribe-view-helpers.class.php:345
3129
  msgid "Oregon"
3130
+ msgstr "Oregon"
3131
 
3132
  #: ../lib/tribe-view-helpers.class.php:346
3133
  msgid "Pennsylvania"
3134
+ msgstr "Pennsylvania"
3135
 
3136
  #: ../lib/tribe-view-helpers.class.php:347
3137
  msgid "Rhode Island"
3138
+ msgstr "Rhode Island"
3139
 
3140
  #: ../lib/tribe-view-helpers.class.php:348
3141
  msgid "South Carolina"
3142
+ msgstr "South Carolina"
3143
 
3144
  #: ../lib/tribe-view-helpers.class.php:349
3145
  msgid "South Dakota"
3146
+ msgstr "South Dakota"
3147
 
3148
  #: ../lib/tribe-view-helpers.class.php:350
3149
  msgid "Tennessee"
3150
+ msgstr "Tennessee"
3151
 
3152
  #: ../lib/tribe-view-helpers.class.php:351
3153
  msgid "Texas"
3154
+ msgstr "Texas"
3155
 
3156
  #: ../lib/tribe-view-helpers.class.php:352
3157
  msgid "Utah"
3158
+ msgstr "Utah"
3159
 
3160
  #: ../lib/tribe-view-helpers.class.php:353
3161
  msgid "Vermont"
3162
+ msgstr "Vermont"
3163
 
3164
  #: ../lib/tribe-view-helpers.class.php:354
3165
  msgid "Virginia"
3166
+ msgstr "Virginia"
3167
 
3168
  #: ../lib/tribe-view-helpers.class.php:355
3169
  msgid "Washington"
3170
+ msgstr "Washington"
3171
 
3172
  #: ../lib/tribe-view-helpers.class.php:356
3173
  msgid "West Virginia"
3174
+ msgstr "West Virginia"
3175
 
3176
  #: ../lib/tribe-view-helpers.class.php:357
3177
  msgid "Wisconsin"
3178
+ msgstr "Wisconsin"
3179
 
3180
  #: ../lib/tribe-view-helpers.class.php:358
3181
  msgid "Wyoming"
3182
+ msgstr "Wyoming"
3183
 
 
3184
  #: ../lib/widget-list.class.php:21
3185
  msgid "A widget that displays upcoming events."
3186
+ msgstr "Een widget die toekomstige evenementen weergeeft."
3187
 
3188
  #: ../lib/widget-list.class.php:27
3189
  msgid "Events List"
3190
+ msgstr "Evenementenlijst"
3191
 
3192
  #: ../lib/widget-list.class.php:114
3193
  msgid "View All Events"
3203
  "There were no results found for <strong>\"%s\"</strong> this month. Try "
3204
  "searching next month."
3205
  msgstr ""
3206
+ "Er zijn geen resultaten gevonden voor <strong>\"%s\"</strong> deze maand. "
3207
  "Probeer volgende maand."
3208
 
3209
  #: ../lib/template-classes/single-event.php:99
3255
  msgid "Print"
3256
  msgstr "Print"
3257
 
 
3258
  #: ../lib/tickets/tribe-tickets-attendees.php:180
3259
  msgid "Email"
3260
  msgstr "Email"
3325
  msgid "End:"
3326
  msgstr "Einde:"
3327
 
 
3328
  #: ../public/advanced-functions/meta.php:51
3329
  msgid "Date:"
3330
  msgstr "Datum:"
3333
  msgid "Click to view a Google Map"
3334
  msgstr "Klik om te bekijken op Google Maps"
3335
 
 
3336
  #: ../public/advanced-functions/meta.php:234
3337
  msgid "+ Google Map"
3338
+ msgstr "+ Google Maps"
3339
 
3340
  #: ../public/advanced-functions/meta.php:245
3341
  msgid "Details"
3342
  msgstr "Gegevens"
3343
 
 
3344
  #: ../public/advanced-functions/meta.php:295
3345
  msgid "Event Tags:"
3346
+ msgstr "Evenementtags:"
3347
 
3348
  # depends largely on context, 2b checked when ECP runned
3349
  #: ../public/advanced-functions/meta.php:321
3350
  msgid "Origin:"
3351
  msgstr "Achtergrond:"
3352
 
 
3353
  #: ../public/advanced-functions/meta.php:458
3354
  msgid "Event:"
3355
  msgstr "Evenement:"
3356
 
 
3357
  #: ../public/template-tags/deprecated.php:1143
3358
  msgid "Category"
3359
  msgstr "Categorie"
3362
  msgid "Tags:"
3363
  msgstr "Tags:"
3364
 
 
3365
  #: ../public/template-tags/general.php:392
3366
  msgid "Loading Events"
3367
+ msgstr "Evenementen worden geladen"
3368
 
3369
  #: ../public/template-tags/general.php:531
3370
  msgid "Free"
3371
  msgstr "Gratis"
3372
 
 
3373
  #: ../public/template-tags/general.php:703
3374
  msgid "Recurring Event"
3375
+ msgstr "Terugkerend evenement"
3376
 
3377
  #: ../public/template-tags/general.php:706
3378
  msgid "(See all)"
3379
+ msgstr "(Bekijk alle)"
3380
 
3381
  #: ../public/template-tags/general.php:982
3382
  #, php-format
3383
  msgid "Calendar powered by %sThe Events Calendar%s"
3384
+ msgstr "Kalender aangedreven door %sThe Events Calendar%s"
3385
 
3386
  #: ../public/template-tags/loop.php:150
3387
  #, php-format
3388
  msgid "Events for %1$s"
3389
+ msgstr "Evenementen op %1$s"
3390
 
3391
  #: ../public/template-tags/loop.php:158
3392
  #, php-format
3393
  msgid "Events for %1$s through %2$s"
3394
+ msgstr "Evenementen van %1$s t/m %2$s"
3395
 
 
3396
  #: ../public/template-tags/loop.php:171
3397
  msgid "Events for "
3398
  msgstr "Evenementen in "
3400
  #: ../public/template-tags/options.php:20
3401
  #, php-format
3402
  msgid "Your current Events URL is %s"
3403
+ msgstr "Je huidige evenementen-URL is %s"
3404
 
3405
  #: ../public/template-tags/options.php:31
3406
  #, php-format
3410
  msgstr ""
3411
  "Je kunt <strong>niet</strong> dezelfde slug als hierboven gebruiken. "
3412
  "Bovenstaande zou idealiter meervoud zijn en deze enkelvoud.<br />Je "
3413
+ "Evenement-URL is als: %s"
3414
 
 
3415
  #: ../views/single-event.php:23
3416
  msgid "&laquo; All Events"
3417
+ msgstr "&laquo; Alle evenementen"
3418
 
 
3419
  #: ../views/single-event.php:42 ../views/single-event.php:73
3420
  msgid "Event Navigation"
3421
+ msgstr "Evenementnavigatie"
3422
 
 
3423
  #: ../views/list/nav.php:16
3424
  msgid "Events List Navigation"
3425
+ msgstr "Evenementenlijstnavigatie"
3426
 
 
3427
  #: ../views/list/single-event.php:76
3428
  msgid "Find out more"
3429
+ msgstr "Bekijk details"
3430
 
 
3431
  #: ../views/modules/bar.php:31 ../views/modules/bar.php:60
3432
  msgid "Find Events"
3433
+ msgstr "Vind!"
3434
 
3435
  #: ../views/modules/bar.php:38
3436
  msgid "Event Views Navigation"
3437
+ msgstr "Evenementenweergavenavigatie"
3438
 
 
3439
  #: ../views/modules/bar.php:39
3440
  msgid "View As"
3441
  msgstr "Bekijk als"
3442
 
 
3443
  #: ../views/month/nav.php:18
3444
  msgid "Calendar Month Navigation"
3445
+ msgstr "Kalendermaandnavigatie"
3446
 
 
3447
  #: ../views/tickets/attendees-email.php:25
3448
  msgid "Attendee List"
3449
+ msgstr "Aanwezigenlijst"
3450
 
3451
  #: ../views/tickets/email.php:39
3452
  msgid "Your tickets"
3454
 
3455
  #: ../views/tickets/email.php:320
3456
  msgid "Ticket Type"
3457
+ msgstr "Tickettype"
3458
 
3459
  #: ../views/tickets/email.php:324
3460
  msgid "Purchaser"
3461
  msgstr "Koper"
3462
 
3463
+ #~ msgid "Month view events per day"
3464
+ #~ msgstr "Evenementen per dag in maandweergave"
 
 
 
3465
 
3466
+ #~ msgid "Allow more than the default 3 events per day in month view."
 
 
 
3467
  #~ msgstr ""
3468
+ #~ "Sta meer dan de standaard drie evenementen per dag toe in de "
3469
+ #~ "maandweergave."
3470
+
3471
+ #~ msgid "F Y"
3472
+ #~ msgstr "F Y"
3473
+
3474
+ #~ msgid "Search"
3475
+ #~ msgstr "Zoeken"
3476
+
3477
+ #~ msgid "l, F jS Y"
3478
+ #~ msgstr "l j F Y"
3479
+
3480
+ #~ msgid "F d, Y"
3481
+ #~ msgstr "D F Y "
3482
 
3483
  #~ msgid ""
3484
+ #~ "<p>We love all our users and want to help free & PRO customers alike. If "
3485
+ #~ "you're running the latest version of The Events Calendar and are having "
3486
+ #~ "problems, post a thread at the %s on WordPress.org. We hit the forum once "
3487
+ #~ "a week to look for legitimate bug reports and do what we can to assist "
3488
+ #~ "users.</p>"
3489
  #~ msgstr ""
3490
+ #~ "<p>We houden van al onze gebruikers en willen zowel de free & PRO "
3491
+ #~ "gebruikers helpen. Als je de laatste versie van The Events Calendar "
3492
+ #~ "gebruikt en je hebt problemen, post een bericht onder %s op WordPress."
3493
+ #~ "org. We bekijken het forum eens per week voor bug reports en om te zien "
3494
+ #~ "hoe we gebruikers kunnen assisteren.</p>"
3495
 
3496
  #~ msgid ""
3497
  #~ "If this is your first time using The Events Calendar,you're in for a "
3513
  #~ "href=\"%s\">new user primer</a>, designed to help familiarize you with "
3514
  #~ "the plugin basics.</li></ul>"
3515
 
3516
+ #~ msgid "These styles provide a fully designed events theme"
3517
+ #~ msgstr "Deze styles zijn een volledig ontworpen evenementen theme"
3518
+
3519
  #~ msgid ""
3520
+ #~ "These styles provide a more complex level of layout and style and should "
3521
+ #~ "adapt to your theme"
 
 
 
3522
  #~ msgstr ""
3523
+ #~ "Deze styles hebben een complexere layout en style waardoor ze zich beter "
3524
+ #~ "aanpassen aan je theme"
3525
+
3526
+ #~ msgid ""
3527
+ #~ "These styles provide a bare minimum level of layout for the more complex "
3528
+ #~ "templates, and is recommended if you're customizing the events template "
3529
+ #~ "styles."
3530
+ #~ msgstr ""
3531
+ #~ "Deze styles hebben slechts het hoogst noodzakelijke voor de meer complexe "
3532
+ #~ "templates en worden aanbevolen als basis voor het verder aanpassen van de "
3533
+ #~ "evementent template styles."
3534
+
3535
+ #~ msgid ""
3536
+ #~ "Want to modify the display of this widget? Try a %stemplate override%s."
3537
+ #~ msgstr ""
3538
+ #~ "Wil je de weergave van de widget aanpassen? Probeer een %stemplate "
3539
+ #~ "override%s."
lang/tribe-events-calendar-pt_BR.mo CHANGED
Binary file
lang/tribe-events-calendar-pt_BR.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-07-02 11:27-0800\n"
9
- "PO-Revision-Date: 2013-07-02 11:27-0800\n"
10
- "Last-Translator: Diego Meneghetti\n"
11
  "Language-Team: Diego Meneghetti <diego@estudioteca.com>\n"
12
  "Language: pt_BR\n"
13
  "MIME-Version: 1.0\n"
@@ -26,11 +26,11 @@ msgstr ""
26
  msgid "Tribe Event Add-Ons"
27
  msgstr "Add-Ons de Evento da Tribe"
28
 
29
- #: ../admin-views/app-shop.php:50
30
  msgid "Version"
31
  msgstr "Versão"
32
 
33
- #: ../admin-views/app-shop.php:53
34
  msgid "Last Update"
35
  msgstr "Última atualização"
36
 
@@ -113,7 +113,7 @@ msgid "Currency Symbol:"
113
  msgstr "Símbolo:"
114
 
115
  #: ../admin-views/events-meta-box.php:122
116
- #: ../public/advanced-functions/meta.php:270
117
  msgid "Cost:"
118
  msgstr "Preço:"
119
 
@@ -127,24 +127,24 @@ msgid "Organizer Name:"
127
  msgstr "Nome do Organizador:"
128
 
129
  #: ../admin-views/organizer-meta-box.php:19
 
130
  #: ../admin-views/venue-meta-box.php:93
131
- #: ../admin-views/tickets/attendees.php:39
132
- #: ../public/advanced-functions/meta.php:357
133
- #: ../public/advanced-functions/meta.php:419
134
  msgid "Phone:"
135
  msgstr "Telefone:"
136
 
137
  #: ../admin-views/organizer-meta-box.php:23
 
138
  #: ../admin-views/venue-meta-box.php:97
139
- #: ../admin-views/tickets/attendees.php:45
140
- #: ../public/advanced-functions/meta.php:308
141
- #: ../public/advanced-functions/meta.php:383
142
- #: ../public/advanced-functions/meta.php:445
143
  msgid "Website:"
144
  msgstr "Website:"
145
 
146
  #: ../admin-views/organizer-meta-box.php:27
147
- #: ../public/advanced-functions/meta.php:432
148
  msgid "Email:"
149
  msgstr "Email:"
150
 
@@ -195,6 +195,176 @@ msgstr "Os eventos futuros desta série não serão apagados."
195
  msgid "All future events in the series will be deleted."
196
  msgstr "Todos os eventos futuros desta série serão apagados."
197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
  #: ../admin-views/tribe-options-display.php:4
199
  msgid "Default Events Template"
200
  msgstr "Template padrão de Eventos"
@@ -208,66 +378,75 @@ msgstr "Template padrão de Página"
208
  msgid "Display Settings"
209
  msgstr "Mostrar configurações"
210
 
211
- #: ../admin-views/tribe-options-display.php:34
212
- #, fuzzy, php-format
213
  msgid ""
214
  "<p>The settings below control the display of your calendar. If things don't "
215
  "look right, try switching between the three style sheet options or pick a "
216
- "page template from your theme.</p><p>There are going to be situations where "
217
- "no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s"
218
- "\">our themer's guide</a> for instructions on custom modifications. Want to "
219
- "create a new view? Grab a copy of the <a href=\"%s\">Sample Agenda View "
220
- "plugin from Github</a></p>"
 
221
  msgstr ""
222
- "<p>As configurações abaixo são do calendário. Se as coisas não aparecerem "
223
  "OK, tente alterar as opções de estilos ou escolha um template do seu tema.</"
224
- "p>Confira <a href=\"%s\">nosso guia</a> para instruções de como alterar. "
225
- "Para criar um novo, pegue uma cópia em <a href=\"%s\">Sample Agenda View "
226
- "plugin do Github</a></p>"
 
227
 
228
  #
229
- #: ../admin-views/tribe-options-display.php:49
230
  msgid "Basic Template Settings"
231
  msgstr "Configurações básicas do template"
232
 
233
  #
234
- #: ../admin-views/tribe-options-display.php:53
235
  msgid "Default stylesheet used for events templates"
236
  msgstr "CSS padrão para os templates"
237
 
238
- #: ../admin-views/tribe-options-display.php:56
239
  msgid "Skeleton Styles"
240
  msgstr "Skeleton Styles"
241
 
242
- #: ../admin-views/tribe-options-display.php:58
243
  msgid ""
244
- "Only includes enough css to achieve complex layouts like calendar and week "
245
- "view."
 
246
  msgstr ""
 
 
 
247
 
248
- #: ../admin-views/tribe-options-display.php:60
249
  msgid "Full Styles"
250
  msgstr "Estilos completos"
251
 
252
- #: ../admin-views/tribe-options-display.php:62
253
- msgid "More detailed styling, tries to grab styles from your theme."
 
 
254
  msgstr ""
 
 
255
 
256
  #
257
- #: ../admin-views/tribe-options-display.php:64
258
  msgid "Tribe Events Styles"
259
  msgstr "Estilos Tribe Events"
260
 
261
- #: ../admin-views/tribe-options-display.php:66
262
- msgid "A fully designed and styled theme for your events pages."
263
- msgstr ""
264
 
265
  #
266
- #: ../admin-views/tribe-options-display.php:73
267
  msgid "Events template"
268
  msgstr "Template de eventos"
269
 
270
- #: ../admin-views/tribe-options-display.php:74
271
  msgid ""
272
  "Choose a page template to control the appearance of your calendar and event "
273
  "content."
@@ -275,41 +454,39 @@ msgstr ""
275
  "Escolha um template para controlar o design do calendário e do conteúdo dos "
276
  "eventos"
277
 
278
- #: ../admin-views/tribe-options-display.php:82
279
  msgid "Enable event views"
280
  msgstr "Habilitar visualização de eventos"
281
 
282
  #
283
- #: ../admin-views/tribe-options-display.php:83
284
  msgid "You must select at least one view."
285
  msgstr "Selecione pelo menos uma visualização."
286
 
287
  #
288
- #: ../admin-views/tribe-options-display.php:90
289
  msgid "Default view"
290
  msgstr "Visualização padrão"
291
 
292
- #: ../admin-views/tribe-options-display.php:98
293
- #, fuzzy
294
- msgid "Disable the Event Search Bar"
295
  msgstr "Use a barra de busca de eventos"
296
 
297
- #: ../admin-views/tribe-options-display.php:99
298
- #, fuzzy
299
- msgid "Check this to use the classic header."
300
  msgstr "Desabilite isto para usar o header padrão"
301
 
302
  #
303
- #: ../admin-views/tribe-options-display.php:105
304
  msgid "Advanced Template Settings"
305
  msgstr "Configurações avançadas"
306
 
307
  #
308
- #: ../admin-views/tribe-options-display.php:109
309
  msgid "Add HTML before event content"
310
  msgstr "Adicionar HTML antes do conteúdo do evento"
311
 
312
- #: ../admin-views/tribe-options-display.php:110
313
  msgid ""
314
  "If you are familiar with HTML, you can add additional code before the event "
315
  "template. Some themes may require this to help with styling or layout."
@@ -318,11 +495,11 @@ msgstr ""
318
  "podem precisar disso para ajustar o design."
319
 
320
  #
321
- #: ../admin-views/tribe-options-display.php:115
322
  msgid "Add HTML after event content"
323
  msgstr "Adicionar HTML depois do conteúdo do evento"
324
 
325
- #: ../admin-views/tribe-options-display.php:116
326
  msgid ""
327
  "If you are familiar with HTML, you can add additional code after the event "
328
  "template. Some themes may require this to help with styling or layout."
@@ -372,9 +549,9 @@ msgid ""
372
  "pointing to The Events Calendar project."
373
  msgstr ""
374
  "Você está pensando \"Uau, este plugin é incrível! Devo agradecer à Modern "
375
- "Tribe pelo seu trabalho duro.\" O que poderíamos pedir é seu reconhecimento. "
376
- "Adicionar um pequeno texto somente link na parte inferior do seu calendário "
377
- "apontando para o projeto Calendário de Eventos."
378
 
379
  #: ../admin-views/tribe-options-general.php:37
380
  #: ../admin-views/tribe-options-general.php:42
@@ -525,8 +702,7 @@ msgid "Check to enable maps for events and venues."
525
  msgstr "habilitar mapas."
526
 
527
  #: ../admin-views/tribe-options-general.php:161
528
- #, fuzzy
529
- msgid "Google Maps default zoom level"
530
  msgstr "Nível de Zoom padrão do Google Maps"
531
 
532
  #: ../admin-views/tribe-options-general.php:162
@@ -542,21 +718,21 @@ msgstr "Configurações secundárias"
542
  msgid "Duplicate Venues &amp; Organizers"
543
  msgstr "Duplicar locais &amp; organizadores"
544
 
545
- #: ../admin-views/tribe-options-general.php:174
546
- #: ../lib/tribe-amalgamator.php:252
547
- msgid "Merge Duplicates"
548
- msgstr "Mesclar duplicados"
549
-
550
  #: ../admin-views/tribe-options-general.php:174
551
  msgid ""
552
  "You might find duplicate venues and organizers when updating The Events "
553
  "Calendar from a pre-3.0 version. Click this button to automatically merge "
554
  "identical venues and organizers."
555
  msgstr ""
556
- "Você pode duplicar locais e organizadores ao atualizar oThe Events Calendar "
557
  "a partir de uma versão pré-3.0. Clique nesse botão para mesclar "
558
  "automaticamente locais e organizadores idênticos."
559
 
 
 
 
 
 
560
  #
561
  #: ../admin-views/tribe-options-general.php:179
562
  msgid "Debug mode"
@@ -625,9 +801,9 @@ msgid "FAQ"
625
  msgstr "FAQ"
626
 
627
  #: ../admin-views/tribe-options-help.php:79
628
- #: ../lib/the-events-calendar.class.php:743
629
- #: ../lib/the-events-calendar.class.php:3889
630
- #: ../lib/the-events-calendar.class.php:3980
631
  msgid "Help"
632
  msgstr "Ajuda"
633
 
@@ -643,150 +819,116 @@ msgstr "Notas"
643
  msgid "Forums"
644
  msgstr "Fóruns"
645
 
646
- #: ../admin-views/tribe-options-help.php:99
647
- msgid ""
648
- "If this is your first time using The Events Calendar, you're in for a treat "
649
- "and are already well on your way to creating a first event. Here are some "
650
- "basics we've found helpful for users jumping into it for the first time:"
651
- msgstr ""
652
-
653
- #: ../admin-views/tribe-options-help.php:102
654
- #, php-format
655
- msgid ""
656
- "%sOur New User Primer%s was designed for folks in your exact position. "
657
- "Featuring both step-by-step videos and written walkthroughs that feature "
658
- "accompanying screenshots, the primer aims to take you from zero to hero in "
659
- "no time."
660
- msgstr ""
661
-
662
- #: ../admin-views/tribe-options-help.php:104
663
- #, php-format
664
- msgid ""
665
- "%sInstallation/Setup FAQs%s from our support page can help give an overview "
666
- "of what the plugin can and cannot do. This section of the FAQs may be "
667
- "helpful as it aims to address any basic install questions not addressed by "
668
- "the new user primer."
669
- msgstr ""
670
-
671
- #: ../admin-views/tribe-options-help.php:106
672
- #, php-format
673
- msgid ""
674
- "Are you developer looking to build your own frontend view? We created an "
675
- "example plugin that demonstrates how to register a new view. You can "
676
- "%sdownload the plugin at GitHub%s to get started."
677
- msgstr ""
678
-
679
- #: ../admin-views/tribe-options-help.php:108
680
- msgid ""
681
- "Otherwise, if you're feeling adventurous, you can get started by heading to "
682
- "the Events menu and adding your first event."
683
- msgstr ""
684
-
685
- #: ../admin-views/tribe-options-help.php:112
686
  #, php-format
687
  msgid ""
688
- "We've redone our support page from the ground up in an effort to better help "
689
- "our users. Head over to our %sSupport Page%s and you'll find lots of great "
690
- "resources, including:"
 
 
 
 
691
  msgstr ""
 
 
 
 
 
 
 
 
692
 
693
- #: ../admin-views/tribe-options-help.php:114
694
  #, php-format
695
  msgid ""
696
- "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
697
- "&amp; Events Calendar PRO"
 
 
 
698
  msgstr ""
 
 
 
 
 
699
 
700
- #: ../admin-views/tribe-options-help.php:116
701
- #, php-format
702
- msgid ""
703
- "%sFrequently Asked Questions%s ranging from the most basic setup questions "
704
- "to advanced themer tweaks"
705
- msgstr ""
706
 
707
- #: ../admin-views/tribe-options-help.php:118
708
  #, php-format
709
  msgid ""
710
- "%sTutorials%s written by both members of our team and users from the "
711
- "community, covering custom queries, integration with third-party themes and "
712
- "plugins, etc."
713
- msgstr ""
714
-
715
- #: ../admin-views/tribe-options-help.php:120
716
- msgid ""
717
- "Release notes for painting an overall picture of the plugin's lifecycle and "
718
- "when features/bug fixes were introduced."
719
  msgstr ""
 
 
720
 
721
- #: ../admin-views/tribe-options-help.php:122
722
- #, php-format
723
- msgid ""
724
- "%sAdd-on documentation%s for all of Modern Tribe's official extensions for "
725
- "The Events Calendar (including WooTickets, Community Events, Eventbrite "
726
- "Tickets, Facebook Events, etc)"
727
- msgstr ""
728
 
729
- #: ../admin-views/tribe-options-help.php:124
730
- #, php-format
731
  msgid ""
732
- "We've also got a %sModern Tribe UserVoice%s page where we're actively "
733
- "watching for feature ideas from the community. If after playing with the "
734
- "plugin and reviewing the resources above, you're finding a feature isn't "
735
- "present that should be, let us know. Vote up existing feature requests or "
736
- "add your own, and help us shape the future of the products business in a way "
737
- "that best meets the community's needs."
738
- msgstr ""
739
 
740
- #: ../admin-views/tribe-options-help.php:128
741
- #, php-format
742
  msgid ""
743
- "Written documentation can only take things so far...sometimes, you need help "
744
- "from a real person. This is where our %ssupport forums%s come into play."
 
 
 
745
  msgstr ""
 
 
 
 
 
746
 
747
- #: ../admin-views/tribe-options-help.php:129
748
  #, php-format
749
  msgid ""
750
- "Users of the free The Events Calendar should post their support concerns to "
751
- "the plugin's %sWordPress.org support forum%s. While we are happy to help "
752
- "identify and fix bugs that are reported at WordPress.org, please make sure "
753
- "to read our %ssupport expectations sticky thread%s before posting so you "
754
- "understand our limitations."
755
  msgstr ""
 
 
 
756
 
757
- #: ../admin-views/tribe-options-help.php:130
758
  msgid ""
759
- "We hit the WordPress.org forum throughout the week, watching for bugs. If "
760
- "you report a legitimate bug that we're able to reproduce, we will log it and "
761
- "patch for an upcoming release. However we are unfortunately unable to "
762
- "provide customization tips or assist in integrating with 3rd party plugins "
763
- "or themes."
764
  msgstr ""
 
 
 
 
765
 
766
- #: ../admin-views/tribe-options-help.php:131
767
  #, php-format
768
  msgid ""
769
- "If you're a user of The Events Calendar and would like more support, please "
770
- "%spurchase a PRO license%s. We hit the PRO forums daily, and can provide a "
771
- "deeper level of customization/integration support for paying users than we "
772
- "can on WordPress.org."
773
- msgstr ""
774
-
775
- #: ../admin-views/tribe-options-help.php:135
776
- #, fuzzy, php-format
777
- msgid ""
778
- "If you find that you aren't getting the level of service you've come to "
779
- "expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
780
- "why. We'll do what we can to make it right."
781
  msgstr ""
782
- "Envie-nos um e-mail para %s ou twitte em %s e diga-nos porquê. Nós vamos "
783
  "fazer o que pudermos para fazer isso direito."
784
 
785
- #: ../admin-views/tribe-options-help.php:136
786
  msgid "More..."
787
  msgstr "Mais..."
788
 
789
- #: ../admin-views/tribe-options-help.php:144
790
  msgid ""
791
  "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
792
  "for installing our labor of love!"
@@ -794,78 +936,76 @@ msgstr ""
794
  "Olá! Somos da Modern Tribe e estamos aqui para ajudar você a mandar ver! "
795
  "Muito obrigado por instalar nosso trabalho!"
796
 
797
- #: ../admin-views/tribe-options-help.php:150
798
  msgid "Getting Started"
799
  msgstr "Primeiros Passos"
800
 
801
- #: ../admin-views/tribe-options-help.php:153
802
- #, fuzzy
803
- msgid "Support Resources To Help You Kick Ass"
804
  msgstr "Recursos para ajudar você a mandar bem"
805
 
806
- #: ../admin-views/tribe-options-help.php:156
807
- #, fuzzy
808
- msgid "Forums: Because Everyone Needs A Buddy"
809
  msgstr "Todo mundo precisa de um camarada"
810
 
811
- #: ../admin-views/tribe-options-help.php:159
812
- msgid "Not getting help?"
813
- msgstr ""
814
 
815
- #: ../admin-views/tribe-options-help.php:169
816
- #: ../lib/the-events-calendar.class.php:486
817
  #: ../lib/tribe-settings.class.php:135
818
  msgid "The Events Calendar"
819
  msgstr "The Events Calendar"
820
 
821
- #: ../admin-views/tribe-options-help.php:173
822
  msgid "Latest Version:"
823
  msgstr "Última Versão:"
824
 
825
- #: ../admin-views/tribe-options-help.php:174
826
  msgid "Author:"
827
  msgstr "Autor:"
828
 
829
- #: ../admin-views/tribe-options-help.php:174
830
  msgid "Modern Tribe Inc"
831
  msgstr "Modern Tribe Inc"
832
 
833
- #: ../admin-views/tribe-options-help.php:175
834
  msgid "Requires:"
835
  msgstr "Requer:"
836
 
837
- #: ../admin-views/tribe-options-help.php:175
838
  msgid "WordPress "
839
  msgstr "WordPress "
840
 
841
- #: ../admin-views/tribe-options-help.php:176
842
  msgid "Wordpress.org Plugin Page"
843
  msgstr "Página de Plugins do Worpress.org"
844
 
845
- #: ../admin-views/tribe-options-help.php:181
846
  msgid "Average Rating"
847
  msgstr "Classificação média"
848
 
849
- #: ../admin-views/tribe-options-help.php:185
850
  #, php-format
851
  msgid "Based on %d rating"
852
  msgid_plural "Based on %d ratings"
853
- msgstr[0] "Com base em %d classificação"
854
  msgstr[1] "Baseado em %d avaliações"
855
 
856
- #: ../admin-views/tribe-options-help.php:186
857
  msgid "Give us 5 stars!"
858
  msgstr "Dê 5 estrelas!"
859
 
860
- #: ../admin-views/tribe-options-help.php:189
861
  msgid "Premium Add-Ons"
862
  msgstr "Add-Ons Premium"
863
 
864
- #: ../admin-views/tribe-options-help.php:195
865
  msgid "(Coming Soon!)"
866
  msgstr "(Em breve!)"
867
 
868
- #: ../admin-views/tribe-options-help.php:202
869
  msgid "News and Tutorials"
870
  msgstr "Notícias e Tutoriais"
871
 
@@ -891,7 +1031,7 @@ msgid "Venue Name:"
891
  msgstr "Nome do Local:"
892
 
893
  #: ../admin-views/venue-meta-box.php:27
894
- #: ../public/advanced-functions/meta.php:371
895
  msgid "Address:"
896
  msgstr "Endereço: "
897
 
@@ -935,266 +1075,102 @@ msgstr "Mostrar: "
935
  msgid "Show widget only if there are upcoming events:"
936
  msgstr "Mostrar widget apenas se houver eventos futuros: "
937
 
938
- #: ../admin-views/tickets/attendees.php:9 ../admin-views/tickets/list.php:41
939
- #: ../lib/tickets/tribe-tickets-pro.php:73
940
- msgid "Attendees"
941
- msgstr "Participantes"
942
-
943
- #
944
- #: ../admin-views/tickets/attendees.php:14
945
- msgid "Event Summary"
946
- msgstr "Descrição do evento"
947
 
948
- #
949
- #: ../admin-views/tickets/attendees.php:22
950
- msgid "Event Details"
951
- msgstr "Detalhes"
952
 
953
- #
954
- #: ../admin-views/tickets/attendees.php:24
955
- msgid "Start Date / Time:"
956
- msgstr "Data / hora de início:"
957
 
958
- #
959
- #: ../admin-views/tickets/attendees.php:26
960
- msgid "End Date / Time:"
961
- msgstr "Data / hora de término:"
962
 
963
- #: ../admin-views/tickets/attendees.php:34
964
- msgid "Venue:"
965
- msgstr "Local: "
966
 
967
- #
968
- #: ../admin-views/tickets/attendees.php:52
969
- msgid "Ticket Sales"
970
- msgstr "Ingressos vendidos"
971
 
972
- #: ../admin-views/tickets/attendees.php:64 ../admin-views/tickets/list.php:67
973
  #, php-format
974
- msgid "Sold %d"
975
- msgstr "Vendidos %d"
 
 
 
 
976
 
977
- #: ../admin-views/tickets/attendees.php:66 ../admin-views/tickets/list.php:69
978
  #, php-format
979
- msgid "Sold %d of %d"
980
- msgstr "%d de %d vendidos"
 
 
 
 
 
 
 
 
981
 
982
- #
983
- #: ../admin-views/tickets/attendees.php:81
984
- msgid "Tickets sold:"
985
- msgstr "Ingressos vendidos:"
986
-
987
- #
988
- #: ../admin-views/tickets/attendees.php:85
989
- msgid "Checked in:"
990
- msgstr "COnferido em:"
991
-
992
- #: ../admin-views/tickets/attendees.php:105
993
- msgid "Send the attendee list by email"
994
- msgstr "Enviar lista por email"
995
-
996
- #
997
- #: ../admin-views/tickets/attendees.php:109
998
- msgid "Select a User:"
999
- msgstr "Selecionar um usuário:"
1000
-
1001
- #: ../admin-views/tickets/attendees.php:110
1002
- msgid "Select..."
1003
- msgstr "Selecionar..."
1004
-
1005
- #: ../admin-views/tickets/attendees.php:112
1006
- msgid "or"
1007
- msgstr "ou"
1008
-
1009
- #
1010
- #: ../admin-views/tickets/attendees.php:114
1011
- msgid "Email Address:"
1012
- msgstr "Email:"
1013
-
1014
- #: ../admin-views/tickets/list.php:21
1015
- msgid "Edit"
1016
- msgstr "Editar"
1017
-
1018
- #: ../admin-views/tickets/list.php:22
1019
- msgid "Delete"
1020
- msgstr "Excluir"
1021
-
1022
- #: ../admin-views/tickets/list.php:24
1023
- #, php-format
1024
- msgid "Edit in %s"
1025
- msgstr "Editado em %s"
1026
-
1027
- #: ../admin-views/tickets/list.php:27
1028
- #: ../lib/tribe-admin-events-list.class.php:53
1029
- msgid "View"
1030
- msgstr "Veja"
1031
-
1032
- #: ../admin-views/tickets/list.php:41 ../lib/tickets/tribe-tickets-pro.php:73
1033
- msgid "See who purchased tickets to this event"
1034
- msgstr "Veja quem já adquiriu bilhetes para este evento:"
1035
-
1036
- #: ../admin-views/tickets/meta-box.php:21
1037
- msgid ""
1038
- "This event was created using Community Events. Are you sure you want to sell "
1039
- "tickets for it?"
1040
- msgstr ""
1041
- "Este evento foi criado utilizando o Community Events. Você tem certeza que "
1042
- "deseja vender bilhetes para ele?"
1043
-
1044
- #: ../admin-views/tickets/meta-box.php:32
1045
- msgid "Upload image for the ticket header"
1046
- msgstr "Enviar imagem para o cabeçalho"
1047
-
1048
- #: ../admin-views/tickets/meta-box.php:33
1049
- msgid ""
1050
- "The maximum image size in the email will be 580px wide by any height, and "
1051
- "then scaled for mobile. If you would like \"retina\" support use an image "
1052
- "sized to 1160px wide."
1053
- msgstr ""
1054
- "O tamanho máximo da imagem deve ser de 580px por qualquer altura. Para usar "
1055
- "uma definição para retina display, use 1160px de largura."
1056
-
1057
- #
1058
- #: ../admin-views/tickets/meta-box.php:36
1059
- msgid "Select an Image"
1060
- msgstr "Selecione uma imagem"
1061
-
1062
- #: ../admin-views/tickets/meta-box.php:44
1063
- msgid "Remove"
1064
- msgstr "Excluir"
1065
-
1066
- #: ../admin-views/tickets/meta-box.php:62
1067
- #: ../admin-views/tickets/meta-box.php:72
1068
- msgid "Add new ticket"
1069
- msgstr "Adicionar novo bilhete"
1070
-
1071
- #: ../admin-views/tickets/meta-box.php:73
1072
- msgid "Edit ticket"
1073
- msgstr "Editar bilhete"
1074
-
1075
- #: ../admin-views/tickets/meta-box.php:79
1076
- msgid "Sell using:"
1077
- msgstr "Vender utilizando:"
1078
-
1079
- #: ../admin-views/tickets/meta-box.php:96
1080
- msgid "Ticket Name:"
1081
- msgstr "Nome do Bilhete:"
1082
-
1083
- #: ../admin-views/tickets/meta-box.php:103
1084
- msgid "Ticket Description:"
1085
- msgstr "Descrição do Bilhete:"
1086
-
1087
- #: ../admin-views/tickets/meta-box.php:112
1088
- msgid "Price:"
1089
- msgstr "Preço:"
1090
-
1091
- #: ../admin-views/tickets/meta-box.php:124
1092
- msgid "Start sale:"
1093
- msgstr "Início das vendas:"
1094
-
1095
- #: ../admin-views/tickets/meta-box.php:148
1096
- msgid "End sale:"
1097
- msgstr "Término das vendas:"
1098
-
1099
- #: ../admin-views/tickets/meta-box.php:170
1100
- msgid ""
1101
- "When will ticket sales occur? If you don't set a start/end date for sales, "
1102
- "tickets will be available from now until the event ends."
1103
- msgstr ""
1104
- "Quando ocorrerá a venda de bilhetes? Se você não determinar uma data para "
1105
- "início e fim das vendas, os bilhetes ficarão disponíveis de agora até o fim "
1106
- "do evento."
1107
-
1108
- #: ../lib/the-events-calendar.class.php:491
1109
- msgid "month"
1110
- msgstr "mês"
1111
-
1112
- #: ../lib/the-events-calendar.class.php:492
1113
- msgid "upcoming"
1114
- msgstr "próximo"
1115
-
1116
- #: ../lib/the-events-calendar.class.php:493
1117
- msgid "past"
1118
- msgstr "último"
1119
-
1120
- #: ../lib/the-events-calendar.class.php:495
1121
- msgid "venue"
1122
- msgstr "local"
1123
-
1124
- #: ../lib/the-events-calendar.class.php:509
1125
- #, php-format
1126
- msgid "Initializing Tribe Events on %s"
1127
- msgstr "Inicilizando Tribe Events em %s"
1128
-
1129
- #: ../lib/the-events-calendar.class.php:622
1130
- #, php-format
1131
- msgid ""
1132
- "Your version of The Events Calendar is not up-to-date with one of your The "
1133
- "Events Calendar add-ons. Please %supdate now.%s"
1134
- msgstr ""
1135
- "Sua versão do The Events Calendar não está atualizada com os nossos Add-On "
1136
- "do The Events Calendar. Por favor, %satualize agora.%s"
1137
-
1138
- #: ../lib/the-events-calendar.class.php:639
1139
- #, fuzzy, php-format
1140
- msgid ""
1141
- "The following plugins are out of date: <b>%s</b>. All add-ons contain "
1142
- "dependencies on The Events Calendar and will not function properly unless "
1143
- "paired with the right version. %sWant to pair an older version%s?"
1144
- msgstr ""
1145
- "Os seguintes plugins estão desatualizados: <b>%s</b>. Por favor %satualize "
1146
- "agora%s. Todos os add-ons dependem do The Events Calendar e não irão "
1147
- "funcionar corretamente a menos que estejam alinhados com a versão correta. "
1148
- "%sQuer alinhar com uma versão mais antiga%s?"
1149
-
1150
- #: ../lib/the-events-calendar.class.php:703
1151
- #: ../lib/the-events-calendar.class.php:738
1152
- #: ../lib/the-events-calendar.class.php:740
1153
  msgid "Licenses"
1154
  msgstr "Licenças"
1155
 
1156
- #: ../lib/the-events-calendar.class.php:707
1157
  #, php-format
1158
  msgid ""
1159
- "<p>The license key you received when completing your purchase from %s will "
1160
- "grant you access to support and updates until it expires. You do not need to "
1161
- "enter the key below for the plugins to work, but you will need to enter it "
1162
- "to get automatic updates. <strong>Find your license keys at <a href=\"%s\" "
1163
- "target=\"_blank\">%s</a></strong>.</p> <p>Each paid add-on has its own "
1164
- "unique license key. Simply paste the key into its appropriate field on "
1165
- "below, and give it a moment to validate. You know you're set when a green "
1166
- "expiration date appears alongside a \"valid\" message.</p> <p>If you're "
1167
- "seeing a red message telling you that your key isn't valid or is out of "
1168
- "installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your "
1169
- "installs or renew / upgrade your license.</p><p>Not seeing an update but "
1170
- "expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> "
1171
- "and click \"Check Again\".</p>"
1172
  msgstr ""
1173
- "<p> A chave de licença que você recebeu quando fez sua compra em %s irá "
1174
- "conceder-lhe o acesso ao suporte e atualizações até que ela expire. Você não "
1175
- "precisa digitar a chave abaixo para que os plugins funcionem, mas irá "
1176
- "precisar digitá-la para obter atualizações automáticas. <strong>Encontre "
1177
  "suas chaves de licença em <a href=\"%s\">%s </a> </strong>. </p> Cada add-on "
1178
  "pago tem a sua própria chave de licença única. Basta colar a chave em seu "
1179
  "campo apropriado abaixo e esperar um momento para validar. Você saberá se "
1180
  "estiver tudo OK quando a data de validade verde aparecer ao lado do termo "
1181
- "\"válido \". </p> Se você está vendo uma mensagem em vermelho dizendo que "
1182
- "sua chave não é válida ou está fora da instalação , visite <a href=\"%s\" "
1183
- "target=\"_blank\">%s</a> para gerenciar suas instalações ou renovar / "
1184
- "atualizar sua licença. </p> Não está vendo uma atualização, mas está "
1185
- "esperando por uma? No WordPress, vá para <a href=\"%s\"> Painel> "
1186
- "Atualizações </ a> e clique em \"Verificar Novamente \". </p>"
1187
-
1188
- #: ../lib/the-events-calendar.class.php:730
1189
  msgid "General"
1190
  msgstr "Geral"
1191
 
1192
  #
1193
- #: ../lib/the-events-calendar.class.php:731
1194
  msgid "Display"
1195
  msgstr "Exibir"
1196
 
1197
- #: ../lib/the-events-calendar.class.php:782
1198
  #, php-format
1199
  msgid ""
1200
  "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
@@ -1203,7 +1179,7 @@ msgstr ""
1203
  "Desculpe, o The Events Calendar exige WordPress %s ou superior. Por favor, "
1204
  "atualize sua versão do WordPress."
1205
 
1206
- #: ../lib/the-events-calendar.class.php:785
1207
  #, php-format
1208
  msgid ""
1209
  "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
@@ -1212,247 +1188,247 @@ msgstr ""
1212
  "Desculpe, o The Events Calendar exige PHP %s ou superior. Converse com seu "
1213
  "provedor sobre a mudança para uma versão mais recente de PHP."
1214
 
1215
- #: ../lib/the-events-calendar.class.php:1000 ../lib/widget-list.class.php:151
1216
- #: ../public/template-tags/loop.php:137
1217
  msgid "Upcoming Events"
1218
  msgstr "Próximos eventos"
1219
 
1220
- #: ../lib/the-events-calendar.class.php:1003
1221
- #: ../public/template-tags/loop.php:165
1222
  msgid "Past Events"
1223
  msgstr "Eventos Passados"
1224
 
1225
- #: ../lib/the-events-calendar.class.php:1008
1226
- #: ../lib/the-events-calendar.class.php:1015
1227
  #, php-format
1228
  msgid "Events for %s"
1229
  msgstr "Eventos para %s"
1230
 
1231
- #: ../lib/the-events-calendar.class.php:1010
1232
  msgid "Events this month"
1233
  msgstr "Eventos este mês"
1234
 
1235
- #: ../lib/the-events-calendar.class.php:1022
1236
  #, php-format
1237
  msgid "Events at %s"
1238
  msgstr "Eventos em %s"
1239
 
1240
- #: ../lib/the-events-calendar.class.php:1041
1241
  msgid "No description has been entered for this event."
1242
  msgstr "Nenhuma descrição foi adicionada para este evento."
1243
 
1244
- #: ../lib/the-events-calendar.class.php:1303
1245
  msgid "category"
1246
  msgstr "categoria"
1247
 
1248
- #: ../lib/the-events-calendar.class.php:1313
1249
  msgid "tag"
1250
  msgstr "tag"
1251
 
1252
- #: ../lib/the-events-calendar.class.php:1340
1253
- #: ../lib/the-events-calendar.class.php:3820
1254
- #: ../lib/the-events-calendar.class.php:3880
1255
  msgid "Events"
1256
  msgstr "Eventos"
1257
 
1258
- #: ../lib/the-events-calendar.class.php:1341
1259
  msgid "Event"
1260
  msgstr "Evento"
1261
 
1262
- #: ../lib/the-events-calendar.class.php:1342
1263
- #: ../lib/the-events-calendar.class.php:1355
1264
- #: ../lib/the-events-calendar.class.php:1368
1265
  msgid "Add New"
1266
  msgstr "Adicionar Novo"
1267
 
1268
- #: ../lib/the-events-calendar.class.php:1343
1269
  msgid "Add New Event"
1270
  msgstr "Adicionar evento"
1271
 
1272
- #: ../lib/the-events-calendar.class.php:1344
1273
  msgid "Edit Event"
1274
  msgstr "Editar evento"
1275
 
1276
- #: ../lib/the-events-calendar.class.php:1345
1277
  msgid "New Event"
1278
  msgstr "Novo evento"
1279
 
1280
- #: ../lib/the-events-calendar.class.php:1346
1281
  msgid "View Event"
1282
  msgstr "Visualizar evento"
1283
 
1284
- #: ../lib/the-events-calendar.class.php:1347
1285
  msgid "Search Events"
1286
  msgstr "Procurar Eventos"
1287
 
1288
- #: ../lib/the-events-calendar.class.php:1348
1289
  msgid "No events found"
1290
  msgstr "Nenhum evento encontrado"
1291
 
1292
- #: ../lib/the-events-calendar.class.php:1349
1293
  msgid "No events found in Trash"
1294
  msgstr "Nenhum evento encontrado na Lixeira"
1295
 
1296
- #: ../lib/the-events-calendar.class.php:1353
1297
- #: ../lib/the-events-calendar.class.php:1465
1298
  msgid "Venues"
1299
  msgstr "Locais"
1300
 
1301
- #: ../lib/the-events-calendar.class.php:1354
1302
- #: ../public/advanced-functions/meta.php:331 ../views/tickets/email.php:343
1303
  msgid "Venue"
1304
  msgstr "Local"
1305
 
1306
- #: ../lib/the-events-calendar.class.php:1356
1307
  msgid "Add New Venue"
1308
  msgstr "Adicionar novo Local"
1309
 
1310
- #: ../lib/the-events-calendar.class.php:1357
1311
  msgid "Edit Venue"
1312
  msgstr "Editar Local"
1313
 
1314
- #: ../lib/the-events-calendar.class.php:1358
1315
  msgid "New Venue"
1316
  msgstr "Novo Local"
1317
 
1318
- #: ../lib/the-events-calendar.class.php:1359
1319
  msgid "View Venue"
1320
  msgstr "Ver Local"
1321
 
1322
- #: ../lib/the-events-calendar.class.php:1360
1323
  msgid "Search Venues"
1324
  msgstr "Procurar Locais"
1325
 
1326
- #: ../lib/the-events-calendar.class.php:1361
1327
  msgid "No venue found"
1328
  msgstr "Nenhum local encontrado"
1329
 
1330
- #: ../lib/the-events-calendar.class.php:1362
1331
  msgid "No venues found in Trash"
1332
  msgstr "Nenhum local encontrado na Lixeira"
1333
 
1334
- #: ../lib/the-events-calendar.class.php:1366
1335
- #: ../lib/the-events-calendar.class.php:1466
1336
  msgid "Organizers"
1337
  msgstr "Organizadores"
1338
 
1339
- #: ../lib/the-events-calendar.class.php:1367
1340
- #: ../public/advanced-functions/meta.php:393 ../views/tickets/email.php:362
1341
  msgid "Organizer"
1342
  msgstr "Orgazanidor"
1343
 
1344
- #: ../lib/the-events-calendar.class.php:1369
1345
  msgid "Add New Organizer"
1346
  msgstr "Adicionar novo Organizador"
1347
 
1348
- #: ../lib/the-events-calendar.class.php:1370
1349
  msgid "Edit Organizer"
1350
  msgstr "Editar Organizador"
1351
 
1352
- #: ../lib/the-events-calendar.class.php:1371
1353
  msgid "New Organizer"
1354
  msgstr "Novo Organizador"
1355
 
1356
  #
1357
- #: ../lib/the-events-calendar.class.php:1372
1358
  msgid "View Organizer"
1359
  msgstr "Ver organizador"
1360
 
1361
- #: ../lib/the-events-calendar.class.php:1373
1362
  msgid "Search Organizers"
1363
  msgstr "Procurar Organizadores"
1364
 
1365
- #: ../lib/the-events-calendar.class.php:1374
1366
  msgid "No organizer found"
1367
  msgstr "Nenhum organizador encontrardo"
1368
 
1369
- #: ../lib/the-events-calendar.class.php:1375
1370
  msgid "No organizers found in Trash"
1371
  msgstr "Nenhum organizador encontrado na Lixeira"
1372
 
1373
- #: ../lib/the-events-calendar.class.php:1379
1374
- #: ../lib/tribe-admin-events-list.class.php:217
1375
  msgid "Event Categories"
1376
  msgstr "Categorias de Evento"
1377
 
1378
- #: ../lib/the-events-calendar.class.php:1380
1379
- #: ../public/template-tags/general.php:276
1380
  msgid "Event Category"
1381
  msgstr "Categoria de Evento"
1382
 
1383
- #: ../lib/the-events-calendar.class.php:1381
1384
  msgid "Search Event Categories"
1385
  msgstr "Procurar nas Categorias de Evento"
1386
 
1387
- #: ../lib/the-events-calendar.class.php:1382
1388
  msgid "All Event Categories"
1389
  msgstr "Todas as Categorias de Evento"
1390
 
1391
- #: ../lib/the-events-calendar.class.php:1383
1392
  msgid "Parent Event Category"
1393
  msgstr "Categorias-Mãe de Eventos"
1394
 
1395
- #: ../lib/the-events-calendar.class.php:1384
1396
  msgid "Parent Event Category:"
1397
  msgstr "Categoria-Mãe do Evento:"
1398
 
1399
- #: ../lib/the-events-calendar.class.php:1385
1400
  msgid "Edit Event Category"
1401
  msgstr "Editar Categoria de Evento"
1402
 
1403
- #: ../lib/the-events-calendar.class.php:1386
1404
  msgid "Update Event Category"
1405
  msgstr "Atualizar Categoria de Evento"
1406
 
1407
- #: ../lib/the-events-calendar.class.php:1387
1408
  msgid "Add New Event Category"
1409
  msgstr "Adicionar Nova Categoria de Evento"
1410
 
1411
- #: ../lib/the-events-calendar.class.php:1388
1412
  msgid "New Event Category Name"
1413
  msgstr "Nome da Nova Categoria de Evento"
1414
 
1415
- #: ../lib/the-events-calendar.class.php:1404
1416
  #, php-format
1417
  msgid "Event updated. <a href=\"%s\">View event</a>"
1418
  msgstr "Evento atualizado. <a href=\"%s\">Ver evento</a>"
1419
 
1420
- #: ../lib/the-events-calendar.class.php:1405
1421
- #: ../lib/the-events-calendar.class.php:1422
1422
- #: ../lib/the-events-calendar.class.php:1439
1423
  msgid "Custom field updated."
1424
  msgstr "Campo Personalizado atualizado."
1425
 
1426
- #: ../lib/the-events-calendar.class.php:1406
1427
- #: ../lib/the-events-calendar.class.php:1423
1428
- #: ../lib/the-events-calendar.class.php:1440
1429
  msgid "Custom field deleted."
1430
  msgstr "Campo personalizado apagado."
1431
 
1432
- #: ../lib/the-events-calendar.class.php:1407
1433
  msgid "Event updated."
1434
  msgstr "Evento atualizado."
1435
 
1436
- #: ../lib/the-events-calendar.class.php:1409
1437
  #, php-format
1438
  msgid "Event restored to revision from %s"
1439
  msgstr "Evento restaurado para revisão de %s"
1440
 
1441
- #: ../lib/the-events-calendar.class.php:1410
1442
  #, php-format
1443
  msgid "Event published. <a href=\"%s\">View event</a>"
1444
  msgstr "Evento publicado. <a href=\"%s\">Ver evento</a>"
1445
 
1446
- #: ../lib/the-events-calendar.class.php:1411
1447
  msgid "Event saved."
1448
  msgstr "Evento salvo."
1449
 
1450
- #: ../lib/the-events-calendar.class.php:1412
1451
  #, php-format
1452
  msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1453
  msgstr "Evento enviado. <a target=\"_blank\" href=\"%s\">Ver evento</a>"
1454
 
1455
- #: ../lib/the-events-calendar.class.php:1413
1456
  #, php-format
1457
  msgid ""
1458
  "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
@@ -1461,47 +1437,47 @@ msgstr ""
1461
  "Evento agendado por: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1462
  "\">Ver Evento</a>"
1463
 
1464
- #: ../lib/the-events-calendar.class.php:1415
1465
- #: ../lib/the-events-calendar.class.php:1432
1466
- #: ../lib/the-events-calendar.class.php:1449
1467
  msgid "M j, Y @ G:i"
1468
  msgstr "M j, Y @ G:i"
1469
 
1470
- #: ../lib/the-events-calendar.class.php:1416
1471
  #, php-format
1472
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1473
  msgstr ""
1474
  "Rascunho do evento atualizado.<a target=\"_blank\" href=\"%s\">Ver evento</a>"
1475
 
1476
- #: ../lib/the-events-calendar.class.php:1421
1477
  #, php-format
1478
  msgid "Venue updated. <a href=\"%s\">View venue</a>"
1479
  msgstr "Local atualizado. <a href=\"%s\">Ver local</a>"
1480
 
1481
- #: ../lib/the-events-calendar.class.php:1424
1482
  msgid "Venue updated."
1483
  msgstr "Local atualizado."
1484
 
1485
- #: ../lib/the-events-calendar.class.php:1426
1486
  #, php-format
1487
  msgid "Venue restored to revision from %s"
1488
  msgstr "Local restaurado para revisão de %s"
1489
 
1490
- #: ../lib/the-events-calendar.class.php:1427
1491
  #, php-format
1492
  msgid "Venue published. <a href=\"%s\">View venue</a>"
1493
  msgstr "Local publicado. <a href=\"%s\">Ver local</a>"
1494
 
1495
- #: ../lib/the-events-calendar.class.php:1428
1496
  msgid "Venue saved."
1497
  msgstr "Local salvo."
1498
 
1499
- #: ../lib/the-events-calendar.class.php:1429
1500
  #, php-format
1501
  msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1502
  msgstr "Local submetido. <a target=\"_blank\" href=\"%s\">Ver local</a>"
1503
 
1504
- #: ../lib/the-events-calendar.class.php:1430
1505
  #, php-format
1506
  msgid ""
1507
  "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
@@ -1510,43 +1486,43 @@ msgstr ""
1510
  "Local agendado por: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1511
  "\">Ver local</a>"
1512
 
1513
- #: ../lib/the-events-calendar.class.php:1433
1514
  #, php-format
1515
  msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1516
  msgstr ""
1517
  "Rascunho de Local atualizado. <a target=\"_blank\" href=\"%s\">Ver local</a>"
1518
 
1519
- #: ../lib/the-events-calendar.class.php:1438
1520
  #, php-format
1521
  msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1522
  msgstr "Organizador atualizado. <a href=\"%s\">Ver organizador</a>"
1523
 
1524
- #: ../lib/the-events-calendar.class.php:1441
1525
  msgid "Organizer updated."
1526
  msgstr "Organizador atualizado."
1527
 
1528
- #: ../lib/the-events-calendar.class.php:1443
1529
  #, php-format
1530
  msgid "Organizer restored to revision from %s"
1531
  msgstr "Organizador restaurado para revisão de %s"
1532
 
1533
- #: ../lib/the-events-calendar.class.php:1444
1534
  #, php-format
1535
  msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1536
  msgstr "Organizdor publicado. <a href=\"%s\">Ver organizador</a>"
1537
 
1538
- #: ../lib/the-events-calendar.class.php:1445
1539
  msgid "Organizer saved."
1540
  msgstr "Organizador salvo."
1541
 
1542
- #: ../lib/the-events-calendar.class.php:1446
1543
  #, php-format
1544
  msgid ""
1545
  "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1546
  msgstr ""
1547
  "Organizador submetido. <a target=\"_blank\" href=\"%s\">Ver organizador</a>"
1548
 
1549
- #: ../lib/the-events-calendar.class.php:1447
1550
  #, php-format
1551
  msgid ""
1552
  "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
@@ -1555,7 +1531,7 @@ msgstr ""
1555
  "Organizador agendado por: <strong>%1$s</strong>. <a target=\"_blank\" href="
1556
  "\"%2$s\">Ver organizador</a>"
1557
 
1558
- #: ../lib/the-events-calendar.class.php:1450
1559
  #, php-format
1560
  msgid ""
1561
  "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
@@ -1564,110 +1540,110 @@ msgstr ""
1564
  "Rascunho de organizador atualizado.<a target=\"_blank\" href=\"%s\">Ver "
1565
  "organizador</a>"
1566
 
1567
- #: ../lib/the-events-calendar.class.php:1491
1568
  msgid "Use Saved Venue:"
1569
  msgstr "Usar local já cadastrado:"
1570
 
1571
- #: ../lib/the-events-calendar.class.php:1520
1572
  msgid "Use Saved Organizer:"
1573
  msgstr "Usar organizador já cadastrado:"
1574
 
1575
  #
1576
- #: ../lib/the-events-calendar.class.php:1556
1577
  msgid "Use New Venue"
1578
  msgstr "Usar novo local"
1579
 
1580
  #
1581
- #: ../lib/the-events-calendar.class.php:1558
1582
  msgid "My Venues"
1583
  msgstr "Meus locais"
1584
 
1585
- #: ../lib/the-events-calendar.class.php:1563
1586
  msgid "Available Venues"
1587
  msgstr "Locais disponíveis"
1588
 
1589
  #
1590
- #: ../lib/the-events-calendar.class.php:1574
1591
  msgid "No saved venue exists."
1592
  msgstr "Nenhum local gravado."
1593
 
1594
  #
1595
- #: ../lib/the-events-calendar.class.php:1608
1596
  msgid "Use New Organizer"
1597
  msgstr "Usar novo organizador"
1598
 
1599
- #: ../lib/the-events-calendar.class.php:1610
1600
  msgid "My Organizers"
1601
  msgstr "Organizadores"
1602
 
1603
- #: ../lib/the-events-calendar.class.php:1615
1604
  msgid "Available Organizers"
1605
  msgstr "Organizadores"
1606
 
1607
  #
1608
- #: ../lib/the-events-calendar.class.php:1626
1609
  msgid "No saved organizer exists."
1610
  msgstr "Nenhum organizador gravado."
1611
 
1612
- #: ../lib/the-events-calendar.class.php:1753
1613
  msgid "Next"
1614
  msgstr "Próximo"
1615
 
1616
- #: ../lib/the-events-calendar.class.php:1754
1617
  msgid "Prev"
1618
  msgstr "Anterior"
1619
 
1620
- #: ../lib/the-events-calendar.class.php:1755
1621
  msgid "Today"
1622
  msgstr "Hoje"
1623
 
1624
- #: ../lib/the-events-calendar.class.php:1756
1625
  msgid "Done"
1626
  msgstr "Feito"
1627
 
1628
- #: ../lib/the-events-calendar.class.php:1965
1629
  msgid "Network"
1630
  msgstr "Rede"
1631
 
1632
  #
1633
- #: ../lib/the-events-calendar.class.php:2902
1634
  msgid "Unnamed Venue"
1635
  msgstr "Local sem nome"
1636
 
1637
  #
1638
- #: ../lib/the-events-calendar.class.php:2992
1639
  msgid "Unnamed Organizer"
1640
  msgstr "Organizador sem nome"
1641
 
1642
- #: ../lib/the-events-calendar.class.php:3467
1643
  msgid "Event Options"
1644
  msgstr "Opções de Evento"
1645
 
1646
- #: ../lib/the-events-calendar.class.php:3469
1647
  msgid "Venue Information"
1648
  msgstr "Informações do Local"
1649
 
1650
- #: ../lib/the-events-calendar.class.php:3474
1651
  msgid "Organizer Information"
1652
  msgstr "Informações do Organizador"
1653
 
1654
- #: ../lib/the-events-calendar.class.php:3669
1655
  msgid "Support"
1656
  msgstr "Suporte"
1657
 
1658
- #: ../lib/the-events-calendar.class.php:3672
1659
  msgid "View All Add-Ons"
1660
  msgstr "Ver todos os Add-Ons"
1661
 
1662
- #: ../lib/the-events-calendar.class.php:3689
1663
  msgid "News from Modern Tribe"
1664
  msgstr "Notícias da Modern Tribe"
1665
 
1666
- #: ../lib/the-events-calendar.class.php:3770
1667
  msgid "Additional Functionality"
1668
  msgstr "Funcionalidade Adicional"
1669
 
1670
- #: ../lib/the-events-calendar.class.php:3775
1671
  msgid ""
1672
  "Looking for additional functionality including recurring events, ticket "
1673
  "sales, publicly submitted events, new views and more?"
@@ -1675,31 +1651,31 @@ msgstr ""
1675
  "Precisa de funcionalidades adicionais, como eventos recorrentes, venda de "
1676
  "ingressos, eventos públicos, novos pontos de vista e mais?"
1677
 
1678
- #: ../lib/the-events-calendar.class.php:3775
1679
  #, php-format
1680
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
1681
  msgstr "Confira os <a href=\"%s\">add-ons disponíveis</a>."
1682
 
1683
- #: ../lib/the-events-calendar.class.php:3846
1684
- #: ../lib/the-events-calendar.class.php:3937
1685
  msgid "View Calendar"
1686
  msgstr "Ver Calendário"
1687
 
1688
- #: ../lib/the-events-calendar.class.php:3854
1689
  msgid "Add Event"
1690
  msgstr "Adicionar Evento"
1691
 
1692
- #: ../lib/the-events-calendar.class.php:3863
1693
  msgid "Edit Events"
1694
  msgstr "Editar Eventos"
1695
 
1696
- #: ../lib/the-events-calendar.class.php:3872
1697
- #: ../lib/the-events-calendar.class.php:3973
1698
  #: ../lib/tribe-settings.class.php:164
1699
  msgid "Settings"
1700
  msgstr "Configurações"
1701
 
1702
- #: ../lib/the-events-calendar.class.php:3908
1703
  #, php-format
1704
  msgid ""
1705
  "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
@@ -1709,86 +1685,86 @@ msgstr ""
1709
  "encontrado em %s. Para mudar a slug dos eventos, visite %sEventos -> "
1710
  "Configurações%s."
1711
 
1712
- #: ../lib/the-events-calendar.class.php:3974
1713
  msgid "Calendar"
1714
  msgstr "Calendário"
1715
 
1716
- #: ../lib/the-events-calendar.class.php:4037
1717
  msgid "List"
1718
  msgstr "Lista"
1719
 
1720
  #
1721
- #: ../lib/the-events-calendar.class.php:4048
1722
  msgid "Month"
1723
  msgstr "Mês"
1724
 
1725
  #
1726
- #: ../lib/the-events-calendar.class.php:4088
1727
  msgid "Date"
1728
  msgstr "Data"
1729
 
1730
  #
1731
- #: ../lib/the-events-calendar.class.php:4091
1732
  msgid "Events In"
1733
  msgstr "Eventos em"
1734
 
1735
  #
1736
- #: ../lib/the-events-calendar.class.php:4093
1737
  msgid "Events From"
1738
  msgstr "Eventos de"
1739
 
1740
- #: ../lib/the-events-calendar.class.php:4276 ../views/list/nav.php:22
1741
- #: ../views/list/nav.php:28 ../views/list/nav.php:31
1742
  msgid "&laquo; Previous Events"
1743
  msgstr "&laquo; eventos anteriores"
1744
 
1745
- #: ../lib/the-events-calendar.class.php:4277 ../views/list/nav.php:40
1746
- #: ../views/list/nav.php:43 ../views/list/nav.php:49
1747
  msgid "Next Events &raquo;"
1748
  msgstr "Próximos eventos &raquo;"
1749
 
1750
- #: ../lib/tribe-admin-events-list.class.php:53
1751
  #, php-format
1752
  msgid "View &#8220;%s&#8221;"
1753
  msgstr "Veja &#8220;%s&#8221;"
1754
 
1755
- #: ../lib/tribe-admin-events-list.class.php:222
1756
  msgid "Start Date"
1757
  msgstr "Data de ínício"
1758
 
1759
- #: ../lib/tribe-admin-events-list.class.php:223
1760
  msgid "End Date"
1761
  msgstr "Data de término"
1762
 
1763
- #: ../lib/tribe-admin-events-list.class.php:225
1764
  msgid "Recurring?"
1765
  msgstr "Periodicidade?"
1766
 
1767
- #: ../lib/tribe-admin-events-list.class.php:282
1768
  #: ../lib/tickets/tribe-tickets-pro.php:229
1769
  msgid "Yes"
1770
  msgstr "Sim"
1771
 
1772
- #: ../lib/tribe-admin-events-list.class.php:282
1773
  msgid "No"
1774
  msgstr "Não"
1775
 
1776
- #: ../lib/tribe-admin-events-list.class.php:360
1777
  #, php-format
1778
  msgid "All %s"
1779
  msgstr "Todos %s"
1780
 
1781
- #: ../lib/tribe-app-shop.class.php:62 ../lib/tribe-app-shop.class.php:63
1782
- #: ../lib/tribe-app-shop.class.php:84
1783
  msgid "Event Add-Ons"
1784
  msgstr "Add-Ons do Evento"
1785
 
1786
- #: ../lib/tribe-debug-bar.class.php:29
1787
  msgid "Tribe"
1788
  msgstr "Tribe"
1789
 
1790
- #: ../lib/tribe-event-api.class.php:372 ../lib/tribe-view-helpers.class.php:44
1791
- #: ../public/template-tags/venue.php:240
1792
  msgid "United States"
1793
  msgstr "Estados Unidos"
1794
 
@@ -1797,23 +1773,23 @@ msgstr "Estados Unidos"
1797
  msgid "Error"
1798
  msgstr "Erro"
1799
 
1800
- #: ../lib/tribe-field.class.php:161
1801
  msgid "Invalid field type specified"
1802
  msgstr "Tipo de campo especificado inválido"
1803
 
1804
- #: ../lib/tribe-field.class.php:414
1805
  msgid "No radio options specified"
1806
  msgstr "Nenhuma opção de rádio especificada"
1807
 
1808
- #: ../lib/tribe-field.class.php:451
1809
  msgid "No checkbox options specified"
1810
  msgstr "Nenhuma opção de checkbox especificada"
1811
 
1812
- #: ../lib/tribe-field.class.php:505
1813
  msgid "No select options specified"
1814
  msgstr "Nenhuma opção de seleção especificada"
1815
 
1816
- #: ../lib/tribe-settings-tab.class.php:219
1817
  msgid "There are no fields setup for this tab yet."
1818
  msgstr "Não há configurações de campos para esta aba ainda."
1819
 
@@ -1875,12 +1851,12 @@ msgstr[1] ""
1875
  msgid "Settings saved."
1876
  msgstr "Configurações salvas."
1877
 
1878
- #: ../lib/tribe-template-factory.class.php:225
1879
  #, php-format
1880
  msgid "There were no results found for <strong>\"%s\"</strong>."
1881
  msgstr "Sem resultados para <strong>\"%s\"</strong>."
1882
 
1883
- #: ../lib/tribe-template-factory.class.php:235
1884
  #, php-format
1885
  msgid ""
1886
  "listed under %s. Check out past events for this category or view the full "
@@ -1889,7 +1865,7 @@ msgstr ""
1889
  "listado em %s. Confira outros eventos para esta categoria ou veja o "
1890
  "calendário completo."
1891
 
1892
- #: ../lib/tribe-template-factory.class.php:237
1893
  #, php-format
1894
  msgid ""
1895
  "listed under %s. Check out upcoming events for this category or view the "
@@ -1898,67 +1874,66 @@ msgstr ""
1898
  "listado em %s. Confira os próximos eventos desta categoria ou veja o "
1899
  "calendário completo."
1900
 
1901
- #: ../lib/tribe-template-factory.class.php:241
1902
  #, php-format
1903
  msgid "No events scheduled for <strong>%s</strong>. Please try another day."
1904
  msgstr ""
1905
  "Nenhum evento agendado para <strong>%s</strong>. Por favor, tente outra data."
1906
 
1907
  #
1908
- #: ../lib/tribe-template-factory.class.php:245
1909
  msgid "No upcoming events "
1910
  msgstr "Sem nenhum evento agendado."
1911
 
1912
  #
1913
- #: ../lib/tribe-template-factory.class.php:247
1914
  msgid "No matching events "
1915
  msgstr "Eventos não encontrados."
1916
 
1917
  #
1918
- #: ../lib/tribe-template-factory.class.php:250
1919
  msgid "No previous events "
1920
  msgstr "Nenhum evento anterior."
1921
 
1922
- #: ../lib/tribe-the-events-calendar-import.class.php:64
1923
- #, php-format
1924
  msgid ""
1925
  "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure "
1926
- "you have backed up before proceeding any further. You can easily <a href=\"%s"
1927
- "\">revert to an old version</a> if you want to backup first. This upgrade "
1928
- "includes two major steps, <a href=\"%s\">migrating data</a> &amp; updating "
1929
- "your templates as necessary. There have been significant changes to the "
1930
- "template tags and functions. Check out our <a href=\"%s\">walk-through on "
1931
- "the upgrade</a> before proceeding and check out the FAQ &amp; Knowledge base "
1932
- "from the <a href=\"%s\">support page</a>. If you're new to The Events "
1933
- "Calendar, you may want to review our <a href=\"%s\">new user primer</a>.<br/"
1934
- "><br/> You have events that need to be migrated. Please visit the bottom of "
1935
- "the <a href=\"%s\">settings page</a> to perform the migration."
1936
  msgstr ""
1937
-
1938
- #: ../lib/tribe-the-events-calendar-import.class.php:86
 
 
 
 
 
 
1939
  msgid "Upgrade from The Events Calendar"
1940
  msgstr "Atualizar do The Events Calendar"
1941
 
1942
- #: ../lib/tribe-the-events-calendar-import.class.php:87
1943
  msgid ""
1944
  "It appears that you have some old events calendar data that needs to be "
1945
  "upgraded. Please be sure to back up your database before initiating the "
1946
  "upgrade. This process can not be undone."
1947
  msgstr ""
1948
- "Aparentemente você possui informações antigas de calendário que precisam ser "
1949
- "atualizadas. Por favor, faça um backup de sua base de dados antes de iniciar "
1950
- "a atualização. Este processão não pode ser desfeito."
1951
 
1952
- #: ../lib/tribe-the-events-calendar-import.class.php:88
1953
  msgid "Migrate Data!"
1954
  msgstr "Migrar Dados!"
1955
 
1956
- #: ../lib/tribe-the-events-calendar-import.class.php:166
1957
  #, php-format
1958
  msgid "You successfully migrated (%d) entries."
1959
  msgstr "Você migrou com sucesso (%d) entradas."
1960
 
1961
- #: ../lib/tribe-the-events-calendar-import.class.php:242
1962
  msgid "Install has 1 or more legacy event!"
1963
  msgstr "A instalação possui 1 ou mais eventos de legado!"
1964
 
@@ -2069,1186 +2044,1186 @@ msgstr ""
2069
  "A listagem de países deve ser formatada com um país por linha, no seguinte "
2070
  "formato: <br/>US, Estados Unidos <br/> UK, Reino Unido."
2071
 
2072
- #: ../lib/tribe-view-helpers.class.php:24
2073
- #: ../lib/tribe-view-helpers.class.php:43
2074
  msgid "Select a Country:"
2075
  msgstr "Selecione um País:"
2076
 
2077
- #: ../lib/tribe-view-helpers.class.php:45
2078
  msgid "Afghanistan"
2079
  msgstr "Afeganistão"
2080
 
2081
- #: ../lib/tribe-view-helpers.class.php:46
2082
  msgid "Albania"
2083
  msgstr "Albania"
2084
 
2085
- #: ../lib/tribe-view-helpers.class.php:47
2086
  msgid "Algeria"
2087
  msgstr "Algeria"
2088
 
2089
- #: ../lib/tribe-view-helpers.class.php:48
2090
  msgid "American Samoa"
2091
  msgstr "American Samoa"
2092
 
2093
- #: ../lib/tribe-view-helpers.class.php:49
2094
  msgid "Andorra"
2095
  msgstr "Andorra"
2096
 
2097
- #: ../lib/tribe-view-helpers.class.php:50
2098
  msgid "Angola"
2099
  msgstr "Angola"
2100
 
2101
- #: ../lib/tribe-view-helpers.class.php:51
2102
  msgid "Anguilla"
2103
  msgstr "Anguilla"
2104
 
2105
- #: ../lib/tribe-view-helpers.class.php:52
2106
  msgid "Antarctica"
2107
  msgstr "Antarctica"
2108
 
2109
- #: ../lib/tribe-view-helpers.class.php:53
2110
  msgid "Antigua And Barbuda"
2111
  msgstr "Antigua And Barbuda"
2112
 
2113
- #: ../lib/tribe-view-helpers.class.php:54
2114
  msgid "Argentina"
2115
  msgstr "Argentina"
2116
 
2117
- #: ../lib/tribe-view-helpers.class.php:55
2118
  msgid "Armenia"
2119
  msgstr "Armenia"
2120
 
2121
- #: ../lib/tribe-view-helpers.class.php:56
2122
  msgid "Aruba"
2123
  msgstr "Aruba"
2124
 
2125
- #: ../lib/tribe-view-helpers.class.php:57
2126
  msgid "Australia"
2127
  msgstr "Australia"
2128
 
2129
- #: ../lib/tribe-view-helpers.class.php:58
2130
  msgid "Austria"
2131
  msgstr "Austria"
2132
 
2133
- #: ../lib/tribe-view-helpers.class.php:59
2134
  msgid "Azerbaijan"
2135
  msgstr "Azerbaijan"
2136
 
2137
- #: ../lib/tribe-view-helpers.class.php:60
2138
  msgid "Bahamas"
2139
  msgstr "Bahamas"
2140
 
2141
- #: ../lib/tribe-view-helpers.class.php:61
2142
  msgid "Bahrain"
2143
  msgstr "Bahrain"
2144
 
2145
- #: ../lib/tribe-view-helpers.class.php:62
2146
  msgid "Bangladesh"
2147
  msgstr "Bangladesh"
2148
 
2149
- #: ../lib/tribe-view-helpers.class.php:63
2150
  msgid "Barbados"
2151
  msgstr "Barbados"
2152
 
2153
- #: ../lib/tribe-view-helpers.class.php:64
2154
  msgid "Belarus"
2155
  msgstr "Belarus"
2156
 
2157
- #: ../lib/tribe-view-helpers.class.php:65
2158
  msgid "Belgium"
2159
  msgstr "Belgium"
2160
 
2161
- #: ../lib/tribe-view-helpers.class.php:66
2162
  msgid "Belize"
2163
  msgstr "Belize"
2164
 
2165
- #: ../lib/tribe-view-helpers.class.php:67
2166
  msgid "Benin"
2167
  msgstr "Benin"
2168
 
2169
- #: ../lib/tribe-view-helpers.class.php:68
2170
  msgid "Bermuda"
2171
  msgstr "Bermuda"
2172
 
2173
- #: ../lib/tribe-view-helpers.class.php:69
2174
  msgid "Bhutan"
2175
  msgstr "Bhutan"
2176
 
2177
- #: ../lib/tribe-view-helpers.class.php:70
2178
  msgid "Bolivia"
2179
  msgstr "Bolivia"
2180
 
2181
- #: ../lib/tribe-view-helpers.class.php:71
2182
  msgid "Bosnia And Herzegowina"
2183
  msgstr "Bosnia And Herzegowina"
2184
 
2185
- #: ../lib/tribe-view-helpers.class.php:72
2186
  msgid "Botswana"
2187
  msgstr "Botswana"
2188
 
2189
- #: ../lib/tribe-view-helpers.class.php:73
2190
  msgid "Bouvet Island"
2191
  msgstr "Bouvet Island"
2192
 
2193
- #: ../lib/tribe-view-helpers.class.php:74
2194
  msgid "Brazil"
2195
  msgstr "Brazil"
2196
 
2197
- #: ../lib/tribe-view-helpers.class.php:75
2198
  msgid "British Indian Ocean Territory"
2199
  msgstr "British Indian Ocean Territory"
2200
 
2201
- #: ../lib/tribe-view-helpers.class.php:76
2202
  msgid "Brunei Darussalam"
2203
  msgstr "Brunei Darussalam"
2204
 
2205
- #: ../lib/tribe-view-helpers.class.php:77
2206
  msgid "Bulgaria"
2207
  msgstr "Bulgaria"
2208
 
2209
- #: ../lib/tribe-view-helpers.class.php:78
2210
  msgid "Burkina Faso"
2211
  msgstr "Burkina Faso"
2212
 
2213
- #: ../lib/tribe-view-helpers.class.php:79
2214
  msgid "Burundi"
2215
  msgstr "Burundi"
2216
 
2217
- #: ../lib/tribe-view-helpers.class.php:80
2218
  msgid "Cambodia"
2219
  msgstr "Cambodia"
2220
 
2221
- #: ../lib/tribe-view-helpers.class.php:81
2222
  msgid "Cameroon"
2223
  msgstr "Cameroon"
2224
 
2225
- #: ../lib/tribe-view-helpers.class.php:82
2226
  msgid "Canada"
2227
  msgstr "Canada"
2228
 
2229
- #: ../lib/tribe-view-helpers.class.php:83
2230
  msgid "Cape Verde"
2231
  msgstr "Cape Verde"
2232
 
2233
- #: ../lib/tribe-view-helpers.class.php:84
2234
  msgid "Cayman Islands"
2235
  msgstr "Cayman Islands"
2236
 
2237
- #: ../lib/tribe-view-helpers.class.php:85
2238
  msgid "Central African Republic"
2239
  msgstr "Central African Republic"
2240
 
2241
- #: ../lib/tribe-view-helpers.class.php:86
2242
  msgid "Chad"
2243
  msgstr "Chad"
2244
 
2245
- #: ../lib/tribe-view-helpers.class.php:87
2246
  msgid "Chile"
2247
  msgstr "Chile"
2248
 
2249
- #: ../lib/tribe-view-helpers.class.php:88
2250
  msgid "China"
2251
  msgstr "China"
2252
 
2253
- #: ../lib/tribe-view-helpers.class.php:89
2254
  msgid "Christmas Island"
2255
  msgstr "Christmas Island"
2256
 
2257
- #: ../lib/tribe-view-helpers.class.php:90
2258
  msgid "Cocos (Keeling) Islands"
2259
  msgstr "Cocos (Keeling) Islands"
2260
 
2261
- #: ../lib/tribe-view-helpers.class.php:91
2262
  msgid "Colombia"
2263
  msgstr "Colombia"
2264
 
2265
- #: ../lib/tribe-view-helpers.class.php:92
2266
  msgid "Comoros"
2267
  msgstr "Comoros"
2268
 
2269
- #: ../lib/tribe-view-helpers.class.php:93
2270
  msgid "Congo"
2271
  msgstr "Congo"
2272
 
2273
- #: ../lib/tribe-view-helpers.class.php:94
2274
  msgid "Congo, The Democratic Republic Of The"
2275
  msgstr "Congo, The Democratic Republic Of The"
2276
 
2277
- #: ../lib/tribe-view-helpers.class.php:95
2278
  msgid "Cook Islands"
2279
  msgstr "Cook Islands"
2280
 
2281
- #: ../lib/tribe-view-helpers.class.php:96
2282
  msgid "Costa Rica"
2283
  msgstr "Costa Rica"
2284
 
2285
- #: ../lib/tribe-view-helpers.class.php:97
2286
  msgid "Cote D'Ivoire"
2287
  msgstr "Cote D'Ivoire"
2288
 
2289
- #: ../lib/tribe-view-helpers.class.php:98
2290
  msgid "Croatia (Local Name: Hrvatska)"
2291
  msgstr "Croatia (Local Name: Hrvatska)"
2292
 
2293
- #: ../lib/tribe-view-helpers.class.php:99
2294
  msgid "Cuba"
2295
  msgstr "Cuba"
2296
 
2297
- #: ../lib/tribe-view-helpers.class.php:100
2298
  msgid "Cyprus"
2299
  msgstr "Cyprus"
2300
 
2301
- #: ../lib/tribe-view-helpers.class.php:101
2302
  msgid "Czech Republic"
2303
  msgstr "Czech Republic"
2304
 
2305
- #: ../lib/tribe-view-helpers.class.php:102
2306
  msgid "Denmark"
2307
  msgstr "Denmark"
2308
 
2309
- #: ../lib/tribe-view-helpers.class.php:103
2310
  msgid "Djibouti"
2311
  msgstr "Djibouti"
2312
 
2313
- #: ../lib/tribe-view-helpers.class.php:104
2314
  msgid "Dominica"
2315
  msgstr "Dominica"
2316
 
2317
- #: ../lib/tribe-view-helpers.class.php:105
2318
  msgid "Dominican Republic"
2319
  msgstr "Dominican Republic"
2320
 
2321
- #: ../lib/tribe-view-helpers.class.php:106
2322
  msgid "East Timor"
2323
  msgstr "East Timor"
2324
 
2325
- #: ../lib/tribe-view-helpers.class.php:107
2326
  msgid "Ecuador"
2327
  msgstr "Ecuador"
2328
 
2329
- #: ../lib/tribe-view-helpers.class.php:108
2330
  msgid "Egypt"
2331
  msgstr "Egypt"
2332
 
2333
- #: ../lib/tribe-view-helpers.class.php:109
2334
  msgid "El Salvador"
2335
  msgstr "El Salvador"
2336
 
2337
- #: ../lib/tribe-view-helpers.class.php:110
2338
  msgid "Equatorial Guinea"
2339
  msgstr "Equatorial Guinea"
2340
 
2341
- #: ../lib/tribe-view-helpers.class.php:111
2342
  msgid "Eritrea"
2343
  msgstr "Eritrea"
2344
 
2345
- #: ../lib/tribe-view-helpers.class.php:112
2346
  msgid "Estonia"
2347
  msgstr "Estonia"
2348
 
2349
- #: ../lib/tribe-view-helpers.class.php:113
2350
  msgid "Ethiopia"
2351
  msgstr "Ethiopia"
2352
 
2353
- #: ../lib/tribe-view-helpers.class.php:114
2354
  msgid "Falkland Islands (Malvinas)"
2355
  msgstr "Falkland Islands (Malvinas)"
2356
 
2357
- #: ../lib/tribe-view-helpers.class.php:115
2358
  msgid "Faroe Islands"
2359
  msgstr "Faroe Islands"
2360
 
2361
- #: ../lib/tribe-view-helpers.class.php:116
2362
  msgid "Fiji"
2363
  msgstr "Fiji"
2364
 
2365
- #: ../lib/tribe-view-helpers.class.php:117
2366
  msgid "Finland"
2367
  msgstr "Finland"
2368
 
2369
- #: ../lib/tribe-view-helpers.class.php:118
2370
  msgid "France"
2371
  msgstr "France"
2372
 
2373
- #: ../lib/tribe-view-helpers.class.php:119
2374
  msgid "France, Metropolitan"
2375
  msgstr "France, Metropolitan"
2376
 
2377
- #: ../lib/tribe-view-helpers.class.php:120
2378
  msgid "French Guiana"
2379
  msgstr "French Guiana"
2380
 
2381
- #: ../lib/tribe-view-helpers.class.php:121
2382
  msgid "French Polynesia"
2383
  msgstr "French Polynesia"
2384
 
2385
- #: ../lib/tribe-view-helpers.class.php:122
2386
  msgid "French Southern Territories"
2387
  msgstr "French Southern Territories"
2388
 
2389
- #: ../lib/tribe-view-helpers.class.php:123
2390
  msgid "Gabon"
2391
  msgstr "Gabon"
2392
 
2393
- #: ../lib/tribe-view-helpers.class.php:124
2394
  msgid "Gambia"
2395
  msgstr "Gambia"
2396
 
2397
- #: ../lib/tribe-view-helpers.class.php:125
2398
- #: ../lib/tribe-view-helpers.class.php:318
2399
  msgid "Georgia"
2400
  msgstr "Georgia"
2401
 
2402
- #: ../lib/tribe-view-helpers.class.php:126
2403
  msgid "Germany"
2404
  msgstr "Germany"
2405
 
2406
- #: ../lib/tribe-view-helpers.class.php:127
2407
  msgid "Ghana"
2408
  msgstr "Ghana"
2409
 
2410
- #: ../lib/tribe-view-helpers.class.php:128
2411
  msgid "Gibraltar"
2412
  msgstr "Gibraltar"
2413
 
2414
- #: ../lib/tribe-view-helpers.class.php:129
2415
  msgid "Greece"
2416
  msgstr "Greece"
2417
 
2418
- #: ../lib/tribe-view-helpers.class.php:130
2419
  msgid "Greenland"
2420
  msgstr "Greenland"
2421
 
2422
- #: ../lib/tribe-view-helpers.class.php:131
2423
  msgid "Grenada"
2424
  msgstr "Grenada"
2425
 
2426
- #: ../lib/tribe-view-helpers.class.php:132
2427
  msgid "Guadeloupe"
2428
  msgstr "Guadeloupe"
2429
 
2430
- #: ../lib/tribe-view-helpers.class.php:133
2431
  msgid "Guam"
2432
  msgstr "Guam"
2433
 
2434
- #: ../lib/tribe-view-helpers.class.php:134
2435
  msgid "Guatemala"
2436
  msgstr "Guatemala"
2437
 
2438
- #: ../lib/tribe-view-helpers.class.php:135
2439
  msgid "Guinea"
2440
  msgstr "Guinea"
2441
 
2442
- #: ../lib/tribe-view-helpers.class.php:136
2443
  msgid "Guinea-Bissau"
2444
  msgstr "Guinea-Bissau"
2445
 
2446
- #: ../lib/tribe-view-helpers.class.php:137
2447
  msgid "Guyana"
2448
  msgstr "Guyana"
2449
 
2450
- #: ../lib/tribe-view-helpers.class.php:138
2451
  msgid "Haiti"
2452
  msgstr "Haiti"
2453
 
2454
- #: ../lib/tribe-view-helpers.class.php:139
2455
  msgid "Heard And Mc Donald Islands"
2456
  msgstr "Heard And Mc Donald Islands"
2457
 
2458
- #: ../lib/tribe-view-helpers.class.php:140
2459
  msgid "Holy See (Vatican City State)"
2460
  msgstr "Holy See (Vatican City State)"
2461
 
2462
- #: ../lib/tribe-view-helpers.class.php:141
2463
  msgid "Honduras"
2464
  msgstr "Honduras"
2465
 
2466
- #: ../lib/tribe-view-helpers.class.php:142
2467
  msgid "Hong Kong"
2468
  msgstr "Hong Kong"
2469
 
2470
- #: ../lib/tribe-view-helpers.class.php:143
2471
  msgid "Hungary"
2472
  msgstr "Hungary"
2473
 
2474
- #: ../lib/tribe-view-helpers.class.php:144
2475
  msgid "Iceland"
2476
  msgstr "Iceland"
2477
 
2478
- #: ../lib/tribe-view-helpers.class.php:145
2479
  msgid "India"
2480
  msgstr "India"
2481
 
2482
- #: ../lib/tribe-view-helpers.class.php:146
2483
  msgid "Indonesia"
2484
  msgstr "Indonesia"
2485
 
2486
- #: ../lib/tribe-view-helpers.class.php:147
2487
  msgid "Iran (Islamic Republic Of)"
2488
  msgstr "Iran (Islamic Republic Of)"
2489
 
2490
- #: ../lib/tribe-view-helpers.class.php:148
2491
  msgid "Iraq"
2492
  msgstr "Iraq"
2493
 
2494
- #: ../lib/tribe-view-helpers.class.php:149
2495
  msgid "Ireland"
2496
  msgstr "Ireland"
2497
 
2498
- #: ../lib/tribe-view-helpers.class.php:150
2499
  msgid "Israel"
2500
  msgstr "Israel"
2501
 
2502
- #: ../lib/tribe-view-helpers.class.php:151
2503
  msgid "Italy"
2504
  msgstr "Italy"
2505
 
2506
- #: ../lib/tribe-view-helpers.class.php:152
2507
  msgid "Jamaica"
2508
  msgstr "Jamaica"
2509
 
2510
- #: ../lib/tribe-view-helpers.class.php:153
2511
  msgid "Japan"
2512
  msgstr "Japan"
2513
 
2514
- #: ../lib/tribe-view-helpers.class.php:154
2515
  msgid "Jordan"
2516
  msgstr "Jordan"
2517
 
2518
- #: ../lib/tribe-view-helpers.class.php:155
2519
  msgid "Kazakhstan"
2520
  msgstr "Kazakhstan"
2521
 
2522
- #: ../lib/tribe-view-helpers.class.php:156
2523
  msgid "Kenya"
2524
  msgstr "Kenya"
2525
 
2526
- #: ../lib/tribe-view-helpers.class.php:157
2527
  msgid "Kiribati"
2528
  msgstr "Kiribati"
2529
 
2530
- #: ../lib/tribe-view-helpers.class.php:158
2531
  msgid "Korea, Democratic People's Republic Of"
2532
  msgstr "Korea, Democratic People's Republic Of"
2533
 
2534
- #: ../lib/tribe-view-helpers.class.php:159
2535
  msgid "Korea, Republic Of"
2536
  msgstr "Korea, Republic Of"
2537
 
2538
- #: ../lib/tribe-view-helpers.class.php:160
2539
  msgid "Kuwait"
2540
  msgstr "Kuwait"
2541
 
2542
- #: ../lib/tribe-view-helpers.class.php:161
2543
  msgid "Kyrgyzstan"
2544
  msgstr "Kyrgyzstan"
2545
 
2546
- #: ../lib/tribe-view-helpers.class.php:162
2547
  msgid "Lao People's Democratic Republic"
2548
  msgstr "Lao People's Democratic Republic"
2549
 
2550
- #: ../lib/tribe-view-helpers.class.php:163
2551
  msgid "Latvia"
2552
  msgstr "Latvia"
2553
 
2554
- #: ../lib/tribe-view-helpers.class.php:164
2555
  msgid "Lebanon"
2556
  msgstr "Lebanon"
2557
 
2558
- #: ../lib/tribe-view-helpers.class.php:165
2559
  msgid "Lesotho"
2560
  msgstr "Lesotho"
2561
 
2562
- #: ../lib/tribe-view-helpers.class.php:166
2563
  msgid "Liberia"
2564
  msgstr "Liberia"
2565
 
2566
- #: ../lib/tribe-view-helpers.class.php:167
2567
  msgid "Libya"
2568
  msgstr "Libya"
2569
 
2570
- #: ../lib/tribe-view-helpers.class.php:168
2571
  msgid "Liechtenstein"
2572
  msgstr "Liechtenstein"
2573
 
2574
- #: ../lib/tribe-view-helpers.class.php:169
2575
  msgid "Lithuania"
2576
  msgstr "Lithuania"
2577
 
2578
- #: ../lib/tribe-view-helpers.class.php:170
2579
  msgid "Luxembourg"
2580
  msgstr "Luxembourg"
2581
 
2582
- #: ../lib/tribe-view-helpers.class.php:171
2583
  msgid "Macau"
2584
  msgstr "Macau"
2585
 
2586
- #: ../lib/tribe-view-helpers.class.php:172
2587
  msgid "Macedonia"
2588
  msgstr "Macedonia"
2589
 
2590
- #: ../lib/tribe-view-helpers.class.php:173
2591
  msgid "Madagascar"
2592
  msgstr "Madagascar"
2593
 
2594
- #: ../lib/tribe-view-helpers.class.php:174
2595
  msgid "Malawi"
2596
  msgstr "Malawi"
2597
 
2598
- #: ../lib/tribe-view-helpers.class.php:175
2599
  msgid "Malaysia"
2600
  msgstr "Malaysia"
2601
 
2602
- #: ../lib/tribe-view-helpers.class.php:176
2603
  msgid "Maldives"
2604
  msgstr "Maldives"
2605
 
2606
- #: ../lib/tribe-view-helpers.class.php:177
2607
  msgid "Mali"
2608
  msgstr "Mali"
2609
 
2610
- #: ../lib/tribe-view-helpers.class.php:178
2611
  msgid "Malta"
2612
  msgstr "Malta"
2613
 
2614
- #: ../lib/tribe-view-helpers.class.php:179
2615
  msgid "Marshall Islands"
2616
  msgstr "Marshall Islands"
2617
 
2618
- #: ../lib/tribe-view-helpers.class.php:180
2619
  msgid "Martinique"
2620
  msgstr "Martinique"
2621
 
2622
- #: ../lib/tribe-view-helpers.class.php:181
2623
  msgid "Mauritania"
2624
  msgstr "Mauritania"
2625
 
2626
- #: ../lib/tribe-view-helpers.class.php:182
2627
  msgid "Mauritius"
2628
  msgstr "Mauritius"
2629
 
2630
- #: ../lib/tribe-view-helpers.class.php:183
2631
  msgid "Mayotte"
2632
  msgstr "Mayotte"
2633
 
2634
- #: ../lib/tribe-view-helpers.class.php:184
2635
  msgid "Mexico"
2636
  msgstr "Mexico"
2637
 
2638
- #: ../lib/tribe-view-helpers.class.php:185
2639
  msgid "Micronesia, Federated States Of"
2640
  msgstr "Micronesia, Federated States Of"
2641
 
2642
- #: ../lib/tribe-view-helpers.class.php:186
2643
  msgid "Moldova, Republic Of"
2644
  msgstr "Moldova, Republic Of"
2645
 
2646
- #: ../lib/tribe-view-helpers.class.php:187
2647
  msgid "Monaco"
2648
  msgstr "Monaco"
2649
 
2650
- #: ../lib/tribe-view-helpers.class.php:188
2651
  msgid "Mongolia"
2652
  msgstr "Mongolia"
2653
 
2654
- #: ../lib/tribe-view-helpers.class.php:189
2655
  msgid "Montenegro"
2656
  msgstr "Montenegro"
2657
 
2658
- #: ../lib/tribe-view-helpers.class.php:190
2659
  msgid "Montserrat"
2660
  msgstr "Montserrat"
2661
 
2662
- #: ../lib/tribe-view-helpers.class.php:191
2663
  msgid "Morocco"
2664
  msgstr "Morocco"
2665
 
2666
- #: ../lib/tribe-view-helpers.class.php:192
2667
  msgid "Mozambique"
2668
  msgstr "Mozambique"
2669
 
2670
- #: ../lib/tribe-view-helpers.class.php:193
2671
  msgid "Myanmar"
2672
  msgstr "Myanmar"
2673
 
2674
- #: ../lib/tribe-view-helpers.class.php:194
2675
  msgid "Namibia"
2676
  msgstr "Namibia"
2677
 
2678
- #: ../lib/tribe-view-helpers.class.php:195
2679
  msgid "Nauru"
2680
  msgstr "Nauru"
2681
 
2682
- #: ../lib/tribe-view-helpers.class.php:196
2683
  msgid "Nepal"
2684
  msgstr "Nepal"
2685
 
2686
- #: ../lib/tribe-view-helpers.class.php:197
2687
  msgid "Netherlands"
2688
  msgstr "Netherlands"
2689
 
2690
- #: ../lib/tribe-view-helpers.class.php:198
2691
  msgid "Netherlands Antilles"
2692
  msgstr "Netherlands Antilles"
2693
 
2694
- #: ../lib/tribe-view-helpers.class.php:199
2695
  msgid "New Caledonia"
2696
  msgstr "New Caledonia"
2697
 
2698
- #: ../lib/tribe-view-helpers.class.php:200
2699
  msgid "New Zealand"
2700
  msgstr "New Zealand"
2701
 
2702
- #: ../lib/tribe-view-helpers.class.php:201
2703
  msgid "Nicaragua"
2704
  msgstr "Nicaragua"
2705
 
2706
- #: ../lib/tribe-view-helpers.class.php:202
2707
  msgid "Niger"
2708
  msgstr "Niger"
2709
 
2710
- #: ../lib/tribe-view-helpers.class.php:203
2711
  msgid "Nigeria"
2712
  msgstr "Nigeria"
2713
 
2714
- #: ../lib/tribe-view-helpers.class.php:204
2715
  msgid "Niue"
2716
  msgstr "Niue"
2717
 
2718
- #: ../lib/tribe-view-helpers.class.php:205
2719
  msgid "Norfolk Island"
2720
  msgstr "Norfolk Island"
2721
 
2722
- #: ../lib/tribe-view-helpers.class.php:206
2723
  msgid "Northern Mariana Islands"
2724
  msgstr "Northern Mariana Islands"
2725
 
2726
- #: ../lib/tribe-view-helpers.class.php:207
2727
  msgid "Norway"
2728
  msgstr "Norway"
2729
 
2730
- #: ../lib/tribe-view-helpers.class.php:208
2731
  msgid "Oman"
2732
  msgstr "Oman"
2733
 
2734
- #: ../lib/tribe-view-helpers.class.php:209
2735
  msgid "Pakistan"
2736
  msgstr "Pakistan"
2737
 
2738
- #: ../lib/tribe-view-helpers.class.php:210
2739
  msgid "Palau"
2740
  msgstr "Palau"
2741
 
2742
- #: ../lib/tribe-view-helpers.class.php:211
2743
  msgid "Panama"
2744
  msgstr "Panama"
2745
 
2746
- #: ../lib/tribe-view-helpers.class.php:212
2747
  msgid "Papua New Guinea"
2748
  msgstr "Papua New Guinea"
2749
 
2750
- #: ../lib/tribe-view-helpers.class.php:213
2751
  msgid "Paraguay"
2752
  msgstr "Paraguay"
2753
 
2754
- #: ../lib/tribe-view-helpers.class.php:214
2755
  msgid "Peru"
2756
  msgstr "Peru"
2757
 
2758
- #: ../lib/tribe-view-helpers.class.php:215
2759
  msgid "Philippines"
2760
  msgstr "Philippines"
2761
 
2762
- #: ../lib/tribe-view-helpers.class.php:216
2763
  msgid "Pitcairn"
2764
  msgstr "Pitcairn"
2765
 
2766
- #: ../lib/tribe-view-helpers.class.php:217
2767
  msgid "Poland"
2768
  msgstr "Poland"
2769
 
2770
- #: ../lib/tribe-view-helpers.class.php:218
2771
  msgid "Portugal"
2772
  msgstr "Portugal"
2773
 
2774
- #: ../lib/tribe-view-helpers.class.php:219
2775
  msgid "Puerto Rico"
2776
  msgstr "Puerto Rico"
2777
 
2778
- #: ../lib/tribe-view-helpers.class.php:220
2779
  msgid "Qatar"
2780
  msgstr "Qatar"
2781
 
2782
- #: ../lib/tribe-view-helpers.class.php:221
2783
  msgid "Reunion"
2784
  msgstr "Reunião"
2785
 
2786
- #: ../lib/tribe-view-helpers.class.php:222
2787
  msgid "Romania"
2788
  msgstr "Romania"
2789
 
2790
- #: ../lib/tribe-view-helpers.class.php:223
2791
  msgid "Russian Federation"
2792
  msgstr "Russian Federation"
2793
 
2794
- #: ../lib/tribe-view-helpers.class.php:224
2795
  msgid "Rwanda"
2796
  msgstr "Rwanda"
2797
 
2798
- #: ../lib/tribe-view-helpers.class.php:225
2799
  msgid "Saint Kitts And Nevis"
2800
  msgstr "Saint Kitts And Nevis"
2801
 
2802
- #: ../lib/tribe-view-helpers.class.php:226
2803
  msgid "Saint Lucia"
2804
  msgstr "Saint Lucia"
2805
 
2806
- #: ../lib/tribe-view-helpers.class.php:227
2807
  msgid "Saint Vincent And The Grenadines"
2808
  msgstr "Saint Vincent And The Grenadines"
2809
 
2810
- #: ../lib/tribe-view-helpers.class.php:228
2811
  msgid "Samoa"
2812
  msgstr "Samoa"
2813
 
2814
- #: ../lib/tribe-view-helpers.class.php:229
2815
  msgid "San Marino"
2816
  msgstr "San Marino"
2817
 
2818
- #: ../lib/tribe-view-helpers.class.php:230
2819
  msgid "Sao Tome And Principe"
2820
  msgstr "Sao Tome And Principe"
2821
 
2822
- #: ../lib/tribe-view-helpers.class.php:231
2823
  msgid "Saudi Arabia"
2824
  msgstr "Saudi Arabia"
2825
 
2826
- #: ../lib/tribe-view-helpers.class.php:232
2827
  msgid "Senegal"
2828
  msgstr "Senegal"
2829
 
2830
- #: ../lib/tribe-view-helpers.class.php:233
2831
  msgid "Serbia"
2832
  msgstr "Serbia"
2833
 
2834
- #: ../lib/tribe-view-helpers.class.php:234
2835
  msgid "Seychelles"
2836
  msgstr "Seychelles"
2837
 
2838
- #: ../lib/tribe-view-helpers.class.php:235
2839
  msgid "Sierra Leone"
2840
  msgstr "Sierra Leone"
2841
 
2842
- #: ../lib/tribe-view-helpers.class.php:236
2843
  msgid "Singapore"
2844
  msgstr "Singapore"
2845
 
2846
- #: ../lib/tribe-view-helpers.class.php:237
2847
  msgid "Slovakia (Slovak Republic)"
2848
  msgstr "Slovakia (Slovak Republic)"
2849
 
2850
- #: ../lib/tribe-view-helpers.class.php:238
2851
  msgid "Slovenia"
2852
  msgstr "Slovenia"
2853
 
2854
- #: ../lib/tribe-view-helpers.class.php:239
2855
  msgid "Solomon Islands"
2856
  msgstr "Solomon Islands"
2857
 
2858
- #: ../lib/tribe-view-helpers.class.php:240
2859
  msgid "Somalia"
2860
  msgstr "Somalia"
2861
 
2862
- #: ../lib/tribe-view-helpers.class.php:241
2863
  msgid "South Africa"
2864
  msgstr "South Africa"
2865
 
2866
- #: ../lib/tribe-view-helpers.class.php:242
2867
  msgid "South Georgia, South Sandwich Islands"
2868
  msgstr "South Georgia, South Sandwich Islands"
2869
 
2870
- #: ../lib/tribe-view-helpers.class.php:243
2871
  msgid "Spain"
2872
  msgstr "Spain"
2873
 
2874
- #: ../lib/tribe-view-helpers.class.php:244
2875
  msgid "Sri Lanka"
2876
  msgstr "Sri Lanka"
2877
 
2878
- #: ../lib/tribe-view-helpers.class.php:245
2879
  msgid "St. Helena"
2880
  msgstr "St. Helena"
2881
 
2882
- #: ../lib/tribe-view-helpers.class.php:246
2883
  msgid "St. Pierre And Miquelon"
2884
  msgstr "St. Pierre And Miquelon"
2885
 
2886
- #: ../lib/tribe-view-helpers.class.php:247
2887
  msgid "Sudan"
2888
  msgstr "Sudan"
2889
 
2890
- #: ../lib/tribe-view-helpers.class.php:248
2891
  msgid "Suriname"
2892
  msgstr "Suriname"
2893
 
2894
- #: ../lib/tribe-view-helpers.class.php:249
2895
  msgid "Svalbard And Jan Mayen Islands"
2896
  msgstr "Svalbard And Jan Mayen Islands"
2897
 
2898
- #: ../lib/tribe-view-helpers.class.php:250
2899
  msgid "Swaziland"
2900
  msgstr "Swaziland"
2901
 
2902
- #: ../lib/tribe-view-helpers.class.php:251
2903
  msgid "Sweden"
2904
  msgstr "Sweden"
2905
 
2906
- #: ../lib/tribe-view-helpers.class.php:252
2907
  msgid "Switzerland"
2908
  msgstr "Switzerland"
2909
 
2910
- #: ../lib/tribe-view-helpers.class.php:253
2911
  msgid "Syrian Arab Republic"
2912
  msgstr "Syrian Arab Republic"
2913
 
2914
- #: ../lib/tribe-view-helpers.class.php:254
2915
  msgid "Taiwan"
2916
  msgstr "Taiwan"
2917
 
2918
- #: ../lib/tribe-view-helpers.class.php:255
2919
  msgid "Tajikistan"
2920
  msgstr "Tajikistan"
2921
 
2922
- #: ../lib/tribe-view-helpers.class.php:256
2923
  msgid "Tanzania, United Republic Of"
2924
  msgstr "Tanzania, United Republic Of"
2925
 
2926
- #: ../lib/tribe-view-helpers.class.php:257
2927
  msgid "Thailand"
2928
  msgstr "Thailand"
2929
 
2930
- #: ../lib/tribe-view-helpers.class.php:258
2931
  msgid "Togo"
2932
  msgstr "Togo"
2933
 
2934
- #: ../lib/tribe-view-helpers.class.php:259
2935
  msgid "Tokelau"
2936
  msgstr "Tokelau"
2937
 
2938
- #: ../lib/tribe-view-helpers.class.php:260
2939
  msgid "Tonga"
2940
  msgstr "Tonga"
2941
 
2942
- #: ../lib/tribe-view-helpers.class.php:261
2943
  msgid "Trinidad And Tobago"
2944
  msgstr "Trinidad And Tobago"
2945
 
2946
- #: ../lib/tribe-view-helpers.class.php:262
2947
  msgid "Tunisia"
2948
  msgstr "Tunisia"
2949
 
2950
- #: ../lib/tribe-view-helpers.class.php:263
2951
  msgid "Turkey"
2952
  msgstr "Turkey"
2953
 
2954
- #: ../lib/tribe-view-helpers.class.php:264
2955
  msgid "Turkmenistan"
2956
  msgstr "Turkmenistan"
2957
 
2958
- #: ../lib/tribe-view-helpers.class.php:265
2959
  msgid "Turks And Caicos Islands"
2960
  msgstr "Turks And Caicos Islands"
2961
 
2962
- #: ../lib/tribe-view-helpers.class.php:266
2963
  msgid "Tuvalu"
2964
  msgstr "Tuvalu"
2965
 
2966
- #: ../lib/tribe-view-helpers.class.php:267
2967
  msgid "Uganda"
2968
  msgstr "Uganda"
2969
 
2970
- #: ../lib/tribe-view-helpers.class.php:268
2971
  msgid "Ukraine"
2972
  msgstr "Ukraine"
2973
 
2974
- #: ../lib/tribe-view-helpers.class.php:269
2975
  msgid "United Arab Emirates"
2976
  msgstr "United Arab Emirates"
2977
 
2978
- #: ../lib/tribe-view-helpers.class.php:270
2979
  msgid "United Kingdom"
2980
  msgstr "United Kingdom"
2981
 
2982
- #: ../lib/tribe-view-helpers.class.php:271
2983
  msgid "United States Minor Outlying Islands"
2984
  msgstr "United States Minor Outlying Islands"
2985
 
2986
- #: ../lib/tribe-view-helpers.class.php:272
2987
  msgid "Uruguay"
2988
  msgstr "Uruguay"
2989
 
2990
- #: ../lib/tribe-view-helpers.class.php:273
2991
  msgid "Uzbekistan"
2992
  msgstr "Uzbekistan"
2993
 
2994
- #: ../lib/tribe-view-helpers.class.php:274
2995
  msgid "Vanuatu"
2996
  msgstr "Vanuatu"
2997
 
2998
- #: ../lib/tribe-view-helpers.class.php:275
2999
  msgid "Venezuela"
3000
  msgstr "Venezuela"
3001
 
3002
- #: ../lib/tribe-view-helpers.class.php:276
3003
  msgid "Viet Nam"
3004
  msgstr "Viet Nam"
3005
 
3006
- #: ../lib/tribe-view-helpers.class.php:277
3007
  msgid "Virgin Islands (British)"
3008
  msgstr "Virgin Islands (British)"
3009
 
3010
- #: ../lib/tribe-view-helpers.class.php:278
3011
  msgid "Virgin Islands (U.S.)"
3012
  msgstr "Virgin Islands (U.S.)"
3013
 
3014
- #: ../lib/tribe-view-helpers.class.php:279
3015
  msgid "Wallis And Futuna Islands"
3016
  msgstr "Wallis And Futuna Islands"
3017
 
3018
- #: ../lib/tribe-view-helpers.class.php:280
3019
  msgid "Western Sahara"
3020
  msgstr "Western Sahara"
3021
 
3022
- #: ../lib/tribe-view-helpers.class.php:281
3023
  msgid "Yemen"
3024
  msgstr "Yemen"
3025
 
3026
- #: ../lib/tribe-view-helpers.class.php:282
3027
  msgid "Zambia"
3028
  msgstr "Zambia"
3029
 
3030
- #: ../lib/tribe-view-helpers.class.php:283
3031
  msgid "Zimbabwe"
3032
  msgstr "Zimbabwe"
3033
 
3034
- #: ../lib/tribe-view-helpers.class.php:308
3035
  msgid "Alabama"
3036
  msgstr "Alabama"
3037
 
3038
- #: ../lib/tribe-view-helpers.class.php:309
3039
  msgid "Alaska"
3040
  msgstr "Alaska"
3041
 
3042
- #: ../lib/tribe-view-helpers.class.php:310
3043
  msgid "Arizona"
3044
  msgstr "Arizona"
3045
 
3046
- #: ../lib/tribe-view-helpers.class.php:311
3047
  msgid "Arkansas"
3048
  msgstr "Arkansas"
3049
 
3050
- #: ../lib/tribe-view-helpers.class.php:312
3051
  msgid "California"
3052
  msgstr "California"
3053
 
3054
- #: ../lib/tribe-view-helpers.class.php:313
3055
  msgid "Colorado"
3056
  msgstr "Colorado"
3057
 
3058
- #: ../lib/tribe-view-helpers.class.php:314
3059
  msgid "Connecticut"
3060
  msgstr "Connecticut"
3061
 
3062
- #: ../lib/tribe-view-helpers.class.php:315
3063
  msgid "Delaware"
3064
  msgstr "Delaware"
3065
 
3066
- #: ../lib/tribe-view-helpers.class.php:316
3067
  msgid "District of Columbia"
3068
  msgstr "District of Columbia"
3069
 
3070
- #: ../lib/tribe-view-helpers.class.php:317
3071
  msgid "Florida"
3072
  msgstr "Florida"
3073
 
3074
- #: ../lib/tribe-view-helpers.class.php:319
3075
  msgid "Hawaii"
3076
  msgstr "Hawaii"
3077
 
3078
- #: ../lib/tribe-view-helpers.class.php:320
3079
  msgid "Idaho"
3080
  msgstr "Idaho"
3081
 
3082
- #: ../lib/tribe-view-helpers.class.php:321
3083
  msgid "Illinois"
3084
  msgstr "Illinois"
3085
 
3086
- #: ../lib/tribe-view-helpers.class.php:322
3087
  msgid "Indiana"
3088
  msgstr "Indiana"
3089
 
3090
- #: ../lib/tribe-view-helpers.class.php:323
3091
  msgid "Iowa"
3092
  msgstr "Iowa"
3093
 
3094
- #: ../lib/tribe-view-helpers.class.php:324
3095
  msgid "Kansas"
3096
  msgstr "Kansas"
3097
 
3098
- #: ../lib/tribe-view-helpers.class.php:325
3099
  msgid "Kentucky"
3100
  msgstr "Kentucky"
3101
 
3102
- #: ../lib/tribe-view-helpers.class.php:326
3103
  msgid "Louisiana"
3104
  msgstr "Louisiana"
3105
 
3106
- #: ../lib/tribe-view-helpers.class.php:327
3107
  msgid "Maine"
3108
  msgstr "Maine"
3109
 
3110
- #: ../lib/tribe-view-helpers.class.php:328
3111
  msgid "Maryland"
3112
  msgstr "Maryland"
3113
 
3114
- #: ../lib/tribe-view-helpers.class.php:329
3115
  msgid "Massachusetts"
3116
  msgstr "Massachusetts"
3117
 
3118
- #: ../lib/tribe-view-helpers.class.php:330
3119
  msgid "Michigan"
3120
  msgstr "Michigan"
3121
 
3122
- #: ../lib/tribe-view-helpers.class.php:331
3123
  msgid "Minnesota"
3124
  msgstr "Minnesota"
3125
 
3126
- #: ../lib/tribe-view-helpers.class.php:332
3127
  msgid "Mississippi"
3128
  msgstr "Mississippi"
3129
 
3130
- #: ../lib/tribe-view-helpers.class.php:333
3131
  msgid "Missouri"
3132
  msgstr "Missouri"
3133
 
3134
- #: ../lib/tribe-view-helpers.class.php:334
3135
  msgid "Montana"
3136
  msgstr "Montana"
3137
 
3138
- #: ../lib/tribe-view-helpers.class.php:335
3139
  msgid "Nebraska"
3140
  msgstr "Nebraska"
3141
 
3142
- #: ../lib/tribe-view-helpers.class.php:336
3143
  msgid "Nevada"
3144
  msgstr "Nevada"
3145
 
3146
- #: ../lib/tribe-view-helpers.class.php:337
3147
  msgid "New Hampshire"
3148
  msgstr "New Hampshire"
3149
 
3150
- #: ../lib/tribe-view-helpers.class.php:338
3151
  msgid "New Jersey"
3152
  msgstr "New Jersey"
3153
 
3154
- #: ../lib/tribe-view-helpers.class.php:339
3155
  msgid "New Mexico"
3156
  msgstr "New Mexico"
3157
 
3158
- #: ../lib/tribe-view-helpers.class.php:340
3159
  msgid "New York"
3160
  msgstr "New York"
3161
 
3162
- #: ../lib/tribe-view-helpers.class.php:341
3163
  msgid "North Carolina"
3164
  msgstr "North Carolina"
3165
 
3166
- #: ../lib/tribe-view-helpers.class.php:342
3167
  msgid "North Dakota"
3168
  msgstr "North Dakota"
3169
 
3170
- #: ../lib/tribe-view-helpers.class.php:343
3171
  msgid "Ohio"
3172
  msgstr "Ohio"
3173
 
3174
- #: ../lib/tribe-view-helpers.class.php:344
3175
  msgid "Oklahoma"
3176
  msgstr "Oklahoma"
3177
 
3178
- #: ../lib/tribe-view-helpers.class.php:345
3179
  msgid "Oregon"
3180
  msgstr "Oregon"
3181
 
3182
- #: ../lib/tribe-view-helpers.class.php:346
3183
  msgid "Pennsylvania"
3184
  msgstr "Pennsylvania"
3185
 
3186
- #: ../lib/tribe-view-helpers.class.php:347
3187
  msgid "Rhode Island"
3188
  msgstr "Rhode Island"
3189
 
3190
- #: ../lib/tribe-view-helpers.class.php:348
3191
  msgid "South Carolina"
3192
  msgstr "South Carolina"
3193
 
3194
- #: ../lib/tribe-view-helpers.class.php:349
3195
  msgid "South Dakota"
3196
  msgstr "South Dakota"
3197
 
3198
- #: ../lib/tribe-view-helpers.class.php:350
3199
  msgid "Tennessee"
3200
  msgstr "Tennessee"
3201
 
3202
- #: ../lib/tribe-view-helpers.class.php:351
3203
  msgid "Texas"
3204
  msgstr "Texas"
3205
 
3206
- #: ../lib/tribe-view-helpers.class.php:352
3207
  msgid "Utah"
3208
  msgstr "Utah"
3209
 
3210
- #: ../lib/tribe-view-helpers.class.php:353
3211
  msgid "Vermont"
3212
  msgstr "Vermont"
3213
 
3214
- #: ../lib/tribe-view-helpers.class.php:354
3215
  msgid "Virginia"
3216
  msgstr "Virginia"
3217
 
3218
- #: ../lib/tribe-view-helpers.class.php:355
3219
  msgid "Washington"
3220
  msgstr "Washington"
3221
 
3222
- #: ../lib/tribe-view-helpers.class.php:356
3223
  msgid "West Virginia"
3224
  msgstr "West Virginia"
3225
 
3226
- #: ../lib/tribe-view-helpers.class.php:357
3227
  msgid "Wisconsin"
3228
  msgstr "Wisconsin"
3229
 
3230
- #: ../lib/tribe-view-helpers.class.php:358
3231
  msgid "Wyoming"
3232
  msgstr "Wyoming"
3233
 
3234
  #
3235
- #: ../lib/widget-list.class.php:21
3236
  msgid "A widget that displays upcoming events."
3237
  msgstr "Um widget que exibe os próximos eventos."
3238
 
3239
- #: ../lib/widget-list.class.php:27
3240
  msgid "Events List"
3241
  msgstr "Lista de eventos"
3242
 
3243
- #: ../lib/widget-list.class.php:114
3244
  msgid "View All Events"
3245
  msgstr "Ver todos os eventos"
3246
 
3247
- #: ../lib/widget-list.class.php:117
3248
  msgid "There are no upcoming events at this time."
3249
  msgstr "Não há eventos agendados"
3250
 
3251
- #: ../lib/template-classes/month.php:75
3252
  #, php-format
3253
  msgid ""
3254
  "There were no results found for <strong>\"%s\"</strong> this month. Try "
@@ -3257,67 +3232,67 @@ msgstr ""
3257
  "Não há resultados para <strong>\"%s\"</strong> neste mês. Tente no mês "
3258
  "seguinte."
3259
 
3260
- #: ../lib/template-classes/single-event.php:99
3261
  msgid "This event has passed."
3262
  msgstr "Este evento já ocorreu."
3263
 
3264
- #: ../lib/tickets/tribe-tickets-attendees.php:67
3265
  msgid "Order #"
3266
  msgstr "Pedido #"
3267
 
3268
- #: ../lib/tickets/tribe-tickets-attendees.php:68
3269
  msgid "Order Status"
3270
  msgstr "Status do Pedido"
3271
 
3272
- #: ../lib/tickets/tribe-tickets-attendees.php:69
3273
  msgid "Purchaser name"
3274
  msgstr "Nome do comprador."
3275
 
3276
- #: ../lib/tickets/tribe-tickets-attendees.php:70
3277
  msgid "Purchaser email"
3278
  msgstr "Email do comprador"
3279
 
3280
  #
3281
- #: ../lib/tickets/tribe-tickets-attendees.php:71
3282
  msgid "Ticket type"
3283
  msgstr "Tipo do bilhete"
3284
 
3285
- #: ../lib/tickets/tribe-tickets-attendees.php:72
3286
- #: ../views/tickets/email.php:316
3287
  msgid "Ticket #"
3288
  msgstr "Bilhete #"
3289
 
3290
- #: ../lib/tickets/tribe-tickets-attendees.php:73
3291
- #: ../views/tickets/email.php:328
3292
  msgid "Security Code"
3293
  msgstr "Código de Segurança"
3294
 
3295
- #: ../lib/tickets/tribe-tickets-attendees.php:74
3296
- #: ../lib/tickets/tribe-tickets-attendees.php:144
3297
- #: ../lib/tickets/tribe-tickets-attendees.php:200
3298
  msgid "Check in"
3299
  msgstr "Check in"
3300
 
3301
- #: ../lib/tickets/tribe-tickets-attendees.php:145
3302
- #: ../lib/tickets/tribe-tickets-attendees.php:200
3303
  msgid "Undo Check in"
3304
  msgstr "Desfazer o Check In"
3305
 
3306
- #: ../lib/tickets/tribe-tickets-attendees.php:179
3307
  msgid "Print"
3308
  msgstr "Imprimir"
3309
 
3310
  #
3311
- #: ../lib/tickets/tribe-tickets-attendees.php:180
3312
  msgid "Email"
3313
  msgstr "Email"
3314
 
3315
  #
3316
- #: ../lib/tickets/tribe-tickets-attendees.php:181
3317
  msgid "Export"
3318
  msgstr "Exportar"
3319
 
3320
- #: ../lib/tickets/tribe-tickets-attendees.php:187
3321
  msgid "Filter by ticket #, order # or security code"
3322
  msgstr "Filtrar por Bilhete #, Pedido # ou código de segurança"
3323
 
@@ -3367,83 +3342,83 @@ msgstr "participantes"
3367
  msgid "Attendee List for: %s"
3368
  msgstr "Lista de participantes de: %s"
3369
 
3370
- #: ../lib/tickets/tribe-tickets.php:292
3371
  msgid "Your ticket has been saved."
3372
  msgstr "Seu bilhete foi salvo."
3373
 
3374
- #: ../lib/tickets/tribe-tickets.php:369
3375
  msgid "Your ticket has been deleted."
3376
  msgstr "Seu bilhete foi apagado."
3377
 
3378
- #: ../public/advanced-functions/meta.php:35
3379
  msgid "Start:"
3380
  msgstr "Início:"
3381
 
3382
- #: ../public/advanced-functions/meta.php:42
3383
  msgid "End:"
3384
  msgstr "Final:"
3385
 
3386
- #: ../public/advanced-functions/meta.php:51
3387
  msgid "Date:"
3388
  msgstr "Data:"
3389
 
3390
- #: ../public/advanced-functions/meta.php:233
3391
  msgid "Click to view a Google Map"
3392
  msgstr "Clique para o Google Maps"
3393
 
3394
  #
3395
- #: ../public/advanced-functions/meta.php:234
3396
  msgid "+ Google Map"
3397
  msgstr "+ Google Map"
3398
 
3399
- #: ../public/advanced-functions/meta.php:245
3400
  msgid "Details"
3401
  msgstr "Detalhes"
3402
 
3403
  #
3404
- #: ../public/advanced-functions/meta.php:295
3405
  msgid "Event Tags:"
3406
  msgstr "Tags do evento:"
3407
 
3408
- #: ../public/advanced-functions/meta.php:321
3409
  msgid "Origin:"
3410
  msgstr "Origem:"
3411
 
3412
- #: ../public/advanced-functions/meta.php:458
3413
  msgid "Event:"
3414
  msgstr "Evento:"
3415
 
3416
  #
3417
- #: ../public/template-tags/deprecated.php:1143
3418
  msgid "Category"
3419
  msgstr "Categoria"
3420
 
3421
- #: ../public/template-tags/general.php:306
3422
  msgid "Tags:"
3423
  msgstr "Tags:"
3424
 
3425
  #
3426
- #: ../public/template-tags/general.php:392
3427
  msgid "Loading Events"
3428
  msgstr "Carregando eventos"
3429
 
3430
- #: ../public/template-tags/general.php:531
3431
  msgid "Free"
3432
  msgstr "Livre"
3433
 
3434
  #
3435
- #: ../public/template-tags/general.php:703
3436
  msgid "Recurring Event"
3437
  msgstr "Evento recorrente"
3438
 
3439
- #: ../public/template-tags/general.php:706
3440
  msgid "(See all)"
3441
  msgstr "(ver todos)"
3442
 
3443
- #: ../public/template-tags/general.php:982
3444
  #, php-format
3445
  msgid "Calendar powered by %sThe Events Calendar%s"
3446
- msgstr "Sistema gerado por %sThe Events Calendar%s"
3447
 
3448
  #: ../public/template-tags/loop.php:150
3449
  #, php-format
@@ -3456,7 +3431,7 @@ msgid "Events for %1$s through %2$s"
3456
  msgstr "Eventos para %1$s até %2$s"
3457
 
3458
  #
3459
- #: ../public/template-tags/loop.php:171
3460
  msgid "Events for "
3461
  msgstr "Eventos para"
3462
 
@@ -3476,184 +3451,61 @@ msgstr ""
3476
  "evento único é como: %s"
3477
 
3478
  #
3479
- #: ../views/single-event.php:23
3480
  msgid "&laquo; All Events"
3481
  msgstr "&laquo; Todos os eventos"
3482
 
3483
  #
3484
- #: ../views/single-event.php:42 ../views/single-event.php:73
3485
  msgid "Event Navigation"
3486
  msgstr "Navegação dos eventos"
3487
 
3488
  #
3489
- #: ../views/list/nav.php:16
3490
- msgid "Events List Navigation"
3491
- msgstr "Navegação da lista de eventos"
3492
-
3493
- #: ../views/list/single-event.php:76
3494
- msgid "Find out more"
3495
- msgstr "Encontre mais"
3496
-
3497
- #
3498
- #: ../views/modules/bar.php:31 ../views/modules/bar.php:60
3499
- msgid "Find Events"
3500
- msgstr "Buscar eventos"
3501
-
3502
- #: ../views/modules/bar.php:38
3503
- msgid "Event Views Navigation"
3504
- msgstr "Navegação dos eventos"
3505
-
3506
- #
3507
- #: ../views/modules/bar.php:39
3508
- msgid "View As"
3509
- msgstr "Visualizar como"
3510
-
3511
- #
3512
- #: ../views/month/nav.php:18
3513
- msgid "Calendar Month Navigation"
3514
- msgstr "Navegação do calendário mensal"
3515
-
3516
- #
3517
- #: ../views/tickets/attendees-email.php:25
3518
  msgid "Attendee List"
3519
  msgstr "Lista de participantes"
3520
 
3521
  #
3522
- #: ../views/tickets/email.php:39
3523
  msgid "Your tickets"
3524
  msgstr "Seus bilhetes"
3525
 
3526
  #
3527
- #: ../views/tickets/email.php:320
3528
  msgid "Ticket Type"
3529
  msgstr "Tipo de bilhete"
3530
 
3531
- #: ../views/tickets/email.php:324
3532
  msgid "Purchaser"
3533
  msgstr "Comprador"
3534
 
3535
- #~ msgid ""
3536
- #~ "Want to modify the display of this widget? Try a %stemplate override%s."
3537
- #~ msgstr ""
3538
- #~ "Quer modificar a aparência deste widget? Tente um %stemplate override%s. "
3539
-
3540
- #~ msgid ""
3541
- #~ "These styles provide a bare minimum level of layout for the more complex "
3542
- #~ "templates, and is recommended if you're customizing the events template "
3543
- #~ "styles."
3544
- #~ msgstr ""
3545
- #~ "Esses estilos fornecer um nível mínimo de configuração para os modelos "
3546
- #~ "mais complexos, e é recomendado se você estiver personalizando os estilos "
3547
- #~ "do modelo de eventos."
3548
-
3549
- #~ msgid ""
3550
- #~ "These styles provide a more complex level of layout and style and should "
3551
- #~ "adapt to your theme"
3552
- #~ msgstr ""
3553
- #~ "Estes estilos oferecem um nível mais complexo do layout e devem ser "
3554
- #~ "adaptados ao seu tema."
3555
-
3556
- #~ msgid "These styles provide a fully designed events theme"
3557
- #~ msgstr "Estes estilos oferecem um tema completo"
3558
-
3559
- #~ msgid ""
3560
- #~ "If this is your first time using The Events Calendar,you're in for a "
3561
- #~ "treat. You're going to find it super-easy to get up and running with "
3562
- #~ "managing your events. Here are some ways to get started:</"
3563
- #~ "p><ul><li><strong>Feeling adventurous?</strong> Jump right into it by "
3564
- #~ "visiting the Events menu to <a href=\"%s\">add your first event</a>.</"
3565
- #~ "li><li><strong>Want to get the low-down first?</strong> Visit our <a href="
3566
- #~ "\"%s\">new user primer</a>, designed to help familiarize you with the "
3567
- #~ "plugin basics.</li></ul>"
3568
- #~ msgstr ""
3569
- #~ "Se esta é sua primeira vez usando o The Events Calanedar deve achar que é "
3570
- #~ "super fácil de se levantar e correr com o gerenciamento de seus eventos. "
3571
- #~ "Aqui estão algumas maneiras de começar: </p> <ul> <li> <strong> Sentindo-"
3572
- #~ "se aventureiro </strong> Ir direto para ela, visitando o menu Eventos "
3573
- #~ "para <a href=\"%s\"> acrescentar? seu primeiro evento </ a>. </ li> <li> "
3574
- #~ "<strong> Quer receber a primeira low-down? </strong> Visite o nosso <a "
3575
- #~ "href=\"%s\"> nova cartilha de usuário </a>, projetada para ajudar a "
3576
- #~ "familiarizar-se com o básico do plugin. </li> </ul>"
3577
-
3578
- #~ msgid ""
3579
- #~ "<p>We love all our users and want to help free & PRO customers alike. If "
3580
- #~ "you're running the latest version of The Events Calendar and are having "
3581
- #~ "problems, post a thread at the %s on WordPress.org. We hit the forum once "
3582
- #~ "a week to look for legitimate bug reports and do what we can to assist "
3583
- #~ "users.</p>"
3584
- #~ msgstr ""
3585
- #~ "<p>Nós amamos nossos usuários e queremos ajudá-los. Se você estiver "
3586
- #~ "executando a versão mais recente do calendário de eventos e está tendo "
3587
- #~ "problemas, coloque um tópico no %s em WordPress.org. Nós responderemos no "
3588
- #~ "fórum uma vez por semana para procurar bugs e fazer o que pudermos para "
3589
- #~ "ajudar os usuários. </p>"
3590
-
3591
- #~ msgid "forum for The Events Calendar"
3592
- #~ msgstr "Fórum do The Events Calendar"
3593
-
3594
- #~ msgid ""
3595
- #~ "<p>If you need additional help, %sEvents Calendar Pro%s gets you access "
3596
- #~ "to our support forums for a full year.</p>"
3597
- #~ msgstr ""
3598
- #~ "<p> Se precisar de ajuda, %sEvents Calendar Pro%s permite acessar o fórum "
3599
- #~ "de suporte por um ano.<p>"
3600
-
3601
  #
3602
- #~ msgid "A few things to keep in mind before posting:"
3603
- #~ msgstr "Antes de publicar, tenha em mente:"
3604
-
3605
- #~ msgid ""
3606
- #~ "Search recent threads before posting a new one to check that there isn't "
3607
- #~ "already a discussion about your issue."
3608
- #~ msgstr "Procure tópicos antes de publicar um novo."
3609
 
3610
- #~ msgid ""
3611
- #~ "Check whether the issue is a conflict with another plugin or your theme. "
3612
- #~ "This can be tested easily on a staging site by deactivating other plugins "
3613
- #~ "one-by-one, and reverting to the default Twenty Twelve theme to see if "
3614
- #~ "conflicts can be easily identified. If you find a conflict, note it in a "
3615
- #~ "support thread."
3616
- #~ msgstr ""
3617
- #~ "Verifique se o problema é um conflito com outro plugin ou o seu tema. "
3618
- #~ "Isso pode ser testado facilmente em um site de teste desativando outros "
3619
- #~ "plugins um por um, e revertendo para o padrão Twenty Twelve tema para ver "
3620
- #~ "se os conflitos podem ser facilmente identificados. Se você encontrar um "
3621
- #~ "conflito, anote-o em um tópico de suporte."
3622
 
3623
- #~ msgid ""
3624
- #~ "Sometimes, resaving your permalinks (under <a href=\"%s\">Settings > "
3625
- #~ "Permalinks</a>) can resolve events-related problems on your site. Before "
3626
- #~ "creating a new thread try this handy trick."
3627
- #~ msgstr ""
3628
- #~ "Às vezes, revisar seus permalinks (em <a href=\"%s\"> Configurações> "
3629
- #~ "Permalinks </ a>) pode resolver problemas relacionados. Antes de criar um "
3630
- #~ "novo tópico, tente este truque útil."
3631
 
3632
- #~ msgid ""
3633
- #~ "While we are happy to help with bugs and provide light integration tips "
3634
- #~ "for users of The Events Calendar, on the WordPress.org support forums "
3635
- #~ "we're not able to provide customization tips or assist in integration "
3636
- #~ "with 3rd party plugins."
3637
- #~ msgstr ""
3638
- #~ "Enquanto nós estamos felizes em ajudar com os erros e dar dicas de "
3639
- #~ "integração de luz para os usuários do The Events Calendar, em fóruns de "
3640
- #~ "suporte WordPress.org nós não somos capazes de fornecer dicas de "
3641
- #~ "personalização ou ajudar na integração com outros plugins."
3642
 
3643
- #~ msgid "Still Not Satisfied?"
3644
- #~ msgstr "Ainda não está Satisfeito?"
 
 
3645
 
3646
- #~ msgid ""
3647
- #~ "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make "
3648
- #~ "sure you have backed up before proceeding any further. You can easily <a "
3649
- #~ "href=\"%s\">revert to an old version</a> if you want to backup first. "
3650
- #~ "This upgrade includes two major steps, <a href=\"edit.php?post_type="
3651
- #~ msgstr ""
3652
- #~ "Bem vindo ao Events 2.0! Esta é uma GRANDE atualização desde a versão "
3653
- #~ "1.6.5. Por favor, realize um backup antes de prosseguir. Você pode "
3654
- #~ "facilmente <a href=\"%s\">reverter para uma versão anterior</a> se quiser "
3655
- #~ "realizar o backup primeiro. Este upgrade inclui duas grandes etapas, <a "
3656
- #~ "href=\"edit.php?post_type="
3657
 
3658
  #~ msgid "Advanced Post Manager"
3659
  #~ msgstr "Gerenciador avançado de Posts"
5
  msgstr ""
6
  "Project-Id-Version: The Events Calendar\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2013-05-20 02:24-0600\n"
9
+ "PO-Revision-Date: 2013-06-27 23:35-0300\n"
10
+ "Last-Translator: DJIO <wordpress@djio.com.br>\n"
11
  "Language-Team: Diego Meneghetti <diego@estudioteca.com>\n"
12
  "Language: pt_BR\n"
13
  "MIME-Version: 1.0\n"
26
  msgid "Tribe Event Add-Ons"
27
  msgstr "Add-Ons de Evento da Tribe"
28
 
29
+ #: ../admin-views/app-shop.php:56
30
  msgid "Version"
31
  msgstr "Versão"
32
 
33
+ #: ../admin-views/app-shop.php:59
34
  msgid "Last Update"
35
  msgstr "Última atualização"
36
 
113
  msgstr "Símbolo:"
114
 
115
  #: ../admin-views/events-meta-box.php:122
116
+ #: ../public/advanced-functions/meta.php:187
117
  msgid "Cost:"
118
  msgstr "Preço:"
119
 
127
  msgstr "Nome do Organizador:"
128
 
129
  #: ../admin-views/organizer-meta-box.php:19
130
+ #: ../admin-views/tickets-attendees.php:39
131
  #: ../admin-views/venue-meta-box.php:93
132
+ #: ../public/advanced-functions/meta.php:274
133
+ #: ../public/advanced-functions/meta.php:336
 
134
  msgid "Phone:"
135
  msgstr "Telefone:"
136
 
137
  #: ../admin-views/organizer-meta-box.php:23
138
+ #: ../admin-views/tickets-attendees.php:45
139
  #: ../admin-views/venue-meta-box.php:97
140
+ #: ../public/advanced-functions/meta.php:225
141
+ #: ../public/advanced-functions/meta.php:300
142
+ #: ../public/advanced-functions/meta.php:362
 
143
  msgid "Website:"
144
  msgstr "Website:"
145
 
146
  #: ../admin-views/organizer-meta-box.php:27
147
+ #: ../public/advanced-functions/meta.php:349
148
  msgid "Email:"
149
  msgstr "Email:"
150
 
195
  msgid "All future events in the series will be deleted."
196
  msgstr "Todos os eventos futuros desta série serão apagados."
197
 
198
+ #: ../admin-views/tickets-attendees.php:9 ../admin-views/tickets-list.php:41
199
+ #: ../lib/tickets/tribe-tickets-pro.php:73
200
+ msgid "Attendees"
201
+ msgstr "Participantes"
202
+
203
+ #
204
+ #: ../admin-views/tickets-attendees.php:14
205
+ msgid "Event Summary"
206
+ msgstr "Descrição do evento"
207
+
208
+ #
209
+ #: ../admin-views/tickets-attendees.php:22
210
+ msgid "Event Details"
211
+ msgstr "Detalhes"
212
+
213
+ #
214
+ #: ../admin-views/tickets-attendees.php:24
215
+ msgid "Start Date / Time:"
216
+ msgstr "Data / hora de início:"
217
+
218
+ #
219
+ #: ../admin-views/tickets-attendees.php:26
220
+ msgid "End Date / Time:"
221
+ msgstr "Data / hora de término:"
222
+
223
+ #: ../admin-views/tickets-attendees.php:34
224
+ msgid "Venue:"
225
+ msgstr "Local: "
226
+
227
+ #
228
+ #: ../admin-views/tickets-attendees.php:52
229
+ msgid "Ticket Sales"
230
+ msgstr "Ingressos vendidos"
231
+
232
+ #: ../admin-views/tickets-attendees.php:64 ../admin-views/tickets-list.php:67
233
+ #, php-format
234
+ msgid "Sold %d"
235
+ msgstr "Vendidos %d"
236
+
237
+ #: ../admin-views/tickets-attendees.php:66 ../admin-views/tickets-list.php:69
238
+ #, php-format
239
+ msgid "Sold %d of %d"
240
+ msgstr "%d de %d vendidos"
241
+
242
+ #
243
+ #: ../admin-views/tickets-attendees.php:81
244
+ msgid "Tickets sold:"
245
+ msgstr "Ingressos vendidos:"
246
+
247
+ #
248
+ #: ../admin-views/tickets-attendees.php:85
249
+ msgid "Checked in:"
250
+ msgstr "COnferido em:"
251
+
252
+ #: ../admin-views/tickets-attendees.php:105
253
+ msgid "Send the attendee list by email"
254
+ msgstr "Enviar lista por email"
255
+
256
+ #
257
+ #: ../admin-views/tickets-attendees.php:109
258
+ msgid "Select a User:"
259
+ msgstr "Selecionar um usuário:"
260
+
261
+ #: ../admin-views/tickets-attendees.php:110
262
+ msgid "Select..."
263
+ msgstr "Selecionar..."
264
+
265
+ #: ../admin-views/tickets-attendees.php:112
266
+ msgid "or"
267
+ msgstr "ou"
268
+
269
+ #
270
+ #: ../admin-views/tickets-attendees.php:114
271
+ msgid "Email Address:"
272
+ msgstr "Email:"
273
+
274
+ #: ../admin-views/tickets-list.php:21 ../views/wrapper-single.php:37
275
+ msgid "Edit"
276
+ msgstr "Editar"
277
+
278
+ #: ../admin-views/tickets-list.php:22
279
+ msgid "Delete"
280
+ msgstr "Excluir"
281
+
282
+ #: ../admin-views/tickets-list.php:24
283
+ #, php-format
284
+ msgid "Edit in %s"
285
+ msgstr "Editado em %s"
286
+
287
+ #: ../admin-views/tickets-list.php:27
288
+ #: ../lib/tribe-admin-events-list.class.php:41
289
+ msgid "View"
290
+ msgstr "Veja"
291
+
292
+ #: ../admin-views/tickets-list.php:41 ../lib/tickets/tribe-tickets-pro.php:73
293
+ msgid "See who purchased tickets to this event"
294
+ msgstr "Veja quem já adquiriu bilhetes para este evento:"
295
+
296
+ #: ../admin-views/tickets-meta-box.php:21
297
+ msgid ""
298
+ "This event was created using Community Events. Are you sure you want to sell "
299
+ "tickets for it?"
300
+ msgstr ""
301
+ "Este evento foi criado utilizando o Community Events. Você tem certeza que "
302
+ "deseja vender bilhetes para ele?"
303
+
304
+ #: ../admin-views/tickets-meta-box.php:32
305
+ msgid "Upload image for the ticket header"
306
+ msgstr "Enviar imagem para o cabeçalho"
307
+
308
+ #: ../admin-views/tickets-meta-box.php:33
309
+ msgid ""
310
+ "The maximum image size in the email will be 580px wide by any height, and "
311
+ "then scaled for mobile. If you would like \"retina\" support use an image "
312
+ "sized to 1160px wide."
313
+ msgstr ""
314
+ "O tamanho máximo da imagem deve ser de 580px por qualquer altura. Para usar "
315
+ "uma definição para retina display, use 1160px de largura."
316
+
317
+ #
318
+ #: ../admin-views/tickets-meta-box.php:36
319
+ msgid "Select an Image"
320
+ msgstr "Selecione uma imagem"
321
+
322
+ #: ../admin-views/tickets-meta-box.php:44
323
+ msgid "Remove"
324
+ msgstr "Excluir"
325
+
326
+ #: ../admin-views/tickets-meta-box.php:62
327
+ #: ../admin-views/tickets-meta-box.php:72
328
+ msgid "Add new ticket"
329
+ msgstr "Adicionar novo bilhete"
330
+
331
+ #: ../admin-views/tickets-meta-box.php:73
332
+ msgid "Edit ticket"
333
+ msgstr "Editar bilhete"
334
+
335
+ #: ../admin-views/tickets-meta-box.php:79
336
+ msgid "Sell using:"
337
+ msgstr "Vender utilizando:"
338
+
339
+ #: ../admin-views/tickets-meta-box.php:96
340
+ msgid "Ticket Name:"
341
+ msgstr "Nome do Bilhete:"
342
+
343
+ #: ../admin-views/tickets-meta-box.php:103
344
+ msgid "Ticket Description:"
345
+ msgstr "Descrição do Bilhete:"
346
+
347
+ #: ../admin-views/tickets-meta-box.php:112
348
+ msgid "Price:"
349
+ msgstr "Preço:"
350
+
351
+ #: ../admin-views/tickets-meta-box.php:124
352
+ msgid "Start sale:"
353
+ msgstr "Início das vendas:"
354
+
355
+ #: ../admin-views/tickets-meta-box.php:148
356
+ msgid "End sale:"
357
+ msgstr "Término das vendas:"
358
+
359
+ #: ../admin-views/tickets-meta-box.php:170
360
+ msgid ""
361
+ "When will ticket sales occur? If you don't set a start/end date for sales, "
362
+ "tickets will be available from now until the event ends."
363
+ msgstr ""
364
+ "Quando ocorrerá a venda de bilhetes? Se você não determinar uma data para "
365
+ "início e fim das vendas, os bilhetes ficarão disponíveis de agora até o fim "
366
+ "do evento."
367
+
368
  #: ../admin-views/tribe-options-display.php:4
369
  msgid "Default Events Template"
370
  msgstr "Template padrão de Eventos"
378
  msgid "Display Settings"
379
  msgstr "Mostrar configurações"
380
 
381
+ #: ../admin-views/tribe-options-display.php:33
 
382
  msgid ""
383
  "<p>The settings below control the display of your calendar. If things don't "
384
  "look right, try switching between the three style sheet options or pick a "
385
+ "page template from your theme.</p>There are going to be situations where no "
386
+ "out-of-the-box template is 100% perfect. Check out our <a href=\"http://tri."
387
+ "be/support/documentation/events-calendar-themers-guide/\">our themer's "
388
+ "guide</a> for instructions on custom modifications. Want to create a new "
389
+ "view? Grab a copy of the <a href=\"https://github.com/moderntribe/tribe-"
390
+ "events-agenda-view\">Sample Agenda View plugin from Github</a></p>"
391
  msgstr ""
392
+ "<p> As configurações abaixo são do calendário. Se as coisas não aparecerem "
393
  "OK, tente alterar as opções de estilos ou escolha um template do seu tema.</"
394
+ "p>Confira <a href=\"http://tri.be/support/documentation/events-calendar-"
395
+ "themers-guide/\">nosso guia</a> para instruções de como alterar. Para criar "
396
+ "um novo, pegue uma cópia em <a href=\"https://github.com/moderntribe/tribe-"
397
+ "events-agenda-view\">Sample Agenda View plugin do Github</a></p>"
398
 
399
  #
400
+ #: ../admin-views/tribe-options-display.php:45
401
  msgid "Basic Template Settings"
402
  msgstr "Configurações básicas do template"
403
 
404
  #
405
+ #: ../admin-views/tribe-options-display.php:49
406
  msgid "Default stylesheet used for events templates"
407
  msgstr "CSS padrão para os templates"
408
 
409
+ #: ../admin-views/tribe-options-display.php:52
410
  msgid "Skeleton Styles"
411
  msgstr "Skeleton Styles"
412
 
413
+ #: ../admin-views/tribe-options-display.php:54
414
  msgid ""
415
+ "These styles provide a bare minimum level of layout for the more complex "
416
+ "templates, and is recommended if you're customizing the events template "
417
+ "styles."
418
  msgstr ""
419
+ "Esses estilos fornecer um nível mínimo de configuração para os modelos mais "
420
+ "complexos, e é recomendado se você estiver personalizando os estilos do "
421
+ "modelo de eventos."
422
 
423
+ #: ../admin-views/tribe-options-display.php:56
424
  msgid "Full Styles"
425
  msgstr "Estilos completos"
426
 
427
+ #: ../admin-views/tribe-options-display.php:58
428
+ msgid ""
429
+ "These styles provide a more complex level of layout and style and should "
430
+ "adapt to your theme"
431
  msgstr ""
432
+ "Estes estilos oferecem um nível mais complexo do layout e devem ser "
433
+ "adaptados ao seu tema."
434
 
435
  #
436
+ #: ../admin-views/tribe-options-display.php:60
437
  msgid "Tribe Events Styles"
438
  msgstr "Estilos Tribe Events"
439
 
440
+ #: ../admin-views/tribe-options-display.php:62
441
+ msgid "These styles provide a fully designed events theme"
442
+ msgstr "Estes estilos oferecem um tema completo"
443
 
444
  #
445
+ #: ../admin-views/tribe-options-display.php:69
446
  msgid "Events template"
447
  msgstr "Template de eventos"
448
 
449
+ #: ../admin-views/tribe-options-display.php:70
450
  msgid ""
451
  "Choose a page template to control the appearance of your calendar and event "
452
  "content."
454
  "Escolha um template para controlar o design do calendário e do conteúdo dos "
455
  "eventos"
456
 
457
+ #: ../admin-views/tribe-options-display.php:78
458
  msgid "Enable event views"
459
  msgstr "Habilitar visualização de eventos"
460
 
461
  #
462
+ #: ../admin-views/tribe-options-display.php:79
463
  msgid "You must select at least one view."
464
  msgstr "Selecione pelo menos uma visualização."
465
 
466
  #
467
+ #: ../admin-views/tribe-options-display.php:86
468
  msgid "Default view"
469
  msgstr "Visualização padrão"
470
 
471
+ #: ../admin-views/tribe-options-display.php:94
472
+ msgid "Use the Event Search Bar"
 
473
  msgstr "Use a barra de busca de eventos"
474
 
475
+ #: ../admin-views/tribe-options-display.php:95
476
+ msgid "Uncheck this to use the classic header."
 
477
  msgstr "Desabilite isto para usar o header padrão"
478
 
479
  #
480
+ #: ../admin-views/tribe-options-display.php:101
481
  msgid "Advanced Template Settings"
482
  msgstr "Configurações avançadas"
483
 
484
  #
485
+ #: ../admin-views/tribe-options-display.php:105
486
  msgid "Add HTML before event content"
487
  msgstr "Adicionar HTML antes do conteúdo do evento"
488
 
489
+ #: ../admin-views/tribe-options-display.php:106
490
  msgid ""
491
  "If you are familiar with HTML, you can add additional code before the event "
492
  "template. Some themes may require this to help with styling or layout."
495
  "podem precisar disso para ajustar o design."
496
 
497
  #
498
+ #: ../admin-views/tribe-options-display.php:111
499
  msgid "Add HTML after event content"
500
  msgstr "Adicionar HTML depois do conteúdo do evento"
501
 
502
+ #: ../admin-views/tribe-options-display.php:112
503
  msgid ""
504
  "If you are familiar with HTML, you can add additional code after the event "
505
  "template. Some themes may require this to help with styling or layout."
549
  "pointing to The Events Calendar project."
550
  msgstr ""
551
  "Você está pensando \"Uau, este plugin é incrível! Devo agradecer à Modern "
552
+ "Tribe pelo seu trabalho duro. \" O que poderíamos pedir é seu "
553
+ "reconhecimento. Adicionar um pequeno texto somente link na parte inferior do "
554
+ "seu calendário apontando para o projeto The Events Calendar."
555
 
556
  #: ../admin-views/tribe-options-general.php:37
557
  #: ../admin-views/tribe-options-general.php:42
702
  msgstr "habilitar mapas."
703
 
704
  #: ../admin-views/tribe-options-general.php:161
705
+ msgid "Google Maps Default Zoom Level"
 
706
  msgstr "Nível de Zoom padrão do Google Maps"
707
 
708
  #: ../admin-views/tribe-options-general.php:162
718
  msgid "Duplicate Venues &amp; Organizers"
719
  msgstr "Duplicar locais &amp; organizadores"
720
 
 
 
 
 
 
721
  #: ../admin-views/tribe-options-general.php:174
722
  msgid ""
723
  "You might find duplicate venues and organizers when updating The Events "
724
  "Calendar from a pre-3.0 version. Click this button to automatically merge "
725
  "identical venues and organizers."
726
  msgstr ""
727
+ "Você pode duplicar locais e organizadores ao atualizar o The Events Calendar "
728
  "a partir de uma versão pré-3.0. Clique nesse botão para mesclar "
729
  "automaticamente locais e organizadores idênticos."
730
 
731
+ #: ../admin-views/tribe-options-general.php:174
732
+ #: ../lib/tribe-amalgamator.php:182
733
+ msgid "Merge Duplicates"
734
+ msgstr "Mesclar duplicados"
735
+
736
  #
737
  #: ../admin-views/tribe-options-general.php:179
738
  msgid "Debug mode"
801
  msgstr "FAQ"
802
 
803
  #: ../admin-views/tribe-options-help.php:79
804
+ #: ../lib/the-events-calendar.class.php:656
805
+ #: ../lib/the-events-calendar.class.php:3375
806
+ #: ../lib/the-events-calendar.class.php:3466
807
  msgid "Help"
808
  msgstr "Ajuda"
809
 
819
  msgid "Forums"
820
  msgstr "Fóruns"
821
 
822
+ #: ../admin-views/tribe-options-help.php:96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
823
  #, php-format
824
  msgid ""
825
+ "If this is your first time using The Events Calendar,you're in for a treat. "
826
+ "You're going to find it super-easy to get up and running with managing your "
827
+ "events. Here are some ways to get started:</p><ul><li><strong>Feeling "
828
+ "adventurous?</strong> Jump right into it by visiting the Events menu to <a "
829
+ "href=\"%s\">add your first event</a>.</li><li><strong>Want to get the low-"
830
+ "down first?</strong> Visit our <a href=\"%s\">new user primer</a>, designed "
831
+ "to help familiarize you with the plugin basics.</li></ul>"
832
  msgstr ""
833
+ "Se esta é sua primeira vez usando o The Events Calendar deve achar que é "
834
+ "super fácil de se levantar e correr com o gerenciamento de seus eventos. "
835
+ "Aqui estão algumas maneiras de começar: </p> <ul> <li> <strong> Sentindo-se "
836
+ "aventureiro </strong> Ir direto para ela, visitando o menu Eventos para <a "
837
+ "href=\"%s\"> acrescentar? seu primeiro evento </ a>. </ li> <li> <strong> "
838
+ "Quer receber a primeira low-down? </strong> Visite o nosso <a href=\"%s\"> "
839
+ "nova cartilha de usuário </a>, projetada para ajudar a familiarizar-se com o "
840
+ "básico do plugin. </li> </ul>"
841
 
842
+ #: ../admin-views/tribe-options-help.php:99
843
  #, php-format
844
  msgid ""
845
+ "<p>We love all our users and want to help free & PRO customers alike. If "
846
+ "you're running the latest version of The Events Calendar and are having "
847
+ "problems, post a thread at the %s on WordPress.org. We hit the forum once a "
848
+ "week to look for legitimate bug reports and do what we can to assist users.</"
849
+ "p>"
850
  msgstr ""
851
+ "<p>Nós amamos nossos usuários e queremos ajudá-los. Se você estiver "
852
+ "executando a versão mais recente do The Events Calendar e está tendo "
853
+ "problemas, coloque um tópico no %s em WordPress.org. Nós responderemos no "
854
+ "fórum uma vez por semana para procurar bugs e fazer o que pudermos para "
855
+ "ajudar os usuários. </p>"
856
 
857
+ #: ../admin-views/tribe-options-help.php:99
858
+ msgid "forum for The Events Calendar"
859
+ msgstr "fórum do The Events Calendar"
 
 
 
860
 
861
+ #: ../admin-views/tribe-options-help.php:100
862
  #, php-format
863
  msgid ""
864
+ "<p>If you need additional help, %sEvents Calendar Pro%s gets you access to "
865
+ "our support forums for a full year.</p>"
 
 
 
 
 
 
 
866
  msgstr ""
867
+ "<p> Se precisar de ajuda, %sEvents Calendar Pro%s permite acessar o fórum de "
868
+ "suporte por um ano.<p>"
869
 
870
+ #
871
+ #: ../admin-views/tribe-options-help.php:101
872
+ msgid "A few things to keep in mind before posting:"
873
+ msgstr "Antes de publicar, tenha em mente:"
 
 
 
874
 
875
+ #: ../admin-views/tribe-options-help.php:103
 
876
  msgid ""
877
+ "Search recent threads before posting a new one to check that there isn't "
878
+ "already a discussion about your issue."
879
+ msgstr "Procure tópicos antes de publicar um novo."
 
 
 
 
880
 
881
+ #: ../admin-views/tribe-options-help.php:104
 
882
  msgid ""
883
+ "Check whether the issue is a conflict with another plugin or your theme. "
884
+ "This can be tested easily on a staging site by deactivating other plugins "
885
+ "one-by-one, and reverting to the default Twenty Twelve theme to see if "
886
+ "conflicts can be easily identified. If you find a conflict, note it in a "
887
+ "support thread."
888
  msgstr ""
889
+ "Verifique se o problema é um conflito com outro plugin ou o seu tema. Isso "
890
+ "pode ser testado facilmente em um site de teste desativando outros plugins "
891
+ "um por um, e revertendo para o padrão Twenty Twelve tema para ver se os "
892
+ "conflitos podem ser facilmente identificados. Se você encontrar um conflito, "
893
+ "anote-o em um tópico de suporte."
894
 
895
+ #: ../admin-views/tribe-options-help.php:105
896
  #, php-format
897
  msgid ""
898
+ "Sometimes, resaving your permalinks (under <a href=\"%s\">Settings > "
899
+ "Permalinks</a>) can resolve events-related problems on your site. Before "
900
+ "creating a new thread try this handy trick."
 
 
901
  msgstr ""
902
+ "Às vezes, revisar seus permalinks (em <a href=\"%s\"> Configurações> "
903
+ "Permalinks </ a>) pode resolver problemas relacionados. Antes de criar um "
904
+ "novo tópico, tente este truque útil."
905
 
906
+ #: ../admin-views/tribe-options-help.php:107
907
  msgid ""
908
+ "While we are happy to help with bugs and provide light integration tips for "
909
+ "users of The Events Calendar, on the WordPress.org support forums we're not "
910
+ "able to provide customization tips or assist in integration with 3rd party "
911
+ "plugins."
 
912
  msgstr ""
913
+ "Enquanto nós estamos felizes em ajudar com os erros e dar dicas de "
914
+ "integração de luz para os usuários do The Events Calendar, em fóruns de "
915
+ "suporte WordPress.org nós não somos capazes de fornecer dicas de "
916
+ "personalização ou ajudar na integração com outros plugins."
917
 
918
+ #: ../admin-views/tribe-options-help.php:109
919
  #, php-format
920
  msgid ""
921
+ "Shoot us an email at %s or tweet %s and tell us why. We'll do what we can to "
922
+ "make it right."
 
 
 
 
 
 
 
 
 
 
923
  msgstr ""
924
+ "Envie-nos um e-mail para %s ou um tweet em %s e diga-nos porquê. Nós vamos "
925
  "fazer o que pudermos para fazer isso direito."
926
 
927
+ #: ../admin-views/tribe-options-help.php:110
928
  msgid "More..."
929
  msgstr "Mais..."
930
 
931
+ #: ../admin-views/tribe-options-help.php:117
932
  msgid ""
933
  "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
934
  "for installing our labor of love!"
936
  "Olá! Somos da Modern Tribe e estamos aqui para ajudar você a mandar ver! "
937
  "Muito obrigado por instalar nosso trabalho!"
938
 
939
+ #: ../admin-views/tribe-options-help.php:119
940
  msgid "Getting Started"
941
  msgstr "Primeiros Passos"
942
 
943
+ #: ../admin-views/tribe-options-help.php:126
944
+ msgid "Resources to Help You Kick Ass"
 
945
  msgstr "Recursos para ajudar você a mandar bem"
946
 
947
+ #: ../admin-views/tribe-options-help.php:138
948
+ msgid "Everyone Needs a Buddy"
 
949
  msgstr "Todo mundo precisa de um camarada"
950
 
951
+ #: ../admin-views/tribe-options-help.php:141
952
+ msgid "Still Not Satisfied?"
953
+ msgstr "Ainda não está Satisfeito?"
954
 
955
+ #: ../admin-views/tribe-options-help.php:151
956
+ #: ../lib/the-events-calendar.class.php:437
957
  #: ../lib/tribe-settings.class.php:135
958
  msgid "The Events Calendar"
959
  msgstr "The Events Calendar"
960
 
961
+ #: ../admin-views/tribe-options-help.php:155
962
  msgid "Latest Version:"
963
  msgstr "Última Versão:"
964
 
965
+ #: ../admin-views/tribe-options-help.php:156
966
  msgid "Author:"
967
  msgstr "Autor:"
968
 
969
+ #: ../admin-views/tribe-options-help.php:156
970
  msgid "Modern Tribe Inc"
971
  msgstr "Modern Tribe Inc"
972
 
973
+ #: ../admin-views/tribe-options-help.php:157
974
  msgid "Requires:"
975
  msgstr "Requer:"
976
 
977
+ #: ../admin-views/tribe-options-help.php:157
978
  msgid "WordPress "
979
  msgstr "WordPress "
980
 
981
+ #: ../admin-views/tribe-options-help.php:158
982
  msgid "Wordpress.org Plugin Page"
983
  msgstr "Página de Plugins do Worpress.org"
984
 
985
+ #: ../admin-views/tribe-options-help.php:163
986
  msgid "Average Rating"
987
  msgstr "Classificação média"
988
 
989
+ #: ../admin-views/tribe-options-help.php:167
990
  #, php-format
991
  msgid "Based on %d rating"
992
  msgid_plural "Based on %d ratings"
993
+ msgstr[0] "Baseado em %d avaliação"
994
  msgstr[1] "Baseado em %d avaliações"
995
 
996
+ #: ../admin-views/tribe-options-help.php:168
997
  msgid "Give us 5 stars!"
998
  msgstr "Dê 5 estrelas!"
999
 
1000
+ #: ../admin-views/tribe-options-help.php:171
1001
  msgid "Premium Add-Ons"
1002
  msgstr "Add-Ons Premium"
1003
 
1004
+ #: ../admin-views/tribe-options-help.php:177
1005
  msgid "(Coming Soon!)"
1006
  msgstr "(Em breve!)"
1007
 
1008
+ #: ../admin-views/tribe-options-help.php:184
1009
  msgid "News and Tutorials"
1010
  msgstr "Notícias e Tutoriais"
1011
 
1031
  msgstr "Nome do Local:"
1032
 
1033
  #: ../admin-views/venue-meta-box.php:27
1034
+ #: ../public/advanced-functions/meta.php:288
1035
  msgid "Address:"
1036
  msgstr "Endereço: "
1037
 
1075
  msgid "Show widget only if there are upcoming events:"
1076
  msgstr "Mostrar widget apenas se houver eventos futuros: "
1077
 
1078
+ #: ../admin-views/widget-admin-list.php:30
1079
+ #, php-format
1080
+ msgid "Want to modify the display of this widget? Try a %stemplate override%s."
1081
+ msgstr ""
1082
+ "Quer modificar a aparência deste widget? Tente um %stemplate override%s. "
 
 
 
 
1083
 
1084
+ #: ../lib/the-events-calendar.class.php:442
1085
+ msgid "month"
1086
+ msgstr "mês"
 
1087
 
1088
+ #: ../lib/the-events-calendar.class.php:443
1089
+ msgid "upcoming"
1090
+ msgstr "próximo"
 
1091
 
1092
+ #: ../lib/the-events-calendar.class.php:444
1093
+ msgid "past"
1094
+ msgstr "último"
 
1095
 
1096
+ #: ../lib/the-events-calendar.class.php:446
1097
+ msgid "venue"
1098
+ msgstr "local"
1099
 
1100
+ #: ../lib/the-events-calendar.class.php:460
1101
+ #, php-format
1102
+ msgid "Initializing Tribe Events on %s"
1103
+ msgstr "Inicilizando Tribe Events em %s"
1104
 
1105
+ #: ../lib/the-events-calendar.class.php:552
1106
  #, php-format
1107
+ msgid ""
1108
+ "Your version of The Events Calendar is not up-to-date with one of your The "
1109
+ "Events Calendar add-ons. Please %supdate now.%s"
1110
+ msgstr ""
1111
+ "Sua versão do The Events Calendar não está atualizada com os nossos Add-On "
1112
+ "do The Events Calendar. Por favor, %satualize agora.%s"
1113
 
1114
+ #: ../lib/the-events-calendar.class.php:566
1115
  #, php-format
1116
+ msgid ""
1117
+ "The following plugins are out of date: <b>%s</b>. Please %supdate now%s. All "
1118
+ "add-ons contain dependencies on The Events Calendar and will not function "
1119
+ "properly unless paired with the right version. %sWant to pair an older "
1120
+ "version%s?"
1121
+ msgstr ""
1122
+ "Os seguintes plugins estão desatualizados: <b>%s</b>. Por favor %satualize "
1123
+ "agora%s. Todos os add-ons dependem do The Events Calendar e não irão "
1124
+ "funcionar corretamente a menos que estejam alinhados com a versão correta. "
1125
+ "%sQuer alinhar com uma versão mais antiga%s?"
1126
 
1127
+ #: ../lib/the-events-calendar.class.php:623
1128
+ #: ../lib/the-events-calendar.class.php:651
1129
+ #: ../lib/the-events-calendar.class.php:653
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1130
  msgid "Licenses"
1131
  msgstr "Licenças"
1132
 
1133
+ #: ../lib/the-events-calendar.class.php:627
1134
  #, php-format
1135
  msgid ""
1136
+ "<p>The license key you received when completing your purchase from http://"
1137
+ "tri.be will grant you access to support and updates until it expires. You do "
1138
+ "not need to enter the key below for the plugins to work, but you will need "
1139
+ "to enter it to get automatic updates. <strong>Find your license keys at <a "
1140
+ "href=\"%s\">%s</a></strong>.</p> <p>Each paid add-on has its own unique "
1141
+ "license key. Simply paste the key into its appropriate field on below, and "
1142
+ "give it a moment to validate. You know you're set when a green expiration "
1143
+ "date appears alongside a \"valid\" message.</p> <p>If you're seeing a red "
1144
+ "message telling you that your key isn't valid or is out of installs, visit "
1145
+ "[enter link to account/licenses] to manage your installs or renew / upgrade "
1146
+ "your license.</p><p>Not seeing an update but expecting one? In WordPress, go "
1147
+ "to <a href=\"%s\">Dashboard > Updates</a> and click \"Check Again\".</p>"
 
1148
  msgstr ""
1149
+ "<p> A chave de licença que você recebeu quando fez sua compra em http://tri."
1150
+ "be irá conceder-lhe o acesso ao suporte e atualizações até que ela expire. "
1151
+ "Você não precisa digitar a chave abaixo para que os plugins funcionem, mas "
1152
+ "irá precisar digitá-la para obter atualizações automáticas. <strong>Encontre "
1153
  "suas chaves de licença em <a href=\"%s\">%s </a> </strong>. </p> Cada add-on "
1154
  "pago tem a sua própria chave de licença única. Basta colar a chave em seu "
1155
  "campo apropriado abaixo e esperar um momento para validar. Você saberá se "
1156
  "estiver tudo OK quando a data de validade verde aparecer ao lado do termo "
1157
+ "\"válido\". </p> Se você está vendo uma mensagem em vermelho dizendo que sua "
1158
+ "chave não é válida ou está fora da instalação , visite [enter link to "
1159
+ "account/licenses] para gerenciar suas instalações ou renovar / atualizar sua "
1160
+ "licença. </p> Não está vendo uma atualização, mas está esperando por uma? No "
1161
+ "WordPress, vá para <a href=\"%s\"> Painel> Atualizações </ a> e clique em "
1162
+ "\"Verificar Novamente\". </p>"
1163
+
1164
+ #: ../lib/the-events-calendar.class.php:643
1165
  msgid "General"
1166
  msgstr "Geral"
1167
 
1168
  #
1169
+ #: ../lib/the-events-calendar.class.php:644
1170
  msgid "Display"
1171
  msgstr "Exibir"
1172
 
1173
+ #: ../lib/the-events-calendar.class.php:689
1174
  #, php-format
1175
  msgid ""
1176
  "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
1179
  "Desculpe, o The Events Calendar exige WordPress %s ou superior. Por favor, "
1180
  "atualize sua versão do WordPress."
1181
 
1182
+ #: ../lib/the-events-calendar.class.php:692
1183
  #, php-format
1184
  msgid ""
1185
  "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
1188
  "Desculpe, o The Events Calendar exige PHP %s ou superior. Converse com seu "
1189
  "provedor sobre a mudança para uma versão mais recente de PHP."
1190
 
1191
+ #: ../lib/the-events-calendar.class.php:839 ../lib/widget-list.class.php:116
1192
+ #: ../public/template-tags/loop.php:135 ../public/template-tags/loop.php:138
1193
  msgid "Upcoming Events"
1194
  msgstr "Próximos eventos"
1195
 
1196
+ #: ../lib/the-events-calendar.class.php:841
1197
+ #: ../public/template-tags/loop.php:174
1198
  msgid "Past Events"
1199
  msgstr "Eventos Passados"
1200
 
1201
+ #: ../lib/the-events-calendar.class.php:846
1202
+ #: ../lib/the-events-calendar.class.php:853
1203
  #, php-format
1204
  msgid "Events for %s"
1205
  msgstr "Eventos para %s"
1206
 
1207
+ #: ../lib/the-events-calendar.class.php:848
1208
  msgid "Events this month"
1209
  msgstr "Eventos este mês"
1210
 
1211
+ #: ../lib/the-events-calendar.class.php:859
1212
  #, php-format
1213
  msgid "Events at %s"
1214
  msgstr "Eventos em %s"
1215
 
1216
+ #: ../lib/the-events-calendar.class.php:872
1217
  msgid "No description has been entered for this event."
1218
  msgstr "Nenhuma descrição foi adicionada para este evento."
1219
 
1220
+ #: ../lib/the-events-calendar.class.php:1119
1221
  msgid "category"
1222
  msgstr "categoria"
1223
 
1224
+ #: ../lib/the-events-calendar.class.php:1124
1225
  msgid "tag"
1226
  msgstr "tag"
1227
 
1228
+ #: ../lib/the-events-calendar.class.php:1138
1229
+ #: ../lib/the-events-calendar.class.php:3306
1230
+ #: ../lib/the-events-calendar.class.php:3366
1231
  msgid "Events"
1232
  msgstr "Eventos"
1233
 
1234
+ #: ../lib/the-events-calendar.class.php:1139
1235
  msgid "Event"
1236
  msgstr "Evento"
1237
 
1238
+ #: ../lib/the-events-calendar.class.php:1140
1239
+ #: ../lib/the-events-calendar.class.php:1153
1240
+ #: ../lib/the-events-calendar.class.php:1166
1241
  msgid "Add New"
1242
  msgstr "Adicionar Novo"
1243
 
1244
+ #: ../lib/the-events-calendar.class.php:1141
1245
  msgid "Add New Event"
1246
  msgstr "Adicionar evento"
1247
 
1248
+ #: ../lib/the-events-calendar.class.php:1142
1249
  msgid "Edit Event"
1250
  msgstr "Editar evento"
1251
 
1252
+ #: ../lib/the-events-calendar.class.php:1143
1253
  msgid "New Event"
1254
  msgstr "Novo evento"
1255
 
1256
+ #: ../lib/the-events-calendar.class.php:1144
1257
  msgid "View Event"
1258
  msgstr "Visualizar evento"
1259
 
1260
+ #: ../lib/the-events-calendar.class.php:1145
1261
  msgid "Search Events"
1262
  msgstr "Procurar Eventos"
1263
 
1264
+ #: ../lib/the-events-calendar.class.php:1146
1265
  msgid "No events found"
1266
  msgstr "Nenhum evento encontrado"
1267
 
1268
+ #: ../lib/the-events-calendar.class.php:1147
1269
  msgid "No events found in Trash"
1270
  msgstr "Nenhum evento encontrado na Lixeira"
1271
 
1272
+ #: ../lib/the-events-calendar.class.php:1151
1273
+ #: ../lib/the-events-calendar.class.php:1257
1274
  msgid "Venues"
1275
  msgstr "Locais"
1276
 
1277
+ #: ../lib/the-events-calendar.class.php:1152
1278
+ #: ../public/advanced-functions/meta.php:248 ../views/tickets-email.php:320
1279
  msgid "Venue"
1280
  msgstr "Local"
1281
 
1282
+ #: ../lib/the-events-calendar.class.php:1154
1283
  msgid "Add New Venue"
1284
  msgstr "Adicionar novo Local"
1285
 
1286
+ #: ../lib/the-events-calendar.class.php:1155
1287
  msgid "Edit Venue"
1288
  msgstr "Editar Local"
1289
 
1290
+ #: ../lib/the-events-calendar.class.php:1156
1291
  msgid "New Venue"
1292
  msgstr "Novo Local"
1293
 
1294
+ #: ../lib/the-events-calendar.class.php:1157
1295
  msgid "View Venue"
1296
  msgstr "Ver Local"
1297
 
1298
+ #: ../lib/the-events-calendar.class.php:1158
1299
  msgid "Search Venues"
1300
  msgstr "Procurar Locais"
1301
 
1302
+ #: ../lib/the-events-calendar.class.php:1159
1303
  msgid "No venue found"
1304
  msgstr "Nenhum local encontrado"
1305
 
1306
+ #: ../lib/the-events-calendar.class.php:1160
1307
  msgid "No venues found in Trash"
1308
  msgstr "Nenhum local encontrado na Lixeira"
1309
 
1310
+ #: ../lib/the-events-calendar.class.php:1164
1311
+ #: ../lib/the-events-calendar.class.php:1258
1312
  msgid "Organizers"
1313
  msgstr "Organizadores"
1314
 
1315
+ #: ../lib/the-events-calendar.class.php:1165
1316
+ #: ../public/advanced-functions/meta.php:310 ../views/tickets-email.php:339
1317
  msgid "Organizer"
1318
  msgstr "Orgazanidor"
1319
 
1320
+ #: ../lib/the-events-calendar.class.php:1167
1321
  msgid "Add New Organizer"
1322
  msgstr "Adicionar novo Organizador"
1323
 
1324
+ #: ../lib/the-events-calendar.class.php:1168
1325
  msgid "Edit Organizer"
1326
  msgstr "Editar Organizador"
1327
 
1328
+ #: ../lib/the-events-calendar.class.php:1169
1329
  msgid "New Organizer"
1330
  msgstr "Novo Organizador"
1331
 
1332
  #
1333
+ #: ../lib/the-events-calendar.class.php:1170
1334
  msgid "View Organizer"
1335
  msgstr "Ver organizador"
1336
 
1337
+ #: ../lib/the-events-calendar.class.php:1171
1338
  msgid "Search Organizers"
1339
  msgstr "Procurar Organizadores"
1340
 
1341
+ #: ../lib/the-events-calendar.class.php:1172
1342
  msgid "No organizer found"
1343
  msgstr "Nenhum organizador encontrardo"
1344
 
1345
+ #: ../lib/the-events-calendar.class.php:1173
1346
  msgid "No organizers found in Trash"
1347
  msgstr "Nenhum organizador encontrado na Lixeira"
1348
 
1349
+ #: ../lib/the-events-calendar.class.php:1177
1350
+ #: ../lib/tribe-admin-events-list.class.php:181
1351
  msgid "Event Categories"
1352
  msgstr "Categorias de Evento"
1353
 
1354
+ #: ../lib/the-events-calendar.class.php:1178
1355
+ #: ../public/template-tags/general.php:295
1356
  msgid "Event Category"
1357
  msgstr "Categoria de Evento"
1358
 
1359
+ #: ../lib/the-events-calendar.class.php:1179
1360
  msgid "Search Event Categories"
1361
  msgstr "Procurar nas Categorias de Evento"
1362
 
1363
+ #: ../lib/the-events-calendar.class.php:1180
1364
  msgid "All Event Categories"
1365
  msgstr "Todas as Categorias de Evento"
1366
 
1367
+ #: ../lib/the-events-calendar.class.php:1181
1368
  msgid "Parent Event Category"
1369
  msgstr "Categorias-Mãe de Eventos"
1370
 
1371
+ #: ../lib/the-events-calendar.class.php:1182
1372
  msgid "Parent Event Category:"
1373
  msgstr "Categoria-Mãe do Evento:"
1374
 
1375
+ #: ../lib/the-events-calendar.class.php:1183
1376
  msgid "Edit Event Category"
1377
  msgstr "Editar Categoria de Evento"
1378
 
1379
+ #: ../lib/the-events-calendar.class.php:1184
1380
  msgid "Update Event Category"
1381
  msgstr "Atualizar Categoria de Evento"
1382
 
1383
+ #: ../lib/the-events-calendar.class.php:1185
1384
  msgid "Add New Event Category"
1385
  msgstr "Adicionar Nova Categoria de Evento"
1386
 
1387
+ #: ../lib/the-events-calendar.class.php:1186
1388
  msgid "New Event Category Name"
1389
  msgstr "Nome da Nova Categoria de Evento"
1390
 
1391
+ #: ../lib/the-events-calendar.class.php:1196
1392
  #, php-format
1393
  msgid "Event updated. <a href=\"%s\">View event</a>"
1394
  msgstr "Evento atualizado. <a href=\"%s\">Ver evento</a>"
1395
 
1396
+ #: ../lib/the-events-calendar.class.php:1197
1397
+ #: ../lib/the-events-calendar.class.php:1214
1398
+ #: ../lib/the-events-calendar.class.php:1231
1399
  msgid "Custom field updated."
1400
  msgstr "Campo Personalizado atualizado."
1401
 
1402
+ #: ../lib/the-events-calendar.class.php:1198
1403
+ #: ../lib/the-events-calendar.class.php:1215
1404
+ #: ../lib/the-events-calendar.class.php:1232
1405
  msgid "Custom field deleted."
1406
  msgstr "Campo personalizado apagado."
1407
 
1408
+ #: ../lib/the-events-calendar.class.php:1199
1409
  msgid "Event updated."
1410
  msgstr "Evento atualizado."
1411
 
1412
+ #: ../lib/the-events-calendar.class.php:1201
1413
  #, php-format
1414
  msgid "Event restored to revision from %s"
1415
  msgstr "Evento restaurado para revisão de %s"
1416
 
1417
+ #: ../lib/the-events-calendar.class.php:1202
1418
  #, php-format
1419
  msgid "Event published. <a href=\"%s\">View event</a>"
1420
  msgstr "Evento publicado. <a href=\"%s\">Ver evento</a>"
1421
 
1422
+ #: ../lib/the-events-calendar.class.php:1203
1423
  msgid "Event saved."
1424
  msgstr "Evento salvo."
1425
 
1426
+ #: ../lib/the-events-calendar.class.php:1204
1427
  #, php-format
1428
  msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1429
  msgstr "Evento enviado. <a target=\"_blank\" href=\"%s\">Ver evento</a>"
1430
 
1431
+ #: ../lib/the-events-calendar.class.php:1205
1432
  #, php-format
1433
  msgid ""
1434
  "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1437
  "Evento agendado por: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1438
  "\">Ver Evento</a>"
1439
 
1440
+ #: ../lib/the-events-calendar.class.php:1207
1441
+ #: ../lib/the-events-calendar.class.php:1224
1442
+ #: ../lib/the-events-calendar.class.php:1241
1443
  msgid "M j, Y @ G:i"
1444
  msgstr "M j, Y @ G:i"
1445
 
1446
+ #: ../lib/the-events-calendar.class.php:1208
1447
  #, php-format
1448
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1449
  msgstr ""
1450
  "Rascunho do evento atualizado.<a target=\"_blank\" href=\"%s\">Ver evento</a>"
1451
 
1452
+ #: ../lib/the-events-calendar.class.php:1213
1453
  #, php-format
1454
  msgid "Venue updated. <a href=\"%s\">View venue</a>"
1455
  msgstr "Local atualizado. <a href=\"%s\">Ver local</a>"
1456
 
1457
+ #: ../lib/the-events-calendar.class.php:1216
1458
  msgid "Venue updated."
1459
  msgstr "Local atualizado."
1460
 
1461
+ #: ../lib/the-events-calendar.class.php:1218
1462
  #, php-format
1463
  msgid "Venue restored to revision from %s"
1464
  msgstr "Local restaurado para revisão de %s"
1465
 
1466
+ #: ../lib/the-events-calendar.class.php:1219
1467
  #, php-format
1468
  msgid "Venue published. <a href=\"%s\">View venue</a>"
1469
  msgstr "Local publicado. <a href=\"%s\">Ver local</a>"
1470
 
1471
+ #: ../lib/the-events-calendar.class.php:1220
1472
  msgid "Venue saved."
1473
  msgstr "Local salvo."
1474
 
1475
+ #: ../lib/the-events-calendar.class.php:1221
1476
  #, php-format
1477
  msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1478
  msgstr "Local submetido. <a target=\"_blank\" href=\"%s\">Ver local</a>"
1479
 
1480
+ #: ../lib/the-events-calendar.class.php:1222
1481
  #, php-format
1482
  msgid ""
1483
  "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1486
  "Local agendado por: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1487
  "\">Ver local</a>"
1488
 
1489
+ #: ../lib/the-events-calendar.class.php:1225
1490
  #, php-format
1491
  msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1492
  msgstr ""
1493
  "Rascunho de Local atualizado. <a target=\"_blank\" href=\"%s\">Ver local</a>"
1494
 
1495
+ #: ../lib/the-events-calendar.class.php:1230
1496
  #, php-format
1497
  msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1498
  msgstr "Organizador atualizado. <a href=\"%s\">Ver organizador</a>"
1499
 
1500
+ #: ../lib/the-events-calendar.class.php:1233
1501
  msgid "Organizer updated."
1502
  msgstr "Organizador atualizado."
1503
 
1504
+ #: ../lib/the-events-calendar.class.php:1235
1505
  #, php-format
1506
  msgid "Organizer restored to revision from %s"
1507
  msgstr "Organizador restaurado para revisão de %s"
1508
 
1509
+ #: ../lib/the-events-calendar.class.php:1236
1510
  #, php-format
1511
  msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1512
  msgstr "Organizdor publicado. <a href=\"%s\">Ver organizador</a>"
1513
 
1514
+ #: ../lib/the-events-calendar.class.php:1237
1515
  msgid "Organizer saved."
1516
  msgstr "Organizador salvo."
1517
 
1518
+ #: ../lib/the-events-calendar.class.php:1238
1519
  #, php-format
1520
  msgid ""
1521
  "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1522
  msgstr ""
1523
  "Organizador submetido. <a target=\"_blank\" href=\"%s\">Ver organizador</a>"
1524
 
1525
+ #: ../lib/the-events-calendar.class.php:1239
1526
  #, php-format
1527
  msgid ""
1528
  "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
1531
  "Organizador agendado por: <strong>%1$s</strong>. <a target=\"_blank\" href="
1532
  "\"%2$s\">Ver organizador</a>"
1533
 
1534
+ #: ../lib/the-events-calendar.class.php:1242
1535
  #, php-format
1536
  msgid ""
1537
  "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
1540
  "Rascunho de organizador atualizado.<a target=\"_blank\" href=\"%s\">Ver "
1541
  "organizador</a>"
1542
 
1543
+ #: ../lib/the-events-calendar.class.php:1284
1544
  msgid "Use Saved Venue:"
1545
  msgstr "Usar local já cadastrado:"
1546
 
1547
+ #: ../lib/the-events-calendar.class.php:1313
1548
  msgid "Use Saved Organizer:"
1549
  msgstr "Usar organizador já cadastrado:"
1550
 
1551
  #
1552
+ #: ../lib/the-events-calendar.class.php:1349
1553
  msgid "Use New Venue"
1554
  msgstr "Usar novo local"
1555
 
1556
  #
1557
+ #: ../lib/the-events-calendar.class.php:1351
1558
  msgid "My Venues"
1559
  msgstr "Meus locais"
1560
 
1561
+ #: ../lib/the-events-calendar.class.php:1356
1562
  msgid "Available Venues"
1563
  msgstr "Locais disponíveis"
1564
 
1565
  #
1566
+ #: ../lib/the-events-calendar.class.php:1367
1567
  msgid "No saved venue exists."
1568
  msgstr "Nenhum local gravado."
1569
 
1570
  #
1571
+ #: ../lib/the-events-calendar.class.php:1401
1572
  msgid "Use New Organizer"
1573
  msgstr "Usar novo organizador"
1574
 
1575
+ #: ../lib/the-events-calendar.class.php:1403
1576
  msgid "My Organizers"
1577
  msgstr "Organizadores"
1578
 
1579
+ #: ../lib/the-events-calendar.class.php:1408
1580
  msgid "Available Organizers"
1581
  msgstr "Organizadores"
1582
 
1583
  #
1584
+ #: ../lib/the-events-calendar.class.php:1419
1585
  msgid "No saved organizer exists."
1586
  msgstr "Nenhum organizador gravado."
1587
 
1588
+ #: ../lib/the-events-calendar.class.php:1530
1589
  msgid "Next"
1590
  msgstr "Próximo"
1591
 
1592
+ #: ../lib/the-events-calendar.class.php:1531
1593
  msgid "Prev"
1594
  msgstr "Anterior"
1595
 
1596
+ #: ../lib/the-events-calendar.class.php:1532
1597
  msgid "Today"
1598
  msgstr "Hoje"
1599
 
1600
+ #: ../lib/the-events-calendar.class.php:1533
1601
  msgid "Done"
1602
  msgstr "Feito"
1603
 
1604
+ #: ../lib/the-events-calendar.class.php:1718
1605
  msgid "Network"
1606
  msgstr "Rede"
1607
 
1608
  #
1609
+ #: ../lib/the-events-calendar.class.php:2502
1610
  msgid "Unnamed Venue"
1611
  msgstr "Local sem nome"
1612
 
1613
  #
1614
+ #: ../lib/the-events-calendar.class.php:2585
1615
  msgid "Unnamed Organizer"
1616
  msgstr "Organizador sem nome"
1617
 
1618
+ #: ../lib/the-events-calendar.class.php:3065
1619
  msgid "Event Options"
1620
  msgstr "Opções de Evento"
1621
 
1622
+ #: ../lib/the-events-calendar.class.php:3067
1623
  msgid "Venue Information"
1624
  msgstr "Informações do Local"
1625
 
1626
+ #: ../lib/the-events-calendar.class.php:3068
1627
  msgid "Organizer Information"
1628
  msgstr "Informações do Organizador"
1629
 
1630
+ #: ../lib/the-events-calendar.class.php:3207
1631
  msgid "Support"
1632
  msgstr "Suporte"
1633
 
1634
+ #: ../lib/the-events-calendar.class.php:3210
1635
  msgid "View All Add-Ons"
1636
  msgstr "Ver todos os Add-Ons"
1637
 
1638
+ #: ../lib/the-events-calendar.class.php:3217
1639
  msgid "News from Modern Tribe"
1640
  msgstr "Notícias da Modern Tribe"
1641
 
1642
+ #: ../lib/the-events-calendar.class.php:3262
1643
  msgid "Additional Functionality"
1644
  msgstr "Funcionalidade Adicional"
1645
 
1646
+ #: ../lib/the-events-calendar.class.php:3267
1647
  msgid ""
1648
  "Looking for additional functionality including recurring events, ticket "
1649
  "sales, publicly submitted events, new views and more?"
1651
  "Precisa de funcionalidades adicionais, como eventos recorrentes, venda de "
1652
  "ingressos, eventos públicos, novos pontos de vista e mais?"
1653
 
1654
+ #: ../lib/the-events-calendar.class.php:3267
1655
  #, php-format
1656
  msgid "Check out the <a href=\"%s\">available add-ons</a>."
1657
  msgstr "Confira os <a href=\"%s\">add-ons disponíveis</a>."
1658
 
1659
+ #: ../lib/the-events-calendar.class.php:3332
1660
+ #: ../lib/the-events-calendar.class.php:3423
1661
  msgid "View Calendar"
1662
  msgstr "Ver Calendário"
1663
 
1664
+ #: ../lib/the-events-calendar.class.php:3340
1665
  msgid "Add Event"
1666
  msgstr "Adicionar Evento"
1667
 
1668
+ #: ../lib/the-events-calendar.class.php:3349
1669
  msgid "Edit Events"
1670
  msgstr "Editar Eventos"
1671
 
1672
+ #: ../lib/the-events-calendar.class.php:3358
1673
+ #: ../lib/the-events-calendar.class.php:3459
1674
  #: ../lib/tribe-settings.class.php:164
1675
  msgid "Settings"
1676
  msgstr "Configurações"
1677
 
1678
+ #: ../lib/the-events-calendar.class.php:3394
1679
  #, php-format
1680
  msgid ""
1681
  "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
1685
  "encontrado em %s. Para mudar a slug dos eventos, visite %sEventos -> "
1686
  "Configurações%s."
1687
 
1688
+ #: ../lib/the-events-calendar.class.php:3460
1689
  msgid "Calendar"
1690
  msgstr "Calendário"
1691
 
1692
+ #: ../lib/the-events-calendar.class.php:3512
1693
  msgid "List"
1694
  msgstr "Lista"
1695
 
1696
  #
1697
+ #: ../lib/the-events-calendar.class.php:3517
1698
  msgid "Month"
1699
  msgstr "Mês"
1700
 
1701
  #
1702
+ #: ../lib/the-events-calendar.class.php:3545
1703
  msgid "Date"
1704
  msgstr "Data"
1705
 
1706
  #
1707
+ #: ../lib/the-events-calendar.class.php:3548
1708
  msgid "Events In"
1709
  msgstr "Eventos em"
1710
 
1711
  #
1712
+ #: ../lib/the-events-calendar.class.php:3550
1713
  msgid "Events From"
1714
  msgstr "Eventos de"
1715
 
1716
+ #: ../lib/the-events-calendar.class.php:3720 ../views/list/nav.php:21
1717
+ #: ../views/list/nav.php:27 ../views/list/nav.php:30
1718
  msgid "&laquo; Previous Events"
1719
  msgstr "&laquo; eventos anteriores"
1720
 
1721
+ #: ../lib/the-events-calendar.class.php:3721 ../views/list/nav.php:39
1722
+ #: ../views/list/nav.php:42 ../views/list/nav.php:48
1723
  msgid "Next Events &raquo;"
1724
  msgstr "Próximos eventos &raquo;"
1725
 
1726
+ #: ../lib/tribe-admin-events-list.class.php:41
1727
  #, php-format
1728
  msgid "View &#8220;%s&#8221;"
1729
  msgstr "Veja &#8220;%s&#8221;"
1730
 
1731
+ #: ../lib/tribe-admin-events-list.class.php:186
1732
  msgid "Start Date"
1733
  msgstr "Data de ínício"
1734
 
1735
+ #: ../lib/tribe-admin-events-list.class.php:187
1736
  msgid "End Date"
1737
  msgstr "Data de término"
1738
 
1739
+ #: ../lib/tribe-admin-events-list.class.php:189
1740
  msgid "Recurring?"
1741
  msgstr "Periodicidade?"
1742
 
1743
+ #: ../lib/tribe-admin-events-list.class.php:233
1744
  #: ../lib/tickets/tribe-tickets-pro.php:229
1745
  msgid "Yes"
1746
  msgstr "Sim"
1747
 
1748
+ #: ../lib/tribe-admin-events-list.class.php:233
1749
  msgid "No"
1750
  msgstr "Não"
1751
 
1752
+ #: ../lib/tribe-admin-events-list.class.php:287
1753
  #, php-format
1754
  msgid "All %s"
1755
  msgstr "Todos %s"
1756
 
1757
+ #: ../lib/tribe-app-shop.class.php:53 ../lib/tribe-app-shop.class.php:54
1758
+ #: ../lib/tribe-app-shop.class.php:72
1759
  msgid "Event Add-Ons"
1760
  msgstr "Add-Ons do Evento"
1761
 
1762
+ #: ../lib/tribe-debug-bar.class.php:18
1763
  msgid "Tribe"
1764
  msgstr "Tribe"
1765
 
1766
+ #: ../lib/tribe-event-api.class.php:308 ../lib/tribe-view-helpers.class.php:36
1767
+ #: ../public/template-tags/venue.php:232
1768
  msgid "United States"
1769
  msgstr "Estados Unidos"
1770
 
1773
  msgid "Error"
1774
  msgstr "Erro"
1775
 
1776
+ #: ../lib/tribe-field.class.php:163
1777
  msgid "Invalid field type specified"
1778
  msgstr "Tipo de campo especificado inválido"
1779
 
1780
+ #: ../lib/tribe-field.class.php:415
1781
  msgid "No radio options specified"
1782
  msgstr "Nenhuma opção de rádio especificada"
1783
 
1784
+ #: ../lib/tribe-field.class.php:452
1785
  msgid "No checkbox options specified"
1786
  msgstr "Nenhuma opção de checkbox especificada"
1787
 
1788
+ #: ../lib/tribe-field.class.php:506
1789
  msgid "No select options specified"
1790
  msgstr "Nenhuma opção de seleção especificada"
1791
 
1792
+ #: ../lib/tribe-settings-tab.class.php:220
1793
  msgid "There are no fields setup for this tab yet."
1794
  msgstr "Não há configurações de campos para esta aba ainda."
1795
 
1851
  msgid "Settings saved."
1852
  msgstr "Configurações salvas."
1853
 
1854
+ #: ../lib/tribe-template-factory.class.php:143
1855
  #, php-format
1856
  msgid "There were no results found for <strong>\"%s\"</strong>."
1857
  msgstr "Sem resultados para <strong>\"%s\"</strong>."
1858
 
1859
+ #: ../lib/tribe-template-factory.class.php:153
1860
  #, php-format
1861
  msgid ""
1862
  "listed under %s. Check out past events for this category or view the full "
1865
  "listado em %s. Confira outros eventos para esta categoria ou veja o "
1866
  "calendário completo."
1867
 
1868
+ #: ../lib/tribe-template-factory.class.php:155
1869
  #, php-format
1870
  msgid ""
1871
  "listed under %s. Check out upcoming events for this category or view the "
1874
  "listado em %s. Confira os próximos eventos desta categoria ou veja o "
1875
  "calendário completo."
1876
 
1877
+ #: ../lib/tribe-template-factory.class.php:159
1878
  #, php-format
1879
  msgid "No events scheduled for <strong>%s</strong>. Please try another day."
1880
  msgstr ""
1881
  "Nenhum evento agendado para <strong>%s</strong>. Por favor, tente outra data."
1882
 
1883
  #
1884
+ #: ../lib/tribe-template-factory.class.php:163
1885
  msgid "No upcoming events "
1886
  msgstr "Sem nenhum evento agendado."
1887
 
1888
  #
1889
+ #: ../lib/tribe-template-factory.class.php:165
1890
  msgid "No matching events "
1891
  msgstr "Eventos não encontrados."
1892
 
1893
  #
1894
+ #: ../lib/tribe-template-factory.class.php:168
1895
  msgid "No previous events "
1896
  msgstr "Nenhum evento anterior."
1897
 
1898
+ #: ../lib/tribe-the-events-calendar-import.class.php:44
 
1899
  msgid ""
1900
  "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure "
1901
+ "you have backed up before proceeding any further. You can easily <a href=\" "
1902
+ "http://wordpress.org/extend/plugins/the-events-calendar/download/\">revert "
1903
+ "to an old version</a> if you want to backup first. This upgrade includes two "
1904
+ "major steps, <a href=\"edit.php?post_type="
 
 
 
 
 
 
1905
  msgstr ""
1906
+ "Bem vindo ao Events 2.0! Esta é uma GRANDE atualização desde a versão 1.6.5. "
1907
+ "Por favor, realize um backup antes de prosseguir. Você pode facilmente <a "
1908
+ "href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/"
1909
+ "\">reverter para uma versão anterior</a> se quiser realizar o backup "
1910
+ "primeiro. Este upgrade inclui duas grandes etapas, <a href=\"edit.php?"
1911
+ "post_type="
1912
+
1913
+ #: ../lib/tribe-the-events-calendar-import.class.php:54
1914
  msgid "Upgrade from The Events Calendar"
1915
  msgstr "Atualizar do The Events Calendar"
1916
 
1917
+ #: ../lib/tribe-the-events-calendar-import.class.php:55
1918
  msgid ""
1919
  "It appears that you have some old events calendar data that needs to be "
1920
  "upgraded. Please be sure to back up your database before initiating the "
1921
  "upgrade. This process can not be undone."
1922
  msgstr ""
1923
+ "Aparentemente você possui informações antigas do calendário de eventos que "
1924
+ "precisam ser atualizadas. Por favor, faça um backup de sua base de dados "
1925
+ "antes de iniciar a atualização. Este processo não pode ser desfeito."
1926
 
1927
+ #: ../lib/tribe-the-events-calendar-import.class.php:56
1928
  msgid "Migrate Data!"
1929
  msgstr "Migrar Dados!"
1930
 
1931
+ #: ../lib/tribe-the-events-calendar-import.class.php:132
1932
  #, php-format
1933
  msgid "You successfully migrated (%d) entries."
1934
  msgstr "Você migrou com sucesso (%d) entradas."
1935
 
1936
+ #: ../lib/tribe-the-events-calendar-import.class.php:203
1937
  msgid "Install has 1 or more legacy event!"
1938
  msgstr "A instalação possui 1 ou mais eventos de legado!"
1939
 
2044
  "A listagem de países deve ser formatada com um país por linha, no seguinte "
2045
  "formato: <br/>US, Estados Unidos <br/> UK, Reino Unido."
2046
 
2047
+ #: ../lib/tribe-view-helpers.class.php:16
2048
+ #: ../lib/tribe-view-helpers.class.php:35
2049
  msgid "Select a Country:"
2050
  msgstr "Selecione um País:"
2051
 
2052
+ #: ../lib/tribe-view-helpers.class.php:37
2053
  msgid "Afghanistan"
2054
  msgstr "Afeganistão"
2055
 
2056
+ #: ../lib/tribe-view-helpers.class.php:38
2057
  msgid "Albania"
2058
  msgstr "Albania"
2059
 
2060
+ #: ../lib/tribe-view-helpers.class.php:39
2061
  msgid "Algeria"
2062
  msgstr "Algeria"
2063
 
2064
+ #: ../lib/tribe-view-helpers.class.php:40
2065
  msgid "American Samoa"
2066
  msgstr "American Samoa"
2067
 
2068
+ #: ../lib/tribe-view-helpers.class.php:41
2069
  msgid "Andorra"
2070
  msgstr "Andorra"
2071
 
2072
+ #: ../lib/tribe-view-helpers.class.php:42
2073
  msgid "Angola"
2074
  msgstr "Angola"
2075
 
2076
+ #: ../lib/tribe-view-helpers.class.php:43
2077
  msgid "Anguilla"
2078
  msgstr "Anguilla"
2079
 
2080
+ #: ../lib/tribe-view-helpers.class.php:44
2081
  msgid "Antarctica"
2082
  msgstr "Antarctica"
2083
 
2084
+ #: ../lib/tribe-view-helpers.class.php:45
2085
  msgid "Antigua And Barbuda"
2086
  msgstr "Antigua And Barbuda"
2087
 
2088
+ #: ../lib/tribe-view-helpers.class.php:46
2089
  msgid "Argentina"
2090
  msgstr "Argentina"
2091
 
2092
+ #: ../lib/tribe-view-helpers.class.php:47
2093
  msgid "Armenia"
2094
  msgstr "Armenia"
2095
 
2096
+ #: ../lib/tribe-view-helpers.class.php:48
2097
  msgid "Aruba"
2098
  msgstr "Aruba"
2099
 
2100
+ #: ../lib/tribe-view-helpers.class.php:49
2101
  msgid "Australia"
2102
  msgstr "Australia"
2103
 
2104
+ #: ../lib/tribe-view-helpers.class.php:50
2105
  msgid "Austria"
2106
  msgstr "Austria"
2107
 
2108
+ #: ../lib/tribe-view-helpers.class.php:51
2109
  msgid "Azerbaijan"
2110
  msgstr "Azerbaijan"
2111
 
2112
+ #: ../lib/tribe-view-helpers.class.php:52
2113
  msgid "Bahamas"
2114
  msgstr "Bahamas"
2115
 
2116
+ #: ../lib/tribe-view-helpers.class.php:53
2117
  msgid "Bahrain"
2118
  msgstr "Bahrain"
2119
 
2120
+ #: ../lib/tribe-view-helpers.class.php:54
2121
  msgid "Bangladesh"
2122
  msgstr "Bangladesh"
2123
 
2124
+ #: ../lib/tribe-view-helpers.class.php:55
2125
  msgid "Barbados"
2126
  msgstr "Barbados"
2127
 
2128
+ #: ../lib/tribe-view-helpers.class.php:56
2129
  msgid "Belarus"
2130
  msgstr "Belarus"
2131
 
2132
+ #: ../lib/tribe-view-helpers.class.php:57
2133
  msgid "Belgium"
2134
  msgstr "Belgium"
2135
 
2136
+ #: ../lib/tribe-view-helpers.class.php:58
2137
  msgid "Belize"
2138
  msgstr "Belize"
2139
 
2140
+ #: ../lib/tribe-view-helpers.class.php:59
2141
  msgid "Benin"
2142
  msgstr "Benin"
2143
 
2144
+ #: ../lib/tribe-view-helpers.class.php:60
2145
  msgid "Bermuda"
2146
  msgstr "Bermuda"
2147
 
2148
+ #: ../lib/tribe-view-helpers.class.php:61
2149
  msgid "Bhutan"
2150
  msgstr "Bhutan"
2151
 
2152
+ #: ../lib/tribe-view-helpers.class.php:62
2153
  msgid "Bolivia"
2154
  msgstr "Bolivia"
2155
 
2156
+ #: ../lib/tribe-view-helpers.class.php:63
2157
  msgid "Bosnia And Herzegowina"
2158
  msgstr "Bosnia And Herzegowina"
2159
 
2160
+ #: ../lib/tribe-view-helpers.class.php:64
2161
  msgid "Botswana"
2162
  msgstr "Botswana"
2163
 
2164
+ #: ../lib/tribe-view-helpers.class.php:65
2165
  msgid "Bouvet Island"
2166
  msgstr "Bouvet Island"
2167
 
2168
+ #: ../lib/tribe-view-helpers.class.php:66
2169
  msgid "Brazil"
2170
  msgstr "Brazil"
2171
 
2172
+ #: ../lib/tribe-view-helpers.class.php:67
2173
  msgid "British Indian Ocean Territory"
2174
  msgstr "British Indian Ocean Territory"
2175
 
2176
+ #: ../lib/tribe-view-helpers.class.php:68
2177
  msgid "Brunei Darussalam"
2178
  msgstr "Brunei Darussalam"
2179
 
2180
+ #: ../lib/tribe-view-helpers.class.php:69
2181
  msgid "Bulgaria"
2182
  msgstr "Bulgaria"
2183
 
2184
+ #: ../lib/tribe-view-helpers.class.php:70
2185
  msgid "Burkina Faso"
2186
  msgstr "Burkina Faso"
2187
 
2188
+ #: ../lib/tribe-view-helpers.class.php:71
2189
  msgid "Burundi"
2190
  msgstr "Burundi"
2191
 
2192
+ #: ../lib/tribe-view-helpers.class.php:72
2193
  msgid "Cambodia"
2194
  msgstr "Cambodia"
2195
 
2196
+ #: ../lib/tribe-view-helpers.class.php:73
2197
  msgid "Cameroon"
2198
  msgstr "Cameroon"
2199
 
2200
+ #: ../lib/tribe-view-helpers.class.php:74
2201
  msgid "Canada"
2202
  msgstr "Canada"
2203
 
2204
+ #: ../lib/tribe-view-helpers.class.php:75
2205
  msgid "Cape Verde"
2206
  msgstr "Cape Verde"
2207
 
2208
+ #: ../lib/tribe-view-helpers.class.php:76
2209
  msgid "Cayman Islands"
2210
  msgstr "Cayman Islands"
2211
 
2212
+ #: ../lib/tribe-view-helpers.class.php:77
2213
  msgid "Central African Republic"
2214
  msgstr "Central African Republic"
2215
 
2216
+ #: ../lib/tribe-view-helpers.class.php:78
2217
  msgid "Chad"
2218
  msgstr "Chad"
2219
 
2220
+ #: ../lib/tribe-view-helpers.class.php:79
2221
  msgid "Chile"
2222
  msgstr "Chile"
2223
 
2224
+ #: ../lib/tribe-view-helpers.class.php:80
2225
  msgid "China"
2226
  msgstr "China"
2227
 
2228
+ #: ../lib/tribe-view-helpers.class.php:81
2229
  msgid "Christmas Island"
2230
  msgstr "Christmas Island"
2231
 
2232
+ #: ../lib/tribe-view-helpers.class.php:82
2233
  msgid "Cocos (Keeling) Islands"
2234
  msgstr "Cocos (Keeling) Islands"
2235
 
2236
+ #: ../lib/tribe-view-helpers.class.php:83
2237
  msgid "Colombia"
2238
  msgstr "Colombia"
2239
 
2240
+ #: ../lib/tribe-view-helpers.class.php:84
2241
  msgid "Comoros"
2242
  msgstr "Comoros"
2243
 
2244
+ #: ../lib/tribe-view-helpers.class.php:85
2245
  msgid "Congo"
2246
  msgstr "Congo"
2247
 
2248
+ #: ../lib/tribe-view-helpers.class.php:86
2249
  msgid "Congo, The Democratic Republic Of The"
2250
  msgstr "Congo, The Democratic Republic Of The"
2251
 
2252
+ #: ../lib/tribe-view-helpers.class.php:87
2253
  msgid "Cook Islands"
2254
  msgstr "Cook Islands"
2255
 
2256
+ #: ../lib/tribe-view-helpers.class.php:88
2257
  msgid "Costa Rica"
2258
  msgstr "Costa Rica"
2259
 
2260
+ #: ../lib/tribe-view-helpers.class.php:89
2261
  msgid "Cote D'Ivoire"
2262
  msgstr "Cote D'Ivoire"
2263
 
2264
+ #: ../lib/tribe-view-helpers.class.php:90
2265
  msgid "Croatia (Local Name: Hrvatska)"
2266
  msgstr "Croatia (Local Name: Hrvatska)"
2267
 
2268
+ #: ../lib/tribe-view-helpers.class.php:91
2269
  msgid "Cuba"
2270
  msgstr "Cuba"
2271
 
2272
+ #: ../lib/tribe-view-helpers.class.php:92
2273
  msgid "Cyprus"
2274
  msgstr "Cyprus"
2275
 
2276
+ #: ../lib/tribe-view-helpers.class.php:93
2277
  msgid "Czech Republic"
2278
  msgstr "Czech Republic"
2279
 
2280
+ #: ../lib/tribe-view-helpers.class.php:94
2281
  msgid "Denmark"
2282
  msgstr "Denmark"
2283
 
2284
+ #: ../lib/tribe-view-helpers.class.php:95
2285
  msgid "Djibouti"
2286
  msgstr "Djibouti"
2287
 
2288
+ #: ../lib/tribe-view-helpers.class.php:96
2289
  msgid "Dominica"
2290
  msgstr "Dominica"
2291
 
2292
+ #: ../lib/tribe-view-helpers.class.php:97
2293
  msgid "Dominican Republic"
2294
  msgstr "Dominican Republic"
2295
 
2296
+ #: ../lib/tribe-view-helpers.class.php:98
2297
  msgid "East Timor"
2298
  msgstr "East Timor"
2299
 
2300
+ #: ../lib/tribe-view-helpers.class.php:99
2301
  msgid "Ecuador"
2302
  msgstr "Ecuador"
2303
 
2304
+ #: ../lib/tribe-view-helpers.class.php:100
2305
  msgid "Egypt"
2306
  msgstr "Egypt"
2307
 
2308
+ #: ../lib/tribe-view-helpers.class.php:101
2309
  msgid "El Salvador"
2310
  msgstr "El Salvador"
2311
 
2312
+ #: ../lib/tribe-view-helpers.class.php:102
2313
  msgid "Equatorial Guinea"
2314
  msgstr "Equatorial Guinea"
2315
 
2316
+ #: ../lib/tribe-view-helpers.class.php:103
2317
  msgid "Eritrea"
2318
  msgstr "Eritrea"
2319
 
2320
+ #: ../lib/tribe-view-helpers.class.php:104
2321
  msgid "Estonia"
2322
  msgstr "Estonia"
2323
 
2324
+ #: ../lib/tribe-view-helpers.class.php:105
2325
  msgid "Ethiopia"
2326
  msgstr "Ethiopia"
2327
 
2328
+ #: ../lib/tribe-view-helpers.class.php:106
2329
  msgid "Falkland Islands (Malvinas)"
2330
  msgstr "Falkland Islands (Malvinas)"
2331
 
2332
+ #: ../lib/tribe-view-helpers.class.php:107
2333
  msgid "Faroe Islands"
2334
  msgstr "Faroe Islands"
2335
 
2336
+ #: ../lib/tribe-view-helpers.class.php:108
2337
  msgid "Fiji"
2338
  msgstr "Fiji"
2339
 
2340
+ #: ../lib/tribe-view-helpers.class.php:109
2341
  msgid "Finland"
2342
  msgstr "Finland"
2343
 
2344
+ #: ../lib/tribe-view-helpers.class.php:110
2345
  msgid "France"
2346
  msgstr "France"
2347
 
2348
+ #: ../lib/tribe-view-helpers.class.php:111
2349
  msgid "France, Metropolitan"
2350
  msgstr "France, Metropolitan"
2351
 
2352
+ #: ../lib/tribe-view-helpers.class.php:112
2353
  msgid "French Guiana"
2354
  msgstr "French Guiana"
2355
 
2356
+ #: ../lib/tribe-view-helpers.class.php:113
2357
  msgid "French Polynesia"
2358
  msgstr "French Polynesia"
2359
 
2360
+ #: ../lib/tribe-view-helpers.class.php:114
2361
  msgid "French Southern Territories"
2362
  msgstr "French Southern Territories"
2363
 
2364
+ #: ../lib/tribe-view-helpers.class.php:115
2365
  msgid "Gabon"
2366
  msgstr "Gabon"
2367
 
2368
+ #: ../lib/tribe-view-helpers.class.php:116
2369
  msgid "Gambia"
2370
  msgstr "Gambia"
2371
 
2372
+ #: ../lib/tribe-view-helpers.class.php:117
2373
+ #: ../lib/tribe-view-helpers.class.php:305
2374
  msgid "Georgia"
2375
  msgstr "Georgia"
2376
 
2377
+ #: ../lib/tribe-view-helpers.class.php:118
2378
  msgid "Germany"
2379
  msgstr "Germany"
2380
 
2381
+ #: ../lib/tribe-view-helpers.class.php:119
2382
  msgid "Ghana"
2383
  msgstr "Ghana"
2384
 
2385
+ #: ../lib/tribe-view-helpers.class.php:120
2386
  msgid "Gibraltar"
2387
  msgstr "Gibraltar"
2388
 
2389
+ #: ../lib/tribe-view-helpers.class.php:121
2390
  msgid "Greece"
2391
  msgstr "Greece"
2392
 
2393
+ #: ../lib/tribe-view-helpers.class.php:122
2394
  msgid "Greenland"
2395
  msgstr "Greenland"
2396
 
2397
+ #: ../lib/tribe-view-helpers.class.php:123
2398
  msgid "Grenada"
2399
  msgstr "Grenada"
2400
 
2401
+ #: ../lib/tribe-view-helpers.class.php:124
2402
  msgid "Guadeloupe"
2403
  msgstr "Guadeloupe"
2404
 
2405
+ #: ../lib/tribe-view-helpers.class.php:125
2406
  msgid "Guam"
2407
  msgstr "Guam"
2408
 
2409
+ #: ../lib/tribe-view-helpers.class.php:126
2410
  msgid "Guatemala"
2411
  msgstr "Guatemala"
2412
 
2413
+ #: ../lib/tribe-view-helpers.class.php:127
2414
  msgid "Guinea"
2415
  msgstr "Guinea"
2416
 
2417
+ #: ../lib/tribe-view-helpers.class.php:128
2418
  msgid "Guinea-Bissau"
2419
  msgstr "Guinea-Bissau"
2420
 
2421
+ #: ../lib/tribe-view-helpers.class.php:129
2422
  msgid "Guyana"
2423
  msgstr "Guyana"
2424
 
2425
+ #: ../lib/tribe-view-helpers.class.php:130
2426
  msgid "Haiti"
2427
  msgstr "Haiti"
2428
 
2429
+ #: ../lib/tribe-view-helpers.class.php:131
2430
  msgid "Heard And Mc Donald Islands"
2431
  msgstr "Heard And Mc Donald Islands"
2432
 
2433
+ #: ../lib/tribe-view-helpers.class.php:132
2434
  msgid "Holy See (Vatican City State)"
2435
  msgstr "Holy See (Vatican City State)"
2436
 
2437
+ #: ../lib/tribe-view-helpers.class.php:133
2438
  msgid "Honduras"
2439
  msgstr "Honduras"
2440
 
2441
+ #: ../lib/tribe-view-helpers.class.php:134
2442
  msgid "Hong Kong"
2443
  msgstr "Hong Kong"
2444
 
2445
+ #: ../lib/tribe-view-helpers.class.php:135
2446
  msgid "Hungary"
2447
  msgstr "Hungary"
2448
 
2449
+ #: ../lib/tribe-view-helpers.class.php:136
2450
  msgid "Iceland"
2451
  msgstr "Iceland"
2452
 
2453
+ #: ../lib/tribe-view-helpers.class.php:137
2454
  msgid "India"
2455
  msgstr "India"
2456
 
2457
+ #: ../lib/tribe-view-helpers.class.php:138
2458
  msgid "Indonesia"
2459
  msgstr "Indonesia"
2460
 
2461
+ #: ../lib/tribe-view-helpers.class.php:139
2462
  msgid "Iran (Islamic Republic Of)"
2463
  msgstr "Iran (Islamic Republic Of)"
2464
 
2465
+ #: ../lib/tribe-view-helpers.class.php:140
2466
  msgid "Iraq"
2467
  msgstr "Iraq"
2468
 
2469
+ #: ../lib/tribe-view-helpers.class.php:141
2470
  msgid "Ireland"
2471
  msgstr "Ireland"
2472
 
2473
+ #: ../lib/tribe-view-helpers.class.php:142
2474
  msgid "Israel"
2475
  msgstr "Israel"
2476
 
2477
+ #: ../lib/tribe-view-helpers.class.php:143
2478
  msgid "Italy"
2479
  msgstr "Italy"
2480
 
2481
+ #: ../lib/tribe-view-helpers.class.php:144
2482
  msgid "Jamaica"
2483
  msgstr "Jamaica"
2484
 
2485
+ #: ../lib/tribe-view-helpers.class.php:145
2486
  msgid "Japan"
2487
  msgstr "Japan"
2488
 
2489
+ #: ../lib/tribe-view-helpers.class.php:146
2490
  msgid "Jordan"
2491
  msgstr "Jordan"
2492
 
2493
+ #: ../lib/tribe-view-helpers.class.php:147
2494
  msgid "Kazakhstan"
2495
  msgstr "Kazakhstan"
2496
 
2497
+ #: ../lib/tribe-view-helpers.class.php:148
2498
  msgid "Kenya"
2499
  msgstr "Kenya"
2500
 
2501
+ #: ../lib/tribe-view-helpers.class.php:149
2502
  msgid "Kiribati"
2503
  msgstr "Kiribati"
2504
 
2505
+ #: ../lib/tribe-view-helpers.class.php:150
2506
  msgid "Korea, Democratic People's Republic Of"
2507
  msgstr "Korea, Democratic People's Republic Of"
2508
 
2509
+ #: ../lib/tribe-view-helpers.class.php:151
2510
  msgid "Korea, Republic Of"
2511
  msgstr "Korea, Republic Of"
2512
 
2513
+ #: ../lib/tribe-view-helpers.class.php:152
2514
  msgid "Kuwait"
2515
  msgstr "Kuwait"
2516
 
2517
+ #: ../lib/tribe-view-helpers.class.php:153
2518
  msgid "Kyrgyzstan"
2519
  msgstr "Kyrgyzstan"
2520
 
2521
+ #: ../lib/tribe-view-helpers.class.php:154
2522
  msgid "Lao People's Democratic Republic"
2523
  msgstr "Lao People's Democratic Republic"
2524
 
2525
+ #: ../lib/tribe-view-helpers.class.php:155
2526
  msgid "Latvia"
2527
  msgstr "Latvia"
2528
 
2529
+ #: ../lib/tribe-view-helpers.class.php:156
2530
  msgid "Lebanon"
2531
  msgstr "Lebanon"
2532
 
2533
+ #: ../lib/tribe-view-helpers.class.php:157
2534
  msgid "Lesotho"
2535
  msgstr "Lesotho"
2536
 
2537
+ #: ../lib/tribe-view-helpers.class.php:158
2538
  msgid "Liberia"
2539
  msgstr "Liberia"
2540
 
2541
+ #: ../lib/tribe-view-helpers.class.php:159
2542
  msgid "Libya"
2543
  msgstr "Libya"
2544
 
2545
+ #: ../lib/tribe-view-helpers.class.php:160
2546
  msgid "Liechtenstein"
2547
  msgstr "Liechtenstein"
2548
 
2549
+ #: ../lib/tribe-view-helpers.class.php:161
2550
  msgid "Lithuania"
2551
  msgstr "Lithuania"
2552
 
2553
+ #: ../lib/tribe-view-helpers.class.php:162
2554
  msgid "Luxembourg"
2555
  msgstr "Luxembourg"
2556
 
2557
+ #: ../lib/tribe-view-helpers.class.php:163
2558
  msgid "Macau"
2559
  msgstr "Macau"
2560
 
2561
+ #: ../lib/tribe-view-helpers.class.php:164
2562
  msgid "Macedonia"
2563
  msgstr "Macedonia"
2564
 
2565
+ #: ../lib/tribe-view-helpers.class.php:165
2566
  msgid "Madagascar"
2567
  msgstr "Madagascar"
2568
 
2569
+ #: ../lib/tribe-view-helpers.class.php:166
2570
  msgid "Malawi"
2571
  msgstr "Malawi"
2572
 
2573
+ #: ../lib/tribe-view-helpers.class.php:167
2574
  msgid "Malaysia"
2575
  msgstr "Malaysia"
2576
 
2577
+ #: ../lib/tribe-view-helpers.class.php:168
2578
  msgid "Maldives"
2579
  msgstr "Maldives"
2580
 
2581
+ #: ../lib/tribe-view-helpers.class.php:169
2582
  msgid "Mali"
2583
  msgstr "Mali"
2584
 
2585
+ #: ../lib/tribe-view-helpers.class.php:170
2586
  msgid "Malta"
2587
  msgstr "Malta"
2588
 
2589
+ #: ../lib/tribe-view-helpers.class.php:171
2590
  msgid "Marshall Islands"
2591
  msgstr "Marshall Islands"
2592
 
2593
+ #: ../lib/tribe-view-helpers.class.php:172
2594
  msgid "Martinique"
2595
  msgstr "Martinique"
2596
 
2597
+ #: ../lib/tribe-view-helpers.class.php:173
2598
  msgid "Mauritania"
2599
  msgstr "Mauritania"
2600
 
2601
+ #: ../lib/tribe-view-helpers.class.php:174
2602
  msgid "Mauritius"
2603
  msgstr "Mauritius"
2604
 
2605
+ #: ../lib/tribe-view-helpers.class.php:175
2606
  msgid "Mayotte"
2607
  msgstr "Mayotte"
2608
 
2609
+ #: ../lib/tribe-view-helpers.class.php:176
2610
  msgid "Mexico"
2611
  msgstr "Mexico"
2612
 
2613
+ #: ../lib/tribe-view-helpers.class.php:177
2614
  msgid "Micronesia, Federated States Of"
2615
  msgstr "Micronesia, Federated States Of"
2616
 
2617
+ #: ../lib/tribe-view-helpers.class.php:178
2618
  msgid "Moldova, Republic Of"
2619
  msgstr "Moldova, Republic Of"
2620
 
2621
+ #: ../lib/tribe-view-helpers.class.php:179
2622
  msgid "Monaco"
2623
  msgstr "Monaco"
2624
 
2625
+ #: ../lib/tribe-view-helpers.class.php:180
2626
  msgid "Mongolia"
2627
  msgstr "Mongolia"
2628
 
2629
+ #: ../lib/tribe-view-helpers.class.php:181
2630
  msgid "Montenegro"
2631
  msgstr "Montenegro"
2632
 
2633
+ #: ../lib/tribe-view-helpers.class.php:182
2634
  msgid "Montserrat"
2635
  msgstr "Montserrat"
2636
 
2637
+ #: ../lib/tribe-view-helpers.class.php:183
2638
  msgid "Morocco"
2639
  msgstr "Morocco"
2640
 
2641
+ #: ../lib/tribe-view-helpers.class.php:184
2642
  msgid "Mozambique"
2643
  msgstr "Mozambique"
2644
 
2645
+ #: ../lib/tribe-view-helpers.class.php:185
2646
  msgid "Myanmar"
2647
  msgstr "Myanmar"
2648
 
2649
+ #: ../lib/tribe-view-helpers.class.php:186
2650
  msgid "Namibia"
2651
  msgstr "Namibia"
2652
 
2653
+ #: ../lib/tribe-view-helpers.class.php:187
2654
  msgid "Nauru"
2655
  msgstr "Nauru"
2656
 
2657
+ #: ../lib/tribe-view-helpers.class.php:188
2658
  msgid "Nepal"
2659
  msgstr "Nepal"
2660
 
2661
+ #: ../lib/tribe-view-helpers.class.php:189
2662
  msgid "Netherlands"
2663
  msgstr "Netherlands"
2664
 
2665
+ #: ../lib/tribe-view-helpers.class.php:190
2666
  msgid "Netherlands Antilles"
2667
  msgstr "Netherlands Antilles"
2668
 
2669
+ #: ../lib/tribe-view-helpers.class.php:191
2670
  msgid "New Caledonia"
2671
  msgstr "New Caledonia"
2672
 
2673
+ #: ../lib/tribe-view-helpers.class.php:192
2674
  msgid "New Zealand"
2675
  msgstr "New Zealand"
2676
 
2677
+ #: ../lib/tribe-view-helpers.class.php:193
2678
  msgid "Nicaragua"
2679
  msgstr "Nicaragua"
2680
 
2681
+ #: ../lib/tribe-view-helpers.class.php:194
2682
  msgid "Niger"
2683
  msgstr "Niger"
2684
 
2685
+ #: ../lib/tribe-view-helpers.class.php:195
2686
  msgid "Nigeria"
2687
  msgstr "Nigeria"
2688
 
2689
+ #: ../lib/tribe-view-helpers.class.php:196
2690
  msgid "Niue"
2691
  msgstr "Niue"
2692
 
2693
+ #: ../lib/tribe-view-helpers.class.php:197
2694
  msgid "Norfolk Island"
2695
  msgstr "Norfolk Island"
2696
 
2697
+ #: ../lib/tribe-view-helpers.class.php:198
2698
  msgid "Northern Mariana Islands"
2699
  msgstr "Northern Mariana Islands"
2700
 
2701
+ #: ../lib/tribe-view-helpers.class.php:199
2702
  msgid "Norway"
2703
  msgstr "Norway"
2704
 
2705
+ #: ../lib/tribe-view-helpers.class.php:200
2706
  msgid "Oman"
2707
  msgstr "Oman"
2708
 
2709
+ #: ../lib/tribe-view-helpers.class.php:201
2710
  msgid "Pakistan"
2711
  msgstr "Pakistan"
2712
 
2713
+ #: ../lib/tribe-view-helpers.class.php:202
2714
  msgid "Palau"
2715
  msgstr "Palau"
2716
 
2717
+ #: ../lib/tribe-view-helpers.class.php:203
2718
  msgid "Panama"
2719
  msgstr "Panama"
2720
 
2721
+ #: ../lib/tribe-view-helpers.class.php:204
2722
  msgid "Papua New Guinea"
2723
  msgstr "Papua New Guinea"
2724
 
2725
+ #: ../lib/tribe-view-helpers.class.php:205
2726
  msgid "Paraguay"
2727
  msgstr "Paraguay"
2728
 
2729
+ #: ../lib/tribe-view-helpers.class.php:206
2730
  msgid "Peru"
2731
  msgstr "Peru"
2732
 
2733
+ #: ../lib/tribe-view-helpers.class.php:207
2734
  msgid "Philippines"
2735
  msgstr "Philippines"
2736
 
2737
+ #: ../lib/tribe-view-helpers.class.php:208
2738
  msgid "Pitcairn"
2739
  msgstr "Pitcairn"
2740
 
2741
+ #: ../lib/tribe-view-helpers.class.php:209
2742
  msgid "Poland"
2743
  msgstr "Poland"
2744
 
2745
+ #: ../lib/tribe-view-helpers.class.php:210
2746
  msgid "Portugal"
2747
  msgstr "Portugal"
2748
 
2749
+ #: ../lib/tribe-view-helpers.class.php:211
2750
  msgid "Puerto Rico"
2751
  msgstr "Puerto Rico"
2752
 
2753
+ #: ../lib/tribe-view-helpers.class.php:212
2754
  msgid "Qatar"
2755
  msgstr "Qatar"
2756
 
2757
+ #: ../lib/tribe-view-helpers.class.php:213
2758
  msgid "Reunion"
2759
  msgstr "Reunião"
2760
 
2761
+ #: ../lib/tribe-view-helpers.class.php:214
2762
  msgid "Romania"
2763
  msgstr "Romania"
2764
 
2765
+ #: ../lib/tribe-view-helpers.class.php:215
2766
  msgid "Russian Federation"
2767
  msgstr "Russian Federation"
2768
 
2769
+ #: ../lib/tribe-view-helpers.class.php:216
2770
  msgid "Rwanda"
2771
  msgstr "Rwanda"
2772
 
2773
+ #: ../lib/tribe-view-helpers.class.php:217
2774
  msgid "Saint Kitts And Nevis"
2775
  msgstr "Saint Kitts And Nevis"
2776
 
2777
+ #: ../lib/tribe-view-helpers.class.php:218
2778
  msgid "Saint Lucia"
2779
  msgstr "Saint Lucia"
2780
 
2781
+ #: ../lib/tribe-view-helpers.class.php:219
2782
  msgid "Saint Vincent And The Grenadines"
2783
  msgstr "Saint Vincent And The Grenadines"
2784
 
2785
+ #: ../lib/tribe-view-helpers.class.php:220
2786
  msgid "Samoa"
2787
  msgstr "Samoa"
2788
 
2789
+ #: ../lib/tribe-view-helpers.class.php:221
2790
  msgid "San Marino"
2791
  msgstr "San Marino"
2792
 
2793
+ #: ../lib/tribe-view-helpers.class.php:222
2794
  msgid "Sao Tome And Principe"
2795
  msgstr "Sao Tome And Principe"
2796
 
2797
+ #: ../lib/tribe-view-helpers.class.php:223
2798
  msgid "Saudi Arabia"
2799
  msgstr "Saudi Arabia"
2800
 
2801
+ #: ../lib/tribe-view-helpers.class.php:224
2802
  msgid "Senegal"
2803
  msgstr "Senegal"
2804
 
2805
+ #: ../lib/tribe-view-helpers.class.php:225
2806
  msgid "Serbia"
2807
  msgstr "Serbia"
2808
 
2809
+ #: ../lib/tribe-view-helpers.class.php:226
2810
  msgid "Seychelles"
2811
  msgstr "Seychelles"
2812
 
2813
+ #: ../lib/tribe-view-helpers.class.php:227
2814
  msgid "Sierra Leone"
2815
  msgstr "Sierra Leone"
2816
 
2817
+ #: ../lib/tribe-view-helpers.class.php:228
2818
  msgid "Singapore"
2819
  msgstr "Singapore"
2820
 
2821
+ #: ../lib/tribe-view-helpers.class.php:229
2822
  msgid "Slovakia (Slovak Republic)"
2823
  msgstr "Slovakia (Slovak Republic)"
2824
 
2825
+ #: ../lib/tribe-view-helpers.class.php:230
2826
  msgid "Slovenia"
2827
  msgstr "Slovenia"
2828
 
2829
+ #: ../lib/tribe-view-helpers.class.php:231
2830
  msgid "Solomon Islands"
2831
  msgstr "Solomon Islands"
2832
 
2833
+ #: ../lib/tribe-view-helpers.class.php:232
2834
  msgid "Somalia"
2835
  msgstr "Somalia"
2836
 
2837
+ #: ../lib/tribe-view-helpers.class.php:233
2838
  msgid "South Africa"
2839
  msgstr "South Africa"
2840
 
2841
+ #: ../lib/tribe-view-helpers.class.php:234
2842
  msgid "South Georgia, South Sandwich Islands"
2843
  msgstr "South Georgia, South Sandwich Islands"
2844
 
2845
+ #: ../lib/tribe-view-helpers.class.php:235
2846
  msgid "Spain"
2847
  msgstr "Spain"
2848
 
2849
+ #: ../lib/tribe-view-helpers.class.php:236
2850
  msgid "Sri Lanka"
2851
  msgstr "Sri Lanka"
2852
 
2853
+ #: ../lib/tribe-view-helpers.class.php:237
2854
  msgid "St. Helena"
2855
  msgstr "St. Helena"
2856
 
2857
+ #: ../lib/tribe-view-helpers.class.php:238
2858
  msgid "St. Pierre And Miquelon"
2859
  msgstr "St. Pierre And Miquelon"
2860
 
2861
+ #: ../lib/tribe-view-helpers.class.php:239
2862
  msgid "Sudan"
2863
  msgstr "Sudan"
2864
 
2865
+ #: ../lib/tribe-view-helpers.class.php:240
2866
  msgid "Suriname"
2867
  msgstr "Suriname"
2868
 
2869
+ #: ../lib/tribe-view-helpers.class.php:241
2870
  msgid "Svalbard And Jan Mayen Islands"
2871
  msgstr "Svalbard And Jan Mayen Islands"
2872
 
2873
+ #: ../lib/tribe-view-helpers.class.php:242
2874
  msgid "Swaziland"
2875
  msgstr "Swaziland"
2876
 
2877
+ #: ../lib/tribe-view-helpers.class.php:243
2878
  msgid "Sweden"
2879
  msgstr "Sweden"
2880
 
2881
+ #: ../lib/tribe-view-helpers.class.php:244
2882
  msgid "Switzerland"
2883
  msgstr "Switzerland"
2884
 
2885
+ #: ../lib/tribe-view-helpers.class.php:245
2886
  msgid "Syrian Arab Republic"
2887
  msgstr "Syrian Arab Republic"
2888
 
2889
+ #: ../lib/tribe-view-helpers.class.php:246
2890
  msgid "Taiwan"
2891
  msgstr "Taiwan"
2892
 
2893
+ #: ../lib/tribe-view-helpers.class.php:247
2894
  msgid "Tajikistan"
2895
  msgstr "Tajikistan"
2896
 
2897
+ #: ../lib/tribe-view-helpers.class.php:248
2898
  msgid "Tanzania, United Republic Of"
2899
  msgstr "Tanzania, United Republic Of"
2900
 
2901
+ #: ../lib/tribe-view-helpers.class.php:249
2902
  msgid "Thailand"
2903
  msgstr "Thailand"
2904
 
2905
+ #: ../lib/tribe-view-helpers.class.php:250
2906
  msgid "Togo"
2907
  msgstr "Togo"
2908
 
2909
+ #: ../lib/tribe-view-helpers.class.php:251
2910
  msgid "Tokelau"
2911
  msgstr "Tokelau"
2912
 
2913
+ #: ../lib/tribe-view-helpers.class.php:252
2914
  msgid "Tonga"
2915
  msgstr "Tonga"
2916
 
2917
+ #: ../lib/tribe-view-helpers.class.php:253
2918
  msgid "Trinidad And Tobago"
2919
  msgstr "Trinidad And Tobago"
2920
 
2921
+ #: ../lib/tribe-view-helpers.class.php:254
2922
  msgid "Tunisia"
2923
  msgstr "Tunisia"
2924
 
2925
+ #: ../lib/tribe-view-helpers.class.php:255
2926
  msgid "Turkey"
2927
  msgstr "Turkey"
2928
 
2929
+ #: ../lib/tribe-view-helpers.class.php:256
2930
  msgid "Turkmenistan"
2931
  msgstr "Turkmenistan"
2932
 
2933
+ #: ../lib/tribe-view-helpers.class.php:257
2934
  msgid "Turks And Caicos Islands"
2935
  msgstr "Turks And Caicos Islands"
2936
 
2937
+ #: ../lib/tribe-view-helpers.class.php:258
2938
  msgid "Tuvalu"
2939
  msgstr "Tuvalu"
2940
 
2941
+ #: ../lib/tribe-view-helpers.class.php:259
2942
  msgid "Uganda"
2943
  msgstr "Uganda"
2944
 
2945
+ #: ../lib/tribe-view-helpers.class.php:260
2946
  msgid "Ukraine"
2947
  msgstr "Ukraine"
2948
 
2949
+ #: ../lib/tribe-view-helpers.class.php:261
2950
  msgid "United Arab Emirates"
2951
  msgstr "United Arab Emirates"
2952
 
2953
+ #: ../lib/tribe-view-helpers.class.php:262
2954
  msgid "United Kingdom"
2955
  msgstr "United Kingdom"
2956
 
2957
+ #: ../lib/tribe-view-helpers.class.php:263
2958
  msgid "United States Minor Outlying Islands"
2959
  msgstr "United States Minor Outlying Islands"
2960
 
2961
+ #: ../lib/tribe-view-helpers.class.php:264
2962
  msgid "Uruguay"
2963
  msgstr "Uruguay"
2964
 
2965
+ #: ../lib/tribe-view-helpers.class.php:265
2966
  msgid "Uzbekistan"
2967
  msgstr "Uzbekistan"
2968
 
2969
+ #: ../lib/tribe-view-helpers.class.php:266
2970
  msgid "Vanuatu"
2971
  msgstr "Vanuatu"
2972
 
2973
+ #: ../lib/tribe-view-helpers.class.php:267
2974
  msgid "Venezuela"
2975
  msgstr "Venezuela"
2976
 
2977
+ #: ../lib/tribe-view-helpers.class.php:268
2978
  msgid "Viet Nam"
2979
  msgstr "Viet Nam"
2980
 
2981
+ #: ../lib/tribe-view-helpers.class.php:269
2982
  msgid "Virgin Islands (British)"
2983
  msgstr "Virgin Islands (British)"
2984
 
2985
+ #: ../lib/tribe-view-helpers.class.php:270
2986
  msgid "Virgin Islands (U.S.)"
2987
  msgstr "Virgin Islands (U.S.)"
2988
 
2989
+ #: ../lib/tribe-view-helpers.class.php:271
2990
  msgid "Wallis And Futuna Islands"
2991
  msgstr "Wallis And Futuna Islands"
2992
 
2993
+ #: ../lib/tribe-view-helpers.class.php:272
2994
  msgid "Western Sahara"
2995
  msgstr "Western Sahara"
2996
 
2997
+ #: ../lib/tribe-view-helpers.class.php:273
2998
  msgid "Yemen"
2999
  msgstr "Yemen"
3000
 
3001
+ #: ../lib/tribe-view-helpers.class.php:274
3002
  msgid "Zambia"
3003
  msgstr "Zambia"
3004
 
3005
+ #: ../lib/tribe-view-helpers.class.php:275
3006
  msgid "Zimbabwe"
3007
  msgstr "Zimbabwe"
3008
 
3009
+ #: ../lib/tribe-view-helpers.class.php:295
3010
  msgid "Alabama"
3011
  msgstr "Alabama"
3012
 
3013
+ #: ../lib/tribe-view-helpers.class.php:296
3014
  msgid "Alaska"
3015
  msgstr "Alaska"
3016
 
3017
+ #: ../lib/tribe-view-helpers.class.php:297
3018
  msgid "Arizona"
3019
  msgstr "Arizona"
3020
 
3021
+ #: ../lib/tribe-view-helpers.class.php:298
3022
  msgid "Arkansas"
3023
  msgstr "Arkansas"
3024
 
3025
+ #: ../lib/tribe-view-helpers.class.php:299
3026
  msgid "California"
3027
  msgstr "California"
3028
 
3029
+ #: ../lib/tribe-view-helpers.class.php:300
3030
  msgid "Colorado"
3031
  msgstr "Colorado"
3032
 
3033
+ #: ../lib/tribe-view-helpers.class.php:301
3034
  msgid "Connecticut"
3035
  msgstr "Connecticut"
3036
 
3037
+ #: ../lib/tribe-view-helpers.class.php:302
3038
  msgid "Delaware"
3039
  msgstr "Delaware"
3040
 
3041
+ #: ../lib/tribe-view-helpers.class.php:303
3042
  msgid "District of Columbia"
3043
  msgstr "District of Columbia"
3044
 
3045
+ #: ../lib/tribe-view-helpers.class.php:304
3046
  msgid "Florida"
3047
  msgstr "Florida"
3048
 
3049
+ #: ../lib/tribe-view-helpers.class.php:306
3050
  msgid "Hawaii"
3051
  msgstr "Hawaii"
3052
 
3053
+ #: ../lib/tribe-view-helpers.class.php:307
3054
  msgid "Idaho"
3055
  msgstr "Idaho"
3056
 
3057
+ #: ../lib/tribe-view-helpers.class.php:308
3058
  msgid "Illinois"
3059
  msgstr "Illinois"
3060
 
3061
+ #: ../lib/tribe-view-helpers.class.php:309
3062
  msgid "Indiana"
3063
  msgstr "Indiana"
3064
 
3065
+ #: ../lib/tribe-view-helpers.class.php:310
3066
  msgid "Iowa"
3067
  msgstr "Iowa"
3068
 
3069
+ #: ../lib/tribe-view-helpers.class.php:311
3070
  msgid "Kansas"
3071
  msgstr "Kansas"
3072
 
3073
+ #: ../lib/tribe-view-helpers.class.php:312
3074
  msgid "Kentucky"
3075
  msgstr "Kentucky"
3076
 
3077
+ #: ../lib/tribe-view-helpers.class.php:313
3078
  msgid "Louisiana"
3079
  msgstr "Louisiana"
3080
 
3081
+ #: ../lib/tribe-view-helpers.class.php:314
3082
  msgid "Maine"
3083
  msgstr "Maine"
3084
 
3085
+ #: ../lib/tribe-view-helpers.class.php:315
3086
  msgid "Maryland"
3087
  msgstr "Maryland"
3088
 
3089
+ #: ../lib/tribe-view-helpers.class.php:316
3090
  msgid "Massachusetts"
3091
  msgstr "Massachusetts"
3092
 
3093
+ #: ../lib/tribe-view-helpers.class.php:317
3094
  msgid "Michigan"
3095
  msgstr "Michigan"
3096
 
3097
+ #: ../lib/tribe-view-helpers.class.php:318
3098
  msgid "Minnesota"
3099
  msgstr "Minnesota"
3100
 
3101
+ #: ../lib/tribe-view-helpers.class.php:319
3102
  msgid "Mississippi"
3103
  msgstr "Mississippi"
3104
 
3105
+ #: ../lib/tribe-view-helpers.class.php:320
3106
  msgid "Missouri"
3107
  msgstr "Missouri"
3108
 
3109
+ #: ../lib/tribe-view-helpers.class.php:321
3110
  msgid "Montana"
3111
  msgstr "Montana"
3112
 
3113
+ #: ../lib/tribe-view-helpers.class.php:322
3114
  msgid "Nebraska"
3115
  msgstr "Nebraska"
3116
 
3117
+ #: ../lib/tribe-view-helpers.class.php:323
3118
  msgid "Nevada"
3119
  msgstr "Nevada"
3120
 
3121
+ #: ../lib/tribe-view-helpers.class.php:324
3122
  msgid "New Hampshire"
3123
  msgstr "New Hampshire"
3124
 
3125
+ #: ../lib/tribe-view-helpers.class.php:325
3126
  msgid "New Jersey"
3127
  msgstr "New Jersey"
3128
 
3129
+ #: ../lib/tribe-view-helpers.class.php:326
3130
  msgid "New Mexico"
3131
  msgstr "New Mexico"
3132
 
3133
+ #: ../lib/tribe-view-helpers.class.php:327
3134
  msgid "New York"
3135
  msgstr "New York"
3136
 
3137
+ #: ../lib/tribe-view-helpers.class.php:328
3138
  msgid "North Carolina"
3139
  msgstr "North Carolina"
3140
 
3141
+ #: ../lib/tribe-view-helpers.class.php:329
3142
  msgid "North Dakota"
3143
  msgstr "North Dakota"
3144
 
3145
+ #: ../lib/tribe-view-helpers.class.php:330
3146
  msgid "Ohio"
3147
  msgstr "Ohio"
3148
 
3149
+ #: ../lib/tribe-view-helpers.class.php:331
3150
  msgid "Oklahoma"
3151
  msgstr "Oklahoma"
3152
 
3153
+ #: ../lib/tribe-view-helpers.class.php:332
3154
  msgid "Oregon"
3155
  msgstr "Oregon"
3156
 
3157
+ #: ../lib/tribe-view-helpers.class.php:333
3158
  msgid "Pennsylvania"
3159
  msgstr "Pennsylvania"
3160
 
3161
+ #: ../lib/tribe-view-helpers.class.php:334
3162
  msgid "Rhode Island"
3163
  msgstr "Rhode Island"
3164
 
3165
+ #: ../lib/tribe-view-helpers.class.php:335
3166
  msgid "South Carolina"
3167
  msgstr "South Carolina"
3168
 
3169
+ #: ../lib/tribe-view-helpers.class.php:336
3170
  msgid "South Dakota"
3171
  msgstr "South Dakota"
3172
 
3173
+ #: ../lib/tribe-view-helpers.class.php:337
3174
  msgid "Tennessee"
3175
  msgstr "Tennessee"
3176
 
3177
+ #: ../lib/tribe-view-helpers.class.php:338
3178
  msgid "Texas"
3179
  msgstr "Texas"
3180
 
3181
+ #: ../lib/tribe-view-helpers.class.php:339
3182
  msgid "Utah"
3183
  msgstr "Utah"
3184
 
3185
+ #: ../lib/tribe-view-helpers.class.php:340
3186
  msgid "Vermont"
3187
  msgstr "Vermont"
3188
 
3189
+ #: ../lib/tribe-view-helpers.class.php:341
3190
  msgid "Virginia"
3191
  msgstr "Virginia"
3192
 
3193
+ #: ../lib/tribe-view-helpers.class.php:342
3194
  msgid "Washington"
3195
  msgstr "Washington"
3196
 
3197
+ #: ../lib/tribe-view-helpers.class.php:343
3198
  msgid "West Virginia"
3199
  msgstr "West Virginia"
3200
 
3201
+ #: ../lib/tribe-view-helpers.class.php:344
3202
  msgid "Wisconsin"
3203
  msgstr "Wisconsin"
3204
 
3205
+ #: ../lib/tribe-view-helpers.class.php:345
3206
  msgid "Wyoming"
3207
  msgstr "Wyoming"
3208
 
3209
  #
3210
+ #: ../lib/widget-list.class.php:16
3211
  msgid "A widget that displays upcoming events."
3212
  msgstr "Um widget que exibe os próximos eventos."
3213
 
3214
+ #: ../lib/widget-list.class.php:22
3215
  msgid "Events List"
3216
  msgstr "Lista de eventos"
3217
 
3218
+ #: ../lib/widget-list.class.php:92
3219
  msgid "View All Events"
3220
  msgstr "Ver todos os eventos"
3221
 
3222
+ #: ../lib/widget-list.class.php:95
3223
  msgid "There are no upcoming events at this time."
3224
  msgstr "Não há eventos agendados"
3225
 
3226
+ #: ../lib/template-classes/month.php:72
3227
  #, php-format
3228
  msgid ""
3229
  "There were no results found for <strong>\"%s\"</strong> this month. Try "
3232
  "Não há resultados para <strong>\"%s\"</strong> neste mês. Tente no mês "
3233
  "seguinte."
3234
 
3235
+ #: ../lib/template-classes/single-event.php:94
3236
  msgid "This event has passed."
3237
  msgstr "Este evento já ocorreu."
3238
 
3239
+ #: ../lib/tickets/tribe-tickets-attendees.php:33
3240
  msgid "Order #"
3241
  msgstr "Pedido #"
3242
 
3243
+ #: ../lib/tickets/tribe-tickets-attendees.php:34
3244
  msgid "Order Status"
3245
  msgstr "Status do Pedido"
3246
 
3247
+ #: ../lib/tickets/tribe-tickets-attendees.php:35
3248
  msgid "Purchaser name"
3249
  msgstr "Nome do comprador."
3250
 
3251
+ #: ../lib/tickets/tribe-tickets-attendees.php:36
3252
  msgid "Purchaser email"
3253
  msgstr "Email do comprador"
3254
 
3255
  #
3256
+ #: ../lib/tickets/tribe-tickets-attendees.php:37
3257
  msgid "Ticket type"
3258
  msgstr "Tipo do bilhete"
3259
 
3260
+ #: ../lib/tickets/tribe-tickets-attendees.php:38
3261
+ #: ../views/tickets-email.php:293
3262
  msgid "Ticket #"
3263
  msgstr "Bilhete #"
3264
 
3265
+ #: ../lib/tickets/tribe-tickets-attendees.php:39
3266
+ #: ../views/tickets-email.php:305
3267
  msgid "Security Code"
3268
  msgstr "Código de Segurança"
3269
 
3270
+ #: ../lib/tickets/tribe-tickets-attendees.php:40
3271
+ #: ../lib/tickets/tribe-tickets-attendees.php:73
3272
+ #: ../lib/tickets/tribe-tickets-attendees.php:112
3273
  msgid "Check in"
3274
  msgstr "Check in"
3275
 
3276
+ #: ../lib/tickets/tribe-tickets-attendees.php:74
3277
+ #: ../lib/tickets/tribe-tickets-attendees.php:112
3278
  msgid "Undo Check in"
3279
  msgstr "Desfazer o Check In"
3280
 
3281
+ #: ../lib/tickets/tribe-tickets-attendees.php:97
3282
  msgid "Print"
3283
  msgstr "Imprimir"
3284
 
3285
  #
3286
+ #: ../lib/tickets/tribe-tickets-attendees.php:98
3287
  msgid "Email"
3288
  msgstr "Email"
3289
 
3290
  #
3291
+ #: ../lib/tickets/tribe-tickets-attendees.php:99
3292
  msgid "Export"
3293
  msgstr "Exportar"
3294
 
3295
+ #: ../lib/tickets/tribe-tickets-attendees.php:105
3296
  msgid "Filter by ticket #, order # or security code"
3297
  msgstr "Filtrar por Bilhete #, Pedido # ou código de segurança"
3298
 
3342
  msgid "Attendee List for: %s"
3343
  msgstr "Lista de participantes de: %s"
3344
 
3345
+ #: ../lib/tickets/tribe-tickets.php:290
3346
  msgid "Your ticket has been saved."
3347
  msgstr "Seu bilhete foi salvo."
3348
 
3349
+ #: ../lib/tickets/tribe-tickets.php:367
3350
  msgid "Your ticket has been deleted."
3351
  msgstr "Seu bilhete foi apagado."
3352
 
3353
+ #: ../public/advanced-functions/meta.php:16
3354
  msgid "Start:"
3355
  msgstr "Início:"
3356
 
3357
+ #: ../public/advanced-functions/meta.php:23
3358
  msgid "End:"
3359
  msgstr "Final:"
3360
 
3361
+ #: ../public/advanced-functions/meta.php:32
3362
  msgid "Date:"
3363
  msgstr "Data:"
3364
 
3365
+ #: ../public/advanced-functions/meta.php:150
3366
  msgid "Click to view a Google Map"
3367
  msgstr "Clique para o Google Maps"
3368
 
3369
  #
3370
+ #: ../public/advanced-functions/meta.php:151
3371
  msgid "+ Google Map"
3372
  msgstr "+ Google Map"
3373
 
3374
+ #: ../public/advanced-functions/meta.php:162
3375
  msgid "Details"
3376
  msgstr "Detalhes"
3377
 
3378
  #
3379
+ #: ../public/advanced-functions/meta.php:212
3380
  msgid "Event Tags:"
3381
  msgstr "Tags do evento:"
3382
 
3383
+ #: ../public/advanced-functions/meta.php:238
3384
  msgid "Origin:"
3385
  msgstr "Origem:"
3386
 
3387
+ #: ../public/advanced-functions/meta.php:375
3388
  msgid "Event:"
3389
  msgstr "Evento:"
3390
 
3391
  #
3392
+ #: ../public/template-tags/deprecated.php:724
3393
  msgid "Category"
3394
  msgstr "Categoria"
3395
 
3396
+ #: ../public/template-tags/general.php:323
3397
  msgid "Tags:"
3398
  msgstr "Tags:"
3399
 
3400
  #
3401
+ #: ../public/template-tags/general.php:409
3402
  msgid "Loading Events"
3403
  msgstr "Carregando eventos"
3404
 
3405
+ #: ../public/template-tags/general.php:570
3406
  msgid "Free"
3407
  msgstr "Livre"
3408
 
3409
  #
3410
+ #: ../public/template-tags/general.php:743
3411
  msgid "Recurring Event"
3412
  msgstr "Evento recorrente"
3413
 
3414
+ #: ../public/template-tags/general.php:746
3415
  msgid "(See all)"
3416
  msgstr "(ver todos)"
3417
 
3418
+ #: ../public/template-tags/general.php:939
3419
  #, php-format
3420
  msgid "Calendar powered by %sThe Events Calendar%s"
3421
+ msgstr "Calendário gerado por %sThe Events Calendar%s"
3422
 
3423
  #: ../public/template-tags/loop.php:150
3424
  #, php-format
3431
  msgstr "Eventos para %1$s até %2$s"
3432
 
3433
  #
3434
+ #: ../public/template-tags/loop.php:168
3435
  msgid "Events for "
3436
  msgstr "Eventos para"
3437
 
3451
  "evento único é como: %s"
3452
 
3453
  #
3454
+ #: ../views/single-event.php:31
3455
  msgid "&laquo; All Events"
3456
  msgstr "&laquo; Todos os eventos"
3457
 
3458
  #
3459
+ #: ../views/single-event.php:45 ../views/single-event.php:71
3460
  msgid "Event Navigation"
3461
  msgstr "Navegação dos eventos"
3462
 
3463
  #
3464
+ #: ../views/tickets-attendees-email.php:11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3465
  msgid "Attendee List"
3466
  msgstr "Lista de participantes"
3467
 
3468
  #
3469
+ #: ../views/tickets-email.php:16
3470
  msgid "Your tickets"
3471
  msgstr "Seus bilhetes"
3472
 
3473
  #
3474
+ #: ../views/tickets-email.php:297
3475
  msgid "Ticket Type"
3476
  msgstr "Tipo de bilhete"
3477
 
3478
+ #: ../views/tickets-email.php:301
3479
  msgid "Purchaser"
3480
  msgstr "Comprador"
3481
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3482
  #
3483
+ #: ../views/list/nav.php:15
3484
+ msgid "Events List Navigation"
3485
+ msgstr "Navegação da lista de eventos"
 
 
 
 
3486
 
3487
+ #: ../views/list/single-event.php:74
3488
+ msgid "Find out more"
3489
+ msgstr "Encontre mais"
 
 
 
 
 
 
 
 
 
3490
 
3491
+ #
3492
+ #: ../views/modules/bar.php:29 ../views/modules/bar.php:57
3493
+ msgid "Find Events"
3494
+ msgstr "Buscar eventos"
 
 
 
 
3495
 
3496
+ #: ../views/modules/bar.php:35
3497
+ msgid "Event Views Navigation"
3498
+ msgstr "Navegação dos eventos"
 
 
 
 
 
 
 
3499
 
3500
+ #
3501
+ #: ../views/modules/bar.php:36
3502
+ msgid "View As"
3503
+ msgstr "Visualizar como"
3504
 
3505
+ #
3506
+ #: ../views/month/nav.php:19
3507
+ msgid "Calendar Month Navigation"
3508
+ msgstr "Navegação do calendário mensal"
 
 
 
 
 
 
 
3509
 
3510
  #~ msgid "Advanced Post Manager"
3511
  #~ msgstr "Gerenciador avançado de Posts"
lang/tribe-events-calendar-tr_TR.mo ADDED
Binary file
lang/tribe-events-calendar-tr_TR.po ADDED
@@ -0,0 +1,3589 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # POT for The Events Calendar 2.0 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:26-0800\n"
9
+ "PO-Revision-Date: 2013-07-28 14:49+0200\n"
10
+ "Last-Translator: Burak Pehlevan <pehlevanburak@gmail.com>\n"
11
+ "Language-Team: Modern Tribe, Inc. <pro@tri.be>\n"
12
+ "Language: en_US\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-Textdomain-Support: yes\n"
22
+ "X-Generator: Poedit 1.5.7\n"
23
+ "X-Poedit-SearchPath-0: ..\n"
24
+
25
+ #: ../admin-views/app-shop.php:4
26
+ msgid "Tribe Event Add-Ons"
27
+ msgstr "Tribe Event Add-Ons"
28
+
29
+ #: ../admin-views/app-shop.php:50
30
+ msgid "Version"
31
+ msgstr "Versiyon"
32
+
33
+ #: ../admin-views/app-shop.php:53
34
+ msgid "Last Update"
35
+ msgstr "Son güncelleme"
36
+
37
+ #: ../admin-views/event-sidebar-options.php:11
38
+ msgid "Hide From Event Listings"
39
+ msgstr "Etkinlik listelemesinden gizle"
40
+
41
+ #: ../admin-views/event-sidebar-options.php:12
42
+ msgid "Sticky in Calendar View"
43
+ msgstr "Takvim görünümünde yapışkan"
44
+
45
+ #: ../admin-views/events-audit-trail.php:41
46
+ msgid "Auditing Information"
47
+ msgstr "Denetim bilgisi"
48
+
49
+ #: ../admin-views/events-audit-trail.php:47
50
+ msgid "Created by:"
51
+ msgstr "Created by:"
52
+
53
+ #: ../admin-views/events-audit-trail.php:51
54
+ msgid "Audit Trail:"
55
+ msgstr "Audit Trail:"
56
+
57
+ #: ../admin-views/events-meta-box.php:26
58
+ msgid "Event Time &amp; Date"
59
+ msgstr "Etkinlik zaman &amp; Tarih"
60
+
61
+ #: ../admin-views/events-meta-box.php:32
62
+ msgid ""
63
+ "You have changed the recurrence rules of this event. Saving the event will "
64
+ "update all future events. If you did not mean to change all events, then "
65
+ "please refresh the page."
66
+ msgstr ""
67
+ "Bu etkinlik için yineleme kurallarını değiştirdiniz. Kaydetmeniz ilerideki "
68
+ "tüm etkinlikleri güncelleyecek. Bütün etkinliklerde işlem yapmak "
69
+ "istemiyorsanız sayfayı yenileyiniz."
70
+
71
+ #: ../admin-views/events-meta-box.php:35
72
+ msgid "All Day Event:"
73
+ msgstr "Tüm Gün Etkinlik:"
74
+
75
+ #: ../admin-views/events-meta-box.php:39
76
+ msgid "Start Date &amp; Time:"
77
+ msgstr "Başlangıç Tarih &amp; Zaman:"
78
+
79
+ #: ../admin-views/events-meta-box.php:42 ../admin-views/events-meta-box.php:63
80
+ msgid "YYYY-MM-DD"
81
+ msgstr "DD-MM-YYYY"
82
+
83
+ #: ../admin-views/events-meta-box.php:60
84
+ msgid "End Date &amp; Time:"
85
+ msgstr "Bitiş Tarih &amp; Zaman:"
86
+
87
+ #: ../admin-views/events-meta-box.php:85
88
+ msgid "Event Location Details"
89
+ msgstr "Etkinlik yeri detayları"
90
+
91
+ #: ../admin-views/events-meta-box.php:93
92
+ msgid "Event Organizer Details"
93
+ msgstr "Etkinlik organizatör detayları"
94
+
95
+ #: ../admin-views/events-meta-box.php:101
96
+ msgid "Event Website"
97
+ msgstr "Etkinlik sitesi"
98
+
99
+ #: ../admin-views/events-meta-box.php:104
100
+ msgid "URL:"
101
+ msgstr "Link:"
102
+
103
+ #: ../admin-views/events-meta-box.php:115
104
+ msgid "Event Cost"
105
+ msgstr "Etkinlik ücreti"
106
+
107
+ #: ../admin-views/events-meta-box.php:118
108
+ msgid "Currency Symbol:"
109
+ msgstr "Para birimi:"
110
+
111
+ #: ../admin-views/events-meta-box.php:122
112
+ #: ../public/advanced-functions/meta.php:270
113
+ msgid "Cost:"
114
+ msgstr "Ücret:"
115
+
116
+ #: ../admin-views/events-meta-box.php:127
117
+ msgid "Enter a 0 for events that are free or leave blank to hide the field."
118
+ msgstr "Ücretsiz için 0 yazın, alanı gizlemek için her hangi birşey yazmayın."
119
+
120
+ #: ../admin-views/organizer-meta-box.php:12
121
+ msgid "Organizer Name:"
122
+ msgstr "Organizatör Adı:"
123
+
124
+ #: ../admin-views/organizer-meta-box.php:19
125
+ #: ../admin-views/venue-meta-box.php:93
126
+ #: ../admin-views/tickets/attendees.php:39
127
+ #: ../public/advanced-functions/meta.php:357
128
+ #: ../public/advanced-functions/meta.php:419
129
+ msgid "Phone:"
130
+ msgstr "Telefon:"
131
+
132
+ #: ../admin-views/organizer-meta-box.php:23
133
+ #: ../admin-views/venue-meta-box.php:97
134
+ #: ../admin-views/tickets/attendees.php:45
135
+ #: ../public/advanced-functions/meta.php:308
136
+ #: ../public/advanced-functions/meta.php:383
137
+ #: ../public/advanced-functions/meta.php:445
138
+ msgid "Website:"
139
+ msgstr "Website:"
140
+
141
+ #: ../admin-views/organizer-meta-box.php:27
142
+ #: ../public/advanced-functions/meta.php:432
143
+ msgid "Email:"
144
+ msgstr "E-mail:"
145
+
146
+ #: ../admin-views/recurrence-dialog.php:13
147
+ msgid ""
148
+ "Would you like to change only this instance of the event, or all future "
149
+ "events in this series?"
150
+ msgstr ""
151
+ "Bu örnek etkinliği mi değiştirmek istiyorsunuz, yoksa bu serideki gelecek "
152
+ "tüm etkinlikleri mi değiştirmek istiyorsunuz?"
153
+
154
+ #: ../admin-views/recurrence-dialog.php:15
155
+ #: ../admin-views/recurrence-dialog.php:23
156
+ msgid "Only This Event:"
157
+ msgstr "Sadece bu etkinlik:"
158
+
159
+ #: ../admin-views/recurrence-dialog.php:15
160
+ msgid "All other future events in the series will remain the same."
161
+ msgstr "Seride kalan tüm diğer gelecek olaylar aynı kalır."
162
+
163
+ #: ../admin-views/recurrence-dialog.php:16
164
+ #: ../admin-views/recurrence-dialog.php:24
165
+ msgid "All Events:"
166
+ msgstr "Tüm etkinlikler:"
167
+
168
+ #: ../admin-views/recurrence-dialog.php:16
169
+ msgid ""
170
+ "All future events in the series will be changed. Any changes made to other "
171
+ "events will be kept."
172
+ msgstr ""
173
+ "Serideki tüm gelecek etkinlikler değişecektir. Diğer etkinliklerde yapılan "
174
+ "değişiklikler tutulacaktır."
175
+
176
+ #: ../admin-views/recurrence-dialog.php:21
177
+ msgid ""
178
+ "Would you like to delete only this instance of the event, or all future "
179
+ "events in this series?"
180
+ msgstr ""
181
+ "Sadece olayın bu durumda, ya da bu serideki tüm gelecekteki olayları silmek "
182
+ "ister misiniz?"
183
+
184
+ #: ../admin-views/recurrence-dialog.php:23
185
+ msgid "All other future events in the series will not be deleted."
186
+ msgstr "Serideki diğer gelecek etkinlikler silinmeyecek."
187
+
188
+ #: ../admin-views/recurrence-dialog.php:24
189
+ msgid "All future events in the series will be deleted."
190
+ msgstr "Serideki diğer gelecek etkinlikler silinecek."
191
+
192
+ #: ../admin-views/tribe-options-display.php:4
193
+ msgid "Default Events Template"
194
+ msgstr "Varsayılan etkinlik teması"
195
+
196
+ #: ../admin-views/tribe-options-display.php:5
197
+ msgid "Default Page Template"
198
+ msgstr "Varsayılan sayfa teması"
199
+
200
+ #: ../admin-views/tribe-options-display.php:29
201
+ msgid "Display Settings"
202
+ msgstr "Görünüm ayarları"
203
+
204
+ #: ../admin-views/tribe-options-display.php:34
205
+ #, fuzzy, php-format
206
+ msgid ""
207
+ "<p>The settings below control the display of your calendar. If things don't "
208
+ "look right, try switching between the three style sheet options or pick a "
209
+ "page template from your theme.</p><p>There are going to be situations where "
210
+ "no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s"
211
+ "\">our themer's guide</a> for instructions on custom modifications. Want to "
212
+ "create a new view? Grab a copy of the <a href=\"%s\">Sample Agenda View "
213
+ "plugin from Github</a></p>"
214
+ msgstr ""
215
+ "<p>Indstil visningen af din kalender herunder. Forsøg dig frem med de tre "
216
+ "layout valgmuligheder eller vælg et sidelayout fra dit sidetema. Ønsker du "
217
+ "at finjustere layoutet yderligere, kan du læse <a href=\"%s\">layoutguiden</"
218
+ "a>. Ønsker du at programmere en helt ny visning, kan du tage udgangspunkt i "
219
+ "denne kode: <a href=\"%s\">Sample Agenda View plugin from Github</a></p>"
220
+
221
+ #: ../admin-views/tribe-options-display.php:49
222
+ msgid "Basic Template Settings"
223
+ msgstr "Basit tema ayarları"
224
+
225
+ #: ../admin-views/tribe-options-display.php:53
226
+ msgid "Default stylesheet used for events templates"
227
+ msgstr "Etkinlik temalarında kullanılan varsayılmış stil şablonu."
228
+
229
+ #: ../admin-views/tribe-options-display.php:56
230
+ msgid "Skeleton Styles"
231
+ msgstr "Skeleton Styles"
232
+
233
+ #: ../admin-views/tribe-options-display.php:58
234
+ msgid ""
235
+ "Only includes enough css to achieve complex layouts like calendar and week "
236
+ "view."
237
+ msgstr ""
238
+
239
+ #: ../admin-views/tribe-options-display.php:60
240
+ msgid "Full Styles"
241
+ msgstr "Skeleton Styles"
242
+
243
+ #: ../admin-views/tribe-options-display.php:62
244
+ msgid "More detailed styling, tries to grab styles from your theme."
245
+ msgstr ""
246
+
247
+ #: ../admin-views/tribe-options-display.php:64
248
+ msgid "Tribe Events Styles"
249
+ msgstr "Tribe Events Styles"
250
+
251
+ #: ../admin-views/tribe-options-display.php:66
252
+ msgid "A fully designed and styled theme for your events pages."
253
+ msgstr ""
254
+
255
+ #: ../admin-views/tribe-options-display.php:73
256
+ msgid "Events template"
257
+ msgstr "Etkinlikler teması"
258
+
259
+ #: ../admin-views/tribe-options-display.php:74
260
+ msgid ""
261
+ "Choose a page template to control the appearance of your calendar and event "
262
+ "content."
263
+ msgstr ""
264
+ "Choose a page template to control the appearance of your calendar and event "
265
+ "content."
266
+
267
+ #: ../admin-views/tribe-options-display.php:82
268
+ msgid "Enable event views"
269
+ msgstr "Enable event views"
270
+
271
+ #: ../admin-views/tribe-options-display.php:83
272
+ msgid "You must select at least one view."
273
+ msgstr "En azından bir görünüm seçmelisiniz."
274
+
275
+ #: ../admin-views/tribe-options-display.php:90
276
+ msgid "Default view"
277
+ msgstr "Varsayılan görünüm"
278
+
279
+ #: ../admin-views/tribe-options-display.php:98
280
+ msgid "Disable the Event Search Bar"
281
+ msgstr "Etkinlik Arama Barını etkisizleştir"
282
+
283
+ #: ../admin-views/tribe-options-display.php:99
284
+ msgid "Check this to use the classic header."
285
+ msgstr "Klasik üst kısımı kullanmak için seçiniz."
286
+
287
+ #: ../admin-views/tribe-options-display.php:105
288
+ msgid "Advanced Template Settings"
289
+ msgstr "Gelişmiş tema ayarları"
290
+
291
+ #: ../admin-views/tribe-options-display.php:109
292
+ msgid "Add HTML before event content"
293
+ msgstr "Etkinlik içeriği öncesi HTML ekle"
294
+
295
+ #: ../admin-views/tribe-options-display.php:110
296
+ msgid ""
297
+ "If you are familiar with HTML, you can add additional code before the event "
298
+ "template. Some themes may require this to help with styling or layout."
299
+ msgstr ""
300
+ "HTML kodlamasına aşina iseniz, etkinlik teması öncesine ek kodlama "
301
+ "ekleyebilirsiniz. Bazı temalar bu işlemi yapmanız için stil ve layout "
302
+ "alanlarınızı da güncellemenizi gerektirebilir."
303
+
304
+ #: ../admin-views/tribe-options-display.php:115
305
+ msgid "Add HTML after event content"
306
+ msgstr "Etkinlik içeriği sonrası HTML ekle"
307
+
308
+ #: ../admin-views/tribe-options-display.php:116
309
+ msgid ""
310
+ "If you are familiar with HTML, you can add additional code after the event "
311
+ "template. Some themes may require this to help with styling or layout."
312
+ msgstr ""
313
+ "HTML kodlamasına aşina iseniz, etkinlik teması sonrasına ek kodlama "
314
+ "ekleyebilirsiniz. Bazı temalar bu işlemi yapmanız için stil ve layout "
315
+ "alanlarınızı da güncellemenizi gerektirebilir."
316
+
317
+ #: ../admin-views/tribe-options-general.php:14
318
+ msgid "Finding & extending your calendar."
319
+ msgstr "Finding & extending your calendar."
320
+
321
+ #: ../admin-views/tribe-options-general.php:19
322
+ msgid "Finding your calendar."
323
+ msgstr "Takviminizi bulun."
324
+
325
+ #: ../admin-views/tribe-options-general.php:24
326
+ msgid "Where's my calendar?"
327
+ msgstr "Takvimim nerede?"
328
+
329
+ #: ../admin-views/tribe-options-general.php:24
330
+ msgid "Right here"
331
+ msgstr "Tam burada"
332
+
333
+ #: ../admin-views/tribe-options-general.php:28
334
+ msgid ""
335
+ "Looking for additional functionality including recurring events, custom "
336
+ "meta, community events, ticket sales and more?"
337
+ msgstr ""
338
+ "Yinelenen etkinlikler, varsayılan meta ve topluluk etkinlikleri, bilet "
339
+ "satışı ve fazlası için ek fonksiyonlar mı arıyorsunuz?"
340
+
341
+ #: ../admin-views/tribe-options-general.php:28
342
+ msgid "Check out the available add-ons"
343
+ msgstr "Kullanılabilir eklentileri kontrol ediniz."
344
+
345
+ #: ../admin-views/tribe-options-general.php:33
346
+ msgid "We hope our plugin is helping you out."
347
+ msgstr "Umarız bu eklenti yardımcı olur. "
348
+
349
+ #: ../admin-views/tribe-options-general.php:37
350
+ msgid ""
351
+ "Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
352
+ "Modern Tribe for all their hard work.\" The greatest thanks we could ask for "
353
+ "is recognition. Add a small text-only link at the bottom of your calendar "
354
+ "pointing to The Events Calendar project."
355
+ msgstr ""
356
+ "'Wow, bu eklenti süper! \"Bu zor işleri için Modern Tribe ekibine teşekkür "
357
+ "etmeliyim.\" En büyük teşekkür için etkinlik takviminiz altına The events "
358
+ "calendar projesine yönlendiren bir text link ekleyiniz. "
359
+
360
+ #: ../admin-views/tribe-options-general.php:37
361
+ #: ../admin-views/tribe-options-general.php:42
362
+ msgid "See an example of the link"
363
+ msgstr "Örnek linki incele"
364
+
365
+ #: ../admin-views/tribe-options-general.php:42
366
+ msgid ""
367
+ "Are you thinking \"Wow, this plugin is amazing! I should say thanks to "
368
+ "Modern Tribe for all their hard work.\" The greatest thanks we could ask for "
369
+ "is recognition. Add a small text only link at the bottom of your calendar "
370
+ "pointing to The Events Calendar project."
371
+ msgstr ""
372
+ "'Wow, bu eklenti süper! \"Bu zor işleri için Modern Tribe ekibine teşekkür "
373
+ "etmeliyim.\" En büyük teşekkür için etkinlik takviminiz altına The events "
374
+ "calendar projesine yönlendiren bir text link ekleyiniz. "
375
+
376
+ #: ../admin-views/tribe-options-general.php:47
377
+ msgid "Show The Events Calendar link"
378
+ msgstr "Etkinlik takvimi linkini görüntüle. "
379
+
380
+ #: ../admin-views/tribe-options-general.php:61
381
+ msgid "General Settings"
382
+ msgstr "Genel ayarlar"
383
+
384
+ #: ../admin-views/tribe-options-general.php:65
385
+ msgid "Number of events to show per page"
386
+ msgstr "Her sayfada görüntülenecek etkinlik sayısı"
387
+
388
+ #: ../admin-views/tribe-options-general.php:72
389
+ msgid "Use Javascript to control page load"
390
+ msgstr "Sayfa yüklemesini kontrol etmek için Javascript kullan"
391
+
392
+ #: ../admin-views/tribe-options-general.php:73
393
+ msgid "Enable ajax to live refresh content."
394
+ msgstr "Enable ajax to live refresh content."
395
+
396
+ #: ../admin-views/tribe-options-general.php:79
397
+ msgid "Show comments"
398
+ msgstr "Yorumları görüntüle"
399
+
400
+ #: ../admin-views/tribe-options-general.php:80
401
+ msgid "Enable comments on event pages."
402
+ msgstr "Etkinlikler sayfasında yorumları aktif et. "
403
+
404
+ #: ../admin-views/tribe-options-general.php:86
405
+ msgid "Include events in main blog loop"
406
+ msgstr "Include events in main blog loop"
407
+
408
+ #: ../admin-views/tribe-options-general.php:87
409
+ msgid ""
410
+ "Show events with the site's other posts. When this box is checked, events "
411
+ "will also continue to appear on the default events page."
412
+ msgstr ""
413
+ "Etkinlikleri sitenin diğer yazıları ile birlikte görüntüle. Bu alan "
414
+ "işaretlendiğinde, etkinlikler varsayılan etkinlik sayfalarında "
415
+ "görüntülenmeye yine de devam eder. "
416
+
417
+ #: ../admin-views/tribe-options-general.php:93
418
+ #: ../admin-views/tribe-options-general.php:99
419
+ msgid "Events URL slug"
420
+ msgstr "Etkinlikler slug URL"
421
+
422
+ #: ../admin-views/tribe-options-general.php:94
423
+ #, php-format
424
+ msgid ""
425
+ "You cannot edit the slug for your events page as you do not have pretty "
426
+ "permalinks enabled. The current URL for your events page is <a href=\"%s\">"
427
+ "%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php"
428
+ "\">enable pretty permalinks</a>."
429
+ msgstr ""
430
+ "You cannot edit the slug for your events page as you do not have pretty "
431
+ "permalinks enabled. The current URL for your events page is <a href=\"%s\">"
432
+ "%s</a>. In order to edit the slug here, <a href=\"%soptions-permalink.php"
433
+ "\">enable pretty permalinks</a>."
434
+
435
+ #: ../admin-views/tribe-options-general.php:106
436
+ #: ../public/template-tags/options.php:20
437
+ msgid "The slug used for building the events URL."
438
+ msgstr "The slug used for building the events URL."
439
+
440
+ #: ../admin-views/tribe-options-general.php:106
441
+ #, php-format
442
+ msgid "Your current events URL is: %s"
443
+ msgstr "Link: %s"
444
+
445
+ #: ../admin-views/tribe-options-general.php:111
446
+ #: ../public/template-tags/options.php:43
447
+ msgid "Here is the iCal feed URL for your events:"
448
+ msgstr "iCal beslemeniz için link burada:"
449
+
450
+ #: ../admin-views/tribe-options-general.php:116
451
+ msgid "Single event URL slug"
452
+ msgstr "Single event URL slug"
453
+
454
+ #: ../admin-views/tribe-options-general.php:123
455
+ #, php-format
456
+ msgid ""
457
+ "The above should ideally be plural, and this singular.<br />Your single "
458
+ "event URL is: %s"
459
+ msgstr ""
460
+ "The above should ideally be plural, and this singular.<br />Your single "
461
+ "event URL is: %s"
462
+
463
+ #: ../admin-views/tribe-options-general.php:128
464
+ msgid "End of day cutoff"
465
+ msgstr "Gün dönümü"
466
+
467
+ #: ../admin-views/tribe-options-general.php:136
468
+ msgid ""
469
+ "Have events that run past midnight? Control when your day official ends to "
470
+ "avoid awkwardly adding your event to the next day."
471
+ msgstr ""
472
+ "Have events that run past midnight? Control when your day official ends to "
473
+ "avoid awkwardly adding your event to the next day."
474
+
475
+ #: ../admin-views/tribe-options-general.php:141
476
+ msgid "Default currency symbol"
477
+ msgstr "Varsayılan para simgesi"
478
+
479
+ #: ../admin-views/tribe-options-general.php:142
480
+ msgid ""
481
+ "Set the default currency symbol for event costs. Note that this only impacts "
482
+ "future events, and changes made will not apply retroactively."
483
+ msgstr ""
484
+ "Etkinlik için varsayılan para simgesini ayarlayınız. Bu işlem geçmişteki "
485
+ "etkinlikleri kapsamaz. "
486
+
487
+ #: ../admin-views/tribe-options-general.php:149
488
+ msgid "Map Settings"
489
+ msgstr "Harita Ayarları"
490
+
491
+ #: ../admin-views/tribe-options-general.php:153
492
+ msgid "Enable Google Maps"
493
+ msgstr "Google Haritaları Aktif et"
494
+
495
+ #: ../admin-views/tribe-options-general.php:154
496
+ msgid "Check to enable maps for events and venues."
497
+ msgstr "Etkinlikler ve Mekanlar için uygun haritaları kontrol et"
498
+
499
+ #: ../admin-views/tribe-options-general.php:161
500
+ msgid "Google Maps default zoom level"
501
+ msgstr "Google haritalar varsayılan zoom seviyesi"
502
+
503
+ #: ../admin-views/tribe-options-general.php:162
504
+ msgid "0 = zoomed out; 21 = zoomed in."
505
+ msgstr "0 = zoom out ; 21 = zoom in."
506
+
507
+ #: ../admin-views/tribe-options-general.php:170
508
+ msgid "Miscellaneous Settings"
509
+ msgstr "Çeşitli Ayarlar"
510
+
511
+ #: ../admin-views/tribe-options-general.php:174
512
+ msgid "Duplicate Venues &amp; Organizers"
513
+ msgstr "Çift mekanlar &amp; organizatörler"
514
+
515
+ #: ../admin-views/tribe-options-general.php:174
516
+ #: ../lib/tribe-amalgamator.php:252
517
+ msgid "Merge Duplicates"
518
+ msgstr "Çift kayıtları birleştir"
519
+
520
+ #: ../admin-views/tribe-options-general.php:174
521
+ msgid ""
522
+ "You might find duplicate venues and organizers when updating The Events "
523
+ "Calendar from a pre-3.0 version. Click this button to automatically merge "
524
+ "identical venues and organizers."
525
+ msgstr ""
526
+ "You might find duplicate venues and organizers when updating The Events "
527
+ "Calendar from a pre-3.0 version. Click this button to automatically merge "
528
+ "identical venues and organizers."
529
+
530
+ #: ../admin-views/tribe-options-general.php:179
531
+ msgid "Debug mode"
532
+ msgstr "Debug modu"
533
+
534
+ #: ../admin-views/tribe-options-general.php:185
535
+ #, php-format
536
+ msgid ""
537
+ "Enable this option to log debug information. By default this will log to "
538
+ "your server PHP error log. If you'd like to see the log messages in your "
539
+ "browser, then we recommend that you install the %s and look for the \"Tribe"
540
+ "\" tab in the debug output."
541
+ msgstr ""
542
+ "Enable this option to log debug information. By default this will log to "
543
+ "your server PHP error log. If you'd like to see the log messages in your "
544
+ "browser, then we recommend that you install the %s and look for the \"Tribe"
545
+ "\" tab in the debug output."
546
+
547
+ #: ../admin-views/tribe-options-general.php:185
548
+ msgid "Debug Bar Plugin"
549
+ msgstr "Debug Alanı Eklentisi"
550
+
551
+ #: ../admin-views/tribe-options-help.php:18
552
+ msgctxt "not available"
553
+ msgid "n/a"
554
+ msgstr "n/a"
555
+
556
+ #: ../admin-views/tribe-options-help.php:19
557
+ msgid "You need to upgrade!"
558
+ msgstr "Yükseltme yapmanız gerekmekte!"
559
+
560
+ #: ../admin-views/tribe-options-help.php:19
561
+ msgid "You are up to date!"
562
+ msgstr "Güncel durumda!"
563
+
564
+ #: ../admin-views/tribe-options-help.php:42
565
+ msgid "The Events Calendar PRO"
566
+ msgstr "The Events Calendar PRO"
567
+
568
+ #: ../admin-views/tribe-options-help.php:46
569
+ msgid "Eventbrite Tickets"
570
+ msgstr "Eventbrite Tickets"
571
+
572
+ #: ../admin-views/tribe-options-help.php:50
573
+ msgid "Community Events"
574
+ msgstr "Community Events"
575
+
576
+ #: ../admin-views/tribe-options-help.php:54
577
+ msgid "Facebook Events"
578
+ msgstr "Facebook Events"
579
+
580
+ #: ../admin-views/tribe-options-help.php:58
581
+ msgid "WooTickets"
582
+ msgstr "WooTickets"
583
+
584
+ #: ../admin-views/tribe-options-help.php:63
585
+ msgid "Faceted Filters"
586
+ msgstr "Gelişmiş Filtreler"
587
+
588
+ #: ../admin-views/tribe-options-help.php:71
589
+ msgid "Documentation"
590
+ msgstr "Dökümantasyon"
591
+
592
+ #: ../admin-views/tribe-options-help.php:75
593
+ msgid "FAQ"
594
+ msgstr "Sık Sorulan Sorular"
595
+
596
+ #: ../admin-views/tribe-options-help.php:79
597
+ #: ../lib/the-events-calendar.class.php:743
598
+ #: ../lib/the-events-calendar.class.php:3889
599
+ #: ../lib/the-events-calendar.class.php:3980
600
+ msgid "Help"
601
+ msgstr "Yardım"
602
+
603
+ #: ../admin-views/tribe-options-help.php:83
604
+ msgid "Tutorials"
605
+ msgstr "Öğretici Bilgiler"
606
+
607
+ #: ../admin-views/tribe-options-help.php:87
608
+ msgid "Release Notes"
609
+ msgstr "Sürüm Notları"
610
+
611
+ #: ../admin-views/tribe-options-help.php:91
612
+ msgid "Forums"
613
+ msgstr "Forumlar"
614
+
615
+ #: ../admin-views/tribe-options-help.php:99
616
+ msgid ""
617
+ "If this is your first time using The Events Calendar, you're in for a treat "
618
+ "and are already well on your way to creating a first event. Here are some "
619
+ "basics we've found helpful for users jumping into it for the first time:"
620
+ msgstr ""
621
+
622
+ #: ../admin-views/tribe-options-help.php:102
623
+ #, php-format
624
+ msgid ""
625
+ "%sOur New User Primer%s was designed for folks in your exact position. "
626
+ "Featuring both step-by-step videos and written walkthroughs that feature "
627
+ "accompanying screenshots, the primer aims to take you from zero to hero in "
628
+ "no time."
629
+ msgstr ""
630
+
631
+ #: ../admin-views/tribe-options-help.php:104
632
+ #, php-format
633
+ msgid ""
634
+ "%sInstallation/Setup FAQs%s from our support page can help give an overview "
635
+ "of what the plugin can and cannot do. This section of the FAQs may be "
636
+ "helpful as it aims to address any basic install questions not addressed by "
637
+ "the new user primer."
638
+ msgstr ""
639
+
640
+ #: ../admin-views/tribe-options-help.php:106
641
+ #, php-format
642
+ msgid ""
643
+ "Are you developer looking to build your own frontend view? We created an "
644
+ "example plugin that demonstrates how to register a new view. You can "
645
+ "%sdownload the plugin at GitHub%s to get started."
646
+ msgstr ""
647
+
648
+ #: ../admin-views/tribe-options-help.php:108
649
+ msgid ""
650
+ "Otherwise, if you're feeling adventurous, you can get started by heading to "
651
+ "the Events menu and adding your first event."
652
+ msgstr ""
653
+
654
+ #: ../admin-views/tribe-options-help.php:112
655
+ #, php-format
656
+ msgid ""
657
+ "We've redone our support page from the ground up in an effort to better help "
658
+ "our users. Head over to our %sSupport Page%s and you'll find lots of great "
659
+ "resources, including:"
660
+ msgstr ""
661
+
662
+ #: ../admin-views/tribe-options-help.php:114
663
+ #, php-format
664
+ msgid ""
665
+ "%sTemplate tags, functions, and hooks & filters%s for The Events Calendar "
666
+ "&amp; Events Calendar PRO"
667
+ msgstr ""
668
+
669
+ #: ../admin-views/tribe-options-help.php:116
670
+ #, php-format
671
+ msgid ""
672
+ "%sFrequently Asked Questions%s ranging from the most basic setup questions "
673
+ "to advanced themer tweaks"
674
+ msgstr ""
675
+
676
+ #: ../admin-views/tribe-options-help.php:118
677
+ #, php-format
678
+ msgid ""
679
+ "%sTutorials%s written by both members of our team and users from the "
680
+ "community, covering custom queries, integration with third-party themes and "
681
+ "plugins, etc."
682
+ msgstr ""
683
+
684
+ #: ../admin-views/tribe-options-help.php:120
685
+ msgid ""
686
+ "Release notes for painting an overall picture of the plugin's lifecycle and "
687
+ "when features/bug fixes were introduced."
688
+ msgstr ""
689
+
690
+ #: ../admin-views/tribe-options-help.php:122
691
+ #, php-format
692
+ msgid ""
693
+ "%sAdd-on documentation%s for all of Modern Tribe's official extensions for "
694
+ "The Events Calendar (including WooTickets, Community Events, Eventbrite "
695
+ "Tickets, Facebook Events, etc)"
696
+ msgstr ""
697
+
698
+ #: ../admin-views/tribe-options-help.php:124
699
+ #, php-format
700
+ msgid ""
701
+ "We've also got a %sModern Tribe UserVoice%s page where we're actively "
702
+ "watching for feature ideas from the community. If after playing with the "
703
+ "plugin and reviewing the resources above, you're finding a feature isn't "
704
+ "present that should be, let us know. Vote up existing feature requests or "
705
+ "add your own, and help us shape the future of the products business in a way "
706
+ "that best meets the community's needs."
707
+ msgstr ""
708
+
709
+ #: ../admin-views/tribe-options-help.php:128
710
+ #, php-format
711
+ msgid ""
712
+ "Written documentation can only take things so far...sometimes, you need help "
713
+ "from a real person. This is where our %ssupport forums%s come into play."
714
+ msgstr ""
715
+
716
+ #: ../admin-views/tribe-options-help.php:129
717
+ #, php-format
718
+ msgid ""
719
+ "Users of the free The Events Calendar should post their support concerns to "
720
+ "the plugin's %sWordPress.org support forum%s. While we are happy to help "
721
+ "identify and fix bugs that are reported at WordPress.org, please make sure "
722
+ "to read our %ssupport expectations sticky thread%s before posting so you "
723
+ "understand our limitations."
724
+ msgstr ""
725
+
726
+ #: ../admin-views/tribe-options-help.php:130
727
+ msgid ""
728
+ "We hit the WordPress.org forum throughout the week, watching for bugs. If "
729
+ "you report a legitimate bug that we're able to reproduce, we will log it and "
730
+ "patch for an upcoming release. However we are unfortunately unable to "
731
+ "provide customization tips or assist in integrating with 3rd party plugins "
732
+ "or themes."
733
+ msgstr ""
734
+
735
+ #: ../admin-views/tribe-options-help.php:131
736
+ #, php-format
737
+ msgid ""
738
+ "If you're a user of The Events Calendar and would like more support, please "
739
+ "%spurchase a PRO license%s. We hit the PRO forums daily, and can provide a "
740
+ "deeper level of customization/integration support for paying users than we "
741
+ "can on WordPress.org."
742
+ msgstr ""
743
+
744
+ #: ../admin-views/tribe-options-help.php:135
745
+ #, fuzzy, php-format
746
+ msgid ""
747
+ "If you find that you aren't getting the level of service you've come to "
748
+ "expect from Modern Tribe, shoot us an email at %s or tweet %s and tell us "
749
+ "why. We'll do what we can to make it right."
750
+ msgstr ""
751
+ "Shoot us an email at %s or tweet %s and tell us why. We'll do what we can to "
752
+ "make it right."
753
+
754
+ #: ../admin-views/tribe-options-help.php:136
755
+ msgid "More..."
756
+ msgstr "Daha fazla…"
757
+
758
+ #: ../admin-views/tribe-options-help.php:144
759
+ msgid ""
760
+ "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
761
+ "for installing our labor of love!"
762
+ msgstr ""
763
+ "Hi! We are Modern Tribe and we are here to help you kick ass. Thanks so much "
764
+ "for installing our labor of love!"
765
+
766
+ #: ../admin-views/tribe-options-help.php:150
767
+ msgid "Getting Started"
768
+ msgstr "Başlarken"
769
+
770
+ #: ../admin-views/tribe-options-help.php:153
771
+ #, fuzzy
772
+ msgid "Support Resources To Help You Kick Ass"
773
+ msgstr "Resources to Help You Kick Ass"
774
+
775
+ #: ../admin-views/tribe-options-help.php:156
776
+ #, fuzzy
777
+ msgid "Forums: Because Everyone Needs A Buddy"
778
+ msgstr "Everyone Needs a Buddy"
779
+
780
+ #: ../admin-views/tribe-options-help.php:159
781
+ msgid "Not getting help?"
782
+ msgstr ""
783
+
784
+ #: ../admin-views/tribe-options-help.php:169
785
+ #: ../lib/the-events-calendar.class.php:486
786
+ #: ../lib/tribe-settings.class.php:135
787
+ msgid "The Events Calendar"
788
+ msgstr "The Events Calendar"
789
+
790
+ #: ../admin-views/tribe-options-help.php:173
791
+ msgid "Latest Version:"
792
+ msgstr "Son Sürüm:"
793
+
794
+ #: ../admin-views/tribe-options-help.php:174
795
+ msgid "Author:"
796
+ msgstr "Yazar:"
797
+
798
+ #: ../admin-views/tribe-options-help.php:174
799
+ msgid "Modern Tribe Inc"
800
+ msgstr "Modern Tribe Inc"
801
+
802
+ #: ../admin-views/tribe-options-help.php:175
803
+ msgid "Requires:"
804
+ msgstr "Gereksinim:"
805
+
806
+ #: ../admin-views/tribe-options-help.php:175
807
+ msgid "WordPress "
808
+ msgstr "WordPress "
809
+
810
+ #: ../admin-views/tribe-options-help.php:176
811
+ msgid "Wordpress.org Plugin Page"
812
+ msgstr "Wordpress.org Eklenti Sayfası"
813
+
814
+ #: ../admin-views/tribe-options-help.php:181
815
+ msgid "Average Rating"
816
+ msgstr "Ortalama oylama"
817
+
818
+ #: ../admin-views/tribe-options-help.php:185
819
+ #, php-format
820
+ msgid "Based on %d rating"
821
+ msgid_plural "Based on %d ratings"
822
+ msgstr[0] "Oylamaya %d dayalı"
823
+ msgstr[1] "Oylamalara %d dayalı"
824
+
825
+ #: ../admin-views/tribe-options-help.php:186
826
+ msgid "Give us 5 stars!"
827
+ msgstr "5 yıldız verin!"
828
+
829
+ #: ../admin-views/tribe-options-help.php:189
830
+ msgid "Premium Add-Ons"
831
+ msgstr "Premium Add-Ons"
832
+
833
+ #: ../admin-views/tribe-options-help.php:195
834
+ msgid "(Coming Soon!)"
835
+ msgstr "(Coming Soon!)"
836
+
837
+ #: ../admin-views/tribe-options-help.php:202
838
+ msgid "News and Tutorials"
839
+ msgstr "Haberler ve öğretici bilgiler"
840
+
841
+ #: ../admin-views/tribe-options-network.php:14
842
+ msgid "Network Settings"
843
+ msgstr "Ağ Ayarları"
844
+
845
+ #: ../admin-views/tribe-options-network.php:18
846
+ msgid ""
847
+ "This is where all of the global network settings for Modern Tribe's The "
848
+ "Events Calendar can be modified."
849
+ msgstr ""
850
+ "This is where all of the global network settings for Modern Tribe's The "
851
+ "Events Calendar can be modified."
852
+
853
+ #: ../admin-views/tribe-options-network.php:26
854
+ msgid "Hide the following settings tabs on every site:"
855
+ msgstr "Hide the following settings tabs on every site:"
856
+
857
+ #: ../admin-views/venue-meta-box.php:20
858
+ msgid "Venue Name:"
859
+ msgstr "Mekan adı:"
860
+
861
+ #: ../admin-views/venue-meta-box.php:27
862
+ #: ../public/advanced-functions/meta.php:371
863
+ msgid "Address:"
864
+ msgstr "Adres:"
865
+
866
+ #: ../admin-views/venue-meta-box.php:31
867
+ msgid "City:"
868
+ msgstr "Şehir:"
869
+
870
+ #: ../admin-views/venue-meta-box.php:35
871
+ msgid "Country:"
872
+ msgstr "Ülke:"
873
+
874
+ #: ../admin-views/venue-meta-box.php:73
875
+ msgid "State or Province:"
876
+ msgstr "*"
877
+
878
+ #: ../admin-views/venue-meta-box.php:76
879
+ msgid "Select a State:"
880
+ msgstr "*"
881
+
882
+ #: ../admin-views/venue-meta-box.php:89
883
+ msgid "Postal Code:"
884
+ msgstr "Posta Kodu:"
885
+
886
+ #: ../admin-views/venue-meta-box.php:112 ../admin-views/venue-meta-box.php:134
887
+ msgid "Show Google Map:"
888
+ msgstr "Google Haritaları Görüntüle"
889
+
890
+ #: ../admin-views/venue-meta-box.php:122 ../admin-views/venue-meta-box.php:144
891
+ msgid "Show Google Maps Link:"
892
+ msgstr "Google Haritalar Linki Görüntüle"
893
+
894
+ #: ../admin-views/widget-admin-list.php:11
895
+ msgid "Title:"
896
+ msgstr "Başlık:"
897
+
898
+ #: ../admin-views/widget-admin-list.php:16
899
+ msgid "Show:"
900
+ msgstr "Göster:"
901
+
902
+ #: ../admin-views/widget-admin-list.php:24
903
+ msgid "Show widget only if there are upcoming events:"
904
+ msgstr "Bileşeni sadece yaklaşan etkinlik olduğunda görüntüle."
905
+
906
+ #: ../admin-views/tickets/attendees.php:9 ../admin-views/tickets/list.php:41
907
+ #: ../lib/tickets/tribe-tickets-pro.php:73
908
+ msgid "Attendees"
909
+ msgstr "Katılımcılar"
910
+
911
+ #: ../admin-views/tickets/attendees.php:14
912
+ msgid "Event Summary"
913
+ msgstr "Etkinlik Özeti"
914
+
915
+ #: ../admin-views/tickets/attendees.php:22
916
+ msgid "Event Details"
917
+ msgstr "Etkinlik Detayları"
918
+
919
+ #: ../admin-views/tickets/attendees.php:24
920
+ msgid "Start Date / Time:"
921
+ msgstr "Başlangıç Tarih / Zamanı"
922
+
923
+ #: ../admin-views/tickets/attendees.php:26
924
+ msgid "End Date / Time:"
925
+ msgstr "Bitiş Tarih / Zamanı"
926
+
927
+ #: ../admin-views/tickets/attendees.php:34
928
+ msgid "Venue:"
929
+ msgstr "Mekan: "
930
+
931
+ #: ../admin-views/tickets/attendees.php:52
932
+ msgid "Ticket Sales"
933
+ msgstr "Bilet Satış"
934
+
935
+ #: ../admin-views/tickets/attendees.php:64 ../admin-views/tickets/list.php:67
936
+ #, php-format
937
+ msgid "Sold %d"
938
+ msgstr "%d satıldı"
939
+
940
+ #: ../admin-views/tickets/attendees.php:66 ../admin-views/tickets/list.php:69
941
+ #, php-format
942
+ msgid "Sold %d of %d"
943
+ msgstr "%d den %d satıldı. "
944
+
945
+ #: ../admin-views/tickets/attendees.php:81
946
+ msgid "Tickets sold:"
947
+ msgstr "Biletler satıldı:"
948
+
949
+ #: ../admin-views/tickets/attendees.php:85
950
+ msgid "Checked in:"
951
+ msgstr "Checked in: "
952
+
953
+ #: ../admin-views/tickets/attendees.php:105
954
+ msgid "Send the attendee list by email"
955
+ msgstr "Katılımcı listesini mail olarak gönder"
956
+
957
+ #: ../admin-views/tickets/attendees.php:109
958
+ msgid "Select a User:"
959
+ msgstr "Kullanıcı seç"
960
+
961
+ #: ../admin-views/tickets/attendees.php:110
962
+ msgid "Select..."
963
+ msgstr "Seç..."
964
+
965
+ #: ../admin-views/tickets/attendees.php:112
966
+ msgid "or"
967
+ msgstr "ya da "
968
+
969
+ #: ../admin-views/tickets/attendees.php:114
970
+ msgid "Email Address:"
971
+ msgstr "Email Adresi:"
972
+
973
+ #: ../admin-views/tickets/list.php:21
974
+ msgid "Edit"
975
+ msgstr "Düzenle"
976
+
977
+ #: ../admin-views/tickets/list.php:22
978
+ msgid "Delete"
979
+ msgstr "Sil"
980
+
981
+ #: ../admin-views/tickets/list.php:24
982
+ #, php-format
983
+ msgid "Edit in %s"
984
+ msgstr "%s i düzenle"
985
+
986
+ #: ../admin-views/tickets/list.php:27
987
+ #: ../lib/tribe-admin-events-list.class.php:53
988
+ msgid "View"
989
+ msgstr "Görüntüle"
990
+
991
+ #: ../admin-views/tickets/list.php:41 ../lib/tickets/tribe-tickets-pro.php:73
992
+ msgid "See who purchased tickets to this event"
993
+ msgstr "Bu etkinlik için kimin bilet aldığını görüntüle"
994
+
995
+ #: ../admin-views/tickets/meta-box.php:21
996
+ msgid ""
997
+ "This event was created using Community Events. Are you sure you want to sell "
998
+ "tickets for it?"
999
+ msgstr ""
1000
+ "Bu etkinlik Community Events kullanılarak oluşturuldu. Bu etkinlik için için "
1001
+ "bilet satmak istediğinizden emin misiniz?"
1002
+
1003
+ #: ../admin-views/tickets/meta-box.php:32
1004
+ msgid "Upload image for the ticket header"
1005
+ msgstr "Bilet başlığı için resim yükleyiniz"
1006
+
1007
+ #: ../admin-views/tickets/meta-box.php:33
1008
+ msgid ""
1009
+ "The maximum image size in the email will be 580px wide by any height, and "
1010
+ "then scaled for mobile. If you would like \"retina\" support use an image "
1011
+ "sized to 1160px wide."
1012
+ msgstr ""
1013
+ "The maximum image size in the email will be 580px wide by any height, and "
1014
+ "then scaled for mobile. If you would like \"retina\" support use an image "
1015
+ "sized to 1160px wide. "
1016
+
1017
+ #: ../admin-views/tickets/meta-box.php:36
1018
+ msgid "Select an Image"
1019
+ msgstr "Resim seçiniz"
1020
+
1021
+ #: ../admin-views/tickets/meta-box.php:44
1022
+ msgid "Remove"
1023
+ msgstr "Kaldır"
1024
+
1025
+ #: ../admin-views/tickets/meta-box.php:62
1026
+ #: ../admin-views/tickets/meta-box.php:72
1027
+ msgid "Add new ticket"
1028
+ msgstr "Yeni bilet ekle"
1029
+
1030
+ #: ../admin-views/tickets/meta-box.php:73
1031
+ msgid "Edit ticket"
1032
+ msgstr "Bilet düzenle"
1033
+
1034
+ #: ../admin-views/tickets/meta-box.php:79
1035
+ msgid "Sell using:"
1036
+ msgstr "Satış kanalı: "
1037
+
1038
+ #: ../admin-views/tickets/meta-box.php:96
1039
+ msgid "Ticket Name:"
1040
+ msgstr "Bilet adı: "
1041
+
1042
+ #: ../admin-views/tickets/meta-box.php:103
1043
+ msgid "Ticket Description:"
1044
+ msgstr "Bilet tanımı:"
1045
+
1046
+ #: ../admin-views/tickets/meta-box.php:112
1047
+ msgid "Price:"
1048
+ msgstr "Ücret:"
1049
+
1050
+ #: ../admin-views/tickets/meta-box.php:124
1051
+ msgid "Start sale:"
1052
+ msgstr "Satış başlangıcı: "
1053
+
1054
+ #: ../admin-views/tickets/meta-box.php:148
1055
+ msgid "End sale:"
1056
+ msgstr "Satış bitişi:"
1057
+
1058
+ #: ../admin-views/tickets/meta-box.php:170
1059
+ msgid ""
1060
+ "When will ticket sales occur? If you don't set a start/end date for sales, "
1061
+ "tickets will be available from now until the event ends."
1062
+ msgstr ""
1063
+ "When will ticket sales occur? If you don't set a start/end date for sales, "
1064
+ "tickets will be available from now until the event ends."
1065
+
1066
+ #: ../lib/the-events-calendar.class.php:491
1067
+ msgid "month"
1068
+ msgstr "ay"
1069
+
1070
+ #: ../lib/the-events-calendar.class.php:492
1071
+ msgid "upcoming"
1072
+ msgstr "yaklaşan"
1073
+
1074
+ #: ../lib/the-events-calendar.class.php:493
1075
+ msgid "past"
1076
+ msgstr "geçmiş"
1077
+
1078
+ #: ../lib/the-events-calendar.class.php:495
1079
+ msgid "venue"
1080
+ msgstr "mekan"
1081
+
1082
+ #: ../lib/the-events-calendar.class.php:509
1083
+ #, php-format
1084
+ msgid "Initializing Tribe Events on %s"
1085
+ msgstr "Initializing Tribe Events on %s"
1086
+
1087
+ #: ../lib/the-events-calendar.class.php:622
1088
+ #, php-format
1089
+ msgid ""
1090
+ "Your version of The Events Calendar is not up-to-date with one of your The "
1091
+ "Events Calendar add-ons. Please %supdate now.%s"
1092
+ msgstr ""
1093
+ "The events calendar, kullandığınız eklentilerden biri için güncel değil. "
1094
+ "Lütfen %sgüncelleyiniz.%s"
1095
+
1096
+ #: ../lib/the-events-calendar.class.php:639
1097
+ #, fuzzy, php-format
1098
+ msgid ""
1099
+ "The following plugins are out of date: <b>%s</b>. All add-ons contain "
1100
+ "dependencies on The Events Calendar and will not function properly unless "
1101
+ "paired with the right version. %sWant to pair an older version%s?"
1102
+ msgstr ""
1103
+ "Følgende plugins er out-of-date: <b>%s</b>. %sOpdater venligst%s. Hvis ikke "
1104
+ "der opdateres til en kompatibel version kan vi ikke garantere at dine Add-"
1105
+ "ons virker korrekt. %sØnsker du en ældre, men kompatibel version %s?"
1106
+
1107
+ #: ../lib/the-events-calendar.class.php:703
1108
+ #: ../lib/the-events-calendar.class.php:738
1109
+ #: ../lib/the-events-calendar.class.php:740
1110
+ msgid "Licenses"
1111
+ msgstr "Lisanslar"
1112
+
1113
+ #: ../lib/the-events-calendar.class.php:707
1114
+ #, fuzzy, php-format
1115
+ msgid ""
1116
+ "<p>The license key you received when completing your purchase from %s will "
1117
+ "grant you access to support and updates until it expires. You do not need to "
1118
+ "enter the key below for the plugins to work, but you will need to enter it "
1119
+ "to get automatic updates. <strong>Find your license keys at <a href=\"%s\" "
1120
+ "target=\"_blank\">%s</a></strong>.</p> <p>Each paid add-on has its own "
1121
+ "unique license key. Simply paste the key into its appropriate field on "
1122
+ "below, and give it a moment to validate. You know you're set when a green "
1123
+ "expiration date appears alongside a \"valid\" message.</p> <p>If you're "
1124
+ "seeing a red message telling you that your key isn't valid or is out of "
1125
+ "installs, visit <a href=\"%s\" target=\"_blank\">%s</a> to manage your "
1126
+ "installs or renew / upgrade your license.</p><p>Not seeing an update but "
1127
+ "expecting one? In WordPress, go to <a href=\"%s\">Dashboard > Updates</a> "
1128
+ "and click \"Check Again\".</p>"
1129
+ msgstr ""
1130
+ "<p>Licensnøglen, du modtog efter købet på %s, giver adgang til support og "
1131
+ "opdateringer indtil nøglen udløber. Det er ikke nødvendigt at indtaste "
1132
+ "nøglen herunder for at få pluginet til at virke, men du skal indtaste det "
1133
+ "for at få automatiske opdateringer. <strong>Find din licensnøgle på <a href="
1134
+ "\"%s\">%s</a></strong>.</p><p>Betalte Add-ons har deres egne licensnøgler. "
1135
+ "Indtast licensnøglerne herunder for at validere dem. Efter en kort ventetid "
1136
+ "vil udløbsdatoen vises sammen med en grøn \"valid\" besked. </p><p>Får du en "
1137
+ "rød besked med teksten \"your key isn't valid or is out of installs\", så "
1138
+ "skal licensnøglen fornys.</p><p>Hvis du ved at der er lanceret en "
1139
+ "opdatering, men oplever at Wordpress ikke har opdaget det endnu, så klik på "
1140
+ "\"Tjek igen\" på <a href=\"%s\">Dashboard > Updates</a>."
1141
+
1142
+ #: ../lib/the-events-calendar.class.php:730
1143
+ msgid "General"
1144
+ msgstr "Genel"
1145
+
1146
+ #: ../lib/the-events-calendar.class.php:731
1147
+ msgid "Display"
1148
+ msgstr "Görüntüle"
1149
+
1150
+ #: ../lib/the-events-calendar.class.php:782
1151
+ #, php-format
1152
+ msgid ""
1153
+ "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade "
1154
+ "your WordPress install."
1155
+ msgstr ""
1156
+ "Üzgünüm, The Events Calendar WordPress'in %s eller nyere. Venligst opgrader "
1157
+ "din WordPress installation."
1158
+
1159
+ #: ../lib/the-events-calendar.class.php:785
1160
+ #, php-format
1161
+ msgid ""
1162
+ "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
1163
+ "about moving you to a newer version of PHP."
1164
+ msgstr ""
1165
+ "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host "
1166
+ "about moving you to a newer version of PHP."
1167
+
1168
+ #: ../lib/the-events-calendar.class.php:1000 ../lib/widget-list.class.php:151
1169
+ #: ../public/template-tags/loop.php:137
1170
+ msgid "Upcoming Events"
1171
+ msgstr "Yaklaşan Etkinlikler"
1172
+
1173
+ #: ../lib/the-events-calendar.class.php:1003
1174
+ #: ../public/template-tags/loop.php:165
1175
+ msgid "Past Events"
1176
+ msgstr "Geçmiş Etkinlikler"
1177
+
1178
+ #: ../lib/the-events-calendar.class.php:1008
1179
+ #: ../lib/the-events-calendar.class.php:1015
1180
+ #, php-format
1181
+ msgid "Events for %s"
1182
+ msgstr "%s için etkinlikler"
1183
+
1184
+ #: ../lib/the-events-calendar.class.php:1010
1185
+ msgid "Events this month"
1186
+ msgstr "Bu ayın etkinlikleri"
1187
+
1188
+ #: ../lib/the-events-calendar.class.php:1022
1189
+ #, php-format
1190
+ msgid "Events at %s"
1191
+ msgstr "%s 'deki etkinlikler"
1192
+
1193
+ #: ../lib/the-events-calendar.class.php:1041
1194
+ msgid "No description has been entered for this event."
1195
+ msgstr "Bu etkinlik için açıklama bulunmuyor. "
1196
+
1197
+ #: ../lib/the-events-calendar.class.php:1303
1198
+ msgid "category"
1199
+ msgstr "kategori"
1200
+
1201
+ #: ../lib/the-events-calendar.class.php:1313
1202
+ msgid "tag"
1203
+ msgstr "tag"
1204
+
1205
+ #: ../lib/the-events-calendar.class.php:1340
1206
+ #: ../lib/the-events-calendar.class.php:3820
1207
+ #: ../lib/the-events-calendar.class.php:3880
1208
+ msgid "Events"
1209
+ msgstr "Etkinlikler"
1210
+
1211
+ #: ../lib/the-events-calendar.class.php:1341
1212
+ msgid "Event"
1213
+ msgstr "Etkinlik"
1214
+
1215
+ #: ../lib/the-events-calendar.class.php:1342
1216
+ #: ../lib/the-events-calendar.class.php:1355
1217
+ #: ../lib/the-events-calendar.class.php:1368
1218
+ msgid "Add New"
1219
+ msgstr "Yeni Ekle"
1220
+
1221
+ #: ../lib/the-events-calendar.class.php:1343
1222
+ msgid "Add New Event"
1223
+ msgstr "Yeni Etkinlik Ekle"
1224
+
1225
+ #: ../lib/the-events-calendar.class.php:1344
1226
+ msgid "Edit Event"
1227
+ msgstr "Etkinliği Düzenle"
1228
+
1229
+ #: ../lib/the-events-calendar.class.php:1345
1230
+ msgid "New Event"
1231
+ msgstr "Yeni Etkinlik"
1232
+
1233
+ #: ../lib/the-events-calendar.class.php:1346
1234
+ msgid "View Event"
1235
+ msgstr "Etkinliği Görüntüle"
1236
+
1237
+ #: ../lib/the-events-calendar.class.php:1347
1238
+ msgid "Search Events"
1239
+ msgstr "Etkinlikleri Ara"
1240
+
1241
+ #: ../lib/the-events-calendar.class.php:1348
1242
+ msgid "No events found"
1243
+ msgstr "Etkinlik Bulunamadı"
1244
+
1245
+ #: ../lib/the-events-calendar.class.php:1349
1246
+ msgid "No events found in Trash"
1247
+ msgstr "Çöpte Etkinlik Bulunamadı"
1248
+
1249
+ #: ../lib/the-events-calendar.class.php:1353
1250
+ #: ../lib/the-events-calendar.class.php:1465
1251
+ msgid "Venues"
1252
+ msgstr "Mekanlar"
1253
+
1254
+ #: ../lib/the-events-calendar.class.php:1354
1255
+ #: ../public/advanced-functions/meta.php:331 ../views/tickets/email.php:343
1256
+ msgid "Venue"
1257
+ msgstr "Mekan"
1258
+
1259
+ #: ../lib/the-events-calendar.class.php:1356
1260
+ msgid "Add New Venue"
1261
+ msgstr "Yeni Mekan Ekle"
1262
+
1263
+ #: ../lib/the-events-calendar.class.php:1357
1264
+ msgid "Edit Venue"
1265
+ msgstr "Mekan Düzenle"
1266
+
1267
+ #: ../lib/the-events-calendar.class.php:1358
1268
+ msgid "New Venue"
1269
+ msgstr "Yeni Mekan"
1270
+
1271
+ #: ../lib/the-events-calendar.class.php:1359
1272
+ msgid "View Venue"
1273
+ msgstr "Mekan Görüntüle"
1274
+
1275
+ #: ../lib/the-events-calendar.class.php:1360
1276
+ msgid "Search Venues"
1277
+ msgstr "Mekan Ara"
1278
+
1279
+ #: ../lib/the-events-calendar.class.php:1361
1280
+ msgid "No venue found"
1281
+ msgstr "Mekan bulunamadı"
1282
+
1283
+ #: ../lib/the-events-calendar.class.php:1362
1284
+ msgid "No venues found in Trash"
1285
+ msgstr "Çöpte Mekan bulunamadı"
1286
+
1287
+ #: ../lib/the-events-calendar.class.php:1366
1288
+ #: ../lib/the-events-calendar.class.php:1466
1289
+ msgid "Organizers"
1290
+ msgstr "Organizatörler"
1291
+
1292
+ #: ../lib/the-events-calendar.class.php:1367
1293
+ #: ../public/advanced-functions/meta.php:393 ../views/tickets/email.php:362
1294
+ msgid "Organizer"
1295
+ msgstr "Organizatör"
1296
+
1297
+ #: ../lib/the-events-calendar.class.php:1369
1298
+ msgid "Add New Organizer"
1299
+ msgstr "Yeni Organizatör Ekle"
1300
+
1301
+ #: ../lib/the-events-calendar.class.php:1370
1302
+ msgid "Edit Organizer"
1303
+ msgstr "Organizatör Düzenle"
1304
+
1305
+ #: ../lib/the-events-calendar.class.php:1371
1306
+ msgid "New Organizer"
1307
+ msgstr "Yeni Organizatör"
1308
+
1309
+ #: ../lib/the-events-calendar.class.php:1372
1310
+ msgid "View Organizer"
1311
+ msgstr "Organizatör Görüntüle"
1312
+
1313
+ #: ../lib/the-events-calendar.class.php:1373
1314
+ msgid "Search Organizers"
1315
+ msgstr "Organizatör Ara"
1316
+
1317
+ #: ../lib/the-events-calendar.class.php:1374
1318
+ msgid "No organizer found"
1319
+ msgstr "Organizatör Bulunamadı"
1320
+
1321
+ #: ../lib/the-events-calendar.class.php:1375
1322
+ msgid "No organizers found in Trash"
1323
+ msgstr "Çöpte organizatör bulunamadı"
1324
+
1325
+ #: ../lib/the-events-calendar.class.php:1379
1326
+ #: ../lib/tribe-admin-events-list.class.php:217
1327
+ msgid "Event Categories"
1328
+ msgstr "Etkinlik Kategorileri"
1329
+
1330
+ #: ../lib/the-events-calendar.class.php:1380
1331
+ #: ../public/template-tags/general.php:276
1332
+ msgid "Event Category"
1333
+ msgstr "Etkinlik Kategorisi"
1334
+
1335
+ #: ../lib/the-events-calendar.class.php:1381
1336
+ msgid "Search Event Categories"
1337
+ msgstr "Etkinlik Kategorileri ara"
1338
+
1339
+ #: ../lib/the-events-calendar.class.php:1382
1340
+ msgid "All Event Categories"
1341
+ msgstr "Tüm etkinlik kategorileri"
1342
+
1343
+ #: ../lib/the-events-calendar.class.php:1383
1344
+ msgid "Parent Event Category"
1345
+ msgstr "Ana etkinlik kategorisi"
1346
+
1347
+ #: ../lib/the-events-calendar.class.php:1384
1348
+ msgid "Parent Event Category:"
1349
+ msgstr "Ana etkinlik kategorisi:"
1350
+
1351
+ #: ../lib/the-events-calendar.class.php:1385
1352
+ msgid "Edit Event Category"
1353
+ msgstr "Etkinlik kategorisini düzenle"
1354
+
1355
+ #: ../lib/the-events-calendar.class.php:1386
1356
+ msgid "Update Event Category"
1357
+ msgstr "Etkinlik kategorisini güncelle"
1358
+
1359
+ #: ../lib/the-events-calendar.class.php:1387
1360
+ msgid "Add New Event Category"
1361
+ msgstr "Yeni etkinlik kategorisi ekle"
1362
+
1363
+ #: ../lib/the-events-calendar.class.php:1388
1364
+ msgid "New Event Category Name"
1365
+ msgstr "Yeni etkinlik kategorisi adı ekle"
1366
+
1367
+ #: ../lib/the-events-calendar.class.php:1404
1368
+ #, php-format
1369
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1370
+ msgstr "Etkinlik güncellendi. <a href=\"%s\">Etkinliği görüntüle</a>"
1371
+
1372
+ #: ../lib/the-events-calendar.class.php:1405
1373
+ #: ../lib/the-events-calendar.class.php:1422
1374
+ #: ../lib/the-events-calendar.class.php:1439
1375
+ msgid "Custom field updated."
1376
+ msgstr "Custom field güncellendi."
1377
+
1378
+ #: ../lib/the-events-calendar.class.php:1406
1379
+ #: ../lib/the-events-calendar.class.php:1423
1380
+ #: ../lib/the-events-calendar.class.php:1440
1381
+ msgid "Custom field deleted."
1382
+ msgstr "Custom field silindi."
1383
+
1384
+ #: ../lib/the-events-calendar.class.php:1407
1385
+ msgid "Event updated."
1386
+ msgstr "Etkinlik güncellendi."
1387
+
1388
+ #: ../lib/the-events-calendar.class.php:1409
1389
+ #, php-format
1390
+ msgid "Event restored to revision from %s"
1391
+ msgstr "Etkinlik %s sürümünden geri yüklendi. "
1392
+
1393
+ #: ../lib/the-events-calendar.class.php:1410
1394
+ #, php-format
1395
+ msgid "Event published. <a href=\"%s\">View event</a>"
1396
+ msgstr "Etkinlik yayınlandı. <a href=\"%s\">Etkinliği görüntüle</a>"
1397
+
1398
+ #: ../lib/the-events-calendar.class.php:1411
1399
+ msgid "Event saved."
1400
+ msgstr "Etkinlik kaydedildi."
1401
+
1402
+ #: ../lib/the-events-calendar.class.php:1412
1403
+ #, php-format
1404
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1405
+ msgstr ""
1406
+ "Etkinlik gönderildi.. <a target=\"_blank\" href=\"%s\">Etkinliği önizle</a>"
1407
+
1408
+ #: ../lib/the-events-calendar.class.php:1413
1409
+ #, php-format
1410
+ msgid ""
1411
+ "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1412
+ "\">Preview event</a>"
1413
+ msgstr ""
1414
+ "Etkinlik şu tarihe zamanlandı: <strong>%1$s</strong>. <a target=\"_blank\" "
1415
+ "href=\"%2$s\">Etkinliği önizle</a>"
1416
+
1417
+ #: ../lib/the-events-calendar.class.php:1415
1418
+ #: ../lib/the-events-calendar.class.php:1432
1419
+ #: ../lib/the-events-calendar.class.php:1449
1420
+ msgid "M j, Y @ G:i"
1421
+ msgstr "M j, Y @ G:i"
1422
+
1423
+ #: ../lib/the-events-calendar.class.php:1416
1424
+ #, php-format
1425
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1426
+ msgstr ""
1427
+ "Etkinlik taslağı güncellendi. <a target=\"_blank\" href=\"%s\">Etkinliği "
1428
+ "önizle</a>"
1429
+
1430
+ #: ../lib/the-events-calendar.class.php:1421
1431
+ #, php-format
1432
+ msgid "Venue updated. <a href=\"%s\">View venue</a>"
1433
+ msgstr "Mekan güncellendi. <a href=\"%s\">Mekanı görüntüle</a>"
1434
+
1435
+ #: ../lib/the-events-calendar.class.php:1424
1436
+ msgid "Venue updated."
1437
+ msgstr "Mekan güncellendi."
1438
+
1439
+ #: ../lib/the-events-calendar.class.php:1426
1440
+ #, php-format
1441
+ msgid "Venue restored to revision from %s"
1442
+ msgstr "Mekan %s versyonundan geri dönüldü."
1443
+
1444
+ #: ../lib/the-events-calendar.class.php:1427
1445
+ #, php-format
1446
+ msgid "Venue published. <a href=\"%s\">View venue</a>"
1447
+ msgstr "Mekan yayınlandı. <a href=\"%s\">Mekanı görüntüle</a>"
1448
+
1449
+ #: ../lib/the-events-calendar.class.php:1428
1450
+ msgid "Venue saved."
1451
+ msgstr "Mekan kaydedildi."
1452
+
1453
+ #: ../lib/the-events-calendar.class.php:1429
1454
+ #, php-format
1455
+ msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1456
+ msgstr "Mekan gönderildi. <a target=\"_blank\" href=\"%s\">Mekanı önizle</a>"
1457
+
1458
+ #: ../lib/the-events-calendar.class.php:1430
1459
+ #, php-format
1460
+ msgid ""
1461
+ "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1462
+ "\">Preview venue</a>"
1463
+ msgstr ""
1464
+ "<strong>%1$s</strong> tarihi için mekan planlandı. <a target=\"_blank\" href="
1465
+ "\"%2$s\">Mekanı önizle</a>"
1466
+
1467
+ #: ../lib/the-events-calendar.class.php:1433
1468
+ #, php-format
1469
+ msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
1470
+ msgstr ""
1471
+ "Mekan taslağı güncellendi. <a target=\"_blank\" href=\"%s\">Mekanı önizle</a>"
1472
+
1473
+ #: ../lib/the-events-calendar.class.php:1438
1474
+ #, php-format
1475
+ msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
1476
+ msgstr "Organizatör güncellendi. <a href=\"%s\">Organizatörü görüntüle</a>"
1477
+
1478
+ #: ../lib/the-events-calendar.class.php:1441
1479
+ msgid "Organizer updated."
1480
+ msgstr "Organizatör güncellendi."
1481
+
1482
+ #: ../lib/the-events-calendar.class.php:1443
1483
+ #, php-format
1484
+ msgid "Organizer restored to revision from %s"
1485
+ msgstr "Organizatör %s versyonundan geri dönüldü."
1486
+
1487
+ #: ../lib/the-events-calendar.class.php:1444
1488
+ #, php-format
1489
+ msgid "Organizer published. <a href=\"%s\">View organizer</a>"
1490
+ msgstr "Organizatör yayınlandı. <a href=\"%s\">Organizatörü görüntüle</a>"
1491
+
1492
+ #: ../lib/the-events-calendar.class.php:1445
1493
+ msgid "Organizer saved."
1494
+ msgstr "Organizatör kaydedildi."
1495
+
1496
+ #: ../lib/the-events-calendar.class.php:1446
1497
+ #, php-format
1498
+ msgid ""
1499
+ "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
1500
+ msgstr ""
1501
+ "Organizatör kaydedildi. <a target=\"_blank\" href=\"%s\">Organizatörü "
1502
+ "önizle</a>"
1503
+
1504
+ #: ../lib/the-events-calendar.class.php:1447
1505
+ #, php-format
1506
+ msgid ""
1507
+ "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href="
1508
+ "\"%2$s\">Preview organizer</a>"
1509
+ msgstr ""
1510
+ "<strong>%1$s</strong> tarihi için Organizatör planlandı. <a target=\"_blank"
1511
+ "\" href=\"%2$s\">Organizatörü önizle</a>"
1512
+
1513
+ #: ../lib/the-events-calendar.class.php:1450
1514
+ #, php-format
1515
+ msgid ""
1516
+ "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</"
1517
+ "a>"
1518
+ msgstr ""
1519
+ "Organizatör taslağı güncellendi. <a target=\"_blank\" href=\"%s"
1520
+ "\">Organizatörü önizle</a>"
1521
+
1522
+ #: ../lib/the-events-calendar.class.php:1491
1523
+ msgid "Use Saved Venue:"
1524
+ msgstr "Kayıtlı Mekan Kullan:"
1525
+
1526
+ #: ../lib/the-events-calendar.class.php:1520
1527
+ msgid "Use Saved Organizer:"
1528
+ msgstr "Kayıtlı Organizatör Kullan:"
1529
+
1530
+ #: ../lib/the-events-calendar.class.php:1556
1531
+ msgid "Use New Venue"
1532
+ msgstr "Yeni Mekan Kullan"
1533
+
1534
+ #: ../lib/the-events-calendar.class.php:1558
1535
+ msgid "My Venues"
1536
+ msgstr "Mekanlarım"
1537
+
1538
+ #: ../lib/the-events-calendar.class.php:1563
1539
+ msgid "Available Venues"
1540
+ msgstr "Müsait Mekanlar"
1541
+
1542
+ #: ../lib/the-events-calendar.class.php:1574
1543
+ msgid "No saved venue exists."
1544
+ msgstr "Kaydedilmiş mekan bulunmuyor."
1545
+
1546
+ #: ../lib/the-events-calendar.class.php:1608
1547
+ msgid "Use New Organizer"
1548
+ msgstr "Yeni Organizatör Kullan"
1549
+
1550
+ #: ../lib/the-events-calendar.class.php:1610
1551
+ msgid "My Organizers"
1552
+ msgstr "Organizatörlerim"
1553
+
1554
+ #: ../lib/the-events-calendar.class.php:1615
1555
+ msgid "Available Organizers"
1556
+ msgstr "Müsait Organizatörler"
1557
+
1558
+ #: ../lib/the-events-calendar.class.php:1626
1559
+ msgid "No saved organizer exists."
1560
+ msgstr "Kayıtlı Organizatör bulunmuyor."
1561
+
1562
+ #: ../lib/the-events-calendar.class.php:1753
1563
+ msgid "Next"
1564
+ msgstr "Sonraki"
1565
+
1566
+ #: ../lib/the-events-calendar.class.php:1754
1567
+ msgid "Prev"
1568
+ msgstr "Önceki"
1569
+
1570
+ #: ../lib/the-events-calendar.class.php:1755
1571
+ msgid "Today"
1572
+ msgstr "Bugün"
1573
+
1574
+ #: ../lib/the-events-calendar.class.php:1756
1575
+ msgid "Done"
1576
+ msgstr "Tamamlandı"
1577
+
1578
+ #: ../lib/the-events-calendar.class.php:1965
1579
+ msgid "Network"
1580
+ msgstr "Ağ"
1581
+
1582
+ #: ../lib/the-events-calendar.class.php:2902
1583
+ msgid "Unnamed Venue"
1584
+ msgstr "İsimsiz mekan"
1585
+
1586
+ #: ../lib/the-events-calendar.class.php:2992
1587
+ msgid "Unnamed Organizer"
1588
+ msgstr "İsimsiz Organizatör"
1589
+
1590
+ #: ../lib/the-events-calendar.class.php:3467
1591
+ msgid "Event Options"
1592
+ msgstr "Etkinlik Seçenekleri"
1593
+
1594
+ #: ../lib/the-events-calendar.class.php:3469
1595
+ msgid "Venue Information"
1596
+ msgstr "Mekan Bilgisi"
1597
+
1598
+ #: ../lib/the-events-calendar.class.php:3474
1599
+ msgid "Organizer Information"
1600
+ msgstr "Organizatör Bilgisi"
1601
+
1602
+ #: ../lib/the-events-calendar.class.php:3669
1603
+ msgid "Support"
1604
+ msgstr "Destek"
1605
+
1606
+ #: ../lib/the-events-calendar.class.php:3672
1607
+ msgid "View All Add-Ons"
1608
+ msgstr "Tüm Add-on'ları görüntüle"
1609
+
1610
+ #: ../lib/the-events-calendar.class.php:3689
1611
+ msgid "News from Modern Tribe"
1612
+ msgstr "Modern Tribe'dan haberler"
1613
+
1614
+ #: ../lib/the-events-calendar.class.php:3770
1615
+ msgid "Additional Functionality"
1616
+ msgstr "Ek fonksiyonlar"
1617
+
1618
+ #: ../lib/the-events-calendar.class.php:3775
1619
+ msgid ""
1620
+ "Looking for additional functionality including recurring events, ticket "
1621
+ "sales, publicly submitted events, new views and more?"
1622
+ msgstr ""
1623
+ "Looking for additional functionality including recurring events, ticket "
1624
+ "sales, publicly submitted events, new views and more?"
1625
+
1626
+ #: ../lib/the-events-calendar.class.php:3775
1627
+ #, php-format
1628
+ msgid "Check out the <a href=\"%s\">available add-ons</a>."
1629
+ msgstr ""
1630
+ "Uygun durumdaki eklentiler için <a href=\"%s\">burayı ziyaret edin</a>."
1631
+
1632
+ #: ../lib/the-events-calendar.class.php:3846
1633
+ #: ../lib/the-events-calendar.class.php:3937
1634
+ msgid "View Calendar"
1635
+ msgstr "Takvimi görüntüle"
1636
+
1637
+ #: ../lib/the-events-calendar.class.php:3854
1638
+ msgid "Add Event"
1639
+ msgstr "Etkinlik Ekle"
1640
+
1641
+ #: ../lib/the-events-calendar.class.php:3863
1642
+ msgid "Edit Events"
1643
+ msgstr "Etkinlikleri Düzenle"
1644
+
1645
+ #: ../lib/the-events-calendar.class.php:3872
1646
+ #: ../lib/the-events-calendar.class.php:3973
1647
+ #: ../lib/tribe-settings.class.php:164
1648
+ msgid "Settings"
1649
+ msgstr "Ayarlar"
1650
+
1651
+ #: ../lib/the-events-calendar.class.php:3908
1652
+ #, php-format
1653
+ msgid ""
1654
+ "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
1655
+ "change the events slug, visit %sEvents -> Settings%s."
1656
+ msgstr ""
1657
+ "Welcome to The Events Calendar! Your events calendar can be found at %s. To "
1658
+ "change the events slug, visit %sEvents -> Settings%s."
1659
+
1660
+ #: ../lib/the-events-calendar.class.php:3974
1661
+ msgid "Calendar"
1662
+ msgstr "Takvim"
1663
+
1664
+ #: ../lib/the-events-calendar.class.php:4037
1665
+ msgid "List"
1666
+ msgstr "Liste"
1667
+
1668
+ #: ../lib/the-events-calendar.class.php:4048
1669
+ msgid "Month"
1670
+ msgstr "Ay"
1671
+
1672
+ #: ../lib/the-events-calendar.class.php:4088
1673
+ msgid "Date"
1674
+ msgstr "Gün"
1675
+
1676
+ #: ../lib/the-events-calendar.class.php:4091
1677
+ msgid "Events In"
1678
+ msgstr "Etkinlik Günü"
1679
+
1680
+ #: ../lib/the-events-calendar.class.php:4093
1681
+ msgid "Events From"
1682
+ msgstr "Etkinliklerden"
1683
+
1684
+ #: ../lib/the-events-calendar.class.php:4276 ../views/list/nav.php:22
1685
+ #: ../views/list/nav.php:28 ../views/list/nav.php:31
1686
+ msgid "&laquo; Previous Events"
1687
+ msgstr "&laquo; Önceki Etkinlikler"
1688
+
1689
+ #: ../lib/the-events-calendar.class.php:4277 ../views/list/nav.php:40
1690
+ #: ../views/list/nav.php:43 ../views/list/nav.php:49
1691
+ msgid "Next Events &raquo;"
1692
+ msgstr "Sonraki Etkinlikler &raquo;"
1693
+
1694
+ #: ../lib/tribe-admin-events-list.class.php:53
1695
+ #, php-format
1696
+ msgid "View &#8220;%s&#8221;"
1697
+ msgstr "Görüntüle &#8220;%s&#8221;"
1698
+
1699
+ #: ../lib/tribe-admin-events-list.class.php:222
1700
+ msgid "Start Date"
1701
+ msgstr "Başlangıç Tarihi"
1702
+
1703
+ #: ../lib/tribe-admin-events-list.class.php:223
1704
+ msgid "End Date"
1705
+ msgstr "Bitiş Tarihi"
1706
+
1707
+ #: ../lib/tribe-admin-events-list.class.php:225
1708
+ msgid "Recurring?"
1709
+ msgstr "Yinelenen?"
1710
+
1711
+ #: ../lib/tribe-admin-events-list.class.php:282
1712
+ #: ../lib/tickets/tribe-tickets-pro.php:229
1713
+ msgid "Yes"
1714
+ msgstr "Evet"
1715
+
1716
+ #: ../lib/tribe-admin-events-list.class.php:282
1717
+ msgid "No"
1718
+ msgstr "Hayır"
1719
+
1720
+ #: ../lib/tribe-admin-events-list.class.php:360
1721
+ #, php-format
1722
+ msgid "All %s"
1723
+ msgstr "Tümü %s"
1724
+
1725
+ #: ../lib/tribe-app-shop.class.php:62 ../lib/tribe-app-shop.class.php:63
1726
+ #: ../lib/tribe-app-shop.class.php:84
1727
+ msgid "Event Add-Ons"
1728
+ msgstr "Etkinlik eklentileri"
1729
+
1730
+ #: ../lib/tribe-debug-bar.class.php:29
1731
+ msgid "Tribe"
1732
+ msgstr "Tribe"
1733
+
1734
+ #: ../lib/tribe-event-api.class.php:372 ../lib/tribe-view-helpers.class.php:44
1735
+ #: ../public/template-tags/venue.php:240
1736
+ msgid "United States"
1737
+ msgstr "ABD"
1738
+
1739
+ #: ../lib/tribe-event-exception.class.php:17
1740
+ #: ../lib/tribe-event-exception.class.php:34
1741
+ msgid "Error"
1742
+ msgstr "Hata"
1743
+
1744
+ #: ../lib/tribe-field.class.php:161
1745
+ msgid "Invalid field type specified"
1746
+ msgstr "Hatalı alan tipi seçildi"
1747
+
1748
+ #: ../lib/tribe-field.class.php:414
1749
+ msgid "No radio options specified"
1750
+ msgstr "Radyo butonu seçeneği seçilmedi"
1751
+
1752
+ #: ../lib/tribe-field.class.php:451
1753
+ msgid "No checkbox options specified"
1754
+ msgstr "Checkbox seçeneği belirtilmedi"
1755
+
1756
+ #: ../lib/tribe-field.class.php:505
1757
+ msgid "No select options specified"
1758
+ msgstr "Seçim opsiyonu belirtilmedi"
1759
+
1760
+ #: ../lib/tribe-settings-tab.class.php:219
1761
+ msgid "There are no fields setup for this tab yet."
1762
+ msgstr "There are no fields setup for this tab yet."
1763
+
1764
+ #: ../lib/tribe-settings.class.php:164 ../lib/tribe-settings.class.php:176
1765
+ msgid "The Events Calendar Settings"
1766
+ msgstr "The Events Calendar Ayarları"
1767
+
1768
+ #: ../lib/tribe-settings.class.php:176
1769
+ msgid "Events Settings"
1770
+ msgstr "Etkinlikler Ayarları"
1771
+
1772
+ #: ../lib/tribe-settings.class.php:225
1773
+ #, php-format
1774
+ msgid "%s Settings"
1775
+ msgstr "%s Ayarlar"
1776
+
1777
+ #: ../lib/tribe-settings.class.php:239
1778
+ msgid "You've requested a non-existent tab."
1779
+ msgstr "You've requested a non-existent tab."
1780
+
1781
+ #: ../lib/tribe-settings.class.php:247
1782
+ msgid " Save Changes"
1783
+ msgstr "Değişiklikleri Kaydet"
1784
+
1785
+ #: ../lib/tribe-settings.class.php:299
1786
+ msgid "You don't have permission to do that."
1787
+ msgstr "Bunu yapmak için izniniz yok."
1788
+
1789
+ #: ../lib/tribe-settings.class.php:305
1790
+ msgid "The request was sent insecurely."
1791
+ msgstr "The request was sent insecurely."
1792
+
1793
+ #: ../lib/tribe-settings.class.php:311
1794
+ msgid "The request wasn't sent from this tab."
1795
+ msgstr "The request was sent insecurely."
1796
+
1797
+ #: ../lib/tribe-settings.class.php:476
1798
+ msgid "Your form had the following errors:"
1799
+ msgstr "Formunuz aşağıdaki hataları içeriyor:"
1800
+
1801
+ #: ../lib/tribe-settings.class.php:485
1802
+ msgid "None of your settings were saved. Please try again."
1803
+ msgstr "Hiçbir ayarınız kaydedilmedi. Lütfen tekrar deneyiniz."
1804
+
1805
+ #: ../lib/tribe-settings.class.php:485
1806
+ msgid ""
1807
+ "The above setting was not saved. Other settings were successfully saved."
1808
+ msgid_plural ""
1809
+ "The above settings were not saved. Other settings were successfully saved."
1810
+ msgstr[0] ""
1811
+ "Indstillingen ovenfor blev ikke gemt. Andre indstillinger blev gemt."
1812
+ msgstr[1] ""
1813
+ "aIndstillingerne ovenfor blev ikke gemt. Andre indstillinger blev gemt."
1814
+
1815
+ #: ../lib/tribe-settings.class.php:509
1816
+ msgid "Settings saved."
1817
+ msgstr "Ayarlar kaydedildi."
1818
+
1819
+ #: ../lib/tribe-template-factory.class.php:225
1820
+ #, php-format
1821
+ msgid "There were no results found for <strong>\"%s\"</strong>."
1822
+ msgstr "<strong>\"%s\"</strong> için bir sonuç bulunamadı. "
1823
+
1824
+ #: ../lib/tribe-template-factory.class.php:235
1825
+ #, php-format
1826
+ msgid ""
1827
+ "listed under %s. Check out past events for this category or view the full "
1828
+ "calendar."
1829
+ msgstr ""
1830
+ "%s altında bulunanlar. Bu kategori ya da tüm etkinlikler için geçmiş "
1831
+ "etkinlikleri incele."
1832
+
1833
+ #: ../lib/tribe-template-factory.class.php:237
1834
+ #, php-format
1835
+ msgid ""
1836
+ "listed under %s. Check out upcoming events for this category or view the "
1837
+ "full calendar."
1838
+ msgstr ""
1839
+ "%s altında bulunanlar. Bu kategori ya da tüm etkinlikler için yaklaşan "
1840
+ "etkinlikleri incele."
1841
+
1842
+ #: ../lib/tribe-template-factory.class.php:241
1843
+ #, php-format
1844
+ msgid "No events scheduled for <strong>%s</strong>. Please try another day."
1845
+ msgstr ""
1846
+ "<strong>%s</strong> için etkinlik planlanmış değil. Lütfen başka bir günü "
1847
+ "deneyiniz."
1848
+
1849
+ #: ../lib/tribe-template-factory.class.php:245
1850
+ msgid "No upcoming events "
1851
+ msgstr "Yaklaşan etkinlik bulunmamaktadır."
1852
+
1853
+ #: ../lib/tribe-template-factory.class.php:247
1854
+ msgid "No matching events "
1855
+ msgstr "Eşleşen etkinlik yok"
1856
+
1857
+ #: ../lib/tribe-template-factory.class.php:250
1858
+ msgid "No previous events "
1859
+ msgstr "Önceki etkinlik yok"
1860
+
1861
+ #: ../lib/tribe-the-events-calendar-import.class.php:64
1862
+ #, php-format
1863
+ msgid ""
1864
+ "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure "
1865
+ "you have backed up before proceeding any further. You can easily <a href=\"%s"
1866
+ "\">revert to an old version</a> if you want to backup first. This upgrade "
1867
+ "includes two major steps, <a href=\"%s\">migrating data</a> &amp; updating "
1868
+ "your templates as necessary. There have been significant changes to the "
1869
+ "template tags and functions. Check out our <a href=\"%s\">walk-through on "
1870
+ "the upgrade</a> before proceeding and check out the FAQ &amp; Knowledge base "
1871
+ "from the <a href=\"%s\">support page</a>. If you're new to The Events "
1872
+ "Calendar, you may want to review our <a href=\"%s\">new user primer</a>.<br/"
1873
+ "><br/> You have events that need to be migrated. Please visit the bottom of "
1874
+ "the <a href=\"%s\">settings page</a> to perform the migration."
1875
+ msgstr ""
1876
+
1877
+ #: ../lib/tribe-the-events-calendar-import.class.php:86
1878
+ msgid "Upgrade from The Events Calendar"
1879
+ msgstr "Upgrade from The Events Calendar"
1880
+
1881
+ #: ../lib/tribe-the-events-calendar-import.class.php:87
1882
+ msgid ""
1883
+ "It appears that you have some old events calendar data that needs to be "
1884
+ "upgraded. Please be sure to back up your database before initiating the "
1885
+ "upgrade. This process can not be undone."
1886
+ msgstr ""
1887
+ "It appears that you have some old events calendar data that needs to be "
1888
+ "upgraded. Please be sure to back up your database before initiating the "
1889
+ "upgrade. This process can not be undone."
1890
+
1891
+ #: ../lib/tribe-the-events-calendar-import.class.php:88
1892
+ msgid "Migrate Data!"
1893
+ msgstr "Veri birleştirme!"
1894
+
1895
+ #: ../lib/tribe-the-events-calendar-import.class.php:166
1896
+ #, php-format
1897
+ msgid "You successfully migrated (%d) entries."
1898
+ msgstr "%d veri birleştirme başarılı."
1899
+
1900
+ #: ../lib/tribe-the-events-calendar-import.class.php:242
1901
+ msgid "Install has 1 or more legacy event!"
1902
+ msgstr "Kurulum 1 ya da daha fazla eski etkinlik içeriyor."
1903
+
1904
+ #: ../lib/tribe-validate.class.php:77 ../lib/tribe-validate.class.php:115
1905
+ msgid "Invalid or incomplete field passed"
1906
+ msgstr "Hatalı ya da tamamlanmamış alan geçildi."
1907
+
1908
+ #: ../lib/tribe-validate.class.php:78 ../lib/tribe-validate.class.php:110
1909
+ #: ../lib/tribe-validate.class.php:116
1910
+ msgid "Field ID:"
1911
+ msgstr "Alan NO:"
1912
+
1913
+ #: ../lib/tribe-validate.class.php:109
1914
+ msgid "Non-existant field validation function passed"
1915
+ msgstr "Non-existant field validation function passed"
1916
+
1917
+ #: ../lib/tribe-validate.class.php:110
1918
+ msgctxt "non-existant function name passed for field validation"
1919
+ msgid "with function name:"
1920
+ msgstr "Fonksiyon adıyla:"
1921
+
1922
+ #: ../lib/tribe-validate.class.php:135 ../lib/tribe-validate.class.php:153
1923
+ #, php-format
1924
+ msgid "%s must contain numbers and letters only"
1925
+ msgstr "%s sadece rakam ve harf içermeli"
1926
+
1927
+ #: ../lib/tribe-validate.class.php:171
1928
+ #, php-format
1929
+ msgid "%s must contain numbers, letters and dots only"
1930
+ msgstr "%s sadece rakam, harf ve noktalama işareti olmalı"
1931
+
1932
+ #: ../lib/tribe-validate.class.php:187
1933
+ #, php-format
1934
+ msgid "%s must be a positive number."
1935
+ msgstr "%s pozitif rakam olmalı."
1936
+
1937
+ #: ../lib/tribe-validate.class.php:204
1938
+ #, php-format
1939
+ msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
1940
+ msgstr "%s must be a valid slug (numbers, letters, dashes, and underscores)."
1941
+
1942
+ #: ../lib/tribe-validate.class.php:221
1943
+ #, php-format
1944
+ msgid "%s must be a valid absolute URL."
1945
+ msgstr "%s must be a valid absolute URL."
1946
+
1947
+ #: ../lib/tribe-validate.class.php:239 ../lib/tribe-validate.class.php:258
1948
+ #: ../lib/tribe-validate.class.php:279
1949
+ #, php-format
1950
+ msgid "%s must have a value that's part of its options."
1951
+ msgstr "%s must have a value that's part of its options."
1952
+
1953
+ #: ../lib/tribe-validate.class.php:295
1954
+ #, php-format
1955
+ msgid ""
1956
+ "Comparison validation failed because no comparison value was provided, for "
1957
+ "field %s"
1958
+ msgstr ""
1959
+ "Comparison validation failed because no comparison value was provided, for "
1960
+ "field %s"
1961
+
1962
+ #: ../lib/tribe-validate.class.php:302
1963
+ #, php-format
1964
+ msgid "%s cannot be the same as %s."
1965
+ msgstr "%s ile %s aynı olamaz."
1966
+
1967
+ #: ../lib/tribe-validate.class.php:304
1968
+ #, php-format
1969
+ msgid "%s cannot be a duplicate"
1970
+ msgstr "%s çakışamaz"
1971
+
1972
+ #: ../lib/tribe-validate.class.php:322
1973
+ #, php-format
1974
+ msgid "%s must be a number or percentage."
1975
+ msgstr "%s rakam ya da yüzde olmalı."
1976
+
1977
+ #: ../lib/tribe-validate.class.php:386
1978
+ #, php-format
1979
+ msgid "%s must be a number between 0 and 21."
1980
+ msgstr "%s 0 ile 21 arasında bir rakam olmalı."
1981
+
1982
+ #: ../lib/tribe-validate.class.php:404
1983
+ #, php-format
1984
+ msgid ""
1985
+ "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
1986
+ msgstr ""
1987
+ "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
1988
+
1989
+ #: ../lib/tribe-validate.class.php:422
1990
+ #, php-format
1991
+ msgid "%s must consist of letters, spaces, apostrophes, and dashes."
1992
+ msgstr "%s must consist of letters, spaces, apostrophes, and dashes."
1993
+
1994
+ #: ../lib/tribe-validate.class.php:438
1995
+ #, php-format
1996
+ msgid "%s must consist of 5 numbers."
1997
+ msgstr "%s must consist of 5 numbers."
1998
+
1999
+ #: ../lib/tribe-validate.class.php:454
2000
+ #, php-format
2001
+ msgid "%s must be a phone number."
2002
+ msgstr "%s must be a phone number."
2003
+
2004
+ #: ../lib/tribe-validate.class.php:472
2005
+ msgid ""
2006
+ "Country List must be formatted as one country per line in the following "
2007
+ "format: <br>US, United States <br> UK, United Kingdom."
2008
+ msgstr ""
2009
+ "Country List must be formatted as one country per line in the following "
2010
+ "format: <br>US, United States <br> UK, United Kingdom."
2011
+
2012
+ #: ../lib/tribe-view-helpers.class.php:24
2013
+ #: ../lib/tribe-view-helpers.class.php:43
2014
+ msgid "Select a Country:"
2015
+ msgstr "Ülke Seçiniz:"
2016
+
2017
+ #: ../lib/tribe-view-helpers.class.php:45
2018
+ msgid "Afghanistan"
2019
+ msgstr "Afghanistan"
2020
+
2021
+ #: ../lib/tribe-view-helpers.class.php:46
2022
+ msgid "Albania"
2023
+ msgstr "Albania"
2024
+
2025
+ #: ../lib/tribe-view-helpers.class.php:47
2026
+ msgid "Algeria"
2027
+ msgstr "Algeria"
2028
+
2029
+ #: ../lib/tribe-view-helpers.class.php:48
2030
+ msgid "American Samoa"
2031
+ msgstr "American Samoa"
2032
+
2033
+ #: ../lib/tribe-view-helpers.class.php:49
2034
+ msgid "Andorra"
2035
+ msgstr "Andorra"
2036
+
2037
+ #: ../lib/tribe-view-helpers.class.php:50
2038
+ msgid "Angola"
2039
+ msgstr "Angola"
2040
+
2041
+ #: ../lib/tribe-view-helpers.class.php:51
2042
+ msgid "Anguilla"
2043
+ msgstr "Anguilla"
2044
+
2045
+ #: ../lib/tribe-view-helpers.class.php:52
2046
+ msgid "Antarctica"
2047
+ msgstr "Antarctica"
2048
+
2049
+ #: ../lib/tribe-view-helpers.class.php:53
2050
+ msgid "Antigua And Barbuda"
2051
+ msgstr "Antigua And Barbuda"
2052
+
2053
+ #: ../lib/tribe-view-helpers.class.php:54
2054
+ msgid "Argentina"
2055
+ msgstr "Argentina"
2056
+
2057
+ #: ../lib/tribe-view-helpers.class.php:55
2058
+ msgid "Armenia"
2059
+ msgstr "Armenia"
2060
+
2061
+ #: ../lib/tribe-view-helpers.class.php:56
2062
+ msgid "Aruba"
2063
+ msgstr "Aruba"
2064
+
2065
+ #: ../lib/tribe-view-helpers.class.php:57
2066
+ msgid "Australia"
2067
+ msgstr "Australia"
2068
+
2069
+ #: ../lib/tribe-view-helpers.class.php:58
2070
+ msgid "Austria"
2071
+ msgstr "Austria"
2072
+
2073
+ #: ../lib/tribe-view-helpers.class.php:59
2074
+ msgid "Azerbaijan"
2075
+ msgstr "Azerbaijan"
2076
+
2077
+ #: ../lib/tribe-view-helpers.class.php:60
2078
+ msgid "Bahamas"
2079
+ msgstr "Bahamas"
2080
+
2081
+ #: ../lib/tribe-view-helpers.class.php:61
2082
+ msgid "Bahrain"
2083
+ msgstr "Bahrain"
2084
+
2085
+ #: ../lib/tribe-view-helpers.class.php:62
2086
+ msgid "Bangladesh"
2087
+ msgstr "Bangladesh"
2088
+
2089
+ #: ../lib/tribe-view-helpers.class.php:63
2090
+ msgid "Barbados"
2091
+ msgstr "Barbados"
2092
+
2093
+ #: ../lib/tribe-view-helpers.class.php:64
2094
+ msgid "Belarus"
2095
+ msgstr "Belarus"
2096
+
2097
+ #: ../lib/tribe-view-helpers.class.php:65
2098
+ msgid "Belgium"
2099
+ msgstr "Belgium"
2100
+
2101
+ #: ../lib/tribe-view-helpers.class.php:66
2102
+ msgid "Belize"
2103
+ msgstr "Belize"
2104
+
2105
+ #: ../lib/tribe-view-helpers.class.php:67
2106
+ msgid "Benin"
2107
+ msgstr "Benin"
2108
+
2109
+ #: ../lib/tribe-view-helpers.class.php:68
2110
+ msgid "Bermuda"
2111
+ msgstr "Bermuda"
2112
+
2113
+ #: ../lib/tribe-view-helpers.class.php:69
2114
+ msgid "Bhutan"
2115
+ msgstr "Bhutan"
2116
+
2117
+ #: ../lib/tribe-view-helpers.class.php:70
2118
+ msgid "Bolivia"
2119
+ msgstr "Bolivia"
2120
+
2121
+ #: ../lib/tribe-view-helpers.class.php:71
2122
+ msgid "Bosnia And Herzegowina"
2123
+ msgstr "Bosnia And Herzegowina"
2124
+
2125
+ #: ../lib/tribe-view-helpers.class.php:72
2126
+ msgid "Botswana"
2127
+ msgstr "Botswana"
2128
+
2129
+ #: ../lib/tribe-view-helpers.class.php:73
2130
+ msgid "Bouvet Island"
2131
+ msgstr "Bouvet Island"
2132
+
2133
+ #: ../lib/tribe-view-helpers.class.php:74
2134
+ msgid "Brazil"
2135
+ msgstr "Brazil"
2136
+
2137
+ #: ../lib/tribe-view-helpers.class.php:75
2138
+ msgid "British Indian Ocean Territory"
2139
+ msgstr "British Indian Ocean Territory"
2140
+
2141
+ #: ../lib/tribe-view-helpers.class.php:76
2142
+ msgid "Brunei Darussalam"
2143
+ msgstr "Brunei Darussalam"
2144
+
2145
+ #: ../lib/tribe-view-helpers.class.php:77
2146
+ msgid "Bulgaria"
2147
+ msgstr "Bulgaria"
2148
+
2149
+ #: ../lib/tribe-view-helpers.class.php:78
2150
+ msgid "Burkina Faso"
2151
+ msgstr "Burkina Faso"
2152
+
2153
+ #: ../lib/tribe-view-helpers.class.php:79
2154
+ msgid "Burundi"
2155
+ msgstr "Burundi"
2156
+
2157
+ #: ../lib/tribe-view-helpers.class.php:80
2158
+ msgid "Cambodia"
2159
+ msgstr "Cambodia"
2160
+
2161
+ #: ../lib/tribe-view-helpers.class.php:81
2162
+ msgid "Cameroon"
2163
+ msgstr "Cameroon"
2164
+
2165
+ #: ../lib/tribe-view-helpers.class.php:82
2166
+ msgid "Canada"
2167
+ msgstr "Canada"
2168
+
2169
+ #: ../lib/tribe-view-helpers.class.php:83
2170
+ msgid "Cape Verde"
2171
+ msgstr "Cape Verde"
2172
+
2173
+ #: ../lib/tribe-view-helpers.class.php:84
2174
+ msgid "Cayman Islands"
2175
+ msgstr "Cayman Islands"
2176
+
2177
+ #: ../lib/tribe-view-helpers.class.php:85
2178
+ msgid "Central African Republic"
2179
+ msgstr "Central African Republic"
2180
+
2181
+ #: ../lib/tribe-view-helpers.class.php:86
2182
+ msgid "Chad"
2183
+ msgstr "Chad"
2184
+
2185
+ #: ../lib/tribe-view-helpers.class.php:87
2186
+ msgid "Chile"
2187
+ msgstr "Chile"
2188
+
2189
+ #: ../lib/tribe-view-helpers.class.php:88
2190
+ msgid "China"
2191
+ msgstr "China"
2192
+
2193
+ #: ../lib/tribe-view-helpers.class.php:89
2194
+ msgid "Christmas Island"
2195
+ msgstr "Christmas Island"
2196
+
2197
+ #: ../lib/tribe-view-helpers.class.php:90
2198
+ msgid "Cocos (Keeling) Islands"
2199
+ msgstr "Cocos (Keeling) Islands"
2200
+
2201
+ #: ../lib/tribe-view-helpers.class.php:91
2202
+ msgid "Colombia"
2203
+ msgstr "Colombia"
2204
+
2205
+ #: ../lib/tribe-view-helpers.class.php:92
2206
+ msgid "Comoros"
2207
+ msgstr "Comoros"
2208
+
2209
+ #: ../lib/tribe-view-helpers.class.php:93
2210
+ msgid "Congo"
2211
+ msgstr "Congo"
2212
+
2213
+ #: ../lib/tribe-view-helpers.class.php:94
2214
+ msgid "Congo, The Democratic Republic Of The"
2215
+ msgstr "Congo, The Democratic Republic Of The"
2216
+
2217
+ #: ../lib/tribe-view-helpers.class.php:95
2218
+ msgid "Cook Islands"
2219
+ msgstr "Cook Islands"
2220
+
2221
+ #: ../lib/tribe-view-helpers.class.php:96
2222
+ msgid "Costa Rica"
2223
+ msgstr "Costa Rica"
2224
+
2225
+ #: ../lib/tribe-view-helpers.class.php:97
2226
+ msgid "Cote D'Ivoire"
2227
+ msgstr "Cote D'Ivoire"
2228
+
2229
+ #: ../lib/tribe-view-helpers.class.php:98
2230
+ msgid "Croatia (Local Name: Hrvatska)"
2231
+ msgstr "Croatia (Local Name: Hrvatska)"
2232
+
2233
+ #: ../lib/tribe-view-helpers.class.php:99
2234
+ msgid "Cuba"
2235
+ msgstr "Cuba"
2236
+
2237
+ #: ../lib/tribe-view-helpers.class.php:100
2238
+ msgid "Cyprus"
2239
+ msgstr "Cyprus"
2240
+
2241
+ #: ../lib/tribe-view-helpers.class.php:101
2242
+ msgid "Czech Republic"
2243
+ msgstr "Czech Republic"
2244
+
2245
+ #: ../lib/tribe-view-helpers.class.php:102
2246
+ msgid "Denmark"
2247
+ msgstr "Danmark"
2248
+
2249
+ #: ../lib/tribe-view-helpers.class.php:103
2250
+ msgid "Djibouti"
2251
+ msgstr "Djibouti"
2252
+
2253
+ #: ../lib/tribe-view-helpers.class.php:104
2254
+ msgid "Dominica"
2255
+ msgstr "Dominica"
2256
+
2257
+ #: ../lib/tribe-view-helpers.class.php:105
2258
+ msgid "Dominican Republic"
2259
+ msgstr "Dominican Republic"
2260
+
2261
+ #: ../lib/tribe-view-helpers.class.php:106
2262
+ msgid "East Timor"
2263
+ msgstr "East Timor"
2264
+
2265
+ #: ../lib/tribe-view-helpers.class.php:107
2266
+ msgid "Ecuador"
2267
+ msgstr "Ecuador"
2268
+
2269
+ #: ../lib/tribe-view-helpers.class.php:108
2270
+ msgid "Egypt"
2271
+ msgstr "Egypt"
2272
+
2273
+ #: ../lib/tribe-view-helpers.class.php:109
2274
+ msgid "El Salvador"
2275
+ msgstr "El Salvador"
2276
+
2277
+ #: ../lib/tribe-view-helpers.class.php:110
2278
+ msgid "Equatorial Guinea"
2279
+ msgstr "Equatorial Guinea"
2280
+
2281
+ #: ../lib/tribe-view-helpers.class.php:111
2282
+ msgid "Eritrea"
2283
+ msgstr "Eritrea"
2284
+
2285
+ #: ../lib/tribe-view-helpers.class.php:112
2286
+ msgid "Estonia"
2287
+ msgstr "Estonia"
2288
+
2289
+ #: ../lib/tribe-view-helpers.class.php:113
2290
+ msgid "Ethiopia"
2291
+ msgstr "Ethiopia"
2292
+
2293
+ #: ../lib/tribe-view-helpers.class.php:114
2294
+ msgid "Falkland Islands (Malvinas)"
2295
+ msgstr "Falkland Islands (Malvinas)"
2296
+
2297
+ #: ../lib/tribe-view-helpers.class.php:115
2298
+ msgid "Faroe Islands"
2299
+ msgstr "Faroe Islands"
2300
+
2301
+ #: ../lib/tribe-view-helpers.class.php:116
2302
+ msgid "Fiji"
2303
+ msgstr "Fiji"
2304
+
2305
+ #: ../lib/tribe-view-helpers.class.php:117
2306
+ msgid "Finland"
2307
+ msgstr "Finland"
2308
+
2309
+ #: ../lib/tribe-view-helpers.class.php:118
2310
+ msgid "France"
2311
+ msgstr "France"
2312
+
2313
+ #: ../lib/tribe-view-helpers.class.php:119
2314
+ msgid "France, Metropolitan"
2315
+ msgstr "France, Metropolitan"
2316
+
2317
+ #: ../lib/tribe-view-helpers.class.php:120
2318
+ msgid "French Guiana"
2319
+ msgstr "French Guiana"
2320
+
2321
+ #: ../lib/tribe-view-helpers.class.php:121
2322
+ msgid "French Polynesia"
2323
+ msgstr "French Polynesia"
2324
+
2325
+ #: ../lib/tribe-view-helpers.class.php:122
2326
+ msgid "French Southern Territories"
2327
+ msgstr "French Southern Territories"
2328
+
2329
+ #: ../lib/tribe-view-helpers.class.php:123
2330
+ msgid "Gabon"
2331
+ msgstr "Gabon"
2332
+
2333
+ #: ../lib/tribe-view-helpers.class.php:124
2334
+ msgid "Gambia"
2335
+ msgstr "Gambia"
2336
+
2337
+ #: ../lib/tribe-view-helpers.class.php:125
2338
+ #: ../lib/tribe-view-helpers.class.php:318
2339
+ msgid "Georgia"
2340
+ msgstr "Georgia"
2341
+
2342
+ #: ../lib/tribe-view-helpers.class.php:126
2343
+ msgid "Germany"
2344
+ msgstr "Germany"
2345
+
2346
+ #: ../lib/tribe-view-helpers.class.php:127
2347
+ msgid "Ghana"
2348
+ msgstr "Ghana"
2349
+
2350
+ #: ../lib/tribe-view-helpers.class.php:128
2351
+ msgid "Gibraltar"
2352
+ msgstr "Gibraltar"
2353
+
2354
+ #: ../lib/tribe-view-helpers.class.php:129
2355
+ msgid "Greece"
2356
+ msgstr "Greece"
2357
+
2358
+ #: ../lib/tribe-view-helpers.class.php:130
2359
+ msgid "Greenland"
2360
+ msgstr "Greenland"
2361
+
2362
+ #: ../lib/tribe-view-helpers.class.php:131
2363
+ msgid "Grenada"
2364
+ msgstr "Grenada"
2365
+
2366
+ #: ../lib/tribe-view-helpers.class.php:132
2367
+ msgid "Guadeloupe"
2368
+ msgstr "Guadeloupe"
2369
+
2370
+ #: ../lib/tribe-view-helpers.class.php:133
2371
+ msgid "Guam"
2372
+ msgstr "Guam"
2373
+
2374
+ #: ../lib/tribe-view-helpers.class.php:134
2375
+ msgid "Guatemala"
2376
+ msgstr "Guatemala"
2377
+
2378
+ #: ../lib/tribe-view-helpers.class.php:135
2379
+ msgid "Guinea"
2380
+ msgstr "Guinea"
2381
+
2382
+ #: ../lib/tribe-view-helpers.class.php:136
2383
+ msgid "Guinea-Bissau"
2384
+ msgstr "Guinea-Bissau"
2385
+
2386
+ #: ../lib/tribe-view-helpers.class.php:137
2387
+ msgid "Guyana"
2388
+ msgstr "Guyana"
2389
+
2390
+ #: ../lib/tribe-view-helpers.class.php:138
2391
+ msgid "Haiti"
2392
+ msgstr "Haiti"
2393
+
2394
+ #: ../lib/tribe-view-helpers.class.php:139
2395
+ msgid "Heard And Mc Donald Islands"
2396
+ msgstr "Heard And Mc Donald Islands"
2397
+
2398
+ #: ../lib/tribe-view-helpers.class.php:140
2399
+ msgid "Holy See (Vatican City State)"
2400
+ msgstr "Holy See (Vatican City State)"
2401
+
2402
+ #: ../lib/tribe-view-helpers.class.php:141
2403
+ msgid "Honduras"
2404
+ msgstr "Honduras"
2405
+
2406
+ #: ../lib/tribe-view-helpers.class.php:142
2407
+ msgid "Hong Kong"
2408
+ msgstr "Hong Kong"
2409
+
2410
+ #: ../lib/tribe-view-helpers.class.php:143
2411
+ msgid "Hungary"
2412
+ msgstr "Hungary"
2413
+
2414
+ #: ../lib/tribe-view-helpers.class.php:144
2415
+ msgid "Iceland"
2416
+ msgstr "Iceland"
2417
+
2418
+ #: ../lib/tribe-view-helpers.class.php:145
2419
+ msgid "India"
2420
+ msgstr "India"
2421
+
2422
+ #: ../lib/tribe-view-helpers.class.php:146
2423
+ msgid "Indonesia"
2424
+ msgstr "Indonesia"
2425
+
2426
+ #: ../lib/tribe-view-helpers.class.php:147
2427
+ msgid "Iran (Islamic Republic Of)"
2428
+ msgstr "Iran (Islamic Republic Of)"
2429
+
2430
+ #: ../lib/tribe-view-helpers.class.php:148
2431
+ msgid "Iraq"
2432
+ msgstr "Iraq"
2433
+
2434
+ #: ../lib/tribe-view-helpers.class.php:149
2435
+ msgid "Ireland"
2436
+ msgstr "Ireland"
2437
+
2438
+ #: ../lib/tribe-view-helpers.class.php:150
2439
+ msgid "Israel"
2440
+ msgstr "Israel"
2441
+
2442
+ #: ../lib/tribe-view-helpers.class.php:151
2443
+ msgid "Italy"
2444
+ msgstr "Italy"
2445
+
2446
+ #: ../lib/tribe-view-helpers.class.php:152
2447
+ msgid "Jamaica"
2448
+ msgstr "Jamaica"
2449
+
2450
+ #: ../lib/tribe-view-helpers.class.php:153
2451
+ msgid "Japan"
2452
+ msgstr "Japan"
2453
+
2454
+ #: ../lib/tribe-view-helpers.class.php:154
2455
+ msgid "Jordan"
2456
+ msgstr "Jordan"
2457
+
2458
+ #: ../lib/tribe-view-helpers.class.php:155
2459
+ msgid "Kazakhstan"
2460
+ msgstr "Kazakhstan"
2461
+
2462
+ #: ../lib/tribe-view-helpers.class.php:156
2463
+ msgid "Kenya"
2464
+ msgstr "Kenya"
2465
+
2466
+ #: ../lib/tribe-view-helpers.class.php:157
2467
+ msgid "Kiribati"
2468
+ msgstr "Kiribati"
2469
+
2470
+ #: ../lib/tribe-view-helpers.class.php:158
2471
+ msgid "Korea, Democratic People's Republic Of"
2472
+ msgstr "Korea, Democratic People's Republic Of"
2473
+
2474
+ #: ../lib/tribe-view-helpers.class.php:159
2475
+ msgid "Korea, Republic Of"
2476
+ msgstr "Korea, Republic Of"
2477
+
2478
+ #: ../lib/tribe-view-helpers.class.php:160
2479
+ msgid "Kuwait"
2480
+ msgstr "Kuwait"
2481
+
2482
+ #: ../lib/tribe-view-helpers.class.php:161
2483
+ msgid "Kyrgyzstan"
2484
+ msgstr "Kyrgyzstan"
2485
+
2486
+ #: ../lib/tribe-view-helpers.class.php:162
2487
+ msgid "Lao People's Democratic Republic"
2488
+ msgstr "Lao People's Democratic Republic"
2489
+
2490
+ #: ../lib/tribe-view-helpers.class.php:163
2491
+ msgid "Latvia"
2492
+ msgstr "Latvia"
2493
+
2494
+ #: ../lib/tribe-view-helpers.class.php:164
2495
+ msgid "Lebanon"
2496
+ msgstr "Lebanon"
2497
+
2498
+ #: ../lib/tribe-view-helpers.class.php:165
2499
+ msgid "Lesotho"
2500
+ msgstr "Lesotho"
2501
+
2502
+ #: ../lib/tribe-view-helpers.class.php:166
2503
+ msgid "Liberia"
2504
+ msgstr "Liberia"
2505
+
2506
+ #: ../lib/tribe-view-helpers.class.php:167
2507
+ msgid "Libya"
2508
+ msgstr "Libya"
2509
+
2510
+ #: ../lib/tribe-view-helpers.class.php:168
2511
+ msgid "Liechtenstein"
2512
+ msgstr "Liechtenstein"
2513
+
2514
+ #: ../lib/tribe-view-helpers.class.php:169
2515
+ msgid "Lithuania"
2516
+ msgstr "Lithuania"
2517
+
2518
+ #: ../lib/tribe-view-helpers.class.php:170
2519
+ msgid "Luxembourg"
2520
+ msgstr "Luxembourg"
2521
+
2522
+ #: ../lib/tribe-view-helpers.class.php:171
2523
+ msgid "Macau"
2524
+ msgstr "Macau"
2525
+
2526
+ #: ../lib/tribe-view-helpers.class.php:172
2527
+ msgid "Macedonia"
2528
+ msgstr "Macedonia"
2529
+
2530
+ #: ../lib/tribe-view-helpers.class.php:173
2531
+ msgid "Madagascar"
2532
+ msgstr "Madagascar"
2533
+
2534
+ #: ../lib/tribe-view-helpers.class.php:174
2535
+ msgid "Malawi"
2536
+ msgstr "Malawi"
2537
+
2538
+ #: ../lib/tribe-view-helpers.class.php:175
2539
+ msgid "Malaysia"
2540
+ msgstr "Malaysia"
2541
+
2542
+ #: ../lib/tribe-view-helpers.class.php:176
2543
+ msgid "Maldives"
2544
+ msgstr "Maldives"
2545
+
2546
+ #: ../lib/tribe-view-helpers.class.php:177
2547
+ msgid "Mali"
2548
+ msgstr "Mali"
2549
+
2550
+ #: ../lib/tribe-view-helpers.class.php:178
2551
+ msgid "Malta"
2552
+ msgstr "Malta"
2553
+
2554
+ #: ../lib/tribe-view-helpers.class.php:179
2555
+ msgid "Marshall Islands"
2556
+ msgstr "Marshall Islands"
2557
+
2558
+ #: ../lib/tribe-view-helpers.class.php:180
2559
+ msgid "Martinique"
2560
+ msgstr "Martinique"
2561
+
2562
+ #: ../lib/tribe-view-helpers.class.php:181
2563
+ msgid "Mauritania"
2564
+ msgstr "Mauritania"
2565
+
2566
+ #: ../lib/tribe-view-helpers.class.php:182
2567
+ msgid "Mauritius"
2568
+ msgstr "Mauritius"
2569
+
2570
+ #: ../lib/tribe-view-helpers.class.php:183
2571
+ msgid "Mayotte"
2572
+ msgstr "Mayotte"
2573
+
2574
+ #: ../lib/tribe-view-helpers.class.php:184
2575
+ msgid "Mexico"
2576
+ msgstr "Mexico"
2577
+
2578
+ #: ../lib/tribe-view-helpers.class.php:185
2579
+ msgid "Micronesia, Federated States Of"
2580
+ msgstr "Micronesia, Federated States Of"
2581
+
2582
+ #: ../lib/tribe-view-helpers.class.php:186
2583
+ msgid "Moldova, Republic Of"
2584
+ msgstr "Moldova, Republic Of"
2585
+
2586
+ #: ../lib/tribe-view-helpers.class.php:187
2587
+ msgid "Monaco"
2588
+ msgstr "Monaco"
2589
+
2590
+ #: ../lib/tribe-view-helpers.class.php:188
2591
+ msgid "Mongolia"
2592
+ msgstr "Mongolia"
2593
+
2594
+ #: ../lib/tribe-view-helpers.class.php:189
2595
+ msgid "Montenegro"
2596
+ msgstr "Montenegro"
2597
+
2598
+ #: ../lib/tribe-view-helpers.class.php:190
2599
+ msgid "Montserrat"
2600
+ msgstr "Montserrat"
2601
+
2602
+ #: ../lib/tribe-view-helpers.class.php:191
2603
+ msgid "Morocco"
2604
+ msgstr "Morocco"
2605
+
2606
+ #: ../lib/tribe-view-helpers.class.php:192
2607
+ msgid "Mozambique"
2608
+ msgstr "Mozambique"
2609
+
2610
+ #: ../lib/tribe-view-helpers.class.php:193
2611
+ msgid "Myanmar"
2612
+ msgstr "Myanmar"
2613
+
2614
+ #: ../lib/tribe-view-helpers.class.php:194
2615
+ msgid "Namibia"
2616
+ msgstr "Namibia"
2617
+
2618
+ #: ../lib/tribe-view-helpers.class.php:195
2619
+ msgid "Nauru"
2620
+ msgstr "Nauru"
2621
+
2622
+ #: ../lib/tribe-view-helpers.class.php:196
2623
+ msgid "Nepal"
2624
+ msgstr "Nepal"
2625
+
2626
+ #: ../lib/tribe-view-helpers.class.php:197
2627
+ msgid "Netherlands"
2628
+ msgstr "Netherlands"
2629
+
2630
+ #: ../lib/tribe-view-helpers.class.php:198
2631
+ msgid "Netherlands Antilles"
2632
+ msgstr "Netherlands Antilles"
2633
+
2634
+ #: ../lib/tribe-view-helpers.class.php:199
2635
+ msgid "New Caledonia"
2636
+ msgstr "New Caledonia"
2637
+
2638
+ #: ../lib/tribe-view-helpers.class.php:200
2639
+ msgid "New Zealand"
2640
+ msgstr "New Zealand"
2641
+
2642
+ #: ../lib/tribe-view-helpers.class.php:201
2643
+ msgid "Nicaragua"
2644
+ msgstr "Nicaragua"
2645
+
2646
+ #: ../lib/tribe-view-helpers.class.php:202
2647
+ msgid "Niger"
2648
+ msgstr "Niger"
2649
+
2650
+ #: ../lib/tribe-view-helpers.class.php:203
2651
+ msgid "Nigeria"
2652
+ msgstr "Nigeria"
2653
+
2654
+ #: ../lib/tribe-view-helpers.class.php:204
2655
+ msgid "Niue"
2656
+ msgstr "Niue"
2657
+
2658
+ #: ../lib/tribe-view-helpers.class.php:205
2659
+ msgid "Norfolk Island"
2660
+ msgstr "Norfolk Island"
2661
+
2662
+ #: ../lib/tribe-view-helpers.class.php:206
2663
+ msgid "Northern Mariana Islands"
2664
+ msgstr "Northern Mariana Islands"
2665
+
2666
+ #: ../lib/tribe-view-helpers.class.php:207
2667
+ msgid "Norway"
2668
+ msgstr "Norway"
2669
+
2670
+ #: ../lib/tribe-view-helpers.class.php:208
2671
+ msgid "Oman"
2672
+ msgstr "Oman"
2673
+
2674
+ #: ../lib/tribe-view-helpers.class.php:209
2675
+ msgid "Pakistan"
2676
+ msgstr "Pakistan"
2677
+
2678
+ #: ../lib/tribe-view-helpers.class.php:210
2679
+ msgid "Palau"
2680
+ msgstr "Palau"
2681
+
2682
+ #: ../lib/tribe-view-helpers.class.php:211
2683
+ msgid "Panama"
2684
+ msgstr "Panama"
2685
+
2686
+ #: ../lib/tribe-view-helpers.class.php:212
2687
+ msgid "Papua New Guinea"
2688
+ msgstr "Papua New Guinea"
2689
+
2690
+ #: ../lib/tribe-view-helpers.class.php:213
2691
+ msgid "Paraguay"
2692
+ msgstr "Paraguay"
2693
+
2694
+ #: ../lib/tribe-view-helpers.class.php:214
2695
+ msgid "Peru"
2696
+ msgstr "Peru"
2697
+
2698
+ #: ../lib/tribe-view-helpers.class.php:215
2699
+ msgid "Philippines"
2700
+ msgstr "Philippines"
2701
+
2702
+ #: ../lib/tribe-view-helpers.class.php:216
2703
+ msgid "Pitcairn"
2704
+ msgstr "Pitcairn"
2705
+
2706
+ #: ../lib/tribe-view-helpers.class.php:217
2707
+ msgid "Poland"
2708
+ msgstr "Poland"
2709
+
2710
+ #: ../lib/tribe-view-helpers.class.php:218
2711
+ msgid "Portugal"
2712
+ msgstr "Portugal"
2713
+
2714
+ #: ../lib/tribe-view-helpers.class.php:219
2715
+ msgid "Puerto Rico"
2716
+ msgstr "Puerto Rico"
2717
+
2718
+ #: ../lib/tribe-view-helpers.class.php:220
2719
+ msgid "Qatar"
2720
+ msgstr "Qatar"
2721
+
2722
+ #: ../lib/tribe-view-helpers.class.php:221
2723
+ msgid "Reunion"
2724
+ msgstr "Reunion"
2725
+
2726
+ #: ../lib/tribe-view-helpers.class.php:222
2727
+ msgid "Romania"
2728
+ msgstr "Romania"
2729
+
2730
+ #: ../lib/tribe-view-helpers.class.php:223
2731
+ msgid "Russian Federation"
2732
+ msgstr "Russian Federation"
2733
+
2734
+ #: ../lib/tribe-view-helpers.class.php:224
2735
+ msgid "Rwanda"
2736
+ msgstr "Rwanda"
2737
+
2738
+ #: ../lib/tribe-view-helpers.class.php:225
2739
+ msgid "Saint Kitts And Nevis"
2740
+ msgstr "Saint Kitts And Nevis"
2741
+
2742
+ #: ../lib/tribe-view-helpers.class.php:226
2743
+ msgid "Saint Lucia"
2744
+ msgstr "Saint Lucia"
2745
+
2746
+ #: ../lib/tribe-view-helpers.class.php:227
2747
+ msgid "Saint Vincent And The Grenadines"
2748
+ msgstr "Saint Vincent And The Grenadines"
2749
+
2750
+ #: ../lib/tribe-view-helpers.class.php:228
2751
+ msgid "Samoa"
2752
+ msgstr "Samoa"
2753
+
2754
+ #: ../lib/tribe-view-helpers.class.php:229
2755
+ msgid "San Marino"
2756
+ msgstr "San Marino"
2757
+
2758
+ #: ../lib/tribe-view-helpers.class.php:230
2759
+ msgid "Sao Tome And Principe"
2760
+ msgstr "Sao Tome And Principe"
2761
+
2762
+ #: ../lib/tribe-view-helpers.class.php:231
2763
+ msgid "Saudi Arabia"
2764
+ msgstr "Saudi Arabia"
2765
+
2766
+ #: ../lib/tribe-view-helpers.class.php:232
2767
+ msgid "Senegal"
2768
+ msgstr "Senegal"
2769
+
2770
+ #: ../lib/tribe-view-helpers.class.php:233
2771
+ msgid "Serbia"
2772
+ msgstr "Serbia"
2773
+
2774
+ #: ../lib/tribe-view-helpers.class.php:234
2775
+ msgid "Seychelles"
2776
+ msgstr "Seychelles"
2777
+
2778
+ #: ../lib/tribe-view-helpers.class.php:235
2779
+ msgid "Sierra Leone"
2780
+ msgstr "Sierra Leone"
2781
+
2782
+ #: ../lib/tribe-view-helpers.class.php:236
2783
+ msgid "Singapore"
2784
+ msgstr "Singapore"
2785
+
2786
+ #: ../lib/tribe-view-helpers.class.php:237
2787
+ msgid "Slovakia (Slovak Republic)"
2788
+ msgstr "Slovakia (Slovak Republic)"
2789
+
2790
+ #: ../lib/tribe-view-helpers.class.php:238
2791
+ msgid "Slovenia"
2792
+ msgstr "Slovenia"
2793
+
2794
+ #: ../lib/tribe-view-helpers.class.php:239
2795
+ msgid "Solomon Islands"
2796
+ msgstr "Solomon Islands"
2797
+
2798
+ #: ../lib/tribe-view-helpers.class.php:240
2799
+ msgid "Somalia"
2800
+ msgstr "Somalia"
2801
+
2802
+ #: ../lib/tribe-view-helpers.class.php:241
2803
+ msgid "South Africa"
2804
+ msgstr "South Africa"
2805
+
2806
+ #: ../lib/tribe-view-helpers.class.php:242
2807
+ msgid "South Georgia, South Sandwich Islands"
2808
+ msgstr "South Georgia, South Sandwich Islands"
2809
+
2810
+ #: ../lib/tribe-view-helpers.class.php:243
2811
+ msgid "Spain"
2812
+ msgstr "Spain"
2813
+
2814
+ #: ../lib/tribe-view-helpers.class.php:244
2815
+ msgid "Sri Lanka"
2816
+ msgstr "Sri Lanka"
2817
+
2818
+ #: ../lib/tribe-view-helpers.class.php:245
2819
+ msgid "St. Helena"
2820
+ msgstr "St. Helena"
2821
+
2822
+ #: ../lib/tribe-view-helpers.class.php:246
2823
+ msgid "St. Pierre And Miquelon"
2824
+ msgstr "St. Pierre And Miquelon"
2825
+
2826
+ #: ../lib/tribe-view-helpers.class.php:247
2827
+ msgid "Sudan"
2828
+ msgstr "Sudan"
2829
+
2830
+ #: ../lib/tribe-view-helpers.class.php:248
2831
+ msgid "Suriname"
2832
+ msgstr "Suriname"
2833
+
2834
+ #: ../lib/tribe-view-helpers.class.php:249
2835
+ msgid "Svalbard And Jan Mayen Islands"
2836
+ msgstr "Svalbard And Jan Mayen Islands"
2837
+
2838
+ #: ../lib/tribe-view-helpers.class.php:250
2839
+ msgid "Swaziland"
2840
+ msgstr "Swaziland"
2841
+
2842
+ #: ../lib/tribe-view-helpers.class.php:251
2843
+ msgid "Sweden"
2844
+ msgstr "Sweden"
2845
+
2846
+ #: ../lib/tribe-view-helpers.class.php:252
2847
+ msgid "Switzerland"
2848
+ msgstr "Switzerland"
2849
+
2850
+ #: ../lib/tribe-view-helpers.class.php:253
2851
+ msgid "Syrian Arab Republic"
2852
+ msgstr "Syrian Arab Republic"
2853
+
2854
+ #: ../lib/tribe-view-helpers.class.php:254
2855
+ msgid "Taiwan"
2856
+ msgstr "Taiwan"
2857
+
2858
+ #: ../lib/tribe-view-helpers.class.php:255
2859
+ msgid "Tajikistan"
2860
+ msgstr "Tajikistan"
2861
+
2862
+ #: ../lib/tribe-view-helpers.class.php:256
2863
+ msgid "Tanzania, United Republic Of"
2864
+ msgstr "Tanzania, United Republic Of"
2865
+
2866
+ #: ../lib/tribe-view-helpers.class.php:257
2867
+ msgid "Thailand"
2868
+ msgstr "Thailand"
2869
+
2870
+ #: ../lib/tribe-view-helpers.class.php:258
2871
+ msgid "Togo"
2872
+ msgstr "Togo"
2873
+
2874
+ #: ../lib/tribe-view-helpers.class.php:259
2875
+ msgid "Tokelau"
2876
+ msgstr "Tokelau"
2877
+
2878
+ #: ../lib/tribe-view-helpers.class.php:260
2879
+ msgid "Tonga"
2880
+ msgstr "Tonga"
2881
+
2882
+ #: ../lib/tribe-view-helpers.class.php:261
2883
+ msgid "Trinidad And Tobago"
2884
+ msgstr "Trinidad And Tobago"
2885
+
2886
+ #: ../lib/tribe-view-helpers.class.php:262
2887
+ msgid "Tunisia"
2888
+ msgstr "Tunisia"
2889
+
2890
+ #: ../lib/tribe-view-helpers.class.php:263
2891
+ msgid "Turkey"
2892
+ msgstr "Türkiye"
2893
+
2894
+ #: ../lib/tribe-view-helpers.class.php:264
2895
+ msgid "Turkmenistan"
2896
+ msgstr "Turkmenistan"
2897
+
2898
+ #: ../lib/tribe-view-helpers.class.php:265
2899
+ msgid "Turks And Caicos Islands"
2900
+ msgstr "Turks And Caicos Islands"
2901
+
2902
+ #: ../lib/tribe-view-helpers.class.php:266
2903
+ msgid "Tuvalu"
2904
+ msgstr "Tuvalu"
2905
+
2906
+ #: ../lib/tribe-view-helpers.class.php:267
2907
+ msgid "Uganda"
2908
+ msgstr "Uganda"
2909
+
2910
+ #: ../lib/tribe-view-helpers.class.php:268
2911
+ msgid "Ukraine"
2912
+ msgstr "Ukraine"
2913
+
2914
+ #: ../lib/tribe-view-helpers.class.php:269
2915
+ msgid "United Arab Emirates"
2916
+ msgstr "United Arab Emirates"
2917
+
2918
+ #: ../lib/tribe-view-helpers.class.php:270
2919
+ msgid "United Kingdom"
2920
+ msgstr "United Kingdom"
2921
+
2922
+ #: ../lib/tribe-view-helpers.class.php:271
2923
+ msgid "United States Minor Outlying Islands"
2924
+ msgstr "United States Minor Outlying Islands"
2925
+
2926
+ #: ../lib/tribe-view-helpers.class.php:272
2927
+ msgid "Uruguay"
2928
+ msgstr "Uruguay"
2929
+
2930
+ #: ../lib/tribe-view-helpers.class.php:273
2931
+ msgid "Uzbekistan"
2932
+ msgstr "Uzbekistan"
2933
+
2934
+ #: ../lib/tribe-view-helpers.class.php:274
2935
+ msgid "Vanuatu"
2936
+ msgstr "Vanuatu"
2937
+
2938
+ #: ../lib/tribe-view-helpers.class.php:275
2939
+ msgid "Venezuela"
2940
+ msgstr "Venezuela"
2941
+
2942
+ #: ../lib/tribe-view-helpers.class.php:276
2943
+ msgid "Viet Nam"
2944
+ msgstr "Viet Nam"
2945
+
2946
+ #: ../lib/tribe-view-helpers.class.php:277
2947
+ msgid "Virgin Islands (British)"
2948
+ msgstr "Virgin Islands (British)"
2949
+
2950
+ #: ../lib/tribe-view-helpers.class.php:278
2951
+ msgid "Virgin Islands (U.S.)"
2952
+ msgstr "Virgin Islands (U.S.)"
2953
+
2954
+ #: ../lib/tribe-view-helpers.class.php:279
2955
+ msgid "Wallis And Futuna Islands"
2956
+ msgstr "Wallis And Futuna Islands"
2957
+
2958
+ #: ../lib/tribe-view-helpers.class.php:280
2959
+ msgid "Western Sahara"
2960
+ msgstr "Western Sahara"
2961
+
2962
+ #: ../lib/tribe-view-helpers.class.php:281
2963
+ msgid "Yemen"
2964
+ msgstr "Yemen"
2965
+
2966
+ #: ../lib/tribe-view-helpers.class.php:282
2967
+ msgid "Zambia"
2968
+ msgstr "Zambia"
2969
+
2970
+ #: ../lib/tribe-view-helpers.class.php:283
2971
+ msgid "Zimbabwe"
2972
+ msgstr "Zimbabwe"
2973
+
2974
+ #: ../lib/tribe-view-helpers.class.php:308
2975
+ msgid "Alabama"
2976
+ msgstr "Alabama"
2977
+
2978
+ #: ../lib/tribe-view-helpers.class.php:309
2979
+ msgid "Alaska"
2980
+ msgstr "Alaska"
2981
+
2982
+ #: ../lib/tribe-view-helpers.class.php:310
2983
+ msgid "Arizona"
2984
+ msgstr "Arizona"
2985
+
2986
+ #: ../lib/tribe-view-helpers.class.php:311
2987
+ msgid "Arkansas"
2988
+ msgstr "Arkansas"
2989
+
2990
+ #: ../lib/tribe-view-helpers.class.php:312
2991
+ msgid "California"
2992
+ msgstr "California"
2993
+
2994
+ #: ../lib/tribe-view-helpers.class.php:313
2995
+ msgid "Colorado"
2996
+ msgstr "Colorado"
2997
+
2998
+ #: ../lib/tribe-view-helpers.class.php:314
2999
+ msgid "Connecticut"
3000
+ msgstr "Connecticut"
3001
+
3002
+ #: ../lib/tribe-view-helpers.class.php:315
3003
+ msgid "Delaware"
3004
+ msgstr "Delaware"
3005
+
3006
+ #: ../lib/tribe-view-helpers.class.php:316
3007
+ msgid "District of Columbia"
3008
+ msgstr "District of Columbia"
3009
+
3010
+ #: ../lib/tribe-view-helpers.class.php:317
3011
+ msgid "Florida"
3012
+ msgstr "Florida"
3013
+
3014
+ #: ../lib/tribe-view-helpers.class.php:319
3015
+ msgid "Hawaii"
3016
+ msgstr "Hawaii"
3017
+
3018
+ #: ../lib/tribe-view-helpers.class.php:320
3019
+ msgid "Idaho"
3020
+ msgstr "Idaho"
3021
+
3022
+ #: ../lib/tribe-view-helpers.class.php:321
3023
+ msgid "Illinois"
3024
+ msgstr "Illinois"
3025
+
3026
+ #: ../lib/tribe-view-helpers.class.php:322
3027
+ msgid "Indiana"
3028
+ msgstr "Indiana"
3029
+
3030
+ #: ../lib/tribe-view-helpers.class.php:323
3031
+ msgid "Iowa"
3032
+ msgstr "Iowa"
3033
+
3034
+ #: ../lib/tribe-view-helpers.class.php:324
3035
+ msgid "Kansas"
3036
+ msgstr "Kansas"
3037
+
3038
+ #: ../lib/tribe-view-helpers.class.php:325
3039
+ msgid "Kentucky"
3040
+ msgstr "Kentucky"
3041
+
3042
+ #: ../lib/tribe-view-helpers.class.php:326
3043
+ msgid "Louisiana"
3044
+ msgstr "Louisiana"
3045
+
3046
+ #: ../lib/tribe-view-helpers.class.php:327
3047
+ msgid "Maine"
3048
+ msgstr "Maine"
3049
+
3050
+ #: ../lib/tribe-view-helpers.class.php:328
3051
+ msgid "Maryland"
3052
+ msgstr "Maryland"
3053
+
3054
+ #: ../lib/tribe-view-helpers.class.php:329
3055
+ msgid "Massachusetts"
3056
+ msgstr "Massachusetts"
3057
+
3058
+ #: ../lib/tribe-view-helpers.class.php:330
3059
+ msgid "Michigan"
3060
+ msgstr "Michigan"
3061
+
3062
+ #: ../lib/tribe-view-helpers.class.php:331
3063
+ msgid "Minnesota"
3064
+ msgstr "Minnesota"
3065
+
3066
+ #: ../lib/tribe-view-helpers.class.php:332
3067
+ msgid "Mississippi"
3068
+ msgstr "Mississippi"
3069
+
3070
+ #: ../lib/tribe-view-helpers.class.php:333
3071
+ msgid "Missouri"
3072
+ msgstr "Missouri"
3073
+
3074
+ #: ../lib/tribe-view-helpers.class.php:334
3075
+ msgid "Montana"
3076
+ msgstr "Montana"
3077
+
3078
+ #: ../lib/tribe-view-helpers.class.php:335
3079
+ msgid "Nebraska"
3080
+ msgstr "Nebraska"
3081
+
3082
+ #: ../lib/tribe-view-helpers.class.php:336
3083
+ msgid "Nevada"
3084
+ msgstr "Nevada"
3085
+
3086
+ #: ../lib/tribe-view-helpers.class.php:337
3087
+ msgid "New Hampshire"
3088
+ msgstr "New Hampshire"
3089
+
3090
+ #: ../lib/tribe-view-helpers.class.php:338
3091
+ msgid "New Jersey"
3092
+ msgstr "New Jersey"
3093
+
3094
+ #: ../lib/tribe-view-helpers.class.php:339
3095
+ msgid "New Mexico"
3096
+ msgstr "New Mexico"
3097
+
3098
+ #: ../lib/tribe-view-helpers.class.php:340
3099
+ msgid "New York"
3100
+ msgstr "New York"
3101
+
3102
+ #: ../lib/tribe-view-helpers.class.php:341
3103
+ msgid "North Carolina"
3104
+ msgstr "North Carolina"
3105
+
3106
+ #: ../lib/tribe-view-helpers.class.php:342
3107
+ msgid "North Dakota"
3108
+ msgstr "North Dakota"
3109
+
3110
+ #: ../lib/tribe-view-helpers.class.php:343
3111
+ msgid "Ohio"
3112
+ msgstr "Ohio"
3113
+
3114
+ #: ../lib/tribe-view-helpers.class.php:344
3115
+ msgid "Oklahoma"
3116
+ msgstr "Oklahoma"
3117
+
3118
+ #: ../lib/tribe-view-helpers.class.php:345
3119
+ msgid "Oregon"
3120
+ msgstr "Oregon"
3121
+
3122
+ #: ../lib/tribe-view-helpers.class.php:346
3123
+ msgid "Pennsylvania"
3124
+ msgstr "Pennsylvania"
3125
+
3126
+ #: ../lib/tribe-view-helpers.class.php:347
3127
+ msgid "Rhode Island"
3128
+ msgstr "Rhode Island"
3129
+
3130
+ #: ../lib/tribe-view-helpers.class.php:348
3131
+ msgid "South Carolina"
3132
+ msgstr "South Carolina"
3133
+
3134
+ #: ../lib/tribe-view-helpers.class.php:349
3135
+ msgid "South Dakota"
3136
+ msgstr "South Dakota"
3137
+
3138
+ #: ../lib/tribe-view-helpers.class.php:350
3139
+ msgid "Tennessee"
3140
+ msgstr "Tennessee"
3141
+
3142
+ #: ../lib/tribe-view-helpers.class.php:351
3143
+ msgid "Texas"
3144
+ msgstr "Texas"
3145
+
3146
+ #: ../lib/tribe-view-helpers.class.php:352
3147
+ msgid "Utah"
3148
+ msgstr "Utah"
3149
+
3150
+ #: ../lib/tribe-view-helpers.class.php:353
3151
+ msgid "Vermont"
3152
+ msgstr "Vermont"
3153
+
3154
+ #: ../lib/tribe-view-helpers.class.php:354
3155
+ msgid "Virginia"
3156
+ msgstr "Virginia"
3157
+
3158
+ #: ../lib/tribe-view-helpers.class.php:355
3159
+ msgid "Washington"
3160
+ msgstr "Washington"
3161
+
3162
+ #: ../lib/tribe-view-helpers.class.php:356
3163
+ msgid "West Virginia"
3164
+ msgstr "West Virginia"
3165
+
3166
+ #: ../lib/tribe-view-helpers.class.php:357
3167
+ msgid "Wisconsin"
3168
+ msgstr "Wisconsin"
3169
+
3170
+ #: ../lib/tribe-view-helpers.class.php:358
3171
+ msgid "Wyoming"
3172
+ msgstr "Wyoming"
3173
+
3174
+ #: ../lib/widget-list.class.php:21
3175
+ msgid "A widget that displays upcoming events."
3176
+ msgstr "Yaklaşan etkinlikleri görüntüleyen bileşen."
3177
+
3178
+ #: ../lib/widget-list.class.php:27
3179
+ msgid "Events List"
3180
+ msgstr "Etkinlikler Listesi"
3181
+
3182
+ #: ../lib/widget-list.class.php:114
3183
+ msgid "View All Events"
3184
+ msgstr "Tüm etkinlikleri görüntüle"
3185
+
3186
+ #: ../lib/widget-list.class.php:117
3187
+ msgid "There are no upcoming events at this time."
3188
+ msgstr "Şuanda yaklaşan etkinlik bulunmamaktadır."
3189
+
3190
+ #: ../lib/template-classes/month.php:75
3191
+ #, php-format
3192
+ msgid ""
3193
+ "There were no results found for <strong>\"%s\"</strong> this month. Try "
3194
+ "searching next month."
3195
+ msgstr ""
3196
+ "<strong>\"%s\"</strong> için bu ay sonuç bulunamadı. Bir sonraki ayda "
3197
+ "aramayı deneyiniz."
3198
+
3199
+ #: ../lib/template-classes/single-event.php:99
3200
+ msgid "This event has passed."
3201
+ msgstr "Bu etkinlik sona erdi."
3202
+
3203
+ #: ../lib/tickets/tribe-tickets-attendees.php:67
3204
+ msgid "Order #"
3205
+ msgstr "Sipariş #"
3206
+
3207
+ #: ../lib/tickets/tribe-tickets-attendees.php:68
3208
+ msgid "Order Status"
3209
+ msgstr "Sipariş Durumu"
3210
+
3211
+ #: ../lib/tickets/tribe-tickets-attendees.php:69
3212
+ msgid "Purchaser name"
3213
+ msgstr "Satın alan adı"
3214
+
3215
+ #: ../lib/tickets/tribe-tickets-attendees.php:70
3216
+ msgid "Purchaser email"
3217
+ msgstr "Satın alan maili"
3218
+
3219
+ #: ../lib/tickets/tribe-tickets-attendees.php:71
3220
+ msgid "Ticket type"
3221
+ msgstr "Bilet türü"
3222
+
3223
+ #: ../lib/tickets/tribe-tickets-attendees.php:72
3224
+ #: ../views/tickets/email.php:316
3225
+ msgid "Ticket #"
3226
+ msgstr "Bilet #"
3227
+
3228
+ #: ../lib/tickets/tribe-tickets-attendees.php:73
3229
+ #: ../views/tickets/email.php:328
3230
+ msgid "Security Code"
3231
+ msgstr "Güvenlik kodu"
3232
+
3233
+ #: ../lib/tickets/tribe-tickets-attendees.php:74
3234
+ #: ../lib/tickets/tribe-tickets-attendees.php:144
3235
+ #: ../lib/tickets/tribe-tickets-attendees.php:200
3236
+ msgid "Check in"
3237
+ msgstr "Tjek ind"
3238
+
3239
+ #: ../lib/tickets/tribe-tickets-attendees.php:145
3240
+ #: ../lib/tickets/tribe-tickets-attendees.php:200
3241
+ msgid "Undo Check in"
3242
+ msgstr "Check in geri al"
3243
+
3244
+ #: ../lib/tickets/tribe-tickets-attendees.php:179
3245
+ msgid "Print"
3246
+ msgstr "Yazdır"
3247
+
3248
+ #: ../lib/tickets/tribe-tickets-attendees.php:180
3249
+ msgid "Email"
3250
+ msgstr "E-mail"
3251
+
3252
+ #: ../lib/tickets/tribe-tickets-attendees.php:181
3253
+ msgid "Export"
3254
+ msgstr "Dışa aktar"
3255
+
3256
+ #: ../lib/tickets/tribe-tickets-attendees.php:187
3257
+ msgid "Filter by ticket #, order # or security code"
3258
+ msgstr "Filter by ticket #, order # or security code"
3259
+
3260
+ #: ../lib/tickets/tribe-tickets-metabox.php:24
3261
+ msgid "Tickets"
3262
+ msgstr "Biletler"
3263
+
3264
+ #: ../lib/tickets/tribe-tickets-metabox.php:62
3265
+ msgid "Ticket header image"
3266
+ msgstr "Bilet üst resmi"
3267
+
3268
+ #: ../lib/tickets/tribe-tickets-metabox.php:62
3269
+ msgid "Set as ticket header"
3270
+ msgstr "Bilet üstresmi olarak ayarla"
3271
+
3272
+ #: ../lib/tickets/tribe-tickets-pro.php:107
3273
+ msgid "You need to select a user or type a valid email address"
3274
+ msgstr "Kullanıcı seçmeli ya da doğru bir mail adresi yazmalısınız."
3275
+
3276
+ #: ../lib/tickets/tribe-tickets-pro.php:108
3277
+ msgid "Sending..."
3278
+ msgstr "Gönderiliyor..."
3279
+
3280
+ #: ../lib/tickets/tribe-tickets-pro.php:136
3281
+ msgid "Columns"
3282
+ msgstr "Satırlar"
3283
+
3284
+ #: ../lib/tickets/tribe-tickets-pro.php:137
3285
+ msgid ""
3286
+ "You can use Screen Options to select which columns you want to see. The "
3287
+ "selection works in the table below, in the email, for print and for the CSV "
3288
+ "export."
3289
+ msgstr ""
3290
+ "Ekran ayarlarında hangi satıraları görmek istediğinizi seçebilirsiniz. "
3291
+ "Seçiminiz aşağıdaki tablo ile çalışır, mailde ve yadırmada Csv aktarımı için "
3292
+ "kullanabilirsiniz."
3293
+
3294
+ #: ../lib/tickets/tribe-tickets-pro.php:258
3295
+ msgid "attendees"
3296
+ msgstr "katılımcılar"
3297
+
3298
+ #: ../lib/tickets/tribe-tickets-pro.php:308
3299
+ #, php-format
3300
+ msgid "Attendee List for: %s"
3301
+ msgstr "%s için katılımcılar listesi: "
3302
+
3303
+ #: ../lib/tickets/tribe-tickets.php:292
3304
+ msgid "Your ticket has been saved."
3305
+ msgstr "Biletiniz kaydedildi."
3306
+
3307
+ #: ../lib/tickets/tribe-tickets.php:369
3308
+ msgid "Your ticket has been deleted."
3309
+ msgstr "Biletiniz silindi."
3310
+
3311
+ #: ../public/advanced-functions/meta.php:35
3312
+ msgid "Start:"
3313
+ msgstr "Başlangıç:"
3314
+
3315
+ #: ../public/advanced-functions/meta.php:42
3316
+ msgid "End:"
3317
+ msgstr "Bitiş:"
3318
+
3319
+ #: ../public/advanced-functions/meta.php:51
3320
+ msgid "Date:"
3321
+ msgstr "Tarih:"
3322
+
3323
+ #: ../public/advanced-functions/meta.php:233
3324
+ msgid "Click to view a Google Map"
3325
+ msgstr "Google Haritaları görüntülemek için tıklayınız"
3326
+
3327
+ #: ../public/advanced-functions/meta.php:234
3328
+ msgid "+ Google Map"
3329
+ msgstr "+ Google Haritalar"
3330
+
3331
+ #: ../public/advanced-functions/meta.php:245
3332
+ msgid "Details"
3333
+ msgstr "Detaylar"
3334
+
3335
+ #: ../public/advanced-functions/meta.php:295
3336
+ msgid "Event Tags:"
3337
+ msgstr "Etkinlik Etiketleri:"
3338
+
3339
+ #: ../public/advanced-functions/meta.php:321
3340
+ msgid "Origin:"
3341
+ msgstr "Origin:"
3342
+
3343
+ #: ../public/advanced-functions/meta.php:458
3344
+ msgid "Event:"
3345
+ msgstr "Etkinlik:"
3346
+
3347
+ #: ../public/template-tags/deprecated.php:1143
3348
+ msgid "Category"
3349
+ msgstr "Kategori"
3350
+
3351
+ #: ../public/template-tags/general.php:306
3352
+ msgid "Tags:"
3353
+ msgstr "Etiketler:"
3354
+
3355
+ #: ../public/template-tags/general.php:392
3356
+ msgid "Loading Events"
3357
+ msgstr "Etkinlikler Yükleniyor"
3358
+
3359
+ #: ../public/template-tags/general.php:531
3360
+ msgid "Free"
3361
+ msgstr "Ücretsiz"
3362
+
3363
+ #: ../public/template-tags/general.php:703
3364
+ msgid "Recurring Event"
3365
+ msgstr "Yenilenen Etkinlikler"
3366
+
3367
+ #: ../public/template-tags/general.php:706
3368
+ msgid "(See all)"
3369
+ msgstr "(Tümünü görüntüle)"
3370
+
3371
+ #: ../public/template-tags/general.php:982
3372
+ #, php-format
3373
+ msgid "Calendar powered by %sThe Events Calendar%s"
3374
+ msgstr "Powered by %sThe Events Calendar%s"
3375
+
3376
+ #: ../public/template-tags/loop.php:150
3377
+ #, php-format
3378
+ msgid "Events for %1$s"
3379
+ msgstr "%1$s için Etkinlikler"
3380
+
3381
+ #: ../public/template-tags/loop.php:158
3382
+ #, php-format
3383
+ msgid "Events for %1$s through %2$s"
3384
+ msgstr "Events for %1$s through %2$s"
3385
+
3386
+ #: ../public/template-tags/loop.php:171
3387
+ msgid "Events for "
3388
+ msgstr "Etkinlikler "
3389
+
3390
+ #: ../public/template-tags/options.php:20
3391
+ #, php-format
3392
+ msgid "Your current Events URL is %s"
3393
+ msgstr "Aktif etkinkilerinizin linki %s"
3394
+
3395
+ #: ../public/template-tags/options.php:31
3396
+ #, php-format
3397
+ msgid ""
3398
+ "You <strong>cannot</strong> use the same slug as above. The above should "
3399
+ "ideally be plural, and this singular.<br />Your single Event URL is like: %s"
3400
+ msgstr ""
3401
+ "You <strong>cannot</strong> use the same slug as above. The above should "
3402
+ "ideally be plural, and this singular.<br />Your single Event URL is like: %s"
3403
+
3404
+ #: ../views/single-event.php:23
3405
+ msgid "&laquo; All Events"
3406
+ msgstr "&laquo; Tüm Etkinlikler"
3407
+
3408
+ #: ../views/single-event.php:42 ../views/single-event.php:73
3409
+ msgid "Event Navigation"
3410
+ msgstr "Etkinlikler Navigasyonu"
3411
+
3412
+ #: ../views/list/nav.php:16
3413
+ msgid "Events List Navigation"
3414
+ msgstr "Etkinlik Listesi Navigasyonu"
3415
+
3416
+ #: ../views/list/single-event.php:76
3417
+ msgid "Find out more"
3418
+ msgstr "Daha fazlasını bul"
3419
+
3420
+ #: ../views/modules/bar.php:31 ../views/modules/bar.php:60
3421
+ msgid "Find Events"
3422
+ msgstr "Etkinlikleri Bul"
3423
+
3424
+ #: ../views/modules/bar.php:38
3425
+ msgid "Event Views Navigation"
3426
+ msgstr "Etkinlik Listesi Navigasyonu"
3427
+
3428
+ #: ../views/modules/bar.php:39
3429
+ msgid "View As"
3430
+ msgstr "Görüntüle: "
3431
+
3432
+ #: ../views/month/nav.php:18
3433
+ msgid "Calendar Month Navigation"
3434
+ msgstr "Aylık Takvim Navigasyonu"
3435
+
3436
+ #: ../views/tickets/attendees-email.php:25
3437
+ msgid "Attendee List"
3438
+ msgstr "Katılımcı Listesi"
3439
+
3440
+ #: ../views/tickets/email.php:39
3441
+ msgid "Your tickets"
3442
+ msgstr "Biletleriniz"
3443
+
3444
+ #: ../views/tickets/email.php:320
3445
+ msgid "Ticket Type"
3446
+ msgstr "Bilet Türü"
3447
+
3448
+ #: ../views/tickets/email.php:324
3449
+ msgid "Purchaser"
3450
+ msgstr "Satın alan"
3451
+
3452
+ #~ msgid ""
3453
+ #~ "Want to modify the display of this widget? Try a %stemplate override%s."
3454
+ #~ msgstr "Hvis du vil ændre udseendet på denne widget, så %sklik her%s. "
3455
+
3456
+ #~ msgid ""
3457
+ #~ "These styles provide a bare minimum level of layout for the more complex "
3458
+ #~ "templates, and is recommended if you're customizing the events template "
3459
+ #~ "styles."
3460
+ #~ msgstr ""
3461
+ #~ "Disse layouts indeholder kun det mest nødvendige. Kan bruges som "
3462
+ #~ "udgangspunkt for et personaliseret kalenderlayout."
3463
+
3464
+ #~ msgid ""
3465
+ #~ "These styles provide a more complex level of layout and style and should "
3466
+ #~ "adapt to your theme"
3467
+ #~ msgstr ""
3468
+ #~ "Disse layouts er mere fuldendte/komplekse og skal tilpasses dit sidetema."
3469
+
3470
+ #~ msgid "These styles provide a fully designed events theme"
3471
+ #~ msgstr "Disse layouts indeholder fuldt designede begivenhedsvisninger"
3472
+
3473
+ #~ msgid ""
3474
+ #~ "If this is your first time using The Events Calendar,you're in for a "
3475
+ #~ "treat. You're going to find it super-easy to get up and running with "
3476
+ #~ "managing your events. Here are some ways to get started:</"
3477
+ #~ "p><ul><li><strong>Feeling adventurous?</strong> Jump right into it by "
3478
+ #~ "visiting the Events menu to <a href=\"%s\">add your first event</a>.</"
3479
+ #~ "li><li><strong>Want to get the low-down first?</strong> Visit our <a href="
3480
+ #~ "\"%s\">new user primer</a>, designed to help familiarize you with the "
3481
+ #~ "plugin basics.</li></ul>"
3482
+ #~ msgstr ""
3483
+ #~ "If this is your first time using The Events Calendar,you're in for a "
3484
+ #~ "treat. You're going to find it super-easy to get up and running with "
3485
+ #~ "managing your events. Here are some ways to get started:</"
3486
+ #~ "p><ul><li><strong>Feeling adventurous?</strong> Jump right into it by "
3487
+ #~ "visiting the Events menu to <a href=\"%s\">add your first event</a>.</"
3488
+ #~ "li><li><strong>Want to get the low-down first?</strong> Visit our <a href="
3489
+ #~ "\"%s\">new user primer</a>, designed to help familiarize you with the "
3490
+ #~ "plugin basics.</li></ul>"
3491
+
3492
+ #~ msgid ""
3493
+ #~ "<p>We love all our users and want to help free & PRO customers alike. If "
3494
+ #~ "you're running the latest version of The Events Calendar and are having "
3495
+ #~ "problems, post a thread at the %s on WordPress.org. We hit the forum once "
3496
+ #~ "a week to look for legitimate bug reports and do what we can to assist "
3497
+ #~ "users.</p>"
3498
+ #~ msgstr ""
3499
+ #~ "<p>We love all our users and want to help free & PRO customers alike. If "
3500
+ #~ "you're running the latest version of The Events Calendar and are having "
3501
+ #~ "problems, post a thread at the %s on WordPress.org. We hit the forum once "
3502
+ #~ "a week to look for legitimate bug reports and do what we can to assist "
3503
+ #~ "users.</p>"
3504
+
3505
+ #~ msgid "forum for The Events Calendar"
3506
+ #~ msgstr "forum for The Events Calendar"
3507
+
3508
+ #~ msgid ""
3509
+ #~ "<p>If you need additional help, %sEvents Calendar Pro%s gets you access "
3510
+ #~ "to our support forums for a full year.</p>"
3511
+ #~ msgstr ""
3512
+ #~ "<p>If you need additional help, %sEvents Calendar Pro%s gets you access "
3513
+ #~ "to our support forums for a full year.</p>"
3514
+
3515
+ #~ msgid "A few things to keep in mind before posting:"
3516
+ #~ msgstr "A few things to keep in mind before posting:"
3517
+
3518
+ #~ msgid ""
3519
+ #~ "Search recent threads before posting a new one to check that there isn't "
3520
+ #~ "already a discussion about your issue."
3521
+ #~ msgstr ""
3522
+ #~ "Search recent threads before posting a new one to check that there isn't "
3523
+ #~ "already a discussion about your issue."
3524
+
3525
+ #~ msgid ""
3526
+ #~ "Check whether the issue is a conflict with another plugin or your theme. "
3527
+ #~ "This can be tested easily on a staging site by deactivating other plugins "
3528
+ #~ "one-by-one, and reverting to the default Twenty Twelve theme to see if "
3529
+ #~ "conflicts can be easily identified. If you find a conflict, note it in a "
3530
+ #~ "support thread."
3531
+ #~ msgstr ""
3532
+ #~ "Check whether the issue is a conflict with another plugin or your theme. "
3533
+ #~ "This can be tested easily on a staging site by deactivating other plugins "
3534
+ #~ "one-by-one, and reverting to the default Twenty Twelve theme to see if "
3535
+ #~ "conflicts can be easily identified. If you find a conflict, note it in a "
3536
+ #~ "support thread."
3537
+
3538
+ #~ msgid ""
3539
+ #~ "Sometimes, resaving your permalinks (under <a href=\"%s\">Settings > "
3540
+ #~ "Permalinks</a>) can resolve events-related problems on your site. Before "
3541
+ #~ "creating a new thread try this handy trick."
3542
+ #~ msgstr ""
3543
+ #~ "Sometimes, resaving your permalinks (under <a href=\"%s\">Settings > "
3544
+ #~ "Permalinks</a>) can resolve events-related problems on your site. Before "
3545
+ #~ "creating a new thread try this handy trick."
3546
+
3547
+ #~ msgid ""
3548
+ #~ "While we are happy to help with bugs and provide light integration tips "
3549
+ #~ "for users of The Events Calendar, on the WordPress.org support forums "
3550
+ #~ "we're not able to provide customization tips or assist in integration "
3551
+ #~ "with 3rd party plugins."
3552
+ #~ msgstr ""
3553
+ #~ "While we are happy to help with bugs and provide light integration tips "
3554
+ #~ "for users of The Events Calendar, on the WordPress.org support forums "
3555
+ #~ "we're not able to provide customization tips or assist in integration "
3556
+ #~ "with 3rd party plugins."
3557
+
3558
+ #~ msgid "Still Not Satisfied?"
3559
+ #~ msgstr "Still Not Satisfied?"
3560
+
3561
+ #~ msgid ""
3562
+ #~ "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make "
3563
+ #~ "sure you have backed up before proceeding any further. You can easily <a "
3564
+ #~ "href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/"
3565
+ #~ "\">revert to an old version</a> if you want to backup first. This upgrade "
3566
+ #~ "includes two major steps, <a href=\"edit.php?post_type="
3567
+ #~ msgstr ""
3568
+ #~ "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make "
3569
+ #~ "sure you have backed up before proceeding any further. You can easily <a "
3570
+ #~ "href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/"
3571
+ #~ "\">revert to an old version</a> if you want to backup first. This upgrade "
3572
+ #~ "includes two major steps, <a href=\"edit.php?post_type="
3573
+
3574
+ #~ msgid "Send PressTrends data"
3575
+ #~ msgstr "Send PressTrends data"
3576
+
3577
+ #~ msgid ""
3578
+ #~ "Help us out by sending analytics data about your usage of The Events "
3579
+ #~ "Calendar."
3580
+ #~ msgstr ""
3581
+ #~ "Hjælp os ved at sende anonymt data vedrørende din brug til The Events "
3582
+ #~ "Calendar."
3583
+
3584
+ #~ msgid ""
3585
+ #~ "Would you like to help us out and send analytics about your usage of The "
3586
+ #~ "Events Calendar?"
3587
+ #~ msgstr ""
3588
+ #~ "Du kan hjælpe os ved at sende anonymt data til os vedrørende din brug af "
3589
+ #~ "The Events Calendar."
lib/template-classes/month.php CHANGED
@@ -21,6 +21,7 @@ if( !class_exists('Tribe_Events_Month_Template')){
21
  private static $current_month;
22
  private static $current_year;
23
  private static $event_daily_counts = array();
 
24
  private static $first_day_of_month = null;
25
  private static $posts_per_page_limit = 3;
26
  private static $tribe_bar_args = array();
@@ -48,6 +49,8 @@ if( !class_exists('Tribe_Events_Month_Template')){
48
  self::$args = $args;
49
  self::$posts_per_page_limit = apply_filters( 'tribe_events_month_day_limit', tribe_get_option( 'monthEventAmount', '3' ) );
50
 
 
 
51
  if ( ! tribe_is_month() ) {
52
  $this->asset_packages = array();
53
  }
@@ -117,21 +120,16 @@ if( !class_exists('Tribe_Events_Month_Template')){
117
  $count_args = self::$args;
118
 
119
  $count_args['eventDisplay'] = 'month';
120
- $count_args['eventDate'] = date('Y-m', $date);
121
- $count_args['start_date'] = date('Y-m-d', $date) . ' 00:00:00';
122
- $count_args['end_date'] = date('Y-m-t', $date) . ' 23:59:59';
123
  $count_args['hide_upcoming_ids'] = self::$hide_upcoming_ids;
124
  $count_args['post_status'] = is_user_logged_in() ? array( 'publish', 'private' ) : 'publish';
125
 
126
- $cache = new TribeEventsCache();
127
- $cache_key = 'daily_counts_'.serialize($count_args);
128
- $found = $cache->get( $cache_key, 'save_post' );
129
- if ( $found && is_array($found) ) {
130
- return $found;
131
- }
132
  $result = TribeEventsQuery::getEventCounts( $count_args );
133
- $cache->set( $cache_key, $result, self::$cache_expiration, 'save_post' );
134
- return $result;
 
135
  }
136
 
137
 
@@ -165,34 +163,15 @@ if( !class_exists('Tribe_Events_Month_Template')){
165
  $post_status = is_user_logged_in() ? array( 'publish', 'private' ) : 'publish';
166
 
167
  $args = wp_parse_args( array(
168
- 'eventDate' => $date,
169
- 'start_date' => tribe_event_beginning_of_day( $date ),
170
- 'end_date' => tribe_event_end_of_day( $date ),
171
- // setup our own custom hide upcoming
172
- 'post__not_in' => self::$hide_upcoming_ids,
173
- 'hide_upcoming' => false,
174
- 'posts_per_page' => self::$posts_per_page_limit,
175
- 'orderby' => 'menu_order',
176
- 'order' => 'ASC',
177
- 'post_status' => $post_status,
178
  'eventDisplay' => 'custom',
179
- 'no_found_rows' => true
 
180
  ), self::$args );
181
-
182
- if ( is_tax( $tribe_ecp->get_event_taxonomy() ) ) {
183
- $cat = get_term_by( 'slug', get_query_var( 'term' ), $tribe_ecp->get_event_taxonomy() );
184
- $args['eventCat'] = (int) $cat->term_id;
185
- }
186
-
187
- $cache = new TribeEventsCache();
188
- $cache_key = 'daily_events_'.serialize($args);
189
- $found = $cache->get($cache_key, 'save_post');
190
- if ( $found && is_a($found, 'WP_Query') ) {
191
- // return $found;
192
- }
193
-
194
  $result = TribeEventsQuery::getEvents( $args, true );
195
- $cache->set($cache_key, $result, self::$cache_expiration, 'save_post');
196
  return $result;
197
  }
198
 
@@ -207,16 +186,18 @@ if( !class_exists('Tribe_Events_Month_Template')){
207
  $tribe_ecp = TribeEvents::instance();
208
  $tribe_ecp->date = isset( self::$args['eventDate'] ) ? self::$args['eventDate'] : tribe_get_month_view_date();
209
 
 
 
210
  // get all upcoming ids to hide so we're not querying 31 times
211
  self::$hide_upcoming_ids = TribeEventsQuery::getHideFromUpcomingEvents();
212
 
213
  list( $year, $month ) = explode( '-', $tribe_ecp->date );
214
 
215
- $first_date_of_month = mktime( 12, 0, 0, $month, 1, $year ); // 1st day of month as unix stamp
216
-
217
  $startOfWeek = get_option( 'start_of_week', 0 );
218
 
219
- self::$event_daily_counts = self::get_daily_counts($first_date_of_month);
 
 
220
 
221
  if ( empty(self::$tribe_bar_args) ) {
222
  foreach ( $_REQUEST as $key => $value ) {
@@ -235,9 +216,9 @@ if( !class_exists('Tribe_Events_Month_Template')){
235
  $days = array();
236
 
237
  // setup counters
238
- $rawOffset = date( 'w', $first_date_of_month ) - $startOfWeek;
239
  $prev_month_offset = (int) ( ( $rawOffset < 0 ) ? $rawOffset + 7 : $rawOffset ); // month begins on day x
240
- $days_in_month = (int) date( 't', intval( $first_date_of_month ) );
241
  $days_in_calendar = $days_in_month + $prev_month_offset;
242
  while ($days_in_calendar % 7 > 0) {
243
  $days_in_calendar++;
@@ -252,6 +233,10 @@ if( !class_exists('Tribe_Events_Month_Template')){
252
  // get $cur_calendar_day up to speed
253
  $cur_calendar_day += $prev_month_offset;
254
 
 
 
 
 
255
  // add days for this month
256
  for ($i = 0; $i < $days_in_month; $i++) {
257
  $day = $i + 1;
@@ -262,7 +247,7 @@ if( !class_exists('Tribe_Events_Month_Template')){
262
  $days[] = array(
263
  'daynum' => $day,
264
  'date' => $date,
265
- 'events' => self::get_daily_events( $date ),
266
  'total_events' => $total_events,
267
  'view_more' => self::view_more_link( $date, self::$tribe_bar_args ),
268
  );
21
  private static $current_month;
22
  private static $current_year;
23
  private static $event_daily_counts = array();
24
+ private static $event_daily_ids = array();
25
  private static $first_day_of_month = null;
26
  private static $posts_per_page_limit = 3;
27
  private static $tribe_bar_args = array();
49
  self::$args = $args;
50
  self::$posts_per_page_limit = apply_filters( 'tribe_events_month_day_limit', tribe_get_option( 'monthEventAmount', '3' ) );
51
 
52
+ // don't enqueue scripts and js when we're not constructing month view,
53
+ // they'll have to be enqueued separately
54
  if ( ! tribe_is_month() ) {
55
  $this->asset_packages = array();
56
  }
120
  $count_args = self::$args;
121
 
122
  $count_args['eventDisplay'] = 'month';
123
+ $count_args['eventDate'] = date( 'Y-m', strtotime( $date ) );
124
+ $count_args['start_date'] = tribe_event_beginning_of_day( $date );
125
+ $count_args['end_date'] = tribe_event_end_of_day( date('Y-m-t', strtotime( $date ) ) );
126
  $count_args['hide_upcoming_ids'] = self::$hide_upcoming_ids;
127
  $count_args['post_status'] = is_user_logged_in() ? array( 'publish', 'private' ) : 'publish';
128
 
 
 
 
 
 
 
129
  $result = TribeEventsQuery::getEventCounts( $count_args );
130
+
131
+ self::$event_daily_counts = $result['counts'];
132
+ self::$event_daily_ids = $result['event_ids'];
133
  }
134
 
135
 
163
  $post_status = is_user_logged_in() ? array( 'publish', 'private' ) : 'publish';
164
 
165
  $args = wp_parse_args( array(
166
+ 'post__in' => self::$event_daily_ids[$date],
167
+ 'post_type' => TribeEvents::POSTTYPE,
168
+ 'start_date' => tribe_event_beginning_of_day($date),
169
+ 'end_date' => tribe_event_end_of_day($date),
 
 
 
 
 
 
170
  'eventDisplay' => 'custom',
171
+ 'no_found_rows' => true,
172
+ 'posts_per_page' => self::$posts_per_page_limit,
173
  ), self::$args );
 
 
 
 
 
 
 
 
 
 
 
 
 
174
  $result = TribeEventsQuery::getEvents( $args, true );
 
175
  return $result;
176
  }
177
 
186
  $tribe_ecp = TribeEvents::instance();
187
  $tribe_ecp->date = isset( self::$args['eventDate'] ) ? self::$args['eventDate'] : tribe_get_month_view_date();
188
 
189
+ do_action('log', 'eventDate', 'tribe-events-query', $tribe_ecp->date);
190
+
191
  // get all upcoming ids to hide so we're not querying 31 times
192
  self::$hide_upcoming_ids = TribeEventsQuery::getHideFromUpcomingEvents();
193
 
194
  list( $year, $month ) = explode( '-', $tribe_ecp->date );
195
 
 
 
196
  $startOfWeek = get_option( 'start_of_week', 0 );
197
 
198
+ $first_day_of_month = date( 'Y-m-01', strtotime( $tribe_ecp->date ) );
199
+
200
+ self::get_daily_counts($first_day_of_month);
201
 
202
  if ( empty(self::$tribe_bar_args) ) {
203
  foreach ( $_REQUEST as $key => $value ) {
216
  $days = array();
217
 
218
  // setup counters
219
+ $rawOffset = date( 'w', strtotime($tribe_ecp->date) ) - $startOfWeek;
220
  $prev_month_offset = (int) ( ( $rawOffset < 0 ) ? $rawOffset + 7 : $rawOffset ); // month begins on day x
221
+ $days_in_month = (int) date( 't', strtotime($tribe_ecp->date) );
222
  $days_in_calendar = $days_in_month + $prev_month_offset;
223
  while ($days_in_calendar % 7 > 0) {
224
  $days_in_calendar++;
233
  // get $cur_calendar_day up to speed
234
  $cur_calendar_day += $prev_month_offset;
235
 
236
+ // if (in_array(0, self::$event_daily_counts)) {
237
+ $empty_query = new WP_Query();
238
+ // }
239
+
240
  // add days for this month
241
  for ($i = 0; $i < $days_in_month; $i++) {
242
  $day = $i + 1;
247
  $days[] = array(
248
  'daynum' => $day,
249
  'date' => $date,
250
+ 'events' => $total_events ? self::get_daily_events( $date ) : $empty_query,
251
  'total_events' => $total_events,
252
  'view_more' => self::view_more_link( $date, self::$tribe_bar_args ),
253
  );
lib/template-classes/month.php.orig ADDED
@@ -0,0 +1,417 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @for Calendar Template
4
+ * This file contains the hook logic required to create an effective calendar month view.
5
+ *
6
+ * @package TribeEventsCalendar
7
+ * @since 2.1
8
+ * @author Modern Tribe Inc.
9
+ *
10
+ */
11
+
12
+ if ( !defined('ABSPATH') ) { die('-1'); }
13
+
14
+ if( !class_exists('Tribe_Events_Month_Template')){
15
+ /**
16
+ * Grid view template class
17
+ */
18
+ class Tribe_Events_Month_Template extends Tribe_Template_Factory {
19
+ private static $hide_upcoming_ids;
20
+ private static $today;
21
+ private static $current_month;
22
+ private static $current_year;
23
+ private static $event_daily_counts = array();
24
+ private static $event_daily_ids = array();
25
+ private static $first_day_of_month = null;
26
+ private static $posts_per_page_limit = 3;
27
+ private static $tribe_bar_args = array();
28
+ private static $cache_expiration = 3600;
29
+ private static $calendar_days = array();
30
+ private static $current_day = -1;
31
+ private static $current_week = -1;
32
+ protected static $args;
33
+ protected $body_class = 'events-gridview';
34
+ protected $excerpt_length = 30;
35
+ protected $asset_packages = array( 'ajax-calendar' );
36
+
37
+ /**
38
+ * Set the notices used on month view
39
+ *
40
+ * @param array $args Set of $wp_query params for the month view, if none passed then will default to $wp_query
41
+ * @since 3.0
42
+ */
43
+ public function __construct( $args = null ) {
44
+ if ( $args === null ) {
45
+ global $wp_query;
46
+ $args = $wp_query->query;
47
+ }
48
+
49
+ self::$args = $args;
50
+ self::$posts_per_page_limit = apply_filters( 'tribe_events_month_day_limit', tribe_get_option( 'monthEventAmount', '3' ) );
51
+
52
+ // don't enqueue scripts and js when we're not constructing month view,
53
+ // they'll have to be enqueued separately
54
+ if ( ! tribe_is_month() ) {
55
+ $this->asset_packages = array();
56
+ }
57
+
58
+ parent::__construct();
59
+ }
60
+
61
+ /**
62
+ * Add any special hooks for this view
63
+ *
64
+ * @return void
65
+ * @author Jessica Yazbek
66
+ * @since 3.0.2
67
+ **/
68
+ protected function hooks() {
69
+ parent::hooks();
70
+
71
+ // Since we set is_post_type_archive to true on month view, this prevents 'Events' from being added to the page title
72
+ add_filter('post_type_archive_title', '__return_false', 10);
73
+ }
74
+
75
+ /**
76
+ * Unhook all the hooks set up on this view
77
+ *
78
+ * @return void
79
+ * @author
80
+ **/
81
+ protected function unhook() {
82
+ parent::unhook();
83
+ remove_filter('post_type_archive_title', '__return_false', 10);
84
+ }
85
+
86
+
87
+ /**
88
+ * Set the notices used on month view
89
+ *
90
+ * @return void
91
+ * @since 3.0
92
+ **/
93
+ public function set_notices() {
94
+ global $wp_query;
95
+ // setup a search term for query or via ajax
96
+ if( !empty( $wp_query->query_vars['s'] )){
97
+ $search_term = $wp_query->query_vars['s'];
98
+ } else if( !empty($_POST['tribe-bar-search'])) {
99
+ $search_term = $_POST['tribe-bar-search'];
100
+ }
101
+
102
+ $total_counts = array_unique(self::$event_daily_counts);
103
+
104
+ if( count($total_counts) < 2 && !empty($search_term)) {
105
+ 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 ) ) );
106
+ }
107
+ }
108
+
109
+
110
+ /**
111
+ * Get number of events per day
112
+ *
113
+ * @param int $date
114
+ * @return array
115
+ * @since 3.0
116
+ */
117
+ private static function get_daily_counts( $date ) {
118
+ global $wp_query;
119
+
120
+ $count_args = self::$args;
121
+
122
+ $count_args['eventDisplay'] = 'month';
123
+ $count_args['eventDate'] = date( 'Y-m', strtotime( $date ) );
124
+ $count_args['start_date'] = tribe_event_beginning_of_day( $date );
125
+ $count_args['end_date'] = tribe_event_end_of_day( date('Y-m-t', strtotime( $date ) ) );
126
+ $count_args['hide_upcoming_ids'] = self::$hide_upcoming_ids;
127
+ $count_args['post_status'] = is_user_logged_in() ? array( 'publish', 'private' ) : 'publish';
128
+
129
+ $result = TribeEventsQuery::getEventCounts( $count_args );
130
+
131
+ self::$event_daily_counts = $result['counts'];
132
+ self::$event_daily_ids = $result['event_ids'];
133
+ }
134
+
135
+
136
+ /**
137
+ * Get the view more link
138
+ *
139
+ * @param int $date
140
+ * @param array $args
141
+ * @return string
142
+ * @since 3.0
143
+ */
144
+ private static function view_more_link( $date, $args ) {
145
+ if( !empty(self::$event_daily_counts[$date]) && (int) self::$event_daily_counts[$date] > self::$posts_per_page_limit ) {
146
+ $day_link = tribe_get_day_link($date);
147
+ if ( !empty($args) ) {
148
+ $day_link = add_query_arg($args, $day_link);
149
+ }
150
+ return $day_link;
151
+ }
152
+ return '';
153
+ }
154
+
155
+ /**
156
+ * @param string $date
157
+ * @return WP_Query
158
+ */
159
+ private function get_daily_events( $date ) {
160
+ global $wp_query;
161
+ $tribe_ecp = TribeEvents::instance();
162
+
163
+ $post_status = is_user_logged_in() ? array( 'publish', 'private' ) : 'publish';
164
+
165
+ $args = wp_parse_args( array(
166
+ 'post__in' => self::$event_daily_ids[$date],
167
+ 'post_type' => TribeEvents::POSTTYPE,
168
+ 'eventDisplay' => 'custom',
169
+ 'eventDate' => $date,
170
+ 'start_date' => tribe_event_beginning_of_day( $date ),
171
+ 'end_date' => tribe_event_end_of_day( $date ),
172
+ // setup our own custom hide upcoming
173
+ 'post__not_in' => self::$hide_upcoming_ids,
174
+ 'hide_upcoming' => false,
175
+ 'posts_per_page' => self::$posts_per_page_limit,
176
+ ), self::$args );
177
+
178
+ $result = TribeEventsQuery::getEvents( $args, true );
179
+ return $result;
180
+ }
181
+
182
+ /**
183
+ * Sets up an array of $days based on the current query, that can be used in the calendar loop
184
+ *
185
+ * @return void
186
+ * @since 3.0
187
+ **/
188
+ public function setup_view() {
189
+
190
+ $tribe_ecp = TribeEvents::instance();
191
+ $tribe_ecp->date = isset( self::$args['eventDate'] ) ? self::$args['eventDate'] : tribe_get_month_view_date();
192
+
193
+ do_action('log', 'eventDate', 'tribe-events-query', $tribe_ecp->date);
194
+
195
+ // get all upcoming ids to hide so we're not querying 31 times
196
+ self::$hide_upcoming_ids = TribeEventsQuery::getHideFromUpcomingEvents();
197
+
198
+ list( $year, $month ) = explode( '-', $tribe_ecp->date );
199
+
200
+ $startOfWeek = get_option( 'start_of_week', 0 );
201
+
202
+ $first_day_of_month = date( 'Y-m-01', strtotime( $tribe_ecp->date ) );
203
+
204
+ self::get_daily_counts($first_day_of_month);
205
+
206
+ if ( empty(self::$tribe_bar_args) ) {
207
+ foreach ( $_REQUEST as $key => $value ) {
208
+ if ( $value && strpos($key, 'tribe-bar-') === 0 && $key != 'tribe-bar-date' ) {
209
+ self::$tribe_bar_args[$key] = $value;
210
+ }
211
+ }
212
+ }
213
+
214
+ // Var'ng up days, months and years
215
+ self::$today = date_i18n( 'd' );
216
+ self::$current_month = date_i18n( 'm' );
217
+ self::$current_year = date_i18n( 'Y' );
218
+
219
+ // single dimensional array of days for the month
220
+ $days = array();
221
+
222
+ // setup counters
223
+ $rawOffset = date( 'w', strtotime($tribe_ecp->date) ) - $startOfWeek;
224
+ $prev_month_offset = (int) ( ( $rawOffset < 0 ) ? $rawOffset + 7 : $rawOffset ); // month begins on day x
225
+ $days_in_month = (int) date( 't', strtotime($tribe_ecp->date) );
226
+ $days_in_calendar = $days_in_month + $prev_month_offset;
227
+ while ($days_in_calendar % 7 > 0) {
228
+ $days_in_calendar++;
229
+ }
230
+ $week = 0;
231
+ $cur_calendar_day = 0;
232
+
233
+ // fill month with required days for previous month
234
+ if ( $prev_month_offset > 0 )
235
+ $days = array_fill( 0, $prev_month_offset, array( 'date' => 'previous' ) );
236
+
237
+ // get $cur_calendar_day up to speed
238
+ $cur_calendar_day += $prev_month_offset;
239
+
240
+ // if (in_array(0, self::$event_daily_counts)) {
241
+ $empty_query = new WP_Query();
242
+ // }
243
+
244
+ // add days for this month
245
+ for ($i = 0; $i < $days_in_month; $i++) {
246
+ $day = $i + 1;
247
+ $date = date( 'Y-m-d', strtotime("$year-$month-$day"));
248
+
249
+ $total_events = ! empty( self::$event_daily_counts[$date] ) ? self::$event_daily_counts[$date] : 0;
250
+
251
+ $days[] = array(
252
+ 'daynum' => $day,
253
+ 'date' => $date,
254
+ 'events' => $total_events ? self::get_daily_events( $date ) : $empty_query,
255
+ 'total_events' => $total_events,
256
+ 'view_more' => self::view_more_link( $date, self::$tribe_bar_args ),
257
+ );
258
+ }
259
+
260
+ // get $cur_calendar_day up to speed
261
+ $cur_calendar_day += $days_in_month;
262
+
263
+ // check if $cur_calendar_day is less than $days_in_calendar, if so, add days for next month
264
+ if ($cur_calendar_day < $days_in_calendar) {
265
+ $days = array_merge($days, array_fill($cur_calendar_day, $days_in_calendar - $cur_calendar_day, array('date' => 'next')));
266
+ }
267
+
268
+ // store set of found days for use in calendar loop functions
269
+ self::$calendar_days = $days;
270
+ }
271
+
272
+ /**
273
+ * Checks whether there are more calendar days to display
274
+ *
275
+ * @return bool True if calendar days are available, false if not.
276
+ * @since 3.0
277
+ **/
278
+ public static function have_days() {
279
+ if ( self::$current_day + 1 < count( self::$calendar_days ) ) {
280
+ return true;
281
+ } elseif ( self::$current_day + 1 == count( self::$calendar_days ) && count( self::$calendar_days ) > 0 ) {
282
+ do_action_ref_array('tribe_events_calendar_loop_end', array(&$this));
283
+ // Do some cleaning up after the loop
284
+ self::rewind_days();
285
+ }
286
+ return false;
287
+ }
288
+
289
+ /**
290
+ * Advances the internal day counter (and week counter, if appropriate)
291
+ *
292
+ * @return void
293
+ * @since 3.0
294
+ **/
295
+ public static function the_day() {
296
+ if ( self::have_days() ) {
297
+ self::$current_day++;
298
+ if ( self::$current_day % 7 == 0 ) {
299
+ self::$current_week++;
300
+ }
301
+ }
302
+ }
303
+
304
+ /**
305
+ * Rewind the posts and reset post index.
306
+ *
307
+ * @since 1.5.0
308
+ * @access public
309
+ */
310
+ public static function rewind_days() {
311
+ self::$current_day = -1;
312
+ self::$current_week = -1;
313
+ }
314
+
315
+ /**
316
+ * Returns the current day according to self::$current_day
317
+ *
318
+ * @return int
319
+ * @since 3.0
320
+ **/
321
+ public static function get_current_day() {
322
+ if ( count( self::$calendar_days ) && self::$current_day < count( self::$calendar_days ) && isset( self::$calendar_days[self::$current_day] ) ) {
323
+ return self::$calendar_days[self::$current_day];
324
+ }
325
+ return false;
326
+ }
327
+
328
+ /**
329
+ * Generates and returns a set of classes for the current day
330
+ *
331
+ * @return string Classes
332
+ * @since 3.0
333
+ **/
334
+ public static function day_classes() {
335
+ $ppf = '';
336
+ $calendar_day = self::$calendar_days[self::$current_day];
337
+ // echo $calendar_day['date'];
338
+ if ($calendar_day['date'] == 'previous' || $calendar_day['date'] == 'next') {
339
+ $ppf = 'tribe-events-othermonth';
340
+ } else {
341
+ $ppf = 'tribe-events-thismonth';
342
+ list ($year, $month, $day) = explode('-', $calendar_day['date']);
343
+ if ( self::$current_month == $month && self::$current_year == $year) {
344
+ // Past, Present, Future class
345
+ if ( self::$today == $day ) {
346
+ $ppf .= ' tribe-events-present';
347
+ } else if ( self::$today > $day ) {
348
+ $ppf .= ' tribe-events-past';
349
+ } else if ( self::$today < $day ) {
350
+ $ppf .= ' tribe-events-future';
351
+ }
352
+ } else if ( self::$current_month > $month && self::$current_year == $year || self::$current_year > $year ) {
353
+ $ppf .= ' tribe-events-past';
354
+ } else if ( self::$current_month < $month && self::$current_year == $year || self::$current_year < $year ) {
355
+ $ppf .= ' tribe-events-future';
356
+ }
357
+ if ( $calendar_day['total_events'] > 0 ) {
358
+ $ppf .= ' tribe-events-has-events';
359
+ }
360
+
361
+ }
362
+
363
+ $column = (self::$current_day) - (self::$current_week * 7);
364
+
365
+ if ( $column > 0 && ( $column % 4 == 0 || $column % 5 == 0 || $column % 6 == 0 ) ) {
366
+ $ppf .= ' tribe-events-right';
367
+ }
368
+ return $ppf;
369
+ }
370
+
371
+ /**
372
+ * Returns self::$current_week
373
+ *
374
+ * @return int $current_week
375
+ * @since 3.0
376
+ **/
377
+ public static function get_current_week() {
378
+ return self::$current_week;
379
+ }
380
+
381
+ /**
382
+ * Generates and returns a set of classes for the current day
383
+ *
384
+ * @return string Classes
385
+ * @since 3.0
386
+ **/
387
+ public function event_classes( $classes ) {
388
+
389
+ $day = self::get_current_day();
390
+
391
+ if ( !isset( $day['events'] ) )
392
+ return $classes;
393
+
394
+ $post = $day['events']->post;
395
+
396
+ // Get our wrapper classes (for event categories, organizer, venue, and defaults)
397
+ $classes = array('hentry', 'vevent');
398
+ $tribe_cat_slugs = tribe_get_event_cat_slugs( $post->ID );
399
+ foreach( $tribe_cat_slugs as $tribe_cat_slug ) {
400
+ $classes[] = 'tribe-events-category-'. $tribe_cat_slug;
401
+ }
402
+ $classes = array_merge($classes, get_post_class('', $post->ID));
403
+ if ( $venue_id = tribe_get_venue_id($post->ID) ) {
404
+ $classes[] = 'tribe-events-venue-'. $venue_id;
405
+ }
406
+ if ( $organizer_id = tribe_get_organizer_id($post->ID) ) {
407
+ $classes[] = 'tribe-events-organizer-'. $organizer_id;
408
+ }
409
+
410
+ if ($day['events']->current_post + 1 == $day['events']->post_count) {
411
+ $classes[] = 'tribe-events-last';
412
+ }
413
+
414
+ return $classes;
415
+ }
416
+ } // class Tribe_Events_Month_Template
417
+ }
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.0.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/';
@@ -239,6 +239,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
239
  require_once( 'tribe-the-events-calendar-import.class.php' );
240
  //require_once( 'tribe-debug-bar.class.php' );
241
  require_once( 'tribe-amalgamator.php' );
 
242
 
243
  // Load Template Classes
244
  require_once( 'template-classes/month.php' );
@@ -343,7 +344,6 @@ if ( !class_exists( 'TribeEvents' ) ) {
343
  add_filter( 'bloginfo_rss', array($this, 'add_space_to_rss' ) );
344
  add_filter( 'post_type_link', array($this, 'addDateToRecurringEvents'), 10, 2 );
345
  add_filter( 'post_updated_messages', array($this, 'updatePostMessage') );
346
- add_filter( 'term_link', array($this, 'tag_link'), 10, 3);
347
 
348
  /* Add nav menu item - thanks to http://wordpress.org/extend/plugins/cpt-archives-in-nav-menus/ */
349
  add_filter( 'nav_menu_items_' . TribeEvents::POSTTYPE, array( $this, 'add_events_checkbox_to_menu' ), null, 3 );
@@ -351,8 +351,9 @@ if ( !class_exists( 'TribeEvents' ) ) {
351
 
352
  add_filter( 'generate_rewrite_rules', array( $this, 'filterRewriteRules' ) );
353
 
354
- if ( !is_admin() )
355
- add_filter( 'get_comment_link', array( $this, 'newCommentLink' ), 10, 2 );
 
356
 
357
  /* Setup Tribe Events Bar */
358
  add_filter( 'tribe-events-bar-views', array($this, 'setup_listview_in_bar'), 1, 1 );
@@ -364,15 +365,17 @@ if ( !class_exists( 'TribeEvents' ) ) {
364
  add_filter( 'tribe-events-bar-views', array( $this, 'remove_hidden_views' ), 9999, 2 );
365
  /* End Setup Tribe Events Bar */
366
 
 
 
367
  add_action( 'admin_menu', array( $this, 'addEventBox' ) );
368
  add_action( 'wp_insert_post', array( $this, 'addPostOrigin' ), 10, 2 );
369
  add_action( 'save_post', array( $this, 'addEventMeta' ), 15, 2 );
370
  add_action( 'save_post', array( $this, 'save_venue_data' ), 16, 2 );
371
  add_action( 'save_post', array( $this, 'save_organizer_data' ), 16, 2 );
372
  add_action( 'save_post', array( $this, 'addToPostAuditTrail' ), 10, 2 );
373
- add_action( 'save_post', array( $this, 'publishAssociatedTypes'), 25, 2 );
374
  add_action( 'pre_get_posts', array( $this, 'setDate' ));
375
- add_action( 'parse_query', array( $this, 'setDisplay' ));
376
  add_action( 'tribe_events_post_errors', array( 'TribeEventsPostException', 'displayMessage' ) );
377
  add_action( 'tribe_settings_top', array( 'TribeEventsOptionsException', 'displayMessage') );
378
  add_action( 'admin_enqueue_scripts', array( $this, 'addAdminScriptsAndStyles' ) );
@@ -1518,7 +1521,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
1518
 
1519
  ?>
1520
  <tr class="" >
1521
- <td style="width:170px"><?php _e( 'Use Saved Organizer:', 'tribe-events-calendar' ); ?></td>
1522
  <td><?php $this->saved_organizers_dropdown( $curOrg ); ?></td>
1523
  </tr>
1524
  <?php
@@ -1538,7 +1541,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
1538
  $my_venues = false;
1539
  $my_venue_options = '';
1540
  if ( 0 != $current_user->ID ) {
1541
- $my_venues = $this->get_venue_info( null, null, array('post_status' => array('publish', 'draft', 'private'), 'author' => $current_user->ID) );
1542
 
1543
  if ( !empty( $my_venues ) ) {
1544
  foreach ( $my_venues as $my_venue ) {
@@ -1551,7 +1554,11 @@ if ( !class_exists( 'TribeEvents' ) ) {
1551
  }
1552
  }
1553
 
1554
- $venues = $this->get_venue_info( null, null, array('post_status' => 'publish', 'post__not_in' => $my_venue_ids) );
 
 
 
 
1555
  if ( $venues || $my_venues ) {
1556
  echo '<select class="chosen venue-dropdown" name="' . esc_attr( $name ) . '" id="saved_venue">';
1557
  echo '<option value="0">' . __( 'Use New Venue' , 'tribe-events-calendar' ) . '</option>';
@@ -1590,7 +1597,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
1590
  $my_organizers = false;
1591
  $my_organizers_options = '';
1592
  if ( 0 != $current_user->ID ) {
1593
- $my_organizers = $this->get_organizer_info( null, null, array('post_status' => array('publish', 'draft', 'private'), 'author' => $current_user->ID) );
1594
 
1595
  if ( !empty( $my_organizers ) ) {
1596
  foreach ( $my_organizers as $my_organizer ) {
@@ -1603,7 +1610,12 @@ if ( !class_exists( 'TribeEvents' ) ) {
1603
  }
1604
  }
1605
 
1606
- $organizers = $this->get_organizer_info( null, null, array('post_status' => 'publish', 'post__not_in' => $my_organizer_ids) );
 
 
 
 
 
1607
  if ( $organizers || $my_organizers ) {
1608
  echo '<select class="chosen organizer-dropdown" name="' . esc_attr( $name ) . '" id="saved_organizer">';
1609
  echo '<option value="0">' . __( 'Use New Organizer' , 'tribe-events-calendar' ) . '</option>';
@@ -1797,8 +1809,8 @@ if ( !class_exists( 'TribeEvents' ) ) {
1797
  *
1798
  * @return array of options
1799
  */
1800
- public static function getOptions() {
1801
- if ( !isset( self::$options ) ) {
1802
  $options = get_option( TribeEvents::OPTIONNAME, array() );
1803
  self::$options = apply_filters( 'tribe_get_options', $options );
1804
  }
@@ -2138,9 +2150,11 @@ if ( !class_exists( 'TribeEvents' ) ) {
2138
  $this->displaying = 'admin';
2139
  } else {
2140
  global $wp_query;
2141
- $this->displaying = isset( $wp_query->query_vars['eventDisplay'] ) ? $wp_query->query_vars['eventDisplay'] : tribe_get_option( 'viewOption', 'upcoming');
2142
- if ( is_single() && $this->displaying != 'all' )
2143
- $this->displaying = 'single-event';
 
 
2144
  }
2145
  }
2146
 
@@ -2329,7 +2343,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
2329
  $newRules[$baseTax . '([^/]+)/feed/?$'] = 'index.php?tribe_events_cat=' . $wp_rewrite->preg_index(2) . '&eventDisplay=upcoming&post_type=' . self::POSTTYPE . '&feed=rss2';
2330
  $newRules[$baseTax . '([^/]+)/ical/?$'] = 'index.php?post_type=' . self::POSTTYPE . '&eventDisplay=upcoming&tribe_events_cat=' . $wp_rewrite->preg_index(2) . '&ical=1';
2331
  $newRules[$baseTax . '([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$'] = 'index.php?post_type=' . self::POSTTYPE . '&tribe_events_cat=' . $wp_rewrite->preg_index(2) . '&feed=' . $wp_rewrite->preg_index(3);
2332
- $newRules[$baseTax . '([^/]+)$'] = 'index.php?post_type=' . self::POSTTYPE . '&eventDisplay=upcoming&tribe_events_cat=' . $wp_rewrite->preg_index(2);
2333
  $newRules[$baseTax . '([^/]+)/?$'] = 'index.php?tribe_events_cat=' . $wp_rewrite->preg_index(2) . '&post_type=' . self::POSTTYPE . '&eventDisplay=' . $this->getOption('viewOption','month');
2334
 
2335
  // tag rules.
@@ -2798,27 +2812,10 @@ if ( !class_exists( 'TribeEvents' ) ) {
2798
  */
2799
  public function publishAssociatedTypes( $postID, $post ) {
2800
 
2801
- remove_action( 'save_post', array( $this, 'addEventMeta' ), 15, 2 );
2802
  remove_action( 'save_post', array( $this, 'save_venue_data' ), 16, 2 );
2803
  remove_action( 'save_post', array( $this, 'save_organizer_data' ), 16, 2 );
2804
  remove_action( 'save_post', array( $this, 'addToPostAuditTrail' ), 10, 2 );
2805
 
2806
- // Only continue if the post being published is an event
2807
- if ( $post->post_type != self::POSTTYPE ) {
2808
- return;
2809
- }
2810
- if ( wp_is_post_autosave($postID) ) {
2811
- return;
2812
- }
2813
- if ( in_array( $post->post_status, array( 'auto-draft', 'draft' ) ) ) {
2814
- return;
2815
- }
2816
- if ( isset( $_GET['bulk_edit'] ) ) {
2817
- return;
2818
- }
2819
- if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'inline-save' ) {
2820
- return;
2821
- }
2822
 
2823
  // save venue and organizer info on first pass
2824
  if( isset( $post->post_status ) && $post->post_status == 'publish' ) {
@@ -2833,12 +2830,16 @@ if ( !class_exists( 'TribeEvents' ) ) {
2833
  //get venue and organizer and publish them
2834
  $pm = get_post_custom($post->ID);
2835
 
 
 
2836
  // save venue on first setup
2837
  if( !empty( $pm['_EventVenueID'] ) ){
2838
  $venue_id = is_array( $pm['_EventVenueID'] ) ? current( $pm['_EventVenueID'] ) : $pm['_EventVenueID'];
2839
  if( $venue_id ){
 
2840
  $venue_post = get_post( $venue_id );
2841
  if ( !empty( $venue_post ) && $venue_post->post_status != 'publish' ) {
 
2842
  $venue_post->post_status = 'publish';
2843
  wp_update_post( $venue_post );
2844
  $did_save = true;
@@ -3215,7 +3216,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
3215
  $endMonthOptions = TribeEventsViewHelpers::getMonthOptions( $_EventEndDate );
3216
  $startYearOptions = TribeEventsViewHelpers::getYearOptions( $_EventStartDate );
3217
  $endYearOptions = TribeEventsViewHelpers::getYearOptions( $_EventEndDate );
3218
- $startMinuteOptions = TribeEventsViewHelpers::getMinuteOptions( $_EventStartDate, true );
3219
  $endMinuteOptions = TribeEventsViewHelpers::getMinuteOptions( $_EventEndDate );
3220
  $startHourOptions = TribeEventsViewHelpers::getHourOptions( $_EventAllDay == 'yes' ? null : $_EventStartDate, true );
3221
  $endHourOptions = TribeEventsViewHelpers::getHourOptions( $_EventAllDay == 'yes' ? null : $_EventEndDate );
@@ -3236,7 +3237,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
3236
  $EventEndDate = ( isset( $end ) && $end ) ? $end : date( 'Y-m-d' );
3237
  $recStart = isset( $_REQUEST['event_start'] ) ? esc_attr( $_REQUEST['event_start'] ) : null;
3238
  $recPost = isset( $_REQUEST['post'] ) ? absint( $_REQUEST['post'] ) : null;
3239
-
3240
 
3241
  if ( !empty($_REQUEST['eventDate']) ) {
3242
  $duration = get_post_meta( $postId, '_EventDuration', true );
@@ -3246,6 +3247,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
3246
 
3247
  $events_meta_box_template = $this->pluginPath . 'admin-views/events-meta-box.php';
3248
  $events_meta_box_template = apply_filters('tribe_events_meta_box_template', $events_meta_box_template);
 
3249
  include( $events_meta_box_template );
3250
  }
3251
 
@@ -3274,7 +3276,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
3274
  }
3275
  }
3276
  }
3277
-
3278
  ?>
3279
  <style type="text/css">
3280
  #EventInfo {border:none;}
@@ -3524,13 +3526,13 @@ if ( !class_exists( 'TribeEvents' ) ) {
3524
  }
3525
 
3526
  /**
3527
- * Echo the next tab index
3528
  *
3529
  * @return void
3530
  */
3531
  public function tabIndex() {
3532
- echo $this->tabIndexStart;
3533
  $this->tabIndexStart++;
 
3534
  }
3535
 
3536
  /**
@@ -3559,7 +3561,8 @@ if ( !class_exists( 'TribeEvents' ) ) {
3559
  public function isEvent( $event ) {
3560
  if ( $event === null || ( ! is_numeric( $event ) && !is_object( $event ) ) ) {
3561
  global $post;
3562
- $event = $post->ID;
 
3563
  }
3564
  if ( is_numeric( $event ) ) {
3565
  if ( get_post_type($event) == self::POSTTYPE )
@@ -3599,7 +3602,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
3599
  global $post;
3600
  $postId = $post->ID;
3601
  }
3602
- if ( get_post_field('post_type', $postId) == self::ORGANIZER_POST_TYPE ) {
3603
  return true;
3604
  }
3605
  return false;
@@ -3640,7 +3643,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
3640
  AND ($wpdb->posts.ID != %d OR d1.meta_value != '%s')
3641
  ORDER BY TIMESTAMP(d1.meta_value) $order, ID $order
3642
  LIMIT 1", self::POSTTYPE, $date, $id, $date, $id, $date );
3643
-
3644
  $args = array(
3645
  'post_type' => self::POSTTYPE,
3646
  'post_status' => 'publish',
@@ -4030,22 +4033,6 @@ if ( !class_exists( 'TribeEvents' ) ) {
4030
  echo '<input type="hidden" name="eventDate" value="' . get_query_var( 'eventDate' ) . '" />';
4031
  }
4032
 
4033
- /**
4034
- * Filter the link for tags when showing in an event.
4035
- *
4036
- * @param string $termlink The current link.
4037
- * @param object The term object.
4038
- * @param string $taxonomy The taxonomy we are using.
4039
- * @return string The new link.
4040
- */
4041
- public function tag_link($termlink, $term, $taxonomy) {
4042
- global $post;
4043
- if (is_object($post) && $post->post_type == self::POSTTYPE && $taxonomy == 'post_tag') {
4044
- $termlink = esc_url(trailingslashit(tribe_get_events_link().'tag/'.$term->slug));
4045
- }
4046
- return $termlink;
4047
- }
4048
-
4049
  /**
4050
  * Set up the list view in the view selector in the tribe events bar.
4051
  *
@@ -4149,6 +4136,22 @@ if ( !class_exists( 'TribeEvents' ) ) {
4149
  return $views;
4150
  }
4151
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4152
  /**
4153
  * Set the tribe_paged query var.
4154
  *
@@ -4158,7 +4161,6 @@ if ( !class_exists( 'TribeEvents' ) ) {
4158
  function set_tribe_paged( $query ) {
4159
  if ( !empty( $_REQUEST['tribe_paged'] ) ) {
4160
  add_filter( 'redirect_canonical', '__return_false' );
4161
- $query->query_vars['paged'] = $_REQUEST['tribe_paged'];
4162
  }
4163
 
4164
  return $query;
@@ -4197,10 +4199,6 @@ if ( !class_exists( 'TribeEvents' ) ) {
4197
  $args[TribeEvents::TAXONOMY] = $_POST['tribe_event_category'];
4198
  }
4199
 
4200
- // add filter that executes after TribeEventsQuery::pre_get_posts,
4201
- // that sets the tribe bar date
4202
- add_action( 'tribe_events_pre_get_posts', array( $this, 'list_ajax_call_set_date' ) );
4203
-
4204
  $query = TribeEventsQuery::getEvents( $args, true );
4205
 
4206
  $hash = $query->query_vars;
@@ -4225,8 +4223,6 @@ if ( !class_exists( 'TribeEvents' ) ) {
4225
  'view' => 'list',
4226
  );
4227
 
4228
- remove_action( 'tribe_events_pre_get_posts', array( $this, 'list_ajax_call_set_date' ) );
4229
-
4230
  global $wp_query, $post, $paged;
4231
  $wp_query = $query;
4232
  if ( !empty( $query->posts ) ) {
@@ -4299,23 +4295,6 @@ if ( !class_exists( 'TribeEvents' ) ) {
4299
 
4300
  }
4301
 
4302
- /**
4303
- * Set the date query var if the user is searching using it.
4304
- *
4305
- * @param WP_Query $query The current query object.
4306
- * @return WP_Query The modified query object.
4307
- */
4308
- function list_ajax_call_set_date( $query ) {
4309
- if ( isset( $_POST["tribe-bar-date"] ) && $_POST["tribe-bar-date"] ) {
4310
- if ($_POST['tribe_event_display'] == 'past') {
4311
- $query->set( 'end_date', $_POST["tribe-bar-date"] );
4312
- } else {
4313
- $query->set( 'start_date', $_POST["tribe-bar-date"] );
4314
- }
4315
- }
4316
- return $query;
4317
- }
4318
-
4319
  /**
4320
  * The Calendar View AJAX Handler.
4321
  *
@@ -4323,28 +4302,29 @@ if ( !class_exists( 'TribeEvents' ) ) {
4323
  * @since 3.0
4324
  */
4325
  function calendar_ajax_call() {
 
4326
  if ( isset( $_POST["eventDate"] ) && $_POST["eventDate"] ) {
4327
 
4328
  TribeEventsQuery::init();
4329
- global $wp_query;
4330
 
4331
  // set the global query var for eventDisplay
 
 
 
 
 
4332
 
4333
- $wp_query->set( 'eventDisplay', 'month');
4334
- if( !empty($_REQUEST['eventDate']))
4335
- $wp_query->set( 'eventDate', $_REQUEST['eventDate']);
4336
 
4337
  if ( isset( $_POST['tribe_event_category'] ) ) {
4338
- $wp_query->set( TribeEvents::TAXONOMY, $_POST['tribe_event_category'] );
4339
  }
4340
 
4341
  if ( class_exists( 'TribeEventsFilterView' ) ) {
4342
  TribeEventsFilterView::instance()->createFilters( null, true );
4343
  }
4344
 
4345
- $wp_query->tribe_is_event_query = true;
4346
-
4347
- $this->setDisplay();
4348
 
4349
  ob_start();
4350
 
@@ -4372,7 +4352,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
4372
  * @since 3.0
4373
  */
4374
  public function checkSuiteIfJustUpdated() {
4375
- $plugins = apply_filters( 'tribe_tec_addons', array( 'TribeEventsCalendar' => array( 'plugin_name' => 'Events Calendar PRO', 'required_version' => self::VERSION, 'current_version' => self::VERSION, 'plugin_dir_file' => basename( dirname( __FILE__ ) ) . '/the-events-calendar.php' ) ) );
4376
  $plugin_versions = get_option( 'tribe_events_suite_versions', array() );
4377
  $new_plugin_versions = $plugin_versions;
4378
 
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.1';
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/';
239
  require_once( 'tribe-the-events-calendar-import.class.php' );
240
  //require_once( 'tribe-debug-bar.class.php' );
241
  require_once( 'tribe-amalgamator.php' );
242
+ require_once( 'tribe-events-update.class.php' );
243
 
244
  // Load Template Classes
245
  require_once( 'template-classes/month.php' );
344
  add_filter( 'bloginfo_rss', array($this, 'add_space_to_rss' ) );
345
  add_filter( 'post_type_link', array($this, 'addDateToRecurringEvents'), 10, 2 );
346
  add_filter( 'post_updated_messages', array($this, 'updatePostMessage') );
 
347
 
348
  /* Add nav menu item - thanks to http://wordpress.org/extend/plugins/cpt-archives-in-nav-menus/ */
349
  add_filter( 'nav_menu_items_' . TribeEvents::POSTTYPE, array( $this, 'add_events_checkbox_to_menu' ), null, 3 );
351
 
352
  add_filter( 'generate_rewrite_rules', array( $this, 'filterRewriteRules' ) );
353
 
354
+ if ( !is_admin() ) {
355
+ add_filter( 'get_comment_link', array( $this, 'newCommentLink' ), 10, 2 );
356
+ }
357
 
358
  /* Setup Tribe Events Bar */
359
  add_filter( 'tribe-events-bar-views', array($this, 'setup_listview_in_bar'), 1, 1 );
365
  add_filter( 'tribe-events-bar-views', array( $this, 'remove_hidden_views' ), 9999, 2 );
366
  /* End Setup Tribe Events Bar */
367
 
368
+ add_filter( 'tribe_events_is_view_enabled', array( $this, 'enable_day_view' ), 10, 2 );
369
+
370
  add_action( 'admin_menu', array( $this, 'addEventBox' ) );
371
  add_action( 'wp_insert_post', array( $this, 'addPostOrigin' ), 10, 2 );
372
  add_action( 'save_post', array( $this, 'addEventMeta' ), 15, 2 );
373
  add_action( 'save_post', array( $this, 'save_venue_data' ), 16, 2 );
374
  add_action( 'save_post', array( $this, 'save_organizer_data' ), 16, 2 );
375
  add_action( 'save_post', array( $this, 'addToPostAuditTrail' ), 10, 2 );
376
+ add_action( 'publish_'.self::POSTTYPE, array( $this, 'publishAssociatedTypes'), 25, 2 );
377
  add_action( 'pre_get_posts', array( $this, 'setDate' ));
378
+ add_action( 'parse_query', array( $this, 'setDisplay' ), 51, 0);
379
  add_action( 'tribe_events_post_errors', array( 'TribeEventsPostException', 'displayMessage' ) );
380
  add_action( 'tribe_settings_top', array( 'TribeEventsOptionsException', 'displayMessage') );
381
  add_action( 'admin_enqueue_scripts', array( $this, 'addAdminScriptsAndStyles' ) );
1521
 
1522
  ?>
1523
  <tr class="" >
1524
+ <td style="width:170px"><label for="saved_organizer"><?php _e( 'Use Saved Organizer:', 'tribe-events-calendar' ); ?></label></td>
1525
  <td><?php $this->saved_organizers_dropdown( $curOrg ); ?></td>
1526
  </tr>
1527
  <?php
1541
  $my_venues = false;
1542
  $my_venue_options = '';
1543
  if ( 0 != $current_user->ID ) {
1544
+ $my_venues = $this->get_venue_info( null, null, array('post_status' => array('publish', 'draft', 'private', 'pending'), 'author' => $current_user->ID) );
1545
 
1546
  if ( !empty( $my_venues ) ) {
1547
  foreach ( $my_venues as $my_venue ) {
1554
  }
1555
  }
1556
 
1557
+ if ( current_user_can('edit_others_tribe_venues') ) {
1558
+ $venues = $this->get_venue_info( null, null, array('post_status' => array('publish', 'draft', 'private', 'pending'), 'post__not_in' => $my_venue_ids) );
1559
+ } else {
1560
+ $venues = $this->get_venue_info( null, null, array('post_status' => 'publish', 'post__not_in' => $my_venue_ids) );
1561
+ }
1562
  if ( $venues || $my_venues ) {
1563
  echo '<select class="chosen venue-dropdown" name="' . esc_attr( $name ) . '" id="saved_venue">';
1564
  echo '<option value="0">' . __( 'Use New Venue' , 'tribe-events-calendar' ) . '</option>';
1597
  $my_organizers = false;
1598
  $my_organizers_options = '';
1599
  if ( 0 != $current_user->ID ) {
1600
+ $my_organizers = $this->get_organizer_info( null, null, array('post_status' => array('publish', 'draft', 'private', 'pending'), 'author' => $current_user->ID) );
1601
 
1602
  if ( !empty( $my_organizers ) ) {
1603
  foreach ( $my_organizers as $my_organizer ) {
1610
  }
1611
  }
1612
 
1613
+
1614
+ if ( current_user_can('edit_others_tribe_organizers') ) {
1615
+ $organizers = $this->get_organizer_info( null, null, array('post_status' => array('publish', 'draft', 'private', 'pending'), 'post__not_in' => $my_organizer_ids) );
1616
+ } else {
1617
+ $organizers = $this->get_organizer_info( null, null, array('post_status' => 'publish', 'post__not_in' => $my_organizer_ids) );
1618
+ }
1619
  if ( $organizers || $my_organizers ) {
1620
  echo '<select class="chosen organizer-dropdown" name="' . esc_attr( $name ) . '" id="saved_organizer">';
1621
  echo '<option value="0">' . __( 'Use New Organizer' , 'tribe-events-calendar' ) . '</option>';
1809
  *
1810
  * @return array of options
1811
  */
1812
+ public static function getOptions( $force = FALSE ) {
1813
+ if ( !isset( self::$options ) || $force ) {
1814
  $options = get_option( TribeEvents::OPTIONNAME, array() );
1815
  self::$options = apply_filters( 'tribe_get_options', $options );
1816
  }
2150
  $this->displaying = 'admin';
2151
  } else {
2152
  global $wp_query;
2153
+ if ( $wp_query->is_main_query() && !empty( $wp_query->tribe_is_event_query ) ) {
2154
+ $this->displaying = isset( $wp_query->query_vars['eventDisplay'] ) ? $wp_query->query_vars['eventDisplay'] : tribe_get_option( 'viewOption', 'upcoming' );
2155
+ if ( is_single() && $this->displaying != 'all' )
2156
+ $this->displaying = 'single-event';
2157
+ }
2158
  }
2159
  }
2160
 
2343
  $newRules[$baseTax . '([^/]+)/feed/?$'] = 'index.php?tribe_events_cat=' . $wp_rewrite->preg_index(2) . '&eventDisplay=upcoming&post_type=' . self::POSTTYPE . '&feed=rss2';
2344
  $newRules[$baseTax . '([^/]+)/ical/?$'] = 'index.php?post_type=' . self::POSTTYPE . '&eventDisplay=upcoming&tribe_events_cat=' . $wp_rewrite->preg_index(2) . '&ical=1';
2345
  $newRules[$baseTax . '([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$'] = 'index.php?post_type=' . self::POSTTYPE . '&tribe_events_cat=' . $wp_rewrite->preg_index(2) . '&feed=' . $wp_rewrite->preg_index(3);
2346
+ // $newRules[$baseTax . '([^/]+)$'] = 'index.php?post_type=' . self::POSTTYPE . '&eventDisplay=upcoming&tribe_events_cat=' . $wp_rewrite->preg_index(2);
2347
  $newRules[$baseTax . '([^/]+)/?$'] = 'index.php?tribe_events_cat=' . $wp_rewrite->preg_index(2) . '&post_type=' . self::POSTTYPE . '&eventDisplay=' . $this->getOption('viewOption','month');
2348
 
2349
  // tag rules.
2812
  */
2813
  public function publishAssociatedTypes( $postID, $post ) {
2814
 
 
2815
  remove_action( 'save_post', array( $this, 'save_venue_data' ), 16, 2 );
2816
  remove_action( 'save_post', array( $this, 'save_organizer_data' ), 16, 2 );
2817
  remove_action( 'save_post', array( $this, 'addToPostAuditTrail' ), 10, 2 );
2818
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2819
 
2820
  // save venue and organizer info on first pass
2821
  if( isset( $post->post_status ) && $post->post_status == 'publish' ) {
2830
  //get venue and organizer and publish them
2831
  $pm = get_post_custom($post->ID);
2832
 
2833
+ do_action('log', 'publishing an event with a venue', 'tribe-events', $post);
2834
+
2835
  // save venue on first setup
2836
  if( !empty( $pm['_EventVenueID'] ) ){
2837
  $venue_id = is_array( $pm['_EventVenueID'] ) ? current( $pm['_EventVenueID'] ) : $pm['_EventVenueID'];
2838
  if( $venue_id ){
2839
+ do_action('log', 'event has a venue', 'tribe-events', $venue_id);
2840
  $venue_post = get_post( $venue_id );
2841
  if ( !empty( $venue_post ) && $venue_post->post_status != 'publish' ) {
2842
+ do_action('log', 'venue post found', 'tribe-events', $venue_post);
2843
  $venue_post->post_status = 'publish';
2844
  wp_update_post( $venue_post );
2845
  $did_save = true;
3216
  $endMonthOptions = TribeEventsViewHelpers::getMonthOptions( $_EventEndDate );
3217
  $startYearOptions = TribeEventsViewHelpers::getYearOptions( $_EventStartDate );
3218
  $endYearOptions = TribeEventsViewHelpers::getYearOptions( $_EventEndDate );
3219
+ $startMinuteOptions = TribeEventsViewHelpers::getMinuteOptions( $_EventStartDate, true );
3220
  $endMinuteOptions = TribeEventsViewHelpers::getMinuteOptions( $_EventEndDate );
3221
  $startHourOptions = TribeEventsViewHelpers::getHourOptions( $_EventAllDay == 'yes' ? null : $_EventStartDate, true );
3222
  $endHourOptions = TribeEventsViewHelpers::getHourOptions( $_EventAllDay == 'yes' ? null : $_EventEndDate );
3237
  $EventEndDate = ( isset( $end ) && $end ) ? $end : date( 'Y-m-d' );
3238
  $recStart = isset( $_REQUEST['event_start'] ) ? esc_attr( $_REQUEST['event_start'] ) : null;
3239
  $recPost = isset( $_REQUEST['post'] ) ? absint( $_REQUEST['post'] ) : null;
3240
+
3241
 
3242
  if ( !empty($_REQUEST['eventDate']) ) {
3243
  $duration = get_post_meta( $postId, '_EventDuration', true );
3247
 
3248
  $events_meta_box_template = $this->pluginPath . 'admin-views/events-meta-box.php';
3249
  $events_meta_box_template = apply_filters('tribe_events_meta_box_template', $events_meta_box_template);
3250
+
3251
  include( $events_meta_box_template );
3252
  }
3253
 
3276
  }
3277
  }
3278
  }
3279
+
3280
  ?>
3281
  <style type="text/css">
3282
  #EventInfo {border:none;}
3526
  }
3527
 
3528
  /**
3529
+ * Return the next tab index
3530
  *
3531
  * @return void
3532
  */
3533
  public function tabIndex() {
 
3534
  $this->tabIndexStart++;
3535
+ return $this->tabIndexStart - 1;
3536
  }
3537
 
3538
  /**
3561
  public function isEvent( $event ) {
3562
  if ( $event === null || ( ! is_numeric( $event ) && !is_object( $event ) ) ) {
3563
  global $post;
3564
+ if ( is_object( $post ) && isset( $post->ID ) )
3565
+ $event = $post->ID;
3566
  }
3567
  if ( is_numeric( $event ) ) {
3568
  if ( get_post_type($event) == self::POSTTYPE )
3602
  global $post;
3603
  $postId = $post->ID;
3604
  }
3605
+ if ( isset($postId) && get_post_field('post_type', $postId) == self::ORGANIZER_POST_TYPE ) {
3606
  return true;
3607
  }
3608
  return false;
3643
  AND ($wpdb->posts.ID != %d OR d1.meta_value != '%s')
3644
  ORDER BY TIMESTAMP(d1.meta_value) $order, ID $order
3645
  LIMIT 1", self::POSTTYPE, $date, $id, $date, $id, $date );
3646
+
3647
  $args = array(
3648
  'post_type' => self::POSTTYPE,
3649
  'post_status' => 'publish',
4033
  echo '<input type="hidden" name="eventDate" value="' . get_query_var( 'eventDate' ) . '" />';
4034
  }
4035
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4036
  /**
4037
  * Set up the list view in the view selector in the tribe events bar.
4038
  *
4136
  return $views;
4137
  }
4138
 
4139
+ /**
4140
+ * Make sure tribe_events_is_view_enabled( 'day' ) returns true
4141
+ * This filter should be removed when pro is active
4142
+ *
4143
+ * @return bool
4144
+ * @author Jessica Yazbek
4145
+ * @since 3.1
4146
+ **/
4147
+ public function enable_day_view( $enabled, $view ) {
4148
+
4149
+ if ( $view == 'day' ) {
4150
+ $enabled = true;
4151
+ }
4152
+ return $enabled;
4153
+ }
4154
+
4155
  /**
4156
  * Set the tribe_paged query var.
4157
  *
4161
  function set_tribe_paged( $query ) {
4162
  if ( !empty( $_REQUEST['tribe_paged'] ) ) {
4163
  add_filter( 'redirect_canonical', '__return_false' );
 
4164
  }
4165
 
4166
  return $query;
4199
  $args[TribeEvents::TAXONOMY] = $_POST['tribe_event_category'];
4200
  }
4201
 
 
 
 
 
4202
  $query = TribeEventsQuery::getEvents( $args, true );
4203
 
4204
  $hash = $query->query_vars;
4223
  'view' => 'list',
4224
  );
4225
 
 
 
4226
  global $wp_query, $post, $paged;
4227
  $wp_query = $query;
4228
  if ( !empty( $query->posts ) ) {
4295
 
4296
  }
4297
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4298
  /**
4299
  * The Calendar View AJAX Handler.
4300
  *
4302
  * @since 3.0
4303
  */
4304
  function calendar_ajax_call() {
4305
+
4306
  if ( isset( $_POST["eventDate"] ) && $_POST["eventDate"] ) {
4307
 
4308
  TribeEventsQuery::init();
 
4309
 
4310
  // set the global query var for eventDisplay
4311
+ $query_args = array(
4312
+ 'post_type' => self::POSTTYPE,
4313
+ 'eventDisplay' => 'month',
4314
+ 'eventDate' => $_POST['eventDate'],
4315
+ );
4316
 
4317
+ $this->displaying = 'month';
 
 
4318
 
4319
  if ( isset( $_POST['tribe_event_category'] ) ) {
4320
+ $query_args['tribe_events_cat'] = $_POST['tribe_event_category'];
4321
  }
4322
 
4323
  if ( class_exists( 'TribeEventsFilterView' ) ) {
4324
  TribeEventsFilterView::instance()->createFilters( null, true );
4325
  }
4326
 
4327
+ query_posts( $query_args );
 
 
4328
 
4329
  ob_start();
4330
 
4352
  * @since 3.0
4353
  */
4354
  public function checkSuiteIfJustUpdated() {
4355
+ $plugins = apply_filters( 'tribe_tec_addons', array( 'TribeEventsCalendar' => array( 'plugin_name' => 'The Events Calendar', 'required_version' => self::VERSION, 'current_version' => self::VERSION, 'plugin_dir_file' => basename( dirname( __FILE__ ) ) . '/the-events-calendar.php' ) ) );
4356
  $plugin_versions = get_option( 'tribe_events_suite_versions', array() );
4357
  $new_plugin_versions = $plugin_versions;
4358
 
lib/tickets/tribe-tickets-attendees.php CHANGED
@@ -111,7 +111,14 @@ class TribeEventsTicketsAttendeesTable extends WP_List_Table {
111
  * @return string
112
  */
113
  function column_order_id( $item ) {
114
- return sprintf( '<a class="row-title" href="%s">%s</a>', esc_url( get_edit_post_link( $item['order_id'], true ) ), esc_html( $item['order_id'] ) );
 
 
 
 
 
 
 
115
  }
116
 
117
  /**
111
  * @return string
112
  */
113
  function column_order_id( $item ) {
114
+
115
+ //back compat
116
+ if ( empty( $item['order_id_link'] ) )
117
+ $id = sprintf( '<a class="row-title" href="%s">%s</a>', esc_url( get_edit_post_link( $item['order_id'], true ) ), esc_html( $item['order_id'] ) );
118
+ else
119
+ $id = $item['order_id_link'];
120
+
121
+ return $id;
122
  }
123
 
124
  /**
lib/tickets/tribe-tickets.php CHANGED
@@ -233,7 +233,7 @@ if ( ! class_exists( 'TribeEventsTickets' ) ) {
233
  add_action( 'wp_ajax_tribe-ticket-uncheckin-' . $this->className, array( $this, 'ajax_handler_attendee_uncheckin' ) );
234
 
235
  // Front end
236
- add_action( 'tribe_events_single_event_after_the_meta', array( $this, 'front_end_tickets_form' ) );
237
 
238
  }
239
 
233
  add_action( 'wp_ajax_tribe-ticket-uncheckin-' . $this->className, array( $this, 'ajax_handler_attendee_uncheckin' ) );
234
 
235
  // Front end
236
+ add_action( 'tribe_events_single_event_after_the_meta', array( $this, 'front_end_tickets_form' ), 5 );
237
 
238
  }
239
 
lib/tribe-admin-events-list.class.php CHANGED
@@ -19,7 +19,7 @@ if (!class_exists('TribeEventsAdminList')) {
19
  * @return void
20
  */
21
  public static function init() {
22
- if ( is_admin() ) {
23
  add_filter( 'posts_distinct', array( __CLASS__, 'events_search_distinct'));
24
  add_filter( 'posts_join', array( __CLASS__, 'events_search_join' ) );
25
  add_filter( 'posts_where', array( __CLASS__, 'events_search_where' ) );
19
  * @return void
20
  */
21
  public static function init() {
22
+ if ( is_admin() && ! ( defined('DOING_AJAX') && DOING_AJAX ) ) {
23
  add_filter( 'posts_distinct', array( __CLASS__, 'events_search_distinct'));
24
  add_filter( 'posts_join', array( __CLASS__, 'events_search_join' ) );
25
  add_filter( 'posts_where', array( __CLASS__, 'events_search_where' ) );
lib/tribe-event-query.class.php CHANGED
@@ -34,8 +34,9 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
34
  public static function init() {
35
 
36
  // if tribe event query add filters
37
- add_filter( 'pre_get_posts', array( __CLASS__, 'pre_get_posts' ), 0 );
38
- add_filter( 'parse_query', array( __CLASS__, 'parse_query') );
 
39
 
40
  if ( is_admin() ) {
41
  require_once 'tribe-recurring-event-cleanup.php';
@@ -46,40 +47,64 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
46
  }
47
 
48
  /**
49
- * Set any query flags
50
  *
51
- * @return $query WP_Query
 
52
  * @author Jessica Yazbek
53
- * @since 3.0.3
54
  **/
55
- public function parse_query( $query ) {
56
- if ($query->get('eventDisplay') == 'month') {
57
- // never allow 404 on month view
58
- $query->is_post_type_archive = true;
 
 
 
 
 
59
  }
60
- return $query;
61
  }
62
 
63
  /**
64
- * Is hooked by init() filter to parse the WP_Query arguments for main and alt queries.
65
  *
66
- * @param object $query WP_Query object args supplied or default
67
- * @return object $query (modified)
68
- */
69
- public function pre_get_posts( $query ) {
 
70
 
71
- global $wp_the_query;
 
 
72
 
73
- $types = ( !empty( $query->query_vars['post_type'] ) ? (array) $query->query_vars['post_type'] : array() );
 
 
 
 
 
 
 
 
 
74
 
75
- // is the query pulling posts from the past
76
- $query->tribe_is_past = !empty( $query->query_vars['tribe_is_past'] ) ? $query->query_vars['tribe_is_past'] : false ;
77
 
78
  // check if any possiblity of this being an event query
79
  $query->tribe_is_event = ( in_array( TribeEvents::POSTTYPE, $types ) && count( $types ) < 2 )
80
  ? true // it was an event query
81
  : false;
82
 
 
 
 
 
 
 
 
 
83
  // check if any possiblity of this being an event category
84
  $query->tribe_is_event_category = ( isset( $query->query_vars[TribeEvents::TAXONOMY] ) && $query->query_vars[TribeEvents::TAXONOMY] != '' )
85
  ? true // it was an event category
@@ -100,6 +125,37 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
100
  ? true // this is an event query of some type
101
  : false; // move along, this is not the query you are looking for
102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  // setup static const to preserve query type through hooks
104
  self::$is_event = $query->tribe_is_event;
105
  self::$is_event_category = $query->tribe_is_event_category;
@@ -107,22 +163,39 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
107
  self::$is_event_organizer = $query->tribe_is_event_organizer;
108
  self::$is_event_query = $query->tribe_is_event_query;
109
 
110
- if ( $query === $wp_the_query && $query->is_main_query() && tribe_get_option( 'showEventsInMainLoop', false ) && !is_page() && !is_admin() && !is_single() && !is_singular() && ( ( is_home() && !$query->tribe_is_event_query ) || is_archive() || is_category() || is_tax() ) ) {
111
- $query->query_vars['post_type'] = isset( $query->query_vars['post_type'] ) ? (array) $query->query_vars['post_type'] : array( 'post' );
112
- $query->query_vars['post_type'][] = TribeEvents::POSTTYPE;
 
 
 
 
 
 
 
113
  }
114
 
115
  if ( $query->tribe_is_event || $query->tribe_is_event_category ) {
116
-
117
  self::$start_date = null;
118
  self::$end_date = null;
119
 
120
- add_filter( 'posts_join', array( __CLASS__, 'posts_join' ), 10, 2 );
121
- add_filter( 'posts_join', array( __CLASS__, 'posts_join_orderby' ), 10, 2 );
122
- add_filter( 'posts_where', array( __CLASS__, 'posts_where' ), 10, 2 );
123
- add_filter( 'posts_fields', array( __CLASS__, 'posts_fields' ), 10, 2 );
124
- add_filter( 'posts_distinct', array( __CLASS__, 'posts_distinct' ) );
125
- add_filter( 'posts_groupby', array( __CLASS__, 'posts_groupby' ), 10, 2 );
 
 
 
 
 
 
 
 
 
 
 
126
 
127
  // if a user selects a date in the event bar we want it to persist as long as possible
128
  if ( !empty( $_REQUEST['tribe-bar-date'] ) ) {
@@ -141,35 +214,10 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
141
  case 'custom':
142
  // if set this allows for a custom query to not be burdened with these settings
143
  break;
144
- case 'past': // setup past event display query
145
- $query->set( 'end_date', date_i18n( TribeDateUtils::DBDATETIMEFORMAT ) );
146
- $query->set( 'orderby', self::set_orderby() );
147
- $query->set( 'order', self::set_order( 'DESC' ) );
148
- self::$end_date = $query->get( 'end_date' );
149
- $query->tribe_is_past = true;
150
- break;
151
  case 'all':
152
  $query->set( 'orderby', self::set_orderby() );
153
  $query->set( 'order', self::set_order() );
154
  break;
155
- case 'month':
156
- $start_date = substr_replace( date_i18n( TribeDateUtils::DBDATEFORMAT ), '01', -2 );
157
- $passed_date = $query->get( 'eventDate' ) ? substr_replace( date_i18n( TribeDateUtils::DBDATEFORMAT, strtotime( $query->get( 'eventDate' ) ) ), '01', -2 ) : false;
158
- $start_date = $passed_date ? $passed_date : $start_date;
159
- $query->set( 'start_date', $start_date );
160
- $query->set( 'eventDate', $start_date );
161
- $query->set( 'end_date', date( 'Y-m-d', strtotime( TribeEvents::instance()->nextMonth( $start_date ) ) -( 24*3600 ) ) );
162
- if ( $query->is_main_query() ) {
163
- $query->set( 'posts_per_page', 1 ); // we're going to do this day-by-day later, so limit or order necessary for this
164
- $query->set( 'no_found_rows', TRUE );
165
- } else {
166
- $query->set( 'orderby', self::set_orderby() );
167
- $query->set( 'order', self::set_order() );
168
- $query->set( 'posts_per_page', -1 ); // get all events for the month
169
- }
170
- self::$start_date = $query->get( 'start_date' );
171
- self::$end_date = $query->get( 'end_date' );
172
- break;
173
  case 'single-event':
174
  if ( $query->get( 'eventDate' ) != '' ) {
175
  $query->set( 'start_date', $query->get( 'eventDate' ) );
@@ -178,15 +226,28 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
178
  }
179
  break;
180
  case 'upcoming':
 
181
  default: // default display query
182
- $start_date = date_i18n( TribeDateUtils::DBDATETIMEFORMAT );
183
- $start_date = ( $query->get( 'eventDate' ) != '' ) ? $query->get( 'eventDate' ) : $start_date;
184
- $query->set( 'hide_upcoming', true );
185
- $query->set( 'start_date', $start_date );
 
 
 
 
 
 
 
 
 
 
186
  $query->set( 'orderby', self::set_orderby() );
187
- $query->set( 'order', self::set_order() );
188
  self::$start_date = $query->get( 'start_date' );
 
189
  break;
 
190
  }
191
  } else {
192
  $query->set( 'hide_upcoming', true );
@@ -289,11 +350,8 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
289
  }
290
  }
291
 
292
- // check if is_event_query === true and hook filter
293
  if ( $query->tribe_is_event_query ) {
294
- // fixing is_home param
295
- $query->is_home = !empty( $query->query_vars['is_home'] ) ? $query->query_vars['is_home'] : false;
296
- apply_filters( 'tribe_events_pre_get_posts', $query );
297
  }
298
 
299
  return $query;
@@ -308,7 +366,7 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
308
  */
309
  public static function posts_groupby( $groupby_sql, $query ) {
310
  global $wpdb;
311
- if ( self::$is_event_query ) {
312
  return apply_filters( 'tribe_events_query_posts_groupby', '', $query );
313
  } else {
314
  return $groupby_sql;
@@ -345,6 +403,26 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
345
  }
346
  }
347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
  /**
349
  * Custom SQL join for event end date
350
  *
@@ -357,9 +435,12 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
357
  $joins = array();
358
 
359
  // if it's a true event query then we want create a join for where conditions
360
- if ( $query->tribe_is_event || $query->tribe_is_event_category ) {
361
- $joins['event_start_date'] = " AND {$wpdb->postmeta}.meta_key = '_EventStartDate'";
362
- $joins['event_end_date'] = " LEFT JOIN {$wpdb->postmeta} as tribe_event_end_date ON ( {$wpdb->posts}.ID = tribe_event_end_date.post_id AND tribe_event_end_date.meta_key = '_EventEndDate' ) ";
 
 
 
363
  $joins = apply_filters( 'tribe_events_query_posts_joins', $joins );
364
  return $join_sql . implode('', $joins);
365
  }
@@ -374,6 +455,7 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
374
  * @return string
375
  */
376
  public static function posts_join_orderby( $join_sql, $query ) {
 
377
  switch ($query->get( 'orderby' )) {
378
  case 'venue':
379
  $join_sql .= " LEFT JOIN {$wpdb->postmeta} tribe_order_by_venue_meta ON {$wpdb->posts}.ID = tribe_order_by_venue_meta.post_id AND tribe_order_by_venue_meta.meta_key='_EventVenueID' LEFT JOIN {$wpdb->posts} tribe_order_by_venue ON tribe_order_by_venue_meta.meta_value = tribe_order_by_venue.ID ";
@@ -486,6 +568,8 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
486
 
487
  $order_sql = "DATE({$wpdb->postmeta}.meta_value) {$order}, TIME({$wpdb->postmeta}.meta_value) {$order}";
488
 
 
 
489
  switch ( $orderby ) {
490
  case 'venue':
491
  $order_sql = "tribe_order_by_venue.post_title {$order}, " . $order_sql;
@@ -500,10 +584,13 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
500
  $order_sql = "{$wpdb->posts}.menu_order ASC, " . $order_sql;
501
  break;
502
  case 'event_date':
503
- default:
504
  // we've already setup $order_sql
505
  break;
506
  }
 
 
 
 
507
  }
508
 
509
  return $order_sql;
@@ -539,83 +626,140 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
539
  */
540
  public static function getEventCounts( $args = array() ) {
541
  global $wpdb;
 
542
  $date = date( 'Y-m-d' );
543
  $defaults = array(
544
  'post_type' => TribeEvents::POSTTYPE,
545
  'start_date' => tribe_event_beginning_of_day( $date ),
546
  'end_date' => tribe_event_end_of_day( $date ),
547
  'display_type' => 'daily',
548
- 'hide_upcoming_ids' => null
549
  );
550
  $args = wp_parse_args( $args, $defaults );
551
 
552
  $args['posts_per_page'] = -1;
553
  $args['fields'] = 'ids';
554
- $post_id_query = new WP_Query();
555
- $post_ids = $post_id_query->query( $args );
556
- if ( empty( $post_ids ) ) {
557
- return array();
 
 
 
 
 
 
 
558
  }
 
559
 
 
 
 
 
 
 
 
 
 
 
 
 
 
560
  $counts = array();
561
- switch ( $args['display_type'] ) {
562
- case 'daily':
563
- default :
564
- global $wp_query;
565
-
566
- $output_date_format = '%Y-%m-%d';
567
- $raw_counts = $wpdb->get_results( sprintf( "
568
- SELECT tribe_event_start.post_id as ID,
569
- DATE_FORMAT( tribe_event_start.meta_value, '%1\$s') as EventStartDate,
570
- IF (tribe_event_duration.meta_value IS NULL, DATE_FORMAT( tribe_event_end_date.meta_value, '%1\$s'), DATE_FORMAT(DATE_ADD(CAST(tribe_event_start.meta_value AS DATETIME), INTERVAL tribe_event_duration.meta_value SECOND), '%1\$s')) as EventEndDate
571
- FROM $wpdb->postmeta AS tribe_event_start
572
- LEFT JOIN $wpdb->postmeta as tribe_event_duration ON ( tribe_event_start.post_id = tribe_event_duration.post_id AND tribe_event_duration.meta_key = '_EventDuration' )
573
- LEFT JOIN $wpdb->postmeta as tribe_event_end_date ON ( tribe_event_start.post_id = tribe_event_end_date.post_id AND tribe_event_end_date.meta_key = '_EventEndDate' )
574
- WHERE tribe_event_start.meta_key = '_EventStartDate'
575
- AND tribe_event_start.post_id IN ( %5\$s )
576
- AND ( (tribe_event_start.meta_value >= '%3\$s' AND tribe_event_start.meta_value <= '%4\$s')
577
- OR (tribe_event_start.meta_value <= '%3\$s' AND DATE_ADD(CAST( tribe_event_start.meta_value AS DATETIME), INTERVAL tribe_event_duration.meta_value SECOND) >= '%3\$s')
578
- OR (tribe_event_start.meta_value <= '%3\$s' AND tribe_event_end_date.meta_value >= '%3\$s')
579
- OR ( tribe_event_start.meta_value >= '%3\$s' AND tribe_event_start.meta_value <= '%4\$s')
580
- )
581
- ORDER BY DATE(tribe_event_start.meta_value) ASC, TIME(tribe_event_start.meta_value) ASC;",
582
- $output_date_format,
583
- $output_date_format,
584
- $args['start_date'],
585
- $args['end_date'],
586
- implode( ',', array_map( 'intval', $post_ids ) )
587
- ) );
588
- // echo $wpdb->last_query;
589
- $start_date = new DateTime( $args['start_date'] );
590
- $end_date = new DateTime( $args['end_date'] );
591
- $days = self::dateDiff( $start_date->format( 'Y-m-d' ), $end_date->format( 'Y-m-d' ) );
592
- $term_id = isset( $wp_query->query_vars[TribeEvents::TAXONOMY] ) ? $wp_query->query_vars[TribeEvents::TAXONOMY] : null;
593
- if ( is_int( $term_id ) ) {
594
- $term = get_term_by( 'id', $term_id, TribeEvents::TAXONOMY );
595
- } elseif ( is_string( $term_id ) ) {
596
- $term = get_term_by( 'slug', $term_id, TribeEvents::TAXONOMY );
597
- }
598
- for ( $i = 0, $date = $start_date; $i <= $days; $i++, $date->modify( '+1 day' ) ) {
599
- $formatted_date = $date->format( 'Y-m-d' );
600
- $count = 0;
601
- foreach ( $raw_counts as $record ) {
602
- $record_start = $record->EventStartDate;
603
- $record_end = $record->EventEndDate;
604
- if ( $record_start <= $formatted_date && $record_end >= $formatted_date ) {
605
- if ( isset( $term->term_id ) ) {
606
- $record_terms = get_the_terms( $record->ID, TribeEvents::TAXONOMY );
607
- if ( !$record_terms || ( $record_terms && !in_array( $term, $record_terms ) ) ) {
608
- $count--;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
609
  }
610
  }
611
- $count++;
 
612
  }
613
- }
614
- $counts[ $formatted_date ] = $count;
615
  }
616
- break;
 
 
 
 
 
 
 
617
  }
618
- return $counts;
 
 
 
 
 
 
619
  }
620
 
621
  /**
@@ -647,30 +791,54 @@ if ( !class_exists( 'TribeEventsQuery' ) ) {
647
  'post_type' => TribeEvents::POSTTYPE,
648
  'orderby' => 'event_date',
649
  'order' => 'ASC',
650
- 'posts_per_page' => tribe_get_option( 'postsPerPage', 10 )
651
  );
652
  $args = wp_parse_args( $args, $defaults );
653
 
654
- //print_r($args);
 
 
655
 
656
- $wp_query = new WP_Query( $args );
 
657
 
658
- // print_r($wp_query->request);
 
 
 
 
 
 
 
 
659
 
660
- if ( ! empty( $wp_query->posts ) ) {
661
  if ( $full ) {
662
- return $wp_query;
663
  } else {
664
- $posts = $wp_query->posts;
665
  return $posts;
666
  }
667
  } else {
668
  if ( $full ) {
669
- return $wp_query;
670
  } else {
671
  return array();
672
  }
673
  }
674
  }
 
 
 
 
 
 
 
 
 
 
 
675
  }
 
 
676
  }
34
  public static function init() {
35
 
36
  // if tribe event query add filters
37
+ add_action( 'parse_request', array( __CLASS__, 'parse_request' ), 50 );
38
+ add_action( 'parse_query', array( __CLASS__, 'parse_query' ), 50 );
39
+ add_action( 'pre_get_posts', array( __CLASS__, 'pre_get_posts' ), 50 );
40
 
41
  if ( is_admin() ) {
42
  require_once 'tribe-recurring-event-cleanup.php';
47
  }
48
 
49
  /**
50
+ * Add args to the main wordpress request
51
  *
52
+ * @param $query_vars Array of args parsed from the main wp query
53
+ * @return array
54
  * @author Jessica Yazbek
 
55
  **/
56
+ public static function parse_request( $wpobj ) {
57
+ $request_vars = $wpobj->query_vars;
58
+ unset($request_vars['paged']);
59
+ if ( empty( $request_vars ) ) { // this is the home page
60
+ // check option for including events in the main wordpress loop, if true, add events post type
61
+ if ( tribe_get_option( 'showEventsInMainLoop', false ) ) {
62
+ $wpobj->query_vars['post_type'] = isset( $wpobj->query_vars['post_type'] ) ? (array) $wpobj->query_vars['post_type'] : array( 'post' );
63
+ $wpobj->query_vars['post_type'][] = TribeEvents::POSTTYPE;
64
+ }
65
  }
66
+ // do_action( 'log', 'wpobj', 'default', $wpobj );
67
  }
68
 
69
  /**
70
+ * Set any query flags
71
  *
72
+ * @return $query WP_Query
73
+ * @author Jessica Yazbek
74
+ * @since 3.0.3
75
+ **/
76
+ public static function parse_query( $query ) {
77
 
78
+ if ( $query->is_search && $query->get( 'post_type' ) == '' ) {
79
+ $query->set( 'post_type', 'any' );
80
+ }
81
 
82
+ // Add tribe events post type to tag queries
83
+ if ( $query->is_tag ) {
84
+ $types = $query->get( 'post_type' );
85
+ if ( is_array( $types ) ) {
86
+ $types[] = TribeEvents::POSTTYPE;
87
+ } else if ( $types != 'any' ) {
88
+ $types = array( 'post', TribeEvents::POSTTYPE );
89
+ }
90
+ $query->set( 'post_type', $types );
91
+ }
92
 
93
+ $types = ( ! empty( $query->query_vars['post_type'] ) ? (array) $query->query_vars['post_type'] : array() );
 
94
 
95
  // check if any possiblity of this being an event query
96
  $query->tribe_is_event = ( in_array( TribeEvents::POSTTYPE, $types ) && count( $types ) < 2 )
97
  ? true // it was an event query
98
  : false;
99
 
100
+ $query->tribe_is_multi_posttype = ( in_array( TribeEvents::POSTTYPE, $types ) && count( $types ) >= 2 || in_array( 'any', $types ) )
101
+ ? true // it's a query for multiple post types, events post type included
102
+ : false;
103
+
104
+ do_action( 'log', 'multi_posttype', 'default', var_export($query->tribe_is_multi_posttype, true) );
105
+ do_action( 'log', 'types', 'default', $types );
106
+ do_action( 'log', 'request', 'default', $query->query_vars );
107
+
108
  // check if any possiblity of this being an event category
109
  $query->tribe_is_event_category = ( isset( $query->query_vars[TribeEvents::TAXONOMY] ) && $query->query_vars[TribeEvents::TAXONOMY] != '' )
110
  ? true // it was an event category
125
  ? true // this is an event query of some type
126
  : false; // move along, this is not the query you are looking for
127
 
128
+ // is the query pulling posts from the past
129
+ $query->tribe_is_past = ( ! empty( $query->query_vars['eventDisplay'] ) && $query->query_vars['eventDisplay'] == 'past' )
130
+ ? true // query is requesting past posts
131
+ : false;
132
+ if ( ! empty( $_REQUEST['tribe_event_display'] ) && $_REQUEST['tribe_event_display'] == 'past' ) {
133
+ $query->tribe_is_past = true;
134
+ }
135
+
136
+ // never allow 404 on month view
137
+ if ( $query->is_main_query() && $query->get('eventDisplay') == 'month' && ! $query->is_tax && ! $query->tribe_is_event_category ) {
138
+ $query->is_post_type_archive = true;
139
+ $query->queried_object = get_post_type_object( TribeEvents::POSTTYPE );
140
+ $query->queried_object_id = 0;
141
+ }
142
+
143
+ // check if is_event_query === true and hook filter
144
+ if ( $query->tribe_is_event_query ) {
145
+ // fixing is_home param
146
+ $query->is_home = !empty( $query->query_vars['is_home'] ) ? $query->query_vars['is_home'] : false;
147
+ do_action( 'tribe_events_parse_query', $query );
148
+ }
149
+ }
150
+
151
+ /**
152
+ * Is hooked by init() filter to parse the WP_Query arguments for main and alt queries.
153
+ *
154
+ * @param object $query WP_Query object args supplied or default
155
+ * @return object $query (modified)
156
+ */
157
+ public function pre_get_posts( $query ) {
158
+
159
  // setup static const to preserve query type through hooks
160
  self::$is_event = $query->tribe_is_event;
161
  self::$is_event_category = $query->tribe_is_event_category;
163
  self::$is_event_organizer = $query->tribe_is_event_organizer;
164
  self::$is_event_query = $query->tribe_is_event_query;
165
 
166
+ if ( $query->tribe_is_multi_posttype ) {
167
+ do_action( 'log', 'multi_posttype', 'default', $query->tribe_is_multi_posttype );
168
+ add_filter( 'posts_fields', array( __CLASS__, 'multi_type_posts_fields' ), 10, 2 );
169
+ add_filter( 'posts_join', array( __CLASS__, 'posts_join' ), 10, 2 );
170
+ add_filter( 'posts_join', array( __CLASS__, 'posts_join_orderby' ), 10, 2 );
171
+ add_filter( 'posts_distinct', array( __CLASS__, 'posts_distinct' ) );
172
+ add_filter( 'posts_groupby', array( __CLASS__, 'posts_groupby' ), 10, 2 );
173
+ add_filter( 'posts_orderby', array( __CLASS__, 'posts_orderby' ), 10, 2 );
174
+ do_action( 'tribe_events_pre_get_posts', $query );
175
+ return;
176
  }
177
 
178
  if ( $query->tribe_is_event || $query->tribe_is_event_category ) {
 
179
  self::$start_date = null;
180
  self::$end_date = null;
181
 
182
+ if ( ! ( $query->is_main_query() && $query->get( 'eventDisplay' ) == 'month' ) ) {
183
+ add_filter( 'posts_fields', array( __CLASS__, 'posts_fields' ), 10, 2 );
184
+ add_filter( 'posts_join', array( __CLASS__, 'posts_join' ), 10, 2 );
185
+ add_filter( 'posts_join', array( __CLASS__, 'posts_join_orderby' ), 10, 2 );
186
+ add_filter( 'posts_where', array( __CLASS__, 'posts_where' ), 10, 2 );
187
+ add_filter( 'posts_distinct', array( __CLASS__, 'posts_distinct' ) );
188
+ add_filter( 'posts_groupby', array( __CLASS__, 'posts_groupby' ), 10, 2 );
189
+ } else {
190
+ // reduce number of queries triggered by main WP_Query on month view
191
+ $query->set( 'posts_per_page', 1 );
192
+ $query->set( 'no_found_rows', true );
193
+ $query->set( 'cache_results', false );
194
+ $query->set( 'update_post_meta_cache', false );
195
+ $query->set( 'update_post_term_cache', false );
196
+ do_action( 'tribe_events_pre_get_posts', $query );
197
+ return $query;
198
+ }
199
 
200
  // if a user selects a date in the event bar we want it to persist as long as possible
201
  if ( !empty( $_REQUEST['tribe-bar-date'] ) ) {
214
  case 'custom':
215
  // if set this allows for a custom query to not be burdened with these settings
216
  break;
 
 
 
 
 
 
 
217
  case 'all':
218
  $query->set( 'orderby', self::set_orderby() );
219
  $query->set( 'order', self::set_order() );
220
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  case 'single-event':
222
  if ( $query->get( 'eventDate' ) != '' ) {
223
  $query->set( 'start_date', $query->get( 'eventDate' ) );
226
  }
227
  break;
228
  case 'upcoming':
229
+ case 'past' :
230
  default: // default display query
231
+ $tribe_paged = ( ! empty( $_REQUEST['tribe_paged'] ) ) ? $_REQUEST['tribe_paged'] : $query->get('paged');
232
+ $query->set( 'paged', $tribe_paged );
233
+ $event_date = ( $query->get( 'eventDate' ) != '' )
234
+ ? $query->get( 'eventDate' )
235
+ : date_i18n( TribeDateUtils::DBDATETIMEFORMAT );
236
+ if ( ! $query->tribe_is_past ) {
237
+ $query->set( 'start_date', $event_date );
238
+ $query->set( 'end_date', '' );
239
+ $query->set( 'order', self::set_order() );
240
+ } else {
241
+ $query->set( 'start_date', '' );
242
+ $query->set( 'end_date', $event_date );
243
+ $query->set( 'order', self::set_order( 'DESC') );
244
+ }
245
  $query->set( 'orderby', self::set_orderby() );
246
+ $query->set( 'hide_upcoming', true );
247
  self::$start_date = $query->get( 'start_date' );
248
+ self::$end_date = $query->get( 'end_date' );
249
  break;
250
+ $query->set( 'eventDate', '' );
251
  }
252
  } else {
253
  $query->set( 'hide_upcoming', true );
350
  }
351
  }
352
 
 
353
  if ( $query->tribe_is_event_query ) {
354
+ do_action( 'tribe_events_pre_get_posts', $query );
 
 
355
  }
356
 
357
  return $query;
366
  */
367
  public static function posts_groupby( $groupby_sql, $query ) {
368
  global $wpdb;
369
+ if ( $query->tribe_is_event_query || $query->tribe_is_multi_posttype ) {
370
  return apply_filters( 'tribe_events_query_posts_groupby', '', $query );
371
  } else {
372
  return $groupby_sql;
403
  }
404
  }
405
 
406
+ /**
407
+ * Adds the proper fields to the FIELDS statement in the query.
408
+ *
409
+ * @param string $field_sql The current/original FIELDS statement.
410
+ * @param WP_Query $query The current query object.
411
+ *
412
+ * @return string The modified FIELDS statement.
413
+ */
414
+ public static function multi_type_posts_fields( $field_sql, $query ) {
415
+ if ( !empty($query->tribe_is_multi_posttype) ) {
416
+ global $wpdb;
417
+ $fields = array();
418
+ $fields[] = "IF ({$wpdb->posts}.post_type = 'tribe_events', {$wpdb->postmeta}.meta_value, {$wpdb->posts}.post_date) AS post_date";
419
+ $fields = apply_filters( 'tribe_events_query_posts_fields', $fields );
420
+ return $field_sql . ', '.implode(', ', $fields);
421
+ } else {
422
+ return $field_sql;
423
+ }
424
+ }
425
+
426
  /**
427
  * Custom SQL join for event end date
428
  *
435
  $joins = array();
436
 
437
  // if it's a true event query then we want create a join for where conditions
438
+ if ( $query->tribe_is_event || $query->tribe_is_event_category || $query->tribe_is_multi_posttype ) {
439
+ if ( $query->tribe_is_multi_posttype ) {
440
+ $joins['event_start_date'] = " LEFT JOIN {$wpdb->postmeta} on {$wpdb->posts}.ID = {$wpdb->postmeta}.post_id AND {$wpdb->postmeta}.meta_key = '_EventStartDate'";
441
+ } else {
442
+ $joins['event_end_date'] = " LEFT JOIN {$wpdb->postmeta} as tribe_event_end_date ON ( {$wpdb->posts}.ID = tribe_event_end_date.post_id AND tribe_event_end_date.meta_key = '_EventEndDate' ) ";
443
+ }
444
  $joins = apply_filters( 'tribe_events_query_posts_joins', $joins );
445
  return $join_sql . implode('', $joins);
446
  }
455
  * @return string
456
  */
457
  public static function posts_join_orderby( $join_sql, $query ) {
458
+ global $wpdb;
459
  switch ($query->get( 'orderby' )) {
460
  case 'venue':
461
  $join_sql .= " LEFT JOIN {$wpdb->postmeta} tribe_order_by_venue_meta ON {$wpdb->posts}.ID = tribe_order_by_venue_meta.post_id AND tribe_order_by_venue_meta.meta_key='_EventVenueID' LEFT JOIN {$wpdb->posts} tribe_order_by_venue ON tribe_order_by_venue_meta.meta_value = tribe_order_by_venue.ID ";
568
 
569
  $order_sql = "DATE({$wpdb->postmeta}.meta_value) {$order}, TIME({$wpdb->postmeta}.meta_value) {$order}";
570
 
571
+ do_action('log', 'orderby', 'default', $orderby);
572
+
573
  switch ( $orderby ) {
574
  case 'venue':
575
  $order_sql = "tribe_order_by_venue.post_title {$order}, " . $order_sql;
584
  $order_sql = "{$wpdb->posts}.menu_order ASC, " . $order_sql;
585
  break;
586
  case 'event_date':
 
587
  // we've already setup $order_sql
588
  break;
589
  }
590
+ } else if ( $query->tribe_is_multi_posttype ) {
591
+ if ( $query->get( 'orderby' ) == 'date' || $query->get('orderby') == '' ) {
592
+ $order_sql = str_replace( "$wpdb->posts.post_date", 'post_date', $order_sql );
593
+ }
594
  }
595
 
596
  return $order_sql;
626
  */
627
  public static function getEventCounts( $args = array() ) {
628
  global $wpdb;
629
+ do_action('log', 'getEventCounts() $args', 'tribe-events-query', $args);
630
  $date = date( 'Y-m-d' );
631
  $defaults = array(
632
  'post_type' => TribeEvents::POSTTYPE,
633
  'start_date' => tribe_event_beginning_of_day( $date ),
634
  'end_date' => tribe_event_end_of_day( $date ),
635
  'display_type' => 'daily',
636
+ 'hide_upcoming_ids' => null,
637
  );
638
  $args = wp_parse_args( $args, $defaults );
639
 
640
  $args['posts_per_page'] = -1;
641
  $args['fields'] = 'ids';
642
+
643
+ // remove empty args and sort by key, this increases chance of a cache hit
644
+ $args = array_filter($args, array(__CLASS__, 'filter_args'));
645
+ ksort($args);
646
+
647
+ $cache = new TribeEventsCache();
648
+ $cache_key = 'daily_counts_and_ids_'.serialize($args);
649
+ $found = $cache->get( $cache_key, 'save_post' );
650
+ if ( $found ) {
651
+ do_action( 'log', 'cache hit '.__LINE__, 'tribe-events-cache', $args );
652
+ return $found;
653
  }
654
+ do_action( 'log', 'no cache hit '.__LINE__, 'tribe-events-cache', $args );
655
 
656
+ $cache_key = 'month_post_ids_'.serialize( $args );
657
+ $found = $cache->get( $cache_key, 'save_post' );
658
+ if ( $found && is_array($found) ) {
659
+ do_action( 'log', 'cache hit '.__LINE__, 'tribe-events-cache', $args );
660
+ $post_ids = $found;
661
+ } else {
662
+ do_action( 'log', 'no cache hit '.__LINE__, 'tribe-events-cache', $args );
663
+ $post_id_query = new WP_Query();
664
+ $post_ids = $post_id_query->query( $args );
665
+ $cache->set( $cache_key, $post_ids, 0, 'save_post' );
666
+ }
667
+
668
+ do_action('log', 'Month view post ids found', 'tribe-events-query', $post_ids);
669
  $counts = array();
670
+ $event_ids = array();
671
+ if ( ! empty( $post_ids ) ) {
672
+ switch ( $args['display_type'] ) {
673
+ case 'daily':
674
+ default :
675
+ global $wp_query;
676
+
677
+ $output_date_format = '%Y-%m-%d %H:%i:%s';
678
+ $raw_counts = $wpdb->get_results( sprintf( "
679
+ SELECT tribe_event_start.post_id as ID,
680
+ tribe_event_start.meta_value as EventStartDate,
681
+ IF (tribe_event_duration.meta_value IS NULL, DATE_FORMAT( tribe_event_end_date.meta_value, '%1\$s'), DATE_FORMAT(DATE_ADD(CAST(tribe_event_start.meta_value AS DATETIME), INTERVAL tribe_event_duration.meta_value SECOND), '%1\$s')) as EventEndDate,
682
+ {$wpdb->posts}.menu_order as menu_order
683
+ FROM $wpdb->postmeta AS tribe_event_start
684
+ LEFT JOIN $wpdb->posts ON (tribe_event_start.post_id = {$wpdb->posts}.ID)
685
+ LEFT JOIN $wpdb->postmeta as tribe_event_duration ON ( tribe_event_start.post_id = tribe_event_duration.post_id AND tribe_event_duration.meta_key = '_EventDuration' )
686
+ LEFT JOIN $wpdb->postmeta as tribe_event_end_date ON ( tribe_event_start.post_id = tribe_event_end_date.post_id AND tribe_event_end_date.meta_key = '_EventEndDate' )
687
+ WHERE tribe_event_start.meta_key = '_EventStartDate'
688
+ AND tribe_event_start.post_id IN ( %5\$s )
689
+ AND ( (tribe_event_start.meta_value >= '%3\$s' AND tribe_event_start.meta_value <= '%4\$s')
690
+ OR (tribe_event_start.meta_value <= '%3\$s' AND DATE_ADD(CAST( tribe_event_start.meta_value AS DATETIME), INTERVAL tribe_event_duration.meta_value SECOND) >= '%3\$s')
691
+ OR (tribe_event_start.meta_value <= '%3\$s' AND tribe_event_end_date.meta_value >= '%3\$s')
692
+ OR ( tribe_event_start.meta_value >= '%3\$s' AND tribe_event_start.meta_value <= '%4\$s')
693
+ )
694
+ ORDER BY menu_order ASC, DATE(tribe_event_start.meta_value) ASC, TIME(tribe_event_start.meta_value) ASC;",
695
+ $output_date_format,
696
+ $output_date_format,
697
+ $args['start_date'],
698
+ $args['end_date'],
699
+ implode( ',', array_map( 'intval', $post_ids ) )
700
+ ) );
701
+ // echo $wpdb->last_query;
702
+ $start_date = new DateTime( $args['start_date'] );
703
+ $end_date = new DateTime( $args['end_date'] );
704
+ $days = self::dateDiff( $start_date->format( 'Y-m-d' ), $end_date->format( 'Y-m-d' ) );
705
+ $term_id = isset( $wp_query->query_vars[TribeEvents::TAXONOMY] ) ? $wp_query->query_vars[TribeEvents::TAXONOMY] : null;
706
+ if ( is_int( $term_id ) ) {
707
+ $term = get_term_by( 'id', $term_id, TribeEvents::TAXONOMY );
708
+ } elseif ( is_string( $term_id ) ) {
709
+ $term = get_term_by( 'slug', $term_id, TribeEvents::TAXONOMY );
710
+ }
711
+ for ( $i = 0, $date = $start_date; $i <= $days; $i++, $date->modify( '+1 day' ) ) {
712
+ $formatted_date = $date->format( 'Y-m-d' );
713
+ $start_of_day = strtotime( tribe_event_beginning_of_day( $formatted_date ) );
714
+ $end_of_day = strtotime( tribe_event_end_of_day( $formatted_date ) );
715
+ $count = 0;
716
+ $_day_event_ids = array();
717
+ foreach ( $raw_counts as $record ) {
718
+ $record_start = strtotime( $record->EventStartDate );
719
+ $record_end = strtotime( $record->EventEndDate );
720
+ // conditions:
721
+ // event starts on this day (event start time is between start and end of day)
722
+ // event ends on this day (event end time is between start and end of day)
723
+ // event starts before start of day and ends after end of day (spans across this day)
724
+ if (
725
+ ( $record_start >= $start_of_day && $record_start < $end_of_day )
726
+ || ( $record_end <= $end_of_day && $record_start >= $start_of_day )
727
+ || ( $record_start <= $start_of_day && $record_end >= $end_of_day )
728
+ ) {
729
+ if ( isset( $term->term_id ) ) {
730
+ $record_terms = get_the_terms( $record->ID, TribeEvents::TAXONOMY );
731
+ if ( !$record_terms || ( $record_terms && !in_array( $term, $record_terms ) ) ) {
732
+ $count--;
733
+ continue;
734
+ }
735
+ }
736
+ if ( count( $_day_event_ids ) < apply_filters( 'tribe_events_month_day_limit', tribe_get_option( 'monthEventAmount', '3' ) ) ) {
737
+ $_day_event_ids[] = $record->ID;
738
+ }
739
+ $count++;
740
  }
741
  }
742
+ $event_ids[ $formatted_date ] = $_day_event_ids;
743
+ $counts[ $formatted_date ] = $count;
744
  }
745
+ break;
 
746
  }
747
+
748
+ // get a unique list of the event IDs that will be displayed, and update all their postmeta and term caches at once
749
+ $final_event_ids = array();
750
+ $final_event_ids = call_user_func_array( 'array_merge', $event_ids );
751
+ $final_event_ids = array_unique( $final_event_ids );
752
+ do_action( 'log', 'updating term and postmeta caches for events', 'tribe-events-cache', $final_event_ids );
753
+ update_object_term_cache( $final_event_ids, TribeEvents::POSTTYPE );
754
+ update_postmeta_cache( $final_event_ids );
755
  }
756
+ // return IDs per day and total counts per day
757
+ $return = array( 'counts' => $counts, 'event_ids' => $event_ids );
758
+ $cache = new TribeEventsCache;
759
+ $cache_key = 'daily_counts_and_ids_'.serialize($args);
760
+ $cache->set( $cache_key, $return, 0, 'save_post' );
761
+ do_action( 'log', 'final event counts result', 'tribe-events-query', $return );
762
+ return $return;
763
  }
764
 
765
  /**
791
  'post_type' => TribeEvents::POSTTYPE,
792
  'orderby' => 'event_date',
793
  'order' => 'ASC',
794
+ 'posts_per_page' => tribe_get_option( 'postsPerPage', 10 ),
795
  );
796
  $args = wp_parse_args( $args, $defaults );
797
 
798
+ // remove empty args and sort by key, this increases chance of a cache hit
799
+ $args = array_filter($args, array(__CLASS__, 'filter_args'));
800
+ ksort($args);
801
 
802
+ $cache = new TribeEventsCache();
803
+ $cache_key = 'get_events_'.serialize($args);
804
 
805
+ $result = $cache->get($cache_key, 'save_post');
806
+ if ( $result && is_a($result, 'WP_Query') ) {
807
+ do_action( 'log', 'cache hit', 'tribe-events-cache', $args );
808
+ } else {
809
+ do_action( 'log', 'no cache hit', 'tribe-events-cache', $args );
810
+ // do_action( 'log', 'uncached query', 'tribe-events-query', $wpdb->last_query);
811
+ $result = new WP_Query( $args );
812
+ $cache->set($cache_key, $result, 0, 'save_post');
813
+ }
814
 
815
+ if ( ! empty( $result->posts ) ) {
816
  if ( $full ) {
817
+ return $result;
818
  } else {
819
+ $posts = $result->posts;
820
  return $posts;
821
  }
822
  } else {
823
  if ( $full ) {
824
+ return $result;
825
  } else {
826
  return array();
827
  }
828
  }
829
  }
830
+
831
+ /**
832
+ * Remove empty values from the query args
833
+ *
834
+ * @return bool
835
+ * @author Jessica Yazbek
836
+ **/
837
+ private static function filter_args($arg) {
838
+ if (empty($arg) && $arg !== false)
839
+ return false;
840
+ return true;
841
  }
842
+
843
+ }
844
  }
lib/tribe-event-query.class.php.orig ADDED
@@ -0,0 +1,840 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Controls the main event query. Allows for recurring events.
4
+ */
5
+
6
+ // Don't load directly
7
+ if ( !defined( 'ABSPATH' ) ) { die( '-1' ); }
8
+
9
+ if ( !class_exists( 'TribeEventsQuery' ) ) {
10
+ class TribeEventsQuery {
11
+
12
+ public static $start_date;
13
+ public static $end_date;
14
+ public static $is_event;
15
+ public static $is_event_category;
16
+ public static $is_event_venue;
17
+ public static $is_event_organizer;
18
+ public static $is_event_query;
19
+
20
+ /**
21
+ * Class Constructor
22
+ *
23
+ * @return void
24
+ */
25
+ function __construct() {
26
+ add_action( 'tribe_events_init_pre_get_posts', array( __CLASS__, 'init' ) );
27
+ }
28
+
29
+ /**
30
+ * Initialize The Events Calendar query filters and post processing.
31
+ *
32
+ * @return void
33
+ */
34
+ public static function init() {
35
+
36
+ // if tribe event query add filters
37
+ add_action( 'parse_request', array( __CLASS__, 'parse_request' ), 50 );
38
+ add_action( 'parse_query', array( __CLASS__, 'parse_query' ), 50 );
39
+ add_action( 'pre_get_posts', array( __CLASS__, 'pre_get_posts' ), 50 );
40
+
41
+ if ( is_admin() ) {
42
+ require_once 'tribe-recurring-event-cleanup.php';
43
+ $cleanup = new TribeRecurringEventCleanup();
44
+ $cleanup->toggle_recurring_events();
45
+ unset( $cleanup );
46
+ }
47
+ }
48
+
49
+ /**
50
+ * Add args to the main wordpress request
51
+ *
52
+ * @param $query_vars Array of args parsed from the main wp query
53
+ * @return array
54
+ * @author Jessica Yazbek
55
+ **/
56
+ public static function parse_request( $wpobj ) {
57
+ $request_vars = $wpobj->query_vars;
58
+ unset($request_vars['paged']);
59
+ if ( empty( $request_vars ) ) { // this is the home page
60
+ // check option for including events in the main wordpress loop, if true, add events post type
61
+ if ( tribe_get_option( 'showEventsInMainLoop', false ) ) {
62
+ $wpobj->query_vars['post_type'] = isset( $wpobj->query_vars['post_type'] ) ? (array) $wpobj->query_vars['post_type'] : array( 'post' );
63
+ $wpobj->query_vars['post_type'][] = TribeEvents::POSTTYPE;
64
+ }
65
+ }
66
+ // do_action( 'log', 'wpobj', 'default', $wpobj );
67
+ }
68
+
69
+ /**
70
+ * Set any query flags
71
+ *
72
+ * @return $query WP_Query
73
+ * @author Jessica Yazbek
74
+ * @since 3.0.3
75
+ **/
76
+ public static function parse_query( $query ) {
77
+
78
+ if ( $query->is_search && $query->get( 'post_type' ) == '' ) {
79
+ $query->set( 'post_type', 'any' );
80
+ }
81
+
82
+ $types = ( ! empty( $query->query_vars['post_type'] ) ? (array) $query->query_vars['post_type'] : array() );
83
+
84
+ // check if any possiblity of this being an event query
85
+ $query->tribe_is_event = ( in_array( TribeEvents::POSTTYPE, $types ) && count( $types ) < 2 )
86
+ ? true // it was an event query
87
+ : false;
88
+
89
+ $query->tribe_is_multi_posttype = ( in_array( TribeEvents::POSTTYPE, $types ) && count( $types ) >= 2 || in_array( 'any', $types ) )
90
+ ? true // it's a query for multiple post types, events post type included
91
+ : false;
92
+
93
+ do_action( 'log', 'multi_posttype', 'default', var_export($query->tribe_is_multi_posttype, true) );
94
+ do_action( 'log', 'types', 'default', $types );
95
+ do_action( 'log', 'request', 'default', $query->query_vars );
96
+
97
+ // check if any possiblity of this being an event category
98
+ $query->tribe_is_event_category = ( isset( $query->query_vars[TribeEvents::TAXONOMY] ) && $query->query_vars[TribeEvents::TAXONOMY] != '' )
99
+ ? true // it was an event category
100
+ : false;
101
+
102
+ $query->tribe_is_event_venue = ( in_array( TribeEvents::VENUE_POST_TYPE, $types ) )
103
+ ? true // it was an event venue
104
+ : false;
105
+
106
+ $query->tribe_is_event_organizer = ( in_array( TribeEvents::ORGANIZER_POST_TYPE, $types ) )
107
+ ? true // it was an event organizer
108
+ : false;
109
+
110
+ $query->tribe_is_event_query = ( $query->tribe_is_event
111
+ || $query->tribe_is_event_category
112
+ || $query->tribe_is_event_venue
113
+ || $query->tribe_is_event_organizer )
114
+ ? true // this is an event query of some type
115
+ : false; // move along, this is not the query you are looking for
116
+
117
+ // is the query pulling posts from the past
118
+ $query->tribe_is_past = ( ! empty( $query->query_vars['eventDisplay'] ) && $query->query_vars['eventDisplay'] == 'past' )
119
+ ? true // query is requesting past posts
120
+ : false;
121
+ if ( ! empty( $_REQUEST['tribe_event_display'] ) && $_REQUEST['tribe_event_display'] == 'past' ) {
122
+ $query->tribe_is_past = true;
123
+ }
124
+
125
+ // never allow 404 on month view
126
+ if ( $query->get('eventDisplay') == 'month' ) {
127
+ $query->is_post_type_archive = true;
128
+ }
129
+
130
+ // check if is_event_query === true and hook filter
131
+ if ( $query->tribe_is_event_query ) {
132
+ // fixing is_home param
133
+ $query->is_home = !empty( $query->query_vars['is_home'] ) ? $query->query_vars['is_home'] : false;
134
+ do_action( 'tribe_events_parse_query', $query );
135
+ }
136
+ }
137
+
138
+ /**
139
+ * Is hooked by init() filter to parse the WP_Query arguments for main and alt queries.
140
+ *
141
+ * @param object $query WP_Query object args supplied or default
142
+ * @return object $query (modified)
143
+ */
144
+ public function pre_get_posts( $query ) {
145
+
146
+ // setup static const to preserve query type through hooks
147
+ self::$is_event = $query->tribe_is_event;
148
+ self::$is_event_category = $query->tribe_is_event_category;
149
+ self::$is_event_venue = $query->tribe_is_event_venue;
150
+ self::$is_event_organizer = $query->tribe_is_event_organizer;
151
+ self::$is_event_query = $query->tribe_is_event_query;
152
+
153
+ if ( $query->tribe_is_multi_posttype ) {
154
+ do_action( 'log', 'multi_posttype', 'default', $query->tribe_is_multi_posttype );
155
+ add_filter( 'posts_join', array( __CLASS__, 'posts_join' ), 10, 2 );
156
+ add_filter( 'posts_join', array( __CLASS__, 'posts_join_orderby' ), 10, 2 );
157
+ add_filter( 'posts_fields', array( __CLASS__, 'multi_type_posts_fields' ), 10, 2 );
158
+ add_filter( 'posts_distinct', array( __CLASS__, 'posts_distinct' ) );
159
+ add_filter( 'posts_groupby', array( __CLASS__, 'posts_groupby' ), 10, 2 );
160
+ add_filter( 'posts_orderby', array( __CLASS__, 'posts_orderby' ), 10, 2 );
161
+ do_action( 'tribe_events_pre_get_posts', $query );
162
+ return;
163
+ }
164
+
165
+ if ( $query->tribe_is_event || $query->tribe_is_event_category ) {
166
+
167
+ self::$start_date = null;
168
+ self::$end_date = null;
169
+
170
+ if ( ! ( $query->is_main_query() && $query->get( 'eventDisplay' ) == 'month' ) ) {
171
+ add_filter( 'posts_join', array( __CLASS__, 'posts_join' ), 10, 2 );
172
+ add_filter( 'posts_join', array( __CLASS__, 'posts_join_orderby' ), 10, 2 );
173
+ add_filter( 'posts_where', array( __CLASS__, 'posts_where' ), 10, 2 );
174
+ add_filter( 'posts_fields', array( __CLASS__, 'posts_fields' ), 10, 2 );
175
+ add_filter( 'posts_distinct', array( __CLASS__, 'posts_distinct' ) );
176
+ add_filter( 'posts_groupby', array( __CLASS__, 'posts_groupby' ), 10, 2 );
177
+ } else {
178
+ // reduce number of queries triggered by main WP_Query on month view
179
+ $query->set( 'posts_per_page', 1 );
180
+ $query->set( 'no_found_rows', true );
181
+ $query->set( 'cache_results', false );
182
+ $query->set( 'update_post_meta_cache', false );
183
+ $query->set( 'update_post_term_cache', false );
184
+ apply_filters( 'tribe_events_pre_get_posts', $query );
185
+ return $query;
186
+ }
187
+
188
+ // if a user selects a date in the event bar we want it to persist as long as possible
189
+ if ( !empty( $_REQUEST['tribe-bar-date'] ) ) {
190
+ $query->set( 'eventDate', $_REQUEST['tribe-bar-date'] );
191
+ }
192
+
193
+ // if a user provides a search term we want to use that in the search params
194
+ if ( !empty( $_REQUEST['tribe-bar-search'] ) ) {
195
+ $query->query_vars['s'] = $_REQUEST['tribe-bar-search'];
196
+ }
197
+
198
+ $query->query_vars['eventDisplay'] = !empty( $query->query_vars['eventDisplay'] ) ? $query->query_vars['eventDisplay'] : TribeEvents::instance()->displaying;
199
+
200
+ if ( !empty( $query->query_vars['eventDisplay'] ) ) {
201
+ switch ( $query->query_vars['eventDisplay'] ) {
202
+ case 'custom':
203
+ // if set this allows for a custom query to not be burdened with these settings
204
+ break;
205
+ case 'all':
206
+ $query->set( 'orderby', self::set_orderby() );
207
+ $query->set( 'order', self::set_order() );
208
+ break;
209
+ <<<<<<< Updated upstream
210
+ =======
211
+ case 'month':
212
+ $start_date = substr_replace( date_i18n( TribeDateUtils::DBDATEFORMAT ), '01', -2 );
213
+ $passed_date = $query->get( 'eventDate' ) ? substr_replace( date_i18n( TribeDateUtils::DBDATEFORMAT, strtotime( $query->get( 'eventDate' ) ) ), '01', -2 ) : false;
214
+ $start_date = $passed_date ? $passed_date : $start_date;
215
+ $query->set( 'start_date', $start_date );
216
+ $query->set( 'eventDate', $start_date );
217
+ $query->set( 'end_date', date( 'Y-m-d', strtotime( TribeEvents::instance()->nextMonth( $start_date ) ) -( 24*3600 ) ) );
218
+ if ( $query->is_main_query() ) {
219
+ $query->set( 'posts_per_page', 1 ); // we're going to do this day-by-day later, so limit the size of the query to reduce mysql time
220
+ $query->set( 'no_found_rows', TRUE );
221
+ } else {
222
+ $query->set( 'orderby', self::set_orderby() );
223
+ $query->set( 'order', self::set_order() );
224
+ $query->set( 'posts_per_page', -1 ); // get all events for the month
225
+ }
226
+ self::$start_date = $query->get( 'start_date' );
227
+ self::$end_date = $query->get( 'end_date' );
228
+ break;
229
+ >>>>>>> Stashed changes
230
+ case 'single-event':
231
+ if ( $query->get( 'eventDate' ) != '' ) {
232
+ $query->set( 'start_date', $query->get( 'eventDate' ) );
233
+ $query->set( 'eventDate', $query->get( 'eventDate' ) );
234
+ self::$start_date = $query->get( 'start_date' );
235
+ }
236
+ break;
237
+ case 'upcoming':
238
+ case 'past' :
239
+ default: // default display query
240
+ $tribe_paged = ( ! empty( $_REQUEST['tribe_paged'] ) ) ? $_REQUEST['tribe_paged'] : $query->get('paged');
241
+ $query->set( 'paged', $tribe_paged );
242
+ $event_date = ( $query->get( 'eventDate' ) != '' )
243
+ ? $query->get( 'eventDate' )
244
+ : date_i18n( TribeDateUtils::DBDATETIMEFORMAT );
245
+ if ( ! $query->tribe_is_past ) {
246
+ $query->set( 'start_date', $event_date );
247
+ $query->set( 'end_date', '' );
248
+ $query->set( 'order', self::set_order() );
249
+ } else {
250
+ $query->set( 'start_date', '' );
251
+ $query->set( 'end_date', $event_date );
252
+ $query->set( 'order', self::set_order( 'DESC') );
253
+ }
254
+ $query->set( 'orderby', self::set_orderby() );
255
+ $query->set( 'hide_upcoming', true );
256
+ self::$start_date = $query->get( 'start_date' );
257
+ self::$end_date = $query->get( 'end_date' );
258
+ break;
259
+ $query->set( 'eventDate', '' );
260
+ }
261
+ } else {
262
+ $query->set( 'hide_upcoming', true );
263
+ $query->set( 'start_date', date_i18n( TribeDateUtils::DBDATETIMEFORMAT ) );
264
+ $query->set( 'orderby', self::set_orderby() );
265
+ $query->set( 'order', self::set_order() );
266
+ self::$start_date = $query->get( 'start_date' );
267
+ }
268
+ // eventCat becomes a standard taxonomy query - will need to deprecate and update views eventually
269
+ if ( ! in_array( $query->get( TribeEvents::TAXONOMY ), array( '', '-1' ) ) ) {
270
+ $tax_query[] = array(
271
+ 'taxonomy' => TribeEvents::TAXONOMY,
272
+ 'field' => is_numeric( $query->get( TribeEvents::TAXONOMY ) ) ? 'id' : 'slug',
273
+ 'terms' => $query->get( TribeEvents::TAXONOMY ),
274
+ 'include_children' => false,
275
+ );
276
+ }
277
+
278
+ $meta_query[] = array(
279
+ 'key' => '_EventStartDate',
280
+ 'type' => 'DATETIME'
281
+ );
282
+
283
+ }
284
+
285
+ // filter by Venue ID
286
+ if ( $query->tribe_is_event_query && $query->get( 'venue' ) != '' ) {
287
+ $meta_query[] = array(
288
+ 'key' => '_EventVenueID',
289
+ 'value' => $query->get( 'venue' )
290
+ );
291
+ }
292
+
293
+ // filter by Organizer ID
294
+ if ( $query->tribe_is_event_query && $query->get( 'organizer' ) != '' ) {
295
+ $meta_query[] = array(
296
+ 'key' => '_EventOrganizerID',
297
+ 'value' => $query->get( 'organizer' )
298
+ );
299
+ }
300
+
301
+ // proprietary metaKeys go to standard meta
302
+ if ( $query->tribe_is_event_query && $query->get( 'metaKey' ) != '' ) {
303
+ $meta_query[] = array(
304
+ 'key' => $query->get( 'metaKey' ),
305
+ 'value' => $query->get( 'metaValue' )
306
+ );
307
+ }
308
+
309
+ // enable pagination setup
310
+ if ( $query->tribe_is_event_query && $query->get( 'numResults' ) != '' ) {
311
+ $query->set( 'posts_per_page', $query->get( 'numResults' ) );
312
+ } elseif ( $query->tribe_is_event_query && $query->get( 'posts_per_page' ) == '' ) {
313
+ $query->set( 'posts_per_page', (int) tribe_get_option( 'postsPerPage', 10 ) );
314
+ }
315
+
316
+ // hide upcoming events from query (only not in admin)
317
+ if ( $query->tribe_is_event_query && $query->get( 'hide_upcoming' ) ) {
318
+ $hide_upcoming_ids = self::getHideFromUpcomingEvents();
319
+ if ( !empty( $hide_upcoming_ids ) )
320
+ $query->set( 'post__not_in', $hide_upcoming_ids );
321
+ }
322
+
323
+ if ( $query->tribe_is_event_query && !empty( $meta_query ) ) {
324
+ // setup default relation for meta queries
325
+ $meta_query['relation'] = 'AND';
326
+ $meta_query_combined = array_merge( (array) $meta_query, (array) $query->get( 'meta_query' ) );
327
+ $query->set( 'meta_query', $meta_query_combined );
328
+ }
329
+
330
+ if ( $query->tribe_is_event_query && !empty( $tax_query ) ) {
331
+ // setup default relation for tax queries
332
+ $tax_query_combined = array_merge( (array) $tax_query, (array) $query->get( 'tax_query' ) );
333
+ $query->set( 'tax_query', $tax_query_combined );
334
+ }
335
+
336
+ if ( $query->tribe_is_event_query ) {
337
+ add_filter( 'posts_orderby', array( __CLASS__, 'posts_orderby' ), 10, 2 );
338
+ }
339
+
340
+ // if is in the admin remove the event date & upcoming filters, unless is an ajax call
341
+ global $current_screen;
342
+ if ( is_admin() && $query->tribe_is_event_query && !empty( $current_screen->id ) && $current_screen->id == 'edit-' . TribeEvents::POSTTYPE ) {
343
+ if ( ( !defined( 'DOING_AJAX' ) ) || ( defined( 'DOING_AJAX' ) && !( DOING_AJAX ) ) ) {
344
+
345
+ // remove_filter( 'posts_join', array( __CLASS__, 'posts_join' ), 10, 2 );
346
+ remove_filter( 'posts_where', array( __CLASS__, 'posts_where' ), 10, 2 );
347
+ remove_filter( 'posts_fields', array( __CLASS__, 'posts_fields' ) );
348
+ remove_filter( 'posts_distinct', array( __CLASS__, 'posts_distinct' ) );
349
+ remove_filter( 'posts_groupby', array( __CLASS__, 'posts_groupby' ) );
350
+ $query->set( 'post__not_in', '' );
351
+
352
+ // set the default order for posts within admin lists
353
+ if ( !isset( $query->query['order'] ) ) {
354
+ $query->set( 'order', 'DESC' );
355
+ } else {
356
+ // making sure we preserve the order supplied by the query string even if it is overwritten above
357
+ $query->set( 'order', $query->query['order'] );
358
+ }
359
+ }
360
+ }
361
+
362
+ if ( $query->tribe_is_event_query ) {
363
+ do_action( 'tribe_events_pre_get_posts', $query );
364
+ }
365
+
366
+ return $query;
367
+ }
368
+
369
+ /**
370
+ * Modifies the GROUP BY statement for Tribe Events queries.
371
+ *
372
+ * @param string $groupby_sql The current GROUP BY statement.
373
+ * @param WP_Query $query The current query.
374
+ * @return string The modified GROUP BY content.
375
+ */
376
+ public static function posts_groupby( $groupby_sql, $query ) {
377
+ global $wpdb;
378
+ if ( self::$is_event_query ) {
379
+ return apply_filters( 'tribe_events_query_posts_groupby', '', $query );
380
+ } else {
381
+ return $groupby_sql;
382
+ }
383
+ }
384
+
385
+ /**
386
+ * Adds DISTINCT to the query.
387
+ *
388
+ * @param string $distinct The current DISTINCT statement.
389
+ * @return string The modified DISTINCT statement.
390
+ */
391
+ public static function posts_distinct( $distinct ) {
392
+ return "DISTINCT";
393
+ }
394
+
395
+ /**
396
+ * Adds the proper fields to the FIELDS statement in the query.
397
+ *
398
+ * @param string $fields The current/original FIELDS statement.
399
+ * @param WP_Query $query The current query object.
400
+ * @return string The modified FIELDS statement.
401
+ */
402
+ public static function posts_fields( $field_sql, $query ) {
403
+ if ( self::$is_event ) {
404
+ global $wpdb;
405
+ $fields = array();
406
+ $fields['event_start_date'] = "{$wpdb->postmeta}.meta_value as EventStartDate";
407
+ $fields['event_end_date'] ="tribe_event_end_date.meta_value as EventEndDate";
408
+ $fields = apply_filters( 'tribe_events_query_posts_fields', $fields );
409
+ return $field_sql . ', '.implode(', ', $fields);
410
+ } else {
411
+ return $field_sql;
412
+ }
413
+ }
414
+
415
+ /**
416
+ * Adds the proper fields to the FIELDS statement in the query.
417
+ *
418
+ * @param string $fields The current/original FIELDS statement.
419
+ * @param WP_Query $query The current query object.
420
+ * @return string The modified FIELDS statement.
421
+ */
422
+ public static function multi_type_posts_fields( $field_sql, $query ) {
423
+ global $wpdb;
424
+ $fields = array();
425
+ $fields[] = "IF ({$wpdb->posts}.post_type = 'tribe_events', {$wpdb->postmeta}.meta_value, {$wpdb->posts}.post_date) AS post_date";
426
+ $fields = apply_filters( 'tribe_events_query_posts_fields', $fields );
427
+ return $field_sql . ', '.implode(', ', $fields);
428
+ }
429
+
430
+ /**
431
+ * Custom SQL join for event end date
432
+ *
433
+ * @param string $join_sql
434
+ * @param wp_query $query
435
+ * @return string
436
+ */
437
+ public static function posts_join( $join_sql, $query ) {
438
+ global $wpdb;
439
+ $joins = array();
440
+
441
+ // if it's a true event query then we want create a join for where conditions
442
+ if ( $query->tribe_is_event || $query->tribe_is_event_category || $query->tribe_is_multi_posttype ) {
443
+ if ( $query->tribe_is_multi_posttype ) {
444
+ $joins['event_start_date'] = " LEFT JOIN {$wpdb->postmeta} on {$wpdb->posts}.ID = {$wpdb->postmeta}.post_id AND {$wpdb->postmeta}.meta_key = '_EventStartDate'";
445
+ } else {
446
+ $joins['event_start_date'] = " AND {$wpdb->postmeta}.meta_key = '_EventStartDate'";
447
+ $joins['event_end_date'] = " LEFT JOIN {$wpdb->postmeta} as tribe_event_end_date ON ( {$wpdb->posts}.ID = tribe_event_end_date.post_id AND tribe_event_end_date.meta_key = '_EventEndDate' ) ";
448
+ }
449
+ $joins = apply_filters( 'tribe_events_query_posts_joins', $joins );
450
+ return $join_sql . implode('', $joins);
451
+ }
452
+ return $join_sql;
453
+ }
454
+
455
+ /**
456
+ * Custom SQL join for orderby
457
+ *
458
+ * @param string $join_sql
459
+ * @param wp_query $query
460
+ * @return string
461
+ */
462
+ public static function posts_join_orderby( $join_sql, $query ) {
463
+ global $wpdb;
464
+ switch ($query->get( 'orderby' )) {
465
+ case 'venue':
466
+ $join_sql .= " LEFT JOIN {$wpdb->postmeta} tribe_order_by_venue_meta ON {$wpdb->posts}.ID = tribe_order_by_venue_meta.post_id AND tribe_order_by_venue_meta.meta_key='_EventVenueID' LEFT JOIN {$wpdb->posts} tribe_order_by_venue ON tribe_order_by_venue_meta.meta_value = tribe_order_by_venue.ID ";
467
+ break;
468
+ case 'organizer':
469
+ $join_sql .= " LEFT JOIN {$wpdb->postmeta} tribe_order_by_organizer_meta ON {$wpdb->posts}.ID = tribe_order_by_organizer_meta.post_id AND tribe_order_by_organizer_meta.meta_key='_EventOrganizerID' LEFT JOIN {$wpdb->posts} tribe_order_by_organizer ON tribe_order_by_organizer_meta.meta_value = tribe_order_by_organizer.ID ";
470
+ break;
471
+ default: break;
472
+ }
473
+
474
+ return apply_filters( 'tribe_events_query_posts_join_orderby', $join_sql);
475
+ }
476
+
477
+ /**
478
+ * Custom SQL conditional for event duration meta field
479
+ *
480
+ * @param string $where_sql
481
+ * @param wp_query $query
482
+ * @return string
483
+ */
484
+ public static function posts_where( $where_sql, $query ) {
485
+ global $wpdb;
486
+
487
+ // if it's a true event query then we to setup where conditions
488
+ if ( $query->tribe_is_event || $query->tribe_is_event_category ) {
489
+
490
+ $start_date = !empty( $query->start_date ) ? $query->start_date : $query->get( 'start_date' );
491
+ $end_date = !empty( $query->end_date ) ? $query->end_date : $query->get( 'end_date' );
492
+
493
+ // we can't store end date directly because it messes up the distinc clause
494
+ $event_end_date = apply_filters('tribe_events_query_end_date_column', 'tribe_event_end_date.meta_value');
495
+
496
+ // event start date
497
+ $event_start_date = "{$wpdb->postmeta}.meta_value";
498
+
499
+ // build where conditionals for events if date range params are set
500
+ if ( $start_date != '' && $end_date != '' ) {
501
+ $start_clause = $wpdb->prepare( "($event_start_date >= %s AND $event_start_date <= %s)", $start_date, $end_date );
502
+ $end_clause = $wpdb->prepare( "($event_end_date >= %s AND $event_start_date <= %s )", $start_date, $end_date );
503
+ $within_clause = $wpdb->prepare( "($event_start_date < %s AND $event_end_date >= %s )", $start_date, $end_date );
504
+ $where_sql .= " AND ($start_clause OR $end_clause OR $within_clause)";
505
+ } else if ( $start_date != '' ) {
506
+ $start_clause = $wpdb->prepare( "{$wpdb->postmeta}.meta_value >= %s", $start_date );
507
+ $within_clause = $wpdb->prepare( "({$wpdb->postmeta}.meta_value <= %s AND $event_end_date >= %s )", $start_date, $start_date );
508
+ $where_sql .= " AND ($start_clause OR $within_clause)";
509
+ if ( $query->is_singular() && $query->get( 'eventDate' ) ) {
510
+ $tomorrow = date( 'Y-m-d', strtotime( $query->get( 'eventDate' ).' +1 day' ) );
511
+ $tomorrow_clause = $wpdb->prepare( "{$wpdb->postmeta}.meta_value < %s", $tomorrow );
512
+ $where_sql .= " AND $tomorrow_clause";
513
+ }
514
+ } else if ( $end_date != '' ) {
515
+ $where_sql .= " AND " . $wpdb->prepare( "$event_end_date < %s", $end_date );
516
+ }
517
+ }
518
+
519
+ return $where_sql;
520
+ }
521
+
522
+ /**
523
+ * Internal method for properly setting a currated orderby value to $wp_query
524
+ * @param string $default
525
+ * @return string
526
+ */
527
+ function set_orderby( $default = 'event_date' ) {
528
+ $url_param = !empty( $_GET['orderby'] ) ? $_GET['orderby'] : null;
529
+ $url_param = !empty( $_GET['tribe-orderby'] ) ? $_GET['tribe-orderby'] : $url_param;
530
+ $url_param = strtolower( $url_param );
531
+ switch ( $url_param ) {
532
+ case 'tribe_sort_ecp_venue_filter':
533
+ $orderby = 'venue';
534
+ break;
535
+ case 'tribe_sort_ecp_organizer_filter':
536
+ $orderby = 'organizer';
537
+ break;
538
+ case 'title':
539
+ $orderby = $url_param;
540
+ break;
541
+ default:
542
+ $orderby = $default;
543
+ break;
544
+ }
545
+ return $orderby;
546
+ }
547
+
548
+ /**
549
+ * Internal method for properly setting a currated order value to $wp_query
550
+ * @param string $default
551
+ * @return string
552
+ */
553
+ function set_order( $default = 'ASC' ) {
554
+ $url_param = !empty( $_GET['order'] ) ? $_GET['order'] : null;
555
+ $url_param = !empty( $_GET['tribe-order'] ) ? $_GET['tribe-order'] : $url_param;
556
+ $url_param = strtoupper( $url_param );
557
+ $order = in_array( $url_param, array( 'ASC', 'DESC' ) ) ? $url_param : $default;
558
+ return $order;
559
+ }
560
+
561
+ /**
562
+ * Custom SQL order by statement for Event Start Date result order.
563
+ *
564
+ * @param string $order_sql
565
+ * @param wp_query $query
566
+ * @return string
567
+ */
568
+ public static function posts_orderby( $order_sql, $query ) {
569
+ global $wpdb;
570
+ if ( $query->tribe_is_event || $query->tribe_is_event_category ) {
571
+ $order = !empty( $query->order ) ? $query->order : $query->get( 'order' );
572
+ $orderby = !empty( $query->orderby ) ? $query->orderby : $query->get( 'orderby' );
573
+
574
+ $order_sql = "DATE({$wpdb->postmeta}.meta_value) {$order}, TIME({$wpdb->postmeta}.meta_value) {$order}";
575
+
576
+ do_action('log', 'orderby', 'default', $orderby);
577
+
578
+ switch ( $orderby ) {
579
+ case 'venue':
580
+ $order_sql = "tribe_order_by_venue.post_title {$order}, " . $order_sql;
581
+ break;
582
+ case 'organizer':
583
+ $order_sql = "tribe_order_by_organizer.post_title {$order}, " . $order_sql;
584
+ break;
585
+ case 'title':
586
+ $order_sql = "{$wpdb->posts}.post_title {$order}, " . $order_sql;
587
+ break;
588
+ case 'menu_order':
589
+ $order_sql = "{$wpdb->posts}.menu_order ASC, " . $order_sql;
590
+ break;
591
+ case 'event_date':
592
+ // we've already setup $order_sql
593
+ break;
594
+ }
595
+ } else if ( $query->tribe_is_multi_posttype ) {
596
+ if ( $query->get( 'orderby' ) == 'date' || $query->get('orderby') == '' ) {
597
+ $order_sql = str_replace( "$wpdb->posts.post_date", 'post_date', $order_sql );
598
+ }
599
+ }
600
+
601
+ return $order_sql;
602
+ }
603
+
604
+ /**
605
+ * Custom SQL to retrieve post_id list of events marked to be hidden from upcoming lists.
606
+ *
607
+ * @return array
608
+ */
609
+ public static function getHideFromUpcomingEvents() {
610
+ global $wpdb;
611
+
612
+ $cache = new TribeEventsCache();
613
+ $cache_key = 'tribe-hide-from-upcoming-events';
614
+ $found = $cache->get( $cache_key, 'save_post' );
615
+ if ( is_array( $found ) ) {
616
+ return $found;
617
+ }
618
+
619
+ // custom sql to get ids of posts that hide_upcoming_ids
620
+ $hide_upcoming_ids = $wpdb->get_col( "SELECT {$wpdb->postmeta}.post_id FROM {$wpdb->postmeta} WHERE {$wpdb->postmeta}.meta_key = '_EventHideFromUpcoming' AND {$wpdb->postmeta}.meta_value = 'yes'" );
621
+ $hide_upcoming_ids = apply_filters( 'tribe_events_hide_from_upcoming_ids', $hide_upcoming_ids );
622
+ $cache->set( $cache_key, $hide_upcoming_ids, 3600, 'save_post' );
623
+ return $hide_upcoming_ids;
624
+ }
625
+
626
+ /**
627
+ * Gets the event counts for individual days.
628
+ *
629
+ * @param array $args
630
+ * @return array The counts array.
631
+ */
632
+ public static function getEventCounts( $args = array() ) {
633
+ global $wpdb;
634
+ do_action('log', 'getEventCounts() $args', 'tribe-events-query', $args);
635
+ $date = date( 'Y-m-d' );
636
+ $defaults = array(
637
+ 'post_type' => TribeEvents::POSTTYPE,
638
+ 'start_date' => tribe_event_beginning_of_day( $date ),
639
+ 'end_date' => tribe_event_end_of_day( $date ),
640
+ 'display_type' => 'daily',
641
+ 'hide_upcoming_ids' => null,
642
+ );
643
+ $args = wp_parse_args( $args, $defaults );
644
+
645
+ $args['posts_per_page'] = -1;
646
+ $args['fields'] = 'ids';
647
+
648
+ // remove empty args and sort by key, this increases chance of a cache hit
649
+ $args = array_filter($args, array(__CLASS__, 'filter_args'));
650
+ ksort($args);
651
+
652
+ $cache = new TribeEventsCache();
653
+ $cache_key = 'daily_counts_and_ids_'.serialize($args);
654
+ $found = $cache->get( $cache_key, 'save_post' );
655
+ if ( $found ) {
656
+ do_action( 'log', 'cache hit '.__LINE__, 'tribe-events-cache', $args );
657
+ return $found;
658
+ }
659
+ do_action( 'log', 'no cache hit '.__LINE__, 'tribe-events-cache', $args );
660
+
661
+ $cache_key = 'month_post_ids_'.serialize( $args );
662
+ $found = $cache->get( $cache_key, 'save_post' );
663
+ if ( $found && is_array($found) ) {
664
+ do_action( 'log', 'cache hit '.__LINE__, 'tribe-events-cache', $args );
665
+ $post_ids = $found;
666
+ } else {
667
+ do_action( 'log', 'no cache hit '.__LINE__, 'tribe-events-cache', $args );
668
+ $post_id_query = new WP_Query();
669
+ $post_ids = $post_id_query->query( $args );
670
+ $cache->set( $cache_key, $post_ids, 0, 'save_post' );
671
+ }
672
+
673
+ do_action('log', 'Month view post ids found', 'tribe-events-query', $post_ids);
674
+ $counts = array();
675
+ $event_ids = array();
676
+ if ( ! empty( $post_ids ) ) {
677
+
678
+ switch ( $args['display_type'] ) {
679
+ case 'daily':
680
+ default :
681
+ global $wp_query;
682
+
683
+ $output_date_format = '%Y-%m-%d';
684
+ $raw_counts = $wpdb->get_results( sprintf( "
685
+ SELECT tribe_event_start.post_id as ID,
686
+ DATE_FORMAT( tribe_event_start.meta_value, '%1\$s') as EventStartDate,
687
+ IF (tribe_event_duration.meta_value IS NULL, DATE_FORMAT( tribe_event_end_date.meta_value, '%1\$s'), DATE_FORMAT(DATE_ADD(CAST(tribe_event_start.meta_value AS DATETIME), INTERVAL tribe_event_duration.meta_value SECOND), '%1\$s')) as EventEndDate,
688
+ {$wpdb->posts}.menu_order as menu_order
689
+ FROM $wpdb->postmeta AS tribe_event_start
690
+ LEFT JOIN $wpdb->posts ON (tribe_event_start.post_id = {$wpdb->posts}.ID)
691
+ LEFT JOIN $wpdb->postmeta as tribe_event_duration ON ( tribe_event_start.post_id = tribe_event_duration.post_id AND tribe_event_duration.meta_key = '_EventDuration' )
692
+ LEFT JOIN $wpdb->postmeta as tribe_event_end_date ON ( tribe_event_start.post_id = tribe_event_end_date.post_id AND tribe_event_end_date.meta_key = '_EventEndDate' )
693
+ WHERE tribe_event_start.meta_key = '_EventStartDate'
694
+ AND tribe_event_start.post_id IN ( %5\$s )
695
+ AND ( (tribe_event_start.meta_value >= '%3\$s' AND tribe_event_start.meta_value <= '%4\$s')
696
+ OR (tribe_event_start.meta_value <= '%3\$s' AND DATE_ADD(CAST( tribe_event_start.meta_value AS DATETIME), INTERVAL tribe_event_duration.meta_value SECOND) >= '%3\$s')
697
+ OR (tribe_event_start.meta_value <= '%3\$s' AND tribe_event_end_date.meta_value >= '%3\$s')
698
+ OR ( tribe_event_start.meta_value >= '%3\$s' AND tribe_event_start.meta_value <= '%4\$s')
699
+ )
700
+ ORDER BY menu_order ASC, DATE(tribe_event_start.meta_value) ASC, TIME(tribe_event_start.meta_value) ASC;",
701
+ $output_date_format,
702
+ $output_date_format,
703
+ $args['start_date'],
704
+ $args['end_date'],
705
+ implode( ',', array_map( 'intval', $post_ids ) )
706
+ ) );
707
+ // echo $wpdb->last_query;
708
+ $start_date = new DateTime( $args['start_date'] );
709
+ $end_date = new DateTime( $args['end_date'] );
710
+ $days = self::dateDiff( $start_date->format( 'Y-m-d' ), $end_date->format( 'Y-m-d' ) );
711
+ $term_id = isset( $wp_query->query_vars[TribeEvents::TAXONOMY] ) ? $wp_query->query_vars[TribeEvents::TAXONOMY] : null;
712
+ if ( is_int( $term_id ) ) {
713
+ $term = get_term_by( 'id', $term_id, TribeEvents::TAXONOMY );
714
+ } elseif ( is_string( $term_id ) ) {
715
+ $term = get_term_by( 'slug', $term_id, TribeEvents::TAXONOMY );
716
+ }
717
+ for ( $i = 0, $date = $start_date; $i <= $days; $i++, $date->modify( '+1 day' ) ) {
718
+ $formatted_date = $date->format( 'Y-m-d' );
719
+ $count = 0;
720
+ $_day_event_ids = array();
721
+ foreach ( $raw_counts as $record ) {
722
+ $record_start = $record->EventStartDate;
723
+ $record_end = $record->EventEndDate;
724
+ if ( $record_start <= $formatted_date && $record_end >= $formatted_date ) {
725
+ if ( isset( $term->term_id ) ) {
726
+ $record_terms = get_the_terms( $record->ID, TribeEvents::TAXONOMY );
727
+ if ( !$record_terms || ( $record_terms && !in_array( $term, $record_terms ) ) ) {
728
+ $count--;
729
+ continue;
730
+ }
731
+ }
732
+ if ( count( $_day_event_ids ) < apply_filters( 'tribe_events_month_day_limit', tribe_get_option( 'monthEventAmount', '3' ) ) ) {
733
+ $_day_event_ids[] = $record->ID;
734
+ }
735
+ $count++;
736
+ }
737
+ }
738
+ $event_ids[ $formatted_date ] = $_day_event_ids;
739
+ $counts[ $formatted_date ] = $count;
740
+ }
741
+ break;
742
+ }
743
+
744
+ // get a unique list of the event IDs that will be displayed, and update all their postmeta and term caches at once
745
+ $final_event_ids = array();
746
+ $final_event_ids = call_user_func_array( 'array_merge', $event_ids );
747
+ $final_event_ids = array_unique( $final_event_ids );
748
+ do_action( 'log', 'updating term and postmeta caches for events', 'tribe-events-cache', $final_event_ids );
749
+ update_object_term_cache( $final_event_ids, TribeEvents::POSTTYPE );
750
+ update_postmeta_cache( $final_event_ids );
751
+ }
752
+ // return IDs per day and total counts per day
753
+ $return = array( 'counts' => $counts, 'event_ids' => $event_ids );
754
+ $cache = new TribeEventsCache;
755
+ $cache_key = 'daily_counts_and_ids_'.serialize($args);
756
+ $cache->set( $cache_key, $return, 0, 'save_post' );
757
+ do_action( 'log', 'final event counts result', 'tribe-events-query', $return );
758
+ return $return;
759
+ }
760
+
761
+ /**
762
+ * The number of days between two arbitrary dates.
763
+ *
764
+ * @param string $date1 The first date.
765
+ * @param string $date2 The second date.
766
+ * @return int The number of days between two dates.
767
+ */
768
+ public static function dateDiff( $date1, $date2 ) {
769
+ $current = $date1;
770
+ $datetime2 = date_create( $date2 );
771
+ $count = 0;
772
+ while ( date_create( $current ) < $datetime2 ) {
773
+ $current = gmdate( "Y-m-d", strtotime( "+1 day", strtotime( $current ) ) );
774
+ $count++;
775
+ }
776
+ return $count;
777
+ }
778
+
779
+ /**
780
+ * Customized WP_Query wrapper to setup event queries with default arguments.
781
+ *
782
+ * @param array $args
783
+ * @return array|WP_Query
784
+ */
785
+ public static function getEvents( $args = array(), $full = false ) {
786
+ $defaults = array(
787
+ 'post_type' => TribeEvents::POSTTYPE,
788
+ 'orderby' => 'event_date',
789
+ 'order' => 'ASC',
790
+ 'posts_per_page' => tribe_get_option( 'postsPerPage', 10 ),
791
+ );
792
+ $args = wp_parse_args( $args, $defaults );
793
+
794
+ // remove empty args and sort by key, this increases chance of a cache hit
795
+ $args = array_filter($args, array(__CLASS__, 'filter_args'));
796
+ ksort($args);
797
+
798
+ $cache = new TribeEventsCache();
799
+ $cache_key = 'get_events_'.serialize($args);
800
+
801
+ $result = $cache->get($cache_key, 'save_post');
802
+ if ( $result && is_a($result, 'WP_Query') ) {
803
+ do_action( 'log', 'cache hit', 'tribe-events-cache', $args );
804
+ } else {
805
+ do_action( 'log', 'no cache hit', 'tribe-events-cache', $args );
806
+ // do_action( 'log', 'uncached query', 'tribe-events-query', $wpdb->last_query);
807
+ $result = new WP_Query( $args );
808
+ $cache->set($cache_key, $result, 0, 'save_post');
809
+ }
810
+
811
+ if ( ! empty( $result->posts ) ) {
812
+ if ( $full ) {
813
+ return $result;
814
+ } else {
815
+ $posts = $result->posts;
816
+ return $posts;
817
+ }
818
+ } else {
819
+ if ( $full ) {
820
+ return $result;
821
+ } else {
822
+ return array();
823
+ }
824
+ }
825
+ }
826
+
827
+ /**
828
+ * Remove empty values from the query args
829
+ *
830
+ * @return bool
831
+ * @author Jessica Yazbek
832
+ **/
833
+ private static function filter_args($arg) {
834
+ if (empty($arg) && $arg !== false)
835
+ return false;
836
+ return true;
837
+ }
838
+
839
+ }
840
+ }
lib/tribe-events-update.class.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Update class, contains functions to run on update
5
+ */
6
+ class TribeEventsUpdate
7
+ {
8
+
9
+ var $slug = 'TribeEventsCalendar';
10
+
11
+ function __construct() {
12
+ add_action( 'tribe_events_suite_upgrade', array( $this, 'update_dispatch' ), 10, 5 );
13
+ }
14
+
15
+ /**
16
+ * Dispatch the update functions
17
+ *
18
+ * @return bool
19
+ * @author Jessica Yazbek
20
+ * @since 3.0.3
21
+ **/
22
+ public function update_dispatch( $updated, $slug, $plugin_name, $new_version, $old_version ) {
23
+ if ( $slug == $this->slug ) {
24
+
25
+ $from_version_func = 'update_from_'.str_replace('.', '_', $old_version);
26
+ $to_version_func = 'update_to_'.str_replace('.', '_', $new_version);
27
+
28
+ if ( method_exists( $this, $from_version_func) ) {
29
+ $updated = call_user_func( array( $this, $from_version_func ), $new_version );
30
+ }
31
+
32
+ if ( method_exists( $this, $to_version_func ) ) {
33
+ $updated = call_user_func( array( $this, $to_version_func ), $old_version );
34
+ }
35
+ }
36
+ return $updated;
37
+ }
38
+
39
+ /**
40
+ * Update to version 3.0.4
41
+ *
42
+ * @return bool
43
+ * @author Jessica Yazbek
44
+ * @since 3.0.4
45
+ **/
46
+ function update_to_3_1 ( $old_version ) {
47
+ // flush rewrite rules needed when updating to 3.1
48
+ flush_rewrite_rules();
49
+ return true;
50
+ }
51
+ }
52
+ new TribeEventsUpdate();
lib/tribe-field.class.php CHANGED
@@ -26,6 +26,12 @@ if ( !class_exists('TribeField') ) {
26
  */
27
  public $name;
28
 
 
 
 
 
 
 
29
  /**
30
  * the field's arguments
31
  * @var array
@@ -61,6 +67,7 @@ if ( !class_exists('TribeField') ) {
61
  $this->defaults = array(
62
  'type' => 'html',
63
  'name' => $id,
 
64
  'class' => null,
65
  'label' => null,
66
  'tooltip' => null,
@@ -92,7 +99,7 @@ if ( !class_exists('TribeField') ) {
92
  'license_key',
93
  );
94
 
95
- apply_filters( 'tribe_valid_field_types', $this->valid_field_types );
96
 
97
  // parse args with defaults and extract them
98
  $args = wp_parse_args($field, $this->defaults);
@@ -295,6 +302,23 @@ if ( !class_exists('TribeField') ) {
295
  return apply_filters( 'tribe_field_name', $return, $this->name, $this );
296
  }
297
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
298
  /**
299
  * generate a heading field
300
  *
@@ -469,6 +493,7 @@ if ( !class_exists('TribeField') ) {
469
  $field .= '<input type="checkbox"';
470
  $field .= $this->doFieldName();
471
  $field .= ' value="1" '.checked( $this->value, true, false );
 
472
  $field .= '/>';
473
  $field .= $this->doScreenReaderLabel();
474
  $field .= $this->doFieldDivEnd();
26
  */
27
  public $name;
28
 
29
+ /**
30
+ * the field's attributes
31
+ * @var array
32
+ */
33
+ public $attributes;
34
+
35
  /**
36
  * the field's arguments
37
  * @var array
67
  $this->defaults = array(
68
  'type' => 'html',
69
  'name' => $id,
70
+ 'attributes' => array(),
71
  'class' => null,
72
  'label' => null,
73
  'tooltip' => null,
99
  'license_key',
100
  );
101
 
102
+ $this->valid_field_types = apply_filters( 'tribe_valid_field_types', $this->valid_field_types );
103
 
104
  // parse args with defaults and extract them
105
  $args = wp_parse_args($field, $this->defaults);
302
  return apply_filters( 'tribe_field_name', $return, $this->name, $this );
303
  }
304
 
305
+ /**
306
+ * Return a string of attributes for the field
307
+ *
308
+ * @return string
309
+ * @author Jessica Yazbek
310
+ * @since 3.0.4
311
+ **/
312
+ public function doFieldAttributes() {
313
+ $return = '';
314
+ if ( ! empty( $this->attributes ) ) {
315
+ foreach ( $this->attributes as $key => $value ) {
316
+ $return .= ' '.$key.'="'.$value.'"';
317
+ }
318
+ }
319
+ return apply_filters( 'tribe_field_attributes', $return, $this->name, $this );
320
+ }
321
+
322
  /**
323
  * generate a heading field
324
  *
493
  $field .= '<input type="checkbox"';
494
  $field .= $this->doFieldName();
495
  $field .= ' value="1" '.checked( $this->value, true, false );
496
+ $field .= $this->doFieldAttributes();
497
  $field .= '/>';
498
  $field .= $this->doScreenReaderLabel();
499
  $field .= $this->doFieldDivEnd();
lib/tribe-template-factory.class.php CHANGED
@@ -43,6 +43,14 @@ if( !class_exists('Tribe_Template_Factory') ) {
43
  **/
44
  protected $body_class = '';
45
 
 
 
 
 
 
 
 
 
46
  /**
47
  * Static variable that holds array of vendor script handles, for adding to later deps.
48
  *
@@ -77,6 +85,13 @@ if( !class_exists('Tribe_Template_Factory') ) {
77
  // set notices
78
  add_action( 'tribe_events_before_view', array( $this, 'set_notices') );
79
 
 
 
 
 
 
 
 
80
  // set up meta used in this view
81
  add_action( 'tribe_events_before_view', array( $this, 'setup_meta') );
82
 
@@ -333,6 +348,9 @@ if( !class_exists('Tribe_Template_Factory') ) {
333
  // set notices
334
  remove_action( 'tribe_events_before_view', array( $this, 'set_notices') );
335
 
 
 
 
336
  // set up meta used in this view
337
  remove_action( 'tribe_events_before_view', array( $this, 'setup_meta') );
338
 
@@ -418,6 +436,25 @@ if( !class_exists('Tribe_Template_Factory') ) {
418
  return $this->excerpt_more;
419
  }
420
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421
  /**
422
  * Asset calls for vendor packages
423
  *
@@ -508,15 +545,16 @@ if( !class_exists('Tribe_Template_Factory') ) {
508
  wp_enqueue_script( $prefix . '-ecp-plugins', $path, $deps, apply_filters( 'tribe_events_js_version', TribeEvents::VERSION ) );
509
  break;
510
  case 'tribe-events-bar' :
511
- $deps = array_merge( $deps, array( 'jquery', $prefix . '-calendar-script', $prefix . '-bootstrap-datepicker', $prefix . '-jquery-resize', 'tribe-placeholder' ) );
512
  $path = self::getMinFile( $resources_url . 'tribe-events-bar.js', true );
513
  wp_enqueue_script( $prefix . '-bar', $path, $deps, apply_filters( 'tribe_events_js_version', TribeEvents::VERSION ) );
514
  break;
515
  case 'jquery-placeholder' : // Vendor: jQuery Placeholder
516
  $deps = array_merge( $deps, array( 'jquery' ) );
517
  $path = self::getMinFile( $vendor_url . 'jquery-placeholder/jquery.placeholder.js', true );
518
- wp_enqueue_script( 'tribe-placeholder', $path, $deps, '2.0.7', false );
519
- self::$vendor_scripts[] = 'tribe-placeholder';
 
520
  break;
521
  case 'ajax-calendar':
522
  $deps = array_merge( $deps, array( 'jquery', $prefix . '-calendar-script' ) );
@@ -601,5 +639,22 @@ if( !class_exists('Tribe_Template_Factory') ) {
601
  return false;
602
  }
603
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
604
  }
605
  }
43
  **/
44
  protected $body_class = '';
45
 
46
+ /**
47
+ * Static variable that holds array of vendor script handles, for adding to later deps.
48
+ *
49
+ * @static
50
+ * @var array
51
+ */
52
+ protected $comments_off = false;
53
+
54
  /**
55
  * Static variable that holds array of vendor script handles, for adding to later deps.
56
  *
85
  // set notices
86
  add_action( 'tribe_events_before_view', array( $this, 'set_notices') );
87
 
88
+ // Don't show the comments form inside the view (if comments are enabled,
89
+ // they'll show on their own after the loop)
90
+ add_filter('comments_template', array( $this, 'remove_comments_template' ) );
91
+
92
+ // Remove the comments template entirely if needed
93
+ add_filter('tribe_get_option', array( $this, 'comments_off' ), 10, 2 );
94
+
95
  // set up meta used in this view
96
  add_action( 'tribe_events_before_view', array( $this, 'setup_meta') );
97
 
348
  // set notices
349
  remove_action( 'tribe_events_before_view', array( $this, 'set_notices') );
350
 
351
+ // Remove the comments template
352
+ remove_filter('comments_template', array( $this, 'remove_comments_template' ) );
353
+
354
  // set up meta used in this view
355
  remove_action( 'tribe_events_before_view', array( $this, 'setup_meta') );
356
 
436
  return $this->excerpt_more;
437
  }
438
 
439
+ /**
440
+ * Check if comments are disabled on this view
441
+ *
442
+ * @param int $more
443
+ *
444
+ * @return int
445
+ * @since 3.0
446
+ */
447
+ public function comments_off( $option_value, $option_name ) {
448
+ if ( $option_name != 'showComments')
449
+ return $option_value;
450
+
451
+ if ( $this->comments_off == true )
452
+ return false;
453
+
454
+ return $option_value;
455
+
456
+ }
457
+
458
  /**
459
  * Asset calls for vendor packages
460
  *
545
  wp_enqueue_script( $prefix . '-ecp-plugins', $path, $deps, apply_filters( 'tribe_events_js_version', TribeEvents::VERSION ) );
546
  break;
547
  case 'tribe-events-bar' :
548
+ $deps = array_merge( $deps, array( 'jquery', $prefix . '-calendar-script', $prefix . '-bootstrap-datepicker', $prefix . '-jquery-resize', self::get_placeholder_handle() ) );
549
  $path = self::getMinFile( $resources_url . 'tribe-events-bar.js', true );
550
  wp_enqueue_script( $prefix . '-bar', $path, $deps, apply_filters( 'tribe_events_js_version', TribeEvents::VERSION ) );
551
  break;
552
  case 'jquery-placeholder' : // Vendor: jQuery Placeholder
553
  $deps = array_merge( $deps, array( 'jquery' ) );
554
  $path = self::getMinFile( $vendor_url . 'jquery-placeholder/jquery.placeholder.js', true );
555
+ $placeholder_handle = self::get_placeholder_handle();
556
+ wp_enqueue_script( $placeholder_handle, $path, $deps, '2.0.7', false );
557
+ self::$vendor_scripts[] = $placeholder_handle;
558
  break;
559
  case 'ajax-calendar':
560
  $deps = array_merge( $deps, array( 'jquery', $prefix . '-calendar-script' ) );
639
  return false;
640
  }
641
  }
642
+
643
+ /*
644
+ * Playing ping-pong with WooCommerce. They keep changing their script.
645
+ * See https://github.com/woothemes/woocommerce/issues/3623
646
+ */
647
+ protected static function get_placeholder_handle() {
648
+ $placeholder_handle = 'jquery-placeholder';
649
+ global $woocommerce;
650
+ if (
651
+ class_exists( 'Woocommerce' ) &&
652
+ version_compare( $woocommerce->version, '2.0.11', '>=' ) &&
653
+ version_compare( $woocommerce->version, '2.0.13', '<=' )
654
+ ) {
655
+ $placeholder_handle = 'tribe-placeholder';
656
+ }
657
+ return $placeholder_handle;
658
+ }
659
  }
660
  }
lib/tribe-templates.class.php CHANGED
@@ -39,6 +39,10 @@ if (!class_exists('TribeEventsTemplates')) {
39
  // make sure we enter the loop by always having some posts in $wp_query
40
  add_action( 'template_redirect', array( __CLASS__, 'maybeSpoofQuery' ) );
41
 
 
 
 
 
42
  // there's no template redirect on ajax, so we include the template class right before the view is included
43
  if (defined('DOING_AJAX') && DOING_AJAX) {
44
  add_action( 'tribe_pre_get_view', 'tribe_initialize_view' );
@@ -454,16 +458,22 @@ if (!class_exists('TribeEventsTemplates')) {
454
  $template_base_paths[] = $plugin_path;
455
  }
456
 
 
 
 
457
  // ensure that addon plugins look in the right override folder in theme
458
  $namespace = !empty($namespace) && $namespace[0] != '/' ? '/' . trailingslashit($namespace) : trailingslashit($namespace);
459
 
460
- // setup subfolder options
461
- $subfolder = !empty($subfolder) ? trailingslashit($subfolder) : $subfolder;
 
 
 
462
 
463
  $file = '';
464
  foreach ( $template_base_paths as $template_base_path ) {
465
 
466
- if ( $theme_file = locate_template( array('tribe-events' . $namespace . $subfolder . $template ), false, false) ) {
467
  $file = $theme_file;
468
  } else {
469
  // protect from concat folder with filename
@@ -481,7 +491,7 @@ if (!class_exists('TribeEventsTemplates')) {
481
  $file = apply_filters( 'tribe_events_template', $file, $template);
482
 
483
  // return the first one found
484
- if (file_exists($file))
485
  break;
486
  }
487
 
@@ -537,7 +547,7 @@ if (!class_exists('TribeEventsTemplates')) {
537
  */
538
  private static function spoofed_post() {
539
  $spoofed_post = array(
540
- 'ID' => -9999,
541
  'post_status' => 'draft',
542
  'post_author' => 0,
543
  'post_parent' => 0,
39
  // make sure we enter the loop by always having some posts in $wp_query
40
  add_action( 'template_redirect', array( __CLASS__, 'maybeSpoofQuery' ) );
41
 
42
+ // don't query the database for the spoofed post
43
+ wp_cache_set(self::spoofed_post()->ID, self::spoofed_post(), 'posts');
44
+ wp_cache_set(self::spoofed_post()->ID, array(true), 'post_meta');
45
+
46
  // there's no template redirect on ajax, so we include the template class right before the view is included
47
  if (defined('DOING_AJAX') && DOING_AJAX) {
48
  add_action( 'tribe_pre_get_view', 'tribe_initialize_view' );
458
  $template_base_paths[] = $plugin_path;
459
  }
460
 
461
+ // setup subfolder options
462
+ $subfolder = !empty($subfolder) ? trailingslashit($subfolder) : $subfolder;
463
+
464
  // ensure that addon plugins look in the right override folder in theme
465
  $namespace = !empty($namespace) && $namespace[0] != '/' ? '/' . trailingslashit($namespace) : trailingslashit($namespace);
466
 
467
+ // Support multiple namespaces for multiple add-ons
468
+ $namespaces = apply_filters( 'tribe_events_template_path_namespaces', array( $namespace ) );
469
+ foreach ( $namespaces as $n => $namespace ) {
470
+ $namespaces[$n] = 'tribe-events' . trailingslashit( $namespace ) . $subfolder . $template;
471
+ }
472
 
473
  $file = '';
474
  foreach ( $template_base_paths as $template_base_path ) {
475
 
476
+ if ( $theme_file = locate_template( $namespaces, false, false) ) {
477
  $file = $theme_file;
478
  } else {
479
  // protect from concat folder with filename
491
  $file = apply_filters( 'tribe_events_template', $file, $template);
492
 
493
  // return the first one found
494
+ if ( file_exists( $file ) )
495
  break;
496
  }
497
 
547
  */
548
  private static function spoofed_post() {
549
  $spoofed_post = array(
550
+ 'ID' => 0,
551
  'post_status' => 'draft',
552
  'post_author' => 0,
553
  'post_parent' => 0,
public/advanced-functions/meta.php CHANGED
@@ -244,7 +244,7 @@ if ( class_exists( 'Tribe_Meta_Factory' ) ) {
244
  tribe_register_meta_group( 'tribe_event_details', array(
245
  'label' => __('Details', 'tribe-events-calendar' ),
246
  'classes' => array(
247
- 'before'=>array('tribe-events-meta-group'),
248
  'label_before'=>array('tribe-events-single-section-title'))
249
  ) );
250
 
@@ -331,7 +331,7 @@ if ( class_exists( 'Tribe_Meta_Factory' ) ) {
331
  tribe_register_meta_group( 'tribe_event_venue', array(
332
  'label' => __('Venue', 'tribe-events-calendar' ),
333
  'classes' => array(
334
- 'before'=>array('tribe-events-meta-group','vcard'),
335
  'label_before'=>array('tribe-events-single-section-title'))
336
  ) );
337
 
@@ -393,7 +393,7 @@ if ( class_exists( 'Tribe_Meta_Factory' ) ) {
393
  tribe_register_meta_group( 'tribe_event_organizer', array(
394
  'label' => __('Organizer', 'tribe-events-calendar' ),
395
  'classes' => array(
396
- 'before'=>array('tribe-events-meta-group','vcard'),
397
  'label_before'=>array('tribe-events-single-section-title'))
398
  ) );
399
 
244
  tribe_register_meta_group( 'tribe_event_details', array(
245
  'label' => __('Details', 'tribe-events-calendar' ),
246
  'classes' => array(
247
+ 'before'=>array('tribe-events-meta-group tribe-events-meta-group-details'),
248
  'label_before'=>array('tribe-events-single-section-title'))
249
  ) );
250
 
331
  tribe_register_meta_group( 'tribe_event_venue', array(
332
  'label' => __('Venue', 'tribe-events-calendar' ),
333
  'classes' => array(
334
+ 'before'=>array('tribe-events-meta-group tribe-events-meta-group-venue','vcard'),
335
  'label_before'=>array('tribe-events-single-section-title'))
336
  ) );
337
 
393
  tribe_register_meta_group( 'tribe_event_organizer', array(
394
  'label' => __('Organizer', 'tribe-events-calendar' ),
395
  'classes' => array(
396
+ 'before'=>array('tribe-events-meta-group tribe-events-meta-group-organizer','vcard'),
397
  'label_before'=>array('tribe-events-single-section-title'))
398
  ) );
399
 
public/template-tags/date.php CHANGED
@@ -68,7 +68,7 @@ if( class_exists( 'TribeEvents' ) ) {
68
  if( tribe_event_is_all_day( $event ) )
69
  $displayTime = false;
70
 
71
- if( empty($event->EventEndDate) )
72
  $event->EventEndDate = tribe_get_event_meta( $event->ID, '_EventEndDate', true );
73
 
74
  if( isset($event->EventEndDate) ){
68
  if( tribe_event_is_all_day( $event ) )
69
  $displayTime = false;
70
 
71
+ if( empty($event->EventEndDate) && is_object( $event ) )
72
  $event->EventEndDate = tribe_get_event_meta( $event->ID, '_EventEndDate', true );
73
 
74
  if( isset($event->EventEndDate) ){
public/template-tags/general.php CHANGED
@@ -378,6 +378,20 @@ if ( class_exists( 'TribeEvents' ) ) {
378
  return apply_filters( 'tribe_is_venue', $tribe_ecp->isVenue( $postId ), $postId );
379
  }
380
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
381
  /**
382
  * HTML Before Event (Display)
383
  *
@@ -790,7 +804,7 @@ if ( class_exists( 'TribeEvents' ) ) {
790
  $schedule .= '<span class="date-end dtend">';
791
  $schedule .= tribe_get_end_date( $event, false, $format2ndday ) . ' @ ' . tribe_get_end_date( $event, false, $timeFormat );
792
  $schedule .= '<span class="value-title" title="'. $microformatEndFormat .'"></span>';
793
- $schedule .= '</span>';
794
  }
795
 
796
 
@@ -798,7 +812,7 @@ if ( class_exists( 'TribeEvents' ) ) {
798
  $schedule .= '<span class="date-start dtstart">';
799
  $schedule .= tribe_get_start_date( $event, true, $format );
800
  $schedule .= '<span class="value-title" title="'. $microformatStartFormat .'"></span>';
801
- $schedule .= '</span>';
802
  } else { // single day event
803
  if ( tribe_get_start_date( $event, false, 'g:i A' ) === tribe_get_end_date( $event, false, 'g:i A' ) ) { // Same start/end time
804
  $schedule .= '<span class="date-start dtstart">';
@@ -817,7 +831,7 @@ if ( class_exists( 'TribeEvents' ) ) {
817
  }
818
 
819
  return apply_filters( 'tribe_events_event_schedule_details', $schedule );
820
- }
821
 
822
  /**
823
  * Accepts two dates and returns the number of days between them
@@ -1031,4 +1045,43 @@ if ( class_exists( 'TribeEvents' ) ) {
1031
  return $tribe_count_hierarchical_increment;
1032
  }
1033
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1034
  }
378
  return apply_filters( 'tribe_is_venue', $tribe_ecp->isVenue( $postId ), $postId );
379
  }
380
 
381
+ /**
382
+ * Organizer Type Test
383
+ *
384
+ * Checks type of $postId to determine if it is a Organizer
385
+ *
386
+ * @param int $postId (optional)
387
+ * @return bool True if post type id Venue
388
+ * @since 2.0
389
+ */
390
+ function tribe_is_organizer( $postId = null ) {
391
+ $tribe_ecp = TribeEvents::instance();
392
+ return apply_filters( 'tribe_is_organizer', $tribe_ecp->isOrganizer( $postId ), $postId );
393
+ }
394
+
395
  /**
396
  * HTML Before Event (Display)
397
  *
804
  $schedule .= '<span class="date-end dtend">';
805
  $schedule .= tribe_get_end_date( $event, false, $format2ndday ) . ' @ ' . tribe_get_end_date( $event, false, $timeFormat );
806
  $schedule .= '<span class="value-title" title="'. $microformatEndFormat .'"></span>';
807
+ $schedule .= '</span>';
808
  }
809
 
810
 
812
  $schedule .= '<span class="date-start dtstart">';
813
  $schedule .= tribe_get_start_date( $event, true, $format );
814
  $schedule .= '<span class="value-title" title="'. $microformatStartFormat .'"></span>';
815
+ $schedule .= '</span>';
816
  } else { // single day event
817
  if ( tribe_get_start_date( $event, false, 'g:i A' ) === tribe_get_end_date( $event, false, 'g:i A' ) ) { // Same start/end time
818
  $schedule .= '<span class="date-start dtstart">';
831
  }
832
 
833
  return apply_filters( 'tribe_events_event_schedule_details', $schedule );
834
+ }
835
 
836
  /**
837
  * Accepts two dates and returns the number of days between them
1045
  return $tribe_count_hierarchical_increment;
1046
  }
1047
 
1048
+ /**
1049
+ * Get and increment tab index in form fields
1050
+ *
1051
+ * @since 3.0.2
1052
+ */
1053
+ function tribe_events_get_tab_index() {
1054
+ $tribe_events = TribeEvents::instance();
1055
+ return apply_filters( 'tribe_events_tab_index', $tribe_events->tabIndex() );
1056
+ }
1057
+
1058
+ /**
1059
+ * Echo and increment tab index in form fields
1060
+ *
1061
+ * @since 3.0.2
1062
+ */
1063
+ function tribe_events_tab_index() {
1064
+ echo tribe_events_get_tab_index();
1065
+ }
1066
+
1067
+ /**
1068
+ * Check if a particular view is enabled
1069
+ *
1070
+ * @param string $view Name of view to check, should match what's in TribeEvents->displaying when on that view
1071
+ * @return bool
1072
+ * @author Jessica Yazbek
1073
+ * @since 3.1
1074
+ **/
1075
+ function tribe_events_is_view_enabled( $view ) {
1076
+ $enabled = false;
1077
+ $enabled_views = apply_filters( 'tribe-events-bar-views', array() );
1078
+ foreach ( $enabled_views as $enabled_view ) {
1079
+ if ( $enabled_view['displaying'] == $view ) {
1080
+ $enabled = true;
1081
+ break;
1082
+ }
1083
+ }
1084
+ return apply_filters( 'tribe_events_is_view_enabled', $enabled, $view, $enabled_views );
1085
+ }
1086
+
1087
  }
public/template-tags/link.php CHANGED
@@ -172,16 +172,9 @@ if( class_exists( 'TribeEvents' ) ) {
172
  * @return string $html
173
  */
174
  function tribe_get_event_website_link( $event = null, $label = null ){
175
- $post_id = is_object($event) && isset($event->tribe_is_event) && $event->tribe_is_event ? $event->ID : $event;
176
- $post_id = !empty($post_id) ? $post_id : get_the_ID();
177
- $url = tribe_get_event_meta( $post_id, '_EventURL', true );
178
  if( !empty($url) ) {
179
  $label = is_null($label) ? $url : $label;
180
- if( !empty( $url )) {
181
- $parseUrl = parse_url($url);
182
- if (empty($parseUrl['scheme']))
183
- $url = "http://$url";
184
- }
185
  $html = sprintf('<a href="%s" target="%s">%s</a>',
186
  $url,
187
  apply_filters('tribe_get_event_website_link_target', 'self'),
@@ -193,5 +186,25 @@ if( class_exists( 'TribeEvents' ) ) {
193
  return apply_filters('tribe_get_event_website_link', $html );
194
  }
195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  }
197
  ?>
172
  * @return string $html
173
  */
174
  function tribe_get_event_website_link( $event = null, $label = null ){
175
+ $url = tribe_get_event_website_url($event);
 
 
176
  if( !empty($url) ) {
177
  $label = is_null($label) ? $url : $label;
 
 
 
 
 
178
  $html = sprintf('<a href="%s" target="%s">%s</a>',
179
  $url,
180
  apply_filters('tribe_get_event_website_link_target', 'self'),
186
  return apply_filters('tribe_get_event_website_link', $html );
187
  }
188
 
189
+
190
+ /**
191
+ * Event Website URL
192
+ *
193
+ * @param null|object|int $event
194
+ * @return string The event's website URL
195
+ */
196
+ function tribe_get_event_website_url( $event = null ) {
197
+ $post_id = ( is_object($event) && isset($event->tribe_is_event) && $event->tribe_is_event ) ? $event->ID : $event;
198
+ $post_id = ( !empty($post_id) || empty($GLOBALS['post']) ) ? $post_id : get_the_ID();
199
+ $url = tribe_get_event_meta( $post_id, '_EventURL', true );
200
+ if ( !empty($url) ) {
201
+ $parseUrl = parse_url($url);
202
+ if (empty($parseUrl['scheme'])) {
203
+ $url = "http://$url";
204
+ }
205
+ }
206
+ return apply_filters( 'tribe_get_event_website_url', $url, $post_id );
207
+ }
208
+
209
  }
210
  ?>
public/template-tags/loop.php CHANGED
@@ -167,14 +167,13 @@ if( class_exists( 'TribeEvents' ) ) {
167
 
168
 
169
  if( tribe_is_month() ){
170
- $title = sprintf( '%s%s',
171
- __( 'Events for ', 'tribe-events-calendar' ),
172
- date_i18n( 'F Y', strtotime(tribe_get_month_view_date()) )
173
- );
174
  }
175
 
176
  if ( is_tax( $tribe_ecp->get_event_taxonomy() ) ) {
177
- $cat = get_term_by( 'slug', get_query_var('term'), $tribe_ecp->get_event_taxonomy() );
178
  if ( $depth ) {
179
  $title = '<a href="'.tribe_get_events_link().'">'.$title.'</a>';
180
  $title .= ' &#8250; ' . $cat->name;
167
 
168
 
169
  if( tribe_is_month() ){
170
+ $title = sprintf( __( 'Events for %s', 'tribe-events-calendar' ),
171
+ date_i18n( 'F Y', strtotime( tribe_get_month_view_date() ) )
172
+ );
 
173
  }
174
 
175
  if ( is_tax( $tribe_ecp->get_event_taxonomy() ) ) {
176
+ $cat = get_queried_object();
177
  if ( $depth ) {
178
  $title = '<a href="'.tribe_get_events_link().'">'.$title.'</a>';
179
  $title .= ' &#8250; ' . $cat->name;
public/template-tags/meta.php CHANGED
@@ -387,7 +387,7 @@ if ( class_exists('TribeEvents') ) {
387
  $html .= tribe_get_meta_group( 'tribe_event_venue' );
388
  $group_venue = false;
389
  } else if ( ! $group_venue && ! tribe_has_organizer( $event_id ) && tribe_address_exists( $event_id ) && tribe_embed_google_map( $event_id ) ) {
390
- $html .= sprintf( '%s<div class="tribe-events-meta-group">%s</div>',
391
  tribe_get_meta_group( 'tribe_event_venue' ),
392
  tribe_get_meta( 'tribe_venue_map' )
393
  );
387
  $html .= tribe_get_meta_group( 'tribe_event_venue' );
388
  $group_venue = false;
389
  } else if ( ! $group_venue && ! tribe_has_organizer( $event_id ) && tribe_address_exists( $event_id ) && tribe_embed_google_map( $event_id ) ) {
390
+ $html .= sprintf( '%s<div class="tribe-events-meta-group tribe-events-meta-group-gmap">%s</div>',
391
  tribe_get_meta_group( 'tribe_event_venue' ),
392
  tribe_get_meta( 'tribe_venue_map' )
393
  );
public/template-tags/organizer.php CHANGED
@@ -84,9 +84,9 @@ if( class_exists( 'TribeEvents' ) ) {
84
  }
85
 
86
  /**
87
- * Organizer Website Link
88
  *
89
- * Returns the event Organizer Name with a link to their supplied website url
90
  *
91
  * @param int $postId Can supply either event id or organizer id, if none specified, current post is used
92
  * @param bool $full_link If true displays full html links around organizers name, if false returns just the link without displaying it
@@ -129,8 +129,26 @@ if( class_exists( 'TribeEvents' ) ) {
129
  }
130
 
131
  /**
132
- * Return html for the link to an organizer's website
133
  *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134
  *
135
  * @param $post_id post ID for an event
136
  * @param $label text for the link
@@ -151,7 +169,7 @@ if( class_exists( 'TribeEvents' ) ) {
151
  $url,
152
  apply_filters('tribe_get_organizer_website_link_target', 'self'),
153
  apply_filters('tribe_get_organizer_website_link_label', $label)
154
- );
155
  } else {
156
  $html = '';
157
  }
84
  }
85
 
86
  /**
87
+ * Organizer Page Link
88
  *
89
+ * Returns the event Organizer Name with a link to their single organizer page
90
  *
91
  * @param int $postId Can supply either event id or organizer id, if none specified, current post is used
92
  * @param bool $full_link If true displays full html links around organizers name, if false returns just the link without displaying it
129
  }
130
 
131
  /**
132
+ * Organizer website url
133
  *
134
+ * Returns the event Organizer Name with a url to their supplied website
135
+ *
136
+ * @param $postId post ID for an event
137
+ * @return string
138
+ * @author Modern Tribe
139
+ **/
140
+ if ( !function_exists( 'tribe_get_organizer_website_url' ) ) { // wrapped in if function exists to maintain compatibility with community events 3.0.x. wrapper not needed after 3.1.x.
141
+ function tribe_get_organizer_website_url( $postId = null ){
142
+ $postId = TribeEvents::postIdHelper( $postId );
143
+ $output = esc_url(tribe_get_event_meta( tribe_get_organizer_id( $postId ), '_OrganizerWebsite', true ));
144
+ return apply_filters( 'tribe_get_organizer_website_url', $output );
145
+ }
146
+ }
147
+
148
+ /**
149
+ * Organizer website link
150
+ *
151
+ * Returns the event Organizer Name with a link to their supplied website
152
  *
153
  * @param $post_id post ID for an event
154
  * @param $label text for the link
169
  $url,
170
  apply_filters('tribe_get_organizer_website_link_target', 'self'),
171
  apply_filters('tribe_get_organizer_website_link_label', $label)
172
+ );
173
  } else {
174
  $html = '';
175
  }
readme.txt CHANGED
@@ -4,8 +4,8 @@ Contributors: ModernTribe, PaulHughes01, roblagatta, jonahcoyote, MZAWeb, codea
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.5
7
- Tested up to: 3.6
8
- Stable tag: 3.0.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -98,6 +98,7 @@ If you're unclear about the installation process or get stuck, check out our <a
98
 
99
  * PHP 5.2 or above
100
  * WordPress 3.3 or above
 
101
 
102
  == Screenshots ==
103
 
@@ -213,25 +214,28 @@ The plugin is produced by <a href="http://m.tri.be/2s">Modern Tribe Inc</a>.
213
 
214
  * Arabic from Mamdouh Samy
215
  * Bosnian from Marko Manojlovic
216
- * Brazilian Portuguese from Luiza Libardi and Diego Meneghetti
217
  * Catalan from Barbara Partegos Rof
218
  * Croatian from Marko Manojlovic
219
  * Czech from Martin Kristan and Petr Bastan
220
  * Danish from Anonymous
221
- * Dutch from Nico (wsMaurik)
222
- * French from Dominique Monhardt
223
- * German from Thomas Butzek
224
- * Greek from Panos Efstratiou
 
 
225
  * Italian from Roberto Scano
226
- * Norwegian from Kjell Vestnes
227
  * Polish from Marek Kosina
228
  * Portuguese from Antonio Pratas
229
  * Romanian from Mihai Burcea
230
  * Serbian from Marko Manojlovic
231
  * Spanish from Hector Gil Rizo
232
  * Swedish from Ben Andersen
 
233
 
234
- * 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, and Alexey Fedorov
235
 
236
  == Add-Ons ==
237
 
@@ -253,11 +257,47 @@ Our Premium Plugins:
253
  * <a href="http://m.tri.be/2i" target="_blank">The Events Calendar: WooCommerce Tickets</a>
254
  * The Events Calendar: Filter Bar (coming summer 2013)
255
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  == Changelog ==
257
 
258
  = IMPORTANT NOTICE =
259
 
260
- 3.0 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>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
 
262
  = 3.0.3 =
263
 
@@ -320,6 +360,12 @@ Still not happy? Shoot us an email to pro@tri.be or tweet to @moderntribeinc and
320
 
321
  == Upgrade Notice ==
322
 
 
 
 
 
 
 
323
  = 3.0 =
324
 
325
  1. Version 3.0 is a HUGE upgrade from The Events Calendar 2.0.x! Please back up your data BEFORE upgrading!
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.5
7
+ Tested up to: 3.6.1
8
+ Stable tag: 3.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
98
 
99
  * PHP 5.2 or above
100
  * WordPress 3.3 or above
101
+ * jQuery 1.7 or above
102
 
103
  == Screenshots ==
104
 
214
 
215
  * Arabic from Mamdouh Samy
216
  * Bosnian from Marko Manojlovic
217
+ * Brazilian Portuguese from Dionizio Bonfim Bach
218
  * Catalan from Barbara Partegos Rof
219
  * Croatian from Marko Manojlovic
220
  * Czech from Martin Kristan and Petr Bastan
221
  * Danish from Anonymous
222
+ * Dutch from Erik Massop
223
+ * Finnish by Ari-Pekka Koponen
224
+ * French from Benoît Burgener
225
+ * German from Michael Sebel
226
+ * Greek from Maria Tsilimidou
227
+ * Icelandic by Baldvin Örn Berndsen
228
  * Italian from Roberto Scano
229
+ * Norwegian from Andreas Lorentsen
230
  * Polish from Marek Kosina
231
  * Portuguese from Antonio Pratas
232
  * Romanian from Mihai Burcea
233
  * Serbian from Marko Manojlovic
234
  * Spanish from Hector Gil Rizo
235
  * Swedish from Ben Andersen
236
+ * Turkish by Burak Pehlevan
237
 
238
+ * 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
239
 
240
  == Add-Ons ==
241
 
257
  * <a href="http://m.tri.be/2i" target="_blank">The Events Calendar: WooCommerce Tickets</a>
258
  * The Events Calendar: Filter Bar (coming summer 2013)
259
 
260
+ == Versioning ==
261
+
262
+ Curious about our versioning process, and how it's changed since The Events Calendar 3.0's launch? Look no further.
263
+
264
+ As a general practice, version numbers for The Events Calendar, Events Calendar PRO and our other add-ons follows the <a href="http://en.wikipedia.org/wiki/Software_versioning#Semantic_versioning">Semantic Versioning guidelines</a> whenever practical.
265
+
266
+ This means releases will maintain a three-part version number: major version; minor version; and patch. Let's say we're looking at The Events Calendar 3.1, as an example:
267
+
268
+ Major version = 3
269
+ Minor version = 1
270
+ Patch = 0
271
+
272
+ If we deployed a follow-up maintenance build that addressed a couple small bugs, and called it 3.1.1, we'd now have:
273
+
274
+ Major version = 3
275
+ Minor version = 1
276
+ Patch = 1
277
+
278
+ At no point during the 3.0 lifecycle will the major version change. But you can expect that either minor version and/or patch will change with each release.
279
+
280
  == Changelog ==
281
 
282
  = IMPORTANT NOTICE =
283
 
284
+ 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>
285
+
286
+ = 3.1 =
287
+
288
+ * Significant performance improvements to month view (thanks to Grégory for the initial report!)
289
+ * Improved compatibility with Canvas and other themes by WooThemes (thanks to Paul Pruneau for the heads up!)
290
+ * Fixed several bugs relating to event cutoff times and month view (thanks jadonulrich for the report!)
291
+ * The correct default view now applies to event category listings
292
+ * Tag cloud links now work on both events and non-events pages (thanks to user 'onelittlemoose' for the report!)
293
+ * Days with no events are no longer linked from the month view (thanks to reneeyoxon for the original report!)
294
+ * Fixed a bug where the selected category would not apply after you navigate to the next month in Month view (thanks to Kyle for the report!)
295
+ * Fixed bug where the comments form would show twice on single events
296
+ * Enabled auto-submissions in situations where classic view is present instead of the event bar (thanks to user wiredimpact for getting the discussion started on this!)
297
+ * New "System Information" section on the Events > Help page
298
+ * Updated translations: Brazilian Portuguese (new), Turkish (new), Norwegian Dutch, Icelandic, Greek, Finnish, French, and German (French courtesy of Rick)
299
+ * Fixed some display bugs in IE (thanks to user wiredimpact for bringing up most of these!)
300
+ * Various minor bug and security fixes
301
 
302
  = 3.0.3 =
303
 
360
 
361
  == Upgrade Notice ==
362
 
363
+ 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.
364
+
365
+ = 3.1 =
366
+
367
+ There have been a number of architectural changes in 3.1. If you have a lot of customizations you may want to do some thorough testing before upgrading.
368
+
369
  = 3.0 =
370
 
371
  1. Version 3.0 is a HUGE upgrade from The Events Calendar 2.0.x! Please back up your data BEFORE upgrading!
resources/deprecated/chosen-load.min.js ADDED
@@ -0,0 +1 @@
 
1
+ jQuery(document).ready(function(){jQuery(".chosen").chosen()});
resources/deprecated/chosen.min.css ADDED
@@ -0,0 +1 @@
 
1
+ .chzn-container{font-size:13px;position:relative;display:inline-block;zoom:1;*display:inline}.chzn-container .chzn-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:29px;left:0;-webkit-box-shadow:0 4px 5px rgba(0,0,0,.15);-moz-box-shadow:0 4px 5px rgba(0,0,0,.15);-o-box-shadow:0 4px 5px rgba(0,0,0,.15);box-shadow:0 4px 5px rgba(0,0,0,.15);z-index:999}.chzn-container-single .chzn-single{background-color:#fff;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#eee),color-stop(0.5,white));background-image:-webkit-linear-gradient(center bottom,#eee 0,white 50%);background-image:-moz-linear-gradient(center bottom,#eee 0,white 50%);background-image:-o-linear-gradient(top,#eee 0,#fff 50%);background-image:-ms-linear-gradient(top,#eee 0,#fff 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#ffffff',GradientType=0);background-image:linear-gradient(top,#eee 0,#fff 50%);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #aaa;display:block;overflow:hidden;white-space:nowrap;position:relative;height:26px;line-height:26px;padding:0 0 0 8px;color:#444;text-decoration:none}.chzn-container-single .chzn-single span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis;text-overflow:ellipsis}.chzn-container-single .chzn-single abbr{display:block;position:absolute;right:26px;top:8px;width:12px;height:13px;font-size:1px;background:url(chosen-sprite.png) right top no-repeat}.chzn-container-single .chzn-single abbr:hover{background-position:right -11px}.chzn-container-single .chzn-single div{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background:#ccc;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#ccc),color-stop(0.6,#eee));background-image:-webkit-linear-gradient(center bottom,#ccc 0,#eee 60%);background-image:-moz-linear-gradient(center bottom,#ccc 0,#eee 60%);background-image:-o-linear-gradient(bottom,#ccc 0,#eee 60%);background-image:-ms-linear-gradient(top,#ccc 0,#eee 60%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc',endColorstr='#eeeeee',GradientType=0);background-image:linear-gradient(top,#ccc 0,#eee 60%);border-left:1px solid #aaa;position:absolute;right:0;top:0;display:block;height:100%;width:18px}.chzn-container-single .chzn-single div b{background:url('chosen-sprite.png') no-repeat 0 1px;display:block;width:100%;height:100%}.chzn-container-single .chzn-search{padding:3px 4px;position:relative;margin:0;white-space:nowrap;z-index:1010}.chzn-container-single .chzn-search input{background:#fff url('chosen-sprite.png') no-repeat 100% -22px;background:url('chosen-sprite.png') no-repeat 100% -22px,-webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background:url('chosen-sprite.png') no-repeat 100% -22px,-webkit-linear-gradient(center bottom,white 85%,#eee 99%);background:url('chosen-sprite.png') no-repeat 100% -22px,-moz-linear-gradient(center bottom,white 85%,#eee 99%);background:url('chosen-sprite.png') no-repeat 100% -22px,-o-linear-gradient(bottom,white 85%,#eee 99%);background:url('chosen-sprite.png') no-repeat 100% -22px,-ms-linear-gradient(top,#fff 85%,#eee 99%);background:url('chosen-sprite.png') no-repeat 100% -22px,linear-gradient(top,#fff 85%,#eee 99%);margin:1px 0;padding:4px 20px 4px 5px;outline:0;border:1px solid #aaa;font-family:sans-serif;font-size:1em}.chzn-container-single .chzn-drop{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.chzn-container-single-nosearch .chzn-search input{position:absolute;left:-9000px}.chzn-container-multi .chzn-choices{background-color:#fff;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background-image:-webkit-linear-gradient(center bottom,white 85%,#eee 99%);background-image:-moz-linear-gradient(center bottom,white 85%,#eee 99%);background-image:-o-linear-gradient(bottom,white 85%,#eee 99%);background-image:-ms-linear-gradient(top,#fff 85%,#eee 99%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0);background-image:linear-gradient(top,#fff 85%,#eee 99%);border:1px solid #aaa;margin:0;padding:0;cursor:text;overflow:hidden;height:auto !important;height:1%;position:relative}.chzn-container-multi .chzn-choices li{float:left;list-style:none}.chzn-container-multi .chzn-choices .search-field{white-space:nowrap;margin:0;padding:0}.chzn-container-multi .chzn-choices .search-field input{color:#666;background:transparent !important;border:0 !important;padding:5px;margin:1px 0;outline:0;-webkit-box-shadow:none;-moz-box-shadow:none;-o-box-shadow:none;box-shadow:none}.chzn-container-multi .chzn-choices .search-field .default{color:#999}.chzn-container-multi .chzn-choices .search-choice{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#e4e4e4;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#e4e4e4),color-stop(0.7,#eee));background-image:-webkit-linear-gradient(center bottom,#e4e4e4 0,#eee 70%);background-image:-moz-linear-gradient(center bottom,#e4e4e4 0,#eee 70%);background-image:-o-linear-gradient(bottom,#e4e4e4 0,#eee 70%);background-image:-ms-linear-gradient(top,#e4e4e4 0,#eee 70%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e4e4e4',endColorstr='#eeeeee',GradientType=0);background-image:linear-gradient(top,#e4e4e4 0,#eee 70%);color:#333;border:1px solid #b4b4b4;line-height:13px;padding:3px 19px 3px 6px;margin:3px 0 3px 5px;position:relative}.chzn-container-multi .chzn-choices .search-choice span{cursor:default}.chzn-container-multi .chzn-choices .search-choice-focus{background:#d4d4d4}.chzn-container-multi .chzn-choices .search-choice .search-choice-close{display:block;position:absolute;right:3px;top:4px;width:12px;height:13px;font-size:1px;background:url(chosen-sprite.png) right top no-repeat}.chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover{background-position:right -11px}.chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close{background-position:right -11px}.chzn-container .chzn-results{margin:0 4px 4px 0;max-height:190px;padding:0 0 0 4px;position:relative;overflow-x:hidden;overflow-y:auto}.chzn-container-multi .chzn-results{margin:-1px 0 0;padding:0}.chzn-container .chzn-results li{display:none;line-height:80%;padding:7px 7px 8px;margin:0;list-style:none}.chzn-container .chzn-results .active-result{cursor:pointer;display:list-item}.chzn-container .chzn-results .highlighted{background:#3875d7;color:#fff}.chzn-container .chzn-results li em{background:#feffde;font-style:normal}.chzn-container .chzn-results .highlighted em{background:transparent}.chzn-container .chzn-results .no-results{background:#f4f4f4;display:list-item}.chzn-container .chzn-results .group-result{cursor:default;color:#999;font-weight:bold}.chzn-container .chzn-results .group-option{padding-left:20px}.chzn-container-multi .chzn-drop .result-selected{display:none}.chzn-container-active .chzn-single{-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);-moz-box-shadow:0 0 5px rgba(0,0,0,.3);-o-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3);border:1px solid #5897fb}.chzn-container-active .chzn-single-with-drop{border:1px solid #aaa;-webkit-box-shadow:0 1px 0 #fff inset;-moz-box-shadow:0 1px 0 #fff inset;-o-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background-color:#eee;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,white),color-stop(0.5,#eee));background-image:-webkit-linear-gradient(center bottom,white 0,#eee 50%);background-image:-moz-linear-gradient(center bottom,white 0,#eee 50%);background-image:-o-linear-gradient(bottom,white 0,#eee 50%);background-image:-ms-linear-gradient(top,#fff 0,#eee 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0);background-image:linear-gradient(top,#fff 0,#eee 50%);-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-moz-border-radius-bottomright:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.chzn-container-active .chzn-single-with-drop div{background:transparent;border-left:0}.chzn-container-active .chzn-single-with-drop div b{background-position:-18px 1px}.chzn-container-active .chzn-choices{-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);-moz-box-shadow:0 0 5px rgba(0,0,0,.3);-o-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3);border:1px solid #5897fb}.chzn-container-active .chzn-choices .search-field input{color:#111 !important}.chzn-disabled{cursor:default;opacity:.5 !important}.chzn-disabled .chzn-single{cursor:default}.chzn-disabled .chzn-choices .search-choice .search-choice-close{cursor:default}.chzn-rtl{direction:rtl;text-align:right}.chzn-rtl .chzn-single{padding-left:0;padding-right:8px}.chzn-rtl .chzn-single span{margin-left:26px;margin-right:0}.chzn-rtl .chzn-single div{left:0;right:auto;border-left:0;border-right:1px solid #aaa;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.chzn-rtl .chzn-single abbr{left:26px;right:auto}.chzn-rtl .chzn-choices li{float:right}.chzn-rtl .chzn-choices .search-choice{padding:3px 6px 3px 19px;margin:3px 5px 3px 0}.chzn-rtl .chzn-choices .search-choice .search-choice-close{left:5px;right:auto;background-position:right top}.chzn-rtl.chzn-container-single .chzn-results{margin-left:4px;margin-right:0;padding-left:0;padding-right:4px}.chzn-rtl .chzn-results .group-option{padding-left:0;padding-right:20px}.chzn-rtl.chzn-container-active .chzn-single-with-drop div{border-right:0}.chzn-rtl .chzn-search input{background:url('chosen-sprite.png') no-repeat -38px -22px,#fff;background:url('chosen-sprite.png') no-repeat -38px -22px,-webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background:url('chosen-sprite.png') no-repeat -38px -22px,-webkit-linear-gradient(center bottom,white 85%,#eee 99%);background:url('chosen-sprite.png') no-repeat -38px -22px,-moz-linear-gradient(center bottom,white 85%,#eee 99%);background:url('chosen-sprite.png') no-repeat -38px -22px,-o-linear-gradient(bottom,white 85%,#eee 99%);background:url('chosen-sprite.png') no-repeat -38px -22px,-ms-linear-gradient(top,#fff 85%,#eee 99%);background:url('chosen-sprite.png') no-repeat -38px -22px,linear-gradient(top,#fff 85%,#eee 99%);padding:4px 5px 4px 20px}
resources/deprecated/select2/select2.min.css ADDED
@@ -0,0 +1 @@
 
1
+ .select2-container{position:relative;display:inline-block;zoom:1;*display:inline;vertical-align:top}.select2-container,.select2-drop,.select2-search,.select2-search input{-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;box-sizing:border-box}.select2-container .select2-choice{background-color:#fff;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#eee),color-stop(0.5,white));background-image:-webkit-linear-gradient(center bottom,#eee 0,white 50%);background-image:-moz-linear-gradient(center bottom,#eee 0,white 50%);background-image:-o-linear-gradient(bottom,#eee 0,#fff 50%);background-image:-ms-linear-gradient(top,#eee 0,#fff 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee',endColorstr = '#ffffff',GradientType = 0);background-image:linear-gradient(top,#eee 0,#fff 50%);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #aaa;display:block;overflow:hidden;white-space:nowrap;position:relative;height:26px;line-height:26px;padding:0 0 0 8px;color:#444;text-decoration:none}.select2-container.select2-drop-above .select2-choice{border-bottom-color:#aaa;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#eee),color-stop(0.9,white));background-image:-webkit-linear-gradient(center bottom,#eee 0,white 90%);background-image:-moz-linear-gradient(center bottom,#eee 0,white 90%);background-image:-o-linear-gradient(bottom,#eee 0,white 90%);background-image:-ms-linear-gradient(top,#eee 0,#fff 90%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#ffffff',GradientType=0);background-image:linear-gradient(top,#eee 0,#fff 90%)}.select2-container .select2-choice span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis;text-overflow:ellipsis}.select2-container .select2-choice abbr{display:block;position:absolute;right:26px;top:8px;width:12px;height:12px;font-size:1px;background:url('select2.png') right top no-repeat;cursor:pointer;text-decoration:none;border:0;outline:0}.select2-container .select2-choice abbr:hover{background-position:right -11px;cursor:pointer}.select2-drop{background:#fff;color:#000;border:1px solid #aaa;border-top:0;position:absolute;top:100%;-webkit-box-shadow:0 4px 5px rgba(0,0,0,.15);-moz-box-shadow:0 4px 5px rgba(0,0,0,.15);-o-box-shadow:0 4px 5px rgba(0,0,0,.15);box-shadow:0 4px 5px rgba(0,0,0,.15);z-index:9999;width:100%;margin-top:-1px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.select2-drop.select2-drop-above{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;margin-top:1px;border-top:1px solid #aaa;border-bottom:0;-webkit-box-shadow:0 -4px 5px rgba(0,0,0,.15);-moz-box-shadow:0 -4px 5px rgba(0,0,0,.15);-o-box-shadow:0 -4px 5px rgba(0,0,0,.15);box-shadow:0 -4px 5px rgba(0,0,0,.15)}.select2-container .select2-choice div{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background:#ccc;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#ccc),color-stop(0.6,#eee));background-image:-webkit-linear-gradient(center bottom,#ccc 0,#eee 60%);background-image:-moz-linear-gradient(center bottom,#ccc 0,#eee 60%);background-image:-o-linear-gradient(bottom,#ccc 0,#eee 60%);background-image:-ms-linear-gradient(top,#ccc 0,#eee 60%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = '#cccccc',endColorstr = '#eeeeee',GradientType = 0);background-image:linear-gradient(top,#ccc 0,#eee 60%);border-left:1px solid #aaa;position:absolute;right:0;top:0;display:block;height:100%;width:18px}.select2-container .select2-choice div b{background:url('select2.png') no-repeat 0 1px;display:block;width:100%;height:100%}.select2-search{display:inline-block;white-space:nowrap;z-index:10000;min-height:26px;width:100%;margin:0;padding-left:4px;padding-right:4px}.select2-search-hidden{display:block;position:absolute;left:-10000px}.select2-search input{background:#fff url('select2.png') no-repeat 100% -22px;background:url('select2.png') no-repeat 100% -22px,-webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background:url('select2.png') no-repeat 100% -22px,-webkit-linear-gradient(center bottom,white 85%,#eee 99%);background:url('select2.png') no-repeat 100% -22px,-moz-linear-gradient(center bottom,white 85%,#eee 99%);background:url('select2.png') no-repeat 100% -22px,-o-linear-gradient(bottom,white 85%,#eee 99%);background:url('select2.png') no-repeat 100% -22px,-ms-linear-gradient(top,#fff 85%,#eee 99%);background:url('select2.png') no-repeat 100% -22px,linear-gradient(top,#fff 85%,#eee 99%);padding:4px 20px 4px 5px;outline:0;border:1px solid #aaa;font-family:sans-serif;font-size:1em;width:100%;margin:0;height:auto !important;min-height:26px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0}.select2-drop.select2-drop-above .select2-search input{margin-top:4px}.select2-search input.select2-active{background:#fff url('spinner.gif') no-repeat 100%;background:url('spinner.gif') no-repeat 100%,-webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background:url('spinner.gif') no-repeat 100%,-webkit-linear-gradient(center bottom,white 85%,#eee 99%);background:url('spinner.gif') no-repeat 100%,-moz-linear-gradient(center bottom,white 85%,#eee 99%);background:url('spinner.gif') no-repeat 100%,-o-linear-gradient(bottom,white 85%,#eee 99%);background:url('spinner.gif') no-repeat 100%,-ms-linear-gradient(top,#fff 85%,#eee 99%);background:url('spinner.gif') no-repeat 100%,linear-gradient(top,#fff 85%,#eee 99%)}.select2-container-active .select2-choice,.select2-container-active .select2-choices{-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);-moz-box-shadow:0 0 5px rgba(0,0,0,.3);-o-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3);border:1px solid #5897fb;outline:0}.select2-dropdown-open .select2-choice{border:1px solid #aaa;border-bottom-color:transparent;-webkit-box-shadow:0 1px 0 #fff inset;-moz-box-shadow:0 1px 0 #fff inset;-o-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background-color:#eee;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,white),color-stop(0.5,#eee));background-image:-webkit-linear-gradient(center bottom,white 0,#eee 50%);background-image:-moz-linear-gradient(center bottom,white 0,#eee 50%);background-image:-o-linear-gradient(bottom,white 0,#eee 50%);background-image:-ms-linear-gradient(top,#fff 0,#eee 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0);background-image:linear-gradient(top,#fff 0,#eee 50%);-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-moz-border-radius-bottomright:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-dropdown-open .select2-choice div{background:transparent;border-left:0}.select2-dropdown-open .select2-choice div b{background-position:-18px 1px}.select2-results{margin:4px 4px 4px 0;padding:0 0 0 4px;position:relative;overflow-x:hidden;overflow-y:auto;max-height:200px}.select2-results ul.select2-result-sub{margin:0}.select2-results ul.select2-result-sub>li .select2-result-label{padding-left:20px}.select2-results ul.select2-result-sub ul.select2-result-sub>li .select2-result-label{padding-left:40px}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label{padding-left:60px}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label{padding-left:80px}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label{padding-left:100px}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label{padding-left:110px}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub>li .select2-result-label{padding-left:120px}.select2-results li{list-style:none;display:list-item}.select2-results li.select2-result-with-children>.select2-result-label{font-weight:bold}.select2-results .select2-result-label{padding:3px 7px 4px;margin:0;cursor:pointer}.select2-results .select2-highlighted{background:#3875d7;color:#fff}.select2-results li em{background:#feffde;font-style:normal}.select2-results .select2-highlighted em{background:transparent}.select2-results .select2-no-results,.select2-results .select2-searching,.select2-results .select2-selection-limit{background:#f4f4f4;display:list-item}.select2-results .select2-disabled{display:none}.select2-more-results.select2-active{background:#f4f4f4 url('spinner.gif') no-repeat 100%}.select2-more-results{background:#f4f4f4;display:list-item}.select2-container.select2-container-disabled .select2-choice{background-color:#f4f4f4;background-image:none;border:1px solid #ddd;cursor:default}.select2-container.select2-container-disabled .select2-choice div{background-color:#f4f4f4;background-image:none;border-left:0}.select2-container-multi .select2-choices{background-color:#fff;background-image:-webkit-gradient(linear,0 0,0 100%,color-stop(1%,#eee),color-stop(15%,#fff));background-image:-webkit-linear-gradient(top,#eee 1%,#fff 15%);background-image:-moz-linear-gradient(top,#eee 1%,#fff 15%);background-image:-o-linear-gradient(top,#eee 1%,#fff 15%);background-image:-ms-linear-gradient(top,#eee 1%,#fff 15%);background-image:linear-gradient(top,#eee 1%,#fff 15%);border:1px solid #aaa;margin:0;padding:0;cursor:text;overflow:hidden;height:auto !important;height:1%;position:relative}.select2-container-multi .select2-choices{min-height:26px}.select2-container-multi.select2-container-active .select2-choices{-webkit-box-shadow:0 0 5px rgba(0,0,0,.3);-moz-box-shadow:0 0 5px rgba(0,0,0,.3);-o-box-shadow:0 0 5px rgba(0,0,0,.3);box-shadow:0 0 5px rgba(0,0,0,.3);border:1px solid #5897fb;outline:0}.select2-container-multi .select2-choices li{float:left;list-style:none}.select2-container-multi .select2-choices .select2-search-field{white-space:nowrap;margin:0;padding:0}.select2-container-multi .select2-choices .select2-search-field input{color:#666;background:transparent !important;font-family:sans-serif;font-size:100%;height:15px;padding:5px;margin:1px 0;outline:0;border:0;-webkit-box-shadow:none;-moz-box-shadow:none;-o-box-shadow:none;box-shadow:none}.select2-container-multi .select2-choices .select2-search-field input.select2-active{background:#fff url('spinner.gif') no-repeat 100% !important}.select2-default{color:#999 !important}.select2-container-multi .select2-choices .select2-search-choice{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#e4e4e4;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4',endColorstr='#eeeeee',GradientType=0);background-image:-webkit-gradient(linear,0 0,0 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-ms-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);-webkit-box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,0.05);-moz-box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,0.05);box-shadow:0 0 2px #fff inset,0 1px 0 rgba(0,0,0,0.05);color:#333;border:1px solid #aaa;line-height:13px;padding:3px 5px 3px 18px;margin:3px 0 3px 5px;position:relative;cursor:default}.select2-container-multi .select2-choices .select2-search-choice span{cursor:default}.select2-container-multi .select2-choices .select2-search-choice-focus{background:#d4d4d4}.select2-search-choice-close{display:block;position:absolute;right:3px;top:4px;width:12px;height:13px;font-size:1px;background:url('select2.png') right top no-repeat;outline:0}.select2-container-multi .select2-search-choice-close{left:3px}.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover{background-position:right -11px}.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close{background-position:right -11px}.select2-container-multi.select2-container-disabled .select2-choices{background-color:#f4f4f4;background-image:none;border:1px solid #ddd;cursor:default}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice{background-image:none;background-color:#f4f4f4;border:1px solid #ddd;padding:3px 5px 3px 5px}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close{display:none}.select2-result-selectable .select2-match,.select2-result-unselectable .select2-result-selectable .select2-match{text-decoration:underline}.select2-result-unselectable .select2-match{text-decoration:none}.select2-offscreen{position:absolute;left:-10000px}@media only screen and (-webkit-min-device-pixel-ratio:1.5){.select2-search input,.select2-search-choice-close,.select2-container .select2-choice abbr,.select2-container .select2-choice div b{background-image:url(select2x2.png) !important;background-repeat:no-repeat !important;background-size:60px 40px !important}.select2-search input{background-position:100% -21px !important}}
resources/deprecated/select2/select2.min.js CHANGED
@@ -1,82 +1,68 @@
1
- /*
2
- Copyright 2012 Igor Vaynberg
3
-
4
- Version: 3.2 Timestamp: Mon Sep 10 10:38:04 PDT 2012
5
-
6
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in
7
- compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:
8
-
9
- http://www.apache.org/licenses/LICENSE-2.0
10
-
11
- Unless required by applicable law or agreed to in writing, software distributed under the License is
12
- distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- See the License for the specific language governing permissions and limitations under the License.
14
- */
15
- (function(e){"undefined"==typeof e.fn.each2&&e.fn.extend({each2:function(g){for(var i=e([0]),m=-1,s=this.length;++m<s&&(i.context=i[0]=this[m])&&!1!==g.call(i[0],m,i););return this}})})(jQuery);
16
- (function(e,g){function i(a,b){var c=0,d=b.length,j;if("undefined"===typeof a)return-1;if(a.constructor===String)for(;c<d;c+=1){if(0===a.localeCompare(b[c]))return c}else for(;c<d;c+=1)if(j=b[c],j.constructor===String){if(0===j.localeCompare(a))return c}else if(j===a)return c;return-1}function m(a,b){return a===b?!0:a===g||b===g||null===a||null===b?!1:a.constructor===String?0===a.localeCompare(b):b.constructor===String?0===b.localeCompare(a):!1}function s(a,b){var c,d,j;if(null===a||1>a.length)return[];
17
- c=a.split(b);d=0;for(j=c.length;d<j;d+=1)c[d]=e.trim(c[d]);return c}function A(a,b,c){var c=c||g,d;return function(){var j=arguments;window.clearTimeout(d);d=window.setTimeout(function(){b.apply(c,j)},a)}}function l(a){a.preventDefault();a.stopPropagation()}function B(a,b,c){var d=a.toUpperCase().indexOf(b.toUpperCase()),b=b.length;0>d?c.push(a):(c.push(a.substring(0,d)),c.push("<span class='select2-match'>"),c.push(a.substring(d,d+b)),c.push("</span>"),c.push(a.substring(d+b,a.length)))}function C(a){var b,
18
- c=0,d=null,j=a.quietMillis||100;return function(h){window.clearTimeout(b);b=window.setTimeout(function(){var b=c+=1,j=a.data,n=a.transport||e.ajax,f=a.traditional||!1,g=a.type||"GET",j=j.call(this,h.term,h.page,h.context);null!==d&&d.abort();d=n.call(null,{url:a.url,dataType:a.dataType,data:j,type:g,traditional:f,success:function(d){b<c||(d=a.results(d,h.page),h.callback(d))}})},j)}}function D(a){var b=a,c,d=function(a){return""+a.text};e.isArray(b)||(d=b.text,e.isFunction(d)||(c=b.text,d=function(a){return a[c]}),
19
- b=b.results);return function(a){var c=a.term,f={results:[]},k;if(c==="")a.callback({results:b});else{k=function(b,f){var g,t,b=b[0];if(b.children){g={};for(t in b)b.hasOwnProperty(t)&&(g[t]=b[t]);g.children=[];e(b.children).each2(function(a,b){k(b,g.children)});g.children.length&&f.push(g)}else a.matcher(c,d(b))&&f.push(b)};e(b).each2(function(a,b){k(b,f.results)});a.callback(f)}}}function E(a){return e.isFunction(a)?a:function(b){var c=b.term,d={results:[]};e(a).each(function(){var a=this.text!==
20
- g,e=a?this.text:this;if(""===c||b.matcher(c,e))d.results.push(a?this:{id:this,text:this})});b.callback(d)}}function u(a){if(e.isFunction(a))return!0;if(!a)return!1;throw Error("formatterName must be a function or a falsy value");}function v(a){return e.isFunction(a)?a():a}function F(a){var b=0;e.each(a,function(a,d){d.children?b+=F(d.children):b++});return b}function H(a,b,c,d){var e=a,h=!1,f,k,n,o;if(!d.createSearchChoice||!d.tokenSeparators||1>d.tokenSeparators.length)return g;for(;;){h=-1;k=0;
21
- for(n=d.tokenSeparators.length;k<n&&!(o=d.tokenSeparators[k],h=a.indexOf(o),0<=h);k++);if(0>h)break;f=a.substring(0,h);a=a.substring(h+o.length);if(0<f.length&&(f=d.createSearchChoice(f,b),f!==g&&null!==f&&d.id(f)!==g&&null!==d.id(f))){h=!1;k=0;for(n=b.length;k<n;k++)if(m(d.id(f),d.id(b[k]))){h=!0;break}h||c(f)}}if(0!=e.localeCompare(a))return a}function x(a,b){var c=function(){};c.prototype=new a;c.prototype.constructor=c;c.prototype.parent=a.prototype;c.prototype=e.extend(c.prototype,b);return c}
22
- if(window.Select2===g){var f,w,y,z,G,q;f={TAB:9,ENTER:13,ESC:27,SPACE:32,LEFT:37,UP:38,RIGHT:39,DOWN:40,SHIFT:16,CTRL:17,ALT:18,PAGE_UP:33,PAGE_DOWN:34,HOME:36,END:35,BACKSPACE:8,DELETE:46,isArrow:function(a){a=a.which?a.which:a;switch(a){case f.LEFT:case f.RIGHT:case f.UP:case f.DOWN:return!0}return!1},isControl:function(a){switch(a.which){case f.SHIFT:case f.CTRL:case f.ALT:return!0}return a.metaKey?!0:!1},isFunctionKey:function(a){a=a.which?a.which:a;return 112<=a&&123>=a}};var I=1;G=function(){return I++};
23
- e(document).delegate("body","mousemove",function(a){e.data(document,"select2-lastpos",{x:a.pageX,y:a.pageY})});e(document).ready(function(){e(document).delegate("body","mousedown touchend",function(a){var b=e(a.target).closest("div.select2-container").get(0),c;b?e(document).find("div.select2-container-active").each(function(){this!==b&&e(this).data("select2").blur()}):(b=e(a.target).closest("div.select2-drop").get(0),e(document).find("div.select2-drop-active").each(function(){this!==b&&e(this).data("select2").blur()}));
24
- b=e(a.target);c=b.attr("for");"LABEL"===a.target.tagName&&(c&&0<c.length)&&(b=e("#"+c),b=b.data("select2"),b!==g&&(b.focus(),a.preventDefault()))})});w=x(Object,{bind:function(a){var b=this;return function(){a.apply(b,arguments)}},init:function(a){var b,c;this.opts=a=this.prepareOpts(a);this.id=a.id;a.element.data("select2")!==g&&null!==a.element.data("select2")&&this.destroy();this.enabled=!0;this.container=this.createContainer();this.containerId="s2id_"+(a.element.attr("id")||"autogen"+G());this.containerSelector=
25
- "#"+this.containerId.replace(/([;&,\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g,"\\$1");this.container.attr("id",this.containerId);var d=!1,j;this.body=function(){!1===d&&(j=a.element.closest("body"),d=!0);return j};a.element.attr("class")!==g&&this.container.addClass(a.element.attr("class").replace(/validate\[[\S ]+] ?/,""));this.container.css(v(a.containerCss));this.container.addClass(v(a.containerCssClass));this.opts.element.data("select2",this).hide().before(this.container);this.container.data("select2",
26
- this);this.dropdown=this.container.find(".select2-drop");this.dropdown.addClass(v(a.dropdownCssClass));this.dropdown.data("select2",this);this.results=b=this.container.find(".select2-results");this.search=c=this.container.find("input.select2-input");c.attr("tabIndex",this.opts.element.attr("tabIndex"));this.resultsPage=0;this.context=null;this.initContainer();this.initContainerWidth();this.results.bind("mousemove",function(a){var b=e.data(document,"select2-lastpos");(b===g||b.x!==a.pageX||b.y!==a.pageY)&&
27
- e(a.target).trigger("mousemove-filtered",a)});this.dropdown.delegate(".select2-results","mousemove-filtered",this.bind(this.highlightUnderEvent));var h=this.results,f=A(80,function(a){h.trigger("scroll-debounced",a)});h.bind("scroll",function(a){0<=i(a.target,h.get())&&f(a)});this.dropdown.delegate(".select2-results","scroll-debounced",this.bind(this.loadMoreIfNeeded));e.fn.mousewheel&&b.mousewheel(function(a,c,d,e){c=b.scrollTop();0<e&&0>=c-e?(b.scrollTop(0),l(a)):0>e&&b.get(0).scrollHeight-b.scrollTop()+
28
- e<=b.height()&&(b.scrollTop(b.get(0).scrollHeight-b.height()),l(a))});c.bind("keydown",function(){e.data(c,"keyup-change-value")===g&&e.data(c,"keyup-change-value",c.val())});c.bind("keyup",function(){var a=e.data(c,"keyup-change-value");a!==g&&c.val()!==a&&(e.removeData(c,"keyup-change-value"),c.trigger("keyup-change"))});c.bind("keyup-change",this.bind(this.updateResults));c.bind("focus",function(){c.addClass("select2-focused");" "===c.val()&&c.val("")});c.bind("blur",function(){c.removeClass("select2-focused")});
29
- this.dropdown.delegate(".select2-results","mouseup",this.bind(function(a){0<e(a.target).closest(".select2-result-selectable:not(.select2-disabled)").length?(this.highlightUnderEvent(a),this.selectHighlighted(a)):this.focusSearch();l(a)}));this.dropdown.bind("click mouseup mousedown",function(a){a.stopPropagation()});e.isFunction(this.opts.initSelection)&&(this.initSelection(),this.monitorSource());(a.element.is(":disabled")||a.element.is("[readonly='readonly']"))&&this.disable()},destroy:function(){var a=
30
- this.opts.element.data("select2");a!==g&&(a.container.remove(),a.dropdown.remove(),a.opts.element.removeData("select2").unbind(".select2").show())},prepareOpts:function(a){var b,c,d;b=a.element;"select"===b.get(0).tagName.toLowerCase()&&(this.select=c=a.element);c&&e.each("id multiple ajax query createSearchChoice initSelection data tags".split(" "),function(){if(this in a)throw Error("Option '"+this+"' is not allowed for Select2 when attached to a <select> element.");});a=e.extend({},{populateResults:function(b,
31
- c,d){var f,n=this.opts.id,o=this;f=function(b,c,j){var h,l,i,m,r,p,q;h=0;for(l=b.length;h<l;h=h+1){i=b[h];m=n(i)!==g;r=i.children&&i.children.length>0;p=e("<li></li>");p.addClass("select2-results-dept-"+j);p.addClass("select2-result");p.addClass(m?"select2-result-selectable":"select2-result-unselectable");r&&p.addClass("select2-result-with-children");p.addClass(o.opts.formatResultCssClass(i));m=e("<div></div>");m.addClass("select2-result-label");q=a.formatResult(i,m,d);q!==g&&m.html(o.opts.escapeMarkup(q));
32
- p.append(m);if(r){r=e("<ul></ul>");r.addClass("select2-result-sub");f(i.children,r,j+1);p.append(r)}p.data("select2-data",i);c.append(p)}};f(c,b,0)}},e.fn.select2.defaults,a);"function"!==typeof a.id&&(d=a.id,a.id=function(a){return a[d]});if(c)a.query=this.bind(function(a){var c={results:[],more:false},d=a.term,f,n,o;o=function(b,c){var e;if(b.is("option"))a.matcher(d,b.text(),b)&&c.push({id:b.attr("value"),text:b.text(),element:b.get(),css:b.attr("class")});else if(b.is("optgroup")){e={text:b.attr("label"),
33
- children:[],element:b.get(),css:b.attr("class")};b.children().each2(function(a,b){o(b,e.children)});e.children.length>0&&c.push(e)}};f=b.children();if(this.getPlaceholder()!==g&&f.length>0){n=f[0];e(n).text()===""&&(f=f.not(n))}f.each2(function(a,b){o(b,c.results)});a.callback(c)}),a.id=function(a){return a.id},a.formatResultCssClass=function(a){return a.css};else if(!("query"in a))if("ajax"in a){if((c=a.element.data("ajax-url"))&&0<c.length)a.ajax.url=c;a.query=C(a.ajax)}else"data"in a?a.query=D(a.data):
34
- "tags"in a&&(a.query=E(a.tags),a.createSearchChoice=function(a){return{id:a,text:a}},a.initSelection=function(b,c){var d=[];e(s(b.val(),a.separator)).each(function(){var b=this,c=this,j=a.tags;e.isFunction(j)&&(j=j());e(j).each(function(){if(m(this.id,b)){c=this.text;return false}});d.push({id:b,text:c})});c(d)});if("function"!==typeof a.query)throw"query function not defined for Select2 "+a.element.attr("id");return a},monitorSource:function(){this.opts.element.bind("change.select2",this.bind(function(){!0!==
35
- this.opts.element.data("select2-change-triggered")&&this.initSelection()}))},triggerChange:function(a){a=a||{};a=e.extend({},a,{type:"change",val:this.val()});this.opts.element.data("select2-change-triggered",!0);this.opts.element.trigger(a);this.opts.element.data("select2-change-triggered",!1);this.opts.element.click();this.opts.blurOnChange&&this.opts.element.blur()},enable:function(){this.enabled||(this.enabled=!0,this.container.removeClass("select2-container-disabled"))},disable:function(){this.enabled&&
36
- (this.close(),this.enabled=!1,this.container.addClass("select2-container-disabled"))},opened:function(){return this.container.hasClass("select2-dropdown-open")},positionDropdown:function(){var a=this.container.offset(),b=this.container.outerHeight(),c=this.container.outerWidth(),d=this.dropdown.outerHeight(),j=e(window).scrollTop()+document.documentElement.clientHeight,b=a.top+b,f=a.left,j=b+d<=j,g=a.top-d>=this.body().scrollTop(),k=this.dropdown.hasClass("select2-drop-above"),n;"static"!==this.body().css("position")&&
37
- (n=this.body().offset(),b-=n.top,f-=n.left);k?(k=!0,!g&&j&&(k=!1)):(k=!1,!j&&g&&(k=!0));k?(b=a.top-d,this.container.addClass("select2-drop-above"),this.dropdown.addClass("select2-drop-above")):(this.container.removeClass("select2-drop-above"),this.dropdown.removeClass("select2-drop-above"));a=e.extend({top:b,left:f,width:c},v(this.opts.dropdownCss));this.dropdown.css(a)},shouldOpen:function(){var a;if(this.opened())return!1;a=e.Event("open");this.opts.element.trigger(a);return!a.isDefaultPrevented()},
38
- clearDropdownAlignmentPreference:function(){this.container.removeClass("select2-drop-above");this.dropdown.removeClass("select2-drop-above")},open:function(){if(!this.shouldOpen())return!1;window.setTimeout(this.bind(this.opening),1);return!0},opening:function(){var a=this.containerId,b=this.containerSelector,c="scroll."+a,d="resize."+a;this.container.parents().each(function(){e(this).bind(c,function(){var a=e(b);0==a.length&&e(this).unbind(c);a.select2("close")})});e(window).bind(d,function(){var a=
39
- e(b);0==a.length&&e(window).unbind(d);a.select2("close")});this.clearDropdownAlignmentPreference();" "===this.search.val()&&this.search.val("");this.container.addClass("select2-dropdown-open").addClass("select2-container-active");this.updateResults(!0);this.dropdown[0]!==this.body().children().last()[0]&&this.dropdown.detach().appendTo(this.body());this.dropdown.show();this.positionDropdown();this.dropdown.addClass("select2-drop-active");this.ensureHighlightVisible();this.focusSearch()},close:function(){if(this.opened()){var a=
40
- this;this.container.parents().each(function(){e(this).unbind("scroll."+a.containerId)});e(window).unbind("resize."+this.containerId);this.clearDropdownAlignmentPreference();this.dropdown.hide();this.container.removeClass("select2-dropdown-open").removeClass("select2-container-active");this.results.empty();this.clearSearch();this.opts.element.trigger(e.Event("close"))}},clearSearch:function(){},ensureHighlightVisible:function(){var a=this.results,b,c,d,f;c=this.highlight();0>c||(0==c?a.scrollTop(0):
41
- (b=a.find(".select2-result-selectable"),d=e(b[c]),f=d.offset().top+d.outerHeight(),c===b.length-1&&(b=a.find("li.select2-more-results"),0<b.length&&(f=b.offset().top+b.outerHeight())),b=a.offset().top+a.outerHeight(),f>b&&a.scrollTop(a.scrollTop()+(f-b)),d=d.offset().top-a.offset().top,0>d&&a.scrollTop(a.scrollTop()+d)))},moveHighlight:function(a){for(var b=this.results.find(".select2-result-selectable"),c=this.highlight();-1<c&&c<b.length;){var c=c+a,d=e(b[c]);if(d.hasClass("select2-result-selectable")&&
42
- !d.hasClass("select2-disabled")){this.highlight(c);break}}},highlight:function(a){var b=this.results.find(".select2-result-selectable").not(".select2-disabled");if(0===arguments.length)return i(b.filter(".select2-highlighted")[0],b.get());a>=b.length&&(a=b.length-1);0>a&&(a=0);b.removeClass("select2-highlighted");e(b[a]).addClass("select2-highlighted");this.ensureHighlightVisible()},countSelectableResults:function(){return this.results.find(".select2-result-selectable").not(".select2-disabled").length},
43
- highlightUnderEvent:function(a){a=e(a.target).closest(".select2-result-selectable");if(0<a.length&&!a.is(".select2-highlighted")){var b=this.results.find(".select2-result-selectable");this.highlight(b.index(a))}else 0==a.length&&this.results.find(".select2-highlighted").removeClass("select2-highlighted")},loadMoreIfNeeded:function(){var a=this.results,b=a.find("li.select2-more-results"),c,d=this.resultsPage+1,e=this,f=this.search.val(),g=this.context;0!==b.length&&(c=b.offset().top-a.offset().top-
44
- a.height(),0>=c&&(b.addClass("select2-active"),this.opts.query({term:f,page:d,context:g,matcher:this.opts.matcher,callback:this.bind(function(c){e.opened()&&(e.opts.populateResults.call(this,a,c.results,{term:f,page:d,context:g}),!0===c.more?(b.detach().appendTo(a).text(e.opts.formatLoadMore(d+1)),window.setTimeout(function(){e.loadMoreIfNeeded()},10)):b.remove(),e.positionDropdown(),e.resultsPage=d)})})))},tokenize:function(){},updateResults:function(a){function b(){f.scrollTop(0);d.removeClass("select2-active");
45
- k.positionDropdown()}function c(a){f.html(k.opts.escapeMarkup(a));b()}var d=this.search,f=this.results,h=this.opts,i,k=this;if(!(!0!==a&&(!1===this.showSearchInput||!this.opened()))){d.addClass("select2-active");if(1<=h.maximumSelectionSize&&(i=this.data(),e.isArray(i)&&i.length>=h.maximumSelectionSize&&u(h.formatSelectionTooBig,"formatSelectionTooBig"))){c("<li class='select2-selection-limit'>"+h.formatSelectionTooBig(h.maximumSelectionSize)+"</li>");return}d.val().length<h.minimumInputLength&&u(h.formatInputTooShort,
46
- "formatInputTooShort")?c("<li class='select2-no-results'>"+h.formatInputTooShort(d.val(),h.minimumInputLength)+"</li>"):(c("<li class='select2-searching'>"+h.formatSearching()+"</li>"),i=this.tokenize(),i!=g&&null!=i&&d.val(i),this.resultsPage=1,h.query({term:d.val(),page:this.resultsPage,context:null,matcher:h.matcher,callback:this.bind(function(i){var l;this.opened()&&((this.context=i.context===g?null:i.context,this.opts.createSearchChoice&&""!==d.val()&&(l=this.opts.createSearchChoice.call(null,
47
- d.val(),i.results),l!==g&&null!==l&&k.id(l)!==g&&null!==k.id(l)&&0===e(i.results).filter(function(){return m(k.id(this),k.id(l))}).length&&i.results.unshift(l)),0===i.results.length&&u(h.formatNoMatches,"formatNoMatches"))?c("<li class='select2-no-results'>"+h.formatNoMatches(d.val())+"</li>"):(f.empty(),k.opts.populateResults.call(this,f,i.results,{term:d.val(),page:this.resultsPage,context:null}),!0===i.more&&u(h.formatLoadMore,"formatLoadMore")&&(f.append("<li class='select2-more-results'>"+k.opts.escapeMarkup(h.formatLoadMore(this.resultsPage))+
48
- "</li>"),window.setTimeout(function(){k.loadMoreIfNeeded()},10)),this.postprocessResults(i,a),b()))})}))}},cancel:function(){this.close()},blur:function(){this.close();this.container.removeClass("select2-container-active");this.dropdown.removeClass("select2-drop-active");this.search[0]===document.activeElement&&this.search.blur();this.clearSearch();this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus")},focusSearch:function(){this.search.show();this.search.focus();
49
  window.setTimeout(this.bind(function(){this.search.show();this.search.focus();this.search.val(this.search.val())}),10)},selectHighlighted:function(){var a=this.highlight(),b=this.results.find(".select2-highlighted").not(".select2-disabled"),c=b.closest(".select2-result-selectable").data("select2-data");c&&(b.addClass("select2-disabled"),this.highlight(a),this.onSelect(c))},getPlaceholder:function(){return this.opts.element.attr("placeholder")||this.opts.element.attr("data-placeholder")||this.opts.element.data("placeholder")||
50
- this.opts.placeholder},initContainerWidth:function(){var a=function(){var a,c,d,f;if("off"===this.opts.width)return null;if("element"===this.opts.width)return 0===this.opts.element.outerWidth()?"auto":this.opts.element.outerWidth()+"px";if("copy"===this.opts.width||"resolve"===this.opts.width){a=this.opts.element.attr("style");if(a!==g){a=a.split(";");d=0;for(f=a.length;d<f;d+=1)if(c=a[d].replace(/\s/g,"").match(/width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/),null!==c&&1<=c.length)return c[1]}return"resolve"===
51
- this.opts.width?(a=this.opts.element.css("width"),0<a.indexOf("%")?a:0===this.opts.element.outerWidth()?"auto":this.opts.element.outerWidth()+"px"):null}return e.isFunction(this.opts.width)?this.opts.width():this.opts.width}.call(this);null!==a&&this.container.attr("style","width: "+a)}});y=x(w,{createContainer:function(){return e("<div></div>",{"class":"select2-container"}).html(" <a href='#' onclick='return false;' class='select2-choice'> <span></span><abbr class='select2-search-choice-close' style='display:none;'></abbr> <div><b></b></div></a> <div class='select2-drop select2-offscreen'> <div class='select2-search'> <input type='text' autocomplete='off' class='select2-input'/> </div> <ul class='select2-results'> </ul></div>")},
52
  opening:function(){this.search.show();this.parent.opening.apply(this,arguments);this.dropdown.removeClass("select2-offscreen")},close:function(){this.opened()&&(this.parent.close.apply(this,arguments),this.dropdown.removeAttr("style").addClass("select2-offscreen").insertAfter(this.selection).show())},focus:function(){this.close();this.selection.focus()},isFocused:function(){return this.selection[0]===document.activeElement},cancel:function(){this.parent.cancel.apply(this,arguments);this.selection.focus()},
53
- initContainer:function(){var a,b=this.dropdown;this.selection=a=this.container.find(".select2-choice");this.search.bind("keydown",this.bind(function(a){if(this.enabled)if(a.which===f.PAGE_UP||a.which===f.PAGE_DOWN)l(a);else if(this.opened())switch(a.which){case f.UP:case f.DOWN:this.moveHighlight(a.which===f.UP?-1:1);l(a);break;case f.TAB:case f.ENTER:this.selectHighlighted();l(a);break;case f.ESC:this.cancel(a),l(a)}else a.which===f.TAB||f.isControl(a)||f.isFunctionKey(a)||a.which===f.ESC||!1===
54
- this.opts.openOnEnter&&a.which===f.ENTER||this.open()}));this.search.bind("focus",this.bind(function(){this.selection.attr("tabIndex","-1")}));this.search.bind("blur",this.bind(function(){this.opened()||this.container.removeClass("select2-container-active");window.setTimeout(this.bind(function(){this.selection.attr("tabIndex",this.opts.element.attr("tabIndex"))}),10)}));a.bind("mousedown",this.bind(function(){this.opened()?(this.close(),this.selection.focus()):this.enabled&&this.open()}));b.bind("mousedown",
55
- this.bind(function(){this.search.focus()}));a.bind("focus",this.bind(function(){this.container.addClass("select2-container-active");this.search.attr("tabIndex","-1")}));a.bind("blur",this.bind(function(){this.opened()||this.container.removeClass("select2-container-active");window.setTimeout(this.bind(function(){this.search.attr("tabIndex",this.opts.element.attr("tabIndex"))}),10)}));a.bind("keydown",this.bind(function(a){if(this.enabled)if(a.which===f.PAGE_UP||a.which===f.PAGE_DOWN)l(a);else if(!(a.which===
56
- f.TAB||f.isControl(a)||f.isFunctionKey(a)||a.which===f.ESC)&&!(!1===this.opts.openOnEnter&&a.which===f.ENTER))if(a.which==f.DELETE)this.opts.allowClear&&this.clear();else{this.open();if(a.which!==f.ENTER&&!(48>a.which)){var b=String.fromCharCode(a.which).toLowerCase();a.shiftKey&&(b=b.toUpperCase());this.search.focus();this.search.val(b)}l(a)}}));a.delegate("abbr","mousedown",this.bind(function(a){this.enabled&&(this.clear(),l(a),this.close(),this.triggerChange(),this.selection.focus())}));this.setPlaceholder();
57
  this.search.bind("focus",this.bind(function(){this.container.addClass("select2-container-active")}))},clear:function(){this.opts.element.val("");this.selection.find("span").empty();this.selection.removeData("select2-data");this.setPlaceholder()},initSelection:function(){if(""===this.opts.element.val())this.close(),this.setPlaceholder();else{var a=this;this.opts.initSelection.call(null,this.opts.element,function(b){b!==g&&null!==b&&(a.updateSelection(b),a.close(),a.setPlaceholder())})}},prepareOpts:function(){var a=
58
- this.parent.prepareOpts.apply(this,arguments);"select"===a.element.get(0).tagName.toLowerCase()&&(a.initSelection=function(a,c){var d=a.find(":selected");e.isFunction(c)&&c({id:d.attr("value"),text:d.text()})});return a},setPlaceholder:function(){var a=this.getPlaceholder();""===this.opts.element.val()&&a!==g&&!(this.select&&""!==this.select.find("option:first").text())&&(this.selection.find("span").html(this.opts.escapeMarkup(a)),this.selection.addClass("select2-default"),this.selection.find("abbr").hide())},
59
- postprocessResults:function(a,b){var c=0,d=this,f=!0;this.results.find(".select2-result-selectable").each2(function(a,b){if(m(d.id(b.data("select2-data")),d.opts.element.val()))return c=a,!1});this.highlight(c);!0===b&&(f=this.showSearchInput=F(a.results)>=this.opts.minimumResultsForSearch,this.dropdown.find(".select2-search")[f?"removeClass":"addClass"]("select2-search-hidden"),e(this.dropdown,this.container)[f?"addClass":"removeClass"]("select2-with-searchbox"))},onSelect:function(a){var b=this.opts.element.val();
60
- this.opts.element.val(this.id(a));this.updateSelection(a);this.close();this.selection.focus();m(b,this.id(a))||this.triggerChange()},updateSelection:function(a){var b=this.selection.find("span");this.selection.data("select2-data",a);b.empty();a=this.opts.formatSelection(a,b);a!==g&&b.append(this.opts.escapeMarkup(a));this.selection.removeClass("select2-default");this.opts.allowClear&&this.getPlaceholder()!==g&&this.selection.find("abbr").show()},val:function(){var a,b=null,c=this;if(0===arguments.length)return this.opts.element.val();
61
  a=arguments[0];if(this.select)this.select.val(a).find(":selected").each2(function(a,c){b={id:c.attr("value"),text:c.text()};return!1}),this.updateSelection(b),this.setPlaceholder();else{if(this.opts.initSelection===g)throw Error("cannot call val() if initSelection() is not defined");a?(this.opts.element.val(a),this.opts.initSelection(this.opts.element,function(a){c.opts.element.val(!a?"":c.id(a));c.updateSelection(a);c.setPlaceholder()})):this.clear()}},clearSearch:function(){this.search.val("")},
62
- data:function(a){var b;if(0===arguments.length)return b=this.selection.data("select2-data"),b==g&&(b=null),b;!a||""===a?this.clear():(this.opts.element.val(!a?"":this.id(a)),this.updateSelection(a))}});z=x(w,{createContainer:function(){return e("<div></div>",{"class":"select2-container select2-container-multi"}).html(" <ul class='select2-choices'> <li class='select2-search-field'> <input type='text' autocomplete='off' class='select2-input'> </li></ul><div class='select2-drop select2-drop-multi' style='display:none;'> <ul class='select2-results'> </ul></div>")},
63
- prepareOpts:function(){var a=this.parent.prepareOpts.apply(this,arguments);"select"===a.element.get(0).tagName.toLowerCase()&&(a.initSelection=function(a,c){var d=[];a.find(":selected").each2(function(a,b){d.push({id:b.attr("value"),text:b.text()})});e.isFunction(c)&&c(d)});return a},initContainer:function(){var a;this.searchContainer=this.container.find(".select2-search-field");this.selection=a=this.container.find(".select2-choices");this.search.bind("keydown",this.bind(function(b){if(this.enabled){if(b.which===
64
- f.BACKSPACE&&""===this.search.val()){this.close();var c;c=a.find(".select2-search-choice-focus");if(0<c.length){this.unselect(c.first());this.search.width(10);l(b);return}c=a.find(".select2-search-choice");0<c.length&&c.last().addClass("select2-search-choice-focus")}else a.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");if(this.opened())switch(b.which){case f.UP:case f.DOWN:this.moveHighlight(b.which===f.UP?-1:1);l(b);return;case f.ENTER:case f.TAB:this.selectHighlighted();
65
- l(b);return;case f.ESC:this.cancel(b);l(b);return}if(!(b.which===f.TAB||f.isControl(b)||f.isFunctionKey(b)||b.which===f.BACKSPACE||b.which===f.ESC)&&!(!1===this.opts.openOnEnter&&b.which===f.ENTER))this.open(),(b.which===f.PAGE_UP||b.which===f.PAGE_DOWN)&&l(b)}}));this.search.bind("keyup",this.bind(this.resizeSearch));this.search.bind("blur",this.bind(function(a){this.container.removeClass("select2-container-active");this.search.removeClass("select2-focused");this.clearSearch();a.stopImmediatePropagation()}));
66
- this.container.delegate(".select2-choices","mousedown",this.bind(function(a){this.enabled&&!(0<e(a.target).closest(".select2-search-choice").length)&&(this.clearPlaceholder(),this.open(),this.focusSearch(),a.preventDefault())}));this.container.delegate(".select2-choices","focus",this.bind(function(){this.enabled&&(this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"),this.clearPlaceholder())}));this.clearSearch()},enable:function(){this.enabled||(this.parent.enable.apply(this,
67
- arguments),this.search.removeAttr("disabled"))},disable:function(){this.enabled&&(this.parent.disable.apply(this,arguments),this.search.attr("disabled",!0))},initSelection:function(){""===this.opts.element.val()&&(this.updateSelection([]),this.close(),this.clearSearch());if(this.select||""!==this.opts.element.val()){var a=this;this.opts.initSelection.call(null,this.opts.element,function(b){if(b!==g&&b!==null){a.updateSelection(b);a.close();a.clearSearch()}})}},clearSearch:function(){var a=this.getPlaceholder();
68
  a!==g&&0===this.getVal().length&&!1===this.search.hasClass("select2-focused")?(this.search.val(a).addClass("select2-default"),this.resizeSearch()):this.search.val(" ").width(10)},clearPlaceholder:function(){this.search.hasClass("select2-default")?this.search.val("").removeClass("select2-default"):" "===this.search.val()&&this.search.val("")},opening:function(){this.parent.opening.apply(this,arguments);this.clearPlaceholder();this.resizeSearch();this.focusSearch()},close:function(){this.opened()&&
69
- this.parent.close.apply(this,arguments)},focus:function(){this.close();this.search.focus()},isFocused:function(){return this.search.hasClass("select2-focused")},updateSelection:function(a){var b=[],c=[],d=this;e(a).each(function(){0>i(d.id(this),b)&&(b.push(d.id(this)),c.push(this))});a=c;this.selection.find(".select2-search-choice").remove();e(a).each(function(){d.addSelectedChoice(this)});d.postprocessResults()},tokenize:function(){var a=this.search.val(),a=this.opts.tokenizer(a,this.data(),this.bind(this.onSelect),
70
- this.opts);null!=a&&a!=g&&(this.search.val(a),0<a.length&&this.open())},onSelect:function(a){this.addSelectedChoice(a);this.select&&this.postprocessResults();this.opts.closeOnSelect?(this.close(),this.search.width(10)):0<this.countSelectableResults()?(this.search.width(10),this.resizeSearch(),this.positionDropdown()):this.close();this.triggerChange({added:a});this.focusSearch()},cancel:function(){this.close();this.focusSearch()},addSelectedChoice:function(a){var b=e("<li class='select2-search-choice'> <div></div> <a href='#' onclick='return false;' class='select2-search-choice-close' tabindex='-1'></a></li>"),
71
- c=this.id(a),d=this.getVal(),f;f=this.opts.formatSelection(a,b);b.find("div").replaceWith("<div>"+this.opts.escapeMarkup(f)+"</div>");b.find(".select2-search-choice-close").bind("mousedown",l).bind("click dblclick",this.bind(function(a){this.enabled&&(e(a.target).closest(".select2-search-choice").fadeOut("fast",this.bind(function(){this.unselect(e(a.target));this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");this.close();this.focusSearch()})).dequeue(),
72
- l(a))})).bind("focus",this.bind(function(){this.enabled&&(this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"))}));b.data("select2-data",a);b.insertBefore(this.searchContainer);d.push(c);this.setVal(d)},unselect:function(a){var b=this.getVal(),c,d,a=a.closest(".select2-search-choice");if(0===a.length)throw"Invalid argument: "+a+". Must be .select2-search-choice";c=a.data("select2-data");d=i(this.id(c),b);0<=d&&(b.splice(d,1),this.setVal(b),this.select&&
73
- this.postprocessResults());a.remove();this.triggerChange({removed:c})},postprocessResults:function(){var a=this.getVal(),b=this.results.find(".select2-result-selectable"),c=this.results.find(".select2-result-with-children"),d=this;b.each2(function(b,c){var e=d.id(c.data("select2-data"));0<=i(e,a)?c.addClass("select2-disabled").removeClass("select2-result-selectable"):c.removeClass("select2-disabled").addClass("select2-result-selectable")});c.each2(function(a,b){0==b.find(".select2-result-selectable").length?
74
- b.addClass("select2-disabled"):b.removeClass("select2-disabled")});b.each2(function(a,b){if(!b.hasClass("select2-disabled")&&b.hasClass("select2-result-selectable"))return d.highlight(0),!1})},resizeSearch:function(){var a,b,c,d,f=this.search.outerWidth()-this.search.width();a=this.search;q||(c=a[0].currentStyle||window.getComputedStyle(a[0],null),q=e("<div></div>").css({position:"absolute",left:"-10000px",top:"-10000px",display:"none",fontSize:c.fontSize,fontFamily:c.fontFamily,fontStyle:c.fontStyle,
75
- fontWeight:c.fontWeight,letterSpacing:c.letterSpacing,textTransform:c.textTransform,whiteSpace:"nowrap"}),e("body").append(q));q.text(a.val());a=q.width()+10;b=this.search.offset().left;c=this.selection.width();d=this.selection.offset().left;b=c-(b-d)-f;b<a&&(b=c-f);40>b&&(b=c-f);this.search.width(b)},getVal:function(){var a;if(this.select)return a=this.select.val(),null===a?[]:a;a=this.opts.element.val();return s(a,this.opts.separator)},setVal:function(a){var b;this.select?this.select.val(a):(b=
76
- [],e(a).each(function(){0>i(this,b)&&b.push(this)}),this.opts.element.val(0===b.length?"":b.join(this.opts.separator)))},val:function(){var a,b=[],c=this;if(0===arguments.length)return this.getVal();if(a=arguments[0])if(this.setVal(a),this.select)this.select.find(":selected").each(function(){b.push({id:e(this).attr("value"),text:e(this).text()})}),this.updateSelection(b);else{if(this.opts.initSelection===g)throw Error("val() cannot be called if initSelection() is not defined");this.opts.initSelection(this.opts.element,
77
- function(a){var b=e(a).map(c.id);c.setVal(b);c.updateSelection(a);c.clearSearch()})}else this.opts.element.val(""),this.updateSelection([]);this.clearSearch()},onSortStart:function(){if(this.select)throw Error("Sorting of elements is not supported when attached to <select>. Attach to <input type='hidden'/> instead.");this.search.width(0);this.searchContainer.hide()},onSortEnd:function(){var a=[],b=this;this.searchContainer.show();this.searchContainer.appendTo(this.searchContainer.parent());this.resizeSearch();
78
- this.selection.find(".select2-search-choice").each(function(){a.push(b.opts.id(e(this).data("select2-data")))});this.setVal(a);this.triggerChange()},data:function(a){var b=this,c;if(0===arguments.length)return this.selection.find(".select2-search-choice").map(function(){return e(this).data("select2-data")}).get();a||(a=[]);c=e.map(a,function(a){return b.opts.id(a)});this.setVal(c);this.updateSelection(a);this.clearSearch()}});e.fn.select2=function(){var a=Array.prototype.slice.call(arguments,0),b,
79
- c,d,f,h="val destroy opened open close focus isFocused container onSortStart onSortEnd enable disable positionDropdown data".split(" ");this.each(function(){if(0===a.length||"object"===typeof a[0])b=0===a.length?{}:e.extend({},a[0]),b.element=e(this),"select"===b.element.get(0).tagName.toLowerCase()?f=b.element.attr("multiple"):(f=b.multiple||!1,"tags"in b&&(b.multiple=f=!0)),c=f?new z:new y,c.init(b);else if("string"===typeof a[0]){if(0>i(a[0],h))throw"Unknown method: "+a[0];d=g;c=e(this).data("select2");
80
- if(c!==g&&(d="container"===a[0]?c.container:c[a[0]].apply(c,a.slice(1)),d!==g))return!1}else throw"Invalid arguments to select2 plugin: "+a;});return d===g?this:d};e.fn.select2.defaults={width:"copy",closeOnSelect:!0,openOnEnter:!0,containerCss:{},dropdownCss:{},containerCssClass:"",dropdownCssClass:"",formatResult:function(a,b,c){b=[];B(a.text,c.term,b);return b.join("")},formatSelection:function(a){return a?a.text:g},formatResultCssClass:function(){return g},formatNoMatches:function(){return"No matches found"},
81
- formatInputTooShort:function(a,b){return"Please enter "+(b-a.length)+" more characters"},formatSelectionTooBig:function(a){return"You can only select "+a+" item"+(1==a?"":"s")},formatLoadMore:function(){return"Loading more results..."},formatSearching:function(){return"Searching..."},minimumResultsForSearch:0,minimumInputLength:0,maximumSelectionSize:0,id:function(a){return a.id},matcher:function(a,b){return 0<=b.toUpperCase().indexOf(a.toUpperCase())},separator:",",tokenSeparators:[],tokenizer:H,
82
- escapeMarkup:function(a){return a&&"string"===typeof a?a.replace(/&/g,"&amp;"):a},blurOnChange:!1};window.Select2={query:{ajax:C,local:D,tags:E},util:{debounce:A,markMatch:B},"class":{"abstract":w,single:y,multi:z}}}})(jQuery);
1
+ (function(f){"undefined"==typeof f.fn.each2&&f.fn.extend({each2:function(g){for(var k=f([0]),p=-1,v=this.length;++p<v&&(k.context=k[0]=this[p])&&!1!==g.call(k[0],p,k););return this}})})(jQuery);
2
+ (function(f,g){function k(a,b){var c=0,d=b.length,n;if("undefined"===typeof a)return-1;if(a.constructor===String)for(;c<d;c+=1){if(0===a.localeCompare(b[c]))return c}else for(;c<d;c+=1)if(n=b[c],n.constructor===String){if(0===n.localeCompare(a))return c}else if(n===a)return c;return-1}function p(a,b){return a===b?!0:a===g||b===g||null===a||null===b?!1:a.constructor===String?0===a.localeCompare(b):b.constructor===String?0===b.localeCompare(a):!1}function v(a,b){var c,d,n;if(null===a||1>a.length)return[];
3
+ c=a.split(b);d=0;for(n=c.length;d<n;d+=1)c[d]=f.trim(c[d]);return c}function K(a){a.bind("keydown",function(){f.data(a,"keyup-change-value")===g&&f.data(a,"keyup-change-value",a.val())});a.bind("keyup",function(){var b=f.data(a,"keyup-change-value");b!==g&&a.val()!==b&&(f.removeData(a,"keyup-change-value"),a.trigger("keyup-change"))})}function L(a){a.bind("mousemove",function(a){var c=f.data(document,"select2-lastpos");(c===g||c.x!==a.pageX||c.y!==a.pageY)&&f(a.target).trigger("mousemove-filtered",
4
+ a)})}function D(a,b,c){c=c||g;var d;return function(){var n=arguments;window.clearTimeout(d);d=window.setTimeout(function(){b.apply(c,n)},a)}}function M(a){var b=!1,c;return function(){!1===b&&(c=a(),b=!0);return c}}function N(a,b){var c=D(a,function(a){b.trigger("scroll-debounced",a)});b.bind("scroll",function(a){0<=k(a.target,b.get())&&c(a)})}function m(a){a.preventDefault();a.stopPropagation()}function E(a,b,c){var d=a.toUpperCase().indexOf(b.toUpperCase());b=b.length;0>d?c.push(a):(c.push(a.substring(0,
5
+ d)),c.push("<span class='select2-match'>"),c.push(a.substring(d,d+b)),c.push("</span>"),c.push(a.substring(d+b,a.length)))}function F(a){var b,c=0,d=null,n=a.quietMillis||100;return function(h){window.clearTimeout(b);b=window.setTimeout(function(){var b=c+=1,n=a.data,e=a.transport||f.ajax,g=a.traditional||!1,O=a.type||"GET",n=n.call(this,h.term,h.page,h.context);null!==d&&d.abort();d=e.call(null,{url:a.url,dataType:a.dataType,data:n,type:O,traditional:g,success:function(d){b<c||(d=a.results(d,h.page),
6
+ h.callback(d))}})},n)}}function G(a){var b=a,c,d=function(a){return""+a.text};f.isArray(b)||(d=b.text,f.isFunction(d)||(c=b.text,d=function(a){return a[c]}),b=b.results);return function(a){var c=a.term,e={results:[]},l;""===c?a.callback({results:b}):(l=function(b,e){var g,w;b=b[0];if(b.children){g={};for(w in b)b.hasOwnProperty(w)&&(g[w]=b[w]);g.children=[];f(b.children).each2(function(a,b){l(b,g.children)});g.children.length&&e.push(g)}else a.matcher(c,d(b))&&e.push(b)},f(b).each2(function(a,b){l(b,
7
+ e.results)}),a.callback(e))}}function H(a){return f.isFunction(a)?a:function(b){var c=b.term,d={results:[]};f(a).each(function(){var a=this.text!==g,f=a?this.text:this;if(""===c||b.matcher(c,f))d.results.push(a?this:{id:this,text:this})});b.callback(d)}}function x(a,b){if(f.isFunction(a))return!0;if(!a)return!1;throw Error("formatterName must be a function or a falsy value");}function y(a){return f.isFunction(a)?a():a}function I(a){var b=0;f.each(a,function(a,d){d.children?b+=I(d.children):b++});
8
+ return b}function P(a,b,c,d){var f=a,h=!1,e,l,q,r;if(!d.createSearchChoice||!d.tokenSeparators||1>d.tokenSeparators.length)return g;for(;;){h=-1;l=0;for(q=d.tokenSeparators.length;l<q&&!(r=d.tokenSeparators[l],h=a.indexOf(r),0<=h);l++);if(0>h)break;e=a.substring(0,h);a=a.substring(h+r.length);if(0<e.length&&(e=d.createSearchChoice(e,b),e!==g&&null!==e&&d.id(e)!==g&&null!==d.id(e))){h=!1;l=0;for(q=b.length;l<q;l++)if(p(d.id(e),d.id(b[l]))){h=!0;break}h||c(e)}}if(0!=f.localeCompare(a))return a}function A(a,
9
+ b){var c=function(){};c.prototype=new a;c.prototype.constructor=c;c.prototype.parent=a.prototype;c.prototype=f.extend(c.prototype,b);return c}if(window.Select2===g){var e,z,B,C,J,t;e={TAB:9,ENTER:13,ESC:27,SPACE:32,LEFT:37,UP:38,RIGHT:39,DOWN:40,SHIFT:16,CTRL:17,ALT:18,PAGE_UP:33,PAGE_DOWN:34,HOME:36,END:35,BACKSPACE:8,DELETE:46,isArrow:function(a){a=a.which?a.which:a;switch(a){case e.LEFT:case e.RIGHT:case e.UP:case e.DOWN:return!0}return!1},isControl:function(a){switch(a.which){case e.SHIFT:case e.CTRL:case e.ALT:return!0}return a.metaKey?
10
+ !0:!1},isFunctionKey:function(a){a=a.which?a.which:a;return 112<=a&&123>=a}};J=function(){var a=1;return function(){return a++}}();f(document).delegate("body","mousemove",function(a){f.data(document,"select2-lastpos",{x:a.pageX,y:a.pageY})});f(document).ready(function(){f(document).delegate("body","mousedown touchend",function(a){var b=f(a.target).closest("div.select2-container").get(0),c;b?f(document).find("div.select2-container-active").each(function(){this!==b&&f(this).data("select2").blur()}):
11
+ (b=f(a.target).closest("div.select2-drop").get(0),f(document).find("div.select2-drop-active").each(function(){this!==b&&f(this).data("select2").blur()}));b=f(a.target);c=b.attr("for");"LABEL"===a.target.tagName&&(c&&0<c.length)&&(b=f("#"+c),b=b.data("select2"),b!==g&&(b.focus(),a.preventDefault()))})});z=A(Object,{bind:function(a){var b=this;return function(){a.apply(b,arguments)}},init:function(a){var b,c;this.opts=a=this.prepareOpts(a);this.id=a.id;a.element.data("select2")!==g&&null!==a.element.data("select2")&&
12
+ this.destroy();this.enabled=!0;this.container=this.createContainer();this.containerId="s2id_"+(a.element.attr("id")||"autogen"+J());this.containerSelector="#"+this.containerId.replace(/([;&,\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g,"\\$1");this.container.attr("id",this.containerId);this.body=M(function(){return a.element.closest("body")});a.element.attr("class")!==g&&this.container.addClass(a.element.attr("class").replace(/validate\[[\S ]+] ?/,""));this.container.css(y(a.containerCss));this.container.addClass(y(a.containerCssClass));
13
+ this.opts.element.data("select2",this).hide().before(this.container);this.container.data("select2",this);this.dropdown=this.container.find(".select2-drop");this.dropdown.addClass(y(a.dropdownCssClass));this.dropdown.data("select2",this);this.results=b=this.container.find(".select2-results");this.search=c=this.container.find("input.select2-input");c.attr("tabIndex",this.opts.element.attr("tabIndex"));this.resultsPage=0;this.context=null;this.initContainer();this.initContainerWidth();L(this.results);
14
+ this.dropdown.delegate(".select2-results","mousemove-filtered",this.bind(this.highlightUnderEvent));N(80,this.results);this.dropdown.delegate(".select2-results","scroll-debounced",this.bind(this.loadMoreIfNeeded));f.fn.mousewheel&&b.mousewheel(function(a,c,f,e){c=b.scrollTop();0<e&&0>=c-e?(b.scrollTop(0),m(a)):0>e&&b.get(0).scrollHeight-b.scrollTop()+e<=b.height()&&(b.scrollTop(b.get(0).scrollHeight-b.height()),m(a))});K(c);c.bind("keyup-change",this.bind(this.updateResults));c.bind("focus",function(){c.addClass("select2-focused");
15
+ " "===c.val()&&c.val("")});c.bind("blur",function(){c.removeClass("select2-focused")});this.dropdown.delegate(".select2-results","mouseup",this.bind(function(a){0<f(a.target).closest(".select2-result-selectable:not(.select2-disabled)").length?(this.highlightUnderEvent(a),this.selectHighlighted(a)):this.focusSearch();m(a)}));this.dropdown.bind("click mouseup mousedown",function(a){a.stopPropagation()});f.isFunction(this.opts.initSelection)&&(this.initSelection(),this.monitorSource());(a.element.is(":disabled")||
16
+ a.element.is("[readonly='readonly']"))&&this.disable()},destroy:function(){var a=this.opts.element.data("select2");a!==g&&(a.container.remove(),a.dropdown.remove(),a.opts.element.removeData("select2").unbind(".select2").show())},prepareOpts:function(a){var b,c,d;b=a.element;"select"===b.get(0).tagName.toLowerCase()&&(this.select=c=a.element);c&&f.each("id multiple ajax query createSearchChoice initSelection data tags".split(" "),function(){if(this in a)throw Error("Option '"+this+"' is not allowed for Select2 when attached to a <select> element.");
17
+ });a=f.extend({},{populateResults:function(b,c,d){var e,q=this.opts.id,r=this;e=function(b,c,n){var h,m,k,p,u,s,t;h=0;for(m=b.length;h<m;h+=1)k=b[h],p=q(k)!==g,u=k.children&&0<k.children.length,s=f("<li></li>"),s.addClass("select2-results-dept-"+n),s.addClass("select2-result"),s.addClass(p?"select2-result-selectable":"select2-result-unselectable"),u&&s.addClass("select2-result-with-children"),s.addClass(r.opts.formatResultCssClass(k)),p=f("<div></div>"),p.addClass("select2-result-label"),t=a.formatResult(k,
18
+ p,d),t!==g&&p.html(r.opts.escapeMarkup(t)),s.append(p),u&&(u=f("<ul></ul>"),u.addClass("select2-result-sub"),e(k.children,u,n+1),s.append(u)),s.data("select2-data",k),c.append(s)};e(c,b,0)}},f.fn.select2.defaults,a);"function"!==typeof a.id&&(d=a.id,a.id=function(a){return a[d]});if(c)a.query=this.bind(function(a){var c={results:[],more:!1},d=a.term,e,q,r;r=function(b,c){var f;b.is("option")?a.matcher(d,b.text(),b)&&c.push({id:b.attr("value"),text:b.text(),element:b.get(),css:b.attr("class")}):b.is("optgroup")&&
19
+ (f={text:b.attr("label"),children:[],element:b.get(),css:b.attr("class")},b.children().each2(function(a,b){r(b,f.children)}),0<f.children.length&&c.push(f))};e=b.children();this.getPlaceholder()!==g&&0<e.length&&(q=e[0],""===f(q).text()&&(e=e.not(q)));e.each2(function(a,b){r(b,c.results)});a.callback(c)}),a.id=function(a){return a.id},a.formatResultCssClass=function(a){return a.css};else if(!("query"in a))if("ajax"in a){if((c=a.element.data("ajax-url"))&&0<c.length)a.ajax.url=c;a.query=F(a.ajax)}else"data"in
20
+ a?a.query=G(a.data):"tags"in a&&(a.query=H(a.tags),a.createSearchChoice=function(a){return{id:a,text:a}},a.initSelection=function(b,c){var d=[];f(v(b.val(),a.separator)).each(function(){var b=this,c=this,e=a.tags;f.isFunction(e)&&(e=e());f(e).each(function(){if(p(this.id,b))return c=this.text,!1});d.push({id:b,text:c})});c(d)});if("function"!==typeof a.query)throw"query function not defined for Select2 "+a.element.attr("id");return a},monitorSource:function(){this.opts.element.bind("change.select2",
21
+ this.bind(function(a){!0!==this.opts.element.data("select2-change-triggered")&&this.initSelection()}))},triggerChange:function(a){a=a||{};a=f.extend({},a,{type:"change",val:this.val()});this.opts.element.data("select2-change-triggered",!0);this.opts.element.trigger(a);this.opts.element.data("select2-change-triggered",!1);this.opts.element.click();this.opts.blurOnChange&&this.opts.element.blur()},enable:function(){this.enabled||(this.enabled=!0,this.container.removeClass("select2-container-disabled"))},
22
+ disable:function(){this.enabled&&(this.close(),this.enabled=!1,this.container.addClass("select2-container-disabled"))},opened:function(){return this.container.hasClass("select2-dropdown-open")},positionDropdown:function(){var a=this.container.offset(),b=this.container.outerHeight(),c=this.container.outerWidth(),d=this.dropdown.outerHeight(),e=f(window).scrollTop()+document.documentElement.clientHeight,b=a.top+b,h=a.left,e=b+d<=e,g=a.top-d>=this.body().scrollTop(),l=this.dropdown.hasClass("select2-drop-above"),
23
+ q;"static"!==this.body().css("position")&&(q=this.body().offset(),b-=q.top,h-=q.left);l?(l=!0,!g&&e&&(l=!1)):(l=!1,!e&&g&&(l=!0));l?(b=a.top-d,this.container.addClass("select2-drop-above"),this.dropdown.addClass("select2-drop-above")):(this.container.removeClass("select2-drop-above"),this.dropdown.removeClass("select2-drop-above"));a=f.extend({top:b,left:h,width:c},y(this.opts.dropdownCss));this.dropdown.css(a)},shouldOpen:function(){var a;if(this.opened())return!1;a=f.Event("open");this.opts.element.trigger(a);
24
+ return!a.isDefaultPrevented()},clearDropdownAlignmentPreference:function(){this.container.removeClass("select2-drop-above");this.dropdown.removeClass("select2-drop-above")},open:function(){if(!this.shouldOpen())return!1;window.setTimeout(this.bind(this.opening),1);return!0},opening:function(){var a=this.containerId,b=this.containerSelector,c="scroll."+a,d="resize."+a;this.container.parents().each(function(){f(this).bind(c,function(){var a=f(b);0==a.length&&f(this).unbind(c);a.select2("close")})});
25
+ f(window).bind(d,function(){var a=f(b);0==a.length&&f(window).unbind(d);a.select2("close")});this.clearDropdownAlignmentPreference();" "===this.search.val()&&this.search.val("");this.container.addClass("select2-dropdown-open").addClass("select2-container-active");this.updateResults(!0);this.dropdown[0]!==this.body().children().last()[0]&&this.dropdown.detach().appendTo(this.body());this.dropdown.show();this.positionDropdown();this.dropdown.addClass("select2-drop-active");this.ensureHighlightVisible();
26
+ this.focusSearch()},close:function(){if(this.opened()){var a=this;this.container.parents().each(function(){f(this).unbind("scroll."+a.containerId)});f(window).unbind("resize."+this.containerId);this.clearDropdownAlignmentPreference();this.dropdown.hide();this.container.removeClass("select2-dropdown-open").removeClass("select2-container-active");this.results.empty();this.clearSearch();this.opts.element.trigger(f.Event("close"))}},clearSearch:function(){},ensureHighlightVisible:function(){var a=this.results,
27
+ b,c,d,e;c=this.highlight();0>c||(0==c?a.scrollTop(0):(b=a.find(".select2-result-selectable"),d=f(b[c]),e=d.offset().top+d.outerHeight(),c===b.length-1&&(b=a.find("li.select2-more-results"),0<b.length&&(e=b.offset().top+b.outerHeight())),b=a.offset().top+a.outerHeight(),e>b&&a.scrollTop(a.scrollTop()+(e-b)),d=d.offset().top-a.offset().top,0>d&&a.scrollTop(a.scrollTop()+d)))},moveHighlight:function(a){for(var b=this.results.find(".select2-result-selectable"),c=this.highlight();-1<c&&c<b.length;){var c=
28
+ c+a,d=f(b[c]);if(d.hasClass("select2-result-selectable")&&!d.hasClass("select2-disabled")){this.highlight(c);break}}},highlight:function(a){var b=this.results.find(".select2-result-selectable").not(".select2-disabled");if(0===arguments.length)return k(b.filter(".select2-highlighted")[0],b.get());a>=b.length&&(a=b.length-1);0>a&&(a=0);b.removeClass("select2-highlighted");f(b[a]).addClass("select2-highlighted");this.ensureHighlightVisible()},countSelectableResults:function(){return this.results.find(".select2-result-selectable").not(".select2-disabled").length},
29
+ highlightUnderEvent:function(a){a=f(a.target).closest(".select2-result-selectable");if(0<a.length&&!a.is(".select2-highlighted")){var b=this.results.find(".select2-result-selectable");this.highlight(b.index(a))}else 0==a.length&&this.results.find(".select2-highlighted").removeClass("select2-highlighted")},loadMoreIfNeeded:function(){var a=this.results,b=a.find("li.select2-more-results"),c,d=this.resultsPage+1,f=this,e=this.search.val(),g=this.context;0!==b.length&&(c=b.offset().top-a.offset().top-
30
+ a.height(),0>=c&&(b.addClass("select2-active"),this.opts.query({term:e,page:d,context:g,matcher:this.opts.matcher,callback:this.bind(function(c){f.opened()&&(f.opts.populateResults.call(this,a,c.results,{term:e,page:d,context:g}),!0===c.more?(b.detach().appendTo(a).text(f.opts.formatLoadMore(d+1)),window.setTimeout(function(){f.loadMoreIfNeeded()},10)):b.remove(),f.positionDropdown(),f.resultsPage=d)})})))},tokenize:function(){},updateResults:function(a){function b(){e.scrollTop(0);d.removeClass("select2-active");
31
+ l.positionDropdown()}function c(a){e.html(l.opts.escapeMarkup(a));b()}var d=this.search,e=this.results,h=this.opts,k,l=this;if(!(!0!==a&&(!1===this.showSearchInput||!this.opened()))){d.addClass("select2-active");if(1<=h.maximumSelectionSize&&(k=this.data(),f.isArray(k)&&k.length>=h.maximumSelectionSize&&x(h.formatSelectionTooBig,"formatSelectionTooBig"))){c("<li class='select2-selection-limit'>"+h.formatSelectionTooBig(h.maximumSelectionSize)+"</li>");return}d.val().length<h.minimumInputLength&&x(h.formatInputTooShort,
32
+ "formatInputTooShort")?c("<li class='select2-no-results'>"+h.formatInputTooShort(d.val(),h.minimumInputLength)+"</li>"):(c("<li class='select2-searching'>"+h.formatSearching()+"</li>"),k=this.tokenize(),k!=g&&null!=k&&d.val(k),this.resultsPage=1,h.query({term:d.val(),page:this.resultsPage,context:null,matcher:h.matcher,callback:this.bind(function(k){var m;this.opened()&&(this.context=k.context===g?null:k.context,this.opts.createSearchChoice&&""!==d.val()&&(m=this.opts.createSearchChoice.call(null,
33
+ d.val(),k.results),m!==g&&null!==m&&l.id(m)!==g&&null!==l.id(m)&&0===f(k.results).filter(function(){return p(l.id(this),l.id(m))}).length&&k.results.unshift(m)),0===k.results.length&&x(h.formatNoMatches,"formatNoMatches")?c("<li class='select2-no-results'>"+h.formatNoMatches(d.val())+"</li>"):(e.empty(),l.opts.populateResults.call(this,e,k.results,{term:d.val(),page:this.resultsPage,context:null}),!0===k.more&&x(h.formatLoadMore,"formatLoadMore")&&(e.append("<li class='select2-more-results'>"+l.opts.escapeMarkup(h.formatLoadMore(this.resultsPage))+
34
+ "</li>"),window.setTimeout(function(){l.loadMoreIfNeeded()},10)),this.postprocessResults(k,a),b()))})}))}},cancel:function(){this.close()},blur:function(){this.close();this.container.removeClass("select2-container-active");this.dropdown.removeClass("select2-drop-active");this.search[0]===document.activeElement&&this.search.blur();this.clearSearch();this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus")},focusSearch:function(){this.search.show();this.search.focus();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  window.setTimeout(this.bind(function(){this.search.show();this.search.focus();this.search.val(this.search.val())}),10)},selectHighlighted:function(){var a=this.highlight(),b=this.results.find(".select2-highlighted").not(".select2-disabled"),c=b.closest(".select2-result-selectable").data("select2-data");c&&(b.addClass("select2-disabled"),this.highlight(a),this.onSelect(c))},getPlaceholder:function(){return this.opts.element.attr("placeholder")||this.opts.element.attr("data-placeholder")||this.opts.element.data("placeholder")||
36
+ this.opts.placeholder},initContainerWidth:function(){var a=function(){var a,c,d,e;if("off"===this.opts.width)return null;if("element"===this.opts.width)return 0===this.opts.element.outerWidth()?"auto":this.opts.element.outerWidth()+"px";if("copy"===this.opts.width||"resolve"===this.opts.width){a=this.opts.element.attr("style");if(a!==g){a=a.split(";");d=0;for(e=a.length;d<e;d+=1)if(c=a[d].replace(/\s/g,"").match(/width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/),null!==c&&1<=c.length)return c[1]}return"resolve"===
37
+ this.opts.width?(a=this.opts.element.css("width"),0<a.indexOf("%")?a:0===this.opts.element.outerWidth()?"auto":this.opts.element.outerWidth()+"px"):null}return f.isFunction(this.opts.width)?this.opts.width():this.opts.width}.call(this);null!==a&&this.container.attr("style","width: "+a)}});B=A(z,{createContainer:function(){return f("<div></div>",{"class":"select2-container"}).html(" <a href='#' onclick='return false;' class='select2-choice'> <span></span><abbr class='select2-search-choice-close' style='display:none;'></abbr> <div><b></b></div></a> <div class='select2-drop select2-offscreen'> <div class='select2-search'> <input type='text' autocomplete='off' class='select2-input'/> </div> <ul class='select2-results'> </ul></div>")},
38
  opening:function(){this.search.show();this.parent.opening.apply(this,arguments);this.dropdown.removeClass("select2-offscreen")},close:function(){this.opened()&&(this.parent.close.apply(this,arguments),this.dropdown.removeAttr("style").addClass("select2-offscreen").insertAfter(this.selection).show())},focus:function(){this.close();this.selection.focus()},isFocused:function(){return this.selection[0]===document.activeElement},cancel:function(){this.parent.cancel.apply(this,arguments);this.selection.focus()},
39
+ initContainer:function(){var a,b=this.dropdown;this.selection=a=this.container.find(".select2-choice");this.search.bind("keydown",this.bind(function(a){if(this.enabled)if(a.which===e.PAGE_UP||a.which===e.PAGE_DOWN)m(a);else if(this.opened())switch(a.which){case e.UP:case e.DOWN:this.moveHighlight(a.which===e.UP?-1:1);m(a);break;case e.TAB:case e.ENTER:this.selectHighlighted();m(a);break;case e.ESC:this.cancel(a),m(a)}else a.which===e.TAB||e.isControl(a)||e.isFunctionKey(a)||a.which===e.ESC||!1===
40
+ this.opts.openOnEnter&&a.which===e.ENTER||this.open()}));this.search.bind("focus",this.bind(function(){this.selection.attr("tabIndex","-1")}));this.search.bind("blur",this.bind(function(){this.opened()||this.container.removeClass("select2-container-active");window.setTimeout(this.bind(function(){this.selection.attr("tabIndex",this.opts.element.attr("tabIndex"))}),10)}));a.bind("mousedown",this.bind(function(a){this.opened()?(this.close(),this.selection.focus()):this.enabled&&this.open()}));b.bind("mousedown",
41
+ this.bind(function(){this.search.focus()}));a.bind("focus",this.bind(function(){this.container.addClass("select2-container-active");this.search.attr("tabIndex","-1")}));a.bind("blur",this.bind(function(){this.opened()||this.container.removeClass("select2-container-active");window.setTimeout(this.bind(function(){this.search.attr("tabIndex",this.opts.element.attr("tabIndex"))}),10)}));a.bind("keydown",this.bind(function(a){if(this.enabled)if(a.which===e.PAGE_UP||a.which===e.PAGE_DOWN)m(a);else if(!(a.which===
42
+ e.TAB||e.isControl(a)||e.isFunctionKey(a)||a.which===e.ESC)&&!(!1===this.opts.openOnEnter&&a.which===e.ENTER))if(a.which==e.DELETE)this.opts.allowClear&&this.clear();else{this.open();if(a.which!==e.ENTER&&!(48>a.which)){var b=String.fromCharCode(a.which).toLowerCase();a.shiftKey&&(b=b.toUpperCase());this.search.focus();this.search.val(b)}m(a)}}));a.delegate("abbr","mousedown",this.bind(function(a){this.enabled&&(this.clear(),m(a),this.close(),this.triggerChange(),this.selection.focus())}));this.setPlaceholder();
43
  this.search.bind("focus",this.bind(function(){this.container.addClass("select2-container-active")}))},clear:function(){this.opts.element.val("");this.selection.find("span").empty();this.selection.removeData("select2-data");this.setPlaceholder()},initSelection:function(){if(""===this.opts.element.val())this.close(),this.setPlaceholder();else{var a=this;this.opts.initSelection.call(null,this.opts.element,function(b){b!==g&&null!==b&&(a.updateSelection(b),a.close(),a.setPlaceholder())})}},prepareOpts:function(){var a=
44
+ this.parent.prepareOpts.apply(this,arguments);"select"===a.element.get(0).tagName.toLowerCase()&&(a.initSelection=function(a,c){var d=a.find(":selected");f.isFunction(c)&&c({id:d.attr("value"),text:d.text()})});return a},setPlaceholder:function(){var a=this.getPlaceholder();""===this.opts.element.val()&&a!==g&&!(this.select&&""!==this.select.find("option:first").text())&&(this.selection.find("span").html(this.opts.escapeMarkup(a)),this.selection.addClass("select2-default"),this.selection.find("abbr").hide())},
45
+ postprocessResults:function(a,b){var c=0,d=this,e=!0;this.results.find(".select2-result-selectable").each2(function(a,b){if(p(d.id(b.data("select2-data")),d.opts.element.val()))return c=a,!1});this.highlight(c);!0===b&&(e=this.showSearchInput=I(a.results)>=this.opts.minimumResultsForSearch,this.dropdown.find(".select2-search")[e?"removeClass":"addClass"]("select2-search-hidden"),f(this.dropdown,this.container)[e?"addClass":"removeClass"]("select2-with-searchbox"))},onSelect:function(a){var b=this.opts.element.val();
46
+ this.opts.element.val(this.id(a));this.updateSelection(a);this.close();this.selection.focus();p(b,this.id(a))||this.triggerChange()},updateSelection:function(a){var b=this.selection.find("span");this.selection.data("select2-data",a);b.empty();a=this.opts.formatSelection(a,b);a!==g&&b.append(this.opts.escapeMarkup(a));this.selection.removeClass("select2-default");this.opts.allowClear&&this.getPlaceholder()!==g&&this.selection.find("abbr").show()},val:function(){var a,b=null,c=this;if(0===arguments.length)return this.opts.element.val();
47
  a=arguments[0];if(this.select)this.select.val(a).find(":selected").each2(function(a,c){b={id:c.attr("value"),text:c.text()};return!1}),this.updateSelection(b),this.setPlaceholder();else{if(this.opts.initSelection===g)throw Error("cannot call val() if initSelection() is not defined");a?(this.opts.element.val(a),this.opts.initSelection(this.opts.element,function(a){c.opts.element.val(!a?"":c.id(a));c.updateSelection(a);c.setPlaceholder()})):this.clear()}},clearSearch:function(){this.search.val("")},
48
+ data:function(a){var b;if(0===arguments.length)return b=this.selection.data("select2-data"),b==g&&(b=null),b;!a||""===a?this.clear():(this.opts.element.val(!a?"":this.id(a)),this.updateSelection(a))}});C=A(z,{createContainer:function(){return f("<div></div>",{"class":"select2-container select2-container-multi"}).html(" <ul class='select2-choices'> <li class='select2-search-field'> <input type='text' autocomplete='off' class='select2-input'> </li></ul><div class='select2-drop select2-drop-multi' style='display:none;'> <ul class='select2-results'> </ul></div>")},
49
+ prepareOpts:function(){var a=this.parent.prepareOpts.apply(this,arguments);"select"===a.element.get(0).tagName.toLowerCase()&&(a.initSelection=function(a,c){var d=[];a.find(":selected").each2(function(a,b){d.push({id:b.attr("value"),text:b.text()})});f.isFunction(c)&&c(d)});return a},initContainer:function(){var a;this.searchContainer=this.container.find(".select2-search-field");this.selection=a=this.container.find(".select2-choices");this.search.bind("keydown",this.bind(function(b){if(this.enabled){if(b.which===
50
+ e.BACKSPACE&&""===this.search.val()){this.close();var c;c=a.find(".select2-search-choice-focus");if(0<c.length){this.unselect(c.first());this.search.width(10);m(b);return}c=a.find(".select2-search-choice");0<c.length&&c.last().addClass("select2-search-choice-focus")}else a.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");if(this.opened())switch(b.which){case e.UP:case e.DOWN:this.moveHighlight(b.which===e.UP?-1:1);m(b);return;case e.ENTER:case e.TAB:this.selectHighlighted();
51
+ m(b);return;case e.ESC:this.cancel(b);m(b);return}if(!(b.which===e.TAB||e.isControl(b)||e.isFunctionKey(b)||b.which===e.BACKSPACE||b.which===e.ESC)&&!(!1===this.opts.openOnEnter&&b.which===e.ENTER))this.open(),(b.which===e.PAGE_UP||b.which===e.PAGE_DOWN)&&m(b)}}));this.search.bind("keyup",this.bind(this.resizeSearch));this.search.bind("blur",this.bind(function(a){this.container.removeClass("select2-container-active");this.search.removeClass("select2-focused");this.clearSearch();a.stopImmediatePropagation()}));
52
+ this.container.delegate(".select2-choices","mousedown",this.bind(function(a){this.enabled&&!(0<f(a.target).closest(".select2-search-choice").length)&&(this.clearPlaceholder(),this.open(),this.focusSearch(),a.preventDefault())}));this.container.delegate(".select2-choices","focus",this.bind(function(){this.enabled&&(this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"),this.clearPlaceholder())}));this.clearSearch()},enable:function(){this.enabled||(this.parent.enable.apply(this,
53
+ arguments),this.search.removeAttr("disabled"))},disable:function(){this.enabled&&(this.parent.disable.apply(this,arguments),this.search.attr("disabled",!0))},initSelection:function(){""===this.opts.element.val()&&(this.updateSelection([]),this.close(),this.clearSearch());if(this.select||""!==this.opts.element.val()){var a=this;this.opts.initSelection.call(null,this.opts.element,function(b){b!==g&&null!==b&&(a.updateSelection(b),a.close(),a.clearSearch())})}},clearSearch:function(){var a=this.getPlaceholder();
54
  a!==g&&0===this.getVal().length&&!1===this.search.hasClass("select2-focused")?(this.search.val(a).addClass("select2-default"),this.resizeSearch()):this.search.val(" ").width(10)},clearPlaceholder:function(){this.search.hasClass("select2-default")?this.search.val("").removeClass("select2-default"):" "===this.search.val()&&this.search.val("")},opening:function(){this.parent.opening.apply(this,arguments);this.clearPlaceholder();this.resizeSearch();this.focusSearch()},close:function(){this.opened()&&
55
+ this.parent.close.apply(this,arguments)},focus:function(){this.close();this.search.focus()},isFocused:function(){return this.search.hasClass("select2-focused")},updateSelection:function(a){var b=[],c=[],d=this;f(a).each(function(){0>k(d.id(this),b)&&(b.push(d.id(this)),c.push(this))});a=c;this.selection.find(".select2-search-choice").remove();f(a).each(function(){d.addSelectedChoice(this)});d.postprocessResults()},tokenize:function(){var a=this.search.val(),a=this.opts.tokenizer(a,this.data(),this.bind(this.onSelect),
56
+ this.opts);null!=a&&a!=g&&(this.search.val(a),0<a.length&&this.open())},onSelect:function(a){this.addSelectedChoice(a);this.select&&this.postprocessResults();this.opts.closeOnSelect?(this.close(),this.search.width(10)):0<this.countSelectableResults()?(this.search.width(10),this.resizeSearch(),this.positionDropdown()):this.close();this.triggerChange({added:a});this.focusSearch()},cancel:function(){this.close();this.focusSearch()},addSelectedChoice:function(a){var b=f("<li class='select2-search-choice'> <div></div> <a href='#' onclick='return false;' class='select2-search-choice-close' tabindex='-1'></a></li>"),
57
+ c=this.id(a),d=this.getVal(),e;e=this.opts.formatSelection(a,b);b.find("div").replaceWith("<div>"+this.opts.escapeMarkup(e)+"</div>");b.find(".select2-search-choice-close").bind("mousedown",m).bind("click dblclick",this.bind(function(a){this.enabled&&(f(a.target).closest(".select2-search-choice").fadeOut("fast",this.bind(function(){this.unselect(f(a.target));this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");this.close();this.focusSearch()})).dequeue(),
58
+ m(a))})).bind("focus",this.bind(function(){this.enabled&&(this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"))}));b.data("select2-data",a);b.insertBefore(this.searchContainer);d.push(c);this.setVal(d)},unselect:function(a){var b=this.getVal(),c,d;a=a.closest(".select2-search-choice");if(0===a.length)throw"Invalid argument: "+a+". Must be .select2-search-choice";c=a.data("select2-data");d=k(this.id(c),b);0<=d&&(b.splice(d,1),this.setVal(b),this.select&&
59
+ this.postprocessResults());a.remove();this.triggerChange({removed:c})},postprocessResults:function(){var a=this.getVal(),b=this.results.find(".select2-result-selectable"),c=this.results.find(".select2-result-with-children"),d=this;b.each2(function(b,c){var e=d.id(c.data("select2-data"));0<=k(e,a)?c.addClass("select2-disabled").removeClass("select2-result-selectable"):c.removeClass("select2-disabled").addClass("select2-result-selectable")});c.each2(function(a,b){0==b.find(".select2-result-selectable").length?
60
+ b.addClass("select2-disabled"):b.removeClass("select2-disabled")});b.each2(function(a,b){if(!b.hasClass("select2-disabled")&&b.hasClass("select2-result-selectable"))return d.highlight(0),!1})},resizeSearch:function(){var a,b,c,d,e=this.search.outerWidth()-this.search.width();a=this.search;t||(c=a[0].currentStyle||window.getComputedStyle(a[0],null),t=f("<div></div>").css({position:"absolute",left:"-10000px",top:"-10000px",display:"none",fontSize:c.fontSize,fontFamily:c.fontFamily,fontSt