Version Description
Small features, UX and Content Tweaks:
- As requested by the masses...added AJAX functionality to mini calendar widget for navigating forward/backward from month to month (PRO only).
- Incorporated "Events" menu to the admin bar, featuring Events-specific options and integrating with Modern Tribe add-ons.
- Added new App Shop link to Events admin menu / admin bar menu to view and download other Modern Tribe plugins & add-ons.
- Added audit info metabox to admin (just enable it by adding define('TRIBE_SHOW_EVENT_AUDITING', true); to your wp-config file).
- Included new Swedish translation files (free & PRO), courtesy of Ben Andersen.
- Included new Spanish translation files (free & PRO), courtesy of Hector at Signo Creativo.
Bug Fixes:
- Google Calendar import now works and truncates appropriately for extremely long event listings (thanks for the fix, Andy Fragen!)
- Fixed settings page slug so as not to break backwards compatibility
- Got rid of a superfluous daily query of events that was running for once-per-day every month-view load, thereby improving overall load speed
- Tweaked a bug where TribeEvents::uglyLink() was missing day'
- A message is now displayed in place of the events-slug boxes when a user does not have pretty permalinks enabled.
- Next/previous links no longer navigate in order of event ID when pretty permalinks are disabled.
- Contributors are now able to create recurring events.
- Fixed an issue with single quotes getting converted to funky characters upon saving on Additional Fields and other Settings --> The Events Calendar tabs.
- Addressed various other bugs with the Additional Fields tab in Settings --> The Events Calendar.
- Tiny patch to help integrate with the Duotive theme.
- Fixed category rewrite slug issue that occurred with certain permalink structures.
Download this release
Release Info
Developer | shane.pearlman |
Plugin | The Events Calendar |
Version | 2.0.7 |
Comparing to | |
See all releases |
Code changes from version 2.0.6 to 2.0.7
- admin-views/app-shop.php +69 -0
- admin-views/events-meta-box.php +1 -0
- admin-views/tribe-options-general.php +6 -0
- lang/tribe-events-calendar-es_ES.mo +0 -0
- lang/tribe-events-calendar-es_ES.po +112 -112
- lang/tribe-events-calendar-sv_SE.mo +0 -0
- lang/tribe-events-calendar-sv_SE.po +1006 -570
- lang/tribe-events-calendar.pot +251 -201
- lib/the-events-calendar.class.php +112 -14
- lib/tribe-admin-events-list.class.php +1 -1
- lib/tribe-app-shop.class.php +164 -0
- lib/tribe-date-utils.class.php +42 -27
- lib/tribe-event-query.class.php +20 -18
- lib/tribe-field.class.php +2 -1
- lib/tribe-settings-tab.class.php +8 -1
- lib/tribe-settings.class.php +5 -3
- lib/tribe-validate.class.php +58 -4
- public/template-tags/calendar.php +6 -8
- public/template-tags/general.php +13 -0
- readme.txt +36 -5
- resources/app-shop.css +20 -0
- resources/app-shop.js +10 -0
- the-events-calendar.php +1 -1
- views/table-mini.php +42 -4
- views/table.php +5 -5
admin-views/app-shop.php
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="tribe-app-shop" class="wrap">
|
2 |
+
|
3 |
+
<div class="header">
|
4 |
+
<h2><?php _e( 'Tribe App Shop', 'tribe-events-calendar' ); ?></h2>
|
5 |
+
</div>
|
6 |
+
|
7 |
+
|
8 |
+
<div class="content-wrapper">
|
9 |
+
<?php
|
10 |
+
|
11 |
+
if ( $banner ) {
|
12 |
+
$banner_markup = "";
|
13 |
+
if ( property_exists( $banner, 'top_banner_url' ) && $banner->top_banner_url ) {
|
14 |
+
$banner_markup = sprintf( "<img src='%s'/>", $banner->top_banner_url );
|
15 |
+
}
|
16 |
+
if ( property_exists( $banner, 'top_banner_link' ) && $banner->top_banner_link ) {
|
17 |
+
$banner_markup = sprintf( "<a href='%s' target='_blank'>%s</a>", $banner->top_banner_link, $banner_markup );
|
18 |
+
}
|
19 |
+
echo $banner_markup;
|
20 |
+
}
|
21 |
+
|
22 |
+
?>
|
23 |
+
<?php
|
24 |
+
$category = NULL;
|
25 |
+
|
26 |
+
foreach ( (array)$products as $product ) {
|
27 |
+
|
28 |
+
?>
|
29 |
+
|
30 |
+
<?php if ( $product->category != $category ) { ?>
|
31 |
+
|
32 |
+
<?php if ( $category !== NULL ) { ?></div><?php } ?>
|
33 |
+
|
34 |
+
<div class="category-title">
|
35 |
+
<h3><?php echo $product->category; ?></h3>
|
36 |
+
</div>
|
37 |
+
<div class="addon-grid">
|
38 |
+
|
39 |
+
<?php
|
40 |
+
$category = $product->category;
|
41 |
+
} ?>
|
42 |
+
|
43 |
+
<div class="tribe-addon">
|
44 |
+
<div class="thumb">
|
45 |
+
<a href="<?php echo $product->permalink;?>"><img src="<?php echo $product->featured_image_url;?>"/></a>
|
46 |
+
</div>
|
47 |
+
<div class="caption">
|
48 |
+
<h4><a href="<?php echo $product->permalink;?>"><?php echo $product->title;?></a></h4>
|
49 |
+
|
50 |
+
<div class="description">
|
51 |
+
<p><?php echo $product->description;?></p>
|
52 |
+
</div>
|
53 |
+
<div class="meta">
|
54 |
+
<?php
|
55 |
+
if ( $product->version ) {
|
56 |
+
echo sprintf( "<strong>%s</strong>: %s<br/>", __( 'Version', 'tribe-events-calendar' ), $product->version );
|
57 |
+
}
|
58 |
+
if ( $product->last_update ) {
|
59 |
+
echo sprintf( "<strong>%s</strong>: %s<br/>", __( 'Last Update', 'tribe-events-calendar' ), $product->last_update );
|
60 |
+
}
|
61 |
+
?>
|
62 |
+
</div>
|
63 |
+
</div>
|
64 |
+
</div>
|
65 |
+
|
66 |
+
<?php }?>
|
67 |
+
</div>
|
68 |
+
</div>
|
69 |
+
</div>
|
admin-views/events-meta-box.php
CHANGED
@@ -20,6 +20,7 @@ if ( !defined('ABSPATH') ) { die('-1'); }
|
|
20 |
<div id='eventDetails' class="inside eventForm bubble">
|
21 |
<?php $this->do_action('tribe_events_detail_top', $postId, true) ?>
|
22 |
<?php wp_nonce_field( TribeEvents::POSTTYPE, 'ecp_nonce' ); ?>
|
|
|
23 |
<table cellspacing="0" cellpadding="0" id="EventInfo">
|
24 |
<tr>
|
25 |
<td colspan="2" class="tribe_sectionheader"><h4 class="event-time"><?php _e('Event Time & Date', 'tribe-events-calendar'); ?></h4></td>
|
20 |
<div id='eventDetails' class="inside eventForm bubble">
|
21 |
<?php $this->do_action('tribe_events_detail_top', $postId, true) ?>
|
22 |
<?php wp_nonce_field( TribeEvents::POSTTYPE, 'ecp_nonce' ); ?>
|
23 |
+
<?php do_action('tribe_events_eventform_top', $postId); ?>
|
24 |
<table cellspacing="0" cellpadding="0" id="EventInfo">
|
25 |
<tr>
|
26 |
<td colspan="2" class="tribe_sectionheader"><h4 class="event-time"><?php _e('Event Time & Date', 'tribe-events-calendar'); ?></h4></td>
|
admin-views/tribe-options-general.php
CHANGED
@@ -48,6 +48,12 @@ $generalTab = array(
|
|
48 |
'options' => array( 'month' => 'Calendar', 'upcoming' => 'Event List' ),
|
49 |
'validation_type' => 'options',
|
50 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
'eventsSlug' => array(
|
52 |
'type' => 'text',
|
53 |
'label' => __( 'Events URL slug', 'tribe-events-calendar' ),
|
48 |
'options' => array( 'month' => 'Calendar', 'upcoming' => 'Event List' ),
|
49 |
'validation_type' => 'options',
|
50 |
),
|
51 |
+
'unprettyPermalinksUrl' => array(
|
52 |
+
'type' => 'html',
|
53 |
+
'label' => __( 'Events URL slug', 'tribe-events-calendar' ),
|
54 |
+
'html' => '<p class="tribe-field-indent tribe-field-description description">' . __( 'You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=" ' . TribeEvents::getLink( 'home' ) . '">' . TribeEvents::getLink( 'home ' ) . '</a>. In order to edit the slug here, enable pretty permalinks.', 'tribe-events-calendar' ) . '</p>',
|
55 |
+
'conditional' => ('' == get_option( 'permalink_structure' ) ),
|
56 |
+
),
|
57 |
'eventsSlug' => array(
|
58 |
'type' => 'text',
|
59 |
'label' => __( 'Events URL slug', 'tribe-events-calendar' ),
|
lang/tribe-events-calendar-es_ES.mo
CHANGED
Binary file
|
lang/tribe-events-calendar-es_ES.po
CHANGED
@@ -6,8 +6,8 @@ msgstr ""
|
|
6 |
"Project-Id-Version: The Events Calendar 2.0\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
"POT-Creation-Date: 2011-09-09 18:04-0500\n"
|
9 |
-
"PO-Revision-Date:
|
10 |
-
"Last-Translator:
|
11 |
"Language-Team: Modern Tribe, Inc.\n"
|
12 |
"Language: \n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -38,7 +38,7 @@ msgstr "Inicia:"
|
|
38 |
#: ../views/list.php:46
|
39 |
#: ../views/single.php:20
|
40 |
msgid "End:"
|
41 |
-
msgstr "
|
42 |
|
43 |
#: ../views/list.php:54
|
44 |
#: ../views/single.php:47
|
@@ -50,7 +50,7 @@ msgstr "Lugar:"
|
|
50 |
#: ../views/single.php:51
|
51 |
#: ../admin-views/venue-meta-box.php:73
|
52 |
msgid "Phone:"
|
53 |
-
msgstr "
|
54 |
|
55 |
#: ../views/list.php:69
|
56 |
#: ../views/single.php:56
|
@@ -72,20 +72,20 @@ msgstr "Precio:"
|
|
72 |
#: ../views/list.php:95
|
73 |
#, php-format
|
74 |
msgid " listed under %s. Check out upcoming events for this category or view the full calendar."
|
75 |
-
msgstr "listado bajo %s. Ver los eventos
|
76 |
|
77 |
#: ../views/list.php:97
|
78 |
#, php-format
|
79 |
msgid " listed under %s. Check out past events for this category or view the full calendar."
|
80 |
-
msgstr "listado bajo %s. Ver los eventos
|
81 |
|
82 |
#: ../views/list.php:103
|
83 |
msgid "No upcoming events"
|
84 |
-
msgstr "No hay eventos
|
85 |
|
86 |
#: ../views/list.php:107
|
87 |
msgid "No previous events"
|
88 |
-
msgstr "No hay eventos
|
89 |
|
90 |
#: ../views/list.php:120
|
91 |
#: ../views/list.php:122
|
@@ -97,7 +97,7 @@ msgstr "« Eventos Previos"
|
|
97 |
#: ../views/list.php:133
|
98 |
#: ../views/list.php:135
|
99 |
msgid "Next Events »"
|
100 |
-
msgstr "Siguientes
|
101 |
|
102 |
#: ../views/list.php:140
|
103 |
#: ../views/gridview.php:42
|
@@ -115,7 +115,7 @@ msgstr "« Regresar a Eventos"
|
|
115 |
|
116 |
#: ../views/single.php:14
|
117 |
msgid "This event has passed."
|
118 |
-
msgstr "Este evento ya
|
119 |
|
120 |
#: ../views/single.php:29
|
121 |
msgid "Organizer:"
|
@@ -127,11 +127,11 @@ msgstr "email:"
|
|
127 |
|
128 |
#: ../views/single.php:41
|
129 |
msgid "Schedule:"
|
130 |
-
msgstr "
|
131 |
|
132 |
#: ../views/single.php:58
|
133 |
msgid "Click to view a Google Map"
|
134 |
-
msgstr "Click para ver
|
135 |
|
136 |
#: ../views/single.php:86
|
137 |
msgid "Add to Google Calendar"
|
@@ -143,31 +143,31 @@ msgstr "+ Google Calendar"
|
|
143 |
|
144 |
#: ../views/events-list-load-widget-display.php:48
|
145 |
msgid "All Day"
|
146 |
-
msgstr "Todo el
|
147 |
|
148 |
#: ../views/events-list-load-widget-display.php:51
|
149 |
msgid "Ends"
|
150 |
-
msgstr "
|
151 |
|
152 |
#: ../views/ecp-single-template.php:24
|
153 |
msgid "Edit"
|
154 |
-
msgstr "
|
155 |
|
156 |
#: ../admin-views/events-meta-box.php:26
|
157 |
msgid "Event Time & Date"
|
158 |
-
msgstr "
|
159 |
|
160 |
#: ../admin-views/events-meta-box.php:29
|
161 |
msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
|
162 |
-
msgstr "
|
163 |
|
164 |
#: ../admin-views/events-meta-box.php:32
|
165 |
msgid "All day event?"
|
166 |
-
msgstr "¿Evento de todo el
|
167 |
|
168 |
#: ../admin-views/events-meta-box.php:36
|
169 |
msgid "Start Date / Time:"
|
170 |
-
msgstr "Fecha / Hora de Inicio"
|
171 |
|
172 |
#: ../admin-views/events-meta-box.php:39
|
173 |
#: ../admin-views/events-meta-box.php:60
|
@@ -181,19 +181,19 @@ msgstr "@"
|
|
181 |
|
182 |
#: ../admin-views/events-meta-box.php:57
|
183 |
msgid "End Date / Time:"
|
184 |
-
msgstr "Fecha / Hora
|
185 |
|
186 |
#: ../admin-views/events-meta-box.php:79
|
187 |
msgid "Event Location Details"
|
188 |
-
msgstr "Detalles sobre
|
189 |
|
190 |
#: ../admin-views/events-meta-box.php:83
|
191 |
msgid "Use Saved Venue:"
|
192 |
-
msgstr "
|
193 |
|
194 |
#: ../admin-views/events-meta-box.php:91
|
195 |
msgid "Show Google Maps Link:"
|
196 |
-
msgstr "Mostrar
|
197 |
|
198 |
#: ../admin-views/events-meta-box.php:98
|
199 |
msgid "Show Google Map:"
|
@@ -205,7 +205,7 @@ msgstr "Detalles sobre el Organizador del Evento"
|
|
205 |
|
206 |
#: ../admin-views/events-meta-box.php:110
|
207 |
msgid "Use Saved Organizer:"
|
208 |
-
msgstr "Usar Organizador Guardado:"
|
209 |
|
210 |
#: ../admin-views/events-meta-box.php:125
|
211 |
msgid "Event Cost"
|
@@ -213,7 +213,7 @@ msgstr "Precio del Evento:"
|
|
213 |
|
214 |
#: ../admin-views/events-meta-box.php:133
|
215 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
216 |
-
msgstr "Dejar en blanco para esconder.
|
217 |
|
218 |
#: ../admin-views/events-meta-box.php:139
|
219 |
msgid "Additional Functionality"
|
@@ -221,12 +221,12 @@ msgstr "Funcionalidad Adicional"
|
|
221 |
|
222 |
#: ../admin-views/events-meta-box.php:144
|
223 |
msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
|
224 |
-
msgstr "¿
|
225 |
|
226 |
#: ../admin-views/events-meta-box.php:144
|
227 |
#, php-format
|
228 |
msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
|
229 |
-
msgstr "
|
230 |
|
231 |
#: ../admin-views/venue-meta-box.php:12
|
232 |
msgid "Venue Name:"
|
@@ -238,7 +238,7 @@ msgstr "Ciudad:"
|
|
238 |
|
239 |
#: ../admin-views/venue-meta-box.php:27
|
240 |
msgid "Country:"
|
241 |
-
msgstr "
|
242 |
|
243 |
#: ../admin-views/venue-meta-box.php:52
|
244 |
msgid "State or Province:"
|
@@ -246,7 +246,7 @@ msgstr "Estado o Provincia:"
|
|
246 |
|
247 |
#: ../admin-views/venue-meta-box.php:55
|
248 |
msgid "Select a State:"
|
249 |
-
msgstr "
|
250 |
|
251 |
#: ../admin-views/venue-meta-box.php:69
|
252 |
msgid "Postal Code:"
|
@@ -254,7 +254,7 @@ msgstr "Código Postal:"
|
|
254 |
|
255 |
#: ../admin-views/recurrence-dialog.php:11
|
256 |
msgid "Which events do you wish to update?"
|
257 |
-
msgstr "¿Cuales eventos
|
258 |
|
259 |
#: ../admin-views/recurrence-dialog.php:14
|
260 |
msgid "Select your desired action"
|
@@ -267,16 +267,16 @@ msgstr "%s Ajustes"
|
|
267 |
|
268 |
#: ../admin-views/events-options.php:53
|
269 |
msgid "Need a hand?"
|
270 |
-
msgstr "¿
|
271 |
|
272 |
#: ../admin-views/events-options.php:54
|
273 |
#, php-format
|
274 |
msgid "If you're stuck on these options, please <a href=\"%s\">check out the documentation</a>. Or, go to the <a href=\"%s\">support forum</a>."
|
275 |
-
msgstr "Si no
|
276 |
|
277 |
#: ../admin-views/events-options.php:56
|
278 |
msgid "Here is the iCal feed URL for your events: "
|
279 |
-
msgstr "Aqui
|
280 |
|
281 |
#: ../admin-views/events-options.php:62
|
282 |
msgid "Settings"
|
@@ -285,7 +285,7 @@ msgstr "Ajustes"
|
|
285 |
#: ../admin-views/events-options.php:65
|
286 |
#: ../admin-views/events-options.php:69
|
287 |
msgid "Default View for the Events"
|
288 |
-
msgstr "Vista
|
289 |
|
290 |
#: ../admin-views/events-options.php:83
|
291 |
#: ../admin-views/events-options.php:87
|
@@ -300,7 +300,7 @@ msgstr "Cierre de Evento Diario"
|
|
300 |
|
301 |
#: ../admin-views/events-options.php:115
|
302 |
msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
|
303 |
-
msgstr "Para eventos que se repiten, esconde el último dia
|
304 |
|
305 |
#: ../admin-views/events-options.php:120
|
306 |
#: ../admin-views/events-options.php:124
|
@@ -317,20 +317,20 @@ msgstr "Ancho"
|
|
317 |
|
318 |
#: ../admin-views/events-options.php:131
|
319 |
msgid "(number or %)"
|
320 |
-
msgstr "(
|
321 |
|
322 |
#: ../admin-views/events-options.php:135
|
323 |
msgid "If you don't have this turned on, your event listings won't have the backend map preview or frontend embedded map."
|
324 |
-
msgstr "Si no
|
325 |
|
326 |
#: ../admin-views/events-options.php:143
|
327 |
#: ../admin-views/events-options.php:147
|
328 |
msgid "Use Pretty URLs"
|
329 |
-
msgstr "
|
330 |
|
331 |
#: ../admin-views/events-options.php:153
|
332 |
msgid "Although unlikely, pretty URLs (ie, http://site/events/upcoming) may interfere with custom themes or plugins."
|
333 |
-
msgstr "Aunque no es
|
334 |
|
335 |
#: ../admin-views/events-options.php:159
|
336 |
#: ../admin-views/events-options.php:161
|
@@ -344,21 +344,21 @@ msgstr "El slug usado es para crear los URL de Eventos"
|
|
344 |
#: ../admin-views/events-options.php:162
|
345 |
#, php-format
|
346 |
msgid "Your current Events URL is <strong>%s</strong>"
|
347 |
-
msgstr "El URL de Eventos
|
348 |
|
349 |
#: ../admin-views/events-options.php:166
|
350 |
#: ../admin-views/events-options.php:168
|
351 |
msgid "Single Event URL slug"
|
352 |
-
msgstr "Slug URL para evento
|
353 |
|
354 |
#: ../admin-views/events-options.php:169
|
355 |
msgid "The slug used for building a single Event URL."
|
356 |
-
msgstr "El slug usado para construir el URL de Evento
|
357 |
|
358 |
#: ../admin-views/events-options.php:170
|
359 |
#, php-format
|
360 |
msgid "<strong>NOTE:</strong> You <em>cannot</em> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: <strong>%s</strong>"
|
361 |
-
msgstr "<strong>NOTA:</strong> Usted <em>no puede</em> usar el mismo slug de arriba. El de arriba
|
362 |
|
363 |
#: ../admin-views/events-options.php:175
|
364 |
#: ../admin-views/events-options.php:177
|
@@ -372,11 +372,11 @@ msgstr "Debug errores de visualización de Eventos"
|
|
372 |
#: ../admin-views/events-options.php:179
|
373 |
#, php-format
|
374 |
msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> and look for the \"Tribe\" tab in the debug output."
|
375 |
-
msgstr "
|
376 |
|
377 |
#: ../admin-views/events-options.php:184
|
378 |
msgid "Theme Settings"
|
379 |
-
msgstr "
|
380 |
|
381 |
#: ../admin-views/events-options.php:187
|
382 |
#: ../admin-views/events-options.php:189
|
@@ -389,25 +389,25 @@ msgstr "Pantilla ECP por Defecto"
|
|
389 |
|
390 |
#: ../admin-views/events-options.php:192
|
391 |
msgid "Default Page Template"
|
392 |
-
msgstr "Plantilla de
|
393 |
|
394 |
#: ../admin-views/events-options.php:195
|
395 |
msgid "Choose a page template to control the look and feel of your calendar."
|
396 |
-
msgstr "
|
397 |
|
398 |
#: ../admin-views/events-options.php:199
|
399 |
#: ../admin-views/events-options.php:201
|
400 |
#: ../admin-views/events-options.php:209
|
401 |
msgid "Add HTML before calendar"
|
402 |
-
msgstr "
|
403 |
|
404 |
#: ../admin-views/events-options.php:203
|
405 |
msgid "Some themes may require that you add extra divs before the calendar list to help with styling."
|
406 |
-
msgstr "Algunos temas
|
407 |
|
408 |
#: ../admin-views/events-options.php:203
|
409 |
msgid "This is displayed directly after the header."
|
410 |
-
msgstr "Esto se
|
411 |
|
412 |
#: ../admin-views/events-options.php:203
|
413 |
#: ../admin-views/events-options.php:211
|
@@ -416,15 +416,15 @@ msgstr "Usted puede usar (x)HTML"
|
|
416 |
|
417 |
#: ../admin-views/events-options.php:207
|
418 |
msgid "Add HTML after calendar"
|
419 |
-
msgstr "
|
420 |
|
421 |
#: ../admin-views/events-options.php:211
|
422 |
msgid "Some themes may require that you add extra divs after the calendar list to help with styling."
|
423 |
-
msgstr "Algunos temas
|
424 |
|
425 |
#: ../admin-views/events-options.php:211
|
426 |
msgid "This is displayed directly above the footer."
|
427 |
-
msgstr "Esto se
|
428 |
|
429 |
#: ../admin-views/events-options.php:220
|
430 |
msgid "Save Changes"
|
@@ -432,7 +432,7 @@ msgstr "Guardar Cambios "
|
|
432 |
|
433 |
#: ../admin-views/widget-admin-list.php:11
|
434 |
msgid "Title:"
|
435 |
-
msgstr "
|
436 |
|
437 |
#: ../admin-views/widget-admin-list.php:16
|
438 |
msgid "Show:"
|
@@ -440,11 +440,11 @@ msgstr "Mostrar:"
|
|
440 |
|
441 |
#: ../admin-views/widget-admin-list.php:24
|
442 |
msgid "Show widget only if there are upcoming events:"
|
443 |
-
msgstr "Mostrar El Widget
|
444 |
|
445 |
#: ../admin-views/widget-admin-list.php:30
|
446 |
msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
|
447 |
-
msgstr "Si desea modificar el widget
|
448 |
|
449 |
#: ../admin-views/organizer-meta-box.php:11
|
450 |
msgid "Organizer Name:"
|
@@ -457,7 +457,7 @@ msgstr "Sitio Web:"
|
|
457 |
#: ../lib/tribe-admin-events-list.class.php:160
|
458 |
#: ../lib/the-events-calendar.class.php:523
|
459 |
msgid "Event Categories"
|
460 |
-
msgstr "
|
461 |
|
462 |
#: ../lib/tribe-admin-events-list.class.php:165
|
463 |
msgid "Start Date"
|
@@ -465,7 +465,7 @@ msgstr "Fecha de Inicio"
|
|
465 |
|
466 |
#: ../lib/tribe-admin-events-list.class.php:166
|
467 |
msgid "End Date"
|
468 |
-
msgstr "Fecha
|
469 |
|
470 |
#: ../lib/tribe-admin-events-list.class.php:167
|
471 |
msgid "Recurring?"
|
@@ -479,17 +479,17 @@ msgstr "Todos %s"
|
|
479 |
#: ../lib/tribe-view-helpers.class.php:16
|
480 |
#: ../lib/tribe-view-helpers.class.php:33
|
481 |
msgid "Select a Country:"
|
482 |
-
msgstr "
|
483 |
|
484 |
#: ../lib/tribe-view-helpers.class.php:34
|
485 |
#: ../lib/template-tags.php:830
|
486 |
#: ../lib/template-tags.php:964
|
487 |
msgid "United States"
|
488 |
-
msgstr "
|
489 |
|
490 |
#: ../lib/tribe-view-helpers.class.php:35
|
491 |
msgid "Afghanistan"
|
492 |
-
msgstr "
|
493 |
|
494 |
#: ../lib/tribe-view-helpers.class.php:36
|
495 |
msgid "Albania"
|
@@ -1659,46 +1659,46 @@ msgstr "The Events Calendar"
|
|
1659 |
|
1660 |
#: ../lib/the-events-calendar.class.php:214
|
1661 |
msgid "category"
|
1662 |
-
msgstr "
|
1663 |
|
1664 |
#: ../lib/the-events-calendar.class.php:215
|
1665 |
msgid "month"
|
1666 |
-
msgstr "
|
1667 |
|
1668 |
#: ../lib/the-events-calendar.class.php:216
|
1669 |
msgid "upcoming"
|
1670 |
-
msgstr "
|
1671 |
|
1672 |
#: ../lib/the-events-calendar.class.php:217
|
1673 |
msgid "past"
|
1674 |
-
msgstr "
|
1675 |
|
1676 |
#: ../lib/the-events-calendar.class.php:219
|
1677 |
msgid "venue"
|
1678 |
-
msgstr "
|
1679 |
|
1680 |
#: ../lib/the-events-calendar.class.php:229
|
1681 |
#, php-format
|
1682 |
msgid "Initializing Tribe Events on %s"
|
1683 |
-
msgstr "
|
1684 |
|
1685 |
#: ../lib/the-events-calendar.class.php:277
|
1686 |
#, php-format
|
1687 |
msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
|
1688 |
-
msgstr "Lo
|
1689 |
|
1690 |
#: ../lib/the-events-calendar.class.php:280
|
1691 |
#, php-format
|
1692 |
msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
|
1693 |
-
msgstr "Lo
|
1694 |
|
1695 |
#: ../lib/the-events-calendar.class.php:397
|
1696 |
msgid "Upcoming Events"
|
1697 |
-
msgstr "Eventos
|
1698 |
|
1699 |
#: ../lib/the-events-calendar.class.php:399
|
1700 |
msgid "Past Events"
|
1701 |
-
msgstr "Eventos
|
1702 |
|
1703 |
#: ../lib/the-events-calendar.class.php:403
|
1704 |
#, php-format
|
@@ -1711,7 +1711,7 @@ msgstr "Eventos este mes"
|
|
1711 |
|
1712 |
#: ../lib/the-events-calendar.class.php:419
|
1713 |
msgid "No description has been entered for this event."
|
1714 |
-
msgstr "No
|
1715 |
|
1716 |
#: ../lib/the-events-calendar.class.php:484
|
1717 |
msgid "Events"
|
@@ -1725,15 +1725,15 @@ msgstr "Evento"
|
|
1725 |
#: ../lib/the-events-calendar.class.php:499
|
1726 |
#: ../lib/the-events-calendar.class.php:512
|
1727 |
msgid "Add New"
|
1728 |
-
msgstr "
|
1729 |
|
1730 |
#: ../lib/the-events-calendar.class.php:487
|
1731 |
msgid "Add New Event"
|
1732 |
-
msgstr "
|
1733 |
|
1734 |
#: ../lib/the-events-calendar.class.php:488
|
1735 |
msgid "Edit Event"
|
1736 |
-
msgstr "
|
1737 |
|
1738 |
#: ../lib/the-events-calendar.class.php:489
|
1739 |
msgid "New Event"
|
@@ -1749,11 +1749,11 @@ msgstr "Buscar Eventos"
|
|
1749 |
|
1750 |
#: ../lib/the-events-calendar.class.php:492
|
1751 |
msgid "No events found"
|
1752 |
-
msgstr "No se
|
1753 |
|
1754 |
#: ../lib/the-events-calendar.class.php:493
|
1755 |
msgid "No events found in Trash"
|
1756 |
-
msgstr "No
|
1757 |
|
1758 |
#: ../lib/the-events-calendar.class.php:497
|
1759 |
#: ../lib/the-events-calendar.class.php:681
|
@@ -1766,11 +1766,11 @@ msgstr "Lugar"
|
|
1766 |
|
1767 |
#: ../lib/the-events-calendar.class.php:500
|
1768 |
msgid "Add New Venue"
|
1769 |
-
msgstr "
|
1770 |
|
1771 |
#: ../lib/the-events-calendar.class.php:501
|
1772 |
msgid "Edit Venue"
|
1773 |
-
msgstr "
|
1774 |
|
1775 |
#: ../lib/the-events-calendar.class.php:502
|
1776 |
msgid "New Venue"
|
@@ -1783,15 +1783,15 @@ msgstr "Ver Lugar"
|
|
1783 |
|
1784 |
#: ../lib/the-events-calendar.class.php:504
|
1785 |
msgid "Search Venues"
|
1786 |
-
msgstr "Buscar
|
1787 |
|
1788 |
#: ../lib/the-events-calendar.class.php:505
|
1789 |
msgid "No venue found"
|
1790 |
-
msgstr "No se
|
1791 |
|
1792 |
#: ../lib/the-events-calendar.class.php:506
|
1793 |
msgid "No venues found in Trash"
|
1794 |
-
msgstr "No
|
1795 |
|
1796 |
#: ../lib/the-events-calendar.class.php:510
|
1797 |
#: ../lib/the-events-calendar.class.php:682
|
@@ -1804,11 +1804,11 @@ msgstr "Organizador"
|
|
1804 |
|
1805 |
#: ../lib/the-events-calendar.class.php:513
|
1806 |
msgid "Add New Organizer"
|
1807 |
-
msgstr "
|
1808 |
|
1809 |
#: ../lib/the-events-calendar.class.php:514
|
1810 |
msgid "Edit Organizer"
|
1811 |
-
msgstr "
|
1812 |
|
1813 |
#: ../lib/the-events-calendar.class.php:515
|
1814 |
msgid "New Organizer"
|
@@ -1820,23 +1820,23 @@ msgstr "Buscar Organizadores"
|
|
1820 |
|
1821 |
#: ../lib/the-events-calendar.class.php:518
|
1822 |
msgid "No organizer found"
|
1823 |
-
msgstr "No se
|
1824 |
|
1825 |
#: ../lib/the-events-calendar.class.php:519
|
1826 |
msgid "No organizers found in Trash"
|
1827 |
-
msgstr "No
|
1828 |
|
1829 |
#: ../lib/the-events-calendar.class.php:524
|
1830 |
msgid "Event Category"
|
1831 |
-
msgstr "
|
1832 |
|
1833 |
#: ../lib/the-events-calendar.class.php:525
|
1834 |
msgid "Search Event Categories"
|
1835 |
-
msgstr "Buscar
|
1836 |
|
1837 |
#: ../lib/the-events-calendar.class.php:526
|
1838 |
msgid "All Event Categories"
|
1839 |
-
msgstr "Todas las
|
1840 |
|
1841 |
#: ../lib/the-events-calendar.class.php:527
|
1842 |
msgid "Parent Event Category"
|
@@ -1844,23 +1844,23 @@ msgstr "Categoria Superior de Evento"
|
|
1844 |
|
1845 |
#: ../lib/the-events-calendar.class.php:528
|
1846 |
msgid "Parent Event Category:"
|
1847 |
-
msgstr "Categoria Superior
|
1848 |
|
1849 |
#: ../lib/the-events-calendar.class.php:529
|
1850 |
msgid "Edit Event Category"
|
1851 |
-
msgstr "
|
1852 |
|
1853 |
#: ../lib/the-events-calendar.class.php:530
|
1854 |
msgid "Update Event Category"
|
1855 |
-
msgstr "Actualizar
|
1856 |
|
1857 |
#: ../lib/the-events-calendar.class.php:531
|
1858 |
msgid "Add New Event Category"
|
1859 |
-
msgstr "
|
1860 |
|
1861 |
#: ../lib/the-events-calendar.class.php:532
|
1862 |
msgid "New Event Category Name"
|
1863 |
-
msgstr "Nuevo Nombre de
|
1864 |
|
1865 |
#: ../lib/the-events-calendar.class.php:542
|
1866 |
#, php-format
|
@@ -1871,13 +1871,13 @@ msgstr "Evento actualizado. <a href=\"%s\">Ver evento</a>"
|
|
1871 |
#: ../lib/the-events-calendar.class.php:560
|
1872 |
#: ../lib/the-events-calendar.class.php:577
|
1873 |
msgid "Custom field updated."
|
1874 |
-
msgstr "
|
1875 |
|
1876 |
#: ../lib/the-events-calendar.class.php:544
|
1877 |
#: ../lib/the-events-calendar.class.php:561
|
1878 |
#: ../lib/the-events-calendar.class.php:578
|
1879 |
msgid "Custom field deleted."
|
1880 |
-
msgstr "
|
1881 |
|
1882 |
#: ../lib/the-events-calendar.class.php:545
|
1883 |
msgid "Event updated."
|
@@ -1905,7 +1905,7 @@ msgstr "Evento agregado. <a target=\"_blank\" href=\"%s\">Previsualizar evento</
|
|
1905 |
#: ../lib/the-events-calendar.class.php:551
|
1906 |
#, php-format
|
1907 |
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
1908 |
-
msgstr "Evento
|
1909 |
|
1910 |
#: ../lib/the-events-calendar.class.php:553
|
1911 |
#: ../lib/the-events-calendar.class.php:570
|
@@ -1916,7 +1916,7 @@ msgstr "M j, Y @ G:i"
|
|
1916 |
#: ../lib/the-events-calendar.class.php:554
|
1917 |
#, php-format
|
1918 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1919 |
-
msgstr "
|
1920 |
|
1921 |
#: ../lib/the-events-calendar.class.php:559
|
1922 |
#, php-format
|
@@ -1949,12 +1949,12 @@ msgstr "Lugar agregado. <a target=\"_blank\" href=\"%s\">Previsualizar lugar</a>
|
|
1949 |
#: ../lib/the-events-calendar.class.php:568
|
1950 |
#, php-format
|
1951 |
msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
|
1952 |
-
msgstr "Lugar
|
1953 |
|
1954 |
#: ../lib/the-events-calendar.class.php:571
|
1955 |
#, php-format
|
1956 |
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1957 |
-
msgstr "
|
1958 |
|
1959 |
#: ../lib/the-events-calendar.class.php:576
|
1960 |
#, php-format
|
@@ -1987,12 +1987,12 @@ msgstr "Organizador agregado. <a target=\"_blank\" href=\"%s\">Previsualizar org
|
|
1987 |
#: ../lib/the-events-calendar.class.php:585
|
1988 |
#, php-format
|
1989 |
msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
|
1990 |
-
msgstr "Organizador
|
1991 |
|
1992 |
#: ../lib/the-events-calendar.class.php:588
|
1993 |
#, php-format
|
1994 |
msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
1995 |
-
msgstr "
|
1996 |
|
1997 |
#: ../lib/the-events-calendar.class.php:643
|
1998 |
msgid "Next"
|
@@ -2000,7 +2000,7 @@ msgstr "Siguiente"
|
|
2000 |
|
2001 |
#: ../lib/the-events-calendar.class.php:644
|
2002 |
msgid "Prev"
|
2003 |
-
msgstr "
|
2004 |
|
2005 |
#: ../lib/the-events-calendar.class.php:645
|
2006 |
msgid "Today"
|
@@ -2016,7 +2016,7 @@ msgstr "Usar Nuevo Lugar"
|
|
2016 |
|
2017 |
#: ../lib/the-events-calendar.class.php:1416
|
2018 |
msgid "No saved venues yet."
|
2019 |
-
msgstr "No hay lugares guardados
|
2020 |
|
2021 |
#: ../lib/the-events-calendar.class.php:1494
|
2022 |
msgid "Use New Organizer"
|
@@ -2024,7 +2024,7 @@ msgstr "Usar Nuevo Organizador"
|
|
2024 |
|
2025 |
#: ../lib/the-events-calendar.class.php:1501
|
2026 |
msgid "No saved organizers yet."
|
2027 |
-
msgstr "No hay organizadores guardados
|
2028 |
|
2029 |
#: ../lib/the-events-calendar.class.php:1739
|
2030 |
msgid "Event Options"
|
@@ -2056,7 +2056,7 @@ msgstr "Actualizar Desde The Events Calendar"
|
|
2056 |
|
2057 |
#: ../lib/tribe-the-events-calendar-import.class.php:46
|
2058 |
msgid "It appears that you have some old events calendar data that needs to be upgraded. Please be sure to back up your database before initiating the upgrade. This process can not be undone."
|
2059 |
-
msgstr "
|
2060 |
|
2061 |
#: ../lib/tribe-the-events-calendar-import.class.php:47
|
2062 |
msgid "Migrate Data!"
|
@@ -2065,11 +2065,11 @@ msgstr "¡Migrar Datos!"
|
|
2065 |
#: ../lib/tribe-the-events-calendar-import.class.php:119
|
2066 |
#, php-format
|
2067 |
msgid "You successfully migrated (%d) entries."
|
2068 |
-
msgstr "
|
2069 |
|
2070 |
#: ../lib/tribe-the-events-calendar-import.class.php:189
|
2071 |
msgid "Install has 1 or more legacy event!"
|
2072 |
-
msgstr "
|
2073 |
|
2074 |
#: ../lib/template-tags.php:331
|
2075 |
msgid "Free"
|
@@ -2077,17 +2077,17 @@ msgstr "Gratuito"
|
|
2077 |
|
2078 |
#: ../lib/template-tags.php:863
|
2079 |
msgid "Calendar of Events"
|
2080 |
-
msgstr "Calendario
|
2081 |
|
2082 |
#: ../lib/widget-list.class.php:16
|
2083 |
msgid "A widget that displays the next upcoming x events."
|
2084 |
-
msgstr "Un
|
2085 |
|
2086 |
#: ../lib/widget-list.class.php:70
|
2087 |
msgid "View All Events"
|
2088 |
-
msgstr "Ver
|
2089 |
|
2090 |
#: ../lib/widget-list.class.php:73
|
2091 |
msgid "There are no upcoming events at this time."
|
2092 |
-
msgstr "No hay eventos
|
2093 |
|
6 |
"Project-Id-Version: The Events Calendar 2.0\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
"POT-Creation-Date: 2011-09-09 18:04-0500\n"
|
9 |
+
"PO-Revision-Date: 2012-05-08 22:11-0430\n"
|
10 |
+
"Last-Translator: Signo Creativo <signodev@signocreativo.com>\n"
|
11 |
"Language-Team: Modern Tribe, Inc.\n"
|
12 |
"Language: \n"
|
13 |
"MIME-Version: 1.0\n"
|
38 |
#: ../views/list.php:46
|
39 |
#: ../views/single.php:20
|
40 |
msgid "End:"
|
41 |
+
msgstr "Finaliza:"
|
42 |
|
43 |
#: ../views/list.php:54
|
44 |
#: ../views/single.php:47
|
50 |
#: ../views/single.php:51
|
51 |
#: ../admin-views/venue-meta-box.php:73
|
52 |
msgid "Phone:"
|
53 |
+
msgstr "Teléfono:"
|
54 |
|
55 |
#: ../views/list.php:69
|
56 |
#: ../views/single.php:56
|
72 |
#: ../views/list.php:95
|
73 |
#, php-format
|
74 |
msgid " listed under %s. Check out upcoming events for this category or view the full calendar."
|
75 |
+
msgstr "listado bajo %s. Ver los eventos por venir para esta categoria o ver el calendario completo."
|
76 |
|
77 |
#: ../views/list.php:97
|
78 |
#, php-format
|
79 |
msgid " listed under %s. Check out past events for this category or view the full calendar."
|
80 |
+
msgstr "listado bajo %s. Ver los eventos ya realizados bajo esta categoria o ver el calendario completo."
|
81 |
|
82 |
#: ../views/list.php:103
|
83 |
msgid "No upcoming events"
|
84 |
+
msgstr "No hay eventos por venir"
|
85 |
|
86 |
#: ../views/list.php:107
|
87 |
msgid "No previous events"
|
88 |
+
msgstr "No hay eventos ya finalizados"
|
89 |
|
90 |
#: ../views/list.php:120
|
91 |
#: ../views/list.php:122
|
97 |
#: ../views/list.php:133
|
98 |
#: ../views/list.php:135
|
99 |
msgid "Next Events »"
|
100 |
+
msgstr "Eventos Siguientes »"
|
101 |
|
102 |
#: ../views/list.php:140
|
103 |
#: ../views/gridview.php:42
|
115 |
|
116 |
#: ../views/single.php:14
|
117 |
msgid "This event has passed."
|
118 |
+
msgstr "Este evento ya finalizó "
|
119 |
|
120 |
#: ../views/single.php:29
|
121 |
msgid "Organizer:"
|
127 |
|
128 |
#: ../views/single.php:41
|
129 |
msgid "Schedule:"
|
130 |
+
msgstr "Programado:"
|
131 |
|
132 |
#: ../views/single.php:58
|
133 |
msgid "Click to view a Google Map"
|
134 |
+
msgstr "Click para ver Mapa de Google"
|
135 |
|
136 |
#: ../views/single.php:86
|
137 |
msgid "Add to Google Calendar"
|
143 |
|
144 |
#: ../views/events-list-load-widget-display.php:48
|
145 |
msgid "All Day"
|
146 |
+
msgstr "Todo el Día"
|
147 |
|
148 |
#: ../views/events-list-load-widget-display.php:51
|
149 |
msgid "Ends"
|
150 |
+
msgstr "Finaliza"
|
151 |
|
152 |
#: ../views/ecp-single-template.php:24
|
153 |
msgid "Edit"
|
154 |
+
msgstr "Modificar"
|
155 |
|
156 |
#: ../admin-views/events-meta-box.php:26
|
157 |
msgid "Event Time & Date"
|
158 |
+
msgstr "Hora del Evento & Fecha"
|
159 |
|
160 |
#: ../admin-views/events-meta-box.php:29
|
161 |
msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
|
162 |
+
msgstr "Ha cambiando las reglas de repetición de este evento. Al guardar el evento se actualizaran todos los eventos futuros. Si no planeaba cambiar todos los eventos, por favor vuelve a cargar la pagina."
|
163 |
|
164 |
#: ../admin-views/events-meta-box.php:32
|
165 |
msgid "All day event?"
|
166 |
+
msgstr "¿Evento de todo el día?"
|
167 |
|
168 |
#: ../admin-views/events-meta-box.php:36
|
169 |
msgid "Start Date / Time:"
|
170 |
+
msgstr "Fecha / Hora de Inicio:"
|
171 |
|
172 |
#: ../admin-views/events-meta-box.php:39
|
173 |
#: ../admin-views/events-meta-box.php:60
|
181 |
|
182 |
#: ../admin-views/events-meta-box.php:57
|
183 |
msgid "End Date / Time:"
|
184 |
+
msgstr "Fecha / Hora Finaliza:"
|
185 |
|
186 |
#: ../admin-views/events-meta-box.php:79
|
187 |
msgid "Event Location Details"
|
188 |
+
msgstr "Detalles sobre el lugar del Evento"
|
189 |
|
190 |
#: ../admin-views/events-meta-box.php:83
|
191 |
msgid "Use Saved Venue:"
|
192 |
+
msgstr "Usar Lugar Guardado:"
|
193 |
|
194 |
#: ../admin-views/events-meta-box.php:91
|
195 |
msgid "Show Google Maps Link:"
|
196 |
+
msgstr "Mostrar enlace de Google Maps:"
|
197 |
|
198 |
#: ../admin-views/events-meta-box.php:98
|
199 |
msgid "Show Google Map:"
|
205 |
|
206 |
#: ../admin-views/events-meta-box.php:110
|
207 |
msgid "Use Saved Organizer:"
|
208 |
+
msgstr "Usar Organizador ya Guardado:"
|
209 |
|
210 |
#: ../admin-views/events-meta-box.php:125
|
211 |
msgid "Event Cost"
|
213 |
|
214 |
#: ../admin-views/events-meta-box.php:133
|
215 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
216 |
+
msgstr "Dejar en blanco para esconder este campo. Introduzca 0 para eventos gratuitos."
|
217 |
|
218 |
#: ../admin-views/events-meta-box.php:139
|
219 |
msgid "Additional Functionality"
|
221 |
|
222 |
#: ../admin-views/events-meta-box.php:144
|
223 |
msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
|
224 |
+
msgstr "¿Busca funcionalidad adicional incluyendo eventos recurrentes, meta personalizado, eventos de comunidades, venta de boletos y más?"
|
225 |
|
226 |
#: ../admin-views/events-meta-box.php:144
|
227 |
#, php-format
|
228 |
msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
|
229 |
+
msgstr "Vea los <a href=\"%s\">add-ons disponibles</a>."
|
230 |
|
231 |
#: ../admin-views/venue-meta-box.php:12
|
232 |
msgid "Venue Name:"
|
238 |
|
239 |
#: ../admin-views/venue-meta-box.php:27
|
240 |
msgid "Country:"
|
241 |
+
msgstr "País:"
|
242 |
|
243 |
#: ../admin-views/venue-meta-box.php:52
|
244 |
msgid "State or Province:"
|
246 |
|
247 |
#: ../admin-views/venue-meta-box.php:55
|
248 |
msgid "Select a State:"
|
249 |
+
msgstr "Seleccione un Estado:"
|
250 |
|
251 |
#: ../admin-views/venue-meta-box.php:69
|
252 |
msgid "Postal Code:"
|
254 |
|
255 |
#: ../admin-views/recurrence-dialog.php:11
|
256 |
msgid "Which events do you wish to update?"
|
257 |
+
msgstr "¿Cuales eventos desea actualizar?"
|
258 |
|
259 |
#: ../admin-views/recurrence-dialog.php:14
|
260 |
msgid "Select your desired action"
|
267 |
|
268 |
#: ../admin-views/events-options.php:53
|
269 |
msgid "Need a hand?"
|
270 |
+
msgstr "¿Necesita ayuda?"
|
271 |
|
272 |
#: ../admin-views/events-options.php:54
|
273 |
#, php-format
|
274 |
msgid "If you're stuck on these options, please <a href=\"%s\">check out the documentation</a>. Or, go to the <a href=\"%s\">support forum</a>."
|
275 |
+
msgstr "Si no comprende estas opciones, por favor <a href=\"%s\">consulte la documentación</a>.También puede ir al <a href=\"%s\">foro de ayuda</a>."
|
276 |
|
277 |
#: ../admin-views/events-options.php:56
|
278 |
msgid "Here is the iCal feed URL for your events: "
|
279 |
+
msgstr "Aqui está el URL del iCal feed para sus eventos:"
|
280 |
|
281 |
#: ../admin-views/events-options.php:62
|
282 |
msgid "Settings"
|
285 |
#: ../admin-views/events-options.php:65
|
286 |
#: ../admin-views/events-options.php:69
|
287 |
msgid "Default View for the Events"
|
288 |
+
msgstr "Vista por Defecto para los Eventos"
|
289 |
|
290 |
#: ../admin-views/events-options.php:83
|
291 |
#: ../admin-views/events-options.php:87
|
300 |
|
301 |
#: ../admin-views/events-options.php:115
|
302 |
msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
|
303 |
+
msgstr "Para eventos que se repiten, esconde el último dia de la vista de grilla si termina a esta hora o antes."
|
304 |
|
305 |
#: ../admin-views/events-options.php:120
|
306 |
#: ../admin-views/events-options.php:124
|
317 |
|
318 |
#: ../admin-views/events-options.php:131
|
319 |
msgid "(number or %)"
|
320 |
+
msgstr "(número o %)"
|
321 |
|
322 |
#: ../admin-views/events-options.php:135
|
323 |
msgid "If you don't have this turned on, your event listings won't have the backend map preview or frontend embedded map."
|
324 |
+
msgstr "Si no tiene esta opción activada, su lista de eventos no mostrará la vista previa del mapa en el área administrativa ni tampoco colocará el mapa en la página."
|
325 |
|
326 |
#: ../admin-views/events-options.php:143
|
327 |
#: ../admin-views/events-options.php:147
|
328 |
msgid "Use Pretty URLs"
|
329 |
+
msgstr "Usar Pretty URLs"
|
330 |
|
331 |
#: ../admin-views/events-options.php:153
|
332 |
msgid "Although unlikely, pretty URLs (ie, http://site/events/upcoming) may interfere with custom themes or plugins."
|
333 |
+
msgstr "Aunque no es común, pretty URLs (ie, http://sitio/eventos/proximos) pueden interferir con algunos temas o plugins."
|
334 |
|
335 |
#: ../admin-views/events-options.php:159
|
336 |
#: ../admin-views/events-options.php:161
|
344 |
#: ../admin-views/events-options.php:162
|
345 |
#, php-format
|
346 |
msgid "Your current Events URL is <strong>%s</strong>"
|
347 |
+
msgstr "El URL de Eventos definido es <strong>%s</strong>"
|
348 |
|
349 |
#: ../admin-views/events-options.php:166
|
350 |
#: ../admin-views/events-options.php:168
|
351 |
msgid "Single Event URL slug"
|
352 |
+
msgstr "Slug URL para evento individual"
|
353 |
|
354 |
#: ../admin-views/events-options.php:169
|
355 |
msgid "The slug used for building a single Event URL."
|
356 |
+
msgstr "El slug usado para construir el URL de un Evento individual."
|
357 |
|
358 |
#: ../admin-views/events-options.php:170
|
359 |
#, php-format
|
360 |
msgid "<strong>NOTE:</strong> You <em>cannot</em> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: <strong>%s</strong>"
|
361 |
+
msgstr "<strong>NOTA:</strong> Usted <em>no puede</em> usar el mismo slug de arriba. El de arriba preferiblemente deberá ser en plural, y este en singular.<br /> Su URL para Evento un individual es parecida a: <strong>%s</strong>"
|
362 |
|
363 |
#: ../admin-views/events-options.php:175
|
364 |
#: ../admin-views/events-options.php:177
|
372 |
#: ../admin-views/events-options.php:179
|
373 |
#, php-format
|
374 |
msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> and look for the \"Tribe\" tab in the debug output."
|
375 |
+
msgstr "Use esta opción para capturar en una bitácora (log) información para depuración (debug). Por defecto, esto se agregara a tu log de errores PHP del servidor. En caso de quere ver los mensajes del log en el navegador, entonces le recomendamos que instale el <a href=\"%s\" target=\"_blank\">Debug Bar Plugin</a> y busques la pestaña \"Tribe\" en la pantalla de depuración."
|
376 |
|
377 |
#: ../admin-views/events-options.php:184
|
378 |
msgid "Theme Settings"
|
379 |
+
msgstr "Opciones del Tema"
|
380 |
|
381 |
#: ../admin-views/events-options.php:187
|
382 |
#: ../admin-views/events-options.php:189
|
389 |
|
390 |
#: ../admin-views/events-options.php:192
|
391 |
msgid "Default Page Template"
|
392 |
+
msgstr "Plantilla de Página por Defecto"
|
393 |
|
394 |
#: ../admin-views/events-options.php:195
|
395 |
msgid "Choose a page template to control the look and feel of your calendar."
|
396 |
+
msgstr "Escoja una plantilla de página para controlar la forma en que se verá el calendario."
|
397 |
|
398 |
#: ../admin-views/events-options.php:199
|
399 |
#: ../admin-views/events-options.php:201
|
400 |
#: ../admin-views/events-options.php:209
|
401 |
msgid "Add HTML before calendar"
|
402 |
+
msgstr "Agregar HTML antes del calendario"
|
403 |
|
404 |
#: ../admin-views/events-options.php:203
|
405 |
msgid "Some themes may require that you add extra divs before the calendar list to help with styling."
|
406 |
+
msgstr "Algunos temas podrían requerir agegar divs adicionales antes de la lista de calendario para ayudar con el diseño."
|
407 |
|
408 |
#: ../admin-views/events-options.php:203
|
409 |
msgid "This is displayed directly after the header."
|
410 |
+
msgstr "Esto se mostrará directamente después del encabezado."
|
411 |
|
412 |
#: ../admin-views/events-options.php:203
|
413 |
#: ../admin-views/events-options.php:211
|
416 |
|
417 |
#: ../admin-views/events-options.php:207
|
418 |
msgid "Add HTML after calendar"
|
419 |
+
msgstr "Agregar HTML después del calendario"
|
420 |
|
421 |
#: ../admin-views/events-options.php:211
|
422 |
msgid "Some themes may require that you add extra divs after the calendar list to help with styling."
|
423 |
+
msgstr "Algunos temas podrían requierir agregar divs adicionales luego de la lista de calendario para ayudar con el diseño."
|
424 |
|
425 |
#: ../admin-views/events-options.php:211
|
426 |
msgid "This is displayed directly above the footer."
|
427 |
+
msgstr "Esto se mostrará directamente sobre el pié de página."
|
428 |
|
429 |
#: ../admin-views/events-options.php:220
|
430 |
msgid "Save Changes"
|
432 |
|
433 |
#: ../admin-views/widget-admin-list.php:11
|
434 |
msgid "Title:"
|
435 |
+
msgstr "Título:"
|
436 |
|
437 |
#: ../admin-views/widget-admin-list.php:16
|
438 |
msgid "Show:"
|
440 |
|
441 |
#: ../admin-views/widget-admin-list.php:24
|
442 |
msgid "Show widget only if there are upcoming events:"
|
443 |
+
msgstr "Mostrar El Widget solo si hay eventos programados: "
|
444 |
|
445 |
#: ../admin-views/widget-admin-list.php:30
|
446 |
msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
|
447 |
+
msgstr "Si usted desea modificar el widget, vea el archivo views/events-list-load-widget-display.php dentro del directorio del Events Premium plugin"
|
448 |
|
449 |
#: ../admin-views/organizer-meta-box.php:11
|
450 |
msgid "Organizer Name:"
|
457 |
#: ../lib/tribe-admin-events-list.class.php:160
|
458 |
#: ../lib/the-events-calendar.class.php:523
|
459 |
msgid "Event Categories"
|
460 |
+
msgstr "Categorías de Eventos"
|
461 |
|
462 |
#: ../lib/tribe-admin-events-list.class.php:165
|
463 |
msgid "Start Date"
|
465 |
|
466 |
#: ../lib/tribe-admin-events-list.class.php:166
|
467 |
msgid "End Date"
|
468 |
+
msgstr "Fecha Finaliza"
|
469 |
|
470 |
#: ../lib/tribe-admin-events-list.class.php:167
|
471 |
msgid "Recurring?"
|
479 |
#: ../lib/tribe-view-helpers.class.php:16
|
480 |
#: ../lib/tribe-view-helpers.class.php:33
|
481 |
msgid "Select a Country:"
|
482 |
+
msgstr "Escoga un País:"
|
483 |
|
484 |
#: ../lib/tribe-view-helpers.class.php:34
|
485 |
#: ../lib/template-tags.php:830
|
486 |
#: ../lib/template-tags.php:964
|
487 |
msgid "United States"
|
488 |
+
msgstr "Estados Unidos"
|
489 |
|
490 |
#: ../lib/tribe-view-helpers.class.php:35
|
491 |
msgid "Afghanistan"
|
492 |
+
msgstr "Afganistan"
|
493 |
|
494 |
#: ../lib/tribe-view-helpers.class.php:36
|
495 |
msgid "Albania"
|
1659 |
|
1660 |
#: ../lib/the-events-calendar.class.php:214
|
1661 |
msgid "category"
|
1662 |
+
msgstr "Categoría"
|
1663 |
|
1664 |
#: ../lib/the-events-calendar.class.php:215
|
1665 |
msgid "month"
|
1666 |
+
msgstr "mes"
|
1667 |
|
1668 |
#: ../lib/the-events-calendar.class.php:216
|
1669 |
msgid "upcoming"
|
1670 |
+
msgstr "próximo"
|
1671 |
|
1672 |
#: ../lib/the-events-calendar.class.php:217
|
1673 |
msgid "past"
|
1674 |
+
msgstr "realizado"
|
1675 |
|
1676 |
#: ../lib/the-events-calendar.class.php:219
|
1677 |
msgid "venue"
|
1678 |
+
msgstr "lugar"
|
1679 |
|
1680 |
#: ../lib/the-events-calendar.class.php:229
|
1681 |
#, php-format
|
1682 |
msgid "Initializing Tribe Events on %s"
|
1683 |
+
msgstr "Inicializando Tribe Events en %s"
|
1684 |
|
1685 |
#: ../lib/the-events-calendar.class.php:277
|
1686 |
#, php-format
|
1687 |
msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
|
1688 |
+
msgstr "Lo sentimos, The Events Calendar requiere Wordpress %s o superior. Por favor actualice su instalación de Wordpress."
|
1689 |
|
1690 |
#: ../lib/the-events-calendar.class.php:280
|
1691 |
#, php-format
|
1692 |
msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
|
1693 |
+
msgstr "Lo sentimos, The Events Calendar requiere PHP %s o superior. Hable con su proveedor de Hospedaje Web para actualizar a una versión mas reciente de PHP"
|
1694 |
|
1695 |
#: ../lib/the-events-calendar.class.php:397
|
1696 |
msgid "Upcoming Events"
|
1697 |
+
msgstr "Eventos Próximos"
|
1698 |
|
1699 |
#: ../lib/the-events-calendar.class.php:399
|
1700 |
msgid "Past Events"
|
1701 |
+
msgstr "Eventos Realizados"
|
1702 |
|
1703 |
#: ../lib/the-events-calendar.class.php:403
|
1704 |
#, php-format
|
1711 |
|
1712 |
#: ../lib/the-events-calendar.class.php:419
|
1713 |
msgid "No description has been entered for this event."
|
1714 |
+
msgstr "No se ha introducido una descripción para este evento."
|
1715 |
|
1716 |
#: ../lib/the-events-calendar.class.php:484
|
1717 |
msgid "Events"
|
1725 |
#: ../lib/the-events-calendar.class.php:499
|
1726 |
#: ../lib/the-events-calendar.class.php:512
|
1727 |
msgid "Add New"
|
1728 |
+
msgstr "Agregar Nuevo"
|
1729 |
|
1730 |
#: ../lib/the-events-calendar.class.php:487
|
1731 |
msgid "Add New Event"
|
1732 |
+
msgstr "Agregar Nuevo Evento"
|
1733 |
|
1734 |
#: ../lib/the-events-calendar.class.php:488
|
1735 |
msgid "Edit Event"
|
1736 |
+
msgstr "Modificar Evento"
|
1737 |
|
1738 |
#: ../lib/the-events-calendar.class.php:489
|
1739 |
msgid "New Event"
|
1749 |
|
1750 |
#: ../lib/the-events-calendar.class.php:492
|
1751 |
msgid "No events found"
|
1752 |
+
msgstr "No se encontrarón eventos"
|
1753 |
|
1754 |
#: ../lib/the-events-calendar.class.php:493
|
1755 |
msgid "No events found in Trash"
|
1756 |
+
msgstr "No hay eventos en la papelera"
|
1757 |
|
1758 |
#: ../lib/the-events-calendar.class.php:497
|
1759 |
#: ../lib/the-events-calendar.class.php:681
|
1766 |
|
1767 |
#: ../lib/the-events-calendar.class.php:500
|
1768 |
msgid "Add New Venue"
|
1769 |
+
msgstr "Agregar Nuevo Lugar"
|
1770 |
|
1771 |
#: ../lib/the-events-calendar.class.php:501
|
1772 |
msgid "Edit Venue"
|
1773 |
+
msgstr "Modificar Lugar"
|
1774 |
|
1775 |
#: ../lib/the-events-calendar.class.php:502
|
1776 |
msgid "New Venue"
|
1783 |
|
1784 |
#: ../lib/the-events-calendar.class.php:504
|
1785 |
msgid "Search Venues"
|
1786 |
+
msgstr "Buscar Lugares"
|
1787 |
|
1788 |
#: ../lib/the-events-calendar.class.php:505
|
1789 |
msgid "No venue found"
|
1790 |
+
msgstr "No se encontró un Lugar"
|
1791 |
|
1792 |
#: ../lib/the-events-calendar.class.php:506
|
1793 |
msgid "No venues found in Trash"
|
1794 |
+
msgstr "No hay Lugares en la Papelera"
|
1795 |
|
1796 |
#: ../lib/the-events-calendar.class.php:510
|
1797 |
#: ../lib/the-events-calendar.class.php:682
|
1804 |
|
1805 |
#: ../lib/the-events-calendar.class.php:513
|
1806 |
msgid "Add New Organizer"
|
1807 |
+
msgstr "Agregar Nuevo Organizador "
|
1808 |
|
1809 |
#: ../lib/the-events-calendar.class.php:514
|
1810 |
msgid "Edit Organizer"
|
1811 |
+
msgstr "Modificar Organizador"
|
1812 |
|
1813 |
#: ../lib/the-events-calendar.class.php:515
|
1814 |
msgid "New Organizer"
|
1820 |
|
1821 |
#: ../lib/the-events-calendar.class.php:518
|
1822 |
msgid "No organizer found"
|
1823 |
+
msgstr "No se encontró organizador"
|
1824 |
|
1825 |
#: ../lib/the-events-calendar.class.php:519
|
1826 |
msgid "No organizers found in Trash"
|
1827 |
+
msgstr "No hay organizadores en la Papelera"
|
1828 |
|
1829 |
#: ../lib/the-events-calendar.class.php:524
|
1830 |
msgid "Event Category"
|
1831 |
+
msgstr "Categoría del Evento"
|
1832 |
|
1833 |
#: ../lib/the-events-calendar.class.php:525
|
1834 |
msgid "Search Event Categories"
|
1835 |
+
msgstr "Buscar en Categorías de Eventos"
|
1836 |
|
1837 |
#: ../lib/the-events-calendar.class.php:526
|
1838 |
msgid "All Event Categories"
|
1839 |
+
msgstr "Todas las Categorías de Eventos"
|
1840 |
|
1841 |
#: ../lib/the-events-calendar.class.php:527
|
1842 |
msgid "Parent Event Category"
|
1844 |
|
1845 |
#: ../lib/the-events-calendar.class.php:528
|
1846 |
msgid "Parent Event Category:"
|
1847 |
+
msgstr "Categoria Superior de Evento:"
|
1848 |
|
1849 |
#: ../lib/the-events-calendar.class.php:529
|
1850 |
msgid "Edit Event Category"
|
1851 |
+
msgstr "Modificar Categoría de Evento"
|
1852 |
|
1853 |
#: ../lib/the-events-calendar.class.php:530
|
1854 |
msgid "Update Event Category"
|
1855 |
+
msgstr "Actualizar Categoría de Evento"
|
1856 |
|
1857 |
#: ../lib/the-events-calendar.class.php:531
|
1858 |
msgid "Add New Event Category"
|
1859 |
+
msgstr "Agregar Nueva Categoria de Evento"
|
1860 |
|
1861 |
#: ../lib/the-events-calendar.class.php:532
|
1862 |
msgid "New Event Category Name"
|
1863 |
+
msgstr "Nuevo Nombre de Categoría de Evento"
|
1864 |
|
1865 |
#: ../lib/the-events-calendar.class.php:542
|
1866 |
#, php-format
|
1871 |
#: ../lib/the-events-calendar.class.php:560
|
1872 |
#: ../lib/the-events-calendar.class.php:577
|
1873 |
msgid "Custom field updated."
|
1874 |
+
msgstr "Campo personalizado actualizado."
|
1875 |
|
1876 |
#: ../lib/the-events-calendar.class.php:544
|
1877 |
#: ../lib/the-events-calendar.class.php:561
|
1878 |
#: ../lib/the-events-calendar.class.php:578
|
1879 |
msgid "Custom field deleted."
|
1880 |
+
msgstr "Campo personalizado borrado"
|
1881 |
|
1882 |
#: ../lib/the-events-calendar.class.php:545
|
1883 |
msgid "Event updated."
|
1905 |
#: ../lib/the-events-calendar.class.php:551
|
1906 |
#, php-format
|
1907 |
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
1908 |
+
msgstr "Evento programado para: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Previsualizar evento</a>"
|
1909 |
|
1910 |
#: ../lib/the-events-calendar.class.php:553
|
1911 |
#: ../lib/the-events-calendar.class.php:570
|
1916 |
#: ../lib/the-events-calendar.class.php:554
|
1917 |
#, php-format
|
1918 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1919 |
+
msgstr "Borrador de Evento actualizado. <a target=\"_blank\" href=\"%s\">Previsualizar evento</a>"
|
1920 |
|
1921 |
#: ../lib/the-events-calendar.class.php:559
|
1922 |
#, php-format
|
1949 |
#: ../lib/the-events-calendar.class.php:568
|
1950 |
#, php-format
|
1951 |
msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
|
1952 |
+
msgstr "Lugar programado para: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Previsualizar lugar</a>"
|
1953 |
|
1954 |
#: ../lib/the-events-calendar.class.php:571
|
1955 |
#, php-format
|
1956 |
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
1957 |
+
msgstr "Borrador de Lugar actualizado. <a target=\"_blank\" href=\"%s\">Previsualizar lugar</a>"
|
1958 |
|
1959 |
#: ../lib/the-events-calendar.class.php:576
|
1960 |
#, php-format
|
1987 |
#: ../lib/the-events-calendar.class.php:585
|
1988 |
#, php-format
|
1989 |
msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
|
1990 |
+
msgstr "Organizador programado para: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Previsualizar organizador</a>"
|
1991 |
|
1992 |
#: ../lib/the-events-calendar.class.php:588
|
1993 |
#, php-format
|
1994 |
msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
1995 |
+
msgstr "Borrador de Organizador actualizado. <a target=\"_blank\" href=\"%s\">Previsualizar organizador</a>"
|
1996 |
|
1997 |
#: ../lib/the-events-calendar.class.php:643
|
1998 |
msgid "Next"
|
2000 |
|
2001 |
#: ../lib/the-events-calendar.class.php:644
|
2002 |
msgid "Prev"
|
2003 |
+
msgstr "Previo"
|
2004 |
|
2005 |
#: ../lib/the-events-calendar.class.php:645
|
2006 |
msgid "Today"
|
2016 |
|
2017 |
#: ../lib/the-events-calendar.class.php:1416
|
2018 |
msgid "No saved venues yet."
|
2019 |
+
msgstr "No hay lugares guardados aún."
|
2020 |
|
2021 |
#: ../lib/the-events-calendar.class.php:1494
|
2022 |
msgid "Use New Organizer"
|
2024 |
|
2025 |
#: ../lib/the-events-calendar.class.php:1501
|
2026 |
msgid "No saved organizers yet."
|
2027 |
+
msgstr "No hay organizadores guardados aún."
|
2028 |
|
2029 |
#: ../lib/the-events-calendar.class.php:1739
|
2030 |
msgid "Event Options"
|
2056 |
|
2057 |
#: ../lib/tribe-the-events-calendar-import.class.php:46
|
2058 |
msgid "It appears that you have some old events calendar data that needs to be upgraded. Please be sure to back up your database before initiating the upgrade. This process can not be undone."
|
2059 |
+
msgstr "Al Parecer usted tiene datos de events calendar que requieren ser actualizados. Por favor asegurese de respaldar su base de datos antes de iniciar la actualización. Este proceso no puede ser deshecho."
|
2060 |
|
2061 |
#: ../lib/tribe-the-events-calendar-import.class.php:47
|
2062 |
msgid "Migrate Data!"
|
2065 |
#: ../lib/tribe-the-events-calendar-import.class.php:119
|
2066 |
#, php-format
|
2067 |
msgid "You successfully migrated (%d) entries."
|
2068 |
+
msgstr "Usted ha migrado exitosamente (%d) entradas."
|
2069 |
|
2070 |
#: ../lib/tribe-the-events-calendar-import.class.php:189
|
2071 |
msgid "Install has 1 or more legacy event!"
|
2072 |
+
msgstr "¡Esta instalación tiene uno o más eventos en formato anterior!"
|
2073 |
|
2074 |
#: ../lib/template-tags.php:331
|
2075 |
msgid "Free"
|
2077 |
|
2078 |
#: ../lib/template-tags.php:863
|
2079 |
msgid "Calendar of Events"
|
2080 |
+
msgstr "Calendario de Eventos"
|
2081 |
|
2082 |
#: ../lib/widget-list.class.php:16
|
2083 |
msgid "A widget that displays the next upcoming x events."
|
2084 |
+
msgstr "Un widget que muestra los próximos x eventos programados."
|
2085 |
|
2086 |
#: ../lib/widget-list.class.php:70
|
2087 |
msgid "View All Events"
|
2088 |
+
msgstr "Ver Todos los Eventos"
|
2089 |
|
2090 |
#: ../lib/widget-list.class.php:73
|
2091 |
msgid "There are no upcoming events at this time."
|
2092 |
+
msgstr "No hay eventos programados en este momento"
|
2093 |
|
lang/tribe-events-calendar-sv_SE.mo
CHANGED
Binary file
|
lang/tribe-events-calendar-sv_SE.po
CHANGED
@@ -2,10 +2,10 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: The Events Calendar 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-01
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: Ben Andersen <ben@bentrix.com>\n"
|
8 |
-
"Language-Team: Ben Andersen <
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -16,6 +16,18 @@ msgstr ""
|
|
16 |
msgid "Hide From Upcoming Events List"
|
17 |
msgstr "Dölj från kommande evenemangslista"
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
#: ../admin-views/events-meta-box.php:25
|
20 |
msgid "Event Time & Date"
|
21 |
msgstr "Evenemang tid & datum"
|
@@ -74,199 +86,396 @@ msgstr "Kostnad:"
|
|
74 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
75 |
msgstr "Lämna blankt för att dölja fältet. Skriv 0 för evenemang som är gratis."
|
76 |
|
77 |
-
#: ../admin-views/
|
78 |
-
|
79 |
-
|
80 |
-
|
|
|
|
|
|
|
|
|
81 |
|
82 |
-
#: ../admin-views/
|
83 |
-
msgid "
|
84 |
-
msgstr "
|
85 |
|
86 |
-
#: ../admin-views/
|
87 |
-
|
88 |
-
|
89 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
|
91 |
-
#: ../admin-views/
|
92 |
-
msgid "
|
93 |
-
msgstr "
|
94 |
|
95 |
-
#: ../admin-views/
|
96 |
-
|
97 |
-
|
|
|
98 |
|
99 |
-
#: ../admin-views/
|
100 |
-
|
101 |
-
|
102 |
-
msgstr "Standard vy för evenemang"
|
103 |
|
104 |
-
#: ../admin-views/
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
107 |
|
108 |
-
#: ../admin-views/
|
109 |
-
|
110 |
-
|
|
|
111 |
|
112 |
-
#: ../admin-views/
|
113 |
-
#: ../admin-views/
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
msgid "Show Comments"
|
116 |
msgstr "Visa kommentarer"
|
117 |
|
118 |
-
#: ../admin-views/
|
119 |
-
|
|
|
|
|
|
|
120 |
msgid "Multiday Event Cutoff"
|
121 |
msgstr "Flerdagsevenemag avklippt"
|
122 |
|
123 |
-
#: ../admin-views/
|
124 |
msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
|
125 |
msgstr "För flerdagsevenemang, dölj den sista dagen från rutnätsvyn om det slutar vid eller före denna tid."
|
126 |
|
127 |
-
#: ../admin-views/
|
128 |
-
#: ../admin-views/events-options.php:122
|
129 |
msgid "Enable Google Maps"
|
130 |
msgstr "Aktivera Google Maps"
|
131 |
|
132 |
-
#: ../admin-views/
|
133 |
-
msgid "
|
134 |
-
msgstr "
|
135 |
|
136 |
-
#: ../admin-views/
|
137 |
-
msgid "
|
138 |
-
msgstr "
|
139 |
|
140 |
-
#: ../admin-views/
|
141 |
-
msgid "
|
142 |
-
msgstr "
|
143 |
|
144 |
-
#: ../admin-views/
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#: ../admin-views/
|
149 |
-
|
150 |
-
|
151 |
-
msgstr "Evenemangs URL slug"
|
152 |
|
153 |
-
#: ../admin-views/
|
154 |
-
msgid "
|
155 |
-
msgstr "
|
156 |
|
157 |
-
#: ../admin-views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
#, php-format
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
161 |
|
162 |
-
#: ../admin-views/
|
163 |
-
|
164 |
-
|
165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
|
167 |
-
#: ../admin-views/
|
168 |
-
msgid "
|
169 |
-
msgstr "
|
170 |
|
171 |
-
#: ../admin-views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
#, php-format
|
173 |
-
msgid "
|
174 |
-
msgstr "
|
175 |
|
176 |
-
#: ../admin-views/
|
177 |
-
|
178 |
-
|
179 |
-
|
|
|
|
|
|
|
|
|
180 |
|
181 |
-
#: ../admin-views/
|
182 |
-
|
183 |
-
|
|
|
184 |
|
185 |
-
#: ../admin-views/
|
186 |
#, php-format
|
187 |
-
msgid "
|
188 |
-
msgstr "
|
189 |
|
190 |
-
#: ../admin-views/
|
191 |
-
|
192 |
-
|
|
|
193 |
|
194 |
-
#: ../admin-views/
|
195 |
-
|
196 |
-
msgid "Events
|
197 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
|
199 |
-
#: ../admin-views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
msgid "Default Events Template"
|
201 |
msgstr "Standard evenemangsmall"
|
202 |
|
203 |
-
#: ../admin-views/
|
204 |
msgid "Default Page Template"
|
205 |
msgstr "Standard sidmall"
|
206 |
|
207 |
-
#: ../admin-views/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
msgid "Choose a page template to control the look and feel of your calendar."
|
209 |
msgstr "Välj en sidmall för att kontrollera utseendet och känslan av din kalender."
|
210 |
|
211 |
-
#: ../admin-views/
|
212 |
-
#: ../admin-views/events-options.php:183
|
213 |
-
#: ../admin-views/events-options.php:191
|
214 |
msgid "Add HTML before calendar"
|
215 |
msgstr "Lägg till HTML före kalender"
|
216 |
|
217 |
-
#: ../admin-views/
|
218 |
-
msgid "Some themes may require that you add extra divs before the calendar list to help with styling."
|
219 |
-
msgstr "Vissa teman kan kräva att du lägger till extra div:ar innan kalenderlistan för att hjälpa till med styling."
|
220 |
|
221 |
-
#: ../admin-views/
|
222 |
-
|
223 |
-
msgstr "Detta visas direkt efter sidhuvudet."
|
224 |
-
|
225 |
-
#: ../admin-views/events-options.php:185
|
226 |
-
#: ../admin-views/events-options.php:193
|
227 |
msgid "You may use (x)HTML."
|
228 |
msgstr "Du kan använda (x)HTML."
|
229 |
|
230 |
-
#: ../admin-views/
|
231 |
msgid "Add HTML after calendar"
|
232 |
msgstr "Lägg till HTML efter kalender"
|
233 |
|
234 |
-
#: ../admin-views/
|
235 |
-
msgid "Some themes may require that you add extra divs after the calendar list to help with styling."
|
236 |
-
msgstr "Vissa teman kan kräva att du lägger extra div:ar efter kalenderlistan för att hjälpa till med styling."
|
237 |
-
|
238 |
-
#: ../admin-views/events-options.php:193
|
239 |
-
msgid "This is displayed directly above the footer."
|
240 |
-
msgstr "Detta visas direkt över sidfoten."
|
241 |
-
|
242 |
-
#: ../admin-views/events-options.php:202
|
243 |
-
msgid "Save Changes"
|
244 |
-
msgstr "Spara ändringar"
|
245 |
-
|
246 |
-
#: ../admin-views/organizer-meta-box.php:11
|
247 |
-
msgid "Organizer Name:"
|
248 |
-
msgstr "Arrangörens namn:"
|
249 |
-
|
250 |
-
#: ../admin-views/organizer-meta-box.php:17
|
251 |
-
#: ../admin-views/venue-meta-box.php:83
|
252 |
-
msgid "Phone:"
|
253 |
-
msgstr "Telefon:"
|
254 |
-
|
255 |
-
#: ../admin-views/organizer-meta-box.php:21
|
256 |
-
msgid "Website:"
|
257 |
-
msgstr "Webbplats:"
|
258 |
-
|
259 |
-
#: ../admin-views/organizer-meta-box.php:25
|
260 |
-
msgid "Email:"
|
261 |
-
msgstr "E-post:"
|
262 |
-
|
263 |
-
#: ../admin-views/recurrence-dialog.php:11
|
264 |
-
msgid "Which events do you wish to update?"
|
265 |
-
msgstr "Vilka evenemang vill du uppdatera?"
|
266 |
-
|
267 |
-
#: ../admin-views/recurrence-dialog.php:14
|
268 |
-
msgid "Select your desired action"
|
269 |
-
msgstr "Välj din önskade åtgärd"
|
270 |
|
271 |
#: ../admin-views/venue-meta-box.php:12
|
272 |
msgid "Venue Name:"
|
@@ -292,7 +501,7 @@ msgstr " "
|
|
292 |
msgid "Select a State:"
|
293 |
msgstr "Välj landskap:"
|
294 |
|
295 |
-
#: ../admin-views/venue-meta-box.php:
|
296 |
msgid "Postal Code:"
|
297 |
msgstr "Postnummer:"
|
298 |
|
@@ -312,407 +521,417 @@ msgstr "Visa widget endast om det finns kommande evenemang:"
|
|
312 |
msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
|
313 |
msgstr "Om du vill anpassa widgetens visning själv, se filen views/events-list-load-widget-display.php i the Events Premium tillägget."
|
314 |
|
315 |
-
#: ../lib/the-events-calendar.class.php:
|
316 |
-
msgid "The Events Calendar"
|
317 |
-
msgstr "Evenemangskalender"
|
318 |
-
|
319 |
-
#: ../lib/the-events-calendar.class.php:251
|
320 |
msgid "category"
|
321 |
msgstr "kategori"
|
322 |
|
323 |
-
#: ../lib/the-events-calendar.class.php:
|
|
|
|
|
|
|
|
|
324 |
msgid "month"
|
325 |
msgstr "month"
|
326 |
|
327 |
-
#: ../lib/the-events-calendar.class.php:
|
328 |
msgid "upcoming"
|
329 |
msgstr "upcoming"
|
330 |
|
331 |
-
#: ../lib/the-events-calendar.class.php:
|
332 |
msgid "past"
|
333 |
msgstr "past"
|
334 |
|
335 |
-
#: ../lib/the-events-calendar.class.php:
|
336 |
msgid "venue"
|
337 |
msgstr "plats"
|
338 |
|
339 |
-
#: ../lib/the-events-calendar.class.php:
|
340 |
#, php-format
|
341 |
msgid "Initializing Tribe Events on %s"
|
342 |
msgstr "Initierar Tribe evenemang på %s"
|
343 |
|
344 |
-
#: ../lib/the-events-calendar.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
#, php-format
|
346 |
msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
|
347 |
msgstr "Tyvärr, The Events Calendar kräver Wordpress %s eller högre. Uppdatera din Wordpress installation."
|
348 |
|
349 |
-
#: ../lib/the-events-calendar.class.php:
|
350 |
#, php-format
|
351 |
msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
|
352 |
msgstr "Tyvärr, The Events Calendar kräver PHP %s eller högre. Kontakta ditt webbhotell om att flytta dig till en nyare version av PHP."
|
353 |
|
354 |
-
#: ../lib/the-events-calendar.class.php:
|
355 |
msgid "Upcoming Events"
|
356 |
msgstr "Kommande evenemang"
|
357 |
|
358 |
-
#: ../lib/the-events-calendar.class.php:
|
359 |
msgid "Past Events"
|
360 |
msgstr "Tidigare evenemang"
|
361 |
|
362 |
-
#: ../lib/the-events-calendar.class.php:
|
363 |
-
#: ../lib/the-events-calendar.class.php:
|
364 |
#, php-format
|
365 |
msgid "Events for %s"
|
366 |
msgstr "Evenemang för %s"
|
367 |
|
368 |
-
#: ../lib/the-events-calendar.class.php:
|
369 |
msgid "Events this month"
|
370 |
msgstr "Evenemang denna månad"
|
371 |
|
372 |
-
#: ../lib/the-events-calendar.class.php:
|
373 |
#, php-format
|
374 |
msgid "Events at %s"
|
375 |
msgstr "Evenemang för %s"
|
376 |
|
377 |
-
#: ../lib/the-events-calendar.class.php:
|
378 |
msgid "No description has been entered for this event."
|
379 |
msgstr "Ingen beskrivning har angivits för detta evenemang."
|
380 |
|
381 |
-
#: ../lib/the-events-calendar.class.php:
|
382 |
msgid "Events"
|
383 |
msgstr "Evenemang"
|
384 |
|
385 |
-
#: ../lib/the-events-calendar.class.php:
|
386 |
msgid "Event"
|
387 |
msgstr "Evenemang"
|
388 |
|
389 |
-
#: ../lib/the-events-calendar.class.php:
|
390 |
-
#: ../lib/the-events-calendar.class.php:
|
391 |
-
#: ../lib/the-events-calendar.class.php:
|
392 |
msgid "Add New"
|
393 |
msgstr "Lägg till ny"
|
394 |
|
395 |
-
#: ../lib/the-events-calendar.class.php:
|
396 |
msgid "Add New Event"
|
397 |
msgstr "Lägg till nytt evenemang"
|
398 |
|
399 |
-
#: ../lib/the-events-calendar.class.php:
|
400 |
msgid "Edit Event"
|
401 |
msgstr "Redigera evenemang"
|
402 |
|
403 |
-
#: ../lib/the-events-calendar.class.php:
|
404 |
msgid "New Event"
|
405 |
msgstr "Nytt evenemang"
|
406 |
|
407 |
-
#: ../lib/the-events-calendar.class.php:
|
408 |
msgid "View Event"
|
409 |
msgstr "Visa evenemang"
|
410 |
|
411 |
-
#: ../lib/the-events-calendar.class.php:
|
412 |
msgid "Search Events"
|
413 |
msgstr "Sök evenemang"
|
414 |
|
415 |
-
#: ../lib/the-events-calendar.class.php:
|
416 |
msgid "No events found"
|
417 |
msgstr "Inga evenemang hittade"
|
418 |
|
419 |
-
#: ../lib/the-events-calendar.class.php:
|
420 |
msgid "No events found in Trash"
|
421 |
msgstr "Inga evenemang hittade i Papperskorgen"
|
422 |
|
423 |
-
#: ../lib/the-events-calendar.class.php:
|
424 |
msgid "Venues"
|
425 |
msgstr "Platser"
|
426 |
|
427 |
-
#: ../lib/the-events-calendar.class.php:
|
428 |
msgid "Venue"
|
429 |
msgstr "Plats"
|
430 |
|
431 |
-
#: ../lib/the-events-calendar.class.php:
|
432 |
msgid "Add New Venue"
|
433 |
msgstr "Lägg till ny plats"
|
434 |
|
435 |
-
#: ../lib/the-events-calendar.class.php:
|
436 |
msgid "Edit Venue"
|
437 |
msgstr "Redigera plats"
|
438 |
|
439 |
-
#: ../lib/the-events-calendar.class.php:
|
440 |
msgid "New Venue"
|
441 |
msgstr "Ny plats"
|
442 |
|
443 |
-
#: ../lib/the-events-calendar.class.php:
|
444 |
-
#: ../lib/the-events-calendar.class.php:
|
445 |
msgid "View Venue"
|
446 |
msgstr "Visa plats"
|
447 |
|
448 |
-
#: ../lib/the-events-calendar.class.php:
|
449 |
msgid "Search Venues"
|
450 |
msgstr "Sök platser"
|
451 |
|
452 |
-
#: ../lib/the-events-calendar.class.php:
|
453 |
msgid "No venue found"
|
454 |
msgstr "Ingen plats hittad"
|
455 |
|
456 |
-
#: ../lib/the-events-calendar.class.php:
|
457 |
msgid "No venues found in Trash"
|
458 |
msgstr "Inga platser hittade i Papperskorgen"
|
459 |
|
460 |
-
#: ../lib/the-events-calendar.class.php:
|
461 |
msgid "Organizers"
|
462 |
msgstr "Arrangörer"
|
463 |
|
464 |
-
#: ../lib/the-events-calendar.class.php:
|
465 |
msgid "Organizer"
|
466 |
msgstr "Arrangör"
|
467 |
|
468 |
-
#: ../lib/the-events-calendar.class.php:
|
469 |
msgid "Add New Organizer"
|
470 |
msgstr "Lägg till ny arrangör"
|
471 |
|
472 |
-
#: ../lib/the-events-calendar.class.php:
|
473 |
msgid "Edit Organizer"
|
474 |
msgstr "Redigera arrangör"
|
475 |
|
476 |
-
#: ../lib/the-events-calendar.class.php:
|
477 |
msgid "New Organizer"
|
478 |
msgstr "Ny arrangör"
|
479 |
|
480 |
-
#: ../lib/the-events-calendar.class.php:
|
481 |
msgid "Search Organizers"
|
482 |
msgstr "Sök arrangörer"
|
483 |
|
484 |
-
#: ../lib/the-events-calendar.class.php:
|
485 |
msgid "No organizer found"
|
486 |
msgstr "Ingen arrangör hittad"
|
487 |
|
488 |
-
#: ../lib/the-events-calendar.class.php:
|
489 |
msgid "No organizers found in Trash"
|
490 |
msgstr "Inga arrangörer hittade i Papperskorgen"
|
491 |
|
492 |
-
#: ../lib/the-events-calendar.class.php:
|
493 |
-
#: ../lib/tribe-admin-events-list.class.php:172
|
494 |
msgid "Event Categories"
|
495 |
-
msgstr "
|
496 |
|
497 |
-
#: ../lib/the-events-calendar.class.php:
|
498 |
msgid "Event Category"
|
499 |
msgstr "Evenemangskategori"
|
500 |
|
501 |
-
#: ../lib/the-events-calendar.class.php:
|
502 |
msgid "Search Event Categories"
|
503 |
msgstr "Sök evenemangskategorier"
|
504 |
|
505 |
-
#: ../lib/the-events-calendar.class.php:
|
506 |
msgid "All Event Categories"
|
507 |
msgstr "Alla evenemangskategorier"
|
508 |
|
509 |
-
#: ../lib/the-events-calendar.class.php:
|
510 |
msgid "Parent Event Category"
|
511 |
msgstr "Förälder evenemangskategori"
|
512 |
|
513 |
-
#: ../lib/the-events-calendar.class.php:
|
514 |
msgid "Parent Event Category:"
|
515 |
msgstr "Förälder evenemangskategori:"
|
516 |
|
517 |
-
#: ../lib/the-events-calendar.class.php:
|
518 |
msgid "Edit Event Category"
|
519 |
msgstr "Redigera evenemangskategori"
|
520 |
|
521 |
-
#: ../lib/the-events-calendar.class.php:
|
522 |
msgid "Update Event Category"
|
523 |
msgstr "Uppdatera evenemangskategori"
|
524 |
|
525 |
-
#: ../lib/the-events-calendar.class.php:
|
526 |
msgid "Add New Event Category"
|
527 |
msgstr "Lägg till ny evenemangskategori"
|
528 |
|
529 |
-
#: ../lib/the-events-calendar.class.php:
|
530 |
msgid "New Event Category Name"
|
531 |
msgstr "Nytt namn för evenemangskategori"
|
532 |
|
533 |
-
#: ../lib/the-events-calendar.class.php:
|
534 |
#, php-format
|
535 |
msgid "Event updated. <a href=\"%s\">View event</a>"
|
536 |
msgstr "Evenemang uppdatrerat. <a href=\"%s\">Visa evenemang</a>"
|
537 |
|
538 |
-
#: ../lib/the-events-calendar.class.php:
|
539 |
-
#: ../lib/the-events-calendar.class.php:
|
540 |
-
#: ../lib/the-events-calendar.class.php:
|
541 |
msgid "Custom field updated."
|
542 |
msgstr "Anpassat fält uppdaterat."
|
543 |
|
544 |
-
#: ../lib/the-events-calendar.class.php:
|
545 |
-
#: ../lib/the-events-calendar.class.php:
|
546 |
-
#: ../lib/the-events-calendar.class.php:
|
547 |
msgid "Custom field deleted."
|
548 |
msgstr "Anpassat fält raderat."
|
549 |
|
550 |
-
#: ../lib/the-events-calendar.class.php:
|
551 |
msgid "Event updated."
|
552 |
msgstr "Evenemang uppdaterat."
|
553 |
|
554 |
-
#: ../lib/the-events-calendar.class.php:
|
555 |
#, php-format
|
556 |
msgid "Event restored to revision from %s"
|
557 |
msgstr "Evenemang återställd till revision från %s"
|
558 |
|
559 |
-
#: ../lib/the-events-calendar.class.php:
|
560 |
#, php-format
|
561 |
msgid "Event published. <a href=\"%s\">View event</a>"
|
562 |
msgstr "Evenemang publicerat. <a href=\"%s\">Visa evenemang</a>"
|
563 |
|
564 |
-
#: ../lib/the-events-calendar.class.php:
|
565 |
msgid "Event saved."
|
566 |
msgstr "Evenemang sparat."
|
567 |
|
568 |
-
#: ../lib/the-events-calendar.class.php:
|
569 |
#, php-format
|
570 |
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
571 |
msgstr "Evenemang tillagt. <a target=\"_blank\" href=\"%s\">Förhandsgranska evenemang</a>"
|
572 |
|
573 |
-
#: ../lib/the-events-calendar.class.php:
|
574 |
#, php-format
|
575 |
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
576 |
msgstr "Evenemang schemalagt för: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Förhandsgranska evenemang</a>"
|
577 |
|
578 |
-
#: ../lib/the-events-calendar.class.php:
|
579 |
-
#: ../lib/the-events-calendar.class.php:
|
580 |
-
#: ../lib/the-events-calendar.class.php:
|
581 |
msgid "M j, Y @ G:i"
|
582 |
msgstr "Y-m-d @ G:i"
|
583 |
|
584 |
-
#: ../lib/the-events-calendar.class.php:
|
585 |
#, php-format
|
586 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
587 |
msgstr "Evenemangsutkast uppdaterat. <a target=\"_blank\" href=\"%s\">Förhandsgranska evenemang</a>"
|
588 |
|
589 |
-
#: ../lib/the-events-calendar.class.php:
|
590 |
#, php-format
|
591 |
msgid "Venue updated. <a href=\"%s\">View venue</a>"
|
592 |
msgstr "Plats uppdaterad. <a href=\"%s\">Visa plats</a>"
|
593 |
|
594 |
-
#: ../lib/the-events-calendar.class.php:
|
595 |
msgid "Venue updated."
|
596 |
msgstr "Plats uppdaterad."
|
597 |
|
598 |
-
#: ../lib/the-events-calendar.class.php:
|
599 |
#, php-format
|
600 |
msgid "Venue restored to revision from %s"
|
601 |
msgstr "Plats återställd till revision från %s"
|
602 |
|
603 |
-
#: ../lib/the-events-calendar.class.php:
|
604 |
#, php-format
|
605 |
msgid "Venue published. <a href=\"%s\">View venue</a>"
|
606 |
msgstr "Plats publicerad. <a href=\"%s\">Visa plats</a>"
|
607 |
|
608 |
-
#: ../lib/the-events-calendar.class.php:
|
609 |
msgid "Venue saved."
|
610 |
msgstr "Plats sparad."
|
611 |
|
612 |
-
#: ../lib/the-events-calendar.class.php:
|
613 |
#, php-format
|
614 |
msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
615 |
msgstr "Plats tillagd. <a target=\"_blank\" href=\"%s\">Förhandsgranska plats</a>"
|
616 |
|
617 |
-
#: ../lib/the-events-calendar.class.php:
|
618 |
#, php-format
|
619 |
msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
|
620 |
msgstr "Plats schemalagt för: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Förhandsgranska plats</a>"
|
621 |
|
622 |
-
#: ../lib/the-events-calendar.class.php:
|
623 |
#, php-format
|
624 |
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
625 |
msgstr "Platsutkast uppdaterat. <a target=\"_blank\" href=\"%s\">Förhandsgranska plats</a>"
|
626 |
|
627 |
-
#: ../lib/the-events-calendar.class.php:
|
628 |
#, php-format
|
629 |
msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
|
630 |
msgstr "Arrangör uppdaterad. <a href=\"%s\">visa arrangör</a>"
|
631 |
|
632 |
-
#: ../lib/the-events-calendar.class.php:
|
633 |
msgid "Organizer updated."
|
634 |
msgstr "Arrangör uppdaterad."
|
635 |
|
636 |
-
#: ../lib/the-events-calendar.class.php:
|
637 |
#, php-format
|
638 |
msgid "Organizer restored to revision from %s"
|
639 |
msgstr "Arrangör återställd till revision från %s"
|
640 |
|
641 |
-
#: ../lib/the-events-calendar.class.php:
|
642 |
#, php-format
|
643 |
msgid "Organizer published. <a href=\"%s\">View organizer</a>"
|
644 |
msgstr "Arrangör publicerad. <a href=\"%s\">Visa arrangör</a>"
|
645 |
|
646 |
-
#: ../lib/the-events-calendar.class.php:
|
647 |
msgid "Organizer saved."
|
648 |
msgstr "Arrangör sparad."
|
649 |
|
650 |
-
#: ../lib/the-events-calendar.class.php:
|
651 |
#, php-format
|
652 |
msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
653 |
msgstr "Arrangör tillagd. <a target=\"_blank\" href=\"%s\">Förhandsgranska arrangör</a>"
|
654 |
|
655 |
-
#: ../lib/the-events-calendar.class.php:
|
656 |
#, php-format
|
657 |
msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
|
658 |
msgstr "Arrangör schemalagd för: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Förhandsgranska arrangör</a>"
|
659 |
|
660 |
-
#: ../lib/the-events-calendar.class.php:
|
661 |
#, php-format
|
662 |
msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
663 |
msgstr "Arrangörsutkast uppdaterat. <a target=\"_blank\" href=\"%s\">Förhandsgranska arrangör</a>"
|
664 |
|
665 |
-
#: ../lib/the-events-calendar.class.php:
|
666 |
msgid "Next"
|
667 |
msgstr "Nästa"
|
668 |
|
669 |
-
#: ../lib/the-events-calendar.class.php:
|
670 |
msgid "Prev"
|
671 |
msgstr "Föregående"
|
672 |
|
673 |
-
#: ../lib/the-events-calendar.class.php:
|
674 |
msgid "Today"
|
675 |
msgstr "Idag"
|
676 |
|
677 |
-
#: ../lib/the-events-calendar.class.php:
|
678 |
msgid "Done"
|
679 |
msgstr "Färdig"
|
680 |
|
681 |
-
#: ../lib/the-events-calendar.class.php:
|
682 |
msgid "Event Options"
|
683 |
msgstr "Evenemangsalternativ"
|
684 |
|
685 |
-
#: ../lib/the-events-calendar.class.php:
|
686 |
msgid "Venue Information"
|
687 |
msgstr "Platsinformation"
|
688 |
|
689 |
-
#: ../lib/the-events-calendar.class.php:
|
690 |
msgid "Organizer Information"
|
691 |
msgstr "Arrangörsinformation"
|
692 |
|
693 |
-
#: ../lib/the-events-calendar.class.php:
|
694 |
msgid "Support"
|
695 |
msgstr "Support"
|
696 |
|
697 |
-
#: ../lib/the-events-calendar.class.php:
|
698 |
msgid "View All Add-Ons"
|
699 |
msgstr "Visa alla tillägg"
|
700 |
|
701 |
-
#: ../lib/the-events-calendar.class.php:
|
702 |
msgid "News from Modern Tribe"
|
703 |
msgstr "Nyheter från Modern Tribe"
|
704 |
|
705 |
-
#: ../lib/the-events-calendar.class.php:
|
706 |
msgid "Additional Functionality"
|
707 |
msgstr "Ytterligare funktionalitet"
|
708 |
|
709 |
-
#: ../lib/the-events-calendar.class.php:
|
710 |
-
#: ../lib/the-events-calendar.class.php:2060
|
711 |
-
msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
|
712 |
-
msgstr "Söker du ytterligare funktionalitet som repeterande evenemang, anpassad meta, community evenemang, biljettförsäljning med mera?"
|
713 |
-
|
714 |
-
#: ../lib/the-events-calendar.class.php:2054
|
715 |
-
#: ../lib/the-events-calendar.class.php:2061
|
716 |
#, php-format
|
717 |
msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
|
718 |
msgstr "Kolla <a href=\"%s\">tillgängliga tillägg</a>."
|
@@ -734,19 +953,19 @@ msgstr "Startdatum"
|
|
734 |
msgid "End Date"
|
735 |
msgstr "Slutdatum"
|
736 |
|
737 |
-
#: ../lib/tribe-admin-events-list.class.php:
|
738 |
msgid "Recurring?"
|
739 |
msgstr "Repeterande?"
|
740 |
|
741 |
-
#: ../lib/tribe-admin-events-list.class.php:
|
742 |
msgid "Yes"
|
743 |
msgstr "Ja"
|
744 |
|
745 |
-
#: ../lib/tribe-admin-events-list.class.php:
|
746 |
msgid "No"
|
747 |
msgstr "Nej"
|
748 |
|
749 |
-
#: ../lib/tribe-admin-events-list.class.php:
|
750 |
#, php-format
|
751 |
msgid "All %s"
|
752 |
msgstr "Alla %s"
|
@@ -760,9 +979,61 @@ msgstr "Tribe"
|
|
760 |
msgid "Error"
|
761 |
msgstr "Fel"
|
762 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
763 |
#: ../lib/tribe-the-events-calendar-import.class.php:44
|
764 |
-
msgid "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure you have backed up before proceeding any further. You can easily <a href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/\">revert to an old version</a> if you want to backup first. This upgrade includes two major steps, <a href=\"options-general.php?page=tribe-
|
765 |
-
msgstr "Välkommen till
|
766 |
|
767 |
#: ../lib/tribe-the-events-calendar-import.class.php:54
|
768 |
msgid "Upgrade from The Events Calendar"
|
@@ -776,1178 +1047,1264 @@ msgstr "Det verkar som att du har några gamla kalenderhändelser som behöver u
|
|
776 |
msgid "Migrate Data!"
|
777 |
msgstr "Migrerar data!"
|
778 |
|
779 |
-
#: ../lib/tribe-the-events-calendar-import.class.php:
|
780 |
#, php-format
|
781 |
msgid "You successfully migrated (%d) entries."
|
782 |
msgstr "Du migrerade framgångsrikt (%d) poster."
|
783 |
|
784 |
-
#: ../lib/tribe-the-events-calendar-import.class.php:
|
785 |
msgid "Install has 1 or more legacy event!"
|
786 |
msgstr "Installationen har 1 eller fler föråldrade evenemang!"
|
787 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
788 |
#: ../lib/tribe-view-helpers.class.php:16
|
789 |
-
#: ../lib/tribe-view-helpers.class.php:
|
790 |
msgid "Select a Country:"
|
791 |
msgstr "Välj ett land:"
|
792 |
|
793 |
-
#: ../lib/tribe-view-helpers.class.php:
|
794 |
msgid "United States"
|
795 |
msgstr "Förenta Staterna"
|
796 |
|
797 |
-
#: ../lib/tribe-view-helpers.class.php:
|
798 |
msgid "Afghanistan"
|
799 |
msgstr "Afghanistan"
|
800 |
|
801 |
-
#: ../lib/tribe-view-helpers.class.php:
|
802 |
msgid "Albania"
|
803 |
msgstr "Albanien"
|
804 |
|
805 |
-
#: ../lib/tribe-view-helpers.class.php:
|
806 |
msgid "Algeria"
|
807 |
msgstr "Algeriet"
|
808 |
|
809 |
-
#: ../lib/tribe-view-helpers.class.php:
|
810 |
msgid "American Samoa"
|
811 |
msgstr "Amerikanska Samoa"
|
812 |
|
813 |
-
#: ../lib/tribe-view-helpers.class.php:
|
814 |
msgid "Andorra"
|
815 |
msgstr "Andorra"
|
816 |
|
817 |
-
#: ../lib/tribe-view-helpers.class.php:
|
818 |
msgid "Angola"
|
819 |
msgstr "Angola"
|
820 |
|
821 |
-
#: ../lib/tribe-view-helpers.class.php:
|
822 |
msgid "Anguilla"
|
823 |
msgstr "Anguilla"
|
824 |
|
825 |
-
#: ../lib/tribe-view-helpers.class.php:
|
826 |
msgid "Antarctica"
|
827 |
msgstr "Antarktis"
|
828 |
|
829 |
-
#: ../lib/tribe-view-helpers.class.php:
|
830 |
msgid "Antigua And Barbuda"
|
831 |
msgstr "Antigua och Barbuda"
|
832 |
|
833 |
-
#: ../lib/tribe-view-helpers.class.php:
|
834 |
msgid "Argentina"
|
835 |
msgstr "Argentina"
|
836 |
|
837 |
-
#: ../lib/tribe-view-helpers.class.php:
|
838 |
msgid "Armenia"
|
839 |
msgstr "Armenien"
|
840 |
|
841 |
-
#: ../lib/tribe-view-helpers.class.php:
|
842 |
msgid "Aruba"
|
843 |
msgstr "Aruba"
|
844 |
|
845 |
-
#: ../lib/tribe-view-helpers.class.php:
|
846 |
msgid "Australia"
|
847 |
msgstr "Australien"
|
848 |
|
849 |
-
#: ../lib/tribe-view-helpers.class.php:
|
850 |
msgid "Austria"
|
851 |
msgstr "Österrike"
|
852 |
|
853 |
-
#: ../lib/tribe-view-helpers.class.php:
|
854 |
msgid "Azerbaijan"
|
855 |
msgstr "Azerbajdzjan"
|
856 |
|
857 |
-
#: ../lib/tribe-view-helpers.class.php:
|
858 |
msgid "Bahamas"
|
859 |
msgstr "Bahamas"
|
860 |
|
861 |
-
#: ../lib/tribe-view-helpers.class.php:
|
862 |
msgid "Bahrain"
|
863 |
msgstr "Bahrain"
|
864 |
|
865 |
-
#: ../lib/tribe-view-helpers.class.php:
|
866 |
msgid "Bangladesh"
|
867 |
msgstr "Bangladesh"
|
868 |
|
869 |
-
#: ../lib/tribe-view-helpers.class.php:
|
870 |
msgid "Barbados"
|
871 |
msgstr "Barbados"
|
872 |
|
873 |
-
#: ../lib/tribe-view-helpers.class.php:
|
874 |
msgid "Belarus"
|
875 |
msgstr "Vitryssland"
|
876 |
|
877 |
-
#: ../lib/tribe-view-helpers.class.php:
|
878 |
msgid "Belgium"
|
879 |
msgstr "Belgien"
|
880 |
|
881 |
-
#: ../lib/tribe-view-helpers.class.php:
|
882 |
msgid "Belize"
|
883 |
msgstr "Belize"
|
884 |
|
885 |
-
#: ../lib/tribe-view-helpers.class.php:
|
886 |
msgid "Benin"
|
887 |
msgstr "Benin"
|
888 |
|
889 |
-
#: ../lib/tribe-view-helpers.class.php:
|
890 |
msgid "Bermuda"
|
891 |
msgstr "Bermuda"
|
892 |
|
893 |
-
#: ../lib/tribe-view-helpers.class.php:
|
894 |
msgid "Bhutan"
|
895 |
msgstr "Bhutan"
|
896 |
|
897 |
-
#: ../lib/tribe-view-helpers.class.php:
|
898 |
msgid "Bolivia"
|
899 |
msgstr "Bolivia"
|
900 |
|
901 |
-
#: ../lib/tribe-view-helpers.class.php:
|
902 |
msgid "Bosnia And Herzegowina"
|
903 |
msgstr "Bosnien och Hercegovina"
|
904 |
|
905 |
-
#: ../lib/tribe-view-helpers.class.php:
|
906 |
msgid "Botswana"
|
907 |
msgstr "Botswana"
|
908 |
|
909 |
-
#: ../lib/tribe-view-helpers.class.php:
|
910 |
msgid "Bouvet Island"
|
911 |
msgstr "Bouvet Island"
|
912 |
|
913 |
-
#: ../lib/tribe-view-helpers.class.php:
|
914 |
msgid "Brazil"
|
915 |
msgstr "Brasilien"
|
916 |
|
917 |
-
#: ../lib/tribe-view-helpers.class.php:
|
918 |
msgid "British Indian Ocean Territory"
|
919 |
msgstr "Brittiska territoriet i Indiska oceanen"
|
920 |
|
921 |
-
#: ../lib/tribe-view-helpers.class.php:
|
922 |
msgid "Brunei Darussalam"
|
923 |
msgstr "Brunei Darussalam"
|
924 |
|
925 |
-
#: ../lib/tribe-view-helpers.class.php:
|
926 |
msgid "Bulgaria"
|
927 |
msgstr "Bulgarien"
|
928 |
|
929 |
-
#: ../lib/tribe-view-helpers.class.php:
|
930 |
msgid "Burkina Faso"
|
931 |
msgstr "Burkina Faso"
|
932 |
|
933 |
-
#: ../lib/tribe-view-helpers.class.php:
|
934 |
msgid "Burundi"
|
935 |
msgstr "Burundi"
|
936 |
|
937 |
-
#: ../lib/tribe-view-helpers.class.php:
|
938 |
msgid "Cambodia"
|
939 |
msgstr "Kambodja"
|
940 |
|
941 |
-
#: ../lib/tribe-view-helpers.class.php:
|
942 |
msgid "Cameroon"
|
943 |
msgstr "Kamerun"
|
944 |
|
945 |
-
#: ../lib/tribe-view-helpers.class.php:
|
946 |
msgid "Canada"
|
947 |
msgstr "Kanada"
|
948 |
|
949 |
-
#: ../lib/tribe-view-helpers.class.php:
|
950 |
msgid "Cape Verde"
|
951 |
msgstr "Kap Verde"
|
952 |
|
953 |
-
#: ../lib/tribe-view-helpers.class.php:
|
954 |
msgid "Cayman Islands"
|
955 |
msgstr "Caymanöarna"
|
956 |
|
957 |
-
#: ../lib/tribe-view-helpers.class.php:
|
958 |
msgid "Central African Republic"
|
959 |
msgstr "Centralafrikanska republiken"
|
960 |
|
961 |
-
#: ../lib/tribe-view-helpers.class.php:
|
962 |
msgid "Chad"
|
963 |
msgstr "Tchad"
|
964 |
|
965 |
-
#: ../lib/tribe-view-helpers.class.php:
|
966 |
msgid "Chile"
|
967 |
msgstr "Chile"
|
968 |
|
969 |
-
#: ../lib/tribe-view-helpers.class.php:
|
970 |
msgid "China"
|
971 |
msgstr "Kina"
|
972 |
|
973 |
-
#: ../lib/tribe-view-helpers.class.php:
|
974 |
msgid "Christmas Island"
|
975 |
msgstr "Julön"
|
976 |
|
977 |
-
#: ../lib/tribe-view-helpers.class.php:
|
978 |
msgid "Cocos (Keeling) Islands"
|
979 |
msgstr "Kokosöarna"
|
980 |
|
981 |
-
#: ../lib/tribe-view-helpers.class.php:
|
982 |
msgid "Colombia"
|
983 |
msgstr "Colombia"
|
984 |
|
985 |
-
#: ../lib/tribe-view-helpers.class.php:
|
986 |
msgid "Comoros"
|
987 |
msgstr "Komorerna"
|
988 |
|
989 |
-
#: ../lib/tribe-view-helpers.class.php:
|
990 |
msgid "Congo"
|
991 |
msgstr "Kongo"
|
992 |
|
993 |
-
#: ../lib/tribe-view-helpers.class.php:
|
994 |
msgid "Congo, The Democratic Republic Of The"
|
995 |
msgstr "Kongo-Kinshasa (Demokratiska republiken Kongo)"
|
996 |
|
997 |
-
#: ../lib/tribe-view-helpers.class.php:
|
998 |
msgid "Cook Islands"
|
999 |
msgstr "Cooköarna"
|
1000 |
|
1001 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1002 |
msgid "Costa Rica"
|
1003 |
msgstr "Costa Rica"
|
1004 |
|
1005 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1006 |
msgid "Cote D'Ivoire"
|
1007 |
msgstr "Elfenbenskusten"
|
1008 |
|
1009 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1010 |
msgid "Croatia (Local Name: Hrvatska)"
|
1011 |
msgstr "Kroatien"
|
1012 |
|
1013 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1014 |
msgid "Cuba"
|
1015 |
msgstr "Kuba"
|
1016 |
|
1017 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1018 |
msgid "Cyprus"
|
1019 |
msgstr "Cypern"
|
1020 |
|
1021 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1022 |
msgid "Czech Republic"
|
1023 |
msgstr "Tjekien"
|
1024 |
|
1025 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1026 |
msgid "Denmark"
|
1027 |
msgstr "Danmark"
|
1028 |
|
1029 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1030 |
msgid "Djibouti"
|
1031 |
msgstr "Djibouti (Republiken Djibouti)"
|
1032 |
|
1033 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1034 |
msgid "Dominica"
|
1035 |
msgstr "Dominica (Samväldet Dominica)"
|
1036 |
|
1037 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1038 |
msgid "Dominican Republic"
|
1039 |
msgstr "Dominikanska republiken"
|
1040 |
|
1041 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1042 |
msgid "East Timor"
|
1043 |
msgstr "Östtimor"
|
1044 |
|
1045 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1046 |
msgid "Ecuador"
|
1047 |
msgstr "Ecuador"
|
1048 |
|
1049 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1050 |
msgid "Egypt"
|
1051 |
msgstr "Egypten"
|
1052 |
|
1053 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1054 |
msgid "El Salvador"
|
1055 |
msgstr "El Salvador"
|
1056 |
|
1057 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1058 |
msgid "Equatorial Guinea"
|
1059 |
msgstr "Ekvatorialguinea"
|
1060 |
|
1061 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1062 |
msgid "Eritrea"
|
1063 |
msgstr "Eritrea"
|
1064 |
|
1065 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1066 |
msgid "Estonia"
|
1067 |
msgstr "Estland"
|
1068 |
|
1069 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1070 |
msgid "Ethiopia"
|
1071 |
msgstr "Etiopien"
|
1072 |
|
1073 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1074 |
msgid "Falkland Islands (Malvinas)"
|
1075 |
msgstr "Falklandsöarna (Malvinerna)"
|
1076 |
|
1077 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1078 |
msgid "Faroe Islands"
|
1079 |
msgstr "Färöarna"
|
1080 |
|
1081 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1082 |
msgid "Fiji"
|
1083 |
msgstr "Fiji"
|
1084 |
|
1085 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1086 |
msgid "Finland"
|
1087 |
msgstr "Finland"
|
1088 |
|
1089 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1090 |
msgid "France"
|
1091 |
msgstr "Frankrike"
|
1092 |
|
1093 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1094 |
msgid "France, Metropolitan"
|
1095 |
msgstr "France métropolitaine"
|
1096 |
|
1097 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1098 |
msgid "French Guiana"
|
1099 |
msgstr "Franska Guyana"
|
1100 |
|
1101 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1102 |
msgid "French Polynesia"
|
1103 |
msgstr "Franska Polynesien"
|
1104 |
|
1105 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1106 |
msgid "French Southern Territories"
|
1107 |
msgstr "Franska sydterritorierna"
|
1108 |
|
1109 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1110 |
msgid "Gabon"
|
1111 |
msgstr "Gabon"
|
1112 |
|
1113 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1114 |
msgid "Gambia"
|
1115 |
msgstr "Gambia"
|
1116 |
|
1117 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1118 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1119 |
msgid "Georgia"
|
1120 |
msgstr "Georgia"
|
1121 |
|
1122 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1123 |
msgid "Germany"
|
1124 |
msgstr "Tyskland"
|
1125 |
|
1126 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1127 |
msgid "Ghana"
|
1128 |
msgstr "Ghana"
|
1129 |
|
1130 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1131 |
msgid "Gibraltar"
|
1132 |
msgstr "Gibraltar"
|
1133 |
|
1134 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1135 |
msgid "Greece"
|
1136 |
msgstr "Grekland"
|
1137 |
|
1138 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1139 |
msgid "Greenland"
|
1140 |
msgstr "Grönland"
|
1141 |
|
1142 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1143 |
msgid "Grenada"
|
1144 |
msgstr "Grenada"
|
1145 |
|
1146 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1147 |
msgid "Guadeloupe"
|
1148 |
msgstr "Guadeloupe"
|
1149 |
|
1150 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1151 |
msgid "Guam"
|
1152 |
msgstr "Guam"
|
1153 |
|
1154 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1155 |
msgid "Guatemala"
|
1156 |
msgstr "Guatemala"
|
1157 |
|
1158 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1159 |
msgid "Guinea"
|
1160 |
msgstr "Guinea"
|
1161 |
|
1162 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1163 |
msgid "Guinea-Bissau"
|
1164 |
msgstr "Guinea-Bissau"
|
1165 |
|
1166 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1167 |
msgid "Guyana"
|
1168 |
msgstr "Guyana"
|
1169 |
|
1170 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1171 |
msgid "Haiti"
|
1172 |
msgstr "Haiti"
|
1173 |
|
1174 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1175 |
msgid "Heard And Mc Donald Islands"
|
1176 |
msgstr "Heard And Mc Donald Islands"
|
1177 |
|
1178 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1179 |
msgid "Holy See (Vatican City State)"
|
1180 |
msgstr "Vatikanen"
|
1181 |
|
1182 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1183 |
msgid "Honduras"
|
1184 |
msgstr "Honduras"
|
1185 |
|
1186 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1187 |
msgid "Hong Kong"
|
1188 |
msgstr "Hong Kong"
|
1189 |
|
1190 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1191 |
msgid "Hungary"
|
1192 |
msgstr "Ungern"
|
1193 |
|
1194 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1195 |
msgid "Iceland"
|
1196 |
msgstr "Island"
|
1197 |
|
1198 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1199 |
msgid "India"
|
1200 |
msgstr "Indien"
|
1201 |
|
1202 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1203 |
msgid "Indonesia"
|
1204 |
msgstr "Indonesien"
|
1205 |
|
1206 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1207 |
msgid "Iran (Islamic Republic Of)"
|
1208 |
msgstr "Iran (Islamiska republiken Iran)"
|
1209 |
|
1210 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1211 |
msgid "Iraq"
|
1212 |
msgstr "Irak"
|
1213 |
|
1214 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1215 |
msgid "Ireland"
|
1216 |
msgstr "Irland"
|
1217 |
|
1218 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1219 |
msgid "Israel"
|
1220 |
msgstr "Israel"
|
1221 |
|
1222 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1223 |
msgid "Italy"
|
1224 |
msgstr "Italien"
|
1225 |
|
1226 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1227 |
msgid "Jamaica"
|
1228 |
msgstr "Jamaica"
|
1229 |
|
1230 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1231 |
msgid "Japan"
|
1232 |
msgstr "Japan"
|
1233 |
|
1234 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1235 |
msgid "Jordan"
|
1236 |
msgstr "Jordanien"
|
1237 |
|
1238 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1239 |
msgid "Kazakhstan"
|
1240 |
msgstr "Kazakstan"
|
1241 |
|
1242 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1243 |
msgid "Kenya"
|
1244 |
msgstr "Kenya"
|
1245 |
|
1246 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1247 |
msgid "Kiribati"
|
1248 |
msgstr "Kiribati"
|
1249 |
|
1250 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1251 |
msgid "Korea, Democratic People's Republic Of"
|
1252 |
msgstr "Nordkorea (Demokratiska folkrepubliken Korea)"
|
1253 |
|
1254 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1255 |
msgid "Korea, Republic Of"
|
1256 |
msgstr "Sydkorea (Republiken Korea)"
|
1257 |
|
1258 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1259 |
msgid "Kuwait"
|
1260 |
msgstr "Kuwait"
|
1261 |
|
1262 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1263 |
msgid "Kyrgyzstan"
|
1264 |
msgstr "Kirgizistan"
|
1265 |
|
1266 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1267 |
msgid "Lao People's Democratic Republic"
|
1268 |
msgstr "Laos (Demokratiska folkrepubliken Laos)"
|
1269 |
|
1270 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1271 |
msgid "Latvia"
|
1272 |
msgstr "Lettland"
|
1273 |
|
1274 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1275 |
msgid "Lebanon"
|
1276 |
msgstr "Libanon"
|
1277 |
|
1278 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1279 |
msgid "Lesotho"
|
1280 |
msgstr "Lesotho (Konungariket Lesotho)"
|
1281 |
|
1282 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1283 |
msgid "Liberia"
|
1284 |
msgstr "Liberia"
|
1285 |
|
1286 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1287 |
msgid "Libya"
|
1288 |
msgstr "Libyen"
|
1289 |
|
1290 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1291 |
msgid "Liechtenstein"
|
1292 |
msgstr "Liechtenstein"
|
1293 |
|
1294 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1295 |
msgid "Lithuania"
|
1296 |
msgstr "Litauen"
|
1297 |
|
1298 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1299 |
msgid "Luxembourg"
|
1300 |
msgstr "Luxemburg"
|
1301 |
|
1302 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1303 |
msgid "Macau"
|
1304 |
msgstr "Macao"
|
1305 |
|
1306 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1307 |
msgid "Macedonia"
|
1308 |
msgstr "Makedonien"
|
1309 |
|
1310 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1311 |
msgid "Madagascar"
|
1312 |
msgstr "Madagaskar"
|
1313 |
|
1314 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1315 |
msgid "Malawi"
|
1316 |
msgstr "Malawi"
|
1317 |
|
1318 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1319 |
msgid "Malaysia"
|
1320 |
msgstr "Malaysia"
|
1321 |
|
1322 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1323 |
msgid "Maldives"
|
1324 |
msgstr "Maldiverna (Republiken Maldiverna)"
|
1325 |
|
1326 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1327 |
msgid "Mali"
|
1328 |
msgstr "Mali"
|
1329 |
|
1330 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1331 |
msgid "Malta"
|
1332 |
msgstr "Malta"
|
1333 |
|
1334 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1335 |
msgid "Marshall Islands"
|
1336 |
msgstr "Marshallöarna"
|
1337 |
|
1338 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1339 |
msgid "Martinique"
|
1340 |
msgstr "Martinique"
|
1341 |
|
1342 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1343 |
msgid "Mauritania"
|
1344 |
msgstr "Mauretanien (Islamiska republiken Mauretanien)"
|
1345 |
|
1346 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1347 |
msgid "Mauritius"
|
1348 |
msgstr "Mauritius"
|
1349 |
|
1350 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1351 |
msgid "Mayotte"
|
1352 |
msgstr "Mayotte"
|
1353 |
|
1354 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1355 |
msgid "Mexico"
|
1356 |
msgstr "Mexico"
|
1357 |
|
1358 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1359 |
msgid "Micronesia, Federated States Of"
|
1360 |
msgstr "Mikronesien"
|
1361 |
|
1362 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1363 |
msgid "Moldova, Republic Of"
|
1364 |
msgstr "Moldavien"
|
1365 |
|
1366 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1367 |
msgid "Monaco"
|
1368 |
msgstr "Monaco"
|
1369 |
|
1370 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1371 |
msgid "Mongolia"
|
1372 |
msgstr "Mongoliet"
|
1373 |
|
1374 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1375 |
msgid "Montenegro"
|
1376 |
msgstr "Montenegro"
|
1377 |
|
1378 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1379 |
msgid "Montserrat"
|
1380 |
msgstr "Montserrat"
|
1381 |
|
1382 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1383 |
msgid "Morocco"
|
1384 |
msgstr "Marocko"
|
1385 |
|
1386 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1387 |
msgid "Mozambique"
|
1388 |
msgstr "Moçambique (Republiken Moçambique)"
|
1389 |
|
1390 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1391 |
msgid "Myanmar"
|
1392 |
msgstr "Burma"
|
1393 |
|
1394 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1395 |
msgid "Namibia"
|
1396 |
msgstr "Namibia"
|
1397 |
|
1398 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1399 |
msgid "Nauru"
|
1400 |
msgstr "Nauru"
|
1401 |
|
1402 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1403 |
msgid "Nepal"
|
1404 |
msgstr "Nepal"
|
1405 |
|
1406 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1407 |
msgid "Netherlands"
|
1408 |
msgstr "Nederländerna"
|
1409 |
|
1410 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1411 |
msgid "Netherlands Antilles"
|
1412 |
msgstr "Nederländska Antillerna"
|
1413 |
|
1414 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1415 |
msgid "New Caledonia"
|
1416 |
msgstr "Nya Kaledonien"
|
1417 |
|
1418 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1419 |
msgid "New Zealand"
|
1420 |
msgstr "Nya Zeeland"
|
1421 |
|
1422 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1423 |
msgid "Nicaragua"
|
1424 |
msgstr "Nicaragua"
|
1425 |
|
1426 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1427 |
msgid "Niger"
|
1428 |
msgstr "Niger"
|
1429 |
|
1430 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1431 |
msgid "Nigeria"
|
1432 |
msgstr "Nigeria"
|
1433 |
|
1434 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1435 |
msgid "Niue"
|
1436 |
msgstr "Niue"
|
1437 |
|
1438 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1439 |
msgid "Norfolk Island"
|
1440 |
msgstr "Norfolkön"
|
1441 |
|
1442 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1443 |
msgid "Northern Mariana Islands"
|
1444 |
msgstr "Nordmarianerna"
|
1445 |
|
1446 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1447 |
msgid "Norway"
|
1448 |
msgstr "Norge"
|
1449 |
|
1450 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1451 |
msgid "Oman"
|
1452 |
msgstr "Oman"
|
1453 |
|
1454 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1455 |
msgid "Pakistan"
|
1456 |
msgstr "Pakistan"
|
1457 |
|
1458 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1459 |
msgid "Palau"
|
1460 |
msgstr "Palau"
|
1461 |
|
1462 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1463 |
msgid "Panama"
|
1464 |
msgstr "Panama"
|
1465 |
|
1466 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1467 |
msgid "Papua New Guinea"
|
1468 |
msgstr "Papua Nya Guinea"
|
1469 |
|
1470 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1471 |
msgid "Paraguay"
|
1472 |
msgstr "Paraguay"
|
1473 |
|
1474 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1475 |
msgid "Peru"
|
1476 |
msgstr "Peru"
|
1477 |
|
1478 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1479 |
msgid "Philippines"
|
1480 |
msgstr "Filippinerna"
|
1481 |
|
1482 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1483 |
msgid "Pitcairn"
|
1484 |
msgstr "Pitcairnöarna"
|
1485 |
|
1486 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1487 |
msgid "Poland"
|
1488 |
msgstr "Polen"
|
1489 |
|
1490 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1491 |
msgid "Portugal"
|
1492 |
msgstr "Portugal"
|
1493 |
|
1494 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1495 |
msgid "Puerto Rico"
|
1496 |
msgstr "Puerto Rico"
|
1497 |
|
1498 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1499 |
msgid "Qatar"
|
1500 |
msgstr "Qatar"
|
1501 |
|
1502 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1503 |
msgid "Reunion"
|
1504 |
msgstr "Réunion"
|
1505 |
|
1506 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1507 |
msgid "Romania"
|
1508 |
msgstr "Rumänien"
|
1509 |
|
1510 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1511 |
msgid "Russian Federation"
|
1512 |
msgstr "Ryssland (Ryska federationen)"
|
1513 |
|
1514 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1515 |
msgid "Rwanda"
|
1516 |
msgstr "Rwanda"
|
1517 |
|
1518 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1519 |
msgid "Saint Kitts And Nevis"
|
1520 |
msgstr "Saint Kitts och Nevis"
|
1521 |
|
1522 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1523 |
msgid "Saint Lucia"
|
1524 |
msgstr "Saint Lucia"
|
1525 |
|
1526 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1527 |
msgid "Saint Vincent And The Grenadines"
|
1528 |
msgstr "Saint Vincent och Grenadinerna"
|
1529 |
|
1530 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1531 |
msgid "Samoa"
|
1532 |
msgstr "Samoa"
|
1533 |
|
1534 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1535 |
msgid "San Marino"
|
1536 |
msgstr "San Marino"
|
1537 |
|
1538 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1539 |
msgid "Sao Tome And Principe"
|
1540 |
msgstr "São Tomé och Príncipe"
|
1541 |
|
1542 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1543 |
msgid "Saudi Arabia"
|
1544 |
msgstr "Saudiarabien"
|
1545 |
|
1546 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1547 |
msgid "Senegal"
|
1548 |
msgstr "Senegal"
|
1549 |
|
1550 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1551 |
msgid "Serbia"
|
1552 |
msgstr "Serbien"
|
1553 |
|
1554 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1555 |
msgid "Seychelles"
|
1556 |
msgstr "Seychellerna"
|
1557 |
|
1558 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1559 |
msgid "Sierra Leone"
|
1560 |
msgstr "Sierra Leone"
|
1561 |
|
1562 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1563 |
msgid "Singapore"
|
1564 |
msgstr "Singapore"
|
1565 |
|
1566 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1567 |
msgid "Slovakia (Slovak Republic)"
|
1568 |
msgstr "Slovakien"
|
1569 |
|
1570 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1571 |
msgid "Slovenia"
|
1572 |
msgstr "Slovenien"
|
1573 |
|
1574 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1575 |
msgid "Solomon Islands"
|
1576 |
msgstr "Salomonöarna"
|
1577 |
|
1578 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1579 |
msgid "Somalia"
|
1580 |
msgstr "Somalia"
|
1581 |
|
1582 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1583 |
msgid "South Africa"
|
1584 |
msgstr "Sydafrika"
|
1585 |
|
1586 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1587 |
msgid "South Georgia, South Sandwich Islands"
|
1588 |
msgstr "Sydgeorgien och Sydsandwichöarna"
|
1589 |
|
1590 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1591 |
msgid "Spain"
|
1592 |
msgstr "Spanien"
|
1593 |
|
1594 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1595 |
msgid "Sri Lanka"
|
1596 |
msgstr "Sri Lanka"
|
1597 |
|
1598 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1599 |
msgid "St. Helena"
|
1600 |
msgstr "Sankta Helena"
|
1601 |
|
1602 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1603 |
msgid "St. Pierre And Miquelon"
|
1604 |
msgstr "Saint-Pierre och Miquelon"
|
1605 |
|
1606 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1607 |
msgid "Sudan"
|
1608 |
msgstr "Sudan"
|
1609 |
|
1610 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1611 |
msgid "Suriname"
|
1612 |
msgstr "Surinam"
|
1613 |
|
1614 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1615 |
msgid "Svalbard And Jan Mayen Islands"
|
1616 |
msgstr "Svalbard och Jan Mayen"
|
1617 |
|
1618 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1619 |
msgid "Swaziland"
|
1620 |
msgstr "Swaziland"
|
1621 |
|
1622 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1623 |
msgid "Sweden"
|
1624 |
msgstr "Sverige"
|
1625 |
|
1626 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1627 |
msgid "Switzerland"
|
1628 |
msgstr "Schweiz"
|
1629 |
|
1630 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1631 |
msgid "Syrian Arab Republic"
|
1632 |
msgstr "Syrien (Arabrepubliken Syrien)"
|
1633 |
|
1634 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1635 |
msgid "Taiwan"
|
1636 |
msgstr "Taiwan"
|
1637 |
|
1638 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1639 |
msgid "Tajikistan"
|
1640 |
msgstr "Tadzjikistan"
|
1641 |
|
1642 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1643 |
msgid "Tanzania, United Republic Of"
|
1644 |
msgstr "Tanzania"
|
1645 |
|
1646 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1647 |
msgid "Thailand"
|
1648 |
msgstr "Thailand"
|
1649 |
|
1650 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1651 |
msgid "Togo"
|
1652 |
msgstr "Togo"
|
1653 |
|
1654 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1655 |
msgid "Tokelau"
|
1656 |
msgstr "Tokelauöarna"
|
1657 |
|
1658 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1659 |
msgid "Tonga"
|
1660 |
msgstr "Tonga"
|
1661 |
|
1662 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1663 |
msgid "Trinidad And Tobago"
|
1664 |
msgstr "Trinidad And Tobago"
|
1665 |
|
1666 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1667 |
msgid "Tunisia"
|
1668 |
msgstr "Tunisien"
|
1669 |
|
1670 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1671 |
msgid "Turkey"
|
1672 |
msgstr "Turkiet"
|
1673 |
|
1674 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1675 |
msgid "Turkmenistan"
|
1676 |
msgstr "Turkmenistan"
|
1677 |
|
1678 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1679 |
msgid "Turks And Caicos Islands"
|
1680 |
msgstr "Turks- och Caicosöarna"
|
1681 |
|
1682 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1683 |
msgid "Tuvalu"
|
1684 |
msgstr "Tuvalu"
|
1685 |
|
1686 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1687 |
msgid "Uganda"
|
1688 |
msgstr "Uganda"
|
1689 |
|
1690 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1691 |
msgid "Ukraine"
|
1692 |
msgstr "Ukraina"
|
1693 |
|
1694 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1695 |
msgid "United Arab Emirates"
|
1696 |
msgstr "Förenade Arabemiraten"
|
1697 |
|
1698 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1699 |
msgid "United Kingdom"
|
1700 |
msgstr "Storbritannien (Förenade kungariket Storbritannien)"
|
1701 |
|
1702 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1703 |
msgid "United States Minor Outlying Islands"
|
1704 |
msgstr "Förenta staternas avlägset belägna öar"
|
1705 |
|
1706 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1707 |
msgid "Uruguay"
|
1708 |
msgstr "Uruguay"
|
1709 |
|
1710 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1711 |
msgid "Uzbekistan"
|
1712 |
msgstr "Uzbekistan"
|
1713 |
|
1714 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1715 |
msgid "Vanuatu"
|
1716 |
msgstr "Vanuatu"
|
1717 |
|
1718 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1719 |
msgid "Venezuela"
|
1720 |
msgstr "Venezuela"
|
1721 |
|
1722 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1723 |
msgid "Viet Nam"
|
1724 |
msgstr "Vietnam (Socialistiska republiken Vietnam)"
|
1725 |
|
1726 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1727 |
msgid "Virgin Islands (British)"
|
1728 |
msgstr "Brittiska Jungfruöarna"
|
1729 |
|
1730 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1731 |
msgid "Virgin Islands (U.S.)"
|
1732 |
msgstr "Amerikanska Jungfruöarna"
|
1733 |
|
1734 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1735 |
msgid "Wallis And Futuna Islands"
|
1736 |
msgstr "Wallis- och Futunaöarna"
|
1737 |
|
1738 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1739 |
msgid "Western Sahara"
|
1740 |
msgstr "Västsahara"
|
1741 |
|
1742 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1743 |
msgid "Yemen"
|
1744 |
msgstr "Jemen"
|
1745 |
|
1746 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1747 |
msgid "Zambia"
|
1748 |
msgstr "Zambia"
|
1749 |
|
1750 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1751 |
msgid "Zimbabwe"
|
1752 |
msgstr "Zimbabwe"
|
1753 |
|
1754 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1755 |
msgid "Alabama"
|
1756 |
msgstr "Alabama"
|
1757 |
|
1758 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1759 |
msgid "Alaska"
|
1760 |
msgstr "Alaska"
|
1761 |
|
1762 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1763 |
msgid "Arizona"
|
1764 |
msgstr "Arizona"
|
1765 |
|
1766 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1767 |
msgid "Arkansas"
|
1768 |
msgstr "Arkansas"
|
1769 |
|
1770 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1771 |
msgid "California"
|
1772 |
msgstr "California"
|
1773 |
|
1774 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1775 |
msgid "Colorado"
|
1776 |
msgstr "Colorado"
|
1777 |
|
1778 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1779 |
msgid "Connecticut"
|
1780 |
msgstr "Connecticut"
|
1781 |
|
1782 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1783 |
msgid "Delaware"
|
1784 |
msgstr "Delaware"
|
1785 |
|
1786 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1787 |
msgid "District of Columbia"
|
1788 |
msgstr "District of Columbia"
|
1789 |
|
1790 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1791 |
msgid "Florida"
|
1792 |
msgstr "Florida"
|
1793 |
|
1794 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1795 |
msgid "Hawaii"
|
1796 |
msgstr "Hawaii"
|
1797 |
|
1798 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1799 |
msgid "Idaho"
|
1800 |
msgstr "Idaho"
|
1801 |
|
1802 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1803 |
msgid "Illinois"
|
1804 |
msgstr "Illinois"
|
1805 |
|
1806 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1807 |
msgid "Indiana"
|
1808 |
msgstr "Indiana"
|
1809 |
|
1810 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1811 |
msgid "Iowa"
|
1812 |
msgstr "Iowa"
|
1813 |
|
1814 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1815 |
msgid "Kansas"
|
1816 |
msgstr "Kansas"
|
1817 |
|
1818 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1819 |
msgid "Kentucky"
|
1820 |
msgstr "Kentucky"
|
1821 |
|
1822 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1823 |
msgid "Louisiana"
|
1824 |
msgstr "Louisiana"
|
1825 |
|
1826 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1827 |
msgid "Maine"
|
1828 |
msgstr "Maine"
|
1829 |
|
1830 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1831 |
msgid "Maryland"
|
1832 |
msgstr "Maryland"
|
1833 |
|
1834 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1835 |
msgid "Massachusetts"
|
1836 |
msgstr "Massachusetts"
|
1837 |
|
1838 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1839 |
msgid "Michigan"
|
1840 |
msgstr "Michigan"
|
1841 |
|
1842 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1843 |
msgid "Minnesota"
|
1844 |
msgstr "Minnesota"
|
1845 |
|
1846 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1847 |
msgid "Mississippi"
|
1848 |
msgstr "Mississippi"
|
1849 |
|
1850 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1851 |
msgid "Missouri"
|
1852 |
msgstr "Missouri"
|
1853 |
|
1854 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1855 |
msgid "Montana"
|
1856 |
msgstr "Montana"
|
1857 |
|
1858 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1859 |
msgid "Nebraska"
|
1860 |
msgstr "Nebraska"
|
1861 |
|
1862 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1863 |
msgid "Nevada"
|
1864 |
msgstr "Nevada"
|
1865 |
|
1866 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1867 |
msgid "New Hampshire"
|
1868 |
msgstr "New Hampshire"
|
1869 |
|
1870 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1871 |
msgid "New Jersey"
|
1872 |
msgstr "New Jersey"
|
1873 |
|
1874 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1875 |
msgid "New Mexico"
|
1876 |
msgstr "New Mexico"
|
1877 |
|
1878 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1879 |
msgid "New York"
|
1880 |
msgstr "New York"
|
1881 |
|
1882 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1883 |
msgid "North Carolina"
|
1884 |
msgstr "North Carolina"
|
1885 |
|
1886 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1887 |
msgid "North Dakota"
|
1888 |
msgstr "North Dakota"
|
1889 |
|
1890 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1891 |
msgid "Ohio"
|
1892 |
msgstr "Ohio"
|
1893 |
|
1894 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1895 |
msgid "Oklahoma"
|
1896 |
msgstr "Oklahoma"
|
1897 |
|
1898 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1899 |
msgid "Oregon"
|
1900 |
msgstr "Oregon"
|
1901 |
|
1902 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1903 |
msgid "Pennsylvania"
|
1904 |
msgstr "Pennsylvania"
|
1905 |
|
1906 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1907 |
msgid "Rhode Island"
|
1908 |
msgstr "Rhode Island"
|
1909 |
|
1910 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1911 |
msgid "South Carolina"
|
1912 |
msgstr "South Carolina"
|
1913 |
|
1914 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1915 |
msgid "South Dakota"
|
1916 |
msgstr "South Dakota"
|
1917 |
|
1918 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1919 |
msgid "Tennessee"
|
1920 |
msgstr "Tennessee"
|
1921 |
|
1922 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1923 |
msgid "Texas"
|
1924 |
msgstr "Texas"
|
1925 |
|
1926 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1927 |
msgid "Utah"
|
1928 |
msgstr "Utah"
|
1929 |
|
1930 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1931 |
msgid "Vermont"
|
1932 |
msgstr "Vermont"
|
1933 |
|
1934 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1935 |
msgid "Virginia"
|
1936 |
msgstr "Virginia"
|
1937 |
|
1938 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1939 |
msgid "Washington"
|
1940 |
msgstr "Washington"
|
1941 |
|
1942 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1943 |
msgid "West Virginia"
|
1944 |
msgstr "West Virginia"
|
1945 |
|
1946 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1947 |
msgid "Wisconsin"
|
1948 |
msgstr "Wisconsin"
|
1949 |
|
1950 |
-
#: ../lib/tribe-view-helpers.class.php:
|
1951 |
msgid "Wyoming"
|
1952 |
msgstr "Wyoming"
|
1953 |
|
@@ -1963,11 +2320,15 @@ msgstr "Visa alla evenemang"
|
|
1963 |
msgid "There are no upcoming events at this time."
|
1964 |
msgstr "Det finns för närvarande inga kommande evenemang."
|
1965 |
|
1966 |
-
#: ../public/template-tags/general.php:
|
1967 |
msgid "Category:"
|
1968 |
msgstr "Kategori:"
|
1969 |
|
1970 |
-
#: ../public/template-tags/general.php:
|
|
|
|
|
|
|
|
|
1971 |
msgid "Free"
|
1972 |
msgstr "Gratis"
|
1973 |
|
@@ -1975,6 +2336,41 @@ msgstr "Gratis"
|
|
1975 |
msgid "Calendar of Events"
|
1976 |
msgstr "Evenemangskalender"
|
1977 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1978 |
#: ../views/ecp-single-template.php:24
|
1979 |
msgid "Edit"
|
1980 |
msgstr "Redigera"
|
@@ -1983,34 +2379,49 @@ msgstr "Redigera"
|
|
1983 |
msgid "All Day"
|
1984 |
msgstr "Heldag"
|
1985 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1986 |
#: ../views/gridview.php:42
|
1987 |
#: ../views/list.php:165
|
1988 |
-
#: ../views/single.php:
|
1989 |
msgid "iCal Import"
|
1990 |
msgstr "iCal import"
|
1991 |
|
|
|
|
|
|
|
|
|
|
|
1992 |
#: ../views/list.php:50
|
1993 |
-
#: ../views/single.php:
|
1994 |
msgid "Start:"
|
1995 |
msgstr "Börjar:"
|
1996 |
|
1997 |
#: ../views/list.php:54
|
1998 |
-
#: ../views/single.php:
|
1999 |
msgid "End:"
|
2000 |
msgstr "Slutar:"
|
2001 |
|
2002 |
#: ../views/list.php:59
|
2003 |
-
#: ../views/single.php:
|
2004 |
msgid "Date:"
|
2005 |
msgstr "Datum:"
|
2006 |
|
2007 |
#: ../views/list.php:69
|
2008 |
-
#: ../views/single.php:
|
2009 |
msgid "Venue:"
|
2010 |
msgstr "Plats:"
|
2011 |
|
2012 |
#: ../views/list.php:92
|
2013 |
-
#: ../views/single.php:
|
2014 |
msgid "Google Map"
|
2015 |
msgstr "Google Map"
|
2016 |
|
@@ -2049,40 +2460,40 @@ msgstr "« Föregående evenemang"
|
|
2049 |
msgid "Next Events »"
|
2050 |
msgstr "Nästa evenemang »"
|
2051 |
|
2052 |
-
#: ../views/single.php:
|
2053 |
msgid "« Back to Events"
|
2054 |
msgstr "« Tillbaka till evenemang"
|
2055 |
|
2056 |
-
#: ../views/single.php:
|
2057 |
msgid "This event has passed."
|
2058 |
msgstr "Evenemanget har varit."
|
2059 |
|
2060 |
-
#: ../views/single.php:
|
2061 |
msgid "Event:"
|
2062 |
msgstr "Evenemang:"
|
2063 |
|
2064 |
-
#: ../views/single.php:
|
2065 |
-
#: ../views/single.php:
|
2066 |
msgid "Organizer:"
|
2067 |
msgstr "Arrangör:"
|
2068 |
|
2069 |
-
#: ../views/single.php:
|
2070 |
msgid "Updated:"
|
2071 |
msgstr "Uppdaterad:"
|
2072 |
|
2073 |
-
#: ../views/single.php:
|
2074 |
msgid "Schedule:"
|
2075 |
msgstr "Schema:"
|
2076 |
|
2077 |
-
#: ../views/single.php:
|
2078 |
msgid "Click to view a Google Map"
|
2079 |
msgstr "Klicka för att visa en Google Map"
|
2080 |
|
2081 |
-
#: ../views/single.php:
|
2082 |
msgid "Add to Google Calendar"
|
2083 |
msgstr "Lägg till i Google Calendar"
|
2084 |
|
2085 |
-
#: ../views/single.php:
|
2086 |
msgid "+ Google Calendar"
|
2087 |
msgstr "+ Google Calendar"
|
2088 |
|
@@ -2090,3 +2501,28 @@ msgstr "+ Google Calendar"
|
|
2090 |
msgid "View all »"
|
2091 |
msgstr "Visa alla »"
|
2092 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: The Events Calendar 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-05-01 17:05-0500\n"
|
6 |
+
"PO-Revision-Date: 2012-05-21 11:55+0100\n"
|
7 |
"Last-Translator: Ben Andersen <ben@bentrix.com>\n"
|
8 |
+
"Language-Team: Ben Andersen <wp@bentrix.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
msgid "Hide From Upcoming Events List"
|
17 |
msgstr "Dölj från kommande evenemangslista"
|
18 |
|
19 |
+
#: ../admin-views/events-audit-trail.php:41
|
20 |
+
msgid "Auditing Information"
|
21 |
+
msgstr "Granskar information"
|
22 |
+
|
23 |
+
#: ../admin-views/events-audit-trail.php:44
|
24 |
+
msgid "Created by:"
|
25 |
+
msgstr "Skapad av:"
|
26 |
+
|
27 |
+
#: ../admin-views/events-audit-trail.php:48
|
28 |
+
msgid "Audit Trail:"
|
29 |
+
msgstr "Granskningsspår:"
|
30 |
+
|
31 |
#: ../admin-views/events-meta-box.php:25
|
32 |
msgid "Event Time & Date"
|
33 |
msgstr "Evenemang tid & datum"
|
86 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
87 |
msgstr "Lämna blankt för att dölja fältet. Skriv 0 för evenemang som är gratis."
|
88 |
|
89 |
+
#: ../admin-views/organizer-meta-box.php:11
|
90 |
+
msgid "Organizer Name:"
|
91 |
+
msgstr "Arrangörens namn:"
|
92 |
+
|
93 |
+
#: ../admin-views/organizer-meta-box.php:17
|
94 |
+
#: ../admin-views/venue-meta-box.php:80
|
95 |
+
msgid "Phone:"
|
96 |
+
msgstr "Telefon:"
|
97 |
|
98 |
+
#: ../admin-views/organizer-meta-box.php:21
|
99 |
+
msgid "Website:"
|
100 |
+
msgstr "Webbplats:"
|
101 |
|
102 |
+
#: ../admin-views/organizer-meta-box.php:25
|
103 |
+
msgid "Email:"
|
104 |
+
msgstr "E-post:"
|
105 |
+
|
106 |
+
#: ../admin-views/recurrence-dialog.php:11
|
107 |
+
msgid "Which events do you wish to update?"
|
108 |
+
msgstr "Vilka evenemang vill du uppdatera?"
|
109 |
+
|
110 |
+
#: ../admin-views/recurrence-dialog.php:14
|
111 |
+
msgid "Select your desired action"
|
112 |
+
msgstr "Välj din önskade åtgärd"
|
113 |
|
114 |
+
#: ../admin-views/tribe-options-general.php:11
|
115 |
+
msgid "Add functionality to The Events Calendar"
|
116 |
+
msgstr "Lägg till funktioner i The Events Calendar"
|
117 |
|
118 |
+
#: ../admin-views/tribe-options-general.php:16
|
119 |
+
#: ../lib/the-events-calendar.class.php:2500
|
120 |
+
msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
|
121 |
+
msgstr "Söker du ytterligare funktionalitet som repeterande evenemang, anpassad meta, community evenemang, biljettförsäljning med mera?"
|
122 |
|
123 |
+
#: ../admin-views/tribe-options-general.php:16
|
124 |
+
msgid "Check out the available Add-Ons"
|
125 |
+
msgstr "Kolla in de tillgängliga tilläggen"
|
|
|
126 |
|
127 |
+
#: ../admin-views/tribe-options-general.php:21
|
128 |
+
msgid "We hope our plugin is helping you out."
|
129 |
+
msgstr "Vi hoppas vårt tillägg är dig till hjälp."
|
130 |
|
131 |
+
#: ../admin-views/tribe-options-general.php:25
|
132 |
+
#: ../admin-views/tribe-options-general.php:30
|
133 |
+
msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
|
134 |
+
msgstr "Tänker du \"Wow, det här tillägget är fantastiskt, jag borde säga tack till Modern Tribe för allt deras hårda arbete.\" Det största tacket vi kan begära är ett erkännande. Lägga till en liten textlänk under kalendern som pekar på The Events Calendar projektet."
|
135 |
|
136 |
+
#: ../admin-views/tribe-options-general.php:25
|
137 |
+
#: ../admin-views/tribe-options-general.php:30
|
138 |
+
msgid "See an example of the link"
|
139 |
+
msgstr "Se ett exempel på länken"
|
140 |
+
|
141 |
+
#: ../admin-views/tribe-options-general.php:35
|
142 |
+
msgid "Show Events Calendar Link"
|
143 |
+
msgstr "visa länk till evenemangskalender"
|
144 |
+
|
145 |
+
#: ../admin-views/tribe-options-general.php:45
|
146 |
+
msgid "Default view for the Events"
|
147 |
+
msgstr "Standardvy för evenemang"
|
148 |
+
|
149 |
+
#: ../admin-views/tribe-options-general.php:46
|
150 |
+
msgid "Determines whether the default events view is a calendar or a list."
|
151 |
+
msgstr "Avgör om den förvalda evenemangsvyn är en kalender eller en lista."
|
152 |
+
|
153 |
+
#: ../admin-views/tribe-options-general.php:53
|
154 |
+
msgid "Events URL slug"
|
155 |
+
msgstr "Evenemangs URL slug"
|
156 |
+
|
157 |
+
#: ../admin-views/tribe-options-general.php:70
|
158 |
+
msgid "Single Event URL slug"
|
159 |
+
msgstr "Enstaka evenemangs URL slug"
|
160 |
+
|
161 |
+
#: ../admin-views/tribe-options-general.php:82
|
162 |
+
msgid "Number of events to show per page in the loop"
|
163 |
+
msgstr "Antal evenemang att visa per sida i loopen"
|
164 |
+
|
165 |
+
#: ../admin-views/tribe-options-general.php:83
|
166 |
+
msgid "This is the number of events displayed per page when returning a list of events."
|
167 |
+
msgstr "Detta är det antal evenemang som visas per sida."
|
168 |
+
|
169 |
+
#: ../admin-views/tribe-options-general.php:90
|
170 |
msgid "Show Comments"
|
171 |
msgstr "Visa kommentarer"
|
172 |
|
173 |
+
#: ../admin-views/tribe-options-general.php:91
|
174 |
+
msgid "Enables commenting on your single event view."
|
175 |
+
msgstr "Aktiverar kommentarer i vyn för enskilda evenemang."
|
176 |
+
|
177 |
+
#: ../admin-views/tribe-options-general.php:97
|
178 |
msgid "Multiday Event Cutoff"
|
179 |
msgstr "Flerdagsevenemag avklippt"
|
180 |
|
181 |
+
#: ../admin-views/tribe-options-general.php:98
|
182 |
msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
|
183 |
msgstr "För flerdagsevenemang, dölj den sista dagen från rutnätsvyn om det slutar vid eller före denna tid."
|
184 |
|
185 |
+
#: ../admin-views/tribe-options-general.php:106
|
|
|
186 |
msgid "Enable Google Maps"
|
187 |
msgstr "Aktivera Google Maps"
|
188 |
|
189 |
+
#: ../admin-views/tribe-options-general.php:107
|
190 |
+
msgid "If you don't have this turned on, your event listings won't have the backend map preview or frontend embedded map."
|
191 |
+
msgstr "Om du inte har detta aktiverat, kommer ditt evenemangs listningar inte ha backend kartförhandsgranskning eller frontend inbäddad karta."
|
192 |
|
193 |
+
#: ../admin-views/tribe-options-general.php:114
|
194 |
+
msgid "Google Maps Embed Height"
|
195 |
+
msgstr "Google maps inbäddningshöjd"
|
196 |
|
197 |
+
#: ../admin-views/tribe-options-general.php:117
|
198 |
+
msgid "Enter a number."
|
199 |
+
msgstr "Ange ett tal."
|
200 |
|
201 |
+
#: ../admin-views/tribe-options-general.php:123
|
202 |
+
msgid "Google Maps Embed Width"
|
203 |
+
msgstr "Google maps inbäddningsbredd"
|
204 |
|
205 |
+
#: ../admin-views/tribe-options-general.php:125
|
206 |
+
msgid "Enter a number or %."
|
207 |
+
msgstr "Ange ett tal eller %."
|
|
|
208 |
|
209 |
+
#: ../admin-views/tribe-options-general.php:132
|
210 |
+
msgid "Google Maps Default Zoom Level"
|
211 |
+
msgstr "Google maps förvald zoomnivå"
|
212 |
|
213 |
+
#: ../admin-views/tribe-options-general.php:133
|
214 |
+
msgid "0 = zoomed-out; 21 = zoomed-in."
|
215 |
+
msgstr "0 = utzoomad; 21 = inzoomad."
|
216 |
+
|
217 |
+
#: ../admin-views/tribe-options-general.php:141
|
218 |
+
msgid "Debug Mode"
|
219 |
+
msgstr "Debug-läge"
|
220 |
+
|
221 |
+
#: ../admin-views/tribe-options-general.php:142
|
222 |
#, php-format
|
223 |
+
msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
|
224 |
+
msgstr "Aktivera detta alternativ för att logga debuginformation. Som standard kommer detta att logga till din servers PHP-fellogg. Om du vill se loggen i din webbläsare, rekommenderar vi att du installerar %s och titta under \"Tribe\" fliken i debug utmatningen."
|
225 |
|
226 |
+
#: ../admin-views/tribe-options-general.php:142
|
227 |
+
msgid "Debug Bar Plugin"
|
228 |
+
msgstr "Debugbar tillägg"
|
229 |
+
|
230 |
+
#: ../admin-views/tribe-options-help.php:15
|
231 |
+
msgid "You need to upgrade!"
|
232 |
+
msgstr "Du behöver uppdatera!"
|
233 |
+
|
234 |
+
#: ../admin-views/tribe-options-help.php:15
|
235 |
+
msgid "You are up to date!"
|
236 |
+
msgstr "Du är uppdaterad!"
|
237 |
+
|
238 |
+
#: ../admin-views/tribe-options-help.php:41
|
239 |
+
msgid "Advanced Post Manager"
|
240 |
+
msgstr "Avancerad Inläggshanterare"
|
241 |
+
|
242 |
+
#: ../admin-views/tribe-options-help.php:45
|
243 |
+
msgid "Event Importer"
|
244 |
+
msgstr "Evenemang-importörer"
|
245 |
+
|
246 |
+
#: ../admin-views/tribe-options-help.php:49
|
247 |
+
msgid "Facebook Sync Events"
|
248 |
+
msgstr "Facebook Sync evenemang"
|
249 |
+
|
250 |
+
#: ../admin-views/tribe-options-help.php:56
|
251 |
+
msgid "The Events Calendar Pro"
|
252 |
+
msgstr "The Events Calendar Pro"
|
253 |
+
|
254 |
+
#: ../admin-views/tribe-options-help.php:60
|
255 |
+
msgid "Eventbrite Tickets"
|
256 |
+
msgstr "Eventbrite biljetter"
|
257 |
+
|
258 |
+
#: ../admin-views/tribe-options-help.php:65
|
259 |
+
msgid "Community Events"
|
260 |
+
msgstr "Community-evenemang"
|
261 |
|
262 |
+
#: ../admin-views/tribe-options-help.php:70
|
263 |
+
msgid "WooTickets"
|
264 |
+
msgstr "WooTickets"
|
265 |
|
266 |
+
#: ../admin-views/tribe-options-help.php:72
|
267 |
+
#: ../admin-views/tribe-options-help.php:77
|
268 |
+
msgid "(coming later in 2012)"
|
269 |
+
msgstr "(kommer senare under 2012)"
|
270 |
+
|
271 |
+
#: ../admin-views/tribe-options-help.php:75
|
272 |
+
msgid "Conference Manager"
|
273 |
+
msgstr "Konferensledare"
|
274 |
+
|
275 |
+
#: ../admin-views/tribe-options-help.php:84
|
276 |
+
msgid "Documentation"
|
277 |
+
msgstr "Dokumentation"
|
278 |
+
|
279 |
+
#: ../admin-views/tribe-options-help.php:88
|
280 |
+
msgid "FAQ"
|
281 |
+
msgstr "Frågor och svar"
|
282 |
+
|
283 |
+
#: ../admin-views/tribe-options-help.php:92
|
284 |
+
#: ../lib/the-events-calendar.class.php:416
|
285 |
+
msgid "Help"
|
286 |
+
msgstr "Hjälp"
|
287 |
+
|
288 |
+
#: ../admin-views/tribe-options-help.php:96
|
289 |
+
msgid "Tutorials"
|
290 |
+
msgstr "Handledningar"
|
291 |
+
|
292 |
+
#: ../admin-views/tribe-options-help.php:100
|
293 |
+
msgid "Release Notes"
|
294 |
+
msgstr "Release anteckningar"
|
295 |
+
|
296 |
+
#: ../admin-views/tribe-options-help.php:106
|
297 |
+
#, php-format
|
298 |
+
msgid "If this is your first time using The Events Calendar, you're in for a treat. The more adventurous users can jump right into it by finding the \"Events\" section in the admin menu to the left of this message and getting down to it. For those who like to dip their toes before diving in full-on, we've got you covered too. First things first: visit our %s, designed with folks exactly like yourself in mind and meant to familiarize you with the plugin's basics. From there, the Resources listed below (meant to help you kick ass, of course) should keep up the momentum."
|
299 |
+
msgstr "Om detta är första gången du använder The Events Calendar kommer du bli positivt överraskad. De mer äventyrliga användarna kan hoppa rakt in i det genom att gå till \"Evenemang\" i admin menyn till vänster om detta meddelande och sätta igång. Vi har också förberett för de som gillar att doppa tårna innan de dyker i. Först och främst: besök vår %s, designad med människor som dig i åtanke för att göra dig mer bekant med tilläggets grunder. Därefter kan du kika på resurserna som anges nedan för att hålla farten uppe."
|
300 |
+
|
301 |
+
#: ../admin-views/tribe-options-help.php:106
|
302 |
+
msgid "new user primer"
|
303 |
+
msgstr "första stegen för nya användare"
|
304 |
+
|
305 |
+
#: ../admin-views/tribe-options-help.php:109
|
306 |
#, php-format
|
307 |
+
msgid "We love all our users and want to help free & PRO customers alike. If you're running the latest version of The Events Calendar and are having problems, post a thread the %s at WordPress.org. We hit the forum a few times a week and do what we can to assist users."
|
308 |
+
msgstr "Vi älskar alla våra användare och vill hjälpa både gratis & PRO-kunder. Om du kör den senaste versionen av The Events Calendar och har problem, skapa ett inlägg på %s på WordPress.org. Vi svarar på frågor i forumet några gånger i veckan och göra vad vi kan för att hjälpa till."
|
309 |
|
310 |
+
#: ../admin-views/tribe-options-help.php:109
|
311 |
+
msgid "forum for The Events Calendar"
|
312 |
+
msgstr "forum för The Events Calendar"
|
313 |
+
|
314 |
+
#: ../admin-views/tribe-options-help.php:112
|
315 |
+
#, php-format
|
316 |
+
msgid "%sA few things to keep in mind before posting:%s"
|
317 |
+
msgstr "%sNågra saker att tänka på innan du postar:%s"
|
318 |
|
319 |
+
#: ../admin-views/tribe-options-help.php:113
|
320 |
+
#, php-format
|
321 |
+
msgid "%sLook through the recent active threads before posting a new one and check that there isn't already a discussion going on your issue.%s"
|
322 |
+
msgstr "%sTitta igenom de senaste aktiva inläggen innan du postar ett nytt och kontrollera att det inte redan finns en pågående diskussion i din fråga.%s"
|
323 |
|
324 |
+
#: ../admin-views/tribe-options-help.php:114
|
325 |
#, php-format
|
326 |
+
msgid "%sA good way to help us out before posting is to check whether the issue is a conflict with another plugin or your theme. This can be tested relatively easily on a staging site by deactivating other plugins one-by-one, and reverting to the default 2011 theme as needed, to see if conflicts can be easily identified. If so, please note that when posting your thread.%s"
|
327 |
+
msgstr "%sEtt bra sätt att hjälpa oss innan du postar är att kontrollera om problemet är en konflikt med ett annan tillägg eller ditt tema. Detta kan testas relativt enkelt på en testwebbplats genom att avaktivera andra tillägg, ett i taget, och återgå till standard 2011 temat om det behövs för att se om konflikter lätt kan identifieras. Om så är fallet, ange det när du postar din meddelandetråd.%s"
|
328 |
|
329 |
+
#: ../admin-views/tribe-options-help.php:115
|
330 |
+
#, php-format
|
331 |
+
msgid "%sSometimes, just resaving your permalinks (under Settings -> Permalinks) can resolve events-related problems on your site. It is worth a shot before creating a new thread.%s"
|
332 |
+
msgstr "%sIbland hjälper det att bara spara om dina permalänkar (under Inställningar->Permalänkar) för att lösa evenemangrelaterade problem på din webbplats. Det är värt ett försökt innan du skapar en ny meddelandetråd.%s"
|
333 |
|
334 |
+
#: ../admin-views/tribe-options-help.php:116
|
335 |
+
#, php-format
|
336 |
+
msgid "%sMake sure you're running The Events Calendar, rather than Events Calendar. They're two separate plugins :)%s"
|
337 |
+
msgstr "%sSe till att du kör i The Events Calendar och inte Events Calendar. De är två olika tillägg :)%s"
|
338 |
+
|
339 |
+
#: ../admin-views/tribe-options-help.php:117
|
340 |
+
#, php-format
|
341 |
+
msgid "%sWhile our team is happy to help with bugs and provide light integration tips for users of The Events Calendar, we're not able to provide customization tips or assist in integrating with 3rd party plugins on the WordPress.org forums.%s"
|
342 |
+
msgstr "%sVårt team hjälper gärna till med buggar och ger integrationstips för användare av The Events Calendar men vi har inte möjlighet att erbjuda anpassningstips eller hjälpa till med integration av 3:e parts tillägg på WordPress.org forumen.%s"
|
343 |
+
|
344 |
+
#: ../admin-views/tribe-options-help.php:119
|
345 |
+
#, php-format
|
346 |
+
msgid "%sShoot us an email to %s or tweet to %s and tell us why. We'll do what we can to make it right.%s"
|
347 |
+
msgstr "%sSkjut över ett mail till %s eller tweeta till %s och berätta varför. Vi gör vad vi kan för att ställa det till rätta.%s"
|
348 |
+
|
349 |
+
#: ../admin-views/tribe-options-help.php:119
|
350 |
+
msgid "pro@tri.be"
|
351 |
+
msgstr "pro@tri.be"
|
352 |
+
|
353 |
+
#: ../admin-views/tribe-options-help.php:119
|
354 |
+
msgid "@moderntribeinc"
|
355 |
+
msgstr "@moderntribeinc"
|
356 |
+
|
357 |
+
#: ../admin-views/tribe-options-help.php:120
|
358 |
+
msgid "More..."
|
359 |
+
msgstr "Mer..."
|
360 |
+
|
361 |
+
#: ../admin-views/tribe-options-help.php:127
|
362 |
+
msgid "Hi! Thank you so much for using the labor of our love. We are Modern Tribe and we are here to help you kick ass."
|
363 |
+
msgstr "Hej! Tack så mycket för att använder vårt kärleksfulla arbete. Vi är Modern Tribe och vi är här för att hjälpa dig lyckas."
|
364 |
+
|
365 |
+
#: ../admin-views/tribe-options-help.php:129
|
366 |
+
msgid "Getting Started"
|
367 |
+
msgstr "Komma igång"
|
368 |
+
|
369 |
+
#: ../admin-views/tribe-options-help.php:134
|
370 |
+
msgid "Resources to Help You Kick Ass"
|
371 |
+
msgstr "Resurser som rockar"
|
372 |
+
|
373 |
+
#: ../admin-views/tribe-options-help.php:146
|
374 |
+
msgid "Everyone Needs a Buddy"
|
375 |
+
msgstr "Alla behöver en kompis"
|
376 |
+
|
377 |
+
#: ../admin-views/tribe-options-help.php:149
|
378 |
+
msgid "Still Not Satisfied?"
|
379 |
+
msgstr "Fortfande inte nöjd?"
|
380 |
+
|
381 |
+
#: ../admin-views/tribe-options-help.php:156
|
382 |
+
#: ../lib/the-events-calendar.class.php:275
|
383 |
+
msgid "The Events Calendar"
|
384 |
+
msgstr "The Events Calendar"
|
385 |
+
|
386 |
+
#: ../admin-views/tribe-options-help.php:160
|
387 |
+
msgid "Latest Version:"
|
388 |
+
msgstr "Senaste versionen:"
|
389 |
|
390 |
+
#: ../admin-views/tribe-options-help.php:161
|
391 |
+
msgid "Author:"
|
392 |
+
msgstr "Författare:"
|
393 |
+
|
394 |
+
#: ../admin-views/tribe-options-help.php:161
|
395 |
+
msgid "Modern Tribe Inc"
|
396 |
+
msgstr "Modern Tribe Inc"
|
397 |
+
|
398 |
+
#: ../admin-views/tribe-options-help.php:162
|
399 |
+
msgid "Requires:"
|
400 |
+
msgstr "Kräver:"
|
401 |
+
|
402 |
+
#: ../admin-views/tribe-options-help.php:162
|
403 |
+
msgid "WordPress "
|
404 |
+
msgstr "Wordpress"
|
405 |
+
|
406 |
+
#: ../admin-views/tribe-options-help.php:163
|
407 |
+
msgid "Wordpress.org Plugin Page"
|
408 |
+
msgstr "Wordpress.org tilläggssida"
|
409 |
+
|
410 |
+
#: ../admin-views/tribe-options-help.php:166
|
411 |
+
msgid "Average Rating"
|
412 |
+
msgstr "Genomsnittligt betyg"
|
413 |
+
|
414 |
+
#: ../admin-views/tribe-options-help.php:178
|
415 |
+
msgid "Rating currently unavailable :("
|
416 |
+
msgstr "Betyg är för närvarande inte tillgängliga :("
|
417 |
+
|
418 |
+
#: ../admin-views/tribe-options-help.php:184
|
419 |
+
msgid "Give us 5 stars!"
|
420 |
+
msgstr "Ge oss 5 stjärnor!"
|
421 |
+
|
422 |
+
#: ../admin-views/tribe-options-help.php:186
|
423 |
+
msgid "Free Add-Ons"
|
424 |
+
msgstr "Gratis tillägg"
|
425 |
+
|
426 |
+
#: ../admin-views/tribe-options-help.php:192
|
427 |
+
#: ../admin-views/tribe-options-help.php:205
|
428 |
+
msgid "(Coming Soon!)"
|
429 |
+
msgstr "(Kommer snart!)"
|
430 |
+
|
431 |
+
#: ../admin-views/tribe-options-help.php:199
|
432 |
+
msgid "Premium Add-Ons"
|
433 |
+
msgstr "Premium tillägg"
|
434 |
+
|
435 |
+
#: ../admin-views/tribe-options-help.php:212
|
436 |
+
msgid "News and Tutorials"
|
437 |
+
msgstr "Nyheter och handledningar"
|
438 |
+
|
439 |
+
#: ../admin-views/tribe-options-templates.php:4
|
440 |
msgid "Default Events Template"
|
441 |
msgstr "Standard evenemangsmall"
|
442 |
|
443 |
+
#: ../admin-views/tribe-options-templates.php:5
|
444 |
msgid "Default Page Template"
|
445 |
msgstr "Standard sidmall"
|
446 |
|
447 |
+
#: ../admin-views/tribe-options-templates.php:18
|
448 |
+
msgid "Template Settings"
|
449 |
+
msgstr "Mallinställningar"
|
450 |
+
|
451 |
+
#: ../admin-views/tribe-options-templates.php:22
|
452 |
+
msgid "Events Template"
|
453 |
+
msgstr "Evenemangsmall"
|
454 |
+
|
455 |
+
#: ../admin-views/tribe-options-templates.php:23
|
456 |
msgid "Choose a page template to control the look and feel of your calendar."
|
457 |
msgstr "Välj en sidmall för att kontrollera utseendet och känslan av din kalender."
|
458 |
|
459 |
+
#: ../admin-views/tribe-options-templates.php:31
|
|
|
|
|
460 |
msgid "Add HTML before calendar"
|
461 |
msgstr "Lägg till HTML före kalender"
|
462 |
|
463 |
+
#: ../admin-views/tribe-options-templates.php:32
|
464 |
+
msgid "Some themes may require that you add extra divs before the calendar list to help with styling.<br>This is displayed directly after the header."
|
465 |
+
msgstr "Vissa teman kan kräva att du lägger till extra div:ar innan kalenderlistan för att hjälpa till med styling.<br>Detta visas direkt efter sidhuvudet."
|
466 |
|
467 |
+
#: ../admin-views/tribe-options-templates.php:32
|
468 |
+
#: ../admin-views/tribe-options-templates.php:39
|
|
|
|
|
|
|
|
|
469 |
msgid "You may use (x)HTML."
|
470 |
msgstr "Du kan använda (x)HTML."
|
471 |
|
472 |
+
#: ../admin-views/tribe-options-templates.php:38
|
473 |
msgid "Add HTML after calendar"
|
474 |
msgstr "Lägg till HTML efter kalender"
|
475 |
|
476 |
+
#: ../admin-views/tribe-options-templates.php:39
|
477 |
+
msgid "Some themes may require that you add extra divs after the calendar list to help with styling.<br>This is displayed directly above the footer."
|
478 |
+
msgstr "Vissa teman kan kräva att du lägger extra div:ar efter kalenderlistan för att hjälpa till med styling.<br>Detta visas direkt ovanför sidfoten."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
479 |
|
480 |
#: ../admin-views/venue-meta-box.php:12
|
481 |
msgid "Venue Name:"
|
501 |
msgid "Select a State:"
|
502 |
msgstr "Välj landskap:"
|
503 |
|
504 |
+
#: ../admin-views/venue-meta-box.php:76
|
505 |
msgid "Postal Code:"
|
506 |
msgstr "Postnummer:"
|
507 |
|
521 |
msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
|
522 |
msgstr "Om du vill anpassa widgetens visning själv, se filen views/events-list-load-widget-display.php i the Events Premium tillägget."
|
523 |
|
524 |
+
#: ../lib/the-events-calendar.class.php:278
|
|
|
|
|
|
|
|
|
525 |
msgid "category"
|
526 |
msgstr "kategori"
|
527 |
|
528 |
+
#: ../lib/the-events-calendar.class.php:279
|
529 |
+
msgid "tag"
|
530 |
+
msgstr "tagg"
|
531 |
+
|
532 |
+
#: ../lib/the-events-calendar.class.php:280
|
533 |
msgid "month"
|
534 |
msgstr "month"
|
535 |
|
536 |
+
#: ../lib/the-events-calendar.class.php:281
|
537 |
msgid "upcoming"
|
538 |
msgstr "upcoming"
|
539 |
|
540 |
+
#: ../lib/the-events-calendar.class.php:282
|
541 |
msgid "past"
|
542 |
msgstr "past"
|
543 |
|
544 |
+
#: ../lib/the-events-calendar.class.php:284
|
545 |
msgid "venue"
|
546 |
msgstr "plats"
|
547 |
|
548 |
+
#: ../lib/the-events-calendar.class.php:294
|
549 |
#, php-format
|
550 |
msgid "Initializing Tribe Events on %s"
|
551 |
msgstr "Initierar Tribe evenemang på %s"
|
552 |
|
553 |
+
#: ../lib/the-events-calendar.class.php:374
|
554 |
+
#, php-format
|
555 |
+
msgid "Your version of %s requires version %s or higher of The Events Calendar (you are currently running %s). Visit %shelp%s for more information."
|
556 |
+
msgstr "Din version av %s kräver version %s eller nyare av The Events Calendar (Du använder för närvarande %s). Besök %shelp%s för mer information."
|
557 |
+
|
558 |
+
#: ../lib/the-events-calendar.class.php:412
|
559 |
+
msgid "General"
|
560 |
+
msgstr "Generell"
|
561 |
+
|
562 |
+
#: ../lib/the-events-calendar.class.php:413
|
563 |
+
msgid "Template"
|
564 |
+
msgstr "Mall"
|
565 |
+
|
566 |
+
#: ../lib/the-events-calendar.class.php:414
|
567 |
+
msgid "Licenses"
|
568 |
+
msgstr "Licenser"
|
569 |
+
|
570 |
+
#: ../lib/the-events-calendar.class.php:450
|
571 |
#, php-format
|
572 |
msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
|
573 |
msgstr "Tyvärr, The Events Calendar kräver Wordpress %s eller högre. Uppdatera din Wordpress installation."
|
574 |
|
575 |
+
#: ../lib/the-events-calendar.class.php:453
|
576 |
#, php-format
|
577 |
msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
|
578 |
msgstr "Tyvärr, The Events Calendar kräver PHP %s eller högre. Kontakta ditt webbhotell om att flytta dig till en nyare version av PHP."
|
579 |
|
580 |
+
#: ../lib/the-events-calendar.class.php:574
|
581 |
msgid "Upcoming Events"
|
582 |
msgstr "Kommande evenemang"
|
583 |
|
584 |
+
#: ../lib/the-events-calendar.class.php:576
|
585 |
msgid "Past Events"
|
586 |
msgstr "Tidigare evenemang"
|
587 |
|
588 |
+
#: ../lib/the-events-calendar.class.php:580
|
589 |
+
#: ../lib/the-events-calendar.class.php:586
|
590 |
#, php-format
|
591 |
msgid "Events for %s"
|
592 |
msgstr "Evenemang för %s"
|
593 |
|
594 |
+
#: ../lib/the-events-calendar.class.php:582
|
595 |
msgid "Events this month"
|
596 |
msgstr "Evenemang denna månad"
|
597 |
|
598 |
+
#: ../lib/the-events-calendar.class.php:592
|
599 |
#, php-format
|
600 |
msgid "Events at %s"
|
601 |
msgstr "Evenemang för %s"
|
602 |
|
603 |
+
#: ../lib/the-events-calendar.class.php:605
|
604 |
msgid "No description has been entered for this event."
|
605 |
msgstr "Ingen beskrivning har angivits för detta evenemang."
|
606 |
|
607 |
+
#: ../lib/the-events-calendar.class.php:849
|
608 |
msgid "Events"
|
609 |
msgstr "Evenemang"
|
610 |
|
611 |
+
#: ../lib/the-events-calendar.class.php:850
|
612 |
msgid "Event"
|
613 |
msgstr "Evenemang"
|
614 |
|
615 |
+
#: ../lib/the-events-calendar.class.php:851
|
616 |
+
#: ../lib/the-events-calendar.class.php:864
|
617 |
+
#: ../lib/the-events-calendar.class.php:877
|
618 |
msgid "Add New"
|
619 |
msgstr "Lägg till ny"
|
620 |
|
621 |
+
#: ../lib/the-events-calendar.class.php:852
|
622 |
msgid "Add New Event"
|
623 |
msgstr "Lägg till nytt evenemang"
|
624 |
|
625 |
+
#: ../lib/the-events-calendar.class.php:853
|
626 |
msgid "Edit Event"
|
627 |
msgstr "Redigera evenemang"
|
628 |
|
629 |
+
#: ../lib/the-events-calendar.class.php:854
|
630 |
msgid "New Event"
|
631 |
msgstr "Nytt evenemang"
|
632 |
|
633 |
+
#: ../lib/the-events-calendar.class.php:855
|
634 |
msgid "View Event"
|
635 |
msgstr "Visa evenemang"
|
636 |
|
637 |
+
#: ../lib/the-events-calendar.class.php:856
|
638 |
msgid "Search Events"
|
639 |
msgstr "Sök evenemang"
|
640 |
|
641 |
+
#: ../lib/the-events-calendar.class.php:857
|
642 |
msgid "No events found"
|
643 |
msgstr "Inga evenemang hittade"
|
644 |
|
645 |
+
#: ../lib/the-events-calendar.class.php:858
|
646 |
msgid "No events found in Trash"
|
647 |
msgstr "Inga evenemang hittade i Papperskorgen"
|
648 |
|
649 |
+
#: ../lib/the-events-calendar.class.php:862
|
650 |
msgid "Venues"
|
651 |
msgstr "Platser"
|
652 |
|
653 |
+
#: ../lib/the-events-calendar.class.php:863
|
654 |
msgid "Venue"
|
655 |
msgstr "Plats"
|
656 |
|
657 |
+
#: ../lib/the-events-calendar.class.php:865
|
658 |
msgid "Add New Venue"
|
659 |
msgstr "Lägg till ny plats"
|
660 |
|
661 |
+
#: ../lib/the-events-calendar.class.php:866
|
662 |
msgid "Edit Venue"
|
663 |
msgstr "Redigera plats"
|
664 |
|
665 |
+
#: ../lib/the-events-calendar.class.php:867
|
666 |
msgid "New Venue"
|
667 |
msgstr "Ny plats"
|
668 |
|
669 |
+
#: ../lib/the-events-calendar.class.php:868
|
670 |
+
#: ../lib/the-events-calendar.class.php:881
|
671 |
msgid "View Venue"
|
672 |
msgstr "Visa plats"
|
673 |
|
674 |
+
#: ../lib/the-events-calendar.class.php:869
|
675 |
msgid "Search Venues"
|
676 |
msgstr "Sök platser"
|
677 |
|
678 |
+
#: ../lib/the-events-calendar.class.php:870
|
679 |
msgid "No venue found"
|
680 |
msgstr "Ingen plats hittad"
|
681 |
|
682 |
+
#: ../lib/the-events-calendar.class.php:871
|
683 |
msgid "No venues found in Trash"
|
684 |
msgstr "Inga platser hittade i Papperskorgen"
|
685 |
|
686 |
+
#: ../lib/the-events-calendar.class.php:875
|
687 |
msgid "Organizers"
|
688 |
msgstr "Arrangörer"
|
689 |
|
690 |
+
#: ../lib/the-events-calendar.class.php:876
|
691 |
msgid "Organizer"
|
692 |
msgstr "Arrangör"
|
693 |
|
694 |
+
#: ../lib/the-events-calendar.class.php:878
|
695 |
msgid "Add New Organizer"
|
696 |
msgstr "Lägg till ny arrangör"
|
697 |
|
698 |
+
#: ../lib/the-events-calendar.class.php:879
|
699 |
msgid "Edit Organizer"
|
700 |
msgstr "Redigera arrangör"
|
701 |
|
702 |
+
#: ../lib/the-events-calendar.class.php:880
|
703 |
msgid "New Organizer"
|
704 |
msgstr "Ny arrangör"
|
705 |
|
706 |
+
#: ../lib/the-events-calendar.class.php:882
|
707 |
msgid "Search Organizers"
|
708 |
msgstr "Sök arrangörer"
|
709 |
|
710 |
+
#: ../lib/the-events-calendar.class.php:883
|
711 |
msgid "No organizer found"
|
712 |
msgstr "Ingen arrangör hittad"
|
713 |
|
714 |
+
#: ../lib/the-events-calendar.class.php:884
|
715 |
msgid "No organizers found in Trash"
|
716 |
msgstr "Inga arrangörer hittade i Papperskorgen"
|
717 |
|
718 |
+
#: ../lib/the-events-calendar.class.php:888
|
|
|
719 |
msgid "Event Categories"
|
720 |
+
msgstr "Kategorier"
|
721 |
|
722 |
+
#: ../lib/the-events-calendar.class.php:889
|
723 |
msgid "Event Category"
|
724 |
msgstr "Evenemangskategori"
|
725 |
|
726 |
+
#: ../lib/the-events-calendar.class.php:890
|
727 |
msgid "Search Event Categories"
|
728 |
msgstr "Sök evenemangskategorier"
|
729 |
|
730 |
+
#: ../lib/the-events-calendar.class.php:891
|
731 |
msgid "All Event Categories"
|
732 |
msgstr "Alla evenemangskategorier"
|
733 |
|
734 |
+
#: ../lib/the-events-calendar.class.php:892
|
735 |
msgid "Parent Event Category"
|
736 |
msgstr "Förälder evenemangskategori"
|
737 |
|
738 |
+
#: ../lib/the-events-calendar.class.php:893
|
739 |
msgid "Parent Event Category:"
|
740 |
msgstr "Förälder evenemangskategori:"
|
741 |
|
742 |
+
#: ../lib/the-events-calendar.class.php:894
|
743 |
msgid "Edit Event Category"
|
744 |
msgstr "Redigera evenemangskategori"
|
745 |
|
746 |
+
#: ../lib/the-events-calendar.class.php:895
|
747 |
msgid "Update Event Category"
|
748 |
msgstr "Uppdatera evenemangskategori"
|
749 |
|
750 |
+
#: ../lib/the-events-calendar.class.php:896
|
751 |
msgid "Add New Event Category"
|
752 |
msgstr "Lägg till ny evenemangskategori"
|
753 |
|
754 |
+
#: ../lib/the-events-calendar.class.php:897
|
755 |
msgid "New Event Category Name"
|
756 |
msgstr "Nytt namn för evenemangskategori"
|
757 |
|
758 |
+
#: ../lib/the-events-calendar.class.php:907
|
759 |
#, php-format
|
760 |
msgid "Event updated. <a href=\"%s\">View event</a>"
|
761 |
msgstr "Evenemang uppdatrerat. <a href=\"%s\">Visa evenemang</a>"
|
762 |
|
763 |
+
#: ../lib/the-events-calendar.class.php:908
|
764 |
+
#: ../lib/the-events-calendar.class.php:925
|
765 |
+
#: ../lib/the-events-calendar.class.php:942
|
766 |
msgid "Custom field updated."
|
767 |
msgstr "Anpassat fält uppdaterat."
|
768 |
|
769 |
+
#: ../lib/the-events-calendar.class.php:909
|
770 |
+
#: ../lib/the-events-calendar.class.php:926
|
771 |
+
#: ../lib/the-events-calendar.class.php:943
|
772 |
msgid "Custom field deleted."
|
773 |
msgstr "Anpassat fält raderat."
|
774 |
|
775 |
+
#: ../lib/the-events-calendar.class.php:910
|
776 |
msgid "Event updated."
|
777 |
msgstr "Evenemang uppdaterat."
|
778 |
|
779 |
+
#: ../lib/the-events-calendar.class.php:912
|
780 |
#, php-format
|
781 |
msgid "Event restored to revision from %s"
|
782 |
msgstr "Evenemang återställd till revision från %s"
|
783 |
|
784 |
+
#: ../lib/the-events-calendar.class.php:913
|
785 |
#, php-format
|
786 |
msgid "Event published. <a href=\"%s\">View event</a>"
|
787 |
msgstr "Evenemang publicerat. <a href=\"%s\">Visa evenemang</a>"
|
788 |
|
789 |
+
#: ../lib/the-events-calendar.class.php:914
|
790 |
msgid "Event saved."
|
791 |
msgstr "Evenemang sparat."
|
792 |
|
793 |
+
#: ../lib/the-events-calendar.class.php:915
|
794 |
#, php-format
|
795 |
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
796 |
msgstr "Evenemang tillagt. <a target=\"_blank\" href=\"%s\">Förhandsgranska evenemang</a>"
|
797 |
|
798 |
+
#: ../lib/the-events-calendar.class.php:916
|
799 |
#, php-format
|
800 |
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
801 |
msgstr "Evenemang schemalagt för: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Förhandsgranska evenemang</a>"
|
802 |
|
803 |
+
#: ../lib/the-events-calendar.class.php:918
|
804 |
+
#: ../lib/the-events-calendar.class.php:935
|
805 |
+
#: ../lib/the-events-calendar.class.php:952
|
806 |
msgid "M j, Y @ G:i"
|
807 |
msgstr "Y-m-d @ G:i"
|
808 |
|
809 |
+
#: ../lib/the-events-calendar.class.php:919
|
810 |
#, php-format
|
811 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
812 |
msgstr "Evenemangsutkast uppdaterat. <a target=\"_blank\" href=\"%s\">Förhandsgranska evenemang</a>"
|
813 |
|
814 |
+
#: ../lib/the-events-calendar.class.php:924
|
815 |
#, php-format
|
816 |
msgid "Venue updated. <a href=\"%s\">View venue</a>"
|
817 |
msgstr "Plats uppdaterad. <a href=\"%s\">Visa plats</a>"
|
818 |
|
819 |
+
#: ../lib/the-events-calendar.class.php:927
|
820 |
msgid "Venue updated."
|
821 |
msgstr "Plats uppdaterad."
|
822 |
|
823 |
+
#: ../lib/the-events-calendar.class.php:929
|
824 |
#, php-format
|
825 |
msgid "Venue restored to revision from %s"
|
826 |
msgstr "Plats återställd till revision från %s"
|
827 |
|
828 |
+
#: ../lib/the-events-calendar.class.php:930
|
829 |
#, php-format
|
830 |
msgid "Venue published. <a href=\"%s\">View venue</a>"
|
831 |
msgstr "Plats publicerad. <a href=\"%s\">Visa plats</a>"
|
832 |
|
833 |
+
#: ../lib/the-events-calendar.class.php:931
|
834 |
msgid "Venue saved."
|
835 |
msgstr "Plats sparad."
|
836 |
|
837 |
+
#: ../lib/the-events-calendar.class.php:932
|
838 |
#, php-format
|
839 |
msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
840 |
msgstr "Plats tillagd. <a target=\"_blank\" href=\"%s\">Förhandsgranska plats</a>"
|
841 |
|
842 |
+
#: ../lib/the-events-calendar.class.php:933
|
843 |
#, php-format
|
844 |
msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
|
845 |
msgstr "Plats schemalagt för: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Förhandsgranska plats</a>"
|
846 |
|
847 |
+
#: ../lib/the-events-calendar.class.php:936
|
848 |
#, php-format
|
849 |
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
850 |
msgstr "Platsutkast uppdaterat. <a target=\"_blank\" href=\"%s\">Förhandsgranska plats</a>"
|
851 |
|
852 |
+
#: ../lib/the-events-calendar.class.php:941
|
853 |
#, php-format
|
854 |
msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
|
855 |
msgstr "Arrangör uppdaterad. <a href=\"%s\">visa arrangör</a>"
|
856 |
|
857 |
+
#: ../lib/the-events-calendar.class.php:944
|
858 |
msgid "Organizer updated."
|
859 |
msgstr "Arrangör uppdaterad."
|
860 |
|
861 |
+
#: ../lib/the-events-calendar.class.php:946
|
862 |
#, php-format
|
863 |
msgid "Organizer restored to revision from %s"
|
864 |
msgstr "Arrangör återställd till revision från %s"
|
865 |
|
866 |
+
#: ../lib/the-events-calendar.class.php:947
|
867 |
#, php-format
|
868 |
msgid "Organizer published. <a href=\"%s\">View organizer</a>"
|
869 |
msgstr "Arrangör publicerad. <a href=\"%s\">Visa arrangör</a>"
|
870 |
|
871 |
+
#: ../lib/the-events-calendar.class.php:948
|
872 |
msgid "Organizer saved."
|
873 |
msgstr "Arrangör sparad."
|
874 |
|
875 |
+
#: ../lib/the-events-calendar.class.php:949
|
876 |
#, php-format
|
877 |
msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
878 |
msgstr "Arrangör tillagd. <a target=\"_blank\" href=\"%s\">Förhandsgranska arrangör</a>"
|
879 |
|
880 |
+
#: ../lib/the-events-calendar.class.php:950
|
881 |
#, php-format
|
882 |
msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
|
883 |
msgstr "Arrangör schemalagd för: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Förhandsgranska arrangör</a>"
|
884 |
|
885 |
+
#: ../lib/the-events-calendar.class.php:953
|
886 |
#, php-format
|
887 |
msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
888 |
msgstr "Arrangörsutkast uppdaterat. <a target=\"_blank\" href=\"%s\">Förhandsgranska arrangör</a>"
|
889 |
|
890 |
+
#: ../lib/the-events-calendar.class.php:1049
|
891 |
msgid "Next"
|
892 |
msgstr "Nästa"
|
893 |
|
894 |
+
#: ../lib/the-events-calendar.class.php:1050
|
895 |
msgid "Prev"
|
896 |
msgstr "Föregående"
|
897 |
|
898 |
+
#: ../lib/the-events-calendar.class.php:1051
|
899 |
msgid "Today"
|
900 |
msgstr "Idag"
|
901 |
|
902 |
+
#: ../lib/the-events-calendar.class.php:1052
|
903 |
msgid "Done"
|
904 |
msgstr "Färdig"
|
905 |
|
906 |
+
#: ../lib/the-events-calendar.class.php:2324
|
907 |
msgid "Event Options"
|
908 |
msgstr "Evenemangsalternativ"
|
909 |
|
910 |
+
#: ../lib/the-events-calendar.class.php:2326
|
911 |
msgid "Venue Information"
|
912 |
msgstr "Platsinformation"
|
913 |
|
914 |
+
#: ../lib/the-events-calendar.class.php:2327
|
915 |
msgid "Organizer Information"
|
916 |
msgstr "Arrangörsinformation"
|
917 |
|
918 |
+
#: ../lib/the-events-calendar.class.php:2440
|
919 |
msgid "Support"
|
920 |
msgstr "Support"
|
921 |
|
922 |
+
#: ../lib/the-events-calendar.class.php:2443
|
923 |
msgid "View All Add-Ons"
|
924 |
msgstr "Visa alla tillägg"
|
925 |
|
926 |
+
#: ../lib/the-events-calendar.class.php:2450
|
927 |
msgid "News from Modern Tribe"
|
928 |
msgstr "Nyheter från Modern Tribe"
|
929 |
|
930 |
+
#: ../lib/the-events-calendar.class.php:2495
|
931 |
msgid "Additional Functionality"
|
932 |
msgstr "Ytterligare funktionalitet"
|
933 |
|
934 |
+
#: ../lib/the-events-calendar.class.php:2500
|
|
|
|
|
|
|
|
|
|
|
|
|
935 |
#, php-format
|
936 |
msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
|
937 |
msgstr "Kolla <a href=\"%s\">tillgängliga tillägg</a>."
|
953 |
msgid "End Date"
|
954 |
msgstr "Slutdatum"
|
955 |
|
956 |
+
#: ../lib/tribe-admin-events-list.class.php:180
|
957 |
msgid "Recurring?"
|
958 |
msgstr "Repeterande?"
|
959 |
|
960 |
+
#: ../lib/tribe-admin-events-list.class.php:224
|
961 |
msgid "Yes"
|
962 |
msgstr "Ja"
|
963 |
|
964 |
+
#: ../lib/tribe-admin-events-list.class.php:224
|
965 |
msgid "No"
|
966 |
msgstr "Nej"
|
967 |
|
968 |
+
#: ../lib/tribe-admin-events-list.class.php:278
|
969 |
#, php-format
|
970 |
msgid "All %s"
|
971 |
msgstr "Alla %s"
|
979 |
msgid "Error"
|
980 |
msgstr "Fel"
|
981 |
|
982 |
+
#: ../lib/tribe-field.class.php:161
|
983 |
+
msgid "Invalid field type specified"
|
984 |
+
msgstr "Ogiltig fälttyp angiven"
|
985 |
+
|
986 |
+
#: ../lib/tribe-field.class.php:387
|
987 |
+
msgid "No radio options specified"
|
988 |
+
msgstr "Inga radioknappsval specificerade"
|
989 |
+
|
990 |
+
#: ../lib/tribe-field.class.php:424
|
991 |
+
msgid "No checkbox options specified"
|
992 |
+
msgstr "Inga kryssruteval angivna"
|
993 |
+
|
994 |
+
#: ../lib/tribe-field.class.php:478
|
995 |
+
msgid "No select options specified"
|
996 |
+
msgstr "Inga val angivna"
|
997 |
+
|
998 |
+
#: ../lib/tribe-settings-tab.class.php:190
|
999 |
+
msgid "There are no fields setup for this tab yet."
|
1000 |
+
msgstr "Det finns för närvarande inga fält för denna flik."
|
1001 |
+
|
1002 |
+
#: ../lib/tribe-settings.class.php:207
|
1003 |
+
msgid "You've requested a non-existent tab."
|
1004 |
+
msgstr "Du har begärt en icke-existerande flik."
|
1005 |
+
|
1006 |
+
#: ../lib/tribe-settings.class.php:215
|
1007 |
+
msgid "Save Changes"
|
1008 |
+
msgstr "Spara ändringar"
|
1009 |
+
|
1010 |
+
#: ../lib/tribe-settings.class.php:264
|
1011 |
+
msgid "You don't have permission to do that."
|
1012 |
+
msgstr "Du har inte behörighet att göra det."
|
1013 |
+
|
1014 |
+
#: ../lib/tribe-settings.class.php:270
|
1015 |
+
msgid "The request was sent insecurely."
|
1016 |
+
msgstr "Begäran skickades osäkert."
|
1017 |
+
|
1018 |
+
#: ../lib/tribe-settings.class.php:276
|
1019 |
+
msgid "The request wasn't sent from this tab."
|
1020 |
+
msgstr "Begäran skickas inte från den här fliken."
|
1021 |
+
|
1022 |
+
#: ../lib/tribe-settings.class.php:430
|
1023 |
+
msgid "Your form had the following errors:"
|
1024 |
+
msgstr "Ditt formulär hade följande fel:"
|
1025 |
+
|
1026 |
+
#: ../lib/tribe-settings.class.php:439
|
1027 |
+
msgid "None of your settings were saved. Please try again."
|
1028 |
+
msgstr "Inga inställningar sparades. Försök igen."
|
1029 |
+
|
1030 |
+
#: ../lib/tribe-settings.class.php:465
|
1031 |
+
msgid "Settings saved."
|
1032 |
+
msgstr "Inställningar sparade."
|
1033 |
+
|
1034 |
#: ../lib/tribe-the-events-calendar-import.class.php:44
|
1035 |
+
msgid "Welcome to Events 2.0! This is a HUGE upgrade from 1.6.5. Please make sure you have backed up before proceeding any further. You can easily <a href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/\">revert to an old version</a> if you want to backup first. This upgrade includes two major steps, <a href=\"options-general.php?page=tribe-settings&tab=general\">migrating data</a> & updating your templates as necessary. There have been significant changes to the template tags and functions. Check out our <a href=\"http://tri.be/migrating-from-events-calendar-1-6-5-to-2-0\">walkthrough on the upgrade</a> before proceeding and check out the FAQ & Knowledge base from the <a href=\"http://tri.be/support/\">support page</a>. If you're new to The Events Calendar, you may want to review our <a href=\"http://tri.be/support/documentation/events-calendar-pro-new-user-primer/\">new user primer</a>.<br/><br/> You have events that need to be migrated. Please visit the bottom of the <a href=\"options-general.php?page=tribe-events-calendar\">settings page</a> to perform the migration."
|
1036 |
+
msgstr "Välkommen till Events 2.0! Detta är en STOR uppdatering från 1.6.5. Försäkra dig om att du har gjort en backup innan du går vidare. Du kan enkelt <a href=\" http://wordpress.org/extend/plugins/the-events-calendar/download/\">backa till en äldre version</a> om du har gjort en backup. Denna uppdatering består huvudsakligen av två steg, <a href=\"options-general.php?page=tribe-events-calendar\">migration av data</a> & uppdatering dina stilmallar efter behov. Det har skett betydelsefulla ändringar av stilmallarnas taggar och funktioner. Kolla vår <a href=\"http://tri.be/migrating-from-events-calendar-1-6-5-to-2-0\">genomgång för uppdateringen</a> innan du går vidare och kolla FAQ:n & Kunskapsdatabasen på <a href=\"http://tri.be/support/\">supportsidan</a>. Om du är ny användare av The Events Calendar kanske du vill läsa <a href=\"http://tri.be/support/documentation/events-calendar-pro-new-user-primer/\">grunderna för nya användare</a>.<br/><br/> Du har evenemang som behöver migreras. Gå till slutet av <a href=\"options-general.php?page=tribe-events-calendar\">sidan för inställningar</a> för att genomföra migrationen."
|
1037 |
|
1038 |
#: ../lib/tribe-the-events-calendar-import.class.php:54
|
1039 |
msgid "Upgrade from The Events Calendar"
|
1047 |
msgid "Migrate Data!"
|
1048 |
msgstr "Migrerar data!"
|
1049 |
|
1050 |
+
#: ../lib/tribe-the-events-calendar-import.class.php:132
|
1051 |
#, php-format
|
1052 |
msgid "You successfully migrated (%d) entries."
|
1053 |
msgstr "Du migrerade framgångsrikt (%d) poster."
|
1054 |
|
1055 |
+
#: ../lib/tribe-the-events-calendar-import.class.php:203
|
1056 |
msgid "Install has 1 or more legacy event!"
|
1057 |
msgstr "Installationen har 1 eller fler föråldrade evenemang!"
|
1058 |
|
1059 |
+
#: ../lib/tribe-validate.class.php:78
|
1060 |
+
#: ../lib/tribe-validate.class.php:121
|
1061 |
+
msgid "Invalid or incomplete field passed"
|
1062 |
+
msgstr "Ogiltig eller ofullständigt fält"
|
1063 |
+
|
1064 |
+
#: ../lib/tribe-validate.class.php:79
|
1065 |
+
#: ../lib/tribe-validate.class.php:115
|
1066 |
+
#: ../lib/tribe-validate.class.php:122
|
1067 |
+
msgid "Field ID:"
|
1068 |
+
msgstr "Fält-id:"
|
1069 |
+
|
1070 |
+
#: ../lib/tribe-validate.class.php:114
|
1071 |
+
msgid "Non-existant field validation function passed"
|
1072 |
+
msgstr "Icke-existerande fält validering passerad"
|
1073 |
+
|
1074 |
+
#: ../lib/tribe-validate.class.php:141
|
1075 |
+
#, php-format
|
1076 |
+
msgid "%s must be a positive number."
|
1077 |
+
msgstr "%s måste vara ett positivt tal."
|
1078 |
+
|
1079 |
+
#: ../lib/tribe-validate.class.php:158
|
1080 |
+
#, php-format
|
1081 |
+
msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
|
1082 |
+
msgstr "%s måste vara en giltig slugg (siffror, bokstäver, bindestreck och understreck)."
|
1083 |
+
|
1084 |
+
#: ../lib/tribe-validate.class.php:175
|
1085 |
+
#, php-format
|
1086 |
+
msgid "%s must be a valid absolute URL."
|
1087 |
+
msgstr "%s måste vara en giltig absolut URL."
|
1088 |
+
|
1089 |
+
#: ../lib/tribe-validate.class.php:193
|
1090 |
+
#: ../lib/tribe-validate.class.php:214
|
1091 |
+
#: ../lib/tribe-validate.class.php:236
|
1092 |
+
#, php-format
|
1093 |
+
msgid "%s must have a value that's part of its options."
|
1094 |
+
msgstr "%s måste ha ett giltigt värde."
|
1095 |
+
|
1096 |
+
#: ../lib/tribe-validate.class.php:252
|
1097 |
+
#, php-format
|
1098 |
+
msgid "Comparison validation failed because no comparison value was provided, for field %s"
|
1099 |
+
msgstr "Jämförelsekontrollen misslyckades eftersom inget jämförelsevärde angavs för fält %s"
|
1100 |
+
|
1101 |
+
#: ../lib/tribe-validate.class.php:259
|
1102 |
+
#, php-format
|
1103 |
+
msgid "%s cannot be the same as %s."
|
1104 |
+
msgstr "%s kan ej vara samma som %s."
|
1105 |
+
|
1106 |
+
#: ../lib/tribe-validate.class.php:261
|
1107 |
+
#, php-format
|
1108 |
+
msgid "%s cannot be a duplicate"
|
1109 |
+
msgstr "%s får ej vara en dublett"
|
1110 |
+
|
1111 |
+
#: ../lib/tribe-validate.class.php:279
|
1112 |
+
#, php-format
|
1113 |
+
msgid "%s must be a number or percentage."
|
1114 |
+
msgstr "%s måste vara ett tal eller en procentsats."
|
1115 |
+
|
1116 |
+
#: ../lib/tribe-validate.class.php:343
|
1117 |
+
#, php-format
|
1118 |
+
msgid "%s must be a number between 0 and 21."
|
1119 |
+
msgstr "%s måste vara ett tal mellan 0 och 21."
|
1120 |
+
|
1121 |
+
#: ../lib/tribe-validate.class.php:360
|
1122 |
+
#, php-format
|
1123 |
+
msgid "%s must consist of letters, numbers, dashes, and spaces only."
|
1124 |
+
msgstr "%s får endast bestå av bokstäver, siffror, streck och mellanslag."
|
1125 |
+
|
1126 |
+
#: ../lib/tribe-validate.class.php:377
|
1127 |
+
#, php-format
|
1128 |
+
msgid "%s must consist of letters, spaces, and dashes."
|
1129 |
+
msgstr "%s måste bestå av bokstäver, mellanslag och streck."
|
1130 |
+
|
1131 |
+
#: ../lib/tribe-validate.class.php:393
|
1132 |
+
#, php-format
|
1133 |
+
msgid "%s must consist of 5 numbers."
|
1134 |
+
msgstr "%s måste bestå av 5 tal."
|
1135 |
+
|
1136 |
+
#: ../lib/tribe-validate.class.php:409
|
1137 |
+
#, php-format
|
1138 |
+
msgid "%s must be a phone number."
|
1139 |
+
msgstr "%s måste vara ett telefonnummer."
|
1140 |
+
|
1141 |
+
#: ../lib/tribe-validate.class.php:427
|
1142 |
+
msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
|
1143 |
+
msgstr "Landslistan måste vara formatterad med ett land per rad på följande format: <br>SE, Sverige <br> US, United States <br> UK, United Kingdom."
|
1144 |
+
|
1145 |
#: ../lib/tribe-view-helpers.class.php:16
|
1146 |
+
#: ../lib/tribe-view-helpers.class.php:35
|
1147 |
msgid "Select a Country:"
|
1148 |
msgstr "Välj ett land:"
|
1149 |
|
1150 |
+
#: ../lib/tribe-view-helpers.class.php:36
|
1151 |
msgid "United States"
|
1152 |
msgstr "Förenta Staterna"
|
1153 |
|
1154 |
+
#: ../lib/tribe-view-helpers.class.php:37
|
1155 |
msgid "Afghanistan"
|
1156 |
msgstr "Afghanistan"
|
1157 |
|
1158 |
+
#: ../lib/tribe-view-helpers.class.php:38
|
1159 |
msgid "Albania"
|
1160 |
msgstr "Albanien"
|
1161 |
|
1162 |
+
#: ../lib/tribe-view-helpers.class.php:39
|
1163 |
msgid "Algeria"
|
1164 |
msgstr "Algeriet"
|
1165 |
|
1166 |
+
#: ../lib/tribe-view-helpers.class.php:40
|
1167 |
msgid "American Samoa"
|
1168 |
msgstr "Amerikanska Samoa"
|
1169 |
|
1170 |
+
#: ../lib/tribe-view-helpers.class.php:41
|
1171 |
msgid "Andorra"
|
1172 |
msgstr "Andorra"
|
1173 |
|
1174 |
+
#: ../lib/tribe-view-helpers.class.php:42
|
1175 |
msgid "Angola"
|
1176 |
msgstr "Angola"
|
1177 |
|
1178 |
+
#: ../lib/tribe-view-helpers.class.php:43
|
1179 |
msgid "Anguilla"
|
1180 |
msgstr "Anguilla"
|
1181 |
|
1182 |
+
#: ../lib/tribe-view-helpers.class.php:44
|
1183 |
msgid "Antarctica"
|
1184 |
msgstr "Antarktis"
|
1185 |
|
1186 |
+
#: ../lib/tribe-view-helpers.class.php:45
|
1187 |
msgid "Antigua And Barbuda"
|
1188 |
msgstr "Antigua och Barbuda"
|
1189 |
|
1190 |
+
#: ../lib/tribe-view-helpers.class.php:46
|
1191 |
msgid "Argentina"
|
1192 |
msgstr "Argentina"
|
1193 |
|
1194 |
+
#: ../lib/tribe-view-helpers.class.php:47
|
1195 |
msgid "Armenia"
|
1196 |
msgstr "Armenien"
|
1197 |
|
1198 |
+
#: ../lib/tribe-view-helpers.class.php:48
|
1199 |
msgid "Aruba"
|
1200 |
msgstr "Aruba"
|
1201 |
|
1202 |
+
#: ../lib/tribe-view-helpers.class.php:49
|
1203 |
msgid "Australia"
|
1204 |
msgstr "Australien"
|
1205 |
|
1206 |
+
#: ../lib/tribe-view-helpers.class.php:50
|
1207 |
msgid "Austria"
|
1208 |
msgstr "Österrike"
|
1209 |
|
1210 |
+
#: ../lib/tribe-view-helpers.class.php:51
|
1211 |
msgid "Azerbaijan"
|
1212 |
msgstr "Azerbajdzjan"
|
1213 |
|
1214 |
+
#: ../lib/tribe-view-helpers.class.php:52
|
1215 |
msgid "Bahamas"
|
1216 |
msgstr "Bahamas"
|
1217 |
|
1218 |
+
#: ../lib/tribe-view-helpers.class.php:53
|
1219 |
msgid "Bahrain"
|
1220 |
msgstr "Bahrain"
|
1221 |
|
1222 |
+
#: ../lib/tribe-view-helpers.class.php:54
|
1223 |
msgid "Bangladesh"
|
1224 |
msgstr "Bangladesh"
|
1225 |
|
1226 |
+
#: ../lib/tribe-view-helpers.class.php:55
|
1227 |
msgid "Barbados"
|
1228 |
msgstr "Barbados"
|
1229 |
|
1230 |
+
#: ../lib/tribe-view-helpers.class.php:56
|
1231 |
msgid "Belarus"
|
1232 |
msgstr "Vitryssland"
|
1233 |
|
1234 |
+
#: ../lib/tribe-view-helpers.class.php:57
|
1235 |
msgid "Belgium"
|
1236 |
msgstr "Belgien"
|
1237 |
|
1238 |
+
#: ../lib/tribe-view-helpers.class.php:58
|
1239 |
msgid "Belize"
|
1240 |
msgstr "Belize"
|
1241 |
|
1242 |
+
#: ../lib/tribe-view-helpers.class.php:59
|
1243 |
msgid "Benin"
|
1244 |
msgstr "Benin"
|
1245 |
|
1246 |
+
#: ../lib/tribe-view-helpers.class.php:60
|
1247 |
msgid "Bermuda"
|
1248 |
msgstr "Bermuda"
|
1249 |
|
1250 |
+
#: ../lib/tribe-view-helpers.class.php:61
|
1251 |
msgid "Bhutan"
|
1252 |
msgstr "Bhutan"
|
1253 |
|
1254 |
+
#: ../lib/tribe-view-helpers.class.php:62
|
1255 |
msgid "Bolivia"
|
1256 |
msgstr "Bolivia"
|
1257 |
|
1258 |
+
#: ../lib/tribe-view-helpers.class.php:63
|
1259 |
msgid "Bosnia And Herzegowina"
|
1260 |
msgstr "Bosnien och Hercegovina"
|
1261 |
|
1262 |
+
#: ../lib/tribe-view-helpers.class.php:64
|
1263 |
msgid "Botswana"
|
1264 |
msgstr "Botswana"
|
1265 |
|
1266 |
+
#: ../lib/tribe-view-helpers.class.php:65
|
1267 |
msgid "Bouvet Island"
|
1268 |
msgstr "Bouvet Island"
|
1269 |
|
1270 |
+
#: ../lib/tribe-view-helpers.class.php:66
|
1271 |
msgid "Brazil"
|
1272 |
msgstr "Brasilien"
|
1273 |
|
1274 |
+
#: ../lib/tribe-view-helpers.class.php:67
|
1275 |
msgid "British Indian Ocean Territory"
|
1276 |
msgstr "Brittiska territoriet i Indiska oceanen"
|
1277 |
|
1278 |
+
#: ../lib/tribe-view-helpers.class.php:68
|
1279 |
msgid "Brunei Darussalam"
|
1280 |
msgstr "Brunei Darussalam"
|
1281 |
|
1282 |
+
#: ../lib/tribe-view-helpers.class.php:69
|
1283 |
msgid "Bulgaria"
|
1284 |
msgstr "Bulgarien"
|
1285 |
|
1286 |
+
#: ../lib/tribe-view-helpers.class.php:70
|
1287 |
msgid "Burkina Faso"
|
1288 |
msgstr "Burkina Faso"
|
1289 |
|
1290 |
+
#: ../lib/tribe-view-helpers.class.php:71
|
1291 |
msgid "Burundi"
|
1292 |
msgstr "Burundi"
|
1293 |
|
1294 |
+
#: ../lib/tribe-view-helpers.class.php:72
|
1295 |
msgid "Cambodia"
|
1296 |
msgstr "Kambodja"
|
1297 |
|
1298 |
+
#: ../lib/tribe-view-helpers.class.php:73
|
1299 |
msgid "Cameroon"
|
1300 |
msgstr "Kamerun"
|
1301 |
|
1302 |
+
#: ../lib/tribe-view-helpers.class.php:74
|
1303 |
msgid "Canada"
|
1304 |
msgstr "Kanada"
|
1305 |
|
1306 |
+
#: ../lib/tribe-view-helpers.class.php:75
|
1307 |
msgid "Cape Verde"
|
1308 |
msgstr "Kap Verde"
|
1309 |
|
1310 |
+
#: ../lib/tribe-view-helpers.class.php:76
|
1311 |
msgid "Cayman Islands"
|
1312 |
msgstr "Caymanöarna"
|
1313 |
|
1314 |
+
#: ../lib/tribe-view-helpers.class.php:77
|
1315 |
msgid "Central African Republic"
|
1316 |
msgstr "Centralafrikanska republiken"
|
1317 |
|
1318 |
+
#: ../lib/tribe-view-helpers.class.php:78
|
1319 |
msgid "Chad"
|
1320 |
msgstr "Tchad"
|
1321 |
|
1322 |
+
#: ../lib/tribe-view-helpers.class.php:79
|
1323 |
msgid "Chile"
|
1324 |
msgstr "Chile"
|
1325 |
|
1326 |
+
#: ../lib/tribe-view-helpers.class.php:80
|
1327 |
msgid "China"
|
1328 |
msgstr "Kina"
|
1329 |
|
1330 |
+
#: ../lib/tribe-view-helpers.class.php:81
|
1331 |
msgid "Christmas Island"
|
1332 |
msgstr "Julön"
|
1333 |
|
1334 |
+
#: ../lib/tribe-view-helpers.class.php:82
|
1335 |
msgid "Cocos (Keeling) Islands"
|
1336 |
msgstr "Kokosöarna"
|
1337 |
|
1338 |
+
#: ../lib/tribe-view-helpers.class.php:83
|
1339 |
msgid "Colombia"
|
1340 |
msgstr "Colombia"
|
1341 |
|
1342 |
+
#: ../lib/tribe-view-helpers.class.php:84
|
1343 |
msgid "Comoros"
|
1344 |
msgstr "Komorerna"
|
1345 |
|
1346 |
+
#: ../lib/tribe-view-helpers.class.php:85
|
1347 |
msgid "Congo"
|
1348 |
msgstr "Kongo"
|
1349 |
|
1350 |
+
#: ../lib/tribe-view-helpers.class.php:86
|
1351 |
msgid "Congo, The Democratic Republic Of The"
|
1352 |
msgstr "Kongo-Kinshasa (Demokratiska republiken Kongo)"
|
1353 |
|
1354 |
+
#: ../lib/tribe-view-helpers.class.php:87
|
1355 |
msgid "Cook Islands"
|
1356 |
msgstr "Cooköarna"
|
1357 |
|
1358 |
+
#: ../lib/tribe-view-helpers.class.php:88
|
1359 |
msgid "Costa Rica"
|
1360 |
msgstr "Costa Rica"
|
1361 |
|
1362 |
+
#: ../lib/tribe-view-helpers.class.php:89
|
1363 |
msgid "Cote D'Ivoire"
|
1364 |
msgstr "Elfenbenskusten"
|
1365 |
|
1366 |
+
#: ../lib/tribe-view-helpers.class.php:90
|
1367 |
msgid "Croatia (Local Name: Hrvatska)"
|
1368 |
msgstr "Kroatien"
|
1369 |
|
1370 |
+
#: ../lib/tribe-view-helpers.class.php:91
|
1371 |
msgid "Cuba"
|
1372 |
msgstr "Kuba"
|
1373 |
|
1374 |
+
#: ../lib/tribe-view-helpers.class.php:92
|
1375 |
msgid "Cyprus"
|
1376 |
msgstr "Cypern"
|
1377 |
|
1378 |
+
#: ../lib/tribe-view-helpers.class.php:93
|
1379 |
msgid "Czech Republic"
|
1380 |
msgstr "Tjekien"
|
1381 |
|
1382 |
+
#: ../lib/tribe-view-helpers.class.php:94
|
1383 |
msgid "Denmark"
|
1384 |
msgstr "Danmark"
|
1385 |
|
1386 |
+
#: ../lib/tribe-view-helpers.class.php:95
|
1387 |
msgid "Djibouti"
|
1388 |
msgstr "Djibouti (Republiken Djibouti)"
|
1389 |
|
1390 |
+
#: ../lib/tribe-view-helpers.class.php:96
|
1391 |
msgid "Dominica"
|
1392 |
msgstr "Dominica (Samväldet Dominica)"
|
1393 |
|
1394 |
+
#: ../lib/tribe-view-helpers.class.php:97
|
1395 |
msgid "Dominican Republic"
|
1396 |
msgstr "Dominikanska republiken"
|
1397 |
|
1398 |
+
#: ../lib/tribe-view-helpers.class.php:98
|
1399 |
msgid "East Timor"
|
1400 |
msgstr "Östtimor"
|
1401 |
|
1402 |
+
#: ../lib/tribe-view-helpers.class.php:99
|
1403 |
msgid "Ecuador"
|
1404 |
msgstr "Ecuador"
|
1405 |
|
1406 |
+
#: ../lib/tribe-view-helpers.class.php:100
|
1407 |
msgid "Egypt"
|
1408 |
msgstr "Egypten"
|
1409 |
|
1410 |
+
#: ../lib/tribe-view-helpers.class.php:101
|
1411 |
msgid "El Salvador"
|
1412 |
msgstr "El Salvador"
|
1413 |
|
1414 |
+
#: ../lib/tribe-view-helpers.class.php:102
|
1415 |
msgid "Equatorial Guinea"
|
1416 |
msgstr "Ekvatorialguinea"
|
1417 |
|
1418 |
+
#: ../lib/tribe-view-helpers.class.php:103
|
1419 |
msgid "Eritrea"
|
1420 |
msgstr "Eritrea"
|
1421 |
|
1422 |
+
#: ../lib/tribe-view-helpers.class.php:104
|
1423 |
msgid "Estonia"
|
1424 |
msgstr "Estland"
|
1425 |
|
1426 |
+
#: ../lib/tribe-view-helpers.class.php:105
|
1427 |
msgid "Ethiopia"
|
1428 |
msgstr "Etiopien"
|
1429 |
|
1430 |
+
#: ../lib/tribe-view-helpers.class.php:106
|
1431 |
msgid "Falkland Islands (Malvinas)"
|
1432 |
msgstr "Falklandsöarna (Malvinerna)"
|
1433 |
|
1434 |
+
#: ../lib/tribe-view-helpers.class.php:107
|
1435 |
msgid "Faroe Islands"
|
1436 |
msgstr "Färöarna"
|
1437 |
|
1438 |
+
#: ../lib/tribe-view-helpers.class.php:108
|
1439 |
msgid "Fiji"
|
1440 |
msgstr "Fiji"
|
1441 |
|
1442 |
+
#: ../lib/tribe-view-helpers.class.php:109
|
1443 |
msgid "Finland"
|
1444 |
msgstr "Finland"
|
1445 |
|
1446 |
+
#: ../lib/tribe-view-helpers.class.php:110
|
1447 |
msgid "France"
|
1448 |
msgstr "Frankrike"
|
1449 |
|
1450 |
+
#: ../lib/tribe-view-helpers.class.php:111
|
1451 |
msgid "France, Metropolitan"
|
1452 |
msgstr "France métropolitaine"
|
1453 |
|
1454 |
+
#: ../lib/tribe-view-helpers.class.php:112
|
1455 |
msgid "French Guiana"
|
1456 |
msgstr "Franska Guyana"
|
1457 |
|
1458 |
+
#: ../lib/tribe-view-helpers.class.php:113
|
1459 |
msgid "French Polynesia"
|
1460 |
msgstr "Franska Polynesien"
|
1461 |
|
1462 |
+
#: ../lib/tribe-view-helpers.class.php:114
|
1463 |
msgid "French Southern Territories"
|
1464 |
msgstr "Franska sydterritorierna"
|
1465 |
|
1466 |
+
#: ../lib/tribe-view-helpers.class.php:115
|
1467 |
msgid "Gabon"
|
1468 |
msgstr "Gabon"
|
1469 |
|
1470 |
+
#: ../lib/tribe-view-helpers.class.php:116
|
1471 |
msgid "Gambia"
|
1472 |
msgstr "Gambia"
|
1473 |
|
1474 |
+
#: ../lib/tribe-view-helpers.class.php:117
|
1475 |
+
#: ../lib/tribe-view-helpers.class.php:305
|
1476 |
msgid "Georgia"
|
1477 |
msgstr "Georgia"
|
1478 |
|
1479 |
+
#: ../lib/tribe-view-helpers.class.php:118
|
1480 |
msgid "Germany"
|
1481 |
msgstr "Tyskland"
|
1482 |
|
1483 |
+
#: ../lib/tribe-view-helpers.class.php:119
|
1484 |
msgid "Ghana"
|
1485 |
msgstr "Ghana"
|
1486 |
|
1487 |
+
#: ../lib/tribe-view-helpers.class.php:120
|
1488 |
msgid "Gibraltar"
|
1489 |
msgstr "Gibraltar"
|
1490 |
|
1491 |
+
#: ../lib/tribe-view-helpers.class.php:121
|
1492 |
msgid "Greece"
|
1493 |
msgstr "Grekland"
|
1494 |
|
1495 |
+
#: ../lib/tribe-view-helpers.class.php:122
|
1496 |
msgid "Greenland"
|
1497 |
msgstr "Grönland"
|
1498 |
|
1499 |
+
#: ../lib/tribe-view-helpers.class.php:123
|
1500 |
msgid "Grenada"
|
1501 |
msgstr "Grenada"
|
1502 |
|
1503 |
+
#: ../lib/tribe-view-helpers.class.php:124
|
1504 |
msgid "Guadeloupe"
|
1505 |
msgstr "Guadeloupe"
|
1506 |
|
1507 |
+
#: ../lib/tribe-view-helpers.class.php:125
|
1508 |
msgid "Guam"
|
1509 |
msgstr "Guam"
|
1510 |
|
1511 |
+
#: ../lib/tribe-view-helpers.class.php:126
|
1512 |
msgid "Guatemala"
|
1513 |
msgstr "Guatemala"
|
1514 |
|
1515 |
+
#: ../lib/tribe-view-helpers.class.php:127
|
1516 |
msgid "Guinea"
|
1517 |
msgstr "Guinea"
|
1518 |
|
1519 |
+
#: ../lib/tribe-view-helpers.class.php:128
|
1520 |
msgid "Guinea-Bissau"
|
1521 |
msgstr "Guinea-Bissau"
|
1522 |
|
1523 |
+
#: ../lib/tribe-view-helpers.class.php:129
|
1524 |
msgid "Guyana"
|
1525 |
msgstr "Guyana"
|
1526 |
|
1527 |
+
#: ../lib/tribe-view-helpers.class.php:130
|
1528 |
msgid "Haiti"
|
1529 |
msgstr "Haiti"
|
1530 |
|
1531 |
+
#: ../lib/tribe-view-helpers.class.php:131
|
1532 |
msgid "Heard And Mc Donald Islands"
|
1533 |
msgstr "Heard And Mc Donald Islands"
|
1534 |
|
1535 |
+
#: ../lib/tribe-view-helpers.class.php:132
|
1536 |
msgid "Holy See (Vatican City State)"
|
1537 |
msgstr "Vatikanen"
|
1538 |
|
1539 |
+
#: ../lib/tribe-view-helpers.class.php:133
|
1540 |
msgid "Honduras"
|
1541 |
msgstr "Honduras"
|
1542 |
|
1543 |
+
#: ../lib/tribe-view-helpers.class.php:134
|
1544 |
msgid "Hong Kong"
|
1545 |
msgstr "Hong Kong"
|
1546 |
|
1547 |
+
#: ../lib/tribe-view-helpers.class.php:135
|
1548 |
msgid "Hungary"
|
1549 |
msgstr "Ungern"
|
1550 |
|
1551 |
+
#: ../lib/tribe-view-helpers.class.php:136
|
1552 |
msgid "Iceland"
|
1553 |
msgstr "Island"
|
1554 |
|
1555 |
+
#: ../lib/tribe-view-helpers.class.php:137
|
1556 |
msgid "India"
|
1557 |
msgstr "Indien"
|
1558 |
|
1559 |
+
#: ../lib/tribe-view-helpers.class.php:138
|
1560 |
msgid "Indonesia"
|
1561 |
msgstr "Indonesien"
|
1562 |
|
1563 |
+
#: ../lib/tribe-view-helpers.class.php:139
|
1564 |
msgid "Iran (Islamic Republic Of)"
|
1565 |
msgstr "Iran (Islamiska republiken Iran)"
|
1566 |
|
1567 |
+
#: ../lib/tribe-view-helpers.class.php:140
|
1568 |
msgid "Iraq"
|
1569 |
msgstr "Irak"
|
1570 |
|
1571 |
+
#: ../lib/tribe-view-helpers.class.php:141
|
1572 |
msgid "Ireland"
|
1573 |
msgstr "Irland"
|
1574 |
|
1575 |
+
#: ../lib/tribe-view-helpers.class.php:142
|
1576 |
msgid "Israel"
|
1577 |
msgstr "Israel"
|
1578 |
|
1579 |
+
#: ../lib/tribe-view-helpers.class.php:143
|
1580 |
msgid "Italy"
|
1581 |
msgstr "Italien"
|
1582 |
|
1583 |
+
#: ../lib/tribe-view-helpers.class.php:144
|
1584 |
msgid "Jamaica"
|
1585 |
msgstr "Jamaica"
|
1586 |
|
1587 |
+
#: ../lib/tribe-view-helpers.class.php:145
|
1588 |
msgid "Japan"
|
1589 |
msgstr "Japan"
|
1590 |
|
1591 |
+
#: ../lib/tribe-view-helpers.class.php:146
|
1592 |
msgid "Jordan"
|
1593 |
msgstr "Jordanien"
|
1594 |
|
1595 |
+
#: ../lib/tribe-view-helpers.class.php:147
|
1596 |
msgid "Kazakhstan"
|
1597 |
msgstr "Kazakstan"
|
1598 |
|
1599 |
+
#: ../lib/tribe-view-helpers.class.php:148
|
1600 |
msgid "Kenya"
|
1601 |
msgstr "Kenya"
|
1602 |
|
1603 |
+
#: ../lib/tribe-view-helpers.class.php:149
|
1604 |
msgid "Kiribati"
|
1605 |
msgstr "Kiribati"
|
1606 |
|
1607 |
+
#: ../lib/tribe-view-helpers.class.php:150
|
1608 |
msgid "Korea, Democratic People's Republic Of"
|
1609 |
msgstr "Nordkorea (Demokratiska folkrepubliken Korea)"
|
1610 |
|
1611 |
+
#: ../lib/tribe-view-helpers.class.php:151
|
1612 |
msgid "Korea, Republic Of"
|
1613 |
msgstr "Sydkorea (Republiken Korea)"
|
1614 |
|
1615 |
+
#: ../lib/tribe-view-helpers.class.php:152
|
1616 |
msgid "Kuwait"
|
1617 |
msgstr "Kuwait"
|
1618 |
|
1619 |
+
#: ../lib/tribe-view-helpers.class.php:153
|
1620 |
msgid "Kyrgyzstan"
|
1621 |
msgstr "Kirgizistan"
|
1622 |
|
1623 |
+
#: ../lib/tribe-view-helpers.class.php:154
|
1624 |
msgid "Lao People's Democratic Republic"
|
1625 |
msgstr "Laos (Demokratiska folkrepubliken Laos)"
|
1626 |
|
1627 |
+
#: ../lib/tribe-view-helpers.class.php:155
|
1628 |
msgid "Latvia"
|
1629 |
msgstr "Lettland"
|
1630 |
|
1631 |
+
#: ../lib/tribe-view-helpers.class.php:156
|
1632 |
msgid "Lebanon"
|
1633 |
msgstr "Libanon"
|
1634 |
|
1635 |
+
#: ../lib/tribe-view-helpers.class.php:157
|
1636 |
msgid "Lesotho"
|
1637 |
msgstr "Lesotho (Konungariket Lesotho)"
|
1638 |
|
1639 |
+
#: ../lib/tribe-view-helpers.class.php:158
|
1640 |
msgid "Liberia"
|
1641 |
msgstr "Liberia"
|
1642 |
|
1643 |
+
#: ../lib/tribe-view-helpers.class.php:159
|
1644 |
msgid "Libya"
|
1645 |
msgstr "Libyen"
|
1646 |
|
1647 |
+
#: ../lib/tribe-view-helpers.class.php:160
|
1648 |
msgid "Liechtenstein"
|
1649 |
msgstr "Liechtenstein"
|
1650 |
|
1651 |
+
#: ../lib/tribe-view-helpers.class.php:161
|
1652 |
msgid "Lithuania"
|
1653 |
msgstr "Litauen"
|
1654 |
|
1655 |
+
#: ../lib/tribe-view-helpers.class.php:162
|
1656 |
msgid "Luxembourg"
|
1657 |
msgstr "Luxemburg"
|
1658 |
|
1659 |
+
#: ../lib/tribe-view-helpers.class.php:163
|
1660 |
msgid "Macau"
|
1661 |
msgstr "Macao"
|
1662 |
|
1663 |
+
#: ../lib/tribe-view-helpers.class.php:164
|
1664 |
msgid "Macedonia"
|
1665 |
msgstr "Makedonien"
|
1666 |
|
1667 |
+
#: ../lib/tribe-view-helpers.class.php:165
|
1668 |
msgid "Madagascar"
|
1669 |
msgstr "Madagaskar"
|
1670 |
|
1671 |
+
#: ../lib/tribe-view-helpers.class.php:166
|
1672 |
msgid "Malawi"
|
1673 |
msgstr "Malawi"
|
1674 |
|
1675 |
+
#: ../lib/tribe-view-helpers.class.php:167
|
1676 |
msgid "Malaysia"
|
1677 |
msgstr "Malaysia"
|
1678 |
|
1679 |
+
#: ../lib/tribe-view-helpers.class.php:168
|
1680 |
msgid "Maldives"
|
1681 |
msgstr "Maldiverna (Republiken Maldiverna)"
|
1682 |
|
1683 |
+
#: ../lib/tribe-view-helpers.class.php:169
|
1684 |
msgid "Mali"
|
1685 |
msgstr "Mali"
|
1686 |
|
1687 |
+
#: ../lib/tribe-view-helpers.class.php:170
|
1688 |
msgid "Malta"
|
1689 |
msgstr "Malta"
|
1690 |
|
1691 |
+
#: ../lib/tribe-view-helpers.class.php:171
|
1692 |
msgid "Marshall Islands"
|
1693 |
msgstr "Marshallöarna"
|
1694 |
|
1695 |
+
#: ../lib/tribe-view-helpers.class.php:172
|
1696 |
msgid "Martinique"
|
1697 |
msgstr "Martinique"
|
1698 |
|
1699 |
+
#: ../lib/tribe-view-helpers.class.php:173
|
1700 |
msgid "Mauritania"
|
1701 |
msgstr "Mauretanien (Islamiska republiken Mauretanien)"
|
1702 |
|
1703 |
+
#: ../lib/tribe-view-helpers.class.php:174
|
1704 |
msgid "Mauritius"
|
1705 |
msgstr "Mauritius"
|
1706 |
|
1707 |
+
#: ../lib/tribe-view-helpers.class.php:175
|
1708 |
msgid "Mayotte"
|
1709 |
msgstr "Mayotte"
|
1710 |
|
1711 |
+
#: ../lib/tribe-view-helpers.class.php:176
|
1712 |
msgid "Mexico"
|
1713 |
msgstr "Mexico"
|
1714 |
|
1715 |
+
#: ../lib/tribe-view-helpers.class.php:177
|
1716 |
msgid "Micronesia, Federated States Of"
|
1717 |
msgstr "Mikronesien"
|
1718 |
|
1719 |
+
#: ../lib/tribe-view-helpers.class.php:178
|
1720 |
msgid "Moldova, Republic Of"
|
1721 |
msgstr "Moldavien"
|
1722 |
|
1723 |
+
#: ../lib/tribe-view-helpers.class.php:179
|
1724 |
msgid "Monaco"
|
1725 |
msgstr "Monaco"
|
1726 |
|
1727 |
+
#: ../lib/tribe-view-helpers.class.php:180
|
1728 |
msgid "Mongolia"
|
1729 |
msgstr "Mongoliet"
|
1730 |
|
1731 |
+
#: ../lib/tribe-view-helpers.class.php:181
|
1732 |
msgid "Montenegro"
|
1733 |
msgstr "Montenegro"
|
1734 |
|
1735 |
+
#: ../lib/tribe-view-helpers.class.php:182
|
1736 |
msgid "Montserrat"
|
1737 |
msgstr "Montserrat"
|
1738 |
|
1739 |
+
#: ../lib/tribe-view-helpers.class.php:183
|
1740 |
msgid "Morocco"
|
1741 |
msgstr "Marocko"
|
1742 |
|
1743 |
+
#: ../lib/tribe-view-helpers.class.php:184
|
1744 |
msgid "Mozambique"
|
1745 |
msgstr "Moçambique (Republiken Moçambique)"
|
1746 |
|
1747 |
+
#: ../lib/tribe-view-helpers.class.php:185
|
1748 |
msgid "Myanmar"
|
1749 |
msgstr "Burma"
|
1750 |
|
1751 |
+
#: ../lib/tribe-view-helpers.class.php:186
|
1752 |
msgid "Namibia"
|
1753 |
msgstr "Namibia"
|
1754 |
|
1755 |
+
#: ../lib/tribe-view-helpers.class.php:187
|
1756 |
msgid "Nauru"
|
1757 |
msgstr "Nauru"
|
1758 |
|
1759 |
+
#: ../lib/tribe-view-helpers.class.php:188
|
1760 |
msgid "Nepal"
|
1761 |
msgstr "Nepal"
|
1762 |
|
1763 |
+
#: ../lib/tribe-view-helpers.class.php:189
|
1764 |
msgid "Netherlands"
|
1765 |
msgstr "Nederländerna"
|
1766 |
|
1767 |
+
#: ../lib/tribe-view-helpers.class.php:190
|
1768 |
msgid "Netherlands Antilles"
|
1769 |
msgstr "Nederländska Antillerna"
|
1770 |
|
1771 |
+
#: ../lib/tribe-view-helpers.class.php:191
|
1772 |
msgid "New Caledonia"
|
1773 |
msgstr "Nya Kaledonien"
|
1774 |
|
1775 |
+
#: ../lib/tribe-view-helpers.class.php:192
|
1776 |
msgid "New Zealand"
|
1777 |
msgstr "Nya Zeeland"
|
1778 |
|
1779 |
+
#: ../lib/tribe-view-helpers.class.php:193
|
1780 |
msgid "Nicaragua"
|
1781 |
msgstr "Nicaragua"
|
1782 |
|
1783 |
+
#: ../lib/tribe-view-helpers.class.php:194
|
1784 |
msgid "Niger"
|
1785 |
msgstr "Niger"
|
1786 |
|
1787 |
+
#: ../lib/tribe-view-helpers.class.php:195
|
1788 |
msgid "Nigeria"
|
1789 |
msgstr "Nigeria"
|
1790 |
|
1791 |
+
#: ../lib/tribe-view-helpers.class.php:196
|
1792 |
msgid "Niue"
|
1793 |
msgstr "Niue"
|
1794 |
|
1795 |
+
#: ../lib/tribe-view-helpers.class.php:197
|
1796 |
msgid "Norfolk Island"
|
1797 |
msgstr "Norfolkön"
|
1798 |
|
1799 |
+
#: ../lib/tribe-view-helpers.class.php:198
|
1800 |
msgid "Northern Mariana Islands"
|
1801 |
msgstr "Nordmarianerna"
|
1802 |
|
1803 |
+
#: ../lib/tribe-view-helpers.class.php:199
|
1804 |
msgid "Norway"
|
1805 |
msgstr "Norge"
|
1806 |
|
1807 |
+
#: ../lib/tribe-view-helpers.class.php:200
|
1808 |
msgid "Oman"
|
1809 |
msgstr "Oman"
|
1810 |
|
1811 |
+
#: ../lib/tribe-view-helpers.class.php:201
|
1812 |
msgid "Pakistan"
|
1813 |
msgstr "Pakistan"
|
1814 |
|
1815 |
+
#: ../lib/tribe-view-helpers.class.php:202
|
1816 |
msgid "Palau"
|
1817 |
msgstr "Palau"
|
1818 |
|
1819 |
+
#: ../lib/tribe-view-helpers.class.php:203
|
1820 |
msgid "Panama"
|
1821 |
msgstr "Panama"
|
1822 |
|
1823 |
+
#: ../lib/tribe-view-helpers.class.php:204
|
1824 |
msgid "Papua New Guinea"
|
1825 |
msgstr "Papua Nya Guinea"
|
1826 |
|
1827 |
+
#: ../lib/tribe-view-helpers.class.php:205
|
1828 |
msgid "Paraguay"
|
1829 |
msgstr "Paraguay"
|
1830 |
|
1831 |
+
#: ../lib/tribe-view-helpers.class.php:206
|
1832 |
msgid "Peru"
|
1833 |
msgstr "Peru"
|
1834 |
|
1835 |
+
#: ../lib/tribe-view-helpers.class.php:207
|
1836 |
msgid "Philippines"
|
1837 |
msgstr "Filippinerna"
|
1838 |
|
1839 |
+
#: ../lib/tribe-view-helpers.class.php:208
|
1840 |
msgid "Pitcairn"
|
1841 |
msgstr "Pitcairnöarna"
|
1842 |
|
1843 |
+
#: ../lib/tribe-view-helpers.class.php:209
|
1844 |
msgid "Poland"
|
1845 |
msgstr "Polen"
|
1846 |
|
1847 |
+
#: ../lib/tribe-view-helpers.class.php:210
|
1848 |
msgid "Portugal"
|
1849 |
msgstr "Portugal"
|
1850 |
|
1851 |
+
#: ../lib/tribe-view-helpers.class.php:211
|
1852 |
msgid "Puerto Rico"
|
1853 |
msgstr "Puerto Rico"
|
1854 |
|
1855 |
+
#: ../lib/tribe-view-helpers.class.php:212
|
1856 |
msgid "Qatar"
|
1857 |
msgstr "Qatar"
|
1858 |
|
1859 |
+
#: ../lib/tribe-view-helpers.class.php:213
|
1860 |
msgid "Reunion"
|
1861 |
msgstr "Réunion"
|
1862 |
|
1863 |
+
#: ../lib/tribe-view-helpers.class.php:214
|
1864 |
msgid "Romania"
|
1865 |
msgstr "Rumänien"
|
1866 |
|
1867 |
+
#: ../lib/tribe-view-helpers.class.php:215
|
1868 |
msgid "Russian Federation"
|
1869 |
msgstr "Ryssland (Ryska federationen)"
|
1870 |
|
1871 |
+
#: ../lib/tribe-view-helpers.class.php:216
|
1872 |
msgid "Rwanda"
|
1873 |
msgstr "Rwanda"
|
1874 |
|
1875 |
+
#: ../lib/tribe-view-helpers.class.php:217
|
1876 |
msgid "Saint Kitts And Nevis"
|
1877 |
msgstr "Saint Kitts och Nevis"
|
1878 |
|
1879 |
+
#: ../lib/tribe-view-helpers.class.php:218
|
1880 |
msgid "Saint Lucia"
|
1881 |
msgstr "Saint Lucia"
|
1882 |
|
1883 |
+
#: ../lib/tribe-view-helpers.class.php:219
|
1884 |
msgid "Saint Vincent And The Grenadines"
|
1885 |
msgstr "Saint Vincent och Grenadinerna"
|
1886 |
|
1887 |
+
#: ../lib/tribe-view-helpers.class.php:220
|
1888 |
msgid "Samoa"
|
1889 |
msgstr "Samoa"
|
1890 |
|
1891 |
+
#: ../lib/tribe-view-helpers.class.php:221
|
1892 |
msgid "San Marino"
|
1893 |
msgstr "San Marino"
|
1894 |
|
1895 |
+
#: ../lib/tribe-view-helpers.class.php:222
|
1896 |
msgid "Sao Tome And Principe"
|
1897 |
msgstr "São Tomé och Príncipe"
|
1898 |
|
1899 |
+
#: ../lib/tribe-view-helpers.class.php:223
|
1900 |
msgid "Saudi Arabia"
|
1901 |
msgstr "Saudiarabien"
|
1902 |
|
1903 |
+
#: ../lib/tribe-view-helpers.class.php:224
|
1904 |
msgid "Senegal"
|
1905 |
msgstr "Senegal"
|
1906 |
|
1907 |
+
#: ../lib/tribe-view-helpers.class.php:225
|
1908 |
msgid "Serbia"
|
1909 |
msgstr "Serbien"
|
1910 |
|
1911 |
+
#: ../lib/tribe-view-helpers.class.php:226
|
1912 |
msgid "Seychelles"
|
1913 |
msgstr "Seychellerna"
|
1914 |
|
1915 |
+
#: ../lib/tribe-view-helpers.class.php:227
|
1916 |
msgid "Sierra Leone"
|
1917 |
msgstr "Sierra Leone"
|
1918 |
|
1919 |
+
#: ../lib/tribe-view-helpers.class.php:228
|
1920 |
msgid "Singapore"
|
1921 |
msgstr "Singapore"
|
1922 |
|
1923 |
+
#: ../lib/tribe-view-helpers.class.php:229
|
1924 |
msgid "Slovakia (Slovak Republic)"
|
1925 |
msgstr "Slovakien"
|
1926 |
|
1927 |
+
#: ../lib/tribe-view-helpers.class.php:230
|
1928 |
msgid "Slovenia"
|
1929 |
msgstr "Slovenien"
|
1930 |
|
1931 |
+
#: ../lib/tribe-view-helpers.class.php:231
|
1932 |
msgid "Solomon Islands"
|
1933 |
msgstr "Salomonöarna"
|
1934 |
|
1935 |
+
#: ../lib/tribe-view-helpers.class.php:232
|
1936 |
msgid "Somalia"
|
1937 |
msgstr "Somalia"
|
1938 |
|
1939 |
+
#: ../lib/tribe-view-helpers.class.php:233
|
1940 |
msgid "South Africa"
|
1941 |
msgstr "Sydafrika"
|
1942 |
|
1943 |
+
#: ../lib/tribe-view-helpers.class.php:234
|
1944 |
msgid "South Georgia, South Sandwich Islands"
|
1945 |
msgstr "Sydgeorgien och Sydsandwichöarna"
|
1946 |
|
1947 |
+
#: ../lib/tribe-view-helpers.class.php:235
|
1948 |
msgid "Spain"
|
1949 |
msgstr "Spanien"
|
1950 |
|
1951 |
+
#: ../lib/tribe-view-helpers.class.php:236
|
1952 |
msgid "Sri Lanka"
|
1953 |
msgstr "Sri Lanka"
|
1954 |
|
1955 |
+
#: ../lib/tribe-view-helpers.class.php:237
|
1956 |
msgid "St. Helena"
|
1957 |
msgstr "Sankta Helena"
|
1958 |
|
1959 |
+
#: ../lib/tribe-view-helpers.class.php:238
|
1960 |
msgid "St. Pierre And Miquelon"
|
1961 |
msgstr "Saint-Pierre och Miquelon"
|
1962 |
|
1963 |
+
#: ../lib/tribe-view-helpers.class.php:239
|
1964 |
msgid "Sudan"
|
1965 |
msgstr "Sudan"
|
1966 |
|
1967 |
+
#: ../lib/tribe-view-helpers.class.php:240
|
1968 |
msgid "Suriname"
|
1969 |
msgstr "Surinam"
|
1970 |
|
1971 |
+
#: ../lib/tribe-view-helpers.class.php:241
|
1972 |
msgid "Svalbard And Jan Mayen Islands"
|
1973 |
msgstr "Svalbard och Jan Mayen"
|
1974 |
|
1975 |
+
#: ../lib/tribe-view-helpers.class.php:242
|
1976 |
msgid "Swaziland"
|
1977 |
msgstr "Swaziland"
|
1978 |
|
1979 |
+
#: ../lib/tribe-view-helpers.class.php:243
|
1980 |
msgid "Sweden"
|
1981 |
msgstr "Sverige"
|
1982 |
|
1983 |
+
#: ../lib/tribe-view-helpers.class.php:244
|
1984 |
msgid "Switzerland"
|
1985 |
msgstr "Schweiz"
|
1986 |
|
1987 |
+
#: ../lib/tribe-view-helpers.class.php:245
|
1988 |
msgid "Syrian Arab Republic"
|
1989 |
msgstr "Syrien (Arabrepubliken Syrien)"
|
1990 |
|
1991 |
+
#: ../lib/tribe-view-helpers.class.php:246
|
1992 |
msgid "Taiwan"
|
1993 |
msgstr "Taiwan"
|
1994 |
|
1995 |
+
#: ../lib/tribe-view-helpers.class.php:247
|
1996 |
msgid "Tajikistan"
|
1997 |
msgstr "Tadzjikistan"
|
1998 |
|
1999 |
+
#: ../lib/tribe-view-helpers.class.php:248
|
2000 |
msgid "Tanzania, United Republic Of"
|
2001 |
msgstr "Tanzania"
|
2002 |
|
2003 |
+
#: ../lib/tribe-view-helpers.class.php:249
|
2004 |
msgid "Thailand"
|
2005 |
msgstr "Thailand"
|
2006 |
|
2007 |
+
#: ../lib/tribe-view-helpers.class.php:250
|
2008 |
msgid "Togo"
|
2009 |
msgstr "Togo"
|
2010 |
|
2011 |
+
#: ../lib/tribe-view-helpers.class.php:251
|
2012 |
msgid "Tokelau"
|
2013 |
msgstr "Tokelauöarna"
|
2014 |
|
2015 |
+
#: ../lib/tribe-view-helpers.class.php:252
|
2016 |
msgid "Tonga"
|
2017 |
msgstr "Tonga"
|
2018 |
|
2019 |
+
#: ../lib/tribe-view-helpers.class.php:253
|
2020 |
msgid "Trinidad And Tobago"
|
2021 |
msgstr "Trinidad And Tobago"
|
2022 |
|
2023 |
+
#: ../lib/tribe-view-helpers.class.php:254
|
2024 |
msgid "Tunisia"
|
2025 |
msgstr "Tunisien"
|
2026 |
|
2027 |
+
#: ../lib/tribe-view-helpers.class.php:255
|
2028 |
msgid "Turkey"
|
2029 |
msgstr "Turkiet"
|
2030 |
|
2031 |
+
#: ../lib/tribe-view-helpers.class.php:256
|
2032 |
msgid "Turkmenistan"
|
2033 |
msgstr "Turkmenistan"
|
2034 |
|
2035 |
+
#: ../lib/tribe-view-helpers.class.php:257
|
2036 |
msgid "Turks And Caicos Islands"
|
2037 |
msgstr "Turks- och Caicosöarna"
|
2038 |
|
2039 |
+
#: ../lib/tribe-view-helpers.class.php:258
|
2040 |
msgid "Tuvalu"
|
2041 |
msgstr "Tuvalu"
|
2042 |
|
2043 |
+
#: ../lib/tribe-view-helpers.class.php:259
|
2044 |
msgid "Uganda"
|
2045 |
msgstr "Uganda"
|
2046 |
|
2047 |
+
#: ../lib/tribe-view-helpers.class.php:260
|
2048 |
msgid "Ukraine"
|
2049 |
msgstr "Ukraina"
|
2050 |
|
2051 |
+
#: ../lib/tribe-view-helpers.class.php:261
|
2052 |
msgid "United Arab Emirates"
|
2053 |
msgstr "Förenade Arabemiraten"
|
2054 |
|
2055 |
+
#: ../lib/tribe-view-helpers.class.php:262
|
2056 |
msgid "United Kingdom"
|
2057 |
msgstr "Storbritannien (Förenade kungariket Storbritannien)"
|
2058 |
|
2059 |
+
#: ../lib/tribe-view-helpers.class.php:263
|
2060 |
msgid "United States Minor Outlying Islands"
|
2061 |
msgstr "Förenta staternas avlägset belägna öar"
|
2062 |
|
2063 |
+
#: ../lib/tribe-view-helpers.class.php:264
|
2064 |
msgid "Uruguay"
|
2065 |
msgstr "Uruguay"
|
2066 |
|
2067 |
+
#: ../lib/tribe-view-helpers.class.php:265
|
2068 |
msgid "Uzbekistan"
|
2069 |
msgstr "Uzbekistan"
|
2070 |
|
2071 |
+
#: ../lib/tribe-view-helpers.class.php:266
|
2072 |
msgid "Vanuatu"
|
2073 |
msgstr "Vanuatu"
|
2074 |
|
2075 |
+
#: ../lib/tribe-view-helpers.class.php:267
|
2076 |
msgid "Venezuela"
|
2077 |
msgstr "Venezuela"
|
2078 |
|
2079 |
+
#: ../lib/tribe-view-helpers.class.php:268
|
2080 |
msgid "Viet Nam"
|
2081 |
msgstr "Vietnam (Socialistiska republiken Vietnam)"
|
2082 |
|
2083 |
+
#: ../lib/tribe-view-helpers.class.php:269
|
2084 |
msgid "Virgin Islands (British)"
|
2085 |
msgstr "Brittiska Jungfruöarna"
|
2086 |
|
2087 |
+
#: ../lib/tribe-view-helpers.class.php:270
|
2088 |
msgid "Virgin Islands (U.S.)"
|
2089 |
msgstr "Amerikanska Jungfruöarna"
|
2090 |
|
2091 |
+
#: ../lib/tribe-view-helpers.class.php:271
|
2092 |
msgid "Wallis And Futuna Islands"
|
2093 |
msgstr "Wallis- och Futunaöarna"
|
2094 |
|
2095 |
+
#: ../lib/tribe-view-helpers.class.php:272
|
2096 |
msgid "Western Sahara"
|
2097 |
msgstr "Västsahara"
|
2098 |
|
2099 |
+
#: ../lib/tribe-view-helpers.class.php:273
|
2100 |
msgid "Yemen"
|
2101 |
msgstr "Jemen"
|
2102 |
|
2103 |
+
#: ../lib/tribe-view-helpers.class.php:274
|
2104 |
msgid "Zambia"
|
2105 |
msgstr "Zambia"
|
2106 |
|
2107 |
+
#: ../lib/tribe-view-helpers.class.php:275
|
2108 |
msgid "Zimbabwe"
|
2109 |
msgstr "Zimbabwe"
|
2110 |
|
2111 |
+
#: ../lib/tribe-view-helpers.class.php:295
|
2112 |
msgid "Alabama"
|
2113 |
msgstr "Alabama"
|
2114 |
|
2115 |
+
#: ../lib/tribe-view-helpers.class.php:296
|
2116 |
msgid "Alaska"
|
2117 |
msgstr "Alaska"
|
2118 |
|
2119 |
+
#: ../lib/tribe-view-helpers.class.php:297
|
2120 |
msgid "Arizona"
|
2121 |
msgstr "Arizona"
|
2122 |
|
2123 |
+
#: ../lib/tribe-view-helpers.class.php:298
|
2124 |
msgid "Arkansas"
|
2125 |
msgstr "Arkansas"
|
2126 |
|
2127 |
+
#: ../lib/tribe-view-helpers.class.php:299
|
2128 |
msgid "California"
|
2129 |
msgstr "California"
|
2130 |
|
2131 |
+
#: ../lib/tribe-view-helpers.class.php:300
|
2132 |
msgid "Colorado"
|
2133 |
msgstr "Colorado"
|
2134 |
|
2135 |
+
#: ../lib/tribe-view-helpers.class.php:301
|
2136 |
msgid "Connecticut"
|
2137 |
msgstr "Connecticut"
|
2138 |
|
2139 |
+
#: ../lib/tribe-view-helpers.class.php:302
|
2140 |
msgid "Delaware"
|
2141 |
msgstr "Delaware"
|
2142 |
|
2143 |
+
#: ../lib/tribe-view-helpers.class.php:303
|
2144 |
msgid "District of Columbia"
|
2145 |
msgstr "District of Columbia"
|
2146 |
|
2147 |
+
#: ../lib/tribe-view-helpers.class.php:304
|
2148 |
msgid "Florida"
|
2149 |
msgstr "Florida"
|
2150 |
|
2151 |
+
#: ../lib/tribe-view-helpers.class.php:306
|
2152 |
msgid "Hawaii"
|
2153 |
msgstr "Hawaii"
|
2154 |
|
2155 |
+
#: ../lib/tribe-view-helpers.class.php:307
|
2156 |
msgid "Idaho"
|
2157 |
msgstr "Idaho"
|
2158 |
|
2159 |
+
#: ../lib/tribe-view-helpers.class.php:308
|
2160 |
msgid "Illinois"
|
2161 |
msgstr "Illinois"
|
2162 |
|
2163 |
+
#: ../lib/tribe-view-helpers.class.php:309
|
2164 |
msgid "Indiana"
|
2165 |
msgstr "Indiana"
|
2166 |
|
2167 |
+
#: ../lib/tribe-view-helpers.class.php:310
|
2168 |
msgid "Iowa"
|
2169 |
msgstr "Iowa"
|
2170 |
|
2171 |
+
#: ../lib/tribe-view-helpers.class.php:311
|
2172 |
msgid "Kansas"
|
2173 |
msgstr "Kansas"
|
2174 |
|
2175 |
+
#: ../lib/tribe-view-helpers.class.php:312
|
2176 |
msgid "Kentucky"
|
2177 |
msgstr "Kentucky"
|
2178 |
|
2179 |
+
#: ../lib/tribe-view-helpers.class.php:313
|
2180 |
msgid "Louisiana"
|
2181 |
msgstr "Louisiana"
|
2182 |
|
2183 |
+
#: ../lib/tribe-view-helpers.class.php:314
|
2184 |
msgid "Maine"
|
2185 |
msgstr "Maine"
|
2186 |
|
2187 |
+
#: ../lib/tribe-view-helpers.class.php:315
|
2188 |
msgid "Maryland"
|
2189 |
msgstr "Maryland"
|
2190 |
|
2191 |
+
#: ../lib/tribe-view-helpers.class.php:316
|
2192 |
msgid "Massachusetts"
|
2193 |
msgstr "Massachusetts"
|
2194 |
|
2195 |
+
#: ../lib/tribe-view-helpers.class.php:317
|
2196 |
msgid "Michigan"
|
2197 |
msgstr "Michigan"
|
2198 |
|
2199 |
+
#: ../lib/tribe-view-helpers.class.php:318
|
2200 |
msgid "Minnesota"
|
2201 |
msgstr "Minnesota"
|
2202 |
|
2203 |
+
#: ../lib/tribe-view-helpers.class.php:319
|
2204 |
msgid "Mississippi"
|
2205 |
msgstr "Mississippi"
|
2206 |
|
2207 |
+
#: ../lib/tribe-view-helpers.class.php:320
|
2208 |
msgid "Missouri"
|
2209 |
msgstr "Missouri"
|
2210 |
|
2211 |
+
#: ../lib/tribe-view-helpers.class.php:321
|
2212 |
msgid "Montana"
|
2213 |
msgstr "Montana"
|
2214 |
|
2215 |
+
#: ../lib/tribe-view-helpers.class.php:322
|
2216 |
msgid "Nebraska"
|
2217 |
msgstr "Nebraska"
|
2218 |
|
2219 |
+
#: ../lib/tribe-view-helpers.class.php:323
|
2220 |
msgid "Nevada"
|
2221 |
msgstr "Nevada"
|
2222 |
|
2223 |
+
#: ../lib/tribe-view-helpers.class.php:324
|
2224 |
msgid "New Hampshire"
|
2225 |
msgstr "New Hampshire"
|
2226 |
|
2227 |
+
#: ../lib/tribe-view-helpers.class.php:325
|
2228 |
msgid "New Jersey"
|
2229 |
msgstr "New Jersey"
|
2230 |
|
2231 |
+
#: ../lib/tribe-view-helpers.class.php:326
|
2232 |
msgid "New Mexico"
|
2233 |
msgstr "New Mexico"
|
2234 |
|
2235 |
+
#: ../lib/tribe-view-helpers.class.php:327
|
2236 |
msgid "New York"
|
2237 |
msgstr "New York"
|
2238 |
|
2239 |
+
#: ../lib/tribe-view-helpers.class.php:328
|
2240 |
msgid "North Carolina"
|
2241 |
msgstr "North Carolina"
|
2242 |
|
2243 |
+
#: ../lib/tribe-view-helpers.class.php:329
|
2244 |
msgid "North Dakota"
|
2245 |
msgstr "North Dakota"
|
2246 |
|
2247 |
+
#: ../lib/tribe-view-helpers.class.php:330
|
2248 |
msgid "Ohio"
|
2249 |
msgstr "Ohio"
|
2250 |
|
2251 |
+
#: ../lib/tribe-view-helpers.class.php:331
|
2252 |
msgid "Oklahoma"
|
2253 |
msgstr "Oklahoma"
|
2254 |
|
2255 |
+
#: ../lib/tribe-view-helpers.class.php:332
|
2256 |
msgid "Oregon"
|
2257 |
msgstr "Oregon"
|
2258 |
|
2259 |
+
#: ../lib/tribe-view-helpers.class.php:333
|
2260 |
msgid "Pennsylvania"
|
2261 |
msgstr "Pennsylvania"
|
2262 |
|
2263 |
+
#: ../lib/tribe-view-helpers.class.php:334
|
2264 |
msgid "Rhode Island"
|
2265 |
msgstr "Rhode Island"
|
2266 |
|
2267 |
+
#: ../lib/tribe-view-helpers.class.php:335
|
2268 |
msgid "South Carolina"
|
2269 |
msgstr "South Carolina"
|
2270 |
|
2271 |
+
#: ../lib/tribe-view-helpers.class.php:336
|
2272 |
msgid "South Dakota"
|
2273 |
msgstr "South Dakota"
|
2274 |
|
2275 |
+
#: ../lib/tribe-view-helpers.class.php:337
|
2276 |
msgid "Tennessee"
|
2277 |
msgstr "Tennessee"
|
2278 |
|
2279 |
+
#: ../lib/tribe-view-helpers.class.php:338
|
2280 |
msgid "Texas"
|
2281 |
msgstr "Texas"
|
2282 |
|
2283 |
+
#: ../lib/tribe-view-helpers.class.php:339
|
2284 |
msgid "Utah"
|
2285 |
msgstr "Utah"
|
2286 |
|
2287 |
+
#: ../lib/tribe-view-helpers.class.php:340
|
2288 |
msgid "Vermont"
|
2289 |
msgstr "Vermont"
|
2290 |
|
2291 |
+
#: ../lib/tribe-view-helpers.class.php:341
|
2292 |
msgid "Virginia"
|
2293 |
msgstr "Virginia"
|
2294 |
|
2295 |
+
#: ../lib/tribe-view-helpers.class.php:342
|
2296 |
msgid "Washington"
|
2297 |
msgstr "Washington"
|
2298 |
|
2299 |
+
#: ../lib/tribe-view-helpers.class.php:343
|
2300 |
msgid "West Virginia"
|
2301 |
msgstr "West Virginia"
|
2302 |
|
2303 |
+
#: ../lib/tribe-view-helpers.class.php:344
|
2304 |
msgid "Wisconsin"
|
2305 |
msgstr "Wisconsin"
|
2306 |
|
2307 |
+
#: ../lib/tribe-view-helpers.class.php:345
|
2308 |
msgid "Wyoming"
|
2309 |
msgstr "Wyoming"
|
2310 |
|
2320 |
msgid "There are no upcoming events at this time."
|
2321 |
msgstr "Det finns för närvarande inga kommande evenemang."
|
2322 |
|
2323 |
+
#: ../public/template-tags/general.php:120
|
2324 |
msgid "Category:"
|
2325 |
msgstr "Kategori:"
|
2326 |
|
2327 |
+
#: ../public/template-tags/general.php:137
|
2328 |
+
msgid "Tags:"
|
2329 |
+
msgstr "Taggar:"
|
2330 |
+
|
2331 |
+
#: ../public/template-tags/general.php:255
|
2332 |
msgid "Free"
|
2333 |
msgstr "Gratis"
|
2334 |
|
2336 |
msgid "Calendar of Events"
|
2337 |
msgstr "Evenemangskalender"
|
2338 |
|
2339 |
+
#: ../public/template-tags/options.php:20
|
2340 |
+
msgid "The slug used for building the events URL."
|
2341 |
+
msgstr "Sluggen som används för att bygga evenemangs URL:en."
|
2342 |
+
|
2343 |
+
#: ../public/template-tags/options.php:20
|
2344 |
+
#, php-format
|
2345 |
+
msgid "Your current Events URL is %s"
|
2346 |
+
msgstr "Din nuvarande evenemangs-URL är %s"
|
2347 |
+
|
2348 |
+
#: ../public/template-tags/options.php:31
|
2349 |
+
#, php-format
|
2350 |
+
msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
|
2351 |
+
msgstr "Du kan <strong>inte</strong> använda samma slug som ovan. Det ovan bör idealt vara i plural, och detta i singular.<br />URL:en för ett enstaka evenemang är: %s"
|
2352 |
+
|
2353 |
+
#: ../public/template-tags/options.php:43
|
2354 |
+
msgid "Here is the iCal feed URL for your events:"
|
2355 |
+
msgstr "Här är iCal feed URL:en för dina evenemang:"
|
2356 |
+
|
2357 |
+
#: ../vendor/wp-router/WP_Route.class.php:250
|
2358 |
+
msgid "You are not authorized to access this page"
|
2359 |
+
msgstr "Du har inte befogenheter för att visa denna sida"
|
2360 |
+
|
2361 |
+
#: ../vendor/wp-router/WP_Route.class.php:251
|
2362 |
+
msgid "Access Denied"
|
2363 |
+
msgstr "Tillträde nekat"
|
2364 |
+
|
2365 |
+
#: ../vendor/wp-router/WP_Router_Page.class.php:78
|
2366 |
+
msgid "WP Router Placeholder Page"
|
2367 |
+
msgstr "WP Router platshållarsida"
|
2368 |
+
|
2369 |
+
#: ../vendor/wp-router/WP_Router_Utility.class.php:71
|
2370 |
+
#, php-format
|
2371 |
+
msgid "%1$s requires WordPress %2$s or higher and PHP %3$s or higher."
|
2372 |
+
msgstr "%1$s kräver WordPress %2$s eller nyare och PHP %3$s eller nyare."
|
2373 |
+
|
2374 |
#: ../views/ecp-single-template.php:24
|
2375 |
msgid "Edit"
|
2376 |
msgstr "Redigera"
|
2379 |
msgid "All Day"
|
2380 |
msgstr "Heldag"
|
2381 |
|
2382 |
+
#: ../views/gridview.php:36
|
2383 |
+
#: ../views/list.php:18
|
2384 |
+
msgid "Event List"
|
2385 |
+
msgstr "Evenemangslista"
|
2386 |
+
|
2387 |
+
#: ../views/gridview.php:37
|
2388 |
+
#: ../views/list.php:19
|
2389 |
+
msgid "Calendar"
|
2390 |
+
msgstr "Kalender"
|
2391 |
+
|
2392 |
#: ../views/gridview.php:42
|
2393 |
#: ../views/list.php:165
|
2394 |
+
#: ../views/single.php:103
|
2395 |
msgid "iCal Import"
|
2396 |
msgstr "iCal import"
|
2397 |
|
2398 |
+
#: ../views/gridview.php:45
|
2399 |
+
#, php-format
|
2400 |
+
msgid "Calendar powered by %sThe Events Calendar%s"
|
2401 |
+
msgstr "Kalende powered by %sThe Events Calendar%s"
|
2402 |
+
|
2403 |
#: ../views/list.php:50
|
2404 |
+
#: ../views/single.php:22
|
2405 |
msgid "Start:"
|
2406 |
msgstr "Börjar:"
|
2407 |
|
2408 |
#: ../views/list.php:54
|
2409 |
+
#: ../views/single.php:24
|
2410 |
msgid "End:"
|
2411 |
msgstr "Slutar:"
|
2412 |
|
2413 |
#: ../views/list.php:59
|
2414 |
+
#: ../views/single.php:27
|
2415 |
msgid "Date:"
|
2416 |
msgstr "Datum:"
|
2417 |
|
2418 |
#: ../views/list.php:69
|
2419 |
+
#: ../views/single.php:61
|
2420 |
msgid "Venue:"
|
2421 |
msgstr "Plats:"
|
2422 |
|
2423 |
#: ../views/list.php:92
|
2424 |
+
#: ../views/single.php:78
|
2425 |
msgid "Google Map"
|
2426 |
msgstr "Google Map"
|
2427 |
|
2460 |
msgid "Next Events »"
|
2461 |
msgstr "Nästa evenemang »"
|
2462 |
|
2463 |
+
#: ../views/single.php:12
|
2464 |
msgid "« Back to Events"
|
2465 |
msgstr "« Tillbaka till evenemang"
|
2466 |
|
2467 |
+
#: ../views/single.php:16
|
2468 |
msgid "This event has passed."
|
2469 |
msgstr "Evenemanget har varit."
|
2470 |
|
2471 |
+
#: ../views/single.php:19
|
2472 |
msgid "Event:"
|
2473 |
msgstr "Evenemang:"
|
2474 |
|
2475 |
+
#: ../views/single.php:36
|
2476 |
+
#: ../views/single.php:39
|
2477 |
msgid "Organizer:"
|
2478 |
msgstr "Arrangör:"
|
2479 |
|
2480 |
+
#: ../views/single.php:50
|
2481 |
msgid "Updated:"
|
2482 |
msgstr "Uppdaterad:"
|
2483 |
|
2484 |
+
#: ../views/single.php:53
|
2485 |
msgid "Schedule:"
|
2486 |
msgstr "Schema:"
|
2487 |
|
2488 |
+
#: ../views/single.php:78
|
2489 |
msgid "Click to view a Google Map"
|
2490 |
msgstr "Klicka för att visa en Google Map"
|
2491 |
|
2492 |
+
#: ../views/single.php:106
|
2493 |
msgid "Add to Google Calendar"
|
2494 |
msgstr "Lägg till i Google Calendar"
|
2495 |
|
2496 |
+
#: ../views/single.php:106
|
2497 |
msgid "+ Google Calendar"
|
2498 |
msgstr "+ Google Calendar"
|
2499 |
|
2501 |
msgid "View all »"
|
2502 |
msgstr "Visa alla »"
|
2503 |
|
2504 |
+
#~ msgid "%s Settings"
|
2505 |
+
#~ msgstr "%s inställningar"
|
2506 |
+
#~ msgid "Need a hand?"
|
2507 |
+
#~ msgstr "Behöver du hjälp?"
|
2508 |
+
#~ msgid ""
|
2509 |
+
#~ "If you're stuck on these options, please go to the <a href=\"%s\">support "
|
2510 |
+
#~ "forum</a>."
|
2511 |
+
#~ msgstr ""
|
2512 |
+
#~ "Om du kört fast på dessa alternativ, gå till <a href=\"%s"
|
2513 |
+
#~ "\">supportforumet</a>."
|
2514 |
+
#~ msgid "Height"
|
2515 |
+
#~ msgstr "Höjd"
|
2516 |
+
#~ msgid "Width"
|
2517 |
+
#~ msgstr "Bredd"
|
2518 |
+
#~ msgid "The slug used for building a single Event URL."
|
2519 |
+
#~ msgstr ""
|
2520 |
+
#~ "Sluggen som används för att bygga evenemangs URL:en för ett enstaka "
|
2521 |
+
#~ "evenemang."
|
2522 |
+
#~ msgid "Debug Events display issues."
|
2523 |
+
#~ msgstr "Debugga problem med visning av evenemang."
|
2524 |
+
#~ msgid "This is displayed directly after the header."
|
2525 |
+
#~ msgstr "Detta visas direkt efter sidhuvudet."
|
2526 |
+
#~ msgid "This is displayed directly above the footer."
|
2527 |
+
#~ msgstr "Detta visas direkt över sidfoten."
|
2528 |
+
|
lang/tribe-events-calendar.pot
CHANGED
@@ -5,8 +5,8 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: The Events Calendar 2.0\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2012-05
|
9 |
-
"PO-Revision-Date: 2012-05
|
10 |
"Last-Translator: Paul Hughes <paul@paulalexanderhughes.com>\n"
|
11 |
"Language-Team: Modern Tribe, Inc.\n"
|
12 |
"MIME-Version: 1.0\n"
|
@@ -20,6 +20,18 @@ msgstr ""
|
|
20 |
"X-Poedit-Country: UNITED STATES\n"
|
21 |
"X-Poedit-SearchPath-0: ..\n"
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
#: ../admin-views/event-sidebar-options.php:11
|
24 |
msgid "Hide From Upcoming Events List"
|
25 |
msgstr ""
|
@@ -36,61 +48,61 @@ msgstr ""
|
|
36 |
msgid "Audit Trail:"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../admin-views/events-meta-box.php:
|
40 |
msgid "Event Time & Date"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../admin-views/events-meta-box.php:
|
44 |
msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: ../admin-views/events-meta-box.php:
|
48 |
msgid "All day event?"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../admin-views/events-meta-box.php:
|
52 |
msgid "Start Date / Time:"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: ../admin-views/events-meta-box.php:
|
56 |
-
#: ../admin-views/events-meta-box.php:
|
57 |
msgid "YYYY-MM-DD"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: ../admin-views/events-meta-box.php:
|
61 |
-
#: ../admin-views/events-meta-box.php:
|
62 |
msgid "@"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: ../admin-views/events-meta-box.php:
|
66 |
msgid "End Date / Time:"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: ../admin-views/events-meta-box.php:
|
70 |
msgid "Event Location Details"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../admin-views/events-meta-box.php:
|
74 |
msgid "Show Google Maps Link:"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../admin-views/events-meta-box.php:
|
78 |
msgid "Show Google Map:"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../admin-views/events-meta-box.php:
|
82 |
msgid "Event Organizer Details"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../admin-views/events-meta-box.php:
|
86 |
msgid "Event Cost"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: ../admin-views/events-meta-box.php:
|
90 |
msgid "Cost:"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: ../admin-views/events-meta-box.php:
|
94 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
95 |
msgstr ""
|
96 |
|
@@ -99,7 +111,7 @@ msgid "Organizer Name:"
|
|
99 |
msgstr ""
|
100 |
|
101 |
#: ../admin-views/organizer-meta-box.php:17
|
102 |
-
#: ../admin-views/venue-meta-box.php:
|
103 |
msgid "Phone:"
|
104 |
msgstr ""
|
105 |
|
@@ -124,7 +136,6 @@ msgid "Add functionality to The Events Calendar"
|
|
124 |
msgstr ""
|
125 |
|
126 |
#: ../admin-views/tribe-options-general.php:16
|
127 |
-
#: ../lib/the-events-calendar.class.php:2500
|
128 |
msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
|
129 |
msgstr ""
|
130 |
|
@@ -159,79 +170,102 @@ msgid "Determines whether the default events view is a calendar or a list."
|
|
159 |
msgstr ""
|
160 |
|
161 |
#: ../admin-views/tribe-options-general.php:53
|
|
|
162 |
msgid "Events URL slug"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ../admin-views/tribe-options-general.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Single Event URL slug"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../admin-views/tribe-options-general.php:
|
|
|
|
|
|
|
|
|
|
|
170 |
msgid "Number of events to show per page in the loop"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: ../admin-views/tribe-options-general.php:
|
174 |
msgid "This is the number of events displayed per page when returning a list of events."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../admin-views/tribe-options-general.php:
|
178 |
msgid "Show Comments"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../admin-views/tribe-options-general.php:
|
182 |
msgid "Enables commenting on your single event view."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../admin-views/tribe-options-general.php:
|
186 |
msgid "Multiday Event Cutoff"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../admin-views/tribe-options-general.php:
|
190 |
msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../admin-views/tribe-options-general.php:
|
194 |
msgid "Enable Google Maps"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../admin-views/tribe-options-general.php:
|
198 |
msgid "If you don't have this turned on, your event listings won't have the backend map preview or frontend embedded map."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../admin-views/tribe-options-general.php:
|
202 |
msgid "Google Maps Embed Height"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../admin-views/tribe-options-general.php:
|
206 |
msgid "Enter a number."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../admin-views/tribe-options-general.php:
|
210 |
msgid "Google Maps Embed Width"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../admin-views/tribe-options-general.php:
|
214 |
msgid "Enter a number or %."
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../admin-views/tribe-options-general.php:
|
218 |
msgid "Google Maps Default Zoom Level"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: ../admin-views/tribe-options-general.php:
|
222 |
msgid "0 = zoomed-out; 21 = zoomed-in."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: ../admin-views/tribe-options-general.php:
|
226 |
msgid "Debug Mode"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../admin-views/tribe-options-general.php:
|
230 |
#, php-format
|
231 |
msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../admin-views/tribe-options-general.php:
|
235 |
msgid "Debug Bar Plugin"
|
236 |
msgstr ""
|
237 |
|
@@ -289,7 +323,6 @@ msgid "FAQ"
|
|
289 |
msgstr ""
|
290 |
|
291 |
#: ../admin-views/tribe-options-help.php:92
|
292 |
-
#: ../lib/the-events-calendar.class.php:416
|
293 |
msgid "Help"
|
294 |
msgstr ""
|
295 |
|
@@ -387,7 +420,6 @@ msgid "Still Not Satisfied?"
|
|
387 |
msgstr ""
|
388 |
|
389 |
#: ../admin-views/tribe-options-help.php:156
|
390 |
-
#: ../lib/the-events-calendar.class.php:275
|
391 |
msgid "The Events Calendar"
|
392 |
msgstr ""
|
393 |
|
@@ -501,15 +533,15 @@ msgstr ""
|
|
501 |
msgid "Country:"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: ../admin-views/venue-meta-box.php:
|
505 |
msgid "State or Province:"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: ../admin-views/venue-meta-box.php:
|
509 |
msgid "Select a State:"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: ../admin-views/venue-meta-box.php:
|
513 |
msgid "Postal Code:"
|
514 |
msgstr ""
|
515 |
|
@@ -529,421 +561,440 @@ msgstr ""
|
|
529 |
msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: ../lib/the-events-calendar.class.php:
|
533 |
msgid "category"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: ../lib/the-events-calendar.class.php:
|
537 |
msgid "tag"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: ../lib/the-events-calendar.class.php:
|
541 |
msgid "month"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: ../lib/the-events-calendar.class.php:
|
545 |
msgid "upcoming"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: ../lib/the-events-calendar.class.php:
|
549 |
msgid "past"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: ../lib/the-events-calendar.class.php:
|
553 |
msgid "venue"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../lib/the-events-calendar.class.php:
|
557 |
#, php-format
|
558 |
msgid "Initializing Tribe Events on %s"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../lib/the-events-calendar.class.php:
|
562 |
#, php-format
|
563 |
msgid "Your version of %s requires version %s or higher of The Events Calendar (you are currently running %s). Visit %shelp%s for more information."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: ../lib/the-events-calendar.class.php:
|
567 |
msgid "General"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: ../lib/the-events-calendar.class.php:
|
571 |
msgid "Template"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: ../lib/the-events-calendar.class.php:
|
575 |
msgid "Licenses"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: ../lib/the-events-calendar.class.php:
|
579 |
#, php-format
|
580 |
msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: ../lib/the-events-calendar.class.php:
|
584 |
#, php-format
|
585 |
msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: ../lib/the-events-calendar.class.php:
|
589 |
msgid "Upcoming Events"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: ../lib/the-events-calendar.class.php:
|
593 |
msgid "Past Events"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: ../lib/the-events-calendar.class.php:580
|
597 |
#: ../lib/the-events-calendar.class.php:586
|
|
|
598 |
#, php-format
|
599 |
msgid "Events for %s"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: ../lib/the-events-calendar.class.php:
|
603 |
msgid "Events this month"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: ../lib/the-events-calendar.class.php:
|
607 |
#, php-format
|
608 |
msgid "Events at %s"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: ../lib/the-events-calendar.class.php:
|
612 |
msgid "No description has been entered for this event."
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../lib/the-events-calendar.class.php:
|
|
|
|
|
616 |
msgid "Events"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: ../lib/the-events-calendar.class.php:
|
620 |
msgid "Event"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: ../lib/the-events-calendar.class.php:
|
624 |
-
#: ../lib/the-events-calendar.class.php:
|
625 |
-
#: ../lib/the-events-calendar.class.php:
|
626 |
msgid "Add New"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../lib/the-events-calendar.class.php:
|
630 |
msgid "Add New Event"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: ../lib/the-events-calendar.class.php:
|
634 |
msgid "Edit Event"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: ../lib/the-events-calendar.class.php:
|
638 |
msgid "New Event"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: ../lib/the-events-calendar.class.php:
|
642 |
msgid "View Event"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: ../lib/the-events-calendar.class.php:
|
646 |
msgid "Search Events"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: ../lib/the-events-calendar.class.php:
|
650 |
msgid "No events found"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: ../lib/the-events-calendar.class.php:
|
654 |
msgid "No events found in Trash"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../lib/the-events-calendar.class.php:
|
658 |
msgid "Venues"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../lib/the-events-calendar.class.php:
|
662 |
msgid "Venue"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: ../lib/the-events-calendar.class.php:
|
666 |
msgid "Add New Venue"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../lib/the-events-calendar.class.php:
|
670 |
msgid "Edit Venue"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: ../lib/the-events-calendar.class.php:
|
674 |
msgid "New Venue"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../lib/the-events-calendar.class.php:
|
678 |
-
#: ../lib/the-events-calendar.class.php:
|
679 |
msgid "View Venue"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: ../lib/the-events-calendar.class.php:
|
683 |
msgid "Search Venues"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../lib/the-events-calendar.class.php:
|
687 |
msgid "No venue found"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: ../lib/the-events-calendar.class.php:
|
691 |
msgid "No venues found in Trash"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: ../lib/the-events-calendar.class.php:
|
695 |
msgid "Organizers"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: ../lib/the-events-calendar.class.php:
|
699 |
msgid "Organizer"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: ../lib/the-events-calendar.class.php:
|
703 |
msgid "Add New Organizer"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: ../lib/the-events-calendar.class.php:
|
707 |
msgid "Edit Organizer"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: ../lib/the-events-calendar.class.php:
|
711 |
msgid "New Organizer"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: ../lib/the-events-calendar.class.php:
|
715 |
msgid "Search Organizers"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: ../lib/the-events-calendar.class.php:
|
719 |
msgid "No organizer found"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: ../lib/the-events-calendar.class.php:
|
723 |
msgid "No organizers found in Trash"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: ../lib/the-events-calendar.class.php:
|
|
|
727 |
msgid "Event Categories"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: ../lib/the-events-calendar.class.php:
|
731 |
msgid "Event Category"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: ../lib/the-events-calendar.class.php:
|
735 |
msgid "Search Event Categories"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: ../lib/the-events-calendar.class.php:
|
739 |
msgid "All Event Categories"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: ../lib/the-events-calendar.class.php:
|
743 |
msgid "Parent Event Category"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: ../lib/the-events-calendar.class.php:
|
747 |
msgid "Parent Event Category:"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: ../lib/the-events-calendar.class.php:
|
751 |
msgid "Edit Event Category"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: ../lib/the-events-calendar.class.php:
|
755 |
msgid "Update Event Category"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: ../lib/the-events-calendar.class.php:
|
759 |
msgid "Add New Event Category"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: ../lib/the-events-calendar.class.php:
|
763 |
msgid "New Event Category Name"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: ../lib/the-events-calendar.class.php:
|
767 |
#, php-format
|
768 |
msgid "Event updated. <a href=\"%s\">View event</a>"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: ../lib/the-events-calendar.class.php:
|
772 |
-
#: ../lib/the-events-calendar.class.php:
|
773 |
-
#: ../lib/the-events-calendar.class.php:
|
774 |
msgid "Custom field updated."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: ../lib/the-events-calendar.class.php:
|
778 |
-
#: ../lib/the-events-calendar.class.php:
|
779 |
-
#: ../lib/the-events-calendar.class.php:
|
780 |
msgid "Custom field deleted."
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../lib/the-events-calendar.class.php:
|
784 |
msgid "Event updated."
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../lib/the-events-calendar.class.php:
|
788 |
#, php-format
|
789 |
msgid "Event restored to revision from %s"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: ../lib/the-events-calendar.class.php:
|
793 |
#, php-format
|
794 |
msgid "Event published. <a href=\"%s\">View event</a>"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: ../lib/the-events-calendar.class.php:
|
798 |
msgid "Event saved."
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: ../lib/the-events-calendar.class.php:
|
802 |
#, php-format
|
803 |
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: ../lib/the-events-calendar.class.php:
|
807 |
#, php-format
|
808 |
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: ../lib/the-events-calendar.class.php:
|
812 |
-
#: ../lib/the-events-calendar.class.php:
|
813 |
-
#: ../lib/the-events-calendar.class.php:
|
814 |
msgid "M j, Y @ G:i"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: ../lib/the-events-calendar.class.php:
|
818 |
#, php-format
|
819 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../lib/the-events-calendar.class.php:
|
823 |
#, php-format
|
824 |
msgid "Venue updated. <a href=\"%s\">View venue</a>"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../lib/the-events-calendar.class.php:
|
828 |
msgid "Venue updated."
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../lib/the-events-calendar.class.php:
|
832 |
#, php-format
|
833 |
msgid "Venue restored to revision from %s"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: ../lib/the-events-calendar.class.php:
|
837 |
#, php-format
|
838 |
msgid "Venue published. <a href=\"%s\">View venue</a>"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: ../lib/the-events-calendar.class.php:
|
842 |
msgid "Venue saved."
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: ../lib/the-events-calendar.class.php:
|
846 |
#, php-format
|
847 |
msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: ../lib/the-events-calendar.class.php:
|
851 |
#, php-format
|
852 |
msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../lib/the-events-calendar.class.php:
|
856 |
#, php-format
|
857 |
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: ../lib/the-events-calendar.class.php:
|
861 |
#, php-format
|
862 |
msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: ../lib/the-events-calendar.class.php:
|
866 |
msgid "Organizer updated."
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: ../lib/the-events-calendar.class.php:
|
870 |
#, php-format
|
871 |
msgid "Organizer restored to revision from %s"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: ../lib/the-events-calendar.class.php:
|
875 |
#, php-format
|
876 |
msgid "Organizer published. <a href=\"%s\">View organizer</a>"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../lib/the-events-calendar.class.php:
|
880 |
msgid "Organizer saved."
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../lib/the-events-calendar.class.php:
|
884 |
#, php-format
|
885 |
msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: ../lib/the-events-calendar.class.php:
|
889 |
#, php-format
|
890 |
msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: ../lib/the-events-calendar.class.php:
|
894 |
#, php-format
|
895 |
msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../lib/the-events-calendar.class.php:
|
899 |
msgid "Next"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../lib/the-events-calendar.class.php:
|
903 |
msgid "Prev"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../lib/the-events-calendar.class.php:
|
907 |
msgid "Today"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../lib/the-events-calendar.class.php:
|
911 |
msgid "Done"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: ../lib/the-events-calendar.class.php:
|
915 |
msgid "Event Options"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: ../lib/the-events-calendar.class.php:
|
919 |
msgid "Venue Information"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../lib/the-events-calendar.class.php:
|
923 |
msgid "Organizer Information"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: ../lib/the-events-calendar.class.php:
|
927 |
msgid "Support"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../lib/the-events-calendar.class.php:
|
931 |
msgid "View All Add-Ons"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: ../lib/the-events-calendar.class.php:
|
935 |
msgid "News from Modern Tribe"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: ../lib/the-events-calendar.class.php:
|
939 |
msgid "Additional Functionality"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: ../lib/the-events-calendar.class.php:
|
943 |
#, php-format
|
944 |
msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
|
945 |
msgstr ""
|
946 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
947 |
#: ../lib/tribe-admin-events-list.class.php:40
|
948 |
#, php-format
|
949 |
msgid "View “%s”"
|
@@ -978,6 +1029,12 @@ msgstr ""
|
|
978 |
msgid "All %s"
|
979 |
msgstr ""
|
980 |
|
|
|
|
|
|
|
|
|
|
|
|
|
981 |
#: ../lib/tribe-debug-bar.class.php:18
|
982 |
msgid "Tribe"
|
983 |
msgstr ""
|
@@ -991,19 +1048,19 @@ msgstr ""
|
|
991 |
msgid "Invalid field type specified"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: ../lib/tribe-field.class.php:
|
995 |
msgid "No radio options specified"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: ../lib/tribe-field.class.php:
|
999 |
msgid "No checkbox options specified"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: ../lib/tribe-field.class.php:
|
1003 |
msgid "No select options specified"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: ../lib/tribe-settings-tab.class.php:
|
1007 |
msgid "There are no fields setup for this tab yet."
|
1008 |
msgstr ""
|
1009 |
|
@@ -1012,30 +1069,30 @@ msgid "You've requested a non-existent tab."
|
|
1012 |
msgstr ""
|
1013 |
|
1014 |
#: ../lib/tribe-settings.class.php:215
|
1015 |
-
msgid "Save Changes"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: ../lib/tribe-settings.class.php:
|
1019 |
msgid "You don't have permission to do that."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: ../lib/tribe-settings.class.php:
|
1023 |
msgid "The request was sent insecurely."
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: ../lib/tribe-settings.class.php:
|
1027 |
msgid "The request wasn't sent from this tab."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: ../lib/tribe-settings.class.php:
|
1031 |
msgid "Your form had the following errors:"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: ../lib/tribe-settings.class.php:
|
1035 |
msgid "None of your settings were saved. Please try again."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: ../lib/tribe-settings.class.php:
|
1039 |
msgid "Settings saved."
|
1040 |
msgstr ""
|
1041 |
|
@@ -1064,89 +1121,100 @@ msgstr ""
|
|
1064 |
msgid "Install has 1 or more legacy event!"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: ../lib/tribe-validate.class.php:
|
1068 |
-
#: ../lib/tribe-validate.class.php:
|
1069 |
msgid "Invalid or incomplete field passed"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: ../lib/tribe-validate.class.php:
|
1073 |
-
#: ../lib/tribe-validate.class.php:
|
1074 |
-
#: ../lib/tribe-validate.class.php:
|
1075 |
msgid "Field ID:"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: ../lib/tribe-validate.class.php:
|
1079 |
msgid "Non-existant field validation function passed"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: ../lib/tribe-validate.class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1083 |
#, php-format
|
1084 |
msgid "%s must be a positive number."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: ../lib/tribe-validate.class.php:
|
1088 |
#, php-format
|
1089 |
msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: ../lib/tribe-validate.class.php:
|
1093 |
#, php-format
|
1094 |
msgid "%s must be a valid absolute URL."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: ../lib/tribe-validate.class.php:
|
1098 |
-
#: ../lib/tribe-validate.class.php:
|
1099 |
-
#: ../lib/tribe-validate.class.php:
|
1100 |
#, php-format
|
1101 |
msgid "%s must have a value that's part of its options."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: ../lib/tribe-validate.class.php:
|
1105 |
#, php-format
|
1106 |
msgid "Comparison validation failed because no comparison value was provided, for field %s"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: ../lib/tribe-validate.class.php:
|
1110 |
#, php-format
|
1111 |
msgid "%s cannot be the same as %s."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: ../lib/tribe-validate.class.php:
|
1115 |
#, php-format
|
1116 |
msgid "%s cannot be a duplicate"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: ../lib/tribe-validate.class.php:
|
1120 |
#, php-format
|
1121 |
msgid "%s must be a number or percentage."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: ../lib/tribe-validate.class.php:
|
1125 |
#, php-format
|
1126 |
msgid "%s must be a number between 0 and 21."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: ../lib/tribe-validate.class.php:
|
1130 |
#, php-format
|
1131 |
-
msgid "%s must consist of letters, numbers, dashes, and spaces only."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: ../lib/tribe-validate.class.php:
|
1135 |
#, php-format
|
1136 |
-
msgid "%s must consist of letters, spaces, and dashes."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: ../lib/tribe-validate.class.php:
|
1140 |
#, php-format
|
1141 |
msgid "%s must consist of 5 numbers."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: ../lib/tribe-validate.class.php:
|
1145 |
#, php-format
|
1146 |
msgid "%s must be a phone number."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: ../lib/tribe-validate.class.php:
|
1150 |
msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
|
1151 |
msgstr ""
|
1152 |
|
@@ -2344,24 +2412,6 @@ msgstr ""
|
|
2344 |
msgid "Calendar of Events"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: ../public/template-tags/options.php:20
|
2348 |
-
msgid "The slug used for building the events URL."
|
2349 |
-
msgstr ""
|
2350 |
-
|
2351 |
-
#: ../public/template-tags/options.php:20
|
2352 |
-
#, php-format
|
2353 |
-
msgid "Your current Events URL is %s"
|
2354 |
-
msgstr ""
|
2355 |
-
|
2356 |
-
#: ../public/template-tags/options.php:31
|
2357 |
-
#, php-format
|
2358 |
-
msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
|
2359 |
-
msgstr ""
|
2360 |
-
|
2361 |
-
#: ../public/template-tags/options.php:43
|
2362 |
-
msgid "Here is the iCal feed URL for your events:"
|
2363 |
-
msgstr ""
|
2364 |
-
|
2365 |
#: ../vendor/wp-router/WP_Route.class.php:250
|
2366 |
msgid "You are not authorized to access this page"
|
2367 |
msgstr ""
|
@@ -2505,7 +2555,7 @@ msgstr ""
|
|
2505 |
msgid "+ Google Calendar"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: ../views/table-mini.php:
|
2509 |
msgid "View all »"
|
2510 |
msgstr ""
|
2511 |
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: The Events Calendar 2.0\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2012-06-05 19:31-0500\n"
|
9 |
+
"PO-Revision-Date: 2012-06-05 19:32-0500\n"
|
10 |
"Last-Translator: Paul Hughes <paul@paulalexanderhughes.com>\n"
|
11 |
"Language-Team: Modern Tribe, Inc.\n"
|
12 |
"MIME-Version: 1.0\n"
|
20 |
"X-Poedit-Country: UNITED STATES\n"
|
21 |
"X-Poedit-SearchPath-0: ..\n"
|
22 |
|
23 |
+
#: ../admin-views/app-shop.php:4
|
24 |
+
msgid "Tribe App Shop"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: ../admin-views/app-shop.php:56
|
28 |
+
msgid "Version"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: ../admin-views/app-shop.php:59
|
32 |
+
msgid "Last Update"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
#: ../admin-views/event-sidebar-options.php:11
|
36 |
msgid "Hide From Upcoming Events List"
|
37 |
msgstr ""
|
48 |
msgid "Audit Trail:"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: ../admin-views/events-meta-box.php:26
|
52 |
msgid "Event Time & Date"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ../admin-views/events-meta-box.php:29
|
56 |
msgid "You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: ../admin-views/events-meta-box.php:32
|
60 |
msgid "All day event?"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: ../admin-views/events-meta-box.php:36
|
64 |
msgid "Start Date / Time:"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: ../admin-views/events-meta-box.php:39
|
68 |
+
#: ../admin-views/events-meta-box.php:60
|
69 |
msgid "YYYY-MM-DD"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: ../admin-views/events-meta-box.php:41
|
73 |
+
#: ../admin-views/events-meta-box.php:62
|
74 |
msgid "@"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../admin-views/events-meta-box.php:57
|
78 |
msgid "End Date / Time:"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../admin-views/events-meta-box.php:79
|
82 |
msgid "Event Location Details"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../admin-views/events-meta-box.php:85
|
86 |
msgid "Show Google Maps Link:"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: ../admin-views/events-meta-box.php:92
|
90 |
msgid "Show Google Map:"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: ../admin-views/events-meta-box.php:101
|
94 |
msgid "Event Organizer Details"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: ../admin-views/events-meta-box.php:110
|
98 |
msgid "Event Cost"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../admin-views/events-meta-box.php:113
|
102 |
msgid "Cost:"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../admin-views/events-meta-box.php:118
|
106 |
msgid "Leave blank to hide the field. Enter a 0 for events that are free."
|
107 |
msgstr ""
|
108 |
|
111 |
msgstr ""
|
112 |
|
113 |
#: ../admin-views/organizer-meta-box.php:17
|
114 |
+
#: ../admin-views/venue-meta-box.php:77
|
115 |
msgid "Phone:"
|
116 |
msgstr ""
|
117 |
|
136 |
msgstr ""
|
137 |
|
138 |
#: ../admin-views/tribe-options-general.php:16
|
|
|
139 |
msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
|
140 |
msgstr ""
|
141 |
|
170 |
msgstr ""
|
171 |
|
172 |
#: ../admin-views/tribe-options-general.php:53
|
173 |
+
#: ../admin-views/tribe-options-general.php:59
|
174 |
msgid "Events URL slug"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../admin-views/tribe-options-general.php:54
|
178 |
+
msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\" "
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: ../admin-views/tribe-options-general.php:66
|
182 |
+
msgid "The slug used for building the events URL."
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: ../admin-views/tribe-options-general.php:66
|
186 |
+
#, php-format
|
187 |
+
msgid "Your current Events URL is %s"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: ../admin-views/tribe-options-general.php:71
|
191 |
+
msgid "Here is the iCal feed URL for your events:"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: ../admin-views/tribe-options-general.php:76
|
195 |
msgid "Single Event URL slug"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../admin-views/tribe-options-general.php:83
|
199 |
+
#, php-format
|
200 |
+
msgid "You <strong>cannot</strong> use the same slug as above. The above should ideally be plural, and this singular.<br />Your single Event URL is like: %s"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: ../admin-views/tribe-options-general.php:88
|
204 |
msgid "Number of events to show per page in the loop"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: ../admin-views/tribe-options-general.php:89
|
208 |
msgid "This is the number of events displayed per page when returning a list of events."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../admin-views/tribe-options-general.php:96
|
212 |
msgid "Show Comments"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: ../admin-views/tribe-options-general.php:97
|
216 |
msgid "Enables commenting on your single event view."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ../admin-views/tribe-options-general.php:103
|
220 |
msgid "Multiday Event Cutoff"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ../admin-views/tribe-options-general.php:104
|
224 |
msgid "For multi-day events, hide the last day from grid view if it ends on or before this time."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: ../admin-views/tribe-options-general.php:112
|
228 |
msgid "Enable Google Maps"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: ../admin-views/tribe-options-general.php:113
|
232 |
msgid "If you don't have this turned on, your event listings won't have the backend map preview or frontend embedded map."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: ../admin-views/tribe-options-general.php:120
|
236 |
msgid "Google Maps Embed Height"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../admin-views/tribe-options-general.php:123
|
240 |
msgid "Enter a number."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ../admin-views/tribe-options-general.php:129
|
244 |
msgid "Google Maps Embed Width"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: ../admin-views/tribe-options-general.php:131
|
248 |
msgid "Enter a number or %."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../admin-views/tribe-options-general.php:138
|
252 |
msgid "Google Maps Default Zoom Level"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../admin-views/tribe-options-general.php:139
|
256 |
msgid "0 = zoomed-out; 21 = zoomed-in."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../admin-views/tribe-options-general.php:147
|
260 |
msgid "Debug Mode"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../admin-views/tribe-options-general.php:148
|
264 |
#, php-format
|
265 |
msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: ../admin-views/tribe-options-general.php:148
|
269 |
msgid "Debug Bar Plugin"
|
270 |
msgstr ""
|
271 |
|
323 |
msgstr ""
|
324 |
|
325 |
#: ../admin-views/tribe-options-help.php:92
|
|
|
326 |
msgid "Help"
|
327 |
msgstr ""
|
328 |
|
420 |
msgstr ""
|
421 |
|
422 |
#: ../admin-views/tribe-options-help.php:156
|
|
|
423 |
msgid "The Events Calendar"
|
424 |
msgstr ""
|
425 |
|
533 |
msgid "Country:"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: ../admin-views/venue-meta-box.php:55
|
537 |
msgid "State or Province:"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: ../admin-views/venue-meta-box.php:58
|
541 |
msgid "Select a State:"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../admin-views/venue-meta-box.php:73
|
545 |
msgid "Postal Code:"
|
546 |
msgstr ""
|
547 |
|
561 |
msgid "If you wish to customize the widget display yourself, see the file views/events-list-load-widget-display.php inside the Events Premium plugin."
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: ../lib/the-events-calendar.class.php:284
|
565 |
msgid "category"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../lib/the-events-calendar.class.php:285
|
569 |
msgid "tag"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../lib/the-events-calendar.class.php:286
|
573 |
msgid "month"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../lib/the-events-calendar.class.php:287
|
577 |
msgid "upcoming"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../lib/the-events-calendar.class.php:288
|
581 |
msgid "past"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../lib/the-events-calendar.class.php:290
|
585 |
msgid "venue"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: ../lib/the-events-calendar.class.php:300
|
589 |
#, php-format
|
590 |
msgid "Initializing Tribe Events on %s"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: ../lib/the-events-calendar.class.php:380
|
594 |
#, php-format
|
595 |
msgid "Your version of %s requires version %s or higher of The Events Calendar (you are currently running %s). Visit %shelp%s for more information."
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: ../lib/the-events-calendar.class.php:418
|
599 |
msgid "General"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: ../lib/the-events-calendar.class.php:419
|
603 |
msgid "Template"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: ../lib/the-events-calendar.class.php:420
|
607 |
msgid "Licenses"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: ../lib/the-events-calendar.class.php:456
|
611 |
#, php-format
|
612 |
msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: ../lib/the-events-calendar.class.php:459
|
616 |
#, php-format
|
617 |
msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../lib/the-events-calendar.class.php:580
|
621 |
msgid "Upcoming Events"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../lib/the-events-calendar.class.php:582
|
625 |
msgid "Past Events"
|
626 |
msgstr ""
|
627 |
|
|
|
628 |
#: ../lib/the-events-calendar.class.php:586
|
629 |
+
#: ../lib/the-events-calendar.class.php:592
|
630 |
#, php-format
|
631 |
msgid "Events for %s"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: ../lib/the-events-calendar.class.php:588
|
635 |
msgid "Events this month"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: ../lib/the-events-calendar.class.php:598
|
639 |
#, php-format
|
640 |
msgid "Events at %s"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: ../lib/the-events-calendar.class.php:611
|
644 |
msgid "No description has been entered for this event."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: ../lib/the-events-calendar.class.php:855
|
648 |
+
#: ../lib/the-events-calendar.class.php:2552
|
649 |
+
#: ../lib/the-events-calendar.class.php:2612
|
650 |
msgid "Events"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: ../lib/the-events-calendar.class.php:856
|
654 |
msgid "Event"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: ../lib/the-events-calendar.class.php:857
|
658 |
+
#: ../lib/the-events-calendar.class.php:870
|
659 |
+
#: ../lib/the-events-calendar.class.php:883
|
660 |
msgid "Add New"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: ../lib/the-events-calendar.class.php:858
|
664 |
msgid "Add New Event"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: ../lib/the-events-calendar.class.php:859
|
668 |
msgid "Edit Event"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: ../lib/the-events-calendar.class.php:860
|
672 |
msgid "New Event"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: ../lib/the-events-calendar.class.php:861
|
676 |
msgid "View Event"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: ../lib/the-events-calendar.class.php:862
|
680 |
msgid "Search Events"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: ../lib/the-events-calendar.class.php:863
|
684 |
msgid "No events found"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: ../lib/the-events-calendar.class.php:864
|
688 |
msgid "No events found in Trash"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: ../lib/the-events-calendar.class.php:868
|
692 |
msgid "Venues"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: ../lib/the-events-calendar.class.php:869
|
696 |
msgid "Venue"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: ../lib/the-events-calendar.class.php:871
|
700 |
msgid "Add New Venue"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: ../lib/the-events-calendar.class.php:872
|
704 |
msgid "Edit Venue"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: ../lib/the-events-calendar.class.php:873
|
708 |
msgid "New Venue"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: ../lib/the-events-calendar.class.php:874
|
712 |
+
#: ../lib/the-events-calendar.class.php:887
|
713 |
msgid "View Venue"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: ../lib/the-events-calendar.class.php:875
|
717 |
msgid "Search Venues"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: ../lib/the-events-calendar.class.php:876
|
721 |
msgid "No venue found"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: ../lib/the-events-calendar.class.php:877
|
725 |
msgid "No venues found in Trash"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../lib/the-events-calendar.class.php:881
|
729 |
msgid "Organizers"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: ../lib/the-events-calendar.class.php:882
|
733 |
msgid "Organizer"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../lib/the-events-calendar.class.php:884
|
737 |
msgid "Add New Organizer"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: ../lib/the-events-calendar.class.php:885
|
741 |
msgid "Edit Organizer"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: ../lib/the-events-calendar.class.php:886
|
745 |
msgid "New Organizer"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: ../lib/the-events-calendar.class.php:888
|
749 |
msgid "Search Organizers"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../lib/the-events-calendar.class.php:889
|
753 |
msgid "No organizer found"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: ../lib/the-events-calendar.class.php:890
|
757 |
msgid "No organizers found in Trash"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: ../lib/the-events-calendar.class.php:894
|
761 |
+
#: ../lib/tribe-admin-events-list.class.php:172
|
762 |
msgid "Event Categories"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../lib/the-events-calendar.class.php:895
|
766 |
msgid "Event Category"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../lib/the-events-calendar.class.php:896
|
770 |
msgid "Search Event Categories"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../lib/the-events-calendar.class.php:897
|
774 |
msgid "All Event Categories"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../lib/the-events-calendar.class.php:898
|
778 |
msgid "Parent Event Category"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../lib/the-events-calendar.class.php:899
|
782 |
msgid "Parent Event Category:"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../lib/the-events-calendar.class.php:900
|
786 |
msgid "Edit Event Category"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../lib/the-events-calendar.class.php:901
|
790 |
msgid "Update Event Category"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: ../lib/the-events-calendar.class.php:902
|
794 |
msgid "Add New Event Category"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../lib/the-events-calendar.class.php:903
|
798 |
msgid "New Event Category Name"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: ../lib/the-events-calendar.class.php:913
|
802 |
#, php-format
|
803 |
msgid "Event updated. <a href=\"%s\">View event</a>"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: ../lib/the-events-calendar.class.php:914
|
807 |
+
#: ../lib/the-events-calendar.class.php:931
|
808 |
+
#: ../lib/the-events-calendar.class.php:948
|
809 |
msgid "Custom field updated."
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: ../lib/the-events-calendar.class.php:915
|
813 |
+
#: ../lib/the-events-calendar.class.php:932
|
814 |
+
#: ../lib/the-events-calendar.class.php:949
|
815 |
msgid "Custom field deleted."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: ../lib/the-events-calendar.class.php:916
|
819 |
msgid "Event updated."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: ../lib/the-events-calendar.class.php:918
|
823 |
#, php-format
|
824 |
msgid "Event restored to revision from %s"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: ../lib/the-events-calendar.class.php:919
|
828 |
#, php-format
|
829 |
msgid "Event published. <a href=\"%s\">View event</a>"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: ../lib/the-events-calendar.class.php:920
|
833 |
msgid "Event saved."
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../lib/the-events-calendar.class.php:921
|
837 |
#, php-format
|
838 |
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: ../lib/the-events-calendar.class.php:922
|
842 |
#, php-format
|
843 |
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../lib/the-events-calendar.class.php:924
|
847 |
+
#: ../lib/the-events-calendar.class.php:941
|
848 |
+
#: ../lib/the-events-calendar.class.php:958
|
849 |
msgid "M j, Y @ G:i"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: ../lib/the-events-calendar.class.php:925
|
853 |
#, php-format
|
854 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: ../lib/the-events-calendar.class.php:930
|
858 |
#, php-format
|
859 |
msgid "Venue updated. <a href=\"%s\">View venue</a>"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: ../lib/the-events-calendar.class.php:933
|
863 |
msgid "Venue updated."
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: ../lib/the-events-calendar.class.php:935
|
867 |
#, php-format
|
868 |
msgid "Venue restored to revision from %s"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: ../lib/the-events-calendar.class.php:936
|
872 |
#, php-format
|
873 |
msgid "Venue published. <a href=\"%s\">View venue</a>"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: ../lib/the-events-calendar.class.php:937
|
877 |
msgid "Venue saved."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: ../lib/the-events-calendar.class.php:938
|
881 |
#, php-format
|
882 |
msgid "Venue submitted. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: ../lib/the-events-calendar.class.php:939
|
886 |
#, php-format
|
887 |
msgid "Venue scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview venue</a>"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: ../lib/the-events-calendar.class.php:942
|
891 |
#, php-format
|
892 |
msgid "Venue draft updated. <a target=\"_blank\" href=\"%s\">Preview venue</a>"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: ../lib/the-events-calendar.class.php:947
|
896 |
#, php-format
|
897 |
msgid "Organizer updated. <a href=\"%s\">View organizer</a>"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: ../lib/the-events-calendar.class.php:950
|
901 |
msgid "Organizer updated."
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: ../lib/the-events-calendar.class.php:952
|
905 |
#, php-format
|
906 |
msgid "Organizer restored to revision from %s"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: ../lib/the-events-calendar.class.php:953
|
910 |
#, php-format
|
911 |
msgid "Organizer published. <a href=\"%s\">View organizer</a>"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: ../lib/the-events-calendar.class.php:954
|
915 |
msgid "Organizer saved."
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: ../lib/the-events-calendar.class.php:955
|
919 |
#, php-format
|
920 |
msgid "Organizer submitted. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: ../lib/the-events-calendar.class.php:956
|
924 |
#, php-format
|
925 |
msgid "Organizer scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview organizer</a>"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: ../lib/the-events-calendar.class.php:959
|
929 |
#, php-format
|
930 |
msgid "Organizer draft updated. <a target=\"_blank\" href=\"%s\">Preview organizer</a>"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: ../lib/the-events-calendar.class.php:1055
|
934 |
msgid "Next"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: ../lib/the-events-calendar.class.php:1056
|
938 |
msgid "Prev"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: ../lib/the-events-calendar.class.php:1057
|
942 |
msgid "Today"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: ../lib/the-events-calendar.class.php:1058
|
946 |
msgid "Done"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: ../lib/the-events-calendar.class.php:2334
|
950 |
msgid "Event Options"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: ../lib/the-events-calendar.class.php:2336
|
954 |
msgid "Venue Information"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: ../lib/the-events-calendar.class.php:2337
|
958 |
msgid "Organizer Information"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: ../lib/the-events-calendar.class.php:2450
|
962 |
msgid "Support"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: ../lib/the-events-calendar.class.php:2453
|
966 |
msgid "View All Add-Ons"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: ../lib/the-events-calendar.class.php:2460
|
970 |
msgid "News from Modern Tribe"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: ../lib/the-events-calendar.class.php:2505
|
974 |
msgid "Additional Functionality"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: ../lib/the-events-calendar.class.php:2510
|
978 |
#, php-format
|
979 |
msgid "Check out the <a href=\"%s\">available Add-Ons</a>."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: ../lib/the-events-calendar.class.php:2578
|
983 |
+
msgid "View Calendar"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: ../lib/the-events-calendar.class.php:2586
|
987 |
+
msgid "Add Event"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: ../lib/the-events-calendar.class.php:2595
|
991 |
+
msgid "Edit Events"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: ../lib/the-events-calendar.class.php:2604
|
995 |
+
msgid "Settings"
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
#: ../lib/tribe-admin-events-list.class.php:40
|
999 |
#, php-format
|
1000 |
msgid "View “%s”"
|
1029 |
msgid "All %s"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: ../lib/tribe-app-shop.class.php:54
|
1033 |
+
#: ../lib/tribe-app-shop.class.php:55
|
1034 |
+
#: ../lib/tribe-app-shop.class.php:73
|
1035 |
+
msgid "App Shop"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
#: ../lib/tribe-debug-bar.class.php:18
|
1039 |
msgid "Tribe"
|
1040 |
msgstr ""
|
1048 |
msgid "Invalid field type specified"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: ../lib/tribe-field.class.php:388
|
1052 |
msgid "No radio options specified"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: ../lib/tribe-field.class.php:425
|
1056 |
msgid "No checkbox options specified"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: ../lib/tribe-field.class.php:479
|
1060 |
msgid "No select options specified"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: ../lib/tribe-settings-tab.class.php:188
|
1064 |
msgid "There are no fields setup for this tab yet."
|
1065 |
msgstr ""
|
1066 |
|
1069 |
msgstr ""
|
1070 |
|
1071 |
#: ../lib/tribe-settings.class.php:215
|
1072 |
+
msgid " Save Changes"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: ../lib/tribe-settings.class.php:263
|
1076 |
msgid "You don't have permission to do that."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: ../lib/tribe-settings.class.php:269
|
1080 |
msgid "The request was sent insecurely."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: ../lib/tribe-settings.class.php:275
|
1084 |
msgid "The request wasn't sent from this tab."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: ../lib/tribe-settings.class.php:425
|
1088 |
msgid "Your form had the following errors:"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: ../lib/tribe-settings.class.php:434
|
1092 |
msgid "None of your settings were saved. Please try again."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: ../lib/tribe-settings.class.php:458
|
1096 |
msgid "Settings saved."
|
1097 |
msgstr ""
|
1098 |
|
1121 |
msgid "Install has 1 or more legacy event!"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: ../lib/tribe-validate.class.php:77
|
1125 |
+
#: ../lib/tribe-validate.class.php:115
|
1126 |
msgid "Invalid or incomplete field passed"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: ../lib/tribe-validate.class.php:78
|
1130 |
+
#: ../lib/tribe-validate.class.php:110
|
1131 |
+
#: ../lib/tribe-validate.class.php:116
|
1132 |
msgid "Field ID:"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: ../lib/tribe-validate.class.php:109
|
1136 |
msgid "Non-existant field validation function passed"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: ../lib/tribe-validate.class.php:135
|
1140 |
+
#: ../lib/tribe-validate.class.php:153
|
1141 |
+
#, php-format
|
1142 |
+
msgid "%s must contain numbers and letters only"
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: ../lib/tribe-validate.class.php:171
|
1146 |
+
#, php-format
|
1147 |
+
msgid "%s must contain numbers, letters and dots only"
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: ../lib/tribe-validate.class.php:187
|
1151 |
#, php-format
|
1152 |
msgid "%s must be a positive number."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: ../lib/tribe-validate.class.php:204
|
1156 |
#, php-format
|
1157 |
msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: ../lib/tribe-validate.class.php:221
|
1161 |
#, php-format
|
1162 |
msgid "%s must be a valid absolute URL."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: ../lib/tribe-validate.class.php:239
|
1166 |
+
#: ../lib/tribe-validate.class.php:258
|
1167 |
+
#: ../lib/tribe-validate.class.php:279
|
1168 |
#, php-format
|
1169 |
msgid "%s must have a value that's part of its options."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: ../lib/tribe-validate.class.php:295
|
1173 |
#, php-format
|
1174 |
msgid "Comparison validation failed because no comparison value was provided, for field %s"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: ../lib/tribe-validate.class.php:302
|
1178 |
#, php-format
|
1179 |
msgid "%s cannot be the same as %s."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../lib/tribe-validate.class.php:304
|
1183 |
#, php-format
|
1184 |
msgid "%s cannot be a duplicate"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: ../lib/tribe-validate.class.php:322
|
1188 |
#, php-format
|
1189 |
msgid "%s must be a number or percentage."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: ../lib/tribe-validate.class.php:386
|
1193 |
#, php-format
|
1194 |
msgid "%s must be a number between 0 and 21."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: ../lib/tribe-validate.class.php:404
|
1198 |
#, php-format
|
1199 |
+
msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../lib/tribe-validate.class.php:422
|
1203 |
#, php-format
|
1204 |
+
msgid "%s must consist of letters, spaces, apostrophes, and dashes."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: ../lib/tribe-validate.class.php:438
|
1208 |
#, php-format
|
1209 |
msgid "%s must consist of 5 numbers."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: ../lib/tribe-validate.class.php:454
|
1213 |
#, php-format
|
1214 |
msgid "%s must be a phone number."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: ../lib/tribe-validate.class.php:472
|
1218 |
msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
|
1219 |
msgstr ""
|
1220 |
|
2412 |
msgid "Calendar of Events"
|
2413 |
msgstr ""
|
2414 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2415 |
#: ../vendor/wp-router/WP_Route.class.php:250
|
2416 |
msgid "You are not authorized to access this page"
|
2417 |
msgstr ""
|
2555 |
msgid "+ Google Calendar"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: ../views/table-mini.php:117
|
2559 |
msgid "View all »"
|
2560 |
msgstr ""
|
2561 |
|
lib/the-events-calendar.class.php
CHANGED
@@ -16,7 +16,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
16 |
const VENUE_POST_TYPE = 'tribe_venue';
|
17 |
const ORGANIZER_POST_TYPE = 'tribe_organizer';
|
18 |
const PLUGIN_DOMAIN = 'tribe-events-calendar';
|
19 |
-
const VERSION = '2.0.
|
20 |
const FEED_URL = 'http://tri.be/category/products/feed/';
|
21 |
const INFO_API_URL = 'http://wpapi.org/api/plugin/the-events-calendar.php';
|
22 |
const WP_PLUGIN_URL = 'http://wordpress.org/extend/plugins/the-events-calendar/';
|
@@ -188,6 +188,11 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
188 |
require_once( 'tribe-the-events-calendar-import.class.php' );
|
189 |
require_once( 'tribe-debug-bar.class.php' );
|
190 |
|
|
|
|
|
|
|
|
|
|
|
191 |
}
|
192 |
|
193 |
protected function addFilters() {
|
@@ -250,9 +255,11 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
250 |
add_action( 'tribe_settings_content_tab_help', array( $this, 'doHelpTab' ) );
|
251 |
// add-on compatibility
|
252 |
add_action( 'admin_notices', array( $this, 'checkAddOnCompatibility' ) );
|
|
|
|
|
253 |
}
|
254 |
|
255 |
-
public static function ecpActive( $version = '2.0.
|
256 |
return class_exists( 'TribeEventsPro' ) && defined('TribeEventsPro::VERSION') && version_compare( TribeEventsPro::VERSION, $version, '>=');
|
257 |
}
|
258 |
|
@@ -370,7 +377,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
370 |
if ( !empty($bad_versions) ) {
|
371 |
$output .= '<div class="error">';
|
372 |
foreach ($bad_versions as $plugin => $version) {
|
373 |
-
$output .= '<p>'.sprintf( __('Your version of %s requires version %s or higher of The Events Calendar (you are currently running %s). Visit %shelp%s for more information.', 'tribe-events-calendar'), $plugin, $version, self::VERSION, '<a href="
|
374 |
}
|
375 |
$output .= '</div>';
|
376 |
}
|
@@ -411,7 +418,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
411 |
new TribeSettingsTab( 'general', __('General', 'tribe-events-calendar'), $generalTab );
|
412 |
new TribeSettingsTab( 'template', __('Template', 'tribe-events-calendar'), $templatesTab );
|
413 |
new TribeSettingsTab( 'licenses', __('Licenses', 'tribe-events-calendar'), array('priority' => '40',
|
414 |
-
'fields' => apply_filters('tribe_license_fields',
|
415 |
new TribeSettingsTab( 'help', __('Help', 'tribe-events-calendar'), array('priority' => 60, 'show_save' => false) );
|
416 |
|
417 |
}
|
@@ -817,7 +824,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
817 |
register_taxonomy( self::TAXONOMY, self::POSTTYPE, array(
|
818 |
'hierarchical' => true,
|
819 |
'update_count_callback' => '',
|
820 |
-
'rewrite' => array('slug'=> $this->taxRewriteSlug),
|
821 |
'public' => true,
|
822 |
'show_ui' => true,
|
823 |
'labels' => $this->taxonomyLabels,
|
@@ -1485,6 +1492,11 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1485 |
if ( $secondary )
|
1486 |
$month = add_query_arg( array( 'eventDate' => $secondary ), $month );
|
1487 |
return $month;
|
|
|
|
|
|
|
|
|
|
|
1488 |
case 'upcoming':
|
1489 |
return add_query_arg( array( 'eventDisplay' => 'upcoming'), $eventUrl );
|
1490 |
case 'past':
|
@@ -1499,8 +1511,8 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1499 |
return home_url() . '/?ical';
|
1500 |
case 'single':
|
1501 |
global $post;
|
1502 |
-
$
|
1503 |
-
$link = trailingslashit(get_permalink($
|
1504 |
return $link;
|
1505 |
case 'all':
|
1506 |
remove_filter( 'post_type_link', array($this, 'addDateToRecurringEvents') );
|
@@ -1691,7 +1703,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1691 |
if ( !wp_verify_nonce( $_POST['ecp_nonce'], TribeEvents::POSTTYPE ) )
|
1692 |
return;
|
1693 |
|
1694 |
-
if ( !current_user_can( '
|
1695 |
return;
|
1696 |
|
1697 |
$_POST['Organizer'] = stripslashes_deep($_POST['organizer']);
|
@@ -1733,12 +1745,11 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1733 |
} else {
|
1734 |
return;
|
1735 |
}
|
1736 |
-
|
1737 |
//only set origin once
|
1738 |
$origin = get_post_meta($postId , $post_type . 'Origin', true);
|
1739 |
if( !$origin )
|
1740 |
-
|
1741 |
-
|
1742 |
}
|
1743 |
}
|
1744 |
|
@@ -1775,7 +1786,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1775 |
if ( !isset( $post_audit_trail ) || !$post_audit_trail || !is_array($post_audit_trail) ) {
|
1776 |
$post_audit_trail = array();
|
1777 |
}
|
1778 |
-
$post_audit_trail[] = array( apply_filters( 'post-audit-trail', 'events-calendar' ), time() );
|
1779 |
update_post_meta( $postId, $post_type . 'AuditTrail', $post_audit_trail );
|
1780 |
}
|
1781 |
}
|
@@ -1872,7 +1883,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1872 |
return;
|
1873 |
}
|
1874 |
|
1875 |
-
if ( !current_user_can( '
|
1876 |
return;
|
1877 |
|
1878 |
//There is a possibility to get stuck in an infinite loop.
|
@@ -1913,7 +1924,7 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
1913 |
return;
|
1914 |
}
|
1915 |
|
1916 |
-
if ( !current_user_can( '
|
1917 |
return;
|
1918 |
|
1919 |
//There is a possibility to get stuck in an infinite loop.
|
@@ -2526,6 +2537,93 @@ if ( !class_exists( 'TribeEvents' ) ) {
|
|
2526 |
}
|
2527 |
return $termlink;
|
2528 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2529 |
|
2530 |
} // end TribeEvents class
|
2531 |
|
16 |
const VENUE_POST_TYPE = 'tribe_venue';
|
17 |
const ORGANIZER_POST_TYPE = 'tribe_organizer';
|
18 |
const PLUGIN_DOMAIN = 'tribe-events-calendar';
|
19 |
+
const VERSION = '2.0.7';
|
20 |
const FEED_URL = 'http://tri.be/category/products/feed/';
|
21 |
const INFO_API_URL = 'http://wpapi.org/api/plugin/the-events-calendar.php';
|
22 |
const WP_PLUGIN_URL = 'http://wordpress.org/extend/plugins/the-events-calendar/';
|
188 |
require_once( 'tribe-the-events-calendar-import.class.php' );
|
189 |
require_once( 'tribe-debug-bar.class.php' );
|
190 |
|
191 |
+
// App Shop
|
192 |
+
if (!defined("TRIBE_DISABLE_SHOP") || TRIBE_DISABLE_SHOP !== true ){
|
193 |
+
require_once( 'tribe-app-shop.class.php' );
|
194 |
+
}
|
195 |
+
|
196 |
}
|
197 |
|
198 |
protected function addFilters() {
|
255 |
add_action( 'tribe_settings_content_tab_help', array( $this, 'doHelpTab' ) );
|
256 |
// add-on compatibility
|
257 |
add_action( 'admin_notices', array( $this, 'checkAddOnCompatibility' ) );
|
258 |
+
|
259 |
+
add_action( 'wp_before_admin_bar_render', array( $this, 'addToolbarItems' ), 10 );
|
260 |
}
|
261 |
|
262 |
+
public static function ecpActive( $version = '2.0.7' ) {
|
263 |
return class_exists( 'TribeEventsPro' ) && defined('TribeEventsPro::VERSION') && version_compare( TribeEventsPro::VERSION, $version, '>=');
|
264 |
}
|
265 |
|
377 |
if ( !empty($bad_versions) ) {
|
378 |
$output .= '<div class="error">';
|
379 |
foreach ($bad_versions as $plugin => $version) {
|
380 |
+
$output .= '<p>'.sprintf( __('Your version of %s requires version %s or higher of The Events Calendar (you are currently running %s). Visit %shelp%s for more information.', 'tribe-events-calendar'), $plugin, $version, self::VERSION, '<a href="' . add_query_arg( array( 'page' => 'tribe-events-calendar', 'tab' => 'help' ), admin_url( 'options-general.php' ) ) . '">', '</a>' ).'</p>';
|
381 |
}
|
382 |
$output .= '</div>';
|
383 |
}
|
418 |
new TribeSettingsTab( 'general', __('General', 'tribe-events-calendar'), $generalTab );
|
419 |
new TribeSettingsTab( 'template', __('Template', 'tribe-events-calendar'), $templatesTab );
|
420 |
new TribeSettingsTab( 'licenses', __('Licenses', 'tribe-events-calendar'), array('priority' => '40',
|
421 |
+
'fields' => apply_filters('tribe_license_fields', null) ) );
|
422 |
new TribeSettingsTab( 'help', __('Help', 'tribe-events-calendar'), array('priority' => 60, 'show_save' => false) );
|
423 |
|
424 |
}
|
824 |
register_taxonomy( self::TAXONOMY, self::POSTTYPE, array(
|
825 |
'hierarchical' => true,
|
826 |
'update_count_callback' => '',
|
827 |
+
'rewrite' => array( 'slug'=> $this->taxRewriteSlug, 'with_front' => false ),
|
828 |
'public' => true,
|
829 |
'show_ui' => true,
|
830 |
'labels' => $this->taxonomyLabels,
|
1492 |
if ( $secondary )
|
1493 |
$month = add_query_arg( array( 'eventDate' => $secondary ), $month );
|
1494 |
return $month;
|
1495 |
+
case 'day':
|
1496 |
+
$month = add_query_arg( array( 'eventDisplay' => 'day'), $eventUrl );
|
1497 |
+
if ( $secondary )
|
1498 |
+
$month = add_query_arg( array( 'eventDate' => $secondary ), $month );
|
1499 |
+
return $month;
|
1500 |
case 'upcoming':
|
1501 |
return add_query_arg( array( 'eventDisplay' => 'upcoming'), $eventUrl );
|
1502 |
case 'past':
|
1511 |
return home_url() . '/?ical';
|
1512 |
case 'single':
|
1513 |
global $post;
|
1514 |
+
$p = $secondary ? $secondary : $post;
|
1515 |
+
$link = trailingslashit(get_permalink($p));
|
1516 |
return $link;
|
1517 |
case 'all':
|
1518 |
remove_filter( 'post_type_link', array($this, 'addDateToRecurringEvents') );
|
1703 |
if ( !wp_verify_nonce( $_POST['ecp_nonce'], TribeEvents::POSTTYPE ) )
|
1704 |
return;
|
1705 |
|
1706 |
+
if ( !current_user_can( 'edit_tribe_events' ) )
|
1707 |
return;
|
1708 |
|
1709 |
$_POST['Organizer'] = stripslashes_deep($_POST['organizer']);
|
1745 |
} else {
|
1746 |
return;
|
1747 |
}
|
1748 |
+
|
1749 |
//only set origin once
|
1750 |
$origin = get_post_meta($postId , $post_type . 'Origin', true);
|
1751 |
if( !$origin )
|
1752 |
+
add_post_meta( $postId, $post_type . 'Origin', apply_filters( 'tribe-post-origin', 'events-calendar', $postId, $post ) );
|
|
|
1753 |
}
|
1754 |
}
|
1755 |
|
1786 |
if ( !isset( $post_audit_trail ) || !$post_audit_trail || !is_array($post_audit_trail) ) {
|
1787 |
$post_audit_trail = array();
|
1788 |
}
|
1789 |
+
$post_audit_trail[] = array( apply_filters( 'tribe-post-audit-trail', 'events-calendar' ), time() );
|
1790 |
update_post_meta( $postId, $post_type . 'AuditTrail', $post_audit_trail );
|
1791 |
}
|
1792 |
}
|
1883 |
return;
|
1884 |
}
|
1885 |
|
1886 |
+
if ( !current_user_can( 'edit_tribe_venues' ) )
|
1887 |
return;
|
1888 |
|
1889 |
//There is a possibility to get stuck in an infinite loop.
|
1924 |
return;
|
1925 |
}
|
1926 |
|
1927 |
+
if ( !current_user_can( 'edit_tribe_organizers' ) )
|
1928 |
return;
|
1929 |
|
1930 |
//There is a possibility to get stuck in an infinite loop.
|
2537 |
}
|
2538 |
return $termlink;
|
2539 |
}
|
2540 |
+
|
2541 |
+
/**
|
2542 |
+
* Add the buttons/dropdown to the admin toolbar
|
2543 |
+
*
|
2544 |
+
* @since 2.0.7
|
2545 |
+
* @return null
|
2546 |
+
*/
|
2547 |
+
public function addToolbarItems() {
|
2548 |
+
global $wp_admin_bar;
|
2549 |
+
|
2550 |
+
$wp_admin_bar->add_menu( array(
|
2551 |
+
'id' => 'tribe-events',
|
2552 |
+
'title' => __( 'Events', 'tribe-events-calendar' ),
|
2553 |
+
'href' => $this->getLink( 'home' )
|
2554 |
+
) );
|
2555 |
+
|
2556 |
+
$wp_admin_bar->add_group( array(
|
2557 |
+
'id' => 'tribe-events-group',
|
2558 |
+
'parent' => 'tribe-events'
|
2559 |
+
) );
|
2560 |
+
|
2561 |
+
$wp_admin_bar->add_group( array(
|
2562 |
+
'id' => 'tribe-events-add-ons-group',
|
2563 |
+
'parent' => 'tribe-events'
|
2564 |
+
) );
|
2565 |
+
|
2566 |
+
$wp_admin_bar->add_group( array(
|
2567 |
+
'id' => 'tribe-events-settings-group',
|
2568 |
+
'parent' => 'tribe-events'
|
2569 |
+
) );
|
2570 |
+
|
2571 |
+
$wp_admin_bar->add_group( array(
|
2572 |
+
'id' => 'tribe-events-import-group',
|
2573 |
+
'parent' => 'tribe-events-add-ons-group'
|
2574 |
+
) );
|
2575 |
+
|
2576 |
+
$wp_admin_bar->add_menu( array(
|
2577 |
+
'id' => 'tribe-events-view-calendar',
|
2578 |
+
'title' => __( 'View Calendar', 'tribe-events-calendar' ),
|
2579 |
+
'href' => $this->getLink( 'home' ),
|
2580 |
+
'parent' => 'tribe-events-group'
|
2581 |
+
) );
|
2582 |
+
|
2583 |
+
if( current_user_can( 'edit_tribe_events' ) ) {
|
2584 |
+
$wp_admin_bar->add_menu( array(
|
2585 |
+
'id' => 'tribe-events-add-event',
|
2586 |
+
'title' => __( 'Add Event', 'tribe-events-calendar' ),
|
2587 |
+
'href' => trailingslashit( get_admin_url() ) . 'post-new.php?post_type=' . self::POSTTYPE,
|
2588 |
+
'parent' => 'tribe-events-group'
|
2589 |
+
) );
|
2590 |
+
}
|
2591 |
+
|
2592 |
+
if( current_user_can( 'edit_tribe_events' ) ) {
|
2593 |
+
$wp_admin_bar->add_menu( array(
|
2594 |
+
'id' => 'tribe-events-edit-events',
|
2595 |
+
'title' => __( 'Edit Events', 'tribe-events-calendar' ),
|
2596 |
+
'href' => trailingslashit( get_admin_url() ) . 'edit.php?post_type=' . self::POSTTYPE,
|
2597 |
+
'parent' => 'tribe-events-group'
|
2598 |
+
) );
|
2599 |
+
}
|
2600 |
+
|
2601 |
+
if ( current_user_can( 'manage_options' ) ) {
|
2602 |
+
$wp_admin_bar->add_menu( array(
|
2603 |
+
'id' => 'tribe-events-settings',
|
2604 |
+
'title' => __( 'Settings', 'tribe-events-calendar' ),
|
2605 |
+
'parent' => 'tribe-events-settings-group'
|
2606 |
+
) );
|
2607 |
+
}
|
2608 |
+
|
2609 |
+
if ( current_user_can( 'manage_options' ) ) {
|
2610 |
+
$wp_admin_bar->add_menu( array(
|
2611 |
+
'id' => 'tribe-events-settings-sub',
|
2612 |
+
'title' => __( 'Events', 'tribe-events-calendar' ),
|
2613 |
+
'href' => trailingslashit( get_admin_url() ) . 'options-general.php?page=tribe-events-calendar',
|
2614 |
+
'parent' => 'tribe-events-settings'
|
2615 |
+
) );
|
2616 |
+
}
|
2617 |
+
|
2618 |
+
if ( current_user_can( 'manage_options' ) ) {
|
2619 |
+
$wp_admin_bar->add_menu( array(
|
2620 |
+
'id' => 'tribe-events-help',
|
2621 |
+
'title' => __( 'Help', 'tribe-events-calendar' ),
|
2622 |
+
'href' => trailingslashit( get_admin_url() ) . 'options-general.php?page=tribe-events-calendar&tab=help',
|
2623 |
+
'parent' => 'tribe-events-settings-group'
|
2624 |
+
) );
|
2625 |
+
}
|
2626 |
+
}
|
2627 |
|
2628 |
} // end TribeEvents class
|
2629 |
|
lib/tribe-admin-events-list.class.php
CHANGED
@@ -166,7 +166,7 @@ if (!class_exists('TribeEventsAdminList')) {
|
|
166 |
public static function column_headers( $columns ) {
|
167 |
global $tribe_ecp;
|
168 |
|
169 |
-
foreach ( $columns as $key => $value ) {
|
170 |
$mycolumns[$key] = $value;
|
171 |
if ( $key =='author' )
|
172 |
$mycolumns['events-cats'] = __( 'Event Categories', 'tribe-events-calendar' );
|
166 |
public static function column_headers( $columns ) {
|
167 |
global $tribe_ecp;
|
168 |
|
169 |
+
foreach ( (array) $columns as $key => $value ) {
|
170 |
$mycolumns[$key] = $value;
|
171 |
if ( $key =='author' )
|
172 |
$mycolumns['events-cats'] = __( 'Event Categories', 'tribe-events-calendar' );
|
lib/tribe-app-shop.class.php
ADDED
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// don't load directly
|
4 |
+
if ( !defined( 'ABSPATH' ) ) die( '-1' );
|
5 |
+
|
6 |
+
if ( !class_exists( 'TribeAppShop' ) ) {
|
7 |
+
|
8 |
+
/**
|
9 |
+
*
|
10 |
+
*/
|
11 |
+
class TribeAppShop {
|
12 |
+
|
13 |
+
/**
|
14 |
+
*
|
15 |
+
*/
|
16 |
+
const API_VERSION = "1.0";
|
17 |
+
/**
|
18 |
+
*
|
19 |
+
*/
|
20 |
+
const API_ENDPOINT = "http://tri.be/api/app-shop/";
|
21 |
+
|
22 |
+
const CACHE_KEY_BASE = "tribe-app-shop";
|
23 |
+
const CACHE_EXPIRATION = 300; //5 min
|
24 |
+
|
25 |
+
const MENU_SLUG = "tribe-app-shop";
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Singleton instance
|
29 |
+
*
|
30 |
+
* @var null or TribeAppShop
|
31 |
+
*/
|
32 |
+
private static $instance = NULL;
|
33 |
+
/**
|
34 |
+
* The slug for the new admin page
|
35 |
+
*
|
36 |
+
* @var string
|
37 |
+
*/
|
38 |
+
private $admin_page = NULL;
|
39 |
+
|
40 |
+
|
41 |
+
/**
|
42 |
+
* Class constructor
|
43 |
+
*/
|
44 |
+
public function __construct() {
|
45 |
+
add_action( 'admin_menu', array( $this, 'add_menu_page' ), 100 );
|
46 |
+
add_action( 'wp_before_admin_bar_render', array( $this, 'add_toolbar_item' ), 20 );
|
47 |
+
|
48 |
+
}
|
49 |
+
|
50 |
+
/**
|
51 |
+
* Adds the page to the admin menu
|
52 |
+
*/
|
53 |
+
public function add_menu_page() {
|
54 |
+
$page_title = __( 'App Shop', 'tribe-events-calendar' );
|
55 |
+
$menu_title = __( 'App Shop', 'tribe-events-calendar' );
|
56 |
+
$capability = "edit_posts";
|
57 |
+
|
58 |
+
|
59 |
+
$where = 'edit.php?post_type=' . TribeEvents::POSTTYPE;
|
60 |
+
|
61 |
+
$this->admin_page = add_submenu_page( $where, $page_title, $menu_title, $capability, self::MENU_SLUG, array( $this, 'do_menu_page' ) );
|
62 |
+
|
63 |
+
add_action( 'admin_print_styles-' . $this->admin_page, array( $this, 'enqueue' ) );
|
64 |
+
|
65 |
+
}
|
66 |
+
|
67 |
+
public function add_toolbar_item() {
|
68 |
+
global $wp_admin_bar;
|
69 |
+
|
70 |
+
$where = 'edit.php?post_type=' . TribeEvents::POSTTYPE;
|
71 |
+
|
72 |
+
$wp_admin_bar->add_menu( array( 'id' => 'tribe-events-app-shop',
|
73 |
+
'title' => __( 'App Shop', 'tribe-events-calendar' ),
|
74 |
+
'href' => admin_url( untrailingslashit( $where ) . "&page=" . self::MENU_SLUG ),
|
75 |
+
'parent' => 'tribe-events-settings-group' ) );
|
76 |
+
|
77 |
+
|
78 |
+
}
|
79 |
+
|
80 |
+
public function enqueue() {
|
81 |
+
wp_enqueue_style( 'app-shop', TribeEvents::instance()->pluginUrl . 'resources/app-shop.css' );
|
82 |
+
wp_enqueue_script( 'app-shop', TribeEvents::instance()->pluginUrl . 'resources/app-shop.js' );
|
83 |
+
|
84 |
+
}
|
85 |
+
|
86 |
+
/**
|
87 |
+
*
|
88 |
+
*/
|
89 |
+
public function do_menu_page() {
|
90 |
+
$remote = $this->get_all_products();
|
91 |
+
if ( $remote ) {
|
92 |
+
$products = NULL;
|
93 |
+
if ( property_exists( $remote, 'data' ) ) {
|
94 |
+
$products = $remote->data;
|
95 |
+
}
|
96 |
+
$banner = NULL;
|
97 |
+
if ( property_exists( $remote, 'banner' ) ) {
|
98 |
+
$banner = $remote->banner;
|
99 |
+
}
|
100 |
+
|
101 |
+
$categories = array_unique( wp_list_pluck( $products, 'category' ) );
|
102 |
+
|
103 |
+
include_once( TribeEvents::instance()->pluginPath . 'admin-views/app-shop.php' );
|
104 |
+
}
|
105 |
+
}
|
106 |
+
|
107 |
+
|
108 |
+
private function get_all_products() {
|
109 |
+
|
110 |
+
$cache_key = self::CACHE_KEY_BASE . '-products';
|
111 |
+
$products = get_transient( $cache_key );
|
112 |
+
|
113 |
+
if ( !$products ) {
|
114 |
+
$products = $this->remote_get( 'get-products' );
|
115 |
+
if ( $products && !$products->error ) {
|
116 |
+
set_transient( $cache_key, $products, self::CACHE_EXPIRATION );
|
117 |
+
}
|
118 |
+
}
|
119 |
+
|
120 |
+
if ( is_string( $products ) ) {
|
121 |
+
$products = json_decode( $products );
|
122 |
+
}
|
123 |
+
return $products;
|
124 |
+
|
125 |
+
}
|
126 |
+
|
127 |
+
/**
|
128 |
+
* @param $action
|
129 |
+
* @param array|null $args
|
130 |
+
* @return array|WP_Error
|
131 |
+
*/
|
132 |
+
private function remote_get( $action, $args = NULL ) {
|
133 |
+
|
134 |
+
$url = trailingslashit( self::API_ENDPOINT . self::API_VERSION ) . $action;
|
135 |
+
|
136 |
+
$ret = wp_remote_get( $url );
|
137 |
+
|
138 |
+
if ( $ret && isset( $ret["body"] ) ) {
|
139 |
+
return json_decode( $ret["body"] );
|
140 |
+
}
|
141 |
+
|
142 |
+
return NULL;
|
143 |
+
|
144 |
+
}
|
145 |
+
|
146 |
+
/**
|
147 |
+
* Static Singleton Factory Method
|
148 |
+
*
|
149 |
+
* @since 2.0.5
|
150 |
+
* @author jkudish
|
151 |
+
* @return TribeAppShop
|
152 |
+
*/
|
153 |
+
public static function instance() {
|
154 |
+
if ( !isset( self::$instance ) ) {
|
155 |
+
$className = __CLASS__;
|
156 |
+
self::$instance = new $className;
|
157 |
+
}
|
158 |
+
return self::$instance;
|
159 |
+
}
|
160 |
+
|
161 |
+
}
|
162 |
+
|
163 |
+
TribeAppShop::instance();
|
164 |
+
}
|
lib/tribe-date-utils.class.php
CHANGED
@@ -11,39 +11,54 @@ if(!class_exists('TribeDateUtils')) {
|
|
11 |
// default formats, they are overridden by WP options or by arguments to date methods
|
12 |
const DATEONLYFORMAT = 'F j, Y';
|
13 |
const TIMEFORMAT = 'g:i A';
|
|
|
|
|
|
|
14 |
const DBDATEFORMAT = 'Y-m-d';
|
15 |
const DBDATETIMEFORMAT = 'Y-m-d H:i:s';
|
16 |
const DBTIMEFORMAT = 'H:i:s';
|
17 |
-
const DBYEARMONTHTIMEFORMAT = 'Y-m';
|
18 |
-
|
19 |
public static function dateOnly( $date, $isTimestamp = false ) {
|
20 |
$date = $isTimestamp ? $date : strtotime($date);
|
21 |
return date(TribeDateUtils::DBDATEFORMAT, $date );
|
22 |
-
}
|
23 |
-
|
24 |
public static function timeOnly( $date ) {
|
25 |
return date(TribeDateUtils::DBTIMEFORMAT, strtotime($date) );
|
26 |
}
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
public static function dateAndTime( $date, $isTimestamp = false ) {
|
29 |
$date = $isTimestamp ? $date : strtotime($date);
|
30 |
return date(TribeDateUtils::DBDATETIMEFORMAT, $date );
|
31 |
-
}
|
32 |
-
|
33 |
public static function endOfDay( $date, $isTimestamp = false ) {
|
34 |
$date = $isTimestamp ? $date : strtotime($date);
|
35 |
$date = date(TribeDateUtils::DBDATEFORMAT, $date );
|
36 |
$date = strtotime($date . ' 23:59:59');
|
37 |
-
return date(TribeDateUtils::DBDATETIMEFORMAT, $date );
|
38 |
}
|
39 |
-
|
40 |
public static function beginningOfDay( $date, $isTimestamp = false ) {
|
41 |
$date = $isTimestamp ? $date : strtotime($date);
|
42 |
$date = date(TribeDateUtils::DBDATEFORMAT, $date );
|
43 |
$date = strtotime($date . ' 00:00:00');
|
44 |
-
return date(TribeDateUtils::DBDATETIMEFORMAT, $date );
|
45 |
-
}
|
46 |
-
|
47 |
public static function addTimeToDate( $date, $time ) {
|
48 |
$date = self::dateOnly($date);
|
49 |
return date(TribeDateUtils::DBDATETIMEFORMAT, strtotime($date . $time) );
|
@@ -59,47 +74,47 @@ if(!class_exists('TribeDateUtils')) {
|
|
59 |
$nextmonth = mktime(0, 0, 0, $curmonth+1, 1, $curYear);
|
60 |
$lastDay = strtotime(date(DateSeriesRules::DATE_FORMAT, $nextmonth) . " - 1 day");
|
61 |
return date('j', $lastDay);
|
62 |
-
}
|
63 |
-
|
64 |
// returns true if the timestamp is a weekday
|
65 |
public static function isWeekday($curdate) {
|
66 |
return in_array(date('N', $curdate), array(1,2,3,4,5));
|
67 |
}
|
68 |
-
|
69 |
// returns true if the timestamp is a weekend
|
70 |
public static function isWeekend($curdate) {
|
71 |
return in_array(date('N', $curdate), array(6,7));
|
72 |
-
}
|
73 |
-
|
74 |
// gets the last day of the week in a month (ie the last Tuesday). Passing in -1 gives you the last day in the month
|
75 |
public static function getLastDayOfWeekInMonth($curdate, $day_of_week) {
|
76 |
$nextdate = mktime (date("H", $curdate), date("i", $curdate), date("s", $curdate), date('n', $curdate), TribeDateUtils::getLastDayOfMonth($curdate), date('Y', $curdate));;
|
77 |
-
|
78 |
while(date('N', $nextdate) != $day_of_week && $day_of_week != -1) {
|
79 |
$nextdate = strtotime(date(DateSeriesRules::DATE_FORMAT, $nextdate) . " - 1 day");
|
80 |
}
|
81 |
-
|
82 |
return $nextdate;
|
83 |
}
|
84 |
-
|
85 |
-
|
86 |
// gets the first day of the week in a month (ie the first Tuesday).
|
87 |
public static function getFirstDayOfWeekInMonth($curdate, $day_of_week) {
|
88 |
$nextdate = mktime (0, 0, 0, date('n', $curdate), 1, date('Y', $curdate));
|
89 |
-
|
90 |
while(!($day_of_week > 0 && date('N', $nextdate) == $day_of_week) &&
|
91 |
!($day_of_week == -1 && TribeDateUtils::isWeekday($nextdate)) &&
|
92 |
!($day_of_week == -2 && TribeDateUtils::isWeekend($nextdate))) {
|
93 |
$nextdate = strtotime(date(DateSeriesRules::DATE_FORMAT, $nextdate) . " + 1 day");
|
94 |
}
|
95 |
-
|
96 |
return $nextdate;
|
97 |
-
}
|
98 |
-
|
99 |
// from http://php.net/manual/en/function.date.php
|
100 |
public static function numberToOrdinal($number) {
|
101 |
-
return $number.(((strlen($number)>1)&&(substr($number,-2,1)=='1'))?
|
102 |
-
'th' : date("S",mktime(0,0,0,0,substr($number,-1),0)));
|
103 |
}
|
104 |
}
|
105 |
}
|
11 |
// default formats, they are overridden by WP options or by arguments to date methods
|
12 |
const DATEONLYFORMAT = 'F j, Y';
|
13 |
const TIMEFORMAT = 'g:i A';
|
14 |
+
const HOURFORMAT = 'g';
|
15 |
+
const MINUTEFORMAT = 'i';
|
16 |
+
const MERIDIANFORMAT = 'A';
|
17 |
const DBDATEFORMAT = 'Y-m-d';
|
18 |
const DBDATETIMEFORMAT = 'Y-m-d H:i:s';
|
19 |
const DBTIMEFORMAT = 'H:i:s';
|
20 |
+
const DBYEARMONTHTIMEFORMAT = 'Y-m';
|
21 |
+
|
22 |
public static function dateOnly( $date, $isTimestamp = false ) {
|
23 |
$date = $isTimestamp ? $date : strtotime($date);
|
24 |
return date(TribeDateUtils::DBDATEFORMAT, $date );
|
25 |
+
}
|
26 |
+
|
27 |
public static function timeOnly( $date ) {
|
28 |
return date(TribeDateUtils::DBTIMEFORMAT, strtotime($date) );
|
29 |
}
|
30 |
+
|
31 |
+
public static function hourOnly( $date ) {
|
32 |
+
return date(TribeDateUtils::HOURFORMAT, strtotime($date) );
|
33 |
+
}
|
34 |
+
|
35 |
+
public static function minutesOnly( $date ) {
|
36 |
+
return date(TribeDateUtils::MINUTEFORMAT, strtotime($date) );
|
37 |
+
}
|
38 |
+
|
39 |
+
public static function meridianOnly( $date ) {
|
40 |
+
return date(TribeDateUtils::MERIDIANFORMAT, strtotime($date) );
|
41 |
+
}
|
42 |
+
|
43 |
public static function dateAndTime( $date, $isTimestamp = false ) {
|
44 |
$date = $isTimestamp ? $date : strtotime($date);
|
45 |
return date(TribeDateUtils::DBDATETIMEFORMAT, $date );
|
46 |
+
}
|
47 |
+
|
48 |
public static function endOfDay( $date, $isTimestamp = false ) {
|
49 |
$date = $isTimestamp ? $date : strtotime($date);
|
50 |
$date = date(TribeDateUtils::DBDATEFORMAT, $date );
|
51 |
$date = strtotime($date . ' 23:59:59');
|
52 |
+
return date(TribeDateUtils::DBDATETIMEFORMAT, $date );
|
53 |
}
|
54 |
+
|
55 |
public static function beginningOfDay( $date, $isTimestamp = false ) {
|
56 |
$date = $isTimestamp ? $date : strtotime($date);
|
57 |
$date = date(TribeDateUtils::DBDATEFORMAT, $date );
|
58 |
$date = strtotime($date . ' 00:00:00');
|
59 |
+
return date(TribeDateUtils::DBDATETIMEFORMAT, $date );
|
60 |
+
}
|
61 |
+
|
62 |
public static function addTimeToDate( $date, $time ) {
|
63 |
$date = self::dateOnly($date);
|
64 |
return date(TribeDateUtils::DBDATETIMEFORMAT, strtotime($date . $time) );
|
74 |
$nextmonth = mktime(0, 0, 0, $curmonth+1, 1, $curYear);
|
75 |
$lastDay = strtotime(date(DateSeriesRules::DATE_FORMAT, $nextmonth) . " - 1 day");
|
76 |
return date('j', $lastDay);
|
77 |
+
}
|
78 |
+
|
79 |
// returns true if the timestamp is a weekday
|
80 |
public static function isWeekday($curdate) {
|
81 |
return in_array(date('N', $curdate), array(1,2,3,4,5));
|
82 |
}
|
83 |
+
|
84 |
// returns true if the timestamp is a weekend
|
85 |
public static function isWeekend($curdate) {
|
86 |
return in_array(date('N', $curdate), array(6,7));
|
87 |
+
}
|
88 |
+
|
89 |
// gets the last day of the week in a month (ie the last Tuesday). Passing in -1 gives you the last day in the month
|
90 |
public static function getLastDayOfWeekInMonth($curdate, $day_of_week) {
|
91 |
$nextdate = mktime (date("H", $curdate), date("i", $curdate), date("s", $curdate), date('n', $curdate), TribeDateUtils::getLastDayOfMonth($curdate), date('Y', $curdate));;
|
92 |
+
|
93 |
while(date('N', $nextdate) != $day_of_week && $day_of_week != -1) {
|
94 |
$nextdate = strtotime(date(DateSeriesRules::DATE_FORMAT, $nextdate) . " - 1 day");
|
95 |
}
|
96 |
+
|
97 |
return $nextdate;
|
98 |
}
|
99 |
+
|
100 |
+
|
101 |
// gets the first day of the week in a month (ie the first Tuesday).
|
102 |
public static function getFirstDayOfWeekInMonth($curdate, $day_of_week) {
|
103 |
$nextdate = mktime (0, 0, 0, date('n', $curdate), 1, date('Y', $curdate));
|
104 |
+
|
105 |
while(!($day_of_week > 0 && date('N', $nextdate) == $day_of_week) &&
|
106 |
!($day_of_week == -1 && TribeDateUtils::isWeekday($nextdate)) &&
|
107 |
!($day_of_week == -2 && TribeDateUtils::isWeekend($nextdate))) {
|
108 |
$nextdate = strtotime(date(DateSeriesRules::DATE_FORMAT, $nextdate) . " + 1 day");
|
109 |
}
|
110 |
+
|
111 |
return $nextdate;
|
112 |
+
}
|
113 |
+
|
114 |
// from http://php.net/manual/en/function.date.php
|
115 |
public static function numberToOrdinal($number) {
|
116 |
+
return $number.(((strlen($number)>1)&&(substr($number,-2,1)=='1'))?
|
117 |
+
'th' : date("S",mktime(0,0,0,0,substr($number,-1),0)));
|
118 |
}
|
119 |
}
|
120 |
}
|
lib/tribe-event-query.class.php
CHANGED
@@ -68,29 +68,31 @@ if (!class_exists('TribeEventsQuery')) {
|
|
68 |
}
|
69 |
|
70 |
public static function setArgsFromDisplayType($query) {
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
$args = &$query->query_vars;
|
90 |
if( isset($args['eventDate']) ) {
|
91 |
$args['start_date'] = $args['eventDate'];
|
92 |
$args['end_date'] = $args['eventDate'];
|
93 |
}
|
|
|
|
|
94 |
}
|
95 |
|
96 |
return $query;
|
68 |
}
|
69 |
|
70 |
public static function setArgsFromDisplayType($query) {
|
71 |
+
if( !empty($query->query_vars['eventDisplay']) ) {
|
72 |
+
switch ( $query->query_vars['eventDisplay'] ) {
|
73 |
+
case "past":
|
74 |
+
$query = self::setPastDisplayTypeArgs($query);
|
75 |
+
break;
|
76 |
+
case "upcoming":
|
77 |
+
$query = self::setUpcomingDisplayTypeArgs($query);
|
78 |
+
break;
|
79 |
+
case "day":
|
80 |
+
$query = self::setDayDisplayTypeArgs($query);
|
81 |
+
break;
|
82 |
+
case "all":
|
83 |
+
$query = self::setAllDisplayTypeArgs($query);
|
84 |
+
break;
|
85 |
+
case "month":
|
86 |
+
$query = self::setMonthDisplayTypeArgs($query);
|
87 |
+
}
|
88 |
+
} else if ( is_single() ) {
|
89 |
$args = &$query->query_vars;
|
90 |
if( isset($args['eventDate']) ) {
|
91 |
$args['start_date'] = $args['eventDate'];
|
92 |
$args['end_date'] = $args['eventDate'];
|
93 |
}
|
94 |
+
} else {
|
95 |
+
$query = self::setUpcomingDisplayTypeArgs($query);
|
96 |
}
|
97 |
|
98 |
return $query;
|
lib/tribe-field.class.php
CHANGED
@@ -314,7 +314,8 @@ if ( !class_exists('TribeField') ) {
|
|
314 |
* @return string the field
|
315 |
*/
|
316 |
public function html() {
|
317 |
-
$field = $this->
|
|
|
318 |
return $field;
|
319 |
}
|
320 |
|
314 |
* @return string the field
|
315 |
*/
|
316 |
public function html() {
|
317 |
+
$field = $this->doFieldLabel();
|
318 |
+
$field .= $this->html;
|
319 |
return $field;
|
320 |
}
|
321 |
|
lib/tribe-settings-tab.class.php
CHANGED
@@ -86,7 +86,7 @@ if ( !class_exists( 'TribeSettingsTab' ) ) {
|
|
86 |
* @return array $tabs the filtered tabs
|
87 |
*/
|
88 |
public function addTab( $tabs ) {
|
89 |
-
if (
|
90 |
$tabs[$this->id] = $this->name;
|
91 |
add_filter( 'tribe_settings_fields', array( $this, 'addFields' ) );
|
92 |
add_filter( 'tribe_settings_no_save_tabs', array( $this, 'showSaveTab' ) );
|
@@ -170,6 +170,13 @@ if ( !class_exists( 'TribeSettingsTab' ) ) {
|
|
170 |
}
|
171 |
}
|
172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
// filter the value
|
174 |
$value = apply_filters( 'tribe_settings_get_option_value_pre_display', $value, $key, $field );
|
175 |
|
86 |
* @return array $tabs the filtered tabs
|
87 |
*/
|
88 |
public function addTab( $tabs ) {
|
89 |
+
if ( isset( $this->fields ) || has_action( 'tribe_settings_content_tab_' . $this->id ) ) {
|
90 |
$tabs[$this->id] = $this->name;
|
91 |
add_filter( 'tribe_settings_fields', array( $this, 'addFields' ) );
|
92 |
add_filter( 'tribe_settings_no_save_tabs', array( $this, 'showSaveTab' ) );
|
170 |
}
|
171 |
}
|
172 |
|
173 |
+
// escape the value for display
|
174 |
+
if ( !empty( $field['esc_display'] ) && function_exists( $field['esc_display'] ) ) {
|
175 |
+
$value = $field['esc_display']( $value );
|
176 |
+
} elseif ( is_string( $value ) ) {
|
177 |
+
$value = esc_attr( stripslashes( $value ) );
|
178 |
+
}
|
179 |
+
|
180 |
// filter the value
|
181 |
$value = apply_filters( 'tribe_settings_get_option_value_pre_display', $value, $key, $field );
|
182 |
|
lib/tribe-settings.class.php
CHANGED
@@ -128,7 +128,7 @@ if ( !class_exists( 'TribeSettings' ) ) {
|
|
128 |
// set instance variables
|
129 |
$this->menuName = apply_filters( 'tribe_settings_menu_name', __( 'The Events Calendar', 'tribe-events-calendar' ) );
|
130 |
$this->requiredCap = apply_filters( 'tribe_settings_req_cap', 'manage_options' );
|
131 |
-
$this->adminSlug = apply_filters( 'tribe_settings_admin_slug', 'tribe-
|
132 |
$this->errors = get_option( 'tribe_settings_errors', array() );
|
133 |
$this->major_error = get_option( 'tribe_settings_major_error', false );
|
134 |
$this->sent_data = get_option( 'tribe_settings_sent_data', array() );
|
@@ -237,7 +237,7 @@ if ( !class_exists( 'TribeSettings' ) ) {
|
|
237 |
$tab = esc_attr( $tab );
|
238 |
$name = esc_attr( $name );
|
239 |
$class = ( $tab == $this->currentTab ) ? ' nav-tab-active' : '';
|
240 |
-
echo '<a id="' . $tab . '" class="nav-tab' . $class . '" href="?page=
|
241 |
}
|
242 |
do_action( 'tribe_settings_after_tabs' );
|
243 |
echo '</h2>';
|
@@ -349,7 +349,7 @@ if ( !class_exists( 'TribeSettings' ) ) {
|
|
349 |
* (in that case, it's a serialized option array and
|
350 |
* will be saved in the next loop)
|
351 |
*/
|
352 |
-
if (
|
353 |
foreach ( $this->validated as $field_id => $validated_field ) {
|
354 |
// get the value and filter it
|
355 |
$value = $validated_field->value;
|
@@ -395,6 +395,8 @@ if ( !class_exists( 'TribeSettings' ) ) {
|
|
395 |
}
|
396 |
}
|
397 |
|
|
|
|
|
398 |
remove_action( 'shutdown', array( $this, 'deleteOptions' ) );
|
399 |
add_option( 'tribe_settings_sent_data', $_POST );
|
400 |
add_option( 'tribe_settings_errors', $this->errors );
|
128 |
// set instance variables
|
129 |
$this->menuName = apply_filters( 'tribe_settings_menu_name', __( 'The Events Calendar', 'tribe-events-calendar' ) );
|
130 |
$this->requiredCap = apply_filters( 'tribe_settings_req_cap', 'manage_options' );
|
131 |
+
$this->adminSlug = apply_filters( 'tribe_settings_admin_slug', 'tribe-events-calendar' );
|
132 |
$this->errors = get_option( 'tribe_settings_errors', array() );
|
133 |
$this->major_error = get_option( 'tribe_settings_major_error', false );
|
134 |
$this->sent_data = get_option( 'tribe_settings_sent_data', array() );
|
237 |
$tab = esc_attr( $tab );
|
238 |
$name = esc_attr( $name );
|
239 |
$class = ( $tab == $this->currentTab ) ? ' nav-tab-active' : '';
|
240 |
+
echo '<a id="' . $tab . '" class="nav-tab' . $class . '" href="?page=' . $this->adminSlug . '&tab=' . urlencode( $tab ) . '">' . $name . '</a>';
|
241 |
}
|
242 |
do_action( 'tribe_settings_after_tabs' );
|
243 |
echo '</h2>';
|
349 |
* (in that case, it's a serialized option array and
|
350 |
* will be saved in the next loop)
|
351 |
*/
|
352 |
+
if ( !empty( $this->validated ) ) {
|
353 |
foreach ( $this->validated as $field_id => $validated_field ) {
|
354 |
// get the value and filter it
|
355 |
$value = $validated_field->value;
|
395 |
}
|
396 |
}
|
397 |
|
398 |
+
do_action( 'tribe_settings_after_save' );
|
399 |
+
do_action( 'tribe_settings_after_save_' . $this->currentTab );
|
400 |
remove_action( 'shutdown', array( $this, 'deleteOptions' ) );
|
401 |
add_option( 'tribe_settings_sent_data', $_POST );
|
402 |
add_option( 'tribe_settings_errors', $this->errors );
|
lib/tribe-validate.class.php
CHANGED
@@ -120,6 +120,58 @@ if ( !class_exists( 'TribeValidate' ) ) {
|
|
120 |
return $this->result;
|
121 |
}
|
122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
/**
|
124 |
* validates a field as being positive integers
|
125 |
*
|
@@ -344,11 +396,12 @@ if ( !class_exists( 'TribeValidate' ) ) {
|
|
344 |
* @return stdClass validation result object
|
345 |
*/
|
346 |
public function address() {
|
347 |
-
|
|
|
348 |
$this->result->valid = true;
|
349 |
} else {
|
350 |
$this->result->valid = false;
|
351 |
-
$this->result->error = sprintf( __( '%s must consist of letters, numbers, dashes, and spaces only.', 'tribe-events-calendar' ), $this->label );
|
352 |
}
|
353 |
}
|
354 |
|
@@ -361,11 +414,12 @@ if ( !class_exists( 'TribeValidate' ) ) {
|
|
361 |
* @return stdClass validation result object
|
362 |
*/
|
363 |
public function city_or_province() {
|
364 |
-
|
|
|
365 |
$this->result->valid = true;
|
366 |
} else {
|
367 |
$this->result->valid = false;
|
368 |
-
$this->result->error = sprintf( __( '%s must consist of letters, spaces, and dashes.', 'tribe-events-calendar' ), $this->label );
|
369 |
}
|
370 |
}
|
371 |
|
120 |
return $this->result;
|
121 |
}
|
122 |
|
123 |
+
/**
|
124 |
+
* validates a field as a string containing only letters and numbers
|
125 |
+
*
|
126 |
+
* @since 2.0.7
|
127 |
+
* @author jkudish
|
128 |
+
* @return stdClass validation result object
|
129 |
+
*/
|
130 |
+
public function alpha_numeric() {
|
131 |
+
if ( preg_match( '/^[a-zA-Z0-9]+$/', $this->value ) ) {
|
132 |
+
$this->result->valid = true;
|
133 |
+
} else {
|
134 |
+
$this->result->valid = false;
|
135 |
+
$this->result->error = sprintf( __( '%s must contain numbers and letters only', 'tribe-events-calendar' ), $this->label );
|
136 |
+
}
|
137 |
+
}
|
138 |
+
|
139 |
+
/**
|
140 |
+
* validates a field as a string containing only letters,
|
141 |
+
* numbers and carriage returns
|
142 |
+
*
|
143 |
+
* @since 2.0.7
|
144 |
+
* @author jkudish
|
145 |
+
* @return stdClass validation result object
|
146 |
+
*/
|
147 |
+
public function alpha_numeric_multi_line() {
|
148 |
+
if ( preg_match( '/^[a-zA-Z0-9\s]+$/', $this->value ) ) {
|
149 |
+
$this->result->valid = true;
|
150 |
+
$this->value = tribe_multi_line_remove_empty_lines( $this->value );
|
151 |
+
} else {
|
152 |
+
$this->result->valid = false;
|
153 |
+
$this->result->error = sprintf( __( '%s must contain numbers and letters only', 'tribe-events-calendar' ), $this->label );
|
154 |
+
}
|
155 |
+
}
|
156 |
+
|
157 |
+
/**
|
158 |
+
* validates a field as a string containing only letters,
|
159 |
+
* numbers, dots and carriage returns
|
160 |
+
*
|
161 |
+
* @since 2.0.7
|
162 |
+
* @author jkudish
|
163 |
+
* @return stdClass validation result object
|
164 |
+
*/
|
165 |
+
public function alpha_numeric_multi_line_with_dots() {
|
166 |
+
if ( preg_match( '/^[a-zA-Z0-9\s.]+$/', $this->value ) ) {
|
167 |
+
$this->result->valid = true;
|
168 |
+
$this->value = tribe_multi_line_remove_empty_lines( $this->value );
|
169 |
+
} else {
|
170 |
+
$this->result->valid = false;
|
171 |
+
$this->result->error = sprintf( __( '%s must contain numbers, letters and dots only', 'tribe-events-calendar' ), $this->label );
|
172 |
+
}
|
173 |
+
}
|
174 |
+
|
175 |
/**
|
176 |
* validates a field as being positive integers
|
177 |
*
|
396 |
* @return stdClass validation result object
|
397 |
*/
|
398 |
public function address() {
|
399 |
+
$this->value = stripslashes( $this->value );
|
400 |
+
if ( preg_match( "/^[0-9a-zA-Z '-]+$/", $this->value ) ) {
|
401 |
$this->result->valid = true;
|
402 |
} else {
|
403 |
$this->result->valid = false;
|
404 |
+
$this->result->error = sprintf( __( '%s must consist of letters, numbers, dashes, apostrophes, and spaces only.', 'tribe-events-calendar' ), $this->label );
|
405 |
}
|
406 |
}
|
407 |
|
414 |
* @return stdClass validation result object
|
415 |
*/
|
416 |
public function city_or_province() {
|
417 |
+
$this->value = stripslashes( $this->value );
|
418 |
+
if ( preg_match( "/^[a-zA-Z '-]+$/", $this->value ) ) {
|
419 |
$this->result->valid = true;
|
420 |
} else {
|
421 |
$this->result->valid = false;
|
422 |
+
$this->result->error = sprintf( __( '%s must consist of letters, spaces, apostrophes, and dashes.', 'tribe-events-calendar' ), $this->label );
|
423 |
}
|
424 |
}
|
425 |
|
public/template-tags/calendar.php
CHANGED
@@ -31,15 +31,9 @@ if( class_exists( 'TribeEvents' ) ) {
|
|
31 |
* @uses load_template()
|
32 |
* @since 2.0
|
33 |
*/
|
34 |
-
function tribe_calendar_mini_grid()
|
35 |
-
global $wp_query;
|
36 |
-
$old_query = $wp_query;
|
37 |
-
|
38 |
-
$wp_query = NEW WP_Query('post_type='.TribeEvents::POSTTYPE);
|
39 |
set_query_var( 'eventDisplay', 'bydate' );
|
40 |
-
load_template( TribeEventsTemplates::getTemplateHierarchy('table-mini') );
|
41 |
-
|
42 |
-
$wp_query = $old_query;
|
43 |
}
|
44 |
|
45 |
/**
|
@@ -66,6 +60,8 @@ if( class_exists( 'TribeEvents' ) ) {
|
|
66 |
* @since 2.0
|
67 |
*/
|
68 |
function tribe_sort_by_month( $results, $date ) {
|
|
|
|
|
69 |
$cutoff_time = tribe_get_option('multiDayCutoff', '12:00');
|
70 |
|
71 |
if( preg_match( '/(\d{4})-(\d{2})/', $date, $matches ) ) {
|
@@ -81,6 +77,8 @@ if( class_exists( 'TribeEvents' ) ) {
|
|
81 |
|
82 |
|
83 |
foreach ( $results as $event ) {
|
|
|
|
|
84 |
$started = false;
|
85 |
|
86 |
list( $startYear, $startMonth, $startDay ) = explode( '-', $event->EventStartDate );
|
31 |
* @uses load_template()
|
32 |
* @since 2.0
|
33 |
*/
|
34 |
+
function tribe_calendar_mini_grid() {
|
|
|
|
|
|
|
|
|
35 |
set_query_var( 'eventDisplay', 'bydate' );
|
36 |
+
load_template( TribeEventsTemplates::getTemplateHierarchy( 'table-mini' ) );
|
|
|
|
|
37 |
}
|
38 |
|
39 |
/**
|
60 |
* @since 2.0
|
61 |
*/
|
62 |
function tribe_sort_by_month( $results, $date ) {
|
63 |
+
global $post;
|
64 |
+
|
65 |
$cutoff_time = tribe_get_option('multiDayCutoff', '12:00');
|
66 |
|
67 |
if( preg_match( '/(\d{4})-(\d{2})/', $date, $matches ) ) {
|
77 |
|
78 |
|
79 |
foreach ( $results as $event ) {
|
80 |
+
$post = $event;
|
81 |
+
|
82 |
$started = false;
|
83 |
|
84 |
list( $startYear, $startMonth, $startDay ) = explode( '-', $event->EventStartDate );
|
public/template-tags/general.php
CHANGED
@@ -302,5 +302,18 @@ if( class_exists( 'TribeEvents' ) ) {
|
|
302 |
}
|
303 |
}
|
304 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
}
|
306 |
?>
|
302 |
}
|
303 |
}
|
304 |
|
305 |
+
/**
|
306 |
+
* helper function to remove empty lines from multi-line strings
|
307 |
+
*
|
308 |
+
* @since 2.0.5
|
309 |
+
* @author jkudish
|
310 |
+
* @link http://stackoverflow.com/questions/709669/how-do-i-remove-blank-lines-from-text-in-php
|
311 |
+
* @param string $multi_line_string a multiline string
|
312 |
+
* @return string the same string without empty lines
|
313 |
+
*/
|
314 |
+
function tribe_multi_line_remove_empty_lines( $multi_line_string ) {
|
315 |
+
return preg_replace( "/^\n+|^[\t\s]*\n+/m", '', $multi_line_string );
|
316 |
+
}
|
317 |
+
|
318 |
}
|
319 |
?>
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== The Events Calendar ===
|
2 |
|
3 |
-
Contributors: ModernTribe, jkudish,
|
4 |
Tags: modern tribe, tribe, widget, events, tooltips, grid, month, list, calendar, recurring, event, venue, eventbrite, registration, tickets, ticketing, eventbright, api, dates, date, plugin, posts, sidebar, template, theme, time, google maps, conference, workshop, concert, meeting, seminar, summit, forum, shortcode
|
5 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QA7QZM4CNQ342
|
6 |
-
Requires at least: 3.
|
7 |
Tested up to: 3.4-alpha
|
8 |
-
Stable tag: 2.0.
|
9 |
|
10 |
== Description ==
|
11 |
|
@@ -86,17 +86,18 @@ The plugin is produced by <a href="http://tri.be/?ref=tec-readme">Modern Tribe I
|
|
86 |
|
87 |
= Current Contributors =
|
88 |
|
89 |
-
* <a href="http://profiles.wordpress.org/users/jkudish">Joachim Kudish</a>
|
90 |
-
* <a href="http://profiles.wordpress.org/users/nickciske">Nick Ciske</a>
|
91 |
* <a href="http://profiles.wordpress.org/users/paulhughes01">Paul Hughes</a>
|
92 |
* <a href="http://profiles.wordpress.org/users/roblagatta">Rob La Gatta</a>
|
93 |
* <a href="http://profiles.wordpress.org/users/jonahcoyote">Jonah West</a>
|
|
|
94 |
* <a href="http://profiles.wordpress.org/users/peterchester">Peter Chester</a>
|
95 |
* <a href="http://profiles.wordpress.org/users/reid.peifer">Reid Peifer</a>
|
96 |
* <a href="http://profiles.wordpress.org/users/shane.pearlman">Shane Pearlman</a>
|
97 |
|
98 |
= Past Contributors =
|
99 |
|
|
|
|
|
100 |
* <a href="http://profiles.wordpress.org/users/kelseydamas">Kelsey Damas</a>
|
101 |
* <a href="http://profiles.wordpress.org/users/mattwiebe">Matt Wiebe</a>
|
102 |
* <a href="http://profiles.wordpress.org/users/dancameron">Dan Cameron</a>
|
@@ -110,6 +111,7 @@ The plugin is produced by <a href="http://tri.be/?ref=tec-readme">Modern Tribe I
|
|
110 |
* Dutch (free & PRO) from Ed Boon, RIck van Dalen & Jacob Roel Meijering
|
111 |
* Danish (PRO only) from Christian Andersen
|
112 |
* Italian (free & PRO) from Stefano Castelli
|
|
|
113 |
* German (free only) from David Decker
|
114 |
* Polish (free & PRO) from Kamil Szymanski
|
115 |
* Norwegian (free & PRO) from "Terje With Lunndal"
|
@@ -135,6 +137,31 @@ Our Premium Plugins:
|
|
135 |
|
136 |
== Changelog ==
|
137 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
= 2.0.6 =
|
139 |
|
140 |
**Small features, UX and Content Tweaks:**
|
@@ -309,6 +336,10 @@ This is such a major re-write that we are starting the change log over.
|
|
309 |
|
310 |
== Upgrade Notice ==
|
311 |
|
|
|
|
|
|
|
|
|
312 |
= 2.0.5 =
|
313 |
|
314 |
2.0.5 contains bug patches and new features for 2.0. Are you upgrading from 1.6.5? Events 2.0 is a MAJOR upgrade, please backup your data and plan a little time in case you have to make any theme edits. Check out the upgrade tutorials in support on the tri.be website.
|
1 |
=== The Events Calendar ===
|
2 |
|
3 |
+
Contributors: ModernTribe, jkudish, PaulHughes01, roblagatta, jonahcoyote, peterchester, reid.peifer, shane.pearlman
|
4 |
Tags: modern tribe, tribe, widget, events, tooltips, grid, month, list, calendar, recurring, event, venue, eventbrite, registration, tickets, ticketing, eventbright, api, dates, date, plugin, posts, sidebar, template, theme, time, google maps, conference, workshop, concert, meeting, seminar, summit, forum, shortcode
|
5 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QA7QZM4CNQ342
|
6 |
+
Requires at least: 3.2
|
7 |
Tested up to: 3.4-alpha
|
8 |
+
Stable tag: 2.0.7
|
9 |
|
10 |
== Description ==
|
11 |
|
86 |
|
87 |
= Current Contributors =
|
88 |
|
|
|
|
|
89 |
* <a href="http://profiles.wordpress.org/users/paulhughes01">Paul Hughes</a>
|
90 |
* <a href="http://profiles.wordpress.org/users/roblagatta">Rob La Gatta</a>
|
91 |
* <a href="http://profiles.wordpress.org/users/jonahcoyote">Jonah West</a>
|
92 |
+
* <a href="http://profiles.wordpress.org/users/mzaweb">Daniel Dvorkin</a>
|
93 |
* <a href="http://profiles.wordpress.org/users/peterchester">Peter Chester</a>
|
94 |
* <a href="http://profiles.wordpress.org/users/reid.peifer">Reid Peifer</a>
|
95 |
* <a href="http://profiles.wordpress.org/users/shane.pearlman">Shane Pearlman</a>
|
96 |
|
97 |
= Past Contributors =
|
98 |
|
99 |
+
* <a href="http://profiles.wordpress.org/users/jkudish">Joachim Kudish</a>
|
100 |
+
* <a href="http://profiles.wordpress.org/users/nickciske">Nick Ciske</a>
|
101 |
* <a href="http://profiles.wordpress.org/users/kelseydamas">Kelsey Damas</a>
|
102 |
* <a href="http://profiles.wordpress.org/users/mattwiebe">Matt Wiebe</a>
|
103 |
* <a href="http://profiles.wordpress.org/users/dancameron">Dan Cameron</a>
|
111 |
* Dutch (free & PRO) from Ed Boon, RIck van Dalen & Jacob Roel Meijering
|
112 |
* Danish (PRO only) from Christian Andersen
|
113 |
* Italian (free & PRO) from Stefano Castelli
|
114 |
+
* Spanish (free & PRO) from Hector at Signo Creativo
|
115 |
* German (free only) from David Decker
|
116 |
* Polish (free & PRO) from Kamil Szymanski
|
117 |
* Norwegian (free & PRO) from "Terje With Lunndal"
|
137 |
|
138 |
== Changelog ==
|
139 |
|
140 |
+
= 2.0.7 =
|
141 |
+
|
142 |
+
**Small features, UX and Content Tweaks:**
|
143 |
+
|
144 |
+
* As requested by the masses...added AJAX functionality to mini calendar widget for navigating forward/backward from month to month (PRO only).
|
145 |
+
* Incorporated "Events" menu to the admin bar, featuring Events-specific options and integrating with Modern Tribe add-ons.
|
146 |
+
* Added new App Shop link to Events admin menu / admin bar menu to view and download other Modern Tribe plugins & add-ons.
|
147 |
+
* Added audit info metabox to admin (just enable it by adding define('TRIBE_SHOW_EVENT_AUDITING', true); to your wp-config file).
|
148 |
+
* Included new Swedish translation files (free & PRO), courtesy of Ben Andersen.
|
149 |
+
* Included new Spanish translation files (free & PRO), courtesy of Hector at Signo Creativo.
|
150 |
+
|
151 |
+
**Bug Fixes:**
|
152 |
+
|
153 |
+
* Google Calendar import now works and truncates appropriately for extremely long event listings (thanks for the fix, Andy Fragen!)
|
154 |
+
* Fixed settings page slug so as not to break backwards compatibility
|
155 |
+
* Got rid of a superfluous daily query of events that was running for once-per-day every month-view load, thereby improving overall load speed
|
156 |
+
* Tweaked a bug where TribeEvents::uglyLink() was missing �day'
|
157 |
+
* A message is now displayed in place of the events-slug boxes when a user does not have pretty permalinks enabled.
|
158 |
+
* Next/previous links no longer navigate in order of event ID when pretty permalinks are disabled.
|
159 |
+
* Contributors are now able to create recurring events.
|
160 |
+
* Fixed an issue with single quotes getting converted to funky characters upon saving on Additional Fields and other Settings --> The Events Calendar tabs.
|
161 |
+
* Addressed various other bugs with the Additional Fields tab in Settings --> The Events Calendar.
|
162 |
+
* Tiny patch to help integrate with the Duotive theme.
|
163 |
+
* Fixed category rewrite slug issue that occurred with certain permalink structures.
|
164 |
+
|
165 |
= 2.0.6 =
|
166 |
|
167 |
**Small features, UX and Content Tweaks:**
|
336 |
|
337 |
== Upgrade Notice ==
|
338 |
|
339 |
+
= 2.0.7 =
|
340 |
+
|
341 |
+
2.0.7 contains bug patches and new features for 2.0. Are you upgrading from 1.6.5? Events 2.0 is a MAJOR upgrade, please backup your data and plan a little time in case you have to make any theme edits. Check out the upgrade tutorials in support on the tri.be website.
|
342 |
+
|
343 |
= 2.0.5 =
|
344 |
|
345 |
2.0.5 contains bug patches and new features for 2.0. Are you upgrading from 1.6.5? Events 2.0 is a MAJOR upgrade, please backup your data and plan a little time in case you have to make any theme edits. Check out the upgrade tutorials in support on the tri.be website.
|
resources/app-shop.css
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.tribe-addon {
|
2 |
+
width : 33%;
|
3 |
+
float : left;
|
4 |
+
margin-bottom : 40px;
|
5 |
+
}
|
6 |
+
|
7 |
+
.tribe-addon .caption p{
|
8 |
+
width: 300px;
|
9 |
+
}
|
10 |
+
|
11 |
+
.addon-grid{
|
12 |
+
width: 940px;
|
13 |
+
}
|
14 |
+
|
15 |
+
.category-title {
|
16 |
+
display : block;
|
17 |
+
clear : both;
|
18 |
+
margin-bottom : 10px;
|
19 |
+
}
|
20 |
+
|
resources/app-shop.js
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery( document ).ready( function () {
|
2 |
+
|
3 |
+
var maxHeight = 0;
|
4 |
+
jQuery( "div.tribe-addon .caption" ).each( function () {
|
5 |
+
var h = jQuery(this).height();
|
6 |
+
maxHeight = h > maxHeight ? h : maxHeight;
|
7 |
+
} );
|
8 |
+
|
9 |
+
jQuery( "div.tribe-addon .caption" ).css('height', maxHeight);
|
10 |
+
} );
|
the-events-calendar.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: The Events Calendar
|
4 |
Description: The Events Calendar is a fully featured event management system with multiple views, 3rd party integrations, and a slew of premium add-ons.
|
5 |
-
Version: 2.0.
|
6 |
Author: Modern Tribe, Inc.
|
7 |
Author URI: http://tri.be?ref=tec-plugin
|
8 |
Text Domain: tribe-events-calendar
|
2 |
/*
|
3 |
Plugin Name: The Events Calendar
|
4 |
Description: The Events Calendar is a fully featured event management system with multiple views, 3rd party integrations, and a slew of premium add-ons.
|
5 |
+
Version: 2.0.7
|
6 |
Author: Modern Tribe, Inc.
|
7 |
Author URI: http://tri.be?ref=tec-plugin
|
8 |
Text Domain: tribe-events-calendar
|
views/table-mini.php
CHANGED
@@ -8,20 +8,52 @@
|
|
8 |
// Don't load directly
|
9 |
if ( !defined('ABSPATH') ) { die('-1'); }
|
10 |
|
11 |
-
$tribe_ecp = TribeEvents::instance();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
$eventPosts = tribe_get_events(array( 'eventDisplay'=>'month' ) );
|
|
|
|
|
|
|
|
|
13 |
$daysInMonth = isset($date) ? date("t", $date) : date("t");
|
14 |
$startOfWeek = get_option( 'start_of_week', 0 );
|
15 |
-
list( $year, $month ) = split( '-', $
|
16 |
$date = mktime(12, 0, 0, $month, 1, $year); // 1st day of month as unix stamp
|
17 |
$rawOffset = date("w", $date) - $startOfWeek;
|
18 |
$offset = ( $rawOffset < 0 ) ? $rawOffset + 7 : $rawOffset; // month begins on day x
|
19 |
$rows = 1;
|
20 |
-
$monthView = tribe_sort_by_month( $eventPosts, $
|
21 |
|
|
|
22 |
|
23 |
?>
|
24 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
<table class="tribe-events-calendar tribe-events-calendar-widget" id="small">
|
26 |
<thead>
|
27 |
<tr>
|
@@ -81,7 +113,13 @@ $monthView = tribe_sort_by_month( $eventPosts, $tribe_ecp->date );
|
|
81 |
</tr>
|
82 |
</tbody>
|
83 |
</table>
|
|
|
|
|
|
|
84 |
<?php
|
|
|
|
|
|
|
85 |
|
86 |
function tribe_mini_display_day( $day, $monthView ) {
|
87 |
$return = "<div class='daynum tribe-events-event' id='daynum_$day'>";
|
8 |
// Don't load directly
|
9 |
if ( !defined('ABSPATH') ) { die('-1'); }
|
10 |
|
11 |
+
$tribe_ecp = TribeEvents::instance();
|
12 |
+
|
13 |
+
global $wp_query;
|
14 |
+
$old_date = null;
|
15 |
+
if ( !defined( "DOING_AJAX" ) || !DOING_AJAX ) {
|
16 |
+
$current_date = date_i18n( TribeDateUtils::DBYEARMONTHTIMEFORMAT ) . "-01";
|
17 |
+
if ( isset( $wp_query->query_vars['eventDate'] ) ) {
|
18 |
+
$old_date = $wp_query->query_vars['eventDate'];
|
19 |
+
$wp_query->query_vars['eventDate'] = $current_date;
|
20 |
+
}
|
21 |
+
}else{
|
22 |
+
$current_date = $tribe_ecp->date;
|
23 |
+
}
|
24 |
+
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
$eventPosts = tribe_get_events(array( 'eventDisplay'=>'month' ) );
|
29 |
+
if ( !$current_date ) {
|
30 |
+
$current_date = $tribe_ecp->date;
|
31 |
+
}
|
32 |
+
|
33 |
$daysInMonth = isset($date) ? date("t", $date) : date("t");
|
34 |
$startOfWeek = get_option( 'start_of_week', 0 );
|
35 |
+
list( $year, $month ) = split( '-', $current_date );
|
36 |
$date = mktime(12, 0, 0, $month, 1, $year); // 1st day of month as unix stamp
|
37 |
$rawOffset = date("w", $date) - $startOfWeek;
|
38 |
$offset = ( $rawOffset < 0 ) ? $rawOffset + 7 : $rawOffset; // month begins on day x
|
39 |
$rows = 1;
|
40 |
+
$monthView = tribe_sort_by_month( $eventPosts, $current_date );
|
41 |
|
42 |
+
// the div tribe-events-widget-nav controls ajax navigation for the calendar widget. Modify with care and do not remove any class names or elements inside that element if you wish to retain ajax functionality.
|
43 |
|
44 |
?>
|
45 |
+
<div class="tribe-events-widget-nav">
|
46 |
+
<a class="tribe-mini-ajax prev-month" href="#" data-month="<?php echo $tribe_ecp->previousMonth( $current_date );?>" title="<?php echo tribe_get_previous_month_text(); ?>">
|
47 |
+
<span><?php echo tribe_get_previous_month_text(); ?></span>
|
48 |
+
</a>
|
49 |
+
<span id="tribe-mini-ajax-month">
|
50 |
+
<?php echo $tribe_ecp->monthsShort[date('M',$date)]; echo date(' Y',$date); ?>
|
51 |
+
</span>
|
52 |
+
<a class="tribe-mini-ajax next-month" href="#" data-month="<?php echo $tribe_ecp->nextMonth( $current_date );?>" title="<?php echo tribe_get_next_month_text(); ?>">
|
53 |
+
<span><?php echo tribe_get_next_month_text(); ?></span>
|
54 |
+
</a>
|
55 |
+
<img id="ajax-loading-mini" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="loading..." />
|
56 |
+
</div>
|
57 |
<table class="tribe-events-calendar tribe-events-calendar-widget" id="small">
|
58 |
<thead>
|
59 |
<tr>
|
113 |
</tr>
|
114 |
</tbody>
|
115 |
</table>
|
116 |
+
|
117 |
+
<a class="tribe-view-all-events" href="<?php echo tribe_get_events_link(); ?>"><?php _e('View all »', 'tribe-events-calendar'); ?></a>
|
118 |
+
|
119 |
<?php
|
120 |
+
if ($old_date){
|
121 |
+
$wp_query->query_vars['eventDate'] = $old_date;
|
122 |
+
}
|
123 |
|
124 |
function tribe_mini_display_day( $day, $monthView ) {
|
125 |
$return = "<div class='daynum tribe-events-event' id='daynum_$day'>";
|
views/table.php
CHANGED
@@ -99,11 +99,11 @@ $monthView = tribe_sort_by_month( $eventPosts, $tribe_ecp->date );
|
|
99 |
|
100 |
function display_day_title( $day, $monthView, $date ) {
|
101 |
$return = "<div class='daynum tribe-events-event' id='daynum_$day'>";
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
$return .= "<div id='tooltip_day_$day' class='tribe-events-tooltip' style='display:none;'>";
|
108 |
for( $i = 0; $i < count( $monthView[$day] ); $i++ ) {
|
109 |
$post = $monthView[$day][$i];
|
99 |
|
100 |
function display_day_title( $day, $monthView, $date ) {
|
101 |
$return = "<div class='daynum tribe-events-event' id='daynum_$day'>";
|
102 |
+
if( function_exists('tribe_get_linked_day') && count( $monthView[$day] ) > 0 ) {
|
103 |
+
$return .= tribe_get_linked_day($date, $day); // premium
|
104 |
+
} else {
|
105 |
+
$return .= $day;
|
106 |
+
}
|
107 |
$return .= "<div id='tooltip_day_$day' class='tribe-events-tooltip' style='display:none;'>";
|
108 |
for( $i = 0; $i < count( $monthView[$day] ); $i++ ) {
|
109 |
$post = $monthView[$day][$i];
|