Version Description
Download this release
Release Info
Developer | yani.iliev |
Plugin | All-in-One Event Calendar |
Version | 1.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.5 to 1.3
- all-in-one-event-calendar.php +1 -1
- app/controller/class-ai1ec-app-controller.php +99 -1
- app/controller/class-ai1ec-events-controller.php +26 -25
- app/helper/class-ai1ec-events-helper.php +111 -2
- app/view/box_date_picker.php +10 -0
- app/view/box_repeat.php +53 -0
- app/view/box_time_and_date.php +31 -56
- app/view/calendar.php +1 -1
- css/add_new_event.css +9 -2
- js/add_new_event.js +384 -220
- language/all-in-one-event-calendar-cs_CZ.mo +0 -0
- language/all-in-one-event-calendar-cs_CZ.po +1506 -0
- language/all-in-one-event-calendar-da_DK.mo +0 -0
- language/all-in-one-event-calendar-da_DK.po +1509 -0
- language/all-in-one-event-calendar-sv_SE.mo +0 -0
- language/all-in-one-event-calendar-sv_SE.po +467 -167
- language/all-in-one-event-calendar.pot +490 -484
- readme.txt +34 -1
all-in-one-event-calendar.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
6 |
* Author: The Seed Studio
|
7 |
* Author URI: http://theseednetwork.com/
|
8 |
-
* Version: 1.
|
9 |
*/ // NOTE: When updating version number also update first line of app/view/calendar.php
|
10 |
@set_time_limit( 0 );
|
11 |
@ini_set( "memory_limit", "256M" );
|
5 |
* Description: An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
6 |
* Author: The Seed Studio
|
7 |
* Author URI: http://theseednetwork.com/
|
8 |
+
* Version: 1.3
|
9 |
*/ // NOTE: When updating version number also update first line of app/view/calendar.php
|
10 |
@set_time_limit( 0 );
|
11 |
@ini_set( "memory_limit", "256M" );
|
app/controller/class-ai1ec-app-controller.php
CHANGED
@@ -171,6 +171,16 @@ class Ai1ec_App_Controller {
|
|
171 |
|
172 |
// RRule to Text
|
173 |
add_action( 'wp_ajax_ai1ec_rrule_to_text', array( &$ai1ec_events_helper, 'convert_rrule_to_text' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
}
|
175 |
|
176 |
/**
|
@@ -375,7 +385,13 @@ class Ai1ec_App_Controller {
|
|
375 |
function route_request() {
|
376 |
global $ai1ec_settings,
|
377 |
$ai1ec_calendar_controller,
|
378 |
-
$ai1ec_events_controller
|
|
|
|
|
|
|
|
|
|
|
|
|
379 |
|
380 |
// Find out if the calendar page ID is defined, and we're on it
|
381 |
if( $ai1ec_settings->calendar_page_id &&
|
@@ -391,6 +407,88 @@ class Ai1ec_App_Controller {
|
|
391 |
$this->page_content = ob_get_contents();
|
392 |
ob_end_clean();
|
393 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
// Replace page content - make sure it happens at (almost) the very end of
|
395 |
// page content filters (some themes are overly ambitious here)
|
396 |
add_filter( 'the_content', array( &$this, 'append_content' ), PHP_INT_MAX - 1 );
|
171 |
|
172 |
// RRule to Text
|
173 |
add_action( 'wp_ajax_ai1ec_rrule_to_text', array( &$ai1ec_events_helper, 'convert_rrule_to_text' ) );
|
174 |
+
|
175 |
+
// Display Repeat Box
|
176 |
+
add_action( 'wp_ajax_ai1ec_get_repeat_box', array( &$ai1ec_events_helper, 'get_repeat_box' ) );
|
177 |
+
add_action( 'wp_ajax_ai1ec_get_date_picker_box', array( &$ai1ec_events_helper, 'get_date_picker_box' ) );
|
178 |
+
|
179 |
+
// ==============
|
180 |
+
// = Shortcodes =
|
181 |
+
// ==============
|
182 |
+
add_shortcode( 'ai1ec', array( &$ai1ec_events_helper, 'shortcode' ) );
|
183 |
+
|
184 |
}
|
185 |
|
186 |
/**
|
385 |
function route_request() {
|
386 |
global $ai1ec_settings,
|
387 |
$ai1ec_calendar_controller,
|
388 |
+
$ai1ec_events_controller,
|
389 |
+
$post;
|
390 |
+
|
391 |
+
// regex pattern to match our shortcode [ai1ec]
|
392 |
+
// \[(\[?)(ai1ec)\b([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/)\]|\](?:([^\[]*+(?:\[(?!\/\2\])[^\[]*+)*+)\[\/\2\])?)(\]?)
|
393 |
+
$out = array();
|
394 |
+
preg_match( "/\[(\[?)(ai1ec)\b([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/)\]|\](?:([^\[]*+(?:\[(?!\/\2\])[^\[]*+)*+)\[\/\2\])?)(\]?)/s", $post->post_content, $out );
|
395 |
|
396 |
// Find out if the calendar page ID is defined, and we're on it
|
397 |
if( $ai1ec_settings->calendar_page_id &&
|
407 |
$this->page_content = ob_get_contents();
|
408 |
ob_end_clean();
|
409 |
|
410 |
+
// Replace page content - make sure it happens at (almost) the very end of
|
411 |
+
// page content filters (some themes are overly ambitious here)
|
412 |
+
add_filter( 'the_content', array( &$this, 'append_content' ), PHP_INT_MAX - 1 );
|
413 |
+
}
|
414 |
+
} else if( $out[2] == 'ai1ec' ) {
|
415 |
+
// if content has [ai1ec] shortcode, display the calendar page
|
416 |
+
$attr = shortcode_parse_atts( $out[3] );
|
417 |
+
// Proceed only if the page password is correctly entered OR
|
418 |
+
// the page doesn't require a password
|
419 |
+
if( ! post_password_required( $post->ID ) ) {
|
420 |
+
ob_start();
|
421 |
+
if( isset( $attr["view"] ) && ! empty( $attr["view"] ) ) {
|
422 |
+
switch( $attr["view"] ) {
|
423 |
+
case "monthly":
|
424 |
+
$_REQUEST["action"] = "ai1ec_month";
|
425 |
+
break;
|
426 |
+
case "weekly":
|
427 |
+
$_REQUEST["action"] = "ai1ec_week";
|
428 |
+
break;
|
429 |
+
case "agenda":
|
430 |
+
$_REQUEST["action"] = "ai1ec_agenda";
|
431 |
+
break;
|
432 |
+
}
|
433 |
+
}
|
434 |
+
|
435 |
+
// Parse categories by name
|
436 |
+
if( isset( $attr["cat_name"] ) && ! empty( $attr["cat_name"] ) ) {
|
437 |
+
foreach( explode( ',', $attr["cat_name"] ) as $c ) {
|
438 |
+
$cid = get_term_by( "name", $c, "events_categories" );
|
439 |
+
if( $cid !== false ) {
|
440 |
+
// if term was found, include it
|
441 |
+
$_REQUEST["ai1ec_cat_ids"] = $cid->term_id . ',';
|
442 |
+
}
|
443 |
+
}
|
444 |
+
// remove last comma only if there is some content in the var
|
445 |
+
if( isset( $_REQUEST["ai1ec_cat_ids"] ) && strlen( $_REQUEST["ai1ec_cat_ids"] ) > 2 ) {
|
446 |
+
$_REQUEST["ai1ec_cat_ids"] = substr( $_REQUEST["ai1ec_cat_ids"], 0, -1 );
|
447 |
+
}
|
448 |
+
}
|
449 |
+
|
450 |
+
// Parse categories by id
|
451 |
+
if( isset( $attr["cat_id"] ) && ! empty( $attr["cat_id"] ) ) {
|
452 |
+
// append cat_id to the ai1ec_cat_ids array
|
453 |
+
$_REQUEST["ai1ec_cat_ids"] = ( isset( $_REQUEST["ai1ec_cat_ids"] ) && strlen( $_REQUEST["ai1ec_cat_ids"] ) > 0 )
|
454 |
+
? $_REQUEST["ai1ec_cat_ids"] . ',' . $attr["cat_id"]
|
455 |
+
: $attr["cat_id"];
|
456 |
+
}
|
457 |
+
|
458 |
+
// Parse tags by name
|
459 |
+
if( isset( $attr["tag_name"] ) && ! empty( $attr["tag_name"] ) ) {
|
460 |
+
foreach( explode( ',', $attr["tag_name"] ) as $t ) {
|
461 |
+
$tid = get_term_by( "name", $t, "events_tags" );
|
462 |
+
if( $tid !== false ) {
|
463 |
+
// if term was found, include it
|
464 |
+
$_REQUEST["ai1ec_tag_ids"] = $tid->term_id . ',';
|
465 |
+
}
|
466 |
+
}
|
467 |
+
// remove last comma only if there is some content in the var
|
468 |
+
if( isset( $_REQUEST["ai1ec_tag_ids"] ) && strlen( $_REQUEST["ai1ec_tag_ids"] ) > 2 ) {
|
469 |
+
$_REQUEST["ai1ec_tag_ids"] = substr( $_REQUEST["ai1ec_tag_ids"], 0, -1 );
|
470 |
+
}
|
471 |
+
}
|
472 |
+
|
473 |
+
// Parse tags by id
|
474 |
+
if( isset( $attr["tag_id"] ) && ! empty( $attr["tag_id"] ) ) {
|
475 |
+
// append tag_id to the ai1ec_tag_ids array
|
476 |
+
$_REQUEST["ai1ec_tag_ids"] = ( isset( $_REQUEST["ai1ec_tag_ids"] ) && strlen( $_REQUEST["ai1ec_tag_ids"] ) > 0 )
|
477 |
+
? $_REQUEST["ai1ec_tag_ids"] . ',' . $attr["tag_id"]
|
478 |
+
: $attr["tag_id"];
|
479 |
+
}
|
480 |
+
|
481 |
+
// Parse posts by id
|
482 |
+
if( isset( $attr["post_id"] ) && ! empty( $attr["post_id"] ) ) {
|
483 |
+
$_REQUEST["ai1ec_post_ids"] = $attr["post_id"];
|
484 |
+
}
|
485 |
+
|
486 |
+
// Render view
|
487 |
+
$ai1ec_calendar_controller->view();
|
488 |
+
// Save page content to local variable
|
489 |
+
$this->page_content = ob_get_contents();
|
490 |
+
ob_end_clean();
|
491 |
+
|
492 |
// Replace page content - make sure it happens at (almost) the very end of
|
493 |
// page content filters (some themes are overly ambitious here)
|
494 |
add_filter( 'the_content', array( &$this, 'append_content' ), PHP_INT_MAX - 1 );
|
app/controller/class-ai1ec-events-controller.php
CHANGED
@@ -216,9 +216,12 @@ class Ai1ec_Events_Controller {
|
|
216 |
$rrule = '';
|
217 |
$rrule_text = '';
|
218 |
$repeating_event = false;
|
219 |
-
$
|
220 |
-
$
|
221 |
-
$
|
|
|
|
|
|
|
222 |
|
223 |
try
|
224 |
{
|
@@ -246,18 +249,15 @@ class Ai1ec_Events_Controller {
|
|
246 |
$contact_email = $event->contact_email;
|
247 |
$cost = $event->cost;
|
248 |
$rrule = empty( $event->recurrence_rules ) ? '' : $event->recurrence_rules;
|
249 |
-
$
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
$until = ( is_numeric( $until ) ) ? $until : strtotime( $until );
|
255 |
-
else if( $count = $rc->getCount() )
|
256 |
-
$count = ( is_numeric( $count ) ) ? $count : 100;
|
257 |
-
|
258 |
$rrule_text = $ai1ec_events_helper->rrule_to_text( $rrule );
|
259 |
-
|
260 |
-
|
|
|
261 |
}
|
262 |
catch( Ai1ec_Event_Not_Found $e ) {
|
263 |
// Event does not exist.
|
@@ -272,24 +272,20 @@ class Ai1ec_Events_Controller {
|
|
272 |
// ===============================
|
273 |
// = Display event time and date =
|
274 |
// ===============================
|
275 |
-
if( is_null( $until ) ) $until = gmmktime();
|
276 |
-
|
277 |
$args = array(
|
278 |
'all_day_event' => $all_day_event,
|
279 |
'start_timestamp' => $start_timestamp,
|
280 |
'end_timestamp' => $end_timestamp,
|
281 |
-
'row_daily' => $ai1ec_events_helper->row_daily(),
|
282 |
-
'row_weekly' => $ai1ec_events_helper->row_weekly(),
|
283 |
-
'row_monthly' => $ai1ec_events_helper->row_monthly(),
|
284 |
-
'row_yearly' => $ai1ec_events_helper->row_yearly(),
|
285 |
-
'count' => $ai1ec_events_helper->create_count_input( 'ai1ec_count', $count ) . __( 'times', AI1EC_PLUGIN_NAME ),
|
286 |
-
'end' => $ai1ec_events_helper->create_end_dropdown( $end ),
|
287 |
-
'until' => $until,
|
288 |
'repeating_event' => $repeating_event,
|
289 |
'rrule' => $rrule,
|
290 |
'rrule_text' => $rrule_text,
|
|
|
|
|
|
|
291 |
'timezone' => $timezone,
|
292 |
-
'
|
|
|
|
|
293 |
);
|
294 |
$ai1ec_view_helper->display( 'box_time_and_date.php', $args );
|
295 |
|
@@ -392,13 +388,17 @@ class Ai1ec_Events_Controller {
|
|
392 |
$contact_phone = isset( $_POST['ai1ec_contact_phone'] ) ? stripslashes( $_POST['ai1ec_contact_phone'] ) : '';
|
393 |
$contact_email = isset( $_POST['ai1ec_contact_email'] ) ? stripslashes( $_POST['ai1ec_contact_email'] ) : '';
|
394 |
|
395 |
-
$rrule
|
|
|
396 |
|
397 |
// =================================
|
398 |
// = Repeating event, assing rrule =
|
399 |
// =================================
|
400 |
if( isset( $_POST['ai1ec_repeat'] ) )
|
401 |
$rrule = $_POST['ai1ec_rrule'];
|
|
|
|
|
|
|
402 |
|
403 |
$is_new = false;
|
404 |
$event = null;
|
@@ -427,6 +427,7 @@ class Ai1ec_Events_Controller {
|
|
427 |
$event->contact_phone = $contact_phone;
|
428 |
$event->contact_email = $contact_email;
|
429 |
$event->recurrence_rules = $rrule;
|
|
|
430 |
$event->save( ! $is_new );
|
431 |
|
432 |
$ai1ec_events_helper->delete_event_cache( $post_id );
|
216 |
$rrule = '';
|
217 |
$rrule_text = '';
|
218 |
$repeating_event = false;
|
219 |
+
$exrule = '';
|
220 |
+
$exrule_text = '';
|
221 |
+
$exclude_event = false;
|
222 |
+
$exdate_event = false;
|
223 |
+
$exdate = '';
|
224 |
+
$exdate_text = '';
|
225 |
|
226 |
try
|
227 |
{
|
249 |
$contact_email = $event->contact_email;
|
250 |
$cost = $event->cost;
|
251 |
$rrule = empty( $event->recurrence_rules ) ? '' : $event->recurrence_rules;
|
252 |
+
$exrule = empty( $event->exception_rules ) ? '' : $event->exception_rules;
|
253 |
+
$repeating_event = empty( $rrule ) ? false : true;
|
254 |
+
$exclude_event = empty( $exrule ) ? false : true;
|
255 |
+
|
256 |
+
if( $repeating_event )
|
|
|
|
|
|
|
|
|
257 |
$rrule_text = $ai1ec_events_helper->rrule_to_text( $rrule );
|
258 |
+
|
259 |
+
if( $exclude_event )
|
260 |
+
$exrule_text = $ai1ec_events_helper->rrule_to_text( $exrule );
|
261 |
}
|
262 |
catch( Ai1ec_Event_Not_Found $e ) {
|
263 |
// Event does not exist.
|
272 |
// ===============================
|
273 |
// = Display event time and date =
|
274 |
// ===============================
|
|
|
|
|
275 |
$args = array(
|
276 |
'all_day_event' => $all_day_event,
|
277 |
'start_timestamp' => $start_timestamp,
|
278 |
'end_timestamp' => $end_timestamp,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
'repeating_event' => $repeating_event,
|
280 |
'rrule' => $rrule,
|
281 |
'rrule_text' => $rrule_text,
|
282 |
+
'exclude_event' => $exclude_event,
|
283 |
+
'exrule' => $exrule,
|
284 |
+
'exrule_text' => $exrule_text,
|
285 |
'timezone' => $timezone,
|
286 |
+
'exdate_event' => $exdate_event,
|
287 |
+
'exdate' => $exdate,
|
288 |
+
'exdate_text' => $exdate_text
|
289 |
);
|
290 |
$ai1ec_view_helper->display( 'box_time_and_date.php', $args );
|
291 |
|
388 |
$contact_phone = isset( $_POST['ai1ec_contact_phone'] ) ? stripslashes( $_POST['ai1ec_contact_phone'] ) : '';
|
389 |
$contact_email = isset( $_POST['ai1ec_contact_email'] ) ? stripslashes( $_POST['ai1ec_contact_email'] ) : '';
|
390 |
|
391 |
+
$rrule = null;
|
392 |
+
$exrule = null;
|
393 |
|
394 |
// =================================
|
395 |
// = Repeating event, assing rrule =
|
396 |
// =================================
|
397 |
if( isset( $_POST['ai1ec_repeat'] ) )
|
398 |
$rrule = $_POST['ai1ec_rrule'];
|
399 |
+
|
400 |
+
if( isset( $_POST['ai1ec_exclude'] ) )
|
401 |
+
$exrule = $_POST['ai1ec_exrule'];
|
402 |
|
403 |
$is_new = false;
|
404 |
$event = null;
|
427 |
$event->contact_phone = $contact_phone;
|
428 |
$event->contact_email = $contact_email;
|
429 |
$event->recurrence_rules = $rrule;
|
430 |
+
$event->exception_rules = $exrule;
|
431 |
$event->save( ! $is_new );
|
432 |
|
433 |
$ai1ec_events_helper->delete_event_cache( $post_id );
|
app/helper/class-ai1ec-events-helper.php
CHANGED
@@ -153,6 +153,9 @@ class Ai1ec_Events_Helper {
|
|
153 |
// Always cache initial instance
|
154 |
$evs[] = $e;
|
155 |
|
|
|
|
|
|
|
156 |
if( $event->recurrence_rules )
|
157 |
{
|
158 |
$count = 0;
|
@@ -167,8 +170,28 @@ class Ai1ec_Events_Helper {
|
|
167 |
$start = $next;
|
168 |
$e['start'] = $start;
|
169 |
$e['end'] = $start + $duration;
|
170 |
-
|
171 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
}
|
173 |
}
|
174 |
|
@@ -1620,6 +1643,92 @@ class Ai1ec_Events_Helper {
|
|
1620 |
|
1621 |
return $permalink;
|
1622 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1623 |
|
1624 |
/**
|
1625 |
* get_week_start_day_offset function
|
153 |
// Always cache initial instance
|
154 |
$evs[] = $e;
|
155 |
|
156 |
+
$_start = $event->start;
|
157 |
+
$_end = $event->end;
|
158 |
+
|
159 |
if( $event->recurrence_rules )
|
160 |
{
|
161 |
$count = 0;
|
170 |
$start = $next;
|
171 |
$e['start'] = $start;
|
172 |
$e['end'] = $start + $duration;
|
173 |
+
$excluded = false;
|
174 |
+
|
175 |
+
if( $event->exception_rules ) {
|
176 |
+
$_count = 0;
|
177 |
+
$_s = $_start;
|
178 |
+
$_f = new SG_iCal_Freq( $event->exception_rules, $_start );
|
179 |
+
$_f->firstOccurrence();
|
180 |
+
while( ( $_next = $_f->nextOccurrence( $_s ) ) > 0 && $_count < 1000 ) {
|
181 |
+
$_count++;
|
182 |
+
$_s = $_next;
|
183 |
+
// only add the event if the start time of the
|
184 |
+
// reccuring event is different than the start time
|
185 |
+
// of the excluding event
|
186 |
+
if( $start == $_s ) {
|
187 |
+
$excluded = true;
|
188 |
+
break;
|
189 |
+
}
|
190 |
+
}
|
191 |
+
}
|
192 |
+
|
193 |
+
if( $excluded == false )
|
194 |
+
$evs[] = $e;
|
195 |
}
|
196 |
}
|
197 |
|
1643 |
|
1644 |
return $permalink;
|
1645 |
}
|
1646 |
+
|
1647 |
+
/**
|
1648 |
+
* get_repeat_box function
|
1649 |
+
*
|
1650 |
+
* @return string
|
1651 |
+
**/
|
1652 |
+
function get_repeat_box() {
|
1653 |
+
global $ai1ec_view_helper;
|
1654 |
+
|
1655 |
+
$repeat = (int) $_REQUEST["repeat"];
|
1656 |
+
$repeat = $repeat == 1 ? 1 : 0;
|
1657 |
+
$post_id = (int) $_REQUEST["post_id"];
|
1658 |
+
$count = 100;
|
1659 |
+
$end = null;
|
1660 |
+
$until = gmmktime();
|
1661 |
+
|
1662 |
+
// try getting the event
|
1663 |
+
try {
|
1664 |
+
$event = new Ai1ec_Event( $post_id );
|
1665 |
+
$rule = '';
|
1666 |
+
|
1667 |
+
if( $repeat ) {
|
1668 |
+
$rule = empty( $event->recurrence_rules ) ? '' : $event->recurrence_rules;
|
1669 |
+
} else {
|
1670 |
+
$rule = empty( $event->exception_rules ) ? '' : $event->exception_rules;
|
1671 |
+
}
|
1672 |
+
|
1673 |
+
$rc = new SG_iCal_Recurrence( new SG_iCal_Line( 'RRULE:' . $rule ) );
|
1674 |
+
|
1675 |
+
if( $until = $rc->getUntil() ) {
|
1676 |
+
$until = ( is_numeric( $until ) ) ? $until : strtotime( $until );
|
1677 |
+
}
|
1678 |
+
else if( $count = $rc->getCount() ) {
|
1679 |
+
$count = ( is_numeric( $count ) ) ? $count : 100;
|
1680 |
+
}
|
1681 |
+
} catch( Ai1ec_Event_Not_Found $e ) { /* event wasn't found, keep defaults */ }
|
1682 |
+
|
1683 |
+
$args = array(
|
1684 |
+
'row_daily' => $this->row_daily(),
|
1685 |
+
'row_weekly' => $this->row_weekly(),
|
1686 |
+
'row_monthly' => $this->row_monthly(),
|
1687 |
+
'row_yearly' => $this->row_yearly(),
|
1688 |
+
'count' => $this->create_count_input( 'ai1ec_count', $count ) . __( 'times', AI1EC_PLUGIN_NAME ),
|
1689 |
+
'end' => $this->create_end_dropdown( $end ),
|
1690 |
+
'until' => $until,
|
1691 |
+
'repeat' => $repeat
|
1692 |
+
);
|
1693 |
+
$output = array(
|
1694 |
+
"error" => false,
|
1695 |
+
"message" => $ai1ec_view_helper->get_view( 'box_repeat.php', $args ),
|
1696 |
+
"repeat" => $repeat
|
1697 |
+
);
|
1698 |
+
|
1699 |
+
echo json_encode( $output );
|
1700 |
+
exit();
|
1701 |
+
}
|
1702 |
+
|
1703 |
+
/**
|
1704 |
+
* get_date_picker_box function
|
1705 |
+
*
|
1706 |
+
* @return string
|
1707 |
+
**/
|
1708 |
+
function get_date_picker_box() {
|
1709 |
+
global $ai1ec_view_helper;
|
1710 |
+
|
1711 |
+
$dates = '';
|
1712 |
+
|
1713 |
+
$args = array(
|
1714 |
+
'dates' => $dates
|
1715 |
+
);
|
1716 |
+
|
1717 |
+
$output = array(
|
1718 |
+
"error" => false,
|
1719 |
+
"message" => $ai1ec_view_helper->get_view( 'box_date_picker.php', $args ),
|
1720 |
+
);
|
1721 |
+
|
1722 |
+
echo json_encode( $output );
|
1723 |
+
exit();
|
1724 |
+
}
|
1725 |
+
|
1726 |
+
/**
|
1727 |
+
* shortcode function
|
1728 |
+
*
|
1729 |
+
* @return void
|
1730 |
+
**/
|
1731 |
+
function shortcode( $atts, $content = "" ) { }
|
1732 |
|
1733 |
/**
|
1734 |
* get_week_start_day_offset function
|
app/view/box_date_picker.php
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="ai1ec-date-picker-holder">
|
2 |
+
<div class="ai1ec-date-picker-calendar">
|
3 |
+
<label for="ai1ec-date-picker-calendar">
|
4 |
+
<?php _e( 'Select dates', AI1EC_PLUGIN_NAME ) ?>:
|
5 |
+
</label>
|
6 |
+
<input type="text" class="ai1ec-date-input" id="ai1ec-date-picker-input" style="display: none;" />
|
7 |
+
<input type="hidden" name="ai1ec_date_picker_input" id="ai1ec-date-picker-time" value="" />
|
8 |
+
</div>
|
9 |
+
<div class="ai1ec-date-picker-dates"><?php echo $dates ?></div>
|
10 |
+
</div>
|
app/view/box_repeat.php
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<ul class="ai1ec_repeat_tabs">
|
2 |
+
<li><a href="#ai1ec_daily_content" id="ai1ec_daily_tab" class="ai1ec_tab ai1ec_active"><?php _e( 'Daily', AI1EC_PLUGIN_NAME ) ;?></a></li>
|
3 |
+
<li><a href="#ai1ec_weekly_content" id="ai1ec_weekly_tab" class="ai1ec_tab"><?php _e( 'Weekly', AI1EC_PLUGIN_NAME ) ;?></a></li>
|
4 |
+
<li><a href="#ai1ec_monthly_content" id="ai1ec_monthly_tab" class="ai1ec_tab"><?php _e( 'Monthly', AI1EC_PLUGIN_NAME ) ;?></a></li>
|
5 |
+
<li><a href="#ai1ec_yearly_content" id="ai1ec_yearly_tab" class="ai1ec_tab"><?php _e( 'Yearly', AI1EC_PLUGIN_NAME ) ;?></a></li>
|
6 |
+
</ul>
|
7 |
+
<div style="clear:both;"></div>
|
8 |
+
<div id="ai1ec_daily_content" class="ai1ec_tab_content" title="daily">
|
9 |
+
<?php echo $row_daily ?>
|
10 |
+
<div id="ai1ec_repeat_tab_append">
|
11 |
+
<div id="ai1ec_ending_box" class="ai1ec_repeat_centered_content">
|
12 |
+
<div id="ai1ec_end_holder">
|
13 |
+
<label for="ai1ec_end">
|
14 |
+
<?php _e( 'End', AI1EC_PLUGIN_NAME ) ?>:
|
15 |
+
</label>
|
16 |
+
<?php echo $end ?>
|
17 |
+
</div>
|
18 |
+
<div style="clear:both;"></div>
|
19 |
+
<div id="ai1ec_count_holder">
|
20 |
+
<label for="ai1ec_count">
|
21 |
+
<?php _e( 'Ending after', AI1EC_PLUGIN_NAME ) ?>:
|
22 |
+
</label>
|
23 |
+
<?php echo $count; ?>
|
24 |
+
</div>
|
25 |
+
<div style="clear:both;"></div>
|
26 |
+
<div id="ai1ec_until_holder">
|
27 |
+
<label for="ai1ec_until-date-input">
|
28 |
+
<?php _e( 'On date', AI1EC_PLUGIN_NAME ) ?>:
|
29 |
+
</label>
|
30 |
+
<input type="text" class="ai1ec-date-input" id="ai1ec_until-date-input" />
|
31 |
+
<input type="hidden" name="ai1ec_until_time" id="ai1ec_until-time" value="<?php echo !is_null( $until ) && $until > 0 ? $until : '' ?>" />
|
32 |
+
</div>
|
33 |
+
<div style="clear:both;"></div>
|
34 |
+
</div>
|
35 |
+
<div id="ai1ec_apply_button_holder">
|
36 |
+
<input type="button" name="ai1ec_none_button" value="<?php _e( 'Apply', AI1EC_PLUGIN_NAME ) ?>" class="ai1ec_repeat_apply button button-highlighted" />
|
37 |
+
<a href="#ai1ec_cancel" class="ai1ec_repeat_cancel"><?php _e( 'Cancel', AI1EC_PLUGIN_NAME ) ?></a>
|
38 |
+
</div>
|
39 |
+
<div style="clear:both;"></div>
|
40 |
+
</div>
|
41 |
+
<div style="clear:both;"></div>
|
42 |
+
</div>
|
43 |
+
<div id="ai1ec_weekly_content" class="ai1ec_tab_content" title="weekly">
|
44 |
+
<?php echo $row_weekly ?>
|
45 |
+
</div>
|
46 |
+
<div id="ai1ec_monthly_content" class="ai1ec_tab_content" title="monthly">
|
47 |
+
<?php echo $row_monthly ?>
|
48 |
+
</div>
|
49 |
+
<div id="ai1ec_yearly_content" class="ai1ec_tab_content" title="yearly">
|
50 |
+
<?php echo $row_yearly ?>
|
51 |
+
</div>
|
52 |
+
<input type="hidden" id="ai1ec_is_box_repeat" value="<?php echo $repeat ?>" />
|
53 |
+
<div style="clear:both;"></div>
|
app/view/box_time_and_date.php
CHANGED
@@ -52,61 +52,36 @@
|
|
52 |
</div>
|
53 |
</td>
|
54 |
</tr>
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
<input type="text" class="ai1ec-date-input" id="ai1ec_until-date-input" />
|
87 |
-
<input type="hidden" name="ai1ec_until_time" id="ai1ec_until-time" value="<?php echo !is_null( $until ) && $until > 0 ? $until : '' ?>" />
|
88 |
-
</div>
|
89 |
-
<div style="clear:both;"></div>
|
90 |
-
</div>
|
91 |
-
<div id="ai1ec_apply_button_holder">
|
92 |
-
<input type="button" name="ai1ec_none_button" value="<?php _e( 'Apply', AI1EC_PLUGIN_NAME ) ;?>" class="ai1ec_repeat_apply button button-highlighted" />
|
93 |
-
<a href="#ai1ec_cancel" class="ai1ec_repeat_cancel"><?php _e( 'Cancel', AI1EC_PLUGIN_NAME ) ?></a>
|
94 |
-
</div>
|
95 |
-
<div style="clear:both;"></div>
|
96 |
-
</div>
|
97 |
-
<div style="clear:both;"></div>
|
98 |
-
</div>
|
99 |
-
<div id="ai1ec_weekly_content" class="ai1ec_tab_content" title="weekly">
|
100 |
-
<?php echo $row_weekly ?>
|
101 |
-
</div>
|
102 |
-
<div id="ai1ec_monthly_content" class="ai1ec_tab_content" title="monthly">
|
103 |
-
<?php echo $row_monthly ?>
|
104 |
-
</div>
|
105 |
-
<div id="ai1ec_yearly_content" class="ai1ec_tab_content" title="yearly">
|
106 |
-
<?php echo $row_yearly ?>
|
107 |
-
</div>
|
108 |
-
<div style="clear:both;"></div>
|
109 |
-
</div>
|
110 |
-
|
111 |
</tbody>
|
112 |
</table>
|
52 |
</div>
|
53 |
</td>
|
54 |
</tr>
|
55 |
+
<tr>
|
56 |
+
<td>
|
57 |
+
<input type="checkbox" name="ai1ec_exclude" id="ai1ec_exclude" value="1" <?php echo $exclude_event ? 'checked="checked"' : '' ?>/>
|
58 |
+
<input type="hidden" name="ai1ec_exrule" id="ai1ec_exrule" value="<?php echo $exrule ?>" />
|
59 |
+
<label for="ai1ec_exclude" id="ai1ec_exclude_label">
|
60 |
+
<?php _e( 'Exclude', AI1EC_PLUGIN_NAME ); echo $exclude_event ? ':' : '...' ?>
|
61 |
+
</label>
|
62 |
+
</td>
|
63 |
+
<td>
|
64 |
+
<div id="ai1ec_exclude_text">
|
65 |
+
<a href="#ai1ec_exclude_box"><?php echo $exrule_text ?></a>
|
66 |
+
</div>
|
67 |
+
</td>
|
68 |
+
</tr>
|
69 |
+
<!--
|
70 |
+
<tr>
|
71 |
+
<td>
|
72 |
+
<input type="checkbox" name="ai1ec_exclude_date" id="ai1ec_exclude_date" value="1" <?php echo $exdate_event ? 'checked="checked"' : '' ?>/>
|
73 |
+
<input type="hidden" name="ai1ec_exdate" id="ai1ec_exdate" value="<?php echo $exdate ?>" />
|
74 |
+
<label for="ai1ec_exclude_date" id="ai1ec_exclude_date_label">
|
75 |
+
<?php _e( 'Exclude dates', AI1EC_PLUGIN_NAME ); echo $exdate_event ? ':' : '...' ?>
|
76 |
+
</label>
|
77 |
+
</td>
|
78 |
+
<td>
|
79 |
+
<div id="ai1ec_exclude_date_text">
|
80 |
+
<a href="#ai1ec_exclude_date_box"><?php echo $exdate_text ?></a>
|
81 |
+
</div>
|
82 |
+
</td>
|
83 |
+
</tr>
|
84 |
+
-->
|
85 |
+
<div id="ai1ec_repeat_box"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
</tbody>
|
87 |
</table>
|
app/view/calendar.php
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<!-- START All-in-One Event Calendar Plugin - Version 1.
|
2 |
<table class="ai1ec-calendar-toolbar">
|
3 |
<tbody>
|
4 |
<tr>
|
1 |
+
<!-- START All-in-One Event Calendar Plugin - Version 1.3 -->
|
2 |
<table class="ai1ec-calendar-toolbar">
|
3 |
<tbody>
|
4 |
<tr>
|
css/add_new_event.css
CHANGED
@@ -404,10 +404,10 @@ ul.ai1ec_repeat_tabs li a.ai1ec_active {
|
|
404 |
.ai1ec_repeat_monthly_type label {
|
405 |
float: none;
|
406 |
}
|
407 |
-
#ai1ec_ending_box, #ai1ec_end_holder, #ai1ec_repeat_text {
|
408 |
float: left;
|
409 |
}
|
410 |
-
#ai1ec_repeat_text a {
|
411 |
text-decoration: none;
|
412 |
border-bottom: 1px dashed red;
|
413 |
}
|
@@ -437,4 +437,11 @@ a.ai1ec_repeat_cancel:hover {
|
|
437 |
}
|
438 |
div.growlUI h1, div.growlUI h2 {
|
439 |
color: white; padding: 5px 5px 5px 75px; text-align: left
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
440 |
}
|
404 |
.ai1ec_repeat_monthly_type label {
|
405 |
float: none;
|
406 |
}
|
407 |
+
#ai1ec_ending_box, #ai1ec_end_holder, #ai1ec_repeat_text, #ai1ec_exclude_text {
|
408 |
float: left;
|
409 |
}
|
410 |
+
#ai1ec_repeat_text a, #ai1ec_exclude_text a {
|
411 |
text-decoration: none;
|
412 |
border-bottom: 1px dashed red;
|
413 |
}
|
437 |
}
|
438 |
div.growlUI h1, div.growlUI h2 {
|
439 |
color: white; padding: 5px 5px 5px 75px; text-align: left
|
440 |
+
}
|
441 |
+
/* General AJAX */
|
442 |
+
.ai1ec-repeat-box-loading {
|
443 |
+
padding-left: 163px;
|
444 |
+
width: 31px;
|
445 |
+
height: 31px;
|
446 |
+
background: url( ../img/ajax-loader.gif ) no-repeat center right;
|
447 |
}
|
js/add_new_event.js
CHANGED
@@ -1,3 +1,287 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
jQuery( function( $ ){
|
2 |
|
3 |
/**
|
@@ -30,29 +314,6 @@ jQuery( function( $ ){
|
|
30 |
}
|
31 |
$.timespan( data );
|
32 |
|
33 |
-
// Initialize inputdate plugin on our "until" date input.
|
34 |
-
data = {
|
35 |
-
start_date_input: '#ai1ec_until-date-input',
|
36 |
-
start_time: '#ai1ec_until-time',
|
37 |
-
date_format: ai1ec_add_new_event.date_format,
|
38 |
-
month_names: ai1ec_add_new_event.month_names,
|
39 |
-
day_names: ai1ec_add_new_event.day_names,
|
40 |
-
week_start_day: ai1ec_add_new_event.week_start_day,
|
41 |
-
twentyfour_hour: ai1ec_add_new_event.twentyfour_hour,
|
42 |
-
now: now
|
43 |
-
}
|
44 |
-
$.inputdate( data );
|
45 |
-
|
46 |
-
// Initialize count range slider
|
47 |
-
$( '#ai1ec_count, #ai1ec_daily_count, #ai1ec_weekly_count, #ai1ec_monthly_count, #ai1ec_yearly_count' ).rangeinput( {
|
48 |
-
css: {
|
49 |
-
input: 'ai1ec-range',
|
50 |
-
slider: 'ai1ec-slider',
|
51 |
-
progress: 'ai1ec-progress',
|
52 |
-
handle: 'ai1ec-handle'
|
53 |
-
}
|
54 |
-
} );
|
55 |
-
|
56 |
/**
|
57 |
* Google map setup
|
58 |
*/
|
@@ -68,70 +329,14 @@ jQuery( function( $ ){
|
|
68 |
//south pacific = map.setCenter(new GLatLng(-24, 134), 3);
|
69 |
//north america = map.setCenter(new GLatLng(50, -114), 3);
|
70 |
//latin america = map.setCenter(new GLatLng(-20, -70), 3);
|
71 |
-
|
72 |
-
|
73 |
zoom: 0,
|
74 |
mapTypeId: google.maps.MapTypeId.ROADMAP,
|
75 |
center: ai1ec_default_location
|
76 |
};
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
/**
|
81 |
-
* Given a location, update the address field with a reformatted version,
|
82 |
-
* update hidden location fields with address data, and center map on
|
83 |
-
* new location.
|
84 |
-
*
|
85 |
-
* @param object result single result of a Google geocode() call
|
86 |
-
*/
|
87 |
-
function ai1ec_update_address( result )
|
88 |
-
{
|
89 |
-
ai1ec_map.setCenter( result.geometry.location );
|
90 |
-
ai1ec_map.setZoom( 15 );
|
91 |
-
ai1ec_marker.setPosition( result.geometry.location );
|
92 |
-
$( '#ai1ec_address' ).val( result.formatted_address );
|
93 |
-
|
94 |
-
var street_number = '';
|
95 |
-
var street_name = '';
|
96 |
-
var city = '';
|
97 |
-
var state = '';
|
98 |
-
var postal_code = 0;
|
99 |
-
var country = 0;
|
100 |
-
var province = '';
|
101 |
-
|
102 |
-
for( var i = 0; i < result.address_components.length; i++ ) {
|
103 |
-
switch( result.address_components[i].types[0] ) {
|
104 |
-
case 'street_number':
|
105 |
-
street_number = result.address_components[i].long_name;
|
106 |
-
break;
|
107 |
-
case 'route':
|
108 |
-
street_name = result.address_components[i].long_name;
|
109 |
-
break;
|
110 |
-
case 'locality':
|
111 |
-
city = result.address_components[i].long_name;
|
112 |
-
break;
|
113 |
-
case 'administrative_area_level_1':
|
114 |
-
province = result.address_components[i].long_name;
|
115 |
-
break;
|
116 |
-
case 'postal_code':
|
117 |
-
postal_code = result.address_components[i].long_name;
|
118 |
-
break;
|
119 |
-
case 'country':
|
120 |
-
country = result.address_components[i].long_name;
|
121 |
-
break;
|
122 |
-
}
|
123 |
-
}
|
124 |
-
// Combine street number with street address
|
125 |
-
var address = street_number.length > 0 ? street_number + ' ' : '';
|
126 |
-
address += street_name.length > 0 ? street_name : '';
|
127 |
-
// Clean up postal code if necessary
|
128 |
-
postal_code = postal_code != 0 ? postal_code : '';
|
129 |
-
|
130 |
-
$( '#ai1ec_city' ).val( city );
|
131 |
-
$( '#ai1ec_province' ).val( province );
|
132 |
-
$( '#ai1ec_postal_code' ).val( postal_code );
|
133 |
-
$( '#ai1ec_country' ).val( country );
|
134 |
-
}
|
135 |
|
136 |
$( '#ai1ec_address' )
|
137 |
/**
|
@@ -195,75 +400,14 @@ jQuery( function( $ ){
|
|
195 |
}
|
196 |
});
|
197 |
|
198 |
-
/**
|
199 |
-
* Show/hide elements that show selectors for ending until/after events
|
200 |
-
*/
|
201 |
-
function show_end_fields() {
|
202 |
-
var selected = $( '#ai1ec_end option:selected' ).val();
|
203 |
-
switch( selected ) {
|
204 |
-
// Never selected, hide end fields
|
205 |
-
case '0':
|
206 |
-
hide_all_end_fields();
|
207 |
-
break;
|
208 |
-
// After selected
|
209 |
-
case '1':
|
210 |
-
if( $( '#ai1ec_count_holder' ).css( 'display' ) == 'none' ) {
|
211 |
-
hide_all_end_fields();
|
212 |
-
$( '#ai1ec_count_holder' ).fadeIn();
|
213 |
-
}
|
214 |
-
break;
|
215 |
-
// On date selected
|
216 |
-
case '2':
|
217 |
-
if( $( '#ai1ec_until_holder' ).css( 'display' ) == 'none' ) {
|
218 |
-
hide_all_end_fields();
|
219 |
-
$( '#ai1ec_until_holder' ).fadeIn();
|
220 |
-
}
|
221 |
-
break;
|
222 |
-
}
|
223 |
-
}
|
224 |
-
/**
|
225 |
-
* Show/hide elements that show selectors for repeating events
|
226 |
-
*/
|
227 |
-
function show_all_repeat_fields() {
|
228 |
-
$( '#ai1ec_end_holder' ).fadeIn();
|
229 |
-
show_end_fields();
|
230 |
-
}
|
231 |
-
function hide_all_repeat_fields() {
|
232 |
-
hide_all_end_fields();
|
233 |
-
hide_custom_repeat_elements();
|
234 |
-
hide_frequency();
|
235 |
-
$( '#ai1ec_end_holder' ).fadeOut();
|
236 |
-
}
|
237 |
-
function hide_all_end_fields() {
|
238 |
-
$( '#ai1ec_count_holder, #ai1ec_until_holder' ).hide();
|
239 |
-
}
|
240 |
-
|
241 |
-
function ai1ec_selector( selector ) {
|
242 |
-
$( selector + ' > li' ).click( function() {
|
243 |
-
if( $( this ).hasClass( 'ai1ec_selected' ) ) {
|
244 |
-
$( this ).removeClass( 'ai1ec_selected' );
|
245 |
-
} else {
|
246 |
-
$( this ).addClass( 'ai1ec_selected' );
|
247 |
-
}
|
248 |
-
var data = new Array();
|
249 |
-
$( selector + ' > li' ).each( function() {
|
250 |
-
if( $( this ).hasClass( 'ai1ec_selected' ) ) {
|
251 |
-
var value = $( this ).children( 'input[type="hidden"]:first' ).val();
|
252 |
-
data.push( value );
|
253 |
-
}
|
254 |
-
});
|
255 |
-
$( selector ).next().val( data.join() );
|
256 |
-
});
|
257 |
-
}
|
258 |
-
|
259 |
ai1ec_selector( '#ai1ec_weekly_date_select' );
|
260 |
ai1ec_selector( '#ai1ec_montly_date_select' );
|
261 |
ai1ec_selector( '#ai1ec_yearly_date_select' );
|
262 |
-
|
263 |
// ========================
|
264 |
// = End dropdown clicked =
|
265 |
// ========================
|
266 |
-
$( '#ai1ec_end' ).
|
267 |
|
268 |
/**
|
269 |
* Bottom publish button click event handler
|
@@ -273,7 +417,7 @@ jQuery( function( $ ){
|
|
273 |
$( '#publish' ).trigger( 'click' );
|
274 |
});
|
275 |
}
|
276 |
-
|
277 |
$( '.ai1ec_tab' ).live( 'click', function() {
|
278 |
if( ! $( this ).hasClass( 'ai1ec_active' ) ) {
|
279 |
var $active_tab = $( '.ai1ec_repeat_tabs > li > a.ai1ec_active' );
|
@@ -291,6 +435,7 @@ jQuery( function( $ ){
|
|
291 |
}
|
292 |
return false;
|
293 |
});
|
|
|
294 |
$( '.ai1ec_repeat_apply' ).live( 'click', function() {
|
295 |
var $button = $( this );
|
296 |
var rule = '';
|
@@ -338,7 +483,7 @@ jQuery( function( $ ){
|
|
338 |
rule += 'BYMONTH=' + months + ';';
|
339 |
break;
|
340 |
}
|
341 |
-
|
342 |
var ending = $( '#ai1ec_end' ).val();
|
343 |
// After
|
344 |
if( ending == '1' ) {
|
@@ -377,83 +522,115 @@ jQuery( function( $ ){
|
|
377 |
data,
|
378 |
function( response ) {
|
379 |
if( response.error ) {
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
if( txt.lastIndexOf( '...' ) == -1 ) {
|
385 |
-
txt = txt.substring( 0, txt.length - 1 );
|
386 |
-
$( '#ai1ec_repeat_label' ).text( txt + '...' );
|
387 |
}
|
388 |
} else {
|
389 |
-
$( '#
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
txt = txt.substring( 0, txt.length - 3 );
|
394 |
-
$( '#ai1ec_repeat_label' ).text( txt + ':' );
|
395 |
}
|
396 |
-
$button.attr( 'disabled', false );
|
397 |
-
$( '#ai1ec_repeat_text > a' ).fadeOut( 'fast', function() {
|
398 |
-
$( this ).text( response.message );
|
399 |
-
$( this ).fadeIn( 'fast' );
|
400 |
-
})
|
401 |
}
|
402 |
},
|
403 |
'json'
|
404 |
);
|
405 |
-
})
|
406 |
-
|
407 |
-
$( '#ai1ec_repeat_text > a' ).live( 'click', function() {
|
408 |
-
if( ! $( '#ai1ec_repeat' ).is( ':checked' ) ) {
|
409 |
-
$( '#ai1ec_repeat' ).attr( 'checked', true );
|
410 |
-
var txt = $.trim( $( '#ai1ec_repeat_label' ).text() );
|
411 |
-
txt = txt.substring( 0, txt.length - 3 );
|
412 |
-
$( '#ai1ec_repeat_label' ).text( txt + ':' );
|
413 |
-
}
|
414 |
-
ai1ec_show_repeat_tabs();
|
415 |
-
return false;
|
416 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
417 |
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
$( '#
|
426 |
-
}
|
427 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
428 |
$( 'a.ai1ec_repeat_cancel' ).live( 'click', function() {
|
429 |
-
if(
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
}
|
436 |
}
|
437 |
$.unblockUI();
|
438 |
return false;
|
439 |
});
|
440 |
|
441 |
-
$( '#ai1ec_monthly_type_bymonthday, #ai1ec_monthly_type_byday' ).
|
442 |
$( '#ai1c_repeat_monthly_bymonthday' ).toggle();
|
443 |
$( '#ai1c_repeat_monthly_byday' ).toggle();
|
444 |
})
|
445 |
-
|
446 |
-
var ai1ec_show_repeat_tabs = function() {
|
447 |
-
$.blockUI( {
|
448 |
-
message: $('#ai1ec_repeat_box'),
|
449 |
-
css: {
|
450 |
-
width: '358px',
|
451 |
-
border: '0',
|
452 |
-
background: 'transparent',
|
453 |
-
cursor: 'normal'
|
454 |
-
}
|
455 |
-
});
|
456 |
-
}
|
457 |
}
|
458 |
|
459 |
/**
|
@@ -637,18 +814,5 @@ jQuery( function( $ ){
|
|
637 |
'json'
|
638 |
);
|
639 |
});
|
640 |
-
|
641 |
-
/**
|
642 |
-
* isUrl checks to see if the passed parameter is a valid url
|
643 |
-
* and returns true on access and false on failure
|
644 |
-
*
|
645 |
-
* @param String s String to validate
|
646 |
-
*
|
647 |
-
* @return boolean True if the string is a valid url, false otherwise
|
648 |
-
*/
|
649 |
-
function isUrl( s ) {
|
650 |
-
var regexp = /(http|https|webcal):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/
|
651 |
-
return regexp.test(s);
|
652 |
-
};
|
653 |
}
|
654 |
});
|
1 |
+
// Global Variables
|
2 |
+
var ai1ec_geocoder, ai1ec_default_location, ai1ec_myOptions, ai1ec_map, ai1ec_marker;
|
3 |
+
|
4 |
+
/**
|
5 |
+
* Given a location, update the address field with a reformatted version,
|
6 |
+
* update hidden location fields with address data, and center map on
|
7 |
+
* new location.
|
8 |
+
*
|
9 |
+
* @param object result single result of a Google geocode() call
|
10 |
+
*/
|
11 |
+
var ai1ec_update_address = function( result ) {
|
12 |
+
ai1ec_map.setCenter( result.geometry.location );
|
13 |
+
ai1ec_map.setZoom( 15 );
|
14 |
+
ai1ec_marker.setPosition( result.geometry.location );
|
15 |
+
jQuery( '#ai1ec_address' ).val( result.formatted_address );
|
16 |
+
|
17 |
+
var street_number = '',
|
18 |
+
street_name = '',
|
19 |
+
city = '',
|
20 |
+
state = '',
|
21 |
+
postal_code = 0,
|
22 |
+
country = 0,
|
23 |
+
province = '';
|
24 |
+
|
25 |
+
for( var i = 0; i < result.address_components.length; i++ ) {
|
26 |
+
switch( result.address_components[i].types[0] ) {
|
27 |
+
case 'street_number':
|
28 |
+
street_number = result.address_components[i].long_name;
|
29 |
+
break;
|
30 |
+
case 'route':
|
31 |
+
street_name = result.address_components[i].long_name;
|
32 |
+
break;
|
33 |
+
case 'locality':
|
34 |
+
city = result.address_components[i].long_name;
|
35 |
+
break;
|
36 |
+
case 'administrative_area_level_1':
|
37 |
+
province = result.address_components[i].long_name;
|
38 |
+
break;
|
39 |
+
case 'postal_code':
|
40 |
+
postal_code = result.address_components[i].long_name;
|
41 |
+
break;
|
42 |
+
case 'country':
|
43 |
+
country = result.address_components[i].long_name;
|
44 |
+
break;
|
45 |
+
}
|
46 |
+
}
|
47 |
+
// Combine street number with street address
|
48 |
+
var address = street_number.length > 0 ? street_number + ' ' : '';
|
49 |
+
address += street_name.length > 0 ? street_name : '';
|
50 |
+
// Clean up postal code if necessary
|
51 |
+
postal_code = postal_code != 0 ? postal_code : '';
|
52 |
+
|
53 |
+
jQuery( '#ai1ec_city' ).val( city );
|
54 |
+
jQuery( '#ai1ec_province' ).val( province );
|
55 |
+
jQuery( '#ai1ec_postal_code' ).val( postal_code );
|
56 |
+
jQuery( '#ai1ec_country' ).val( country );
|
57 |
+
};
|
58 |
+
|
59 |
+
/**
|
60 |
+
* Show/hide elements that show selectors for ending until/after events
|
61 |
+
*/
|
62 |
+
var show_end_fields = function() {
|
63 |
+
var selected = jQuery( '#ai1ec_end option:selected' ).val();
|
64 |
+
switch( selected ) {
|
65 |
+
// Never selected, hide end fields
|
66 |
+
case '0':
|
67 |
+
hide_all_end_fields();
|
68 |
+
break;
|
69 |
+
// After selected
|
70 |
+
case '1':
|
71 |
+
if( jQuery( '#ai1ec_count_holder' ).css( 'display' ) == 'none' ) {
|
72 |
+
hide_all_end_fields();
|
73 |
+
jQuery( '#ai1ec_count_holder' ).fadeIn();
|
74 |
+
}
|
75 |
+
break;
|
76 |
+
// On date selected
|
77 |
+
case '2':
|
78 |
+
if( jQuery( '#ai1ec_until_holder' ).css( 'display' ) == 'none' ) {
|
79 |
+
hide_all_end_fields();
|
80 |
+
jQuery( '#ai1ec_until_holder' ).fadeIn();
|
81 |
+
}
|
82 |
+
break;
|
83 |
+
}
|
84 |
+
};
|
85 |
+
|
86 |
+
/**
|
87 |
+
* Show/hide elements that show selectors for repeating events
|
88 |
+
*/
|
89 |
+
var show_all_repeat_fields = function() {
|
90 |
+
jQuery( '#ai1ec_end_holder' ).fadeIn();
|
91 |
+
show_end_fields();
|
92 |
+
};
|
93 |
+
|
94 |
+
var hide_all_repeat_fields = function() {
|
95 |
+
hide_all_end_fields();
|
96 |
+
hide_custom_repeat_elements();
|
97 |
+
hide_frequency();
|
98 |
+
jQuery( '#ai1ec_end_holder' ).fadeOut();
|
99 |
+
};
|
100 |
+
|
101 |
+
var hide_all_end_fields = function() {
|
102 |
+
jQuery( '#ai1ec_count_holder, #ai1ec_until_holder' ).hide();
|
103 |
+
};
|
104 |
+
|
105 |
+
var ai1ec_selector = function( selector ) {
|
106 |
+
jQuery( selector + ' > li' ).live( 'click', function() {
|
107 |
+
if( jQuery( this ).hasClass( 'ai1ec_selected' ) ) {
|
108 |
+
jQuery( this ).removeClass( 'ai1ec_selected' );
|
109 |
+
} else {
|
110 |
+
jQuery( this ).addClass( 'ai1ec_selected' );
|
111 |
+
}
|
112 |
+
var data = new Array();
|
113 |
+
jQuery( selector + ' > li' ).each( function() {
|
114 |
+
if( jQuery( this ).hasClass( 'ai1ec_selected' ) ) {
|
115 |
+
var value = jQuery( this ).children( 'input[type="hidden"]:first' ).val();
|
116 |
+
data.push( value );
|
117 |
+
}
|
118 |
+
});
|
119 |
+
jQuery( selector ).next().val( data.join() );
|
120 |
+
});
|
121 |
+
};
|
122 |
+
|
123 |
+
var ai1ec_repeat_form_success = function( s1, s2, s3, rule, button, response ) {
|
124 |
+
jQuery( s1 ).val( rule );
|
125 |
+
jQuery.unblockUI();
|
126 |
+
var txt = jQuery.trim( jQuery( s2 ).text() );
|
127 |
+
if( txt.lastIndexOf( ':' ) == -1 ) {
|
128 |
+
txt = txt.substring( 0, txt.length - 3 );
|
129 |
+
jQuery( s2 ).text( txt + ':' );
|
130 |
+
}
|
131 |
+
jQuery(button).attr( 'disabled', false );
|
132 |
+
jQuery( s3 ).fadeOut( 'fast', function() {
|
133 |
+
jQuery( this ).text( response.message );
|
134 |
+
jQuery( this ).fadeIn( 'fast' );
|
135 |
+
});
|
136 |
+
};
|
137 |
+
|
138 |
+
var ai1ec_repeat_form_error = function( s1, s2, response, button ) {
|
139 |
+
jQuery.growlUI( 'Error', response.message );
|
140 |
+
jQuery( button ).attr( 'disabled', false );
|
141 |
+
jQuery( s1 ).val( '' );
|
142 |
+
var txt = jQuery.trim( jQuery( s2 ).text() );
|
143 |
+
if( txt.lastIndexOf( '...' ) == -1 ) {
|
144 |
+
txt = txt.substring( 0, txt.length - 1 );
|
145 |
+
jQuery( s2 ).text( txt + '...' );
|
146 |
+
}
|
147 |
+
};
|
148 |
+
|
149 |
+
var ai1ec_click_on_ics_rule_text = function( s1, s2, s3, data, fn ) {
|
150 |
+
jQuery( s1 ).live( 'click', function() {
|
151 |
+
if( ! jQuery( s2 ).is( ':checked' ) ) {
|
152 |
+
jQuery( s2 ).attr( 'checked', true );
|
153 |
+
var txt = jQuery.trim( jQuery( s3 ).text() );
|
154 |
+
txt = txt.substring( 0, txt.length - 3 );
|
155 |
+
jQuery( s3 ).text( txt + ':' );
|
156 |
+
}
|
157 |
+
ai1ec_show_repeat_tabs( data, fn );
|
158 |
+
return false;
|
159 |
+
});
|
160 |
+
};
|
161 |
+
|
162 |
+
var ai1ec_click_on_checkbox = function( s1, s2, s3, data, fn ) {
|
163 |
+
jQuery( s1 ).click( function() {
|
164 |
+
if( jQuery(this).is( ':checked' ) ) {
|
165 |
+
ai1ec_show_repeat_tabs( data, fn );
|
166 |
+
} else {
|
167 |
+
jQuery( s2 ).text( '' );
|
168 |
+
var txt = jQuery.trim( jQuery( s3 ).text() );
|
169 |
+
txt = txt.substring( 0, txt.length - 1 );
|
170 |
+
jQuery( s3 ).text( txt + '...' );
|
171 |
+
}
|
172 |
+
});
|
173 |
+
};
|
174 |
+
|
175 |
+
var ai1ec_click_on_modal_cancel = function( s1, s2, s3 ) {
|
176 |
+
if( jQuery.trim( jQuery( s1 ).text() ) == '' ) {
|
177 |
+
jQuery( s2 ).attr( 'checked', false );
|
178 |
+
var txt = jQuery.trim( jQuery( s3 ).text() );
|
179 |
+
if( txt.lastIndexOf( '...' ) == -1 ) {
|
180 |
+
txt = txt.substring( 0, txt.length - 1 );
|
181 |
+
jQuery( s3 ).text( txt + '...' );
|
182 |
+
}
|
183 |
+
}
|
184 |
+
};
|
185 |
+
|
186 |
+
// called after the repeat block is inserted in the DOM
|
187 |
+
var ai1ec_apply_js_on_repeat_block = function() {
|
188 |
+
// Initialize count range slider
|
189 |
+
jQuery( '#ai1ec_count, #ai1ec_daily_count, #ai1ec_weekly_count, #ai1ec_monthly_count, #ai1ec_yearly_count' ).rangeinput( {
|
190 |
+
css: {
|
191 |
+
input: 'ai1ec-range',
|
192 |
+
slider: 'ai1ec-slider',
|
193 |
+
progress: 'ai1ec-progress',
|
194 |
+
handle: 'ai1ec-handle'
|
195 |
+
}
|
196 |
+
} );
|
197 |
+
// Initialize inputdate plugin on our "until" date input.
|
198 |
+
data = {
|
199 |
+
start_date_input: '#ai1ec_until-date-input',
|
200 |
+
start_time: '#ai1ec_until-time',
|
201 |
+
date_format: ai1ec_add_new_event.date_format,
|
202 |
+
month_names: ai1ec_add_new_event.month_names,
|
203 |
+
day_names: ai1ec_add_new_event.day_names,
|
204 |
+
week_start_day: ai1ec_add_new_event.week_start_day,
|
205 |
+
twentyfour_hour: ai1ec_add_new_event.twentyfour_hour,
|
206 |
+
now: new Date( ai1ec_add_new_event.now * 1000 )
|
207 |
+
}
|
208 |
+
jQuery.inputdate( data );
|
209 |
+
};
|
210 |
+
|
211 |
+
// called after the date picker block is inserted in the DOM
|
212 |
+
var ai1ec_apply_js_on_date_picker_box = function() {
|
213 |
+
// Initialize inputdate plugin on our "until" date input.
|
214 |
+
data = {
|
215 |
+
start_date_input: '#ai1ec-date-picker-input',
|
216 |
+
start_time: '#ai1ec-date-picker-time',
|
217 |
+
date_format: ai1ec_add_new_event.date_format,
|
218 |
+
month_names: ai1ec_add_new_event.month_names,
|
219 |
+
day_names: ai1ec_add_new_event.day_names,
|
220 |
+
week_start_day: ai1ec_add_new_event.week_start_day,
|
221 |
+
twentyfour_hour: ai1ec_add_new_event.twentyfour_hour,
|
222 |
+
now: new Date( ai1ec_add_new_event.now * 1000 )
|
223 |
+
}
|
224 |
+
jQuery.inputdate( data );
|
225 |
+
jQuery( '#ai1ec-date-picker-input' ).trigger( 'click' );
|
226 |
+
};
|
227 |
+
|
228 |
+
var ai1ec_show_repeat_tabs = function( data, post_ajax_func ) {
|
229 |
+
jQuery.blockUI( {
|
230 |
+
message: '<div class="ai1ec-repeat-box-loading"></div>',
|
231 |
+
css: {
|
232 |
+
width: '358px',
|
233 |
+
border: '0',
|
234 |
+
background: 'transparent',
|
235 |
+
cursor: 'normal'
|
236 |
+
}
|
237 |
+
});
|
238 |
+
jQuery.post(
|
239 |
+
ajaxurl,
|
240 |
+
data,
|
241 |
+
function( response ) {
|
242 |
+
if( response.error ) {
|
243 |
+
// tell the user there is an error
|
244 |
+
// TODO: Use other method of notification
|
245 |
+
alert( response.message );
|
246 |
+
jQuery.unblockUI();
|
247 |
+
} else {
|
248 |
+
// display the form
|
249 |
+
jQuery.blockUI( {
|
250 |
+
message: response.message,
|
251 |
+
css: {
|
252 |
+
width: '358px',
|
253 |
+
border: '0',
|
254 |
+
background: 'transparent',
|
255 |
+
cursor: 'normal'
|
256 |
+
}
|
257 |
+
});
|
258 |
+
var fn = window[post_ajax_func];
|
259 |
+
if( typeof fn === 'function' ) {
|
260 |
+
fn();
|
261 |
+
}
|
262 |
+
}
|
263 |
+
},
|
264 |
+
'json'
|
265 |
+
);
|
266 |
+
};
|
267 |
+
|
268 |
+
/**
|
269 |
+
* isUrl checks to see if the passed parameter is a valid url
|
270 |
+
* and returns true on access and false on failure
|
271 |
+
*
|
272 |
+
* @param String s String to validate
|
273 |
+
*
|
274 |
+
* @return boolean True if the string is a valid url, false otherwise
|
275 |
+
*/
|
276 |
+
var isUrl = function( s ) {
|
277 |
+
var regexp = /(http|https|webcal):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/
|
278 |
+
return regexp.test(s);
|
279 |
+
};
|
280 |
+
|
281 |
+
|
282 |
+
// ====================
|
283 |
+
// = jQuery DOM Ready =
|
284 |
+
// ====================
|
285 |
jQuery( function( $ ){
|
286 |
|
287 |
/**
|
314 |
}
|
315 |
$.timespan( data );
|
316 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
/**
|
318 |
* Google map setup
|
319 |
*/
|
329 |
//south pacific = map.setCenter(new GLatLng(-24, 134), 3);
|
330 |
//north america = map.setCenter(new GLatLng(50, -114), 3);
|
331 |
//latin america = map.setCenter(new GLatLng(-20, -70), 3);
|
332 |
+
ai1ec_default_location = new google.maps.LatLng( 9.965, -83.327 );
|
333 |
+
ai1ec_myOptions = {
|
334 |
zoom: 0,
|
335 |
mapTypeId: google.maps.MapTypeId.ROADMAP,
|
336 |
center: ai1ec_default_location
|
337 |
};
|
338 |
+
ai1ec_map = new google.maps.Map( $( '#ai1ec_map_canvas' ).get(0), ai1ec_myOptions );
|
339 |
+
ai1ec_marker = new google.maps.Marker({ map: ai1ec_map });
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
|
341 |
$( '#ai1ec_address' )
|
342 |
/**
|
400 |
}
|
401 |
});
|
402 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
ai1ec_selector( '#ai1ec_weekly_date_select' );
|
404 |
ai1ec_selector( '#ai1ec_montly_date_select' );
|
405 |
ai1ec_selector( '#ai1ec_yearly_date_select' );
|
406 |
+
|
407 |
// ========================
|
408 |
// = End dropdown clicked =
|
409 |
// ========================
|
410 |
+
$( '#ai1ec_end' ).live( 'change', show_end_fields );
|
411 |
|
412 |
/**
|
413 |
* Bottom publish button click event handler
|
417 |
$( '#publish' ).trigger( 'click' );
|
418 |
});
|
419 |
}
|
420 |
+
|
421 |
$( '.ai1ec_tab' ).live( 'click', function() {
|
422 |
if( ! $( this ).hasClass( 'ai1ec_active' ) ) {
|
423 |
var $active_tab = $( '.ai1ec_repeat_tabs > li > a.ai1ec_active' );
|
435 |
}
|
436 |
return false;
|
437 |
});
|
438 |
+
|
439 |
$( '.ai1ec_repeat_apply' ).live( 'click', function() {
|
440 |
var $button = $( this );
|
441 |
var rule = '';
|
483 |
rule += 'BYMONTH=' + months + ';';
|
484 |
break;
|
485 |
}
|
486 |
+
|
487 |
var ending = $( '#ai1ec_end' ).val();
|
488 |
// After
|
489 |
if( ending == '1' ) {
|
522 |
data,
|
523 |
function( response ) {
|
524 |
if( response.error ) {
|
525 |
+
if( $( '#ai1ec_is_box_repeat' ).val() == '1' ) {
|
526 |
+
ai1ec_repeat_form_error( '#ai1ec_rrule', '#ai1ec_repeat_label', response, $button );
|
527 |
+
} else {
|
528 |
+
ai1ec_repeat_form_error( '#ai1ec_exrule', '#ai1ec_exclude_label', response, $button );
|
|
|
|
|
|
|
529 |
}
|
530 |
} else {
|
531 |
+
if( $( '#ai1ec_is_box_repeat' ).val() == '1' ) {
|
532 |
+
ai1ec_repeat_form_success( '#ai1ec_rrule', '#ai1ec_repeat_label', '#ai1ec_repeat_text > a', rule, $button, response );
|
533 |
+
} else {
|
534 |
+
ai1ec_repeat_form_success( '#ai1ec_exrule', '#ai1ec_exclude_label', '#ai1ec_exclude_text > a', rule, $button, response );
|
|
|
|
|
535 |
}
|
|
|
|
|
|
|
|
|
|
|
536 |
}
|
537 |
},
|
538 |
'json'
|
539 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
540 |
});
|
541 |
+
|
542 |
+
// handles click on rrule text
|
543 |
+
ai1ec_click_on_ics_rule_text(
|
544 |
+
'#ai1ec_repeat_text > a',
|
545 |
+
'#ai1ec_repeat',
|
546 |
+
'#ai1ec_repeat_label',
|
547 |
+
{
|
548 |
+
action: 'ai1ec_get_repeat_box',
|
549 |
+
repeat: 1,
|
550 |
+
post_id: $( '#post_ID' ).val()
|
551 |
+
},
|
552 |
+
'ai1ec_apply_js_on_repeat_block'
|
553 |
+
);
|
554 |
+
|
555 |
+
// handles click on exrule text
|
556 |
+
ai1ec_click_on_ics_rule_text(
|
557 |
+
'#ai1ec_exclude_text > a',
|
558 |
+
'#ai1ec_exclude',
|
559 |
+
'#ai1ec_exclude_label',
|
560 |
+
{
|
561 |
+
action: 'ai1ec_get_repeat_box',
|
562 |
+
repeat: 0,
|
563 |
+
post_id: $( '#post_ID' ).val()
|
564 |
+
},
|
565 |
+
'ai1ec_apply_js_on_repeat_block'
|
566 |
+
);
|
567 |
|
568 |
+
// handles click on exdate text
|
569 |
+
ai1ec_click_on_ics_rule_text(
|
570 |
+
'#ai1ec_exclude_date_text > a',
|
571 |
+
'#ai1ec_exclude_date',
|
572 |
+
'#ai1ec_exclude_date_label',
|
573 |
+
{
|
574 |
+
action: 'ai1ec_get_date_picker_box',
|
575 |
+
post_id: $( '#post_ID' ).val()
|
576 |
+
},
|
577 |
+
'ai1ec_apply_js_on_date_picker_box'
|
578 |
+
);
|
579 |
+
|
580 |
+
// handles click on repeat checkbox
|
581 |
+
ai1ec_click_on_checkbox(
|
582 |
+
'#ai1ec_repeat',
|
583 |
+
'#ai1ec_repeat_text > a',
|
584 |
+
'#ai1ec_repeat_label',
|
585 |
+
{
|
586 |
+
action: 'ai1ec_get_repeat_box',
|
587 |
+
repeat: 1,
|
588 |
+
post_id: $( '#post_ID' ).val()
|
589 |
+
},
|
590 |
+
'ai1ec_apply_js_on_repeat_block'
|
591 |
+
);
|
592 |
+
|
593 |
+
// handles click on exclude checkbox
|
594 |
+
ai1ec_click_on_checkbox(
|
595 |
+
'#ai1ec_exclude',
|
596 |
+
'#ai1ec_exclude_text > a',
|
597 |
+
'#ai1ec_exclude_label',
|
598 |
+
{
|
599 |
+
action: 'ai1ec_get_repeat_box',
|
600 |
+
repeat: 0,
|
601 |
+
post_id: $( '#post_ID' ).val()
|
602 |
+
},
|
603 |
+
'ai1ec_apply_js_on_repeat_block'
|
604 |
+
);
|
605 |
+
|
606 |
+
// handles click on exclude date checkbox
|
607 |
+
ai1ec_click_on_checkbox(
|
608 |
+
'#ai1ec_exclude_date',
|
609 |
+
'#ai1ec_exclude_date_text > a',
|
610 |
+
'#ai1ec_exclude_date_label',
|
611 |
+
{
|
612 |
+
action: 'ai1ec_get_date_picker_box',
|
613 |
+
post_id: $( '#post_ID' ).val()
|
614 |
+
},
|
615 |
+
'ai1ec_apply_js_on_date_picker_box'
|
616 |
+
);
|
617 |
+
|
618 |
$( 'a.ai1ec_repeat_cancel' ).live( 'click', function() {
|
619 |
+
if( $( '#ai1ec_is_box_repeat' ).val() == '1' ) {
|
620 |
+
// handles click on cancel for RRULE
|
621 |
+
ai1ec_click_on_modal_cancel( '#ai1ec_repeat_text > a', '#ai1ec_repeat', '#ai1ec_repeat_label' );
|
622 |
+
} else {
|
623 |
+
// handles click on cancel for EXRULE
|
624 |
+
ai1ec_click_on_modal_cancel( '#ai1ec_exclude_text > a', '#ai1ec_exclude', '#ai1ec_exclude_label' );
|
|
|
625 |
}
|
626 |
$.unblockUI();
|
627 |
return false;
|
628 |
});
|
629 |
|
630 |
+
$( '#ai1ec_monthly_type_bymonthday, #ai1ec_monthly_type_byday' ).live( 'change', function() {
|
631 |
$( '#ai1c_repeat_monthly_bymonthday' ).toggle();
|
632 |
$( '#ai1c_repeat_monthly_byday' ).toggle();
|
633 |
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
}
|
635 |
|
636 |
/**
|
814 |
'json'
|
815 |
);
|
816 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
817 |
}
|
818 |
});
|
language/all-in-one-event-calendar-cs_CZ.mo
ADDED
Binary file
|
language/all-in-one-event-calendar-cs_CZ.po
ADDED
@@ -0,0 +1,1506 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: All-in-One Event Calendar 1.2.5\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
5 |
+
"POT-Creation-Date: 2012-01-31 12:01:34+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-MO-DA HO:MI+ZONE\n"
|
7 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: \n"
|
14 |
+
"X-Poedit-Country: \n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: \n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: app/model/class-ai1ec-event.php:487
|
23 |
+
#@ all-in-one-event-calendar
|
24 |
+
msgid " (all-day)"
|
25 |
+
msgstr "(celodenní)"
|
26 |
+
|
27 |
+
#: app/helper/class-ai1ec-settings-helper.php:85
|
28 |
+
#@ all-in-one-event-calendar
|
29 |
+
msgid "- Auto-Create New Page -"
|
30 |
+
msgstr "- Automaticky vytvořit novou stránku - "
|
31 |
+
|
32 |
+
#: app/helper/class-ai1ec-settings-helper.php:107
|
33 |
+
#, php-format
|
34 |
+
#@ all-in-one-event-calendar
|
35 |
+
msgid "View \"%s\" »"
|
36 |
+
msgstr "Zobrazit \"%s\" »"
|
37 |
+
|
38 |
+
#: app/helper/class-ai1ec-settings-helper.php:149
|
39 |
+
#: app/view/calendar.php:11
|
40 |
+
#: app/view/calendar.php:12
|
41 |
+
#: app/view/calendar.php:25
|
42 |
+
#@ all-in-one-event-calendar
|
43 |
+
msgid "Month"
|
44 |
+
msgstr "Měsíc"
|
45 |
+
|
46 |
+
#: app/helper/class-ai1ec-settings-helper.php:152
|
47 |
+
#: app/view/calendar.php:18
|
48 |
+
#: app/view/calendar.php:19
|
49 |
+
#@ all-in-one-event-calendar
|
50 |
+
msgid "Week"
|
51 |
+
msgstr "Týden"
|
52 |
+
|
53 |
+
#: app/controller/class-ai1ec-calendar-controller.php:383
|
54 |
+
#: app/helper/class-ai1ec-settings-helper.php:155
|
55 |
+
#: app/view/calendar.php:26
|
56 |
+
#@ all-in-one-event-calendar
|
57 |
+
msgid "Agenda"
|
58 |
+
msgstr "Program"
|
59 |
+
|
60 |
+
#: app/helper/class-ai1ec-settings-helper.php:204
|
61 |
+
#@ all-in-one-event-calendar
|
62 |
+
msgid "Default (d/m/y)"
|
63 |
+
msgstr "Výchozí (d/m/y)"
|
64 |
+
|
65 |
+
#: app/helper/class-ai1ec-settings-helper.php:207
|
66 |
+
#@ all-in-one-event-calendar
|
67 |
+
msgid "US (m/d/y)"
|
68 |
+
msgstr "US (m/d/y)"
|
69 |
+
|
70 |
+
#: app/helper/class-ai1ec-settings-helper.php:210
|
71 |
+
#@ all-in-one-event-calendar
|
72 |
+
msgid "ISO 8601 (y-m-d)"
|
73 |
+
msgstr "ISO 8601 (y-m-d)"
|
74 |
+
|
75 |
+
#: app/helper/class-ai1ec-settings-helper.php:213
|
76 |
+
#@ all-in-one-event-calendar
|
77 |
+
msgid "Dotted (m.d.y)"
|
78 |
+
msgstr "S tečkami mezi (m.d.y)"
|
79 |
+
|
80 |
+
#: app/helper/class-ai1ec-settings-helper.php:231
|
81 |
+
#@ all-in-one-event-calendar
|
82 |
+
msgid "Hourly"
|
83 |
+
msgstr "Každou hodinu"
|
84 |
+
|
85 |
+
#: app/helper/class-ai1ec-settings-helper.php:234
|
86 |
+
#@ all-in-one-event-calendar
|
87 |
+
msgid "Twice Daily"
|
88 |
+
msgstr "Dvakrát denně"
|
89 |
+
|
90 |
+
#: app/helper/class-ai1ec-events-helper.php:554
|
91 |
+
#: app/helper/class-ai1ec-events-helper.php:573
|
92 |
+
#: app/helper/class-ai1ec-events-helper.php:1502
|
93 |
+
#: app/helper/class-ai1ec-settings-helper.php:237
|
94 |
+
#: app/view/box_time_and_date.php:58
|
95 |
+
#@ all-in-one-event-calendar
|
96 |
+
msgid "Daily"
|
97 |
+
msgstr "Denně"
|
98 |
+
|
99 |
+
#: app/helper/class-ai1ec-settings-helper.php:321
|
100 |
+
#@ all-in-one-event-calendar
|
101 |
+
msgid "Calendar"
|
102 |
+
msgstr "Kalendář"
|
103 |
+
|
104 |
+
#: app/helper/class-ai1ec-app-helper.php:147
|
105 |
+
#@ all-in-one-event-calendar
|
106 |
+
msgctxt "Custom post type name"
|
107 |
+
msgid "Events"
|
108 |
+
msgstr "Akce"
|
109 |
+
|
110 |
+
#: app/helper/class-ai1ec-app-helper.php:148
|
111 |
+
#@ all-in-one-event-calendar
|
112 |
+
msgctxt "Custom post type name (singular)"
|
113 |
+
msgid "Event"
|
114 |
+
msgstr "Akce"
|
115 |
+
|
116 |
+
#: app/helper/class-ai1ec-app-helper.php:149
|
117 |
+
#@ all-in-one-event-calendar
|
118 |
+
msgid "Add New"
|
119 |
+
msgstr "Přidat novou"
|
120 |
+
|
121 |
+
#: app/helper/class-ai1ec-app-helper.php:150
|
122 |
+
#@ all-in-one-event-calendar
|
123 |
+
msgid "Add New Event"
|
124 |
+
msgstr "Přidat novou akci"
|
125 |
+
|
126 |
+
#: app/helper/class-ai1ec-app-helper.php:151
|
127 |
+
#@ all-in-one-event-calendar
|
128 |
+
msgid "Edit Event"
|
129 |
+
msgstr "Upravit akci"
|
130 |
+
|
131 |
+
#: app/helper/class-ai1ec-app-helper.php:152
|
132 |
+
#@ all-in-one-event-calendar
|
133 |
+
msgid "New Event"
|
134 |
+
msgstr "Nová akce"
|
135 |
+
|
136 |
+
#: app/helper/class-ai1ec-app-helper.php:153
|
137 |
+
#@ all-in-one-event-calendar
|
138 |
+
msgid "View Event"
|
139 |
+
msgstr "Zobrazit akci"
|
140 |
+
|
141 |
+
#: app/helper/class-ai1ec-app-helper.php:154
|
142 |
+
#@ all-in-one-event-calendar
|
143 |
+
msgid "Search Events"
|
144 |
+
msgstr "Hledat akci"
|
145 |
+
|
146 |
+
#: app/helper/class-ai1ec-app-helper.php:155
|
147 |
+
#@ all-in-one-event-calendar
|
148 |
+
msgid "No Events found"
|
149 |
+
msgstr "Žádná akce nenalazena"
|
150 |
+
|
151 |
+
#: app/helper/class-ai1ec-app-helper.php:156
|
152 |
+
#@ all-in-one-event-calendar
|
153 |
+
msgid "No Events found in Trash"
|
154 |
+
msgstr "V koši nebyly nalezeny žádné akce"
|
155 |
+
|
156 |
+
#: app/helper/class-ai1ec-app-helper.php:157
|
157 |
+
#@ all-in-one-event-calendar
|
158 |
+
msgid "Parent Event"
|
159 |
+
msgstr "Rodičovská (nadřazená) akce"
|
160 |
+
|
161 |
+
#: app/helper/class-ai1ec-app-helper.php:158
|
162 |
+
#@ all-in-one-event-calendar
|
163 |
+
msgid "Events"
|
164 |
+
msgstr "Akce"
|
165 |
+
|
166 |
+
#: app/helper/class-ai1ec-app-helper.php:205
|
167 |
+
#@ all-in-one-event-calendar
|
168 |
+
msgctxt "Event categories taxonomy"
|
169 |
+
msgid "Event Categories"
|
170 |
+
msgstr "Kategorie akcí"
|
171 |
+
|
172 |
+
#: app/helper/class-ai1ec-app-helper.php:206
|
173 |
+
#@ all-in-one-event-calendar
|
174 |
+
msgctxt "Event categories taxonomy (singular)"
|
175 |
+
msgid "Event Category"
|
176 |
+
msgstr "Kategorie akce"
|
177 |
+
|
178 |
+
#: app/helper/class-ai1ec-app-helper.php:213
|
179 |
+
#@ all-in-one-event-calendar
|
180 |
+
msgctxt "Event tags taxonomy"
|
181 |
+
msgid "Event Tags"
|
182 |
+
msgstr "Štítky akce"
|
183 |
+
|
184 |
+
#: app/helper/class-ai1ec-app-helper.php:214
|
185 |
+
#@ all-in-one-event-calendar
|
186 |
+
msgctxt "Event tags taxonomy (singular)"
|
187 |
+
msgid "Event Tag"
|
188 |
+
msgstr "Štítek akce"
|
189 |
+
|
190 |
+
#: app/helper/class-ai1ec-app-helper.php:281
|
191 |
+
#@ all-in-one-event-calendar
|
192 |
+
msgid "Show All "
|
193 |
+
msgstr "Zobrazit vše "
|
194 |
+
|
195 |
+
#: app/helper/class-ai1ec-app-helper.php:313
|
196 |
+
#, php-format
|
197 |
+
#@ all-in-one-event-calendar
|
198 |
+
msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
|
199 |
+
msgstr "Všechny akce <span class=\"update-plugins count-%d\" title=\"%d Naplánované akce\"><span class=\"update-count\">%d</span></span>"
|
200 |
+
|
201 |
+
#: app/helper/class-ai1ec-app-helper.php:319
|
202 |
+
#@ all-in-one-event-calendar
|
203 |
+
msgid "All Events"
|
204 |
+
msgstr "Všechny akce"
|
205 |
+
|
206 |
+
#: app/helper/class-ai1ec-app-helper.php:395
|
207 |
+
#@ all-in-one-event-calendar
|
208 |
+
msgid "Event Details"
|
209 |
+
msgstr "Podrobnosti akce"
|
210 |
+
|
211 |
+
#: app/helper/class-ai1ec-app-helper.php:428
|
212 |
+
#@ all-in-one-event-calendar
|
213 |
+
msgid "Post Date"
|
214 |
+
msgstr "Datum příspěvku"
|
215 |
+
|
216 |
+
#: app/helper/class-ai1ec-app-helper.php:429
|
217 |
+
#@ all-in-one-event-calendar
|
218 |
+
msgid "Event date/time"
|
219 |
+
msgstr "Datum/čas akce"
|
220 |
+
|
221 |
+
#: app/helper/class-ai1ec-app-helper.php:653
|
222 |
+
#, php-format
|
223 |
+
#@ all-in-one-event-calendar
|
224 |
+
msgid "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</strong> dropdown list. %s 2. Select an option in the <strong>Timezone</strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
|
225 |
+
msgstr "%sPro nastavení pluginu: %s 1. Zvolte možnost na rozbalovacím seznamu <strong>stránky kalendáře</strong>. %s 2. Zvolte možnost na rozbalovacím seznamu <strong>časové zóny</strong>. %s 3. Klikněte na <strong>Uložit nastavení</strong>. %s"
|
226 |
+
|
227 |
+
#: app/helper/class-ai1ec-app-helper.php:655
|
228 |
+
#@ all-in-one-event-calendar
|
229 |
+
msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
|
230 |
+
msgstr "Pro nastavení pluginu: Zvolte možnost na rozbalovacím seznamu <strong>stránky kalendáře</strong>, klikněte na <strong>Uložit nastavení</strong>."
|
231 |
+
|
232 |
+
#: app/helper/class-ai1ec-app-helper.php:657
|
233 |
+
#@ all-in-one-event-calendar
|
234 |
+
msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
|
235 |
+
msgstr "Pro nastavení pluginu: Zvolte možnost na rozbalovacím seznamu <strong>časové zóny</strong>, klikněte na <strong>Uložit nastavení</strong>."
|
236 |
+
|
237 |
+
#: app/helper/class-ai1ec-app-helper.php:661
|
238 |
+
#, php-format
|
239 |
+
#@ all-in-one-event-calendar
|
240 |
+
msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
|
241 |
+
msgstr "Plugin je nainstalován, ale ještě není nastaven. <a href=\"%s\">Pro nastavení klikněte sem »</a>"
|
242 |
+
|
243 |
+
#: app/helper/class-ai1ec-app-helper.php:667
|
244 |
+
#@ all-in-one-event-calendar
|
245 |
+
msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
|
246 |
+
msgstr "Plugin je nainstalován, ale není nakonfigurován. Prosím, přihlašte se jako administrátor a nastavte ho."
|
247 |
+
|
248 |
+
#. translators: "%s" represents the week's starting date
|
249 |
+
#: app/controller/class-ai1ec-calendar-controller.php:326
|
250 |
+
#: app/helper/class-ai1ec-calendar-helper.php:717
|
251 |
+
#: app/helper/class-ai1ec-calendar-helper.php:726
|
252 |
+
#, php-format
|
253 |
+
#@ all-in-one-event-calendar
|
254 |
+
msgid "Week of %s"
|
255 |
+
msgstr "Týden %s"
|
256 |
+
|
257 |
+
#: app/helper/class-ai1ec-calendar-helper.php:718
|
258 |
+
#: app/helper/class-ai1ec-calendar-helper.php:727
|
259 |
+
#@ all-in-one-event-calendar
|
260 |
+
msgid "M j"
|
261 |
+
msgstr "M j"
|
262 |
+
|
263 |
+
#: app/helper/class-ai1ec-calendar-helper.php:759
|
264 |
+
#@ all-in-one-event-calendar
|
265 |
+
msgid "« Previous Events"
|
266 |
+
msgstr "« Předcházející akce"
|
267 |
+
|
268 |
+
#: app/helper/class-ai1ec-calendar-helper.php:766
|
269 |
+
#@ all-in-one-event-calendar
|
270 |
+
msgid "Next Events »"
|
271 |
+
msgstr "Následující akce »"
|
272 |
+
|
273 |
+
#: app/helper/class-ai1ec-events-helper.php:319
|
274 |
+
#: app/helper/class-ai1ec-events-helper.php:341
|
275 |
+
#@ all-in-one-event-calendar
|
276 |
+
msgid "No repeat"
|
277 |
+
msgstr "Neopakující se"
|
278 |
+
|
279 |
+
#: app/helper/class-ai1ec-events-helper.php:320
|
280 |
+
#: app/helper/class-ai1ec-events-helper.php:342
|
281 |
+
#@ all-in-one-event-calendar
|
282 |
+
msgid "Every day"
|
283 |
+
msgstr "Každý den"
|
284 |
+
|
285 |
+
#: app/helper/class-ai1ec-events-helper.php:321
|
286 |
+
#: app/helper/class-ai1ec-events-helper.php:343
|
287 |
+
#@ all-in-one-event-calendar
|
288 |
+
msgid "Every week"
|
289 |
+
msgstr "Každý týden"
|
290 |
+
|
291 |
+
#: app/helper/class-ai1ec-events-helper.php:322
|
292 |
+
#: app/helper/class-ai1ec-events-helper.php:344
|
293 |
+
#@ all-in-one-event-calendar
|
294 |
+
msgid "Every month"
|
295 |
+
msgstr "Každý měsíc"
|
296 |
+
|
297 |
+
#: app/helper/class-ai1ec-events-helper.php:323
|
298 |
+
#: app/helper/class-ai1ec-events-helper.php:345
|
299 |
+
#@ all-in-one-event-calendar
|
300 |
+
msgid "Every year"
|
301 |
+
msgstr "Každý rok"
|
302 |
+
|
303 |
+
#: app/helper/class-ai1ec-events-helper.php:325
|
304 |
+
#: app/helper/class-ai1ec-events-helper.php:347
|
305 |
+
#@ all-in-one-event-calendar
|
306 |
+
msgid "Custom..."
|
307 |
+
msgstr "Vlastní..."
|
308 |
+
|
309 |
+
#: app/helper/class-ai1ec-events-helper.php:468
|
310 |
+
#@ all-in-one-event-calendar
|
311 |
+
msgid "first"
|
312 |
+
msgstr "první"
|
313 |
+
|
314 |
+
#: app/helper/class-ai1ec-events-helper.php:469
|
315 |
+
#@ all-in-one-event-calendar
|
316 |
+
msgid "second"
|
317 |
+
msgstr "druhá"
|
318 |
+
|
319 |
+
#: app/helper/class-ai1ec-events-helper.php:470
|
320 |
+
#@ all-in-one-event-calendar
|
321 |
+
msgid "third"
|
322 |
+
msgstr "třetí"
|
323 |
+
|
324 |
+
#: app/helper/class-ai1ec-events-helper.php:471
|
325 |
+
#@ all-in-one-event-calendar
|
326 |
+
msgid "fourth"
|
327 |
+
msgstr "čtvrtý"
|
328 |
+
|
329 |
+
#: app/helper/class-ai1ec-events-helper.php:473
|
330 |
+
#@ all-in-one-event-calendar
|
331 |
+
msgid "last"
|
332 |
+
msgstr "poslední"
|
333 |
+
|
334 |
+
#: app/helper/class-ai1ec-events-helper.php:478
|
335 |
+
#@ all-in-one-event-calendar
|
336 |
+
msgid "Sunday"
|
337 |
+
msgstr "neděle"
|
338 |
+
|
339 |
+
#: app/helper/class-ai1ec-events-helper.php:479
|
340 |
+
#@ all-in-one-event-calendar
|
341 |
+
msgid "Monday"
|
342 |
+
msgstr "pondělí"
|
343 |
+
|
344 |
+
#: app/helper/class-ai1ec-events-helper.php:480
|
345 |
+
#@ all-in-one-event-calendar
|
346 |
+
msgid "Tuesday"
|
347 |
+
msgstr "úterý"
|
348 |
+
|
349 |
+
#: app/helper/class-ai1ec-events-helper.php:481
|
350 |
+
#@ all-in-one-event-calendar
|
351 |
+
msgid "Wednesday"
|
352 |
+
msgstr "středa"
|
353 |
+
|
354 |
+
#: app/helper/class-ai1ec-events-helper.php:482
|
355 |
+
#@ all-in-one-event-calendar
|
356 |
+
msgid "Thursday"
|
357 |
+
msgstr "čtvrtek"
|
358 |
+
|
359 |
+
#: app/helper/class-ai1ec-events-helper.php:483
|
360 |
+
#@ all-in-one-event-calendar
|
361 |
+
msgid "Friday"
|
362 |
+
msgstr "pátek"
|
363 |
+
|
364 |
+
#: app/helper/class-ai1ec-events-helper.php:484
|
365 |
+
#@ all-in-one-event-calendar
|
366 |
+
msgid "Saturday"
|
367 |
+
msgstr "sobota"
|
368 |
+
|
369 |
+
#: app/helper/class-ai1ec-events-helper.php:486
|
370 |
+
#@ all-in-one-event-calendar
|
371 |
+
msgid "day"
|
372 |
+
msgstr "den"
|
373 |
+
|
374 |
+
#: app/helper/class-ai1ec-events-helper.php:487
|
375 |
+
#@ all-in-one-event-calendar
|
376 |
+
msgid "weekday"
|
377 |
+
msgstr "všední den"
|
378 |
+
|
379 |
+
#: app/helper/class-ai1ec-events-helper.php:488
|
380 |
+
#@ all-in-one-event-calendar
|
381 |
+
msgid "weekend day"
|
382 |
+
msgstr "víkendový den"
|
383 |
+
|
384 |
+
#: app/helper/class-ai1ec-events-helper.php:555
|
385 |
+
#: app/helper/class-ai1ec-events-helper.php:574
|
386 |
+
#: app/helper/class-ai1ec-events-helper.php:1514
|
387 |
+
#: app/view/box_time_and_date.php:59
|
388 |
+
#@ all-in-one-event-calendar
|
389 |
+
msgid "Weekly"
|
390 |
+
msgstr "týdně"
|
391 |
+
|
392 |
+
#: app/helper/class-ai1ec-events-helper.php:556
|
393 |
+
#: app/helper/class-ai1ec-events-helper.php:575
|
394 |
+
#: app/helper/class-ai1ec-events-helper.php:1526
|
395 |
+
#: app/view/box_time_and_date.php:60
|
396 |
+
#@ all-in-one-event-calendar
|
397 |
+
msgid "Monthly"
|
398 |
+
msgstr "měsíčně"
|
399 |
+
|
400 |
+
#: app/helper/class-ai1ec-events-helper.php:557
|
401 |
+
#: app/helper/class-ai1ec-events-helper.php:576
|
402 |
+
#: app/helper/class-ai1ec-events-helper.php:1538
|
403 |
+
#: app/view/box_time_and_date.php:61
|
404 |
+
#@ all-in-one-event-calendar
|
405 |
+
msgid "Yearly"
|
406 |
+
msgstr "ročně"
|
407 |
+
|
408 |
+
#: app/helper/class-ai1ec-events-helper.php:598
|
409 |
+
#@ all-in-one-event-calendar
|
410 |
+
msgid "day(s)"
|
411 |
+
msgstr "den (dny)"
|
412 |
+
|
413 |
+
#: app/helper/class-ai1ec-events-helper.php:627
|
414 |
+
#@ all-in-one-event-calendar
|
415 |
+
msgid "week(s)"
|
416 |
+
msgstr "týden (týdny)"
|
417 |
+
|
418 |
+
#: app/helper/class-ai1ec-events-helper.php:697
|
419 |
+
#@ all-in-one-event-calendar
|
420 |
+
msgid "month(s)"
|
421 |
+
msgstr "měsíc(e)"
|
422 |
+
|
423 |
+
#: app/helper/class-ai1ec-events-helper.php:720
|
424 |
+
#@ all-in-one-event-calendar
|
425 |
+
msgid "year(s)"
|
426 |
+
msgstr "rok(y)"
|
427 |
+
|
428 |
+
#: app/helper/class-ai1ec-events-helper.php:1300
|
429 |
+
#@ all-in-one-event-calendar
|
430 |
+
msgid "Never"
|
431 |
+
msgstr "nikdy"
|
432 |
+
|
433 |
+
#: app/helper/class-ai1ec-events-helper.php:1301
|
434 |
+
#@ all-in-one-event-calendar
|
435 |
+
msgid "After"
|
436 |
+
msgstr "potom"
|
437 |
+
|
438 |
+
#: app/helper/class-ai1ec-events-helper.php:1302
|
439 |
+
#: app/view/box_time_and_date.php:84
|
440 |
+
#@ all-in-one-event-calendar
|
441 |
+
msgid "On date"
|
442 |
+
msgstr "v datu"
|
443 |
+
|
444 |
+
#: app/helper/class-ai1ec-events-helper.php:1381
|
445 |
+
#: app/helper/class-ai1ec-events-helper.php:1390
|
446 |
+
#: app/helper/class-ai1ec-events-helper.php:1398
|
447 |
+
#@ all-in-one-event-calendar
|
448 |
+
msgctxt "Recurrence editor - weekly tab"
|
449 |
+
msgid "on"
|
450 |
+
msgstr "v"
|
451 |
+
|
452 |
+
#: app/helper/class-ai1ec-events-helper.php:1386
|
453 |
+
#: app/helper/class-ai1ec-events-helper.php:1415
|
454 |
+
#: app/helper/class-ai1ec-events-helper.php:1453
|
455 |
+
#@ all-in-one-event-calendar
|
456 |
+
msgid "and"
|
457 |
+
msgstr "a"
|
458 |
+
|
459 |
+
#: app/helper/class-ai1ec-events-helper.php:1411
|
460 |
+
#: app/helper/class-ai1ec-events-helper.php:1418
|
461 |
+
#: app/helper/class-ai1ec-events-helper.php:1424
|
462 |
+
#: app/helper/class-ai1ec-events-helper.php:1435
|
463 |
+
#@ all-in-one-event-calendar
|
464 |
+
msgctxt "Recurrence editor - monthly tab"
|
465 |
+
msgid "on"
|
466 |
+
msgstr "v"
|
467 |
+
|
468 |
+
#: app/helper/class-ai1ec-events-helper.php:1411
|
469 |
+
#: app/helper/class-ai1ec-events-helper.php:1418
|
470 |
+
#: app/helper/class-ai1ec-events-helper.php:1424
|
471 |
+
#@ all-in-one-event-calendar
|
472 |
+
msgid "of the month"
|
473 |
+
msgstr "měsíce"
|
474 |
+
|
475 |
+
#: app/helper/class-ai1ec-events-helper.php:1448
|
476 |
+
#: app/helper/class-ai1ec-events-helper.php:1456
|
477 |
+
#: app/helper/class-ai1ec-events-helper.php:1463
|
478 |
+
#@ all-in-one-event-calendar
|
479 |
+
msgctxt "Recurrence editor - yearly tab"
|
480 |
+
msgid "on"
|
481 |
+
msgstr "v"
|
482 |
+
|
483 |
+
#: app/helper/class-ai1ec-events-helper.php:1505
|
484 |
+
#@ all-in-one-event-calendar
|
485 |
+
msgid "Every other day"
|
486 |
+
msgstr "obden"
|
487 |
+
|
488 |
+
#: app/helper/class-ai1ec-events-helper.php:1507
|
489 |
+
#, php-format
|
490 |
+
#@ all-in-one-event-calendar
|
491 |
+
msgid "Every %d days"
|
492 |
+
msgstr "Každých %d dnů"
|
493 |
+
|
494 |
+
#: app/helper/class-ai1ec-events-helper.php:1517
|
495 |
+
#@ all-in-one-event-calendar
|
496 |
+
msgid "Every other week"
|
497 |
+
msgstr "Obtýden"
|
498 |
+
|
499 |
+
#: app/helper/class-ai1ec-events-helper.php:1519
|
500 |
+
#, php-format
|
501 |
+
#@ all-in-one-event-calendar
|
502 |
+
msgid "Every %d weeks"
|
503 |
+
msgstr "Každých %d týdnů"
|
504 |
+
|
505 |
+
#: app/helper/class-ai1ec-events-helper.php:1529
|
506 |
+
#@ all-in-one-event-calendar
|
507 |
+
msgid "Every other month"
|
508 |
+
msgstr "Každý druhý měsíc"
|
509 |
+
|
510 |
+
#: app/helper/class-ai1ec-events-helper.php:1531
|
511 |
+
#, php-format
|
512 |
+
#@ all-in-one-event-calendar
|
513 |
+
msgid "Every %d months"
|
514 |
+
msgstr "Každých %d měsíců"
|
515 |
+
|
516 |
+
#: app/helper/class-ai1ec-events-helper.php:1541
|
517 |
+
#@ all-in-one-event-calendar
|
518 |
+
msgid "Every other year"
|
519 |
+
msgstr "Každý druhý rok"
|
520 |
+
|
521 |
+
#: app/helper/class-ai1ec-events-helper.php:1543
|
522 |
+
#, php-format
|
523 |
+
#@ all-in-one-event-calendar
|
524 |
+
msgid "Every %d years"
|
525 |
+
msgstr "Každých %d let"
|
526 |
+
|
527 |
+
#: app/helper/class-ai1ec-events-helper.php:1563
|
528 |
+
#, php-format
|
529 |
+
#@ all-in-one-event-calendar
|
530 |
+
msgid "until %s"
|
531 |
+
msgstr "do %s"
|
532 |
+
|
533 |
+
#: app/helper/class-ai1ec-events-helper.php:1566
|
534 |
+
#, php-format
|
535 |
+
#@ all-in-one-event-calendar
|
536 |
+
msgid "for %d occurrences"
|
537 |
+
msgstr "pro %d výskytů"
|
538 |
+
|
539 |
+
#: app/helper/class-ai1ec-events-helper.php:1568
|
540 |
+
#@ all-in-one-event-calendar
|
541 |
+
msgid "forever"
|
542 |
+
msgstr "navždy"
|
543 |
+
|
544 |
+
#: app/controller/class-ai1ec-settings-controller.php:82
|
545 |
+
#@ all-in-one-event-calendar
|
546 |
+
msgid "Settings Updated."
|
547 |
+
msgstr "Nastavení uložena."
|
548 |
+
|
549 |
+
#: app/controller/class-ai1ec-settings-controller.php:173
|
550 |
+
#, php-format
|
551 |
+
#@ all-in-one-event-calendar
|
552 |
+
msgid "Flushed %d events"
|
553 |
+
msgstr "Flushed %d akce"
|
554 |
+
|
555 |
+
#: app/controller/class-ai1ec-settings-controller.php:181
|
556 |
+
#: app/controller/class-ai1ec-settings-controller.php:231
|
557 |
+
#@ all-in-one-event-calendar
|
558 |
+
msgid "Invalid ICS feed ID"
|
559 |
+
msgstr "Nevalidní ID ICS feedu"
|
560 |
+
|
561 |
+
#: app/controller/class-ai1ec-settings-controller.php:216
|
562 |
+
#@ all-in-one-event-calendar
|
563 |
+
msgid "No events were found"
|
564 |
+
msgstr "Žádné akce nebyly nalezeny"
|
565 |
+
|
566 |
+
#: app/controller/class-ai1ec-settings-controller.php:221
|
567 |
+
#, php-format
|
568 |
+
#@ all-in-one-event-calendar
|
569 |
+
msgid "Imported %d events"
|
570 |
+
msgstr "Importováno %d akcí"
|
571 |
+
|
572 |
+
#: app/controller/class-ai1ec-settings-controller.php:222
|
573 |
+
#: app/view/feed_row.php:22
|
574 |
+
#, php-format
|
575 |
+
#@ all-in-one-event-calendar
|
576 |
+
msgid "Flush 1 event"
|
577 |
+
msgid_plural "Flush %s events"
|
578 |
+
msgstr[0] ""
|
579 |
+
msgstr[1] ""
|
580 |
+
msgstr[2] ""
|
581 |
+
|
582 |
+
#: app/controller/class-ai1ec-settings-controller.php:274
|
583 |
+
#@ all-in-one-event-calendar
|
584 |
+
msgctxt "meta box"
|
585 |
+
msgid "General Settings"
|
586 |
+
msgstr "Obecná nastavení"
|
587 |
+
|
588 |
+
#: app/controller/class-ai1ec-settings-controller.php:282
|
589 |
+
#@ all-in-one-event-calendar
|
590 |
+
msgctxt "meta box"
|
591 |
+
msgid "The Seed Studio Support"
|
592 |
+
msgstr "Podpora firmy The Seed Studio"
|
593 |
+
|
594 |
+
#: app/controller/class-ai1ec-settings-controller.php:289
|
595 |
+
#@ all-in-one-event-calendar
|
596 |
+
msgctxt "meta box"
|
597 |
+
msgid "ICS Import Settings"
|
598 |
+
msgstr "Importování nastavení ICS"
|
599 |
+
|
600 |
+
#: app/controller/class-ai1ec-settings-controller.php:338
|
601 |
+
#, php-format
|
602 |
+
#@ all-in-one-event-calendar
|
603 |
+
msgid "<a href=\"%s\">Settings</a>"
|
604 |
+
msgstr "<a href=\"%s\">Nastavení</a>"
|
605 |
+
|
606 |
+
#: app/controller/class-ai1ec-settings-controller.php:352
|
607 |
+
#, php-format
|
608 |
+
#@ all-in-one-event-calendar
|
609 |
+
msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
|
610 |
+
msgstr "<a href=\"%s\" target=\"_blank\">Podpořte finančně</a>"
|
611 |
+
|
612 |
+
#: app/controller/class-ai1ec-settings-controller.php:353
|
613 |
+
#, php-format
|
614 |
+
#@ all-in-one-event-calendar
|
615 |
+
msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
|
616 |
+
msgstr "<a href=\"%s\" target=\"_blank\">Získejte pomoc</a>"
|
617 |
+
|
618 |
+
#: app/controller/class-ai1ec-events-controller.php:149
|
619 |
+
#@ all-in-one-event-calendar
|
620 |
+
msgid "This feed is already being imported."
|
621 |
+
msgstr "Tento feed už je importován."
|
622 |
+
|
623 |
+
#: app/controller/class-ai1ec-events-controller.php:150
|
624 |
+
#@ all-in-one-event-calendar
|
625 |
+
msgid "Please enter a valid iCalendar URL."
|
626 |
+
msgstr "Prosím, vložte platnou URL iCalendar."
|
627 |
+
|
628 |
+
#: app/controller/class-ai1ec-events-controller.php:285
|
629 |
+
#@ all-in-one-event-calendar
|
630 |
+
msgid "times"
|
631 |
+
msgstr "časy"
|
632 |
+
|
633 |
+
#: app/controller/class-ai1ec-events-controller.php:334
|
634 |
+
#@ all-in-one-event-calendar
|
635 |
+
msgid "Publish"
|
636 |
+
msgstr "Publikovat"
|
637 |
+
|
638 |
+
#: app/controller/class-ai1ec-events-controller.php:334
|
639 |
+
#: app/view/feed_row.php:20
|
640 |
+
#@ all-in-one-event-calendar
|
641 |
+
msgid "Update"
|
642 |
+
msgstr "Aktualizace"
|
643 |
+
|
644 |
+
#: app/controller/class-ai1ec-events-controller.php:336
|
645 |
+
#@ all-in-one-event-calendar
|
646 |
+
msgid "Submit for Review"
|
647 |
+
msgstr "Odeslat na schválení"
|
648 |
+
|
649 |
+
#: app/controller/class-ai1ec-events-controller.php:449
|
650 |
+
#, php-format
|
651 |
+
#@ all-in-one-event-calendar
|
652 |
+
msgid "Event updated. <a href=\"%s\">View event</a>"
|
653 |
+
msgstr "Akce aktualizována. <a href=\"%s\">Zobrazit akci</a>"
|
654 |
+
|
655 |
+
#: app/controller/class-ai1ec-events-controller.php:450
|
656 |
+
#@ all-in-one-event-calendar
|
657 |
+
msgid "Custom field updated."
|
658 |
+
msgstr "Vlastní pole aktualizováno."
|
659 |
+
|
660 |
+
#: app/controller/class-ai1ec-events-controller.php:451
|
661 |
+
#@ all-in-one-event-calendar
|
662 |
+
msgid "Custom field deleted."
|
663 |
+
msgstr "Vlastní pole smazáno."
|
664 |
+
|
665 |
+
#: app/controller/class-ai1ec-events-controller.php:452
|
666 |
+
#@ all-in-one-event-calendar
|
667 |
+
msgid "Event updated."
|
668 |
+
msgstr "Akce aktualizována."
|
669 |
+
|
670 |
+
#. translators: %s: date and time of the revision
|
671 |
+
#: app/controller/class-ai1ec-events-controller.php:454
|
672 |
+
#, php-format
|
673 |
+
#@ all-in-one-event-calendar
|
674 |
+
msgid "Event restored to revision from %s"
|
675 |
+
msgstr "Akce vrácena na schválení z %s"
|
676 |
+
|
677 |
+
#: app/controller/class-ai1ec-events-controller.php:455
|
678 |
+
#, php-format
|
679 |
+
#@ all-in-one-event-calendar
|
680 |
+
msgid "Event published. <a href=\"%s\">View event</a>"
|
681 |
+
msgstr "Akce publikována. <a href=\"%s\">Zobrazit akci</a>"
|
682 |
+
|
683 |
+
#: app/controller/class-ai1ec-events-controller.php:456
|
684 |
+
#@ default
|
685 |
+
msgid "Event saved."
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: app/controller/class-ai1ec-events-controller.php:457
|
689 |
+
#, php-format
|
690 |
+
#@ all-in-one-event-calendar
|
691 |
+
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
692 |
+
msgstr "Akce odeslána. <a target=\"_blank\" href=\"%s\">Náhled akce</a>"
|
693 |
+
|
694 |
+
#: app/controller/class-ai1ec-events-controller.php:458
|
695 |
+
#, php-format
|
696 |
+
#@ all-in-one-event-calendar
|
697 |
+
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
698 |
+
msgstr "Akce naplánována na: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Náhled akce</a>"
|
699 |
+
|
700 |
+
#: app/controller/class-ai1ec-events-controller.php:460
|
701 |
+
#@ all-in-one-event-calendar
|
702 |
+
msgid "M j, Y @ G:i"
|
703 |
+
msgstr "M j, Y, G:i"
|
704 |
+
|
705 |
+
#: app/controller/class-ai1ec-events-controller.php:461
|
706 |
+
#, php-format
|
707 |
+
#@ all-in-one-event-calendar
|
708 |
+
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
709 |
+
msgstr "Koncept akce aktualizován. <a target=\"_blank\" href=\"%s\">Náhled akce</a>"
|
710 |
+
|
711 |
+
#: app/controller/class-ai1ec-calendar-controller.php:326
|
712 |
+
#@ all-in-one-event-calendar
|
713 |
+
msgid "F j"
|
714 |
+
msgstr "F j"
|
715 |
+
|
716 |
+
#: app/controller/class-ai1ec-app-controller.php:354
|
717 |
+
#: app/controller/class-ai1ec-app-controller.php:355
|
718 |
+
#@ all-in-one-event-calendar
|
719 |
+
msgid "Settings"
|
720 |
+
msgstr "Nastavení"
|
721 |
+
|
722 |
+
#: app/controller/class-ai1ec-importer-controller.php:91
|
723 |
+
#@ all-in-one-event-calendar
|
724 |
+
msgid "The Events Calendar → All-in-One Event Calendar"
|
725 |
+
msgstr "The Events Calendar → All-in-One Event Calendar"
|
726 |
+
|
727 |
+
#: app/controller/class-ai1ec-importer-controller.php:92
|
728 |
+
#@ all-in-one-event-calendar
|
729 |
+
msgid "Imports events created using The Events Calendar plugin into the All-in-One Event Calendar"
|
730 |
+
msgstr "Importovat akce vytvořené pluginem The Events Calendar do All-in-One Event Calendar (tohoto kalendáře akcí)"
|
731 |
+
|
732 |
+
#: app/view/event-excerpt.php:2
|
733 |
+
#: app/view/event-multi.php:4
|
734 |
+
#: app/view/event-single.php:5
|
735 |
+
#@ all-in-one-event-calendar
|
736 |
+
msgid "When:"
|
737 |
+
msgstr "Kdy:"
|
738 |
+
|
739 |
+
#: app/view/event-single.php:8
|
740 |
+
#@ all-in-one-event-calendar
|
741 |
+
msgid "Back to Calendar »"
|
742 |
+
msgstr "Zpět do kalendáře »"
|
743 |
+
|
744 |
+
#: app/view/event-multi.php:14
|
745 |
+
#: app/view/event-single.php:15
|
746 |
+
#@ all-in-one-event-calendar
|
747 |
+
msgid "Repeats:"
|
748 |
+
msgstr "Opakování:"
|
749 |
+
|
750 |
+
#: app/view/event-excerpt.php:4
|
751 |
+
#: app/view/event-multi.php:20
|
752 |
+
#: app/view/event-single.php:20
|
753 |
+
#@ all-in-one-event-calendar
|
754 |
+
msgid "Where:"
|
755 |
+
msgstr "Kde:"
|
756 |
+
|
757 |
+
#: app/view/event-single.php:27
|
758 |
+
#@ all-in-one-event-calendar
|
759 |
+
msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
|
760 |
+
msgstr "Přidejte si tuto akci do vašeho kalendáře (iCal, Outlook, atd.)"
|
761 |
+
|
762 |
+
#: app/view/event-single.php:28
|
763 |
+
#@ all-in-one-event-calendar
|
764 |
+
msgid "✔ Add to Calendar"
|
765 |
+
msgstr "✔ Přidat do kalendáře"
|
766 |
+
|
767 |
+
#: app/view/event-single.php:31
|
768 |
+
#@ all-in-one-event-calendar
|
769 |
+
msgid "Add this event to your Google Calendar"
|
770 |
+
msgstr "Přidat tuto akci do vašeho kalendáře Google"
|
771 |
+
|
772 |
+
#: app/view/event-single.php:33
|
773 |
+
#@ all-in-one-event-calendar
|
774 |
+
msgid "Add to Google Calendar"
|
775 |
+
msgstr "Přidat do kalendáře Google"
|
776 |
+
|
777 |
+
#: app/view/event-multi.php:33
|
778 |
+
#: app/view/event-single.php:40
|
779 |
+
#@ all-in-one-event-calendar
|
780 |
+
msgid "Cost:"
|
781 |
+
msgstr "Cena:"
|
782 |
+
|
783 |
+
#: app/view/event-multi.php:39
|
784 |
+
#: app/view/event-single.php:46
|
785 |
+
#@ all-in-one-event-calendar
|
786 |
+
msgid "Contact:"
|
787 |
+
msgstr "Kontakt:"
|
788 |
+
|
789 |
+
#: app/view/agenda.php:81
|
790 |
+
#: app/view/event-multi.php:45
|
791 |
+
#: app/view/event-single.php:52
|
792 |
+
#@ all-in-one-event-calendar
|
793 |
+
msgid "Categories:"
|
794 |
+
msgstr "Kategorie:"
|
795 |
+
|
796 |
+
#: app/view/agenda.php:87
|
797 |
+
#: app/view/event-multi.php:51
|
798 |
+
#: app/view/event-single.php:59
|
799 |
+
#@ all-in-one-event-calendar
|
800 |
+
msgid "Tags:"
|
801 |
+
msgstr "Štítky:"
|
802 |
+
|
803 |
+
#: app/view/event-map.php:2
|
804 |
+
#@ all-in-one-event-calendar
|
805 |
+
msgid "Click to view map"
|
806 |
+
msgstr "Klikněte pro zobrazení mapy"
|
807 |
+
|
808 |
+
#: app/view/event-map.php:9
|
809 |
+
#@ all-in-one-event-calendar
|
810 |
+
msgid "View Full-Size Map »"
|
811 |
+
msgstr "Ukázat velkou mapu »"
|
812 |
+
|
813 |
+
#: app/view/box_event_cost.php:1
|
814 |
+
#@ all-in-one-event-calendar
|
815 |
+
msgid "Event cost"
|
816 |
+
msgstr "Cena akce"
|
817 |
+
|
818 |
+
#: app/view/box_event_cost.php:7
|
819 |
+
#@ all-in-one-event-calendar
|
820 |
+
msgid "Cost"
|
821 |
+
msgstr "Cena"
|
822 |
+
|
823 |
+
#: app/view/event-multi.php:7
|
824 |
+
#@ all-in-one-event-calendar
|
825 |
+
msgid "View in Calendar »"
|
826 |
+
msgstr "Prohlédnout v kalendáři »"
|
827 |
+
|
828 |
+
#: app/view/event-multi.php:24
|
829 |
+
#@ all-in-one-event-calendar
|
830 |
+
msgid "View Map »"
|
831 |
+
msgstr "Ukázat mapu »"
|
832 |
+
|
833 |
+
#: app/view/admin_notices.php:2
|
834 |
+
#@ all-in-one-event-calendar
|
835 |
+
msgid "All-in-One Event Calendar Notice:"
|
836 |
+
msgstr "Poznámka kalendáře:"
|
837 |
+
|
838 |
+
#: app/view/row_daily.php:3
|
839 |
+
#: app/view/row_monthly.php:3
|
840 |
+
#: app/view/row_monthly.php:22
|
841 |
+
#: app/view/row_weekly.php:3
|
842 |
+
#: app/view/row_yearly.php:3
|
843 |
+
#@ all-in-one-event-calendar
|
844 |
+
msgid "Every"
|
845 |
+
msgstr "Každý"
|
846 |
+
|
847 |
+
#: app/view/event_categories-color_picker.php:5
|
848 |
+
#: app/view/event_categories-color_picker.php:19
|
849 |
+
#@ all-in-one-event-calendar
|
850 |
+
msgid "Category Color"
|
851 |
+
msgstr "Barva kategorie"
|
852 |
+
|
853 |
+
#: app/view/event_categories-color_picker.php:13
|
854 |
+
#: app/view/event_categories-color_picker.php:25
|
855 |
+
#@ all-in-one-event-calendar
|
856 |
+
msgid "Events in this category will be identified by this color"
|
857 |
+
msgstr "Akce v této kategorii budou označeny touto barvou"
|
858 |
+
|
859 |
+
#: app/view/agenda-widget.php:11
|
860 |
+
#@ all-in-one-event-calendar
|
861 |
+
msgid "There are no upcoming events."
|
862 |
+
msgstr "Nejsou žádné plánované akce."
|
863 |
+
|
864 |
+
#: app/view/agenda-widget.php:59
|
865 |
+
#@ all-in-one-event-calendar
|
866 |
+
msgid "View Calendar »"
|
867 |
+
msgstr "Zobrazit kalendář »"
|
868 |
+
|
869 |
+
#: app/view/agenda-widget.php:67
|
870 |
+
#: app/view/calendar.php:110
|
871 |
+
#@ all-in-one-event-calendar
|
872 |
+
msgid "Subscribe to this calendar using your favourite calendar program (iCal, Outlook, etc.)"
|
873 |
+
msgstr "Odebírejte akce z tohoto kalendáře pomocí svého programu (iCal, Outlook, atd.)"
|
874 |
+
|
875 |
+
#: app/view/agenda-widget.php:68
|
876 |
+
#: app/view/calendar.php:111
|
877 |
+
#@ all-in-one-event-calendar
|
878 |
+
msgid "✔ Subscribe"
|
879 |
+
msgstr "✔ Odebírat"
|
880 |
+
|
881 |
+
#: app/view/agenda-widget.php:72
|
882 |
+
#: app/view/calendar.php:116
|
883 |
+
#@ all-in-one-event-calendar
|
884 |
+
msgid "Subscribe to this calendar in your Google Calendar"
|
885 |
+
msgstr "Odebírejte tento kalendář pomocí kalendáře Google"
|
886 |
+
|
887 |
+
#: app/view/agenda-widget.php:74
|
888 |
+
#@ all-in-one-event-calendar
|
889 |
+
msgid "Add to Google"
|
890 |
+
msgstr "Přidat do Google"
|
891 |
+
|
892 |
+
#: app/view/box_event_contact.php:1
|
893 |
+
#@ all-in-one-event-calendar
|
894 |
+
msgid "Organizer contact info"
|
895 |
+
msgstr "Kontakt na pořadatele"
|
896 |
+
|
897 |
+
#: app/view/box_event_contact.php:7
|
898 |
+
#@ all-in-one-event-calendar
|
899 |
+
msgid "Contact name:"
|
900 |
+
msgstr "Jméno:"
|
901 |
+
|
902 |
+
#: app/view/box_event_contact.php:17
|
903 |
+
#@ all-in-one-event-calendar
|
904 |
+
msgid "Phone:"
|
905 |
+
msgstr "Telefon:"
|
906 |
+
|
907 |
+
#: app/view/box_event_contact.php:27
|
908 |
+
#@ all-in-one-event-calendar
|
909 |
+
msgid "E-mail:"
|
910 |
+
msgstr "E-mail:"
|
911 |
+
|
912 |
+
#: app/view/box_ics_import_settings.php:2
|
913 |
+
#@ all-in-one-event-calendar
|
914 |
+
msgid "Auto-refresh"
|
915 |
+
msgstr "Automaticky obnovit"
|
916 |
+
|
917 |
+
#: app/view/box_ics_import_settings.php:8
|
918 |
+
#: app/view/feed_row.php:3
|
919 |
+
#@ all-in-one-event-calendar
|
920 |
+
msgid "iCalendar/.ics Feed URL:"
|
921 |
+
msgstr "iCalendar/.ics feed URL:"
|
922 |
+
|
923 |
+
#: app/view/box_ics_import_settings.php:12
|
924 |
+
#@ all-in-one-event-calendar
|
925 |
+
msgid "Event category"
|
926 |
+
msgstr "Kategorie akce"
|
927 |
+
|
928 |
+
#: app/view/box_ics_import_settings.php:18
|
929 |
+
#: app/view/feed_row.php:15
|
930 |
+
#@ all-in-one-event-calendar
|
931 |
+
msgid "Tag with"
|
932 |
+
msgstr "Štítek s"
|
933 |
+
|
934 |
+
#: app/view/box_ics_import_settings.php:22
|
935 |
+
#@ all-in-one-event-calendar
|
936 |
+
msgid "+ Add new subscription"
|
937 |
+
msgstr "+ Přidat nový odběr"
|
938 |
+
|
939 |
+
#: app/view/box_general_settings.php:1
|
940 |
+
#@ all-in-one-event-calendar
|
941 |
+
msgid "Viewing Events"
|
942 |
+
msgstr "Zobrazení akcí"
|
943 |
+
|
944 |
+
#: app/view/box_general_settings.php:3
|
945 |
+
#@ all-in-one-event-calendar
|
946 |
+
msgid "Calendar page:"
|
947 |
+
msgstr "Stránka kalendáře:"
|
948 |
+
|
949 |
+
#: app/view/box_general_settings.php:7
|
950 |
+
#@ all-in-one-event-calendar
|
951 |
+
msgid "Default calendar view:"
|
952 |
+
msgstr "Výchozí zobrazení kalendáře:"
|
953 |
+
|
954 |
+
#: app/view/box_general_settings.php:12
|
955 |
+
#@ all-in-one-event-calendar
|
956 |
+
msgid "Timezone:"
|
957 |
+
msgstr "Časové pásmo:"
|
958 |
+
|
959 |
+
#: app/view/box_general_settings.php:17
|
960 |
+
#@ all-in-one-event-calendar
|
961 |
+
msgid "Contain calendar in this DOM element:"
|
962 |
+
msgstr "Vložit kalendář do tohoto DOM elementu:"
|
963 |
+
|
964 |
+
#: app/view/box_general_settings.php:19
|
965 |
+
#@ all-in-one-event-calendar
|
966 |
+
msgid "Optional. Provide a <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selector</a> that evaluates to a single DOM element. Replaces any existing markup found within target. If left empty, calendar is shown in normal page content container."
|
967 |
+
msgstr "Volitelné. Zadejte <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selektor</a>, který je vyhodnocen, jako jeden element DOM. V rámci targetu odstraní veškerý markup. Pokud necháte prázdné, kalandář se ukazuje v normálním page content kontajneru."
|
968 |
+
|
969 |
+
#: app/view/box_general_settings.php:21
|
970 |
+
#@ all-in-one-event-calendar
|
971 |
+
msgid "Week starts on"
|
972 |
+
msgstr "Týden začíná v"
|
973 |
+
|
974 |
+
#: app/view/box_general_settings.php:25
|
975 |
+
#@ all-in-one-event-calendar
|
976 |
+
msgid "Agenda pages show at most"
|
977 |
+
msgstr "Stránka s programem zobrazuje nejvíce"
|
978 |
+
|
979 |
+
#: app/view/box_general_settings.php:26
|
980 |
+
#@ all-in-one-event-calendar
|
981 |
+
msgid "events"
|
982 |
+
msgstr "akcí"
|
983 |
+
|
984 |
+
#: app/view/box_general_settings.php:31
|
985 |
+
#@ all-in-one-event-calendar
|
986 |
+
msgid "Keep all events <strong>expanded</strong> in the agenda view"
|
987 |
+
msgstr "V programu by měly zůstat všechny akce <strong>otevřené</strong>"
|
988 |
+
|
989 |
+
#: app/view/box_general_settings.php:37
|
990 |
+
#@ all-in-one-event-calendar
|
991 |
+
msgid "<strong>Exclude</strong> events from search results"
|
992 |
+
msgstr "<strong>Vynech</strong> akce ve výsledcích hledání"
|
993 |
+
|
994 |
+
#: app/view/box_general_settings.php:43
|
995 |
+
#@ all-in-one-event-calendar
|
996 |
+
msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
|
997 |
+
msgstr "Ukaž tlačítko <strong>Pošlete vaší akci</strong> nad kalendářem pro privilegované uživatele"
|
998 |
+
|
999 |
+
#: app/view/box_general_settings.php:49
|
1000 |
+
#@ all-in-one-event-calendar
|
1001 |
+
msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
|
1002 |
+
msgstr "Skryj tlačítka <strong>Odebírat</strong>/<strong>Přidat do kalendáře</strong> v kalendáři a náhledu akce"
|
1003 |
+
|
1004 |
+
#: app/view/box_general_settings.php:55
|
1005 |
+
#@ all-in-one-event-calendar
|
1006 |
+
msgid "Hide <strong>Google Maps</strong> until clicked"
|
1007 |
+
msgstr "Skrýt <strong>Google mapy</strong> dokud se na ně neklikne"
|
1008 |
+
|
1009 |
+
#: app/view/box_general_settings.php:61
|
1010 |
+
#@ all-in-one-event-calendar
|
1011 |
+
msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function"
|
1012 |
+
msgstr "Použít nastavený <strong>region</strong> (locale Wordpressu) k ovlivnění adresy ve funkci automatického dokončování"
|
1013 |
+
|
1014 |
+
#: app/view/box_general_settings.php:67
|
1015 |
+
#@ all-in-one-event-calendar
|
1016 |
+
msgid "Include <strong>event categories</strong> in post category lists"
|
1017 |
+
msgstr "Zahrnout <strong>kategorie akcí</strong> do seznamu kategorií článků"
|
1018 |
+
|
1019 |
+
#: app/view/box_general_settings.php:71
|
1020 |
+
#@ all-in-one-event-calendar
|
1021 |
+
msgid "Adding/Editing Events"
|
1022 |
+
msgstr "Přidání/úprava akcí"
|
1023 |
+
|
1024 |
+
#: app/view/box_general_settings.php:73
|
1025 |
+
#@ all-in-one-event-calendar
|
1026 |
+
msgid "Input dates in this format:"
|
1027 |
+
msgstr "Vkládání datumů v tomto formátu:"
|
1028 |
+
|
1029 |
+
#: app/view/box_general_settings.php:79
|
1030 |
+
#@ all-in-one-event-calendar
|
1031 |
+
msgid "Use <strong>24h time</strong> in time pickers"
|
1032 |
+
msgstr "Používat systém času <strong>24h</strong> u vyplňování času"
|
1033 |
+
|
1034 |
+
#: app/view/box_general_settings.php:85
|
1035 |
+
#@ all-in-one-event-calendar
|
1036 |
+
msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
|
1037 |
+
msgstr "Zobrazit tlačítko <strong>Publikovat</strong> dole na formuláři Upravit akci"
|
1038 |
+
|
1039 |
+
#: app/view/row_yearly.php:7
|
1040 |
+
#@ all-in-one-event-calendar
|
1041 |
+
msgctxt "Recurrence editor - yearly tab"
|
1042 |
+
msgid "In"
|
1043 |
+
msgstr "V"
|
1044 |
+
|
1045 |
+
#: app/view/feed_row.php:9
|
1046 |
+
#@ all-in-one-event-calendar
|
1047 |
+
msgid "Event category:"
|
1048 |
+
msgstr "Kategorie akce:"
|
1049 |
+
|
1050 |
+
#: app/view/feed_row.php:19
|
1051 |
+
#@ all-in-one-event-calendar
|
1052 |
+
msgid "× Delete"
|
1053 |
+
msgstr "× Smazat"
|
1054 |
+
|
1055 |
+
#: app/view/agenda-widget-form.php:2
|
1056 |
+
#@ all-in-one-event-calendar
|
1057 |
+
msgid "Title:"
|
1058 |
+
msgstr "Název:"
|
1059 |
+
|
1060 |
+
#: app/view/agenda-widget-form.php:6
|
1061 |
+
#@ all-in-one-event-calendar
|
1062 |
+
msgid "Number of events to show:"
|
1063 |
+
msgstr "Kolik akcí zobrazit:"
|
1064 |
+
|
1065 |
+
#: app/view/agenda-widget-form.php:14
|
1066 |
+
#@ all-in-one-event-calendar
|
1067 |
+
msgid "Events with these <strong>Categories</strong>"
|
1068 |
+
msgstr "Akce v těchto <strong>kategoriích</strong>"
|
1069 |
+
|
1070 |
+
#: app/view/agenda-widget-form.php:23
|
1071 |
+
#@ all-in-one-event-calendar
|
1072 |
+
msgid "No categories found."
|
1073 |
+
msgstr "Žádné kategorie nenalezeny."
|
1074 |
+
|
1075 |
+
#: app/view/agenda-widget-form.php:30
|
1076 |
+
#@ all-in-one-event-calendar
|
1077 |
+
msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
|
1078 |
+
msgstr "<strong>Nebo</strong> akce s těmito <strong>štítky</strong>"
|
1079 |
+
|
1080 |
+
#: app/view/agenda-widget-form.php:39
|
1081 |
+
#@ all-in-one-event-calendar
|
1082 |
+
msgid "No tags found."
|
1083 |
+
msgstr "Žádné štítky nenalezeny."
|
1084 |
+
|
1085 |
+
#: app/view/agenda-widget-form.php:46
|
1086 |
+
#@ all-in-one-event-calendar
|
1087 |
+
msgid "<strong>Or</strong> any of these <strong>Events</strong>"
|
1088 |
+
msgstr "<strong>Nebo</strong> jakákoliv z těchto <strong>akcí</strong>"
|
1089 |
+
|
1090 |
+
#: app/view/agenda-widget-form.php:55
|
1091 |
+
#@ all-in-one-event-calendar
|
1092 |
+
msgid "No events found."
|
1093 |
+
msgstr "Žádné akce nenalezeny."
|
1094 |
+
|
1095 |
+
#: app/view/agenda-widget-form.php:62
|
1096 |
+
#@ all-in-one-event-calendar
|
1097 |
+
msgid "Show <strong>View Calendar</strong> button"
|
1098 |
+
msgstr "Ukaž tlačítko <strong>Zobrazit kalendář</strong>"
|
1099 |
+
|
1100 |
+
#: app/view/agenda-widget-form.php:65
|
1101 |
+
#@ all-in-one-event-calendar
|
1102 |
+
msgid "Show <strong>Subscribe</strong> buttons"
|
1103 |
+
msgstr "Ukaž tlačítko <strong>Odebírat</strong>"
|
1104 |
+
|
1105 |
+
#: app/view/agenda-widget-form.php:68
|
1106 |
+
#@ all-in-one-event-calendar
|
1107 |
+
msgid "Hide this widget on calendar page"
|
1108 |
+
msgstr "Skrýt tento widget na stránce s kalendářem"
|
1109 |
+
|
1110 |
+
#: app/view/calendar.php:35
|
1111 |
+
#@ all-in-one-event-calendar
|
1112 |
+
msgid "+ Post Your Event"
|
1113 |
+
msgstr "+ Publikovat vaši akci"
|
1114 |
+
|
1115 |
+
#: app/view/calendar.php:44
|
1116 |
+
#@ all-in-one-event-calendar
|
1117 |
+
msgid "Clear Filters"
|
1118 |
+
msgstr "Vynulovat filtry"
|
1119 |
+
|
1120 |
+
#: app/view/calendar.php:44
|
1121 |
+
#@ all-in-one-event-calendar
|
1122 |
+
msgid "✘"
|
1123 |
+
msgstr "✘"
|
1124 |
+
|
1125 |
+
#: app/view/calendar.php:45
|
1126 |
+
#@ all-in-one-event-calendar
|
1127 |
+
msgid "Filter:"
|
1128 |
+
msgstr "Filtr:"
|
1129 |
+
|
1130 |
+
#: app/view/calendar.php:50
|
1131 |
+
#@ all-in-one-event-calendar
|
1132 |
+
msgid "Categories ▾"
|
1133 |
+
msgstr "Kategorie ▾"
|
1134 |
+
|
1135 |
+
#: app/view/calendar.php:72
|
1136 |
+
#@ all-in-one-event-calendar
|
1137 |
+
msgid "Tags ▾"
|
1138 |
+
msgstr "Štítky ▾"
|
1139 |
+
|
1140 |
+
#: app/view/calendar.php:112
|
1141 |
+
#@ all-in-one-event-calendar
|
1142 |
+
msgid "to this filtered calendar"
|
1143 |
+
msgstr "k tomuto kalendáři na základě filtru"
|
1144 |
+
|
1145 |
+
#: app/view/calendar.php:118
|
1146 |
+
#@ all-in-one-event-calendar
|
1147 |
+
msgid "Subscribe in Google Calendar"
|
1148 |
+
msgstr "Odebírat v kalendáři Google"
|
1149 |
+
|
1150 |
+
#: app/view/agenda.php:5
|
1151 |
+
#@ all-in-one-event-calendar
|
1152 |
+
msgid "+ Expand All"
|
1153 |
+
msgstr "+ Otevřít vše"
|
1154 |
+
|
1155 |
+
#: app/view/agenda.php:8
|
1156 |
+
#@ all-in-one-event-calendar
|
1157 |
+
msgid "− Collapse All"
|
1158 |
+
msgstr "− Zavřít vše"
|
1159 |
+
|
1160 |
+
#: app/view/agenda.php:12
|
1161 |
+
#: app/view/month.php:4
|
1162 |
+
#: app/view/week.php:4
|
1163 |
+
#@ all-in-one-event-calendar
|
1164 |
+
msgid "Today"
|
1165 |
+
msgstr "Dnes"
|
1166 |
+
|
1167 |
+
#: app/view/agenda.php:29
|
1168 |
+
#@ all-in-one-event-calendar
|
1169 |
+
msgid "There are no upcoming events to display at this time."
|
1170 |
+
msgstr "V tuto chvíli nejsou žádné plánované akce."
|
1171 |
+
|
1172 |
+
#: app/view/agenda.php:59
|
1173 |
+
#: app/view/agenda.php:109
|
1174 |
+
#: app/view/month.php:68
|
1175 |
+
#: app/view/week.php:69
|
1176 |
+
#@ all-in-one-event-calendar
|
1177 |
+
msgid "(all-day)"
|
1178 |
+
msgstr "(celodenní)"
|
1179 |
+
|
1180 |
+
#: app/view/agenda.php:77
|
1181 |
+
#@ all-in-one-event-calendar
|
1182 |
+
msgid "Read more »"
|
1183 |
+
msgstr "Více »"
|
1184 |
+
|
1185 |
+
#: app/view/class-ai1ec-agenda-widget.php:18
|
1186 |
+
#: app/view/class-ai1ec-agenda-widget.php:39
|
1187 |
+
#@ all-in-one-event-calendar
|
1188 |
+
msgid "Upcoming Events"
|
1189 |
+
msgstr "Nejbližší akce"
|
1190 |
+
|
1191 |
+
#: app/view/class-ai1ec-agenda-widget.php:20
|
1192 |
+
#@ all-in-one-event-calendar
|
1193 |
+
msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
|
1194 |
+
msgstr "All-in-One Event Calendar: vypíše nejbližší akce v programu"
|
1195 |
+
|
1196 |
+
#: app/view/box_the_seed_studio.php:4
|
1197 |
+
#@ all-in-one-event-calendar
|
1198 |
+
msgid "The Seed Studio"
|
1199 |
+
msgstr "The Seed Studio"
|
1200 |
+
|
1201 |
+
#: app/view/box_the_seed_studio.php:7
|
1202 |
+
#@ all-in-one-event-calendar
|
1203 |
+
msgid "The Seed Studio provides web development and support services for clients and web developers."
|
1204 |
+
msgstr "The Seed Studio se zabývá vývojem webových aplikací a podporou klientů i web developerů."
|
1205 |
+
|
1206 |
+
#: app/view/box_the_seed_studio.php:14
|
1207 |
+
#@ all-in-one-event-calendar
|
1208 |
+
msgid "Follow @theseednet"
|
1209 |
+
msgstr "Odebírat @theseednet"
|
1210 |
+
|
1211 |
+
#: app/view/box_the_seed_studio.php:20
|
1212 |
+
#@ all-in-one-event-calendar
|
1213 |
+
msgid "Get Support<span> from one of our experienced pros</span>"
|
1214 |
+
msgstr "Mějte podporu<span> od jednoho z našich zkušených profesionálů</span>"
|
1215 |
+
|
1216 |
+
#: app/view/box_the_seed_studio.php:23
|
1217 |
+
#@ all-in-one-event-calendar
|
1218 |
+
msgid "Support"
|
1219 |
+
msgstr "Podpora"
|
1220 |
+
|
1221 |
+
#: app/view/box_the_seed_studio.php:25
|
1222 |
+
#@ all-in-one-event-calendar
|
1223 |
+
msgid "View plugin documentation"
|
1224 |
+
msgstr "Zobrazit dokumentaci k pluginu"
|
1225 |
+
|
1226 |
+
#: app/view/box_the_seed_studio.php:28
|
1227 |
+
#@ all-in-one-event-calendar
|
1228 |
+
msgid "You can also hire The Seed for support on a contract or per-hour basis for this plugin, for your website or for any of your Internet marketing needs (we can really help!)."
|
1229 |
+
msgstr "Firmu The Seed si také můžete najmout, s tímto pluginem rádi pomůžeme, platí se za hodinu práce. Můžete si nás také objednat na pomoc s vaší stránkou nebo pro marketingové potřeby (opravdu můžeme pomoci!)."
|
1230 |
+
|
1231 |
+
#: app/view/box_the_seed_studio.php:31
|
1232 |
+
#@ all-in-one-event-calendar
|
1233 |
+
msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
|
1234 |
+
msgstr "Uživatelé pluginu: The Seed poskytuje podporu platícím klientům. Pokud chcete získat podporu zdarma od ostatních uživatelů Wordpressu, navštivte fórum pluginu."
|
1235 |
+
|
1236 |
+
#: app/view/box_the_seed_studio.php:34
|
1237 |
+
#@ all-in-one-event-calendar
|
1238 |
+
msgid "Vote and Share"
|
1239 |
+
msgstr "Volte a sdílejte"
|
1240 |
+
|
1241 |
+
#: app/view/box_the_seed_studio.php:36
|
1242 |
+
#@ all-in-one-event-calendar
|
1243 |
+
msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
|
1244 |
+
msgstr "Tento plugin je zdarma pro komunitu Wordpressu pod licencí GPL3. Všecho, co od vás chceme, je:"
|
1245 |
+
|
1246 |
+
#: app/view/box_the_seed_studio.php:38
|
1247 |
+
#@ all-in-one-event-calendar
|
1248 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Give it a five-star rating on wordpress.org</a> (if you think it deserves it!)"
|
1249 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Dejte nám ohodnocení 5 hvězdiček na wordpress.org</a> (pokud si myslíte, že si to zaslouží!)"
|
1250 |
+
|
1251 |
+
#: app/view/box_the_seed_studio.php:39
|
1252 |
+
#@ all-in-one-event-calendar
|
1253 |
+
msgid "Link to the plugin page on our website"
|
1254 |
+
msgstr "Dejte na vaše stránky odkaz na stránku pluginu"
|
1255 |
+
|
1256 |
+
#: app/view/box_the_seed_studio.php:40
|
1257 |
+
#@ all-in-one-event-calendar
|
1258 |
+
msgid "Become a Fan on Facebook"
|
1259 |
+
msgstr "Staňte se naším fanouškem na Facebooku"
|
1260 |
+
|
1261 |
+
#: app/view/box_the_seed_studio.php:41
|
1262 |
+
#@ all-in-one-event-calendar
|
1263 |
+
msgid "Follow us on Twitter"
|
1264 |
+
msgstr "Sledujte nás na Twitteru"
|
1265 |
+
|
1266 |
+
#: app/view/box_the_seed_studio.php:46
|
1267 |
+
#@ all-in-one-event-calendar
|
1268 |
+
msgid "Latest from the Seed Network"
|
1269 |
+
msgstr "Novinky ze Seed Network"
|
1270 |
+
|
1271 |
+
#: app/view/week.php:33
|
1272 |
+
#@ all-in-one-event-calendar
|
1273 |
+
msgid "All-day"
|
1274 |
+
msgstr "Celodenní"
|
1275 |
+
|
1276 |
+
#: app/view/month.php:50
|
1277 |
+
#: app/view/week.php:55
|
1278 |
+
#: app/view/week.php:127
|
1279 |
+
#@ all-in-one-event-calendar
|
1280 |
+
msgid "Summary:"
|
1281 |
+
msgstr "Souhrn:"
|
1282 |
+
|
1283 |
+
#: app/view/month.php:53
|
1284 |
+
#: app/view/week.php:58
|
1285 |
+
#: app/view/week.php:130
|
1286 |
+
#@ all-in-one-event-calendar
|
1287 |
+
msgid "click anywhere for details"
|
1288 |
+
msgstr "pro detaily klikněte kamkoliv"
|
1289 |
+
|
1290 |
+
#: app/view/box_eventbrite.php:1
|
1291 |
+
#@ all-in-one-event-calendar
|
1292 |
+
msgid "Eventbrite Ticketing"
|
1293 |
+
msgstr "Lístky přes Eventbrite.com"
|
1294 |
+
|
1295 |
+
#: app/view/box_eventbrite.php:7
|
1296 |
+
#@ all-in-one-event-calendar
|
1297 |
+
msgid "Register this event with Eventbrite.com?"
|
1298 |
+
msgstr "Registrovat tuto akci u Eventbrite.com?"
|
1299 |
+
|
1300 |
+
#: app/view/box_eventbrite.php:12
|
1301 |
+
#@ all-in-one-event-calendar
|
1302 |
+
msgid "Yes"
|
1303 |
+
msgstr "Ano"
|
1304 |
+
|
1305 |
+
#: app/view/box_eventbrite.php:14
|
1306 |
+
#@ all-in-one-event-calendar
|
1307 |
+
msgid "No"
|
1308 |
+
msgstr "Ne"
|
1309 |
+
|
1310 |
+
#: app/view/box_eventbrite.php:22
|
1311 |
+
#@ all-in-one-event-calendar
|
1312 |
+
msgid "Set up your first ticket"
|
1313 |
+
msgstr "Nastavte svůj první lístek"
|
1314 |
+
|
1315 |
+
#: app/view/box_eventbrite.php:24
|
1316 |
+
#@ all-in-one-event-calendar
|
1317 |
+
msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
|
1318 |
+
msgstr "Pro vytvoření více lístků na akci, vyplňte tento formulář a potom klikněte na odkaz na Eventbrite"
|
1319 |
+
|
1320 |
+
#: app/view/box_eventbrite.php:32
|
1321 |
+
#@ all-in-one-event-calendar
|
1322 |
+
msgid "Name"
|
1323 |
+
msgstr "Jméno"
|
1324 |
+
|
1325 |
+
#: app/view/box_eventbrite.php:42
|
1326 |
+
#@ all-in-one-event-calendar
|
1327 |
+
msgid "Description"
|
1328 |
+
msgstr "Popis"
|
1329 |
+
|
1330 |
+
#: app/view/box_eventbrite.php:53
|
1331 |
+
#@ all-in-one-event-calendar
|
1332 |
+
msgid "Type"
|
1333 |
+
msgstr "Typ"
|
1334 |
+
|
1335 |
+
#: app/view/box_eventbrite.php:58
|
1336 |
+
#@ all-in-one-event-calendar
|
1337 |
+
msgid "Set Price"
|
1338 |
+
msgstr "Nastavit cenu"
|
1339 |
+
|
1340 |
+
#: app/view/box_eventbrite.php:60
|
1341 |
+
#@ all-in-one-event-calendar
|
1342 |
+
msgid "Donation Based"
|
1343 |
+
msgstr "Založeno na dobrovolném příspěvku"
|
1344 |
+
|
1345 |
+
#: app/view/box_eventbrite.php:68
|
1346 |
+
#@ all-in-one-event-calendar
|
1347 |
+
msgid "The price for this event's first ticket will be taken from the Cost field above."
|
1348 |
+
msgstr "Cena orvního lístku na tuto akci bude vzata z pole Cena výše."
|
1349 |
+
|
1350 |
+
#: app/view/box_eventbrite.php:75
|
1351 |
+
#@ all-in-one-event-calendar
|
1352 |
+
msgid "Quantity"
|
1353 |
+
msgstr "Množství"
|
1354 |
+
|
1355 |
+
#: app/view/box_eventbrite.php:85
|
1356 |
+
#@ all-in-one-event-calendar
|
1357 |
+
msgid "Include Fee in Price"
|
1358 |
+
msgstr "Do ceny zahrnout poplatek"
|
1359 |
+
|
1360 |
+
#: app/view/box_eventbrite.php:90
|
1361 |
+
#@ all-in-one-event-calendar
|
1362 |
+
msgid "Add Service Fee on top of price"
|
1363 |
+
msgstr "Nad cenu přidat servisní poplatek"
|
1364 |
+
|
1365 |
+
#: app/view/box_eventbrite.php:92
|
1366 |
+
#@ all-in-one-event-calendar
|
1367 |
+
msgid "Include Service fee in price"
|
1368 |
+
msgstr "Do ceny zahrnout servisní poplatek"
|
1369 |
+
|
1370 |
+
#: app/view/box_eventbrite.php:98
|
1371 |
+
#@ all-in-one-event-calendar
|
1372 |
+
msgid "Payment Options"
|
1373 |
+
msgstr "Možnosti platby"
|
1374 |
+
|
1375 |
+
#: app/view/box_eventbrite.php:103
|
1376 |
+
#@ all-in-one-event-calendar
|
1377 |
+
msgid "Paypal"
|
1378 |
+
msgstr "Paypal"
|
1379 |
+
|
1380 |
+
#: app/view/box_eventbrite.php:105
|
1381 |
+
#@ all-in-one-event-calendar
|
1382 |
+
msgid "Google Checkout"
|
1383 |
+
msgstr "Google Checkout"
|
1384 |
+
|
1385 |
+
#: app/view/box_eventbrite.php:107
|
1386 |
+
#@ all-in-one-event-calendar
|
1387 |
+
msgid "Check"
|
1388 |
+
msgstr "Šek"
|
1389 |
+
|
1390 |
+
#: app/view/box_eventbrite.php:109
|
1391 |
+
#@ all-in-one-event-calendar
|
1392 |
+
msgid "Cash"
|
1393 |
+
msgstr "Hotově"
|
1394 |
+
|
1395 |
+
#: app/view/box_eventbrite.php:111
|
1396 |
+
#@ all-in-one-event-calendar
|
1397 |
+
msgid "Send an Invoice"
|
1398 |
+
msgstr "Poslat fakturu"
|
1399 |
+
|
1400 |
+
#: app/view/event-single-footer.php:4
|
1401 |
+
#, php-format
|
1402 |
+
#@ default
|
1403 |
+
msgid "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: app/view/event-single-footer.php:8
|
1407 |
+
#@ all-in-one-event-calendar
|
1408 |
+
msgid "View original post »"
|
1409 |
+
msgstr "Zobrazit původní příspěvek »"
|
1410 |
+
|
1411 |
+
#: app/view/box_time_and_date.php:2
|
1412 |
+
#@ all-in-one-event-calendar
|
1413 |
+
msgid "Event date and time"
|
1414 |
+
msgstr "Datum a čas akce"
|
1415 |
+
|
1416 |
+
#: app/view/box_time_and_date.php:8
|
1417 |
+
#@ all-in-one-event-calendar
|
1418 |
+
msgid "All-day event"
|
1419 |
+
msgstr "Celodenní akce"
|
1420 |
+
|
1421 |
+
#: app/view/box_time_and_date.php:18
|
1422 |
+
#@ all-in-one-event-calendar
|
1423 |
+
msgid "Start date / time"
|
1424 |
+
msgstr "Datum / čas začátku"
|
1425 |
+
|
1426 |
+
#: app/view/box_time_and_date.php:31
|
1427 |
+
#@ all-in-one-event-calendar
|
1428 |
+
msgid "End date / time"
|
1429 |
+
msgstr "Datum / čas konce"
|
1430 |
+
|
1431 |
+
#: app/view/box_time_and_date.php:46
|
1432 |
+
#@ all-in-one-event-calendar
|
1433 |
+
msgid "Repeat"
|
1434 |
+
msgstr "Opakovat"
|
1435 |
+
|
1436 |
+
#: app/view/box_time_and_date.php:70
|
1437 |
+
#@ all-in-one-event-calendar
|
1438 |
+
msgid "End"
|
1439 |
+
msgstr "Konec"
|
1440 |
+
|
1441 |
+
#: app/view/box_time_and_date.php:77
|
1442 |
+
#@ all-in-one-event-calendar
|
1443 |
+
msgid "Ending after"
|
1444 |
+
msgstr "Ukončení po"
|
1445 |
+
|
1446 |
+
#: app/view/box_time_and_date.php:92
|
1447 |
+
#@ all-in-one-event-calendar
|
1448 |
+
msgid "Apply"
|
1449 |
+
msgstr "Použít"
|
1450 |
+
|
1451 |
+
#: app/view/box_time_and_date.php:93
|
1452 |
+
#@ all-in-one-event-calendar
|
1453 |
+
msgid "Cancel"
|
1454 |
+
msgstr "Urušit"
|
1455 |
+
|
1456 |
+
#: app/view/row_weekly.php:6
|
1457 |
+
#@ all-in-one-event-calendar
|
1458 |
+
msgctxt "Recurrence editor - weekly tab"
|
1459 |
+
msgid "On"
|
1460 |
+
msgstr "V"
|
1461 |
+
|
1462 |
+
#: app/view/row_monthly.php:9
|
1463 |
+
#@ all-in-one-event-calendar
|
1464 |
+
msgid "On day of the month"
|
1465 |
+
msgstr "V den měsíce"
|
1466 |
+
|
1467 |
+
#: app/view/row_monthly.php:13
|
1468 |
+
#@ all-in-one-event-calendar
|
1469 |
+
msgid "On day of the week"
|
1470 |
+
msgstr "V den týdne"
|
1471 |
+
|
1472 |
+
#: app/view/settings.php:5
|
1473 |
+
#@ all-in-one-event-calendar
|
1474 |
+
msgid "All-in-one Event Calendar"
|
1475 |
+
msgstr "All-in-one Event Calendar"
|
1476 |
+
|
1477 |
+
#: app/view/settings.php:16
|
1478 |
+
#@ all-in-one-event-calendar
|
1479 |
+
msgid "Update Settings"
|
1480 |
+
msgstr "Uložit nastavení"
|
1481 |
+
|
1482 |
+
#: app/view/box_event_location.php:1
|
1483 |
+
#@ all-in-one-event-calendar
|
1484 |
+
msgid "Event location details"
|
1485 |
+
msgstr "Detaily místa akce"
|
1486 |
+
|
1487 |
+
#: app/view/box_event_location.php:7
|
1488 |
+
#@ all-in-one-event-calendar
|
1489 |
+
msgid "Venue name:"
|
1490 |
+
msgstr "Název místa:"
|
1491 |
+
|
1492 |
+
#: app/view/box_event_location.php:17
|
1493 |
+
#@ all-in-one-event-calendar
|
1494 |
+
msgid "Address:"
|
1495 |
+
msgstr "Adresa:"
|
1496 |
+
|
1497 |
+
#: app/view/box_event_location.php:27
|
1498 |
+
#@ all-in-one-event-calendar
|
1499 |
+
msgid "Show Google Map:"
|
1500 |
+
msgstr "Ukázat Google mapu:"
|
1501 |
+
|
1502 |
+
#: app/view/import.php:6
|
1503 |
+
#@ all-in-one-event-calendar
|
1504 |
+
msgid "Successfully imported events:"
|
1505 |
+
msgstr "Úspěšně importované akce:"
|
1506 |
+
|
language/all-in-one-event-calendar-da_DK.mo
ADDED
Binary file
|
language/all-in-one-event-calendar-da_DK.po
ADDED
@@ -0,0 +1,1509 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: All-in-One Event Calendar Plugin 1.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
5 |
+
"POT-Creation-Date: 2011-11-18 01:32:36+00:00\n"
|
6 |
+
"PO-Revision-Date: 2011-12-12 17:18+0100\n"
|
7 |
+
"Last-Translator: Edvard Christoffersen <me@denmark.dk>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: \n"
|
14 |
+
"X-Poedit-Country: \n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: \n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: app/model/class-ai1ec-event.php:487
|
23 |
+
#@ all-in-one-event-calendar
|
24 |
+
msgid " (all-day)"
|
25 |
+
msgstr "hele dagen"
|
26 |
+
|
27 |
+
#: app/helper/class-ai1ec-settings-helper.php:85
|
28 |
+
#@ all-in-one-event-calendar
|
29 |
+
msgid "- Auto-Create New Page -"
|
30 |
+
msgstr "- Opret automatisk Ny Side -"
|
31 |
+
|
32 |
+
#: app/helper/class-ai1ec-settings-helper.php:107
|
33 |
+
#, php-format
|
34 |
+
#@ all-in-one-event-calendar
|
35 |
+
msgid "View \"%s\" »"
|
36 |
+
msgstr "Vis \"%s\" »"
|
37 |
+
|
38 |
+
#: app/helper/class-ai1ec-settings-helper.php:149
|
39 |
+
#: app/view/calendar.php:11
|
40 |
+
#: app/view/calendar.php:12
|
41 |
+
#: app/view/calendar.php:25
|
42 |
+
#@ all-in-one-event-calendar
|
43 |
+
msgid "Month"
|
44 |
+
msgstr "Måned"
|
45 |
+
|
46 |
+
#: app/controller/class-ai1ec-calendar-controller.php:383
|
47 |
+
#: app/helper/class-ai1ec-settings-helper.php:155
|
48 |
+
#: app/view/calendar.php:26
|
49 |
+
#@ all-in-one-event-calendar
|
50 |
+
msgid "Agenda"
|
51 |
+
msgstr "Liste"
|
52 |
+
|
53 |
+
#: app/helper/class-ai1ec-settings-helper.php:204
|
54 |
+
#@ all-in-one-event-calendar
|
55 |
+
msgid "Default (d/m/y)"
|
56 |
+
msgstr "Standard (d/m/å)"
|
57 |
+
|
58 |
+
#: app/helper/class-ai1ec-settings-helper.php:207
|
59 |
+
#@ all-in-one-event-calendar
|
60 |
+
msgid "US (m/d/y)"
|
61 |
+
msgstr "US (m/d/y)"
|
62 |
+
|
63 |
+
# all-in-one-event-calendar
|
64 |
+
#: app/helper/class-ai1ec-settings-helper.php:210
|
65 |
+
#@ all-in-one-event-calendar
|
66 |
+
msgid "ISO 8601 (y-m-d)"
|
67 |
+
msgstr "ISO 8601 (å-m-d)"
|
68 |
+
|
69 |
+
#: app/helper/class-ai1ec-settings-helper.php:213
|
70 |
+
#@ all-in-one-event-calendar
|
71 |
+
msgid "Dotted (m.d.y)"
|
72 |
+
msgstr "Punktum (m.d.å)"
|
73 |
+
|
74 |
+
#: app/helper/class-ai1ec-settings-helper.php:231
|
75 |
+
#@ all-in-one-event-calendar
|
76 |
+
msgid "Hourly"
|
77 |
+
msgstr "Hver time"
|
78 |
+
|
79 |
+
#: app/helper/class-ai1ec-settings-helper.php:234
|
80 |
+
#@ all-in-one-event-calendar
|
81 |
+
msgid "Twice Daily"
|
82 |
+
msgstr "To gange dagligt"
|
83 |
+
|
84 |
+
#: app/helper/class-ai1ec-events-helper.php:554
|
85 |
+
#: app/helper/class-ai1ec-events-helper.php:573
|
86 |
+
#: app/helper/class-ai1ec-events-helper.php:1502
|
87 |
+
#: app/helper/class-ai1ec-settings-helper.php:237
|
88 |
+
#: app/view/box_time_and_date.php:58
|
89 |
+
#@ all-in-one-event-calendar
|
90 |
+
msgid "Daily"
|
91 |
+
msgstr "Dagligt"
|
92 |
+
|
93 |
+
#: app/helper/class-ai1ec-settings-helper.php:321
|
94 |
+
#@ all-in-one-event-calendar
|
95 |
+
msgid "Calendar"
|
96 |
+
msgstr "Kalender"
|
97 |
+
|
98 |
+
#: app/helper/class-ai1ec-app-helper.php:147
|
99 |
+
#@ all-in-one-event-calendar
|
100 |
+
msgctxt "Custom post type name"
|
101 |
+
msgid "Events"
|
102 |
+
msgstr "Begivenheder"
|
103 |
+
|
104 |
+
#: app/helper/class-ai1ec-app-helper.php:148
|
105 |
+
#@ all-in-one-event-calendar
|
106 |
+
msgctxt "Custom post type name (singular)"
|
107 |
+
msgid "Event"
|
108 |
+
msgstr "Begivenhed"
|
109 |
+
|
110 |
+
#: app/helper/class-ai1ec-app-helper.php:149
|
111 |
+
#@ all-in-one-event-calendar
|
112 |
+
msgid "Add New"
|
113 |
+
msgstr "Tilføj ny"
|
114 |
+
|
115 |
+
#: app/helper/class-ai1ec-app-helper.php:150
|
116 |
+
#@ all-in-one-event-calendar
|
117 |
+
msgid "Add New Event"
|
118 |
+
msgstr "Tilføj ny begivenhed"
|
119 |
+
|
120 |
+
#: app/helper/class-ai1ec-app-helper.php:151
|
121 |
+
#@ all-in-one-event-calendar
|
122 |
+
msgid "Edit Event"
|
123 |
+
msgstr "Redigér begivenhed"
|
124 |
+
|
125 |
+
#: app/helper/class-ai1ec-app-helper.php:152
|
126 |
+
#@ all-in-one-event-calendar
|
127 |
+
msgid "New Event"
|
128 |
+
msgstr "Ny begivenhed"
|
129 |
+
|
130 |
+
#: app/helper/class-ai1ec-app-helper.php:153
|
131 |
+
#@ all-in-one-event-calendar
|
132 |
+
msgid "View Event"
|
133 |
+
msgstr "Vis begivenhed"
|
134 |
+
|
135 |
+
#: app/helper/class-ai1ec-app-helper.php:154
|
136 |
+
#@ all-in-one-event-calendar
|
137 |
+
msgid "Search Events"
|
138 |
+
msgstr "Søg begivenheder"
|
139 |
+
|
140 |
+
#: app/helper/class-ai1ec-app-helper.php:155
|
141 |
+
#@ all-in-one-event-calendar
|
142 |
+
msgid "No Events found"
|
143 |
+
msgstr "Ingen begivenheder fundet"
|
144 |
+
|
145 |
+
#: app/helper/class-ai1ec-app-helper.php:156
|
146 |
+
#@ all-in-one-event-calendar
|
147 |
+
msgid "No Events found in Trash"
|
148 |
+
msgstr "Ingen begivenheder fundet i papirkurven"
|
149 |
+
|
150 |
+
#: app/helper/class-ai1ec-app-helper.php:157
|
151 |
+
#@ all-in-one-event-calendar
|
152 |
+
msgid "Parent Event"
|
153 |
+
msgstr "Overordnet begivenhed"
|
154 |
+
|
155 |
+
#: app/helper/class-ai1ec-app-helper.php:158
|
156 |
+
#@ all-in-one-event-calendar
|
157 |
+
msgid "Events"
|
158 |
+
msgstr "Begivenheder"
|
159 |
+
|
160 |
+
#: app/helper/class-ai1ec-app-helper.php:205
|
161 |
+
#@ all-in-one-event-calendar
|
162 |
+
msgctxt "Event categories taxonomy"
|
163 |
+
msgid "Event Categories"
|
164 |
+
msgstr "Begivenhedskategorier"
|
165 |
+
|
166 |
+
#: app/helper/class-ai1ec-app-helper.php:206
|
167 |
+
#@ all-in-one-event-calendar
|
168 |
+
msgctxt "Event categories taxonomy (singular)"
|
169 |
+
msgid "Event Category"
|
170 |
+
msgstr "Begivenhedskategori"
|
171 |
+
|
172 |
+
#: app/helper/class-ai1ec-app-helper.php:213
|
173 |
+
#@ all-in-one-event-calendar
|
174 |
+
msgctxt "Event tags taxonomy"
|
175 |
+
msgid "Event Tags"
|
176 |
+
msgstr "Begivenheds tags"
|
177 |
+
|
178 |
+
#: app/helper/class-ai1ec-app-helper.php:214
|
179 |
+
#@ all-in-one-event-calendar
|
180 |
+
msgctxt "Event tags taxonomy (singular)"
|
181 |
+
msgid "Event Tag"
|
182 |
+
msgstr "Tag for begivenhed"
|
183 |
+
|
184 |
+
#: app/helper/class-ai1ec-app-helper.php:313
|
185 |
+
#, php-format
|
186 |
+
#@ all-in-one-event-calendar
|
187 |
+
msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
|
188 |
+
msgstr "Alle begivenheder<span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
|
189 |
+
|
190 |
+
#: app/helper/class-ai1ec-app-helper.php:319
|
191 |
+
#@ all-in-one-event-calendar
|
192 |
+
msgid "All Events"
|
193 |
+
msgstr "Alle begivenheder"
|
194 |
+
|
195 |
+
#: app/helper/class-ai1ec-app-helper.php:395
|
196 |
+
#@ all-in-one-event-calendar
|
197 |
+
msgid "Event Details"
|
198 |
+
msgstr "Begivenhedsdetaljer"
|
199 |
+
|
200 |
+
#: app/helper/class-ai1ec-app-helper.php:428
|
201 |
+
#@ all-in-one-event-calendar
|
202 |
+
msgid "Post Date"
|
203 |
+
msgstr "Dato for oprettelse"
|
204 |
+
|
205 |
+
#: app/helper/class-ai1ec-app-helper.php:429
|
206 |
+
#@ all-in-one-event-calendar
|
207 |
+
msgid "Event date/time"
|
208 |
+
msgstr "Dato/tid for begivenhed"
|
209 |
+
|
210 |
+
#: app/helper/class-ai1ec-app-helper.php:653
|
211 |
+
#, php-format
|
212 |
+
#@ all-in-one-event-calendar
|
213 |
+
msgid "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</strong> dropdown list. %s 2. Select an option in the <strong>Timezone</strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
|
214 |
+
msgstr "%sFor opsætning af plugin: %s 1. Vælg en mulighed i <strong>Calendar page</strong> dropdown listen. %s 2. Vælg en mulighed i <strong>Tidszone</strong> dropdown listen. %s 3. Klik <strong>Opdater indstillinger</strong>. %s"
|
215 |
+
|
216 |
+
#: app/helper/class-ai1ec-app-helper.php:655
|
217 |
+
#@ all-in-one-event-calendar
|
218 |
+
msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
|
219 |
+
msgstr "Opsætning af dette plugin: Vælg en indstilling i <strong>Kalendersidens</strong> dropdown liste, og klik derefter på<strong>Opdatér indstillinger</strong>."
|
220 |
+
|
221 |
+
#: app/helper/class-ai1ec-app-helper.php:657
|
222 |
+
#@ all-in-one-event-calendar
|
223 |
+
msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
|
224 |
+
msgstr "Opsætning af dette plugin: Vælg en indstilling i <strong>Tidszone</strong> dropdown liste, og klik derefter <strong>Opdatér indstillinger</strong>."
|
225 |
+
|
226 |
+
#: app/helper/class-ai1ec-app-helper.php:661
|
227 |
+
#, php-format
|
228 |
+
#@ all-in-one-event-calendar
|
229 |
+
msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
|
230 |
+
msgstr "Plugin er installeret, men endnu ikke konfigureret. <a href=\"%s\">Klik her for at opsætte det nu »</a>"
|
231 |
+
|
232 |
+
#: app/helper/class-ai1ec-app-helper.php:667
|
233 |
+
#@ all-in-one-event-calendar
|
234 |
+
msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
|
235 |
+
msgstr "Plugin er installeret, men endnu ikke konfigureret. Log ind som administrator for at sætte det op."
|
236 |
+
|
237 |
+
#: app/helper/class-ai1ec-calendar-helper.php:759
|
238 |
+
#@ all-in-one-event-calendar
|
239 |
+
msgid "« Previous Events"
|
240 |
+
msgstr "« Forrige"
|
241 |
+
|
242 |
+
#: app/helper/class-ai1ec-calendar-helper.php:766
|
243 |
+
#@ all-in-one-event-calendar
|
244 |
+
msgid "Next Events »"
|
245 |
+
msgstr "Næste »"
|
246 |
+
|
247 |
+
#: app/helper/class-ai1ec-events-helper.php:319
|
248 |
+
#: app/helper/class-ai1ec-events-helper.php:341
|
249 |
+
#@ all-in-one-event-calendar
|
250 |
+
msgid "No repeat"
|
251 |
+
msgstr "Ingen gentagelser"
|
252 |
+
|
253 |
+
#: app/helper/class-ai1ec-events-helper.php:320
|
254 |
+
#: app/helper/class-ai1ec-events-helper.php:342
|
255 |
+
#@ all-in-one-event-calendar
|
256 |
+
msgid "Every day"
|
257 |
+
msgstr "Hver dag"
|
258 |
+
|
259 |
+
#: app/helper/class-ai1ec-events-helper.php:321
|
260 |
+
#: app/helper/class-ai1ec-events-helper.php:343
|
261 |
+
#@ all-in-one-event-calendar
|
262 |
+
msgid "Every week"
|
263 |
+
msgstr "Hver uge"
|
264 |
+
|
265 |
+
#: app/helper/class-ai1ec-events-helper.php:322
|
266 |
+
#: app/helper/class-ai1ec-events-helper.php:344
|
267 |
+
#@ all-in-one-event-calendar
|
268 |
+
msgid "Every month"
|
269 |
+
msgstr "Hver måned"
|
270 |
+
|
271 |
+
#: app/helper/class-ai1ec-events-helper.php:323
|
272 |
+
#: app/helper/class-ai1ec-events-helper.php:345
|
273 |
+
#@ all-in-one-event-calendar
|
274 |
+
msgid "Every year"
|
275 |
+
msgstr "Hvert år"
|
276 |
+
|
277 |
+
#: app/helper/class-ai1ec-events-helper.php:325
|
278 |
+
#: app/helper/class-ai1ec-events-helper.php:347
|
279 |
+
#@ all-in-one-event-calendar
|
280 |
+
msgid "Custom..."
|
281 |
+
msgstr "Brugerdefineret..."
|
282 |
+
|
283 |
+
#: app/helper/class-ai1ec-events-helper.php:468
|
284 |
+
#@ all-in-one-event-calendar
|
285 |
+
msgid "first"
|
286 |
+
msgstr "første"
|
287 |
+
|
288 |
+
#: app/helper/class-ai1ec-events-helper.php:469
|
289 |
+
#@ all-in-one-event-calendar
|
290 |
+
msgid "second"
|
291 |
+
msgstr "anden"
|
292 |
+
|
293 |
+
#: app/helper/class-ai1ec-events-helper.php:470
|
294 |
+
#@ all-in-one-event-calendar
|
295 |
+
msgid "third"
|
296 |
+
msgstr "tredie"
|
297 |
+
|
298 |
+
#: app/helper/class-ai1ec-events-helper.php:471
|
299 |
+
#@ all-in-one-event-calendar
|
300 |
+
msgid "fourth"
|
301 |
+
msgstr "fjerde"
|
302 |
+
|
303 |
+
#: app/helper/class-ai1ec-events-helper.php:473
|
304 |
+
#@ all-in-one-event-calendar
|
305 |
+
msgid "last"
|
306 |
+
msgstr "sidste"
|
307 |
+
|
308 |
+
#: app/helper/class-ai1ec-events-helper.php:478
|
309 |
+
#@ all-in-one-event-calendar
|
310 |
+
msgid "Sunday"
|
311 |
+
msgstr "Søndag"
|
312 |
+
|
313 |
+
#: app/helper/class-ai1ec-events-helper.php:479
|
314 |
+
#@ all-in-one-event-calendar
|
315 |
+
msgid "Monday"
|
316 |
+
msgstr "Mandag"
|
317 |
+
|
318 |
+
#: app/helper/class-ai1ec-events-helper.php:480
|
319 |
+
#@ all-in-one-event-calendar
|
320 |
+
msgid "Tuesday"
|
321 |
+
msgstr "Tirsdag"
|
322 |
+
|
323 |
+
#: app/helper/class-ai1ec-events-helper.php:481
|
324 |
+
#@ all-in-one-event-calendar
|
325 |
+
msgid "Wednesday"
|
326 |
+
msgstr "Onsdag"
|
327 |
+
|
328 |
+
#: app/helper/class-ai1ec-events-helper.php:482
|
329 |
+
#@ all-in-one-event-calendar
|
330 |
+
msgid "Thursday"
|
331 |
+
msgstr "Torsdag"
|
332 |
+
|
333 |
+
#: app/helper/class-ai1ec-events-helper.php:483
|
334 |
+
#@ all-in-one-event-calendar
|
335 |
+
msgid "Friday"
|
336 |
+
msgstr "Fredag"
|
337 |
+
|
338 |
+
#: app/helper/class-ai1ec-events-helper.php:484
|
339 |
+
#@ all-in-one-event-calendar
|
340 |
+
msgid "Saturday"
|
341 |
+
msgstr "Lørdag"
|
342 |
+
|
343 |
+
#: app/helper/class-ai1ec-events-helper.php:486
|
344 |
+
#@ all-in-one-event-calendar
|
345 |
+
msgid "day"
|
346 |
+
msgstr "dag"
|
347 |
+
|
348 |
+
#: app/helper/class-ai1ec-events-helper.php:487
|
349 |
+
#@ all-in-one-event-calendar
|
350 |
+
msgid "weekday"
|
351 |
+
msgstr "ugedag"
|
352 |
+
|
353 |
+
#: app/helper/class-ai1ec-events-helper.php:488
|
354 |
+
#@ all-in-one-event-calendar
|
355 |
+
msgid "weekend day"
|
356 |
+
msgstr "dag i weekenden"
|
357 |
+
|
358 |
+
#: app/helper/class-ai1ec-events-helper.php:555
|
359 |
+
#: app/helper/class-ai1ec-events-helper.php:574
|
360 |
+
#: app/helper/class-ai1ec-events-helper.php:1514
|
361 |
+
#: app/view/box_time_and_date.php:59
|
362 |
+
#@ all-in-one-event-calendar
|
363 |
+
msgid "Weekly"
|
364 |
+
msgstr "Ugentlig"
|
365 |
+
|
366 |
+
#: app/helper/class-ai1ec-events-helper.php:556
|
367 |
+
#: app/helper/class-ai1ec-events-helper.php:575
|
368 |
+
#: app/helper/class-ai1ec-events-helper.php:1526
|
369 |
+
#: app/view/box_time_and_date.php:60
|
370 |
+
#@ all-in-one-event-calendar
|
371 |
+
msgid "Monthly"
|
372 |
+
msgstr "Månedligt"
|
373 |
+
|
374 |
+
#: app/helper/class-ai1ec-events-helper.php:557
|
375 |
+
#: app/helper/class-ai1ec-events-helper.php:576
|
376 |
+
#: app/helper/class-ai1ec-events-helper.php:1538
|
377 |
+
#: app/view/box_time_and_date.php:61
|
378 |
+
#@ all-in-one-event-calendar
|
379 |
+
msgid "Yearly"
|
380 |
+
msgstr "Årligt"
|
381 |
+
|
382 |
+
#: app/helper/class-ai1ec-events-helper.php:598
|
383 |
+
#@ all-in-one-event-calendar
|
384 |
+
msgid "day(s)"
|
385 |
+
msgstr "dag(e)"
|
386 |
+
|
387 |
+
#: app/helper/class-ai1ec-events-helper.php:627
|
388 |
+
#@ all-in-one-event-calendar
|
389 |
+
msgid "week(s)"
|
390 |
+
msgstr "uge(r)"
|
391 |
+
|
392 |
+
#: app/helper/class-ai1ec-events-helper.php:697
|
393 |
+
#@ all-in-one-event-calendar
|
394 |
+
msgid "month(s)"
|
395 |
+
msgstr "måned(er)"
|
396 |
+
|
397 |
+
#: app/helper/class-ai1ec-events-helper.php:720
|
398 |
+
#@ all-in-one-event-calendar
|
399 |
+
msgid "year(s)"
|
400 |
+
msgstr "år"
|
401 |
+
|
402 |
+
#: app/helper/class-ai1ec-events-helper.php:1300
|
403 |
+
#@ all-in-one-event-calendar
|
404 |
+
msgid "Never"
|
405 |
+
msgstr "Aldrig"
|
406 |
+
|
407 |
+
#: app/helper/class-ai1ec-events-helper.php:1301
|
408 |
+
#@ all-in-one-event-calendar
|
409 |
+
msgid "After"
|
410 |
+
msgstr "Efter"
|
411 |
+
|
412 |
+
#: app/helper/class-ai1ec-events-helper.php:1302
|
413 |
+
#: app/view/box_time_and_date.php:84
|
414 |
+
#@ all-in-one-event-calendar
|
415 |
+
msgid "On date"
|
416 |
+
msgstr "På datoen"
|
417 |
+
|
418 |
+
#: app/helper/class-ai1ec-events-helper.php:1386
|
419 |
+
#: app/helper/class-ai1ec-events-helper.php:1415
|
420 |
+
#: app/helper/class-ai1ec-events-helper.php:1453
|
421 |
+
#@ all-in-one-event-calendar
|
422 |
+
msgid "and"
|
423 |
+
msgstr "og"
|
424 |
+
|
425 |
+
#: app/helper/class-ai1ec-events-helper.php:1411
|
426 |
+
#: app/helper/class-ai1ec-events-helper.php:1418
|
427 |
+
#: app/helper/class-ai1ec-events-helper.php:1424
|
428 |
+
#@ all-in-one-event-calendar
|
429 |
+
msgid "of the month"
|
430 |
+
msgstr "i måneden"
|
431 |
+
|
432 |
+
#: app/helper/class-ai1ec-events-helper.php:1505
|
433 |
+
#@ all-in-one-event-calendar
|
434 |
+
msgid "Every other day"
|
435 |
+
msgstr "Hver anden dag"
|
436 |
+
|
437 |
+
#: app/helper/class-ai1ec-events-helper.php:1507
|
438 |
+
#, php-format
|
439 |
+
#@ all-in-one-event-calendar
|
440 |
+
msgid "Every %d days"
|
441 |
+
msgstr "Hver %d dag"
|
442 |
+
|
443 |
+
#: app/helper/class-ai1ec-events-helper.php:1517
|
444 |
+
#@ all-in-one-event-calendar
|
445 |
+
msgid "Every other week"
|
446 |
+
msgstr "Hver anden uge"
|
447 |
+
|
448 |
+
#: app/helper/class-ai1ec-events-helper.php:1519
|
449 |
+
#, php-format
|
450 |
+
#@ all-in-one-event-calendar
|
451 |
+
msgid "Every %d weeks"
|
452 |
+
msgstr "Hver %d uge"
|
453 |
+
|
454 |
+
#: app/helper/class-ai1ec-events-helper.php:1529
|
455 |
+
#@ all-in-one-event-calendar
|
456 |
+
msgid "Every other month"
|
457 |
+
msgstr "Hver anden måned"
|
458 |
+
|
459 |
+
#: app/helper/class-ai1ec-events-helper.php:1531
|
460 |
+
#, php-format
|
461 |
+
#@ all-in-one-event-calendar
|
462 |
+
msgid "Every %d months"
|
463 |
+
msgstr "Hver %d måned"
|
464 |
+
|
465 |
+
#: app/helper/class-ai1ec-events-helper.php:1541
|
466 |
+
#@ all-in-one-event-calendar
|
467 |
+
msgid "Every other year"
|
468 |
+
msgstr "Hvert andet år"
|
469 |
+
|
470 |
+
#: app/helper/class-ai1ec-events-helper.php:1543
|
471 |
+
#, php-format
|
472 |
+
#@ all-in-one-event-calendar
|
473 |
+
msgid "Every %d years"
|
474 |
+
msgstr "Hvert %d år"
|
475 |
+
|
476 |
+
#: app/helper/class-ai1ec-events-helper.php:1563
|
477 |
+
#, php-format
|
478 |
+
#@ all-in-one-event-calendar
|
479 |
+
msgid "until %s"
|
480 |
+
msgstr "indtil %s"
|
481 |
+
|
482 |
+
#: app/helper/class-ai1ec-events-helper.php:1566
|
483 |
+
#, php-format
|
484 |
+
#@ all-in-one-event-calendar
|
485 |
+
msgid "for %d occurrences"
|
486 |
+
msgstr "i %d forekomster"
|
487 |
+
|
488 |
+
#: app/helper/class-ai1ec-events-helper.php:1568
|
489 |
+
#@ all-in-one-event-calendar
|
490 |
+
msgid "forever"
|
491 |
+
msgstr "altid"
|
492 |
+
|
493 |
+
#: app/controller/class-ai1ec-settings-controller.php:82
|
494 |
+
#@ all-in-one-event-calendar
|
495 |
+
msgid "Settings Updated."
|
496 |
+
msgstr "Indstillinger opdateret."
|
497 |
+
|
498 |
+
#: app/controller/class-ai1ec-settings-controller.php:173
|
499 |
+
#, php-format
|
500 |
+
#@ all-in-one-event-calendar
|
501 |
+
msgid "Flushed %d events"
|
502 |
+
msgstr "%d begivenheder slettet"
|
503 |
+
|
504 |
+
#: app/controller/class-ai1ec-settings-controller.php:221
|
505 |
+
#, php-format
|
506 |
+
#@ all-in-one-event-calendar
|
507 |
+
msgid "Imported %d events"
|
508 |
+
msgstr "%d begivenheder importeret"
|
509 |
+
|
510 |
+
#: app/controller/class-ai1ec-settings-controller.php:222
|
511 |
+
#: app/view/feed_row.php:22
|
512 |
+
#, php-format
|
513 |
+
#@ all-in-one-event-calendar
|
514 |
+
msgid "Flush 1 event"
|
515 |
+
msgid_plural "Flush %s events"
|
516 |
+
msgstr[0] "Slet 1 begivenhed"
|
517 |
+
msgstr[1] "Slet %s begivenheder"
|
518 |
+
|
519 |
+
#: app/controller/class-ai1ec-settings-controller.php:274
|
520 |
+
#@ all-in-one-event-calendar
|
521 |
+
msgctxt "meta box"
|
522 |
+
msgid "General Settings"
|
523 |
+
msgstr "Generelle indstillinger"
|
524 |
+
|
525 |
+
#: app/controller/class-ai1ec-settings-controller.php:282
|
526 |
+
#@ all-in-one-event-calendar
|
527 |
+
msgctxt "meta box"
|
528 |
+
msgid "The Seed Studio Support"
|
529 |
+
msgstr "The Seed Studio Support"
|
530 |
+
|
531 |
+
#: app/controller/class-ai1ec-settings-controller.php:289
|
532 |
+
#@ all-in-one-event-calendar
|
533 |
+
msgctxt "meta box"
|
534 |
+
msgid "ICS Import Settings"
|
535 |
+
msgstr "ICS Import Indstillinger"
|
536 |
+
|
537 |
+
#: app/controller/class-ai1ec-settings-controller.php:338
|
538 |
+
#, php-format
|
539 |
+
#@ all-in-one-event-calendar
|
540 |
+
msgid "<a href=\"%s\">Settings</a>"
|
541 |
+
msgstr "<a href=\"%s\">Indstillinger</a>"
|
542 |
+
|
543 |
+
#: app/controller/class-ai1ec-settings-controller.php:352
|
544 |
+
#, php-format
|
545 |
+
#@ all-in-one-event-calendar
|
546 |
+
msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
|
547 |
+
msgstr "<a href=\"%s\" target=\"_blank\">Donér</a>"
|
548 |
+
|
549 |
+
#: app/controller/class-ai1ec-settings-controller.php:353
|
550 |
+
#, php-format
|
551 |
+
#@ all-in-one-event-calendar
|
552 |
+
msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
|
553 |
+
msgstr "<a href=\"%s\" target=\"_blank\">Få hjælp</a>"
|
554 |
+
|
555 |
+
#: app/controller/class-ai1ec-events-controller.php:149
|
556 |
+
#@ all-in-one-event-calendar
|
557 |
+
msgid "This feed is already being imported."
|
558 |
+
msgstr "Dette feed bliver allerede importeret."
|
559 |
+
|
560 |
+
#: app/controller/class-ai1ec-events-controller.php:150
|
561 |
+
#@ all-in-one-event-calendar
|
562 |
+
msgid "Please enter a valid iCalendar URL."
|
563 |
+
msgstr "Indsæt venligst en gældende iCalendar webadresse (URL)."
|
564 |
+
|
565 |
+
#: app/controller/class-ai1ec-events-controller.php:285
|
566 |
+
#@ all-in-one-event-calendar
|
567 |
+
msgid "times"
|
568 |
+
msgstr "gange"
|
569 |
+
|
570 |
+
#: app/controller/class-ai1ec-events-controller.php:334
|
571 |
+
#@ all-in-one-event-calendar
|
572 |
+
msgid "Publish"
|
573 |
+
msgstr "Udgiv"
|
574 |
+
|
575 |
+
#: app/controller/class-ai1ec-events-controller.php:334
|
576 |
+
#: app/view/feed_row.php:20
|
577 |
+
#@ all-in-one-event-calendar
|
578 |
+
msgid "Update"
|
579 |
+
msgstr "Opdatér"
|
580 |
+
|
581 |
+
#: app/controller/class-ai1ec-events-controller.php:336
|
582 |
+
#@ all-in-one-event-calendar
|
583 |
+
msgid "Submit for Review"
|
584 |
+
msgstr "Indsend til bedømmelse"
|
585 |
+
|
586 |
+
#: app/controller/class-ai1ec-events-controller.php:449
|
587 |
+
#, php-format
|
588 |
+
#@ all-in-one-event-calendar
|
589 |
+
msgid "Event updated. <a href=\"%s\">View event</a>"
|
590 |
+
msgstr "Begivenhed opdateret. <a href=\"%s\">Vis begivenhed</a>"
|
591 |
+
|
592 |
+
#: app/controller/class-ai1ec-events-controller.php:450
|
593 |
+
#@ all-in-one-event-calendar
|
594 |
+
msgid "Custom field updated."
|
595 |
+
msgstr "Brugerdefineret felt er opdateret."
|
596 |
+
|
597 |
+
#: app/controller/class-ai1ec-events-controller.php:451
|
598 |
+
#@ all-in-one-event-calendar
|
599 |
+
msgid "Custom field deleted."
|
600 |
+
msgstr "Brugerdefineret felt er slettet."
|
601 |
+
|
602 |
+
#: app/controller/class-ai1ec-events-controller.php:452
|
603 |
+
#@ all-in-one-event-calendar
|
604 |
+
msgid "Event updated."
|
605 |
+
msgstr "Begivenhed er opdateret."
|
606 |
+
|
607 |
+
#. translators: %s: date and time of the revision
|
608 |
+
#: app/controller/class-ai1ec-events-controller.php:454
|
609 |
+
#, php-format
|
610 |
+
#@ all-in-one-event-calendar
|
611 |
+
msgid "Event restored to revision from %s"
|
612 |
+
msgstr "Begivenhed gendannet til revision af %s"
|
613 |
+
|
614 |
+
#: app/controller/class-ai1ec-events-controller.php:455
|
615 |
+
#, php-format
|
616 |
+
#@ all-in-one-event-calendar
|
617 |
+
msgid "Event published. <a href=\"%s\">View event</a>"
|
618 |
+
msgstr "Begivenhed udgivet. <a href=\"%s\">Vis begivenhed</a>"
|
619 |
+
|
620 |
+
#: app/controller/class-ai1ec-events-controller.php:456
|
621 |
+
#@ default
|
622 |
+
msgid "Event saved."
|
623 |
+
msgstr "Begivenhed gemt."
|
624 |
+
|
625 |
+
#: app/controller/class-ai1ec-events-controller.php:457
|
626 |
+
#, php-format
|
627 |
+
#@ all-in-one-event-calendar
|
628 |
+
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
629 |
+
msgstr "Begivenhed indsendt.. <a target=\"_blank\" href=\"%s\">Forhåndsvisning af begivenhed</a>"
|
630 |
+
|
631 |
+
#: app/controller/class-ai1ec-events-controller.php:458
|
632 |
+
#, php-format
|
633 |
+
#@ all-in-one-event-calendar
|
634 |
+
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
635 |
+
msgstr "Begivenhed skemalagt for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Forhåndsvisning af begivenhed</a"
|
636 |
+
|
637 |
+
#: app/controller/class-ai1ec-events-controller.php:460
|
638 |
+
#@ all-in-one-event-calendar
|
639 |
+
msgid "M j, Y @ G:i"
|
640 |
+
msgstr "M j, Y kl. G:i"
|
641 |
+
|
642 |
+
#: app/controller/class-ai1ec-events-controller.php:461
|
643 |
+
#, php-format
|
644 |
+
#@ all-in-one-event-calendar
|
645 |
+
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
646 |
+
msgstr "Udkast til begivenhed er opdateret <a target=\"_blank\" href=\"%s\">Forhåndsvisning</a>"
|
647 |
+
|
648 |
+
#: app/controller/class-ai1ec-app-controller.php:354
|
649 |
+
#: app/controller/class-ai1ec-app-controller.php:355
|
650 |
+
#@ all-in-one-event-calendar
|
651 |
+
msgid "Settings"
|
652 |
+
msgstr "Indstillinger"
|
653 |
+
|
654 |
+
#: app/controller/class-ai1ec-importer-controller.php:91
|
655 |
+
#@ all-in-one-event-calendar
|
656 |
+
msgid "The Events Calendar → All-in-One Event Calendar"
|
657 |
+
msgstr "Begivenhedskalenderen → All-in-One Event Calendar"
|
658 |
+
|
659 |
+
#: app/controller/class-ai1ec-importer-controller.php:92
|
660 |
+
#@ all-in-one-event-calendar
|
661 |
+
msgid "Imports events created using The Events Calendar plugin into the All-in-One Event Calendar"
|
662 |
+
msgstr "Importerer begivenheder oprettet med \\\"The Events Calendar\\\" plugin (ældre udgave) til All-in-One-Event Calendar"
|
663 |
+
|
664 |
+
#: app/view/event-excerpt.php:2
|
665 |
+
#: app/view/event-multi.php:4
|
666 |
+
#: app/view/event-single.php:5
|
667 |
+
#@ all-in-one-event-calendar
|
668 |
+
msgid "When:"
|
669 |
+
msgstr "Hvornår:"
|
670 |
+
|
671 |
+
#: app/view/event-single.php:8
|
672 |
+
#@ all-in-one-event-calendar
|
673 |
+
msgid "Back to Calendar »"
|
674 |
+
msgstr "Tilbage til kalender »"
|
675 |
+
|
676 |
+
#: app/view/event-multi.php:14
|
677 |
+
#: app/view/event-single.php:15
|
678 |
+
#@ all-in-one-event-calendar
|
679 |
+
msgid "Repeats:"
|
680 |
+
msgstr "Gentagelser:"
|
681 |
+
|
682 |
+
#: app/view/event-excerpt.php:4
|
683 |
+
#: app/view/event-multi.php:20
|
684 |
+
#: app/view/event-single.php:20
|
685 |
+
#@ all-in-one-event-calendar
|
686 |
+
msgid "Where:"
|
687 |
+
msgstr "Hvor:"
|
688 |
+
|
689 |
+
#: app/view/event-single.php:27
|
690 |
+
#@ all-in-one-event-calendar
|
691 |
+
msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
|
692 |
+
msgstr "Tilføj denne begivenhed i dit foretrukne kalenderprogram (iCal, Outlook, Windows Kalender etc.)"
|
693 |
+
|
694 |
+
#: app/view/event-single.php:28
|
695 |
+
#@ all-in-one-event-calendar
|
696 |
+
msgid "✔ Add to Calendar"
|
697 |
+
msgstr "✔ Tilføj i min kalender"
|
698 |
+
|
699 |
+
#: app/view/event-single.php:31
|
700 |
+
#@ all-in-one-event-calendar
|
701 |
+
msgid "Add this event to your Google Calendar"
|
702 |
+
msgstr "Tilføj denne begivenhed i din Google Calendar"
|
703 |
+
|
704 |
+
#: app/view/event-single.php:33
|
705 |
+
#@ all-in-one-event-calendar
|
706 |
+
msgid "Add to Google Calendar"
|
707 |
+
msgstr "Tilføj i Google Calendar"
|
708 |
+
|
709 |
+
#: app/view/event-multi.php:33
|
710 |
+
#: app/view/event-single.php:40
|
711 |
+
#@ all-in-one-event-calendar
|
712 |
+
msgid "Cost:"
|
713 |
+
msgstr "Pris:"
|
714 |
+
|
715 |
+
#: app/view/event-multi.php:39
|
716 |
+
#: app/view/event-single.php:46
|
717 |
+
#@ all-in-one-event-calendar
|
718 |
+
msgid "Contact:"
|
719 |
+
msgstr "Kontakt:"
|
720 |
+
|
721 |
+
#: app/view/agenda.php:81
|
722 |
+
#: app/view/event-multi.php:45
|
723 |
+
#: app/view/event-single.php:52
|
724 |
+
#@ all-in-one-event-calendar
|
725 |
+
msgid "Categories:"
|
726 |
+
msgstr "Kategorier:"
|
727 |
+
|
728 |
+
#: app/view/agenda.php:87
|
729 |
+
#: app/view/event-multi.php:51
|
730 |
+
#: app/view/event-single.php:59
|
731 |
+
#@ all-in-one-event-calendar
|
732 |
+
msgid "Tags:"
|
733 |
+
msgstr "Tags:"
|
734 |
+
|
735 |
+
#: app/view/event-map.php:2
|
736 |
+
#@ all-in-one-event-calendar
|
737 |
+
msgid "Click to view map"
|
738 |
+
msgstr "Klik for at se kort"
|
739 |
+
|
740 |
+
#: app/view/event-map.php:9
|
741 |
+
#@ all-in-one-event-calendar
|
742 |
+
msgid "View Full-Size Map »"
|
743 |
+
msgstr "Vis kort på hel side »"
|
744 |
+
|
745 |
+
#: app/view/box_event_cost.php:1
|
746 |
+
#@ all-in-one-event-calendar
|
747 |
+
msgid "Event cost"
|
748 |
+
msgstr "Begivenhedens pris"
|
749 |
+
|
750 |
+
#: app/view/box_event_cost.php:7
|
751 |
+
#@ all-in-one-event-calendar
|
752 |
+
msgid "Cost"
|
753 |
+
msgstr "Pris"
|
754 |
+
|
755 |
+
#: app/view/event-multi.php:7
|
756 |
+
#@ all-in-one-event-calendar
|
757 |
+
msgid "View in Calendar »"
|
758 |
+
msgstr "Vis i kalender »"
|
759 |
+
|
760 |
+
#: app/view/event-multi.php:24
|
761 |
+
#@ all-in-one-event-calendar
|
762 |
+
msgid "View Map »"
|
763 |
+
msgstr "Vis kort »"
|
764 |
+
|
765 |
+
#: app/view/admin_notices.php:2
|
766 |
+
#@ all-in-one-event-calendar
|
767 |
+
msgid "All-in-One Event Calendar Notice:"
|
768 |
+
msgstr "All-in-One Event Calendar notat:"
|
769 |
+
|
770 |
+
#: app/view/row_daily.php:3
|
771 |
+
#: app/view/row_monthly.php:3
|
772 |
+
#: app/view/row_monthly.php:22
|
773 |
+
#: app/view/row_weekly.php:3
|
774 |
+
#: app/view/row_yearly.php:3
|
775 |
+
#@ all-in-one-event-calendar
|
776 |
+
msgid "Every"
|
777 |
+
msgstr "Hver"
|
778 |
+
|
779 |
+
#: app/view/event_categories-color_picker.php:5
|
780 |
+
#: app/view/event_categories-color_picker.php:19
|
781 |
+
#@ all-in-one-event-calendar
|
782 |
+
msgid "Category Color"
|
783 |
+
msgstr "Kategorifarve"
|
784 |
+
|
785 |
+
#: app/view/event_categories-color_picker.php:13
|
786 |
+
#: app/view/event_categories-color_picker.php:25
|
787 |
+
#@ all-in-one-event-calendar
|
788 |
+
msgid "Events in this category will be identified by this color"
|
789 |
+
msgstr "Begivenheder i denne kategori kendes på denne farve"
|
790 |
+
|
791 |
+
#: app/view/agenda-widget.php:11
|
792 |
+
#@ all-in-one-event-calendar
|
793 |
+
msgid "There are no upcoming events."
|
794 |
+
msgstr "Der er ingen kommende begivenheder"
|
795 |
+
|
796 |
+
#: app/view/agenda-widget.php:59
|
797 |
+
#@ all-in-one-event-calendar
|
798 |
+
msgid "View Calendar »"
|
799 |
+
msgstr "Vis kalender »"
|
800 |
+
|
801 |
+
#: app/view/agenda-widget.php:67
|
802 |
+
#: app/view/calendar.php:110
|
803 |
+
#@ all-in-one-event-calendar
|
804 |
+
msgid "Subscribe to this calendar using your favourite calendar program (iCal, Outlook, etc.)"
|
805 |
+
msgstr "Abonnér på denne kalender med dit foretrukne kalenderprogram (iCal, Outlook, Windows kalender etc.)"
|
806 |
+
|
807 |
+
#: app/view/agenda-widget.php:68
|
808 |
+
#: app/view/calendar.php:111
|
809 |
+
#@ all-in-one-event-calendar
|
810 |
+
msgid "✔ Subscribe"
|
811 |
+
msgstr "✔ Abonnér"
|
812 |
+
|
813 |
+
#: app/view/agenda-widget.php:72
|
814 |
+
#: app/view/calendar.php:116
|
815 |
+
#@ all-in-one-event-calendar
|
816 |
+
msgid "Subscribe to this calendar in your Google Calendar"
|
817 |
+
msgstr "Abonnér på denne kalender med din Google Calendar"
|
818 |
+
|
819 |
+
#: app/view/agenda-widget.php:74
|
820 |
+
#@ all-in-one-event-calendar
|
821 |
+
msgid "Add to Google"
|
822 |
+
msgstr "Tilføj i Google"
|
823 |
+
|
824 |
+
#: app/view/box_event_contact.php:1
|
825 |
+
#@ all-in-one-event-calendar
|
826 |
+
msgid "Organizer contact info"
|
827 |
+
msgstr "Arrangørens kontaktinformation"
|
828 |
+
|
829 |
+
#: app/view/box_event_contact.php:7
|
830 |
+
#@ all-in-one-event-calendar
|
831 |
+
msgid "Contact name:"
|
832 |
+
msgstr "Navn på kontakt:"
|
833 |
+
|
834 |
+
#: app/view/box_event_contact.php:17
|
835 |
+
#@ all-in-one-event-calendar
|
836 |
+
msgid "Phone:"
|
837 |
+
msgstr "Telefon:"
|
838 |
+
|
839 |
+
#: app/view/box_event_contact.php:27
|
840 |
+
#@ all-in-one-event-calendar
|
841 |
+
msgid "E-mail:"
|
842 |
+
msgstr "E-mail:"
|
843 |
+
|
844 |
+
#: app/view/box_ics_import_settings.php:2
|
845 |
+
#@ all-in-one-event-calendar
|
846 |
+
msgid "Auto-refresh"
|
847 |
+
msgstr "Opdatér automatisk"
|
848 |
+
|
849 |
+
#: app/view/box_ics_import_settings.php:8
|
850 |
+
#: app/view/feed_row.php:3
|
851 |
+
#@ all-in-one-event-calendar
|
852 |
+
msgid "iCalendar/.ics Feed URL:"
|
853 |
+
msgstr "iCalendar/.ics Feed webadresse(URL):"
|
854 |
+
|
855 |
+
#: app/view/box_ics_import_settings.php:12
|
856 |
+
#@ all-in-one-event-calendar
|
857 |
+
msgid "Event category"
|
858 |
+
msgstr "Begivenhedskategori"
|
859 |
+
|
860 |
+
#: app/view/box_ics_import_settings.php:18
|
861 |
+
#: app/view/feed_row.php:15
|
862 |
+
#@ all-in-one-event-calendar
|
863 |
+
msgid "Tag with"
|
864 |
+
msgstr "Tag (stikord) med"
|
865 |
+
|
866 |
+
#: app/view/box_ics_import_settings.php:22
|
867 |
+
#@ all-in-one-event-calendar
|
868 |
+
msgid "+ Add new subscription"
|
869 |
+
msgstr "+ Nyt abonnement"
|
870 |
+
|
871 |
+
#: app/view/box_general_settings.php:1
|
872 |
+
#@ all-in-one-event-calendar
|
873 |
+
msgid "Viewing Events"
|
874 |
+
msgstr "Se begivenheder"
|
875 |
+
|
876 |
+
#: app/view/box_general_settings.php:3
|
877 |
+
#@ all-in-one-event-calendar
|
878 |
+
msgid "Calendar page:"
|
879 |
+
msgstr "Kalenderside:"
|
880 |
+
|
881 |
+
#: app/view/box_general_settings.php:7
|
882 |
+
#@ all-in-one-event-calendar
|
883 |
+
msgid "Default calendar view:"
|
884 |
+
msgstr "Standard kalendervisning:"
|
885 |
+
|
886 |
+
#: app/view/box_general_settings.php:12
|
887 |
+
#@ all-in-one-event-calendar
|
888 |
+
msgid "Timezone:"
|
889 |
+
msgstr "Tidszone:"
|
890 |
+
|
891 |
+
#: app/view/box_general_settings.php:17
|
892 |
+
#@ all-in-one-event-calendar
|
893 |
+
msgid "Contain calendar in this DOM element:"
|
894 |
+
msgstr "Kalenderen indlejres i dete DOM-element:"
|
895 |
+
|
896 |
+
#: app/view/box_general_settings.php:19
|
897 |
+
#@ all-in-one-event-calendar
|
898 |
+
msgid "Optional. Provide a <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selector</a> that evaluates to a single DOM element. Replaces any existing markup found within target. If left empty, calendar is shown in normal page content container."
|
899 |
+
msgstr "Valgmulighed (ikke oversat): Provide a <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selector</a> that evaluates to a single DOM element. Replaces any existing markup found within target. Hvis feltet står tomt vises kalenderen i standard sideopsætning."
|
900 |
+
|
901 |
+
#: app/view/box_general_settings.php:21
|
902 |
+
#@ all-in-one-event-calendar
|
903 |
+
msgid "Week starts on"
|
904 |
+
msgstr "Ugen begynder med"
|
905 |
+
|
906 |
+
#: app/view/box_general_settings.php:25
|
907 |
+
#@ all-in-one-event-calendar
|
908 |
+
msgid "Agenda pages show at most"
|
909 |
+
msgstr "Listesider viser højst"
|
910 |
+
|
911 |
+
#: app/view/box_general_settings.php:26
|
912 |
+
#@ all-in-one-event-calendar
|
913 |
+
msgid "events"
|
914 |
+
msgstr "begivenheder"
|
915 |
+
|
916 |
+
#: app/view/box_general_settings.php:31
|
917 |
+
#@ all-in-one-event-calendar
|
918 |
+
msgid "Keep all events <strong>expanded</strong> in the agenda view"
|
919 |
+
msgstr "Behold alle begivenheder <strong>udvidet</strong> i listevisning"
|
920 |
+
|
921 |
+
#: app/view/box_general_settings.php:37
|
922 |
+
#@ all-in-one-event-calendar
|
923 |
+
msgid "<strong>Exclude</strong> events from search results"
|
924 |
+
msgstr "<strong>Udelad</strong> begivenheder fra søgeresultater"
|
925 |
+
|
926 |
+
#: app/view/box_general_settings.php:43
|
927 |
+
#@ all-in-one-event-calendar
|
928 |
+
msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
|
929 |
+
msgstr "Vis <strong>Indsend din begivenhed</strong> knappen over kalenderen for godkendte brugere"
|
930 |
+
|
931 |
+
#: app/view/box_general_settings.php:49
|
932 |
+
#@ all-in-one-event-calendar
|
933 |
+
msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
|
934 |
+
msgstr "Skjul <strong>Abonnér</strong>/<strong>Tilføj i kalender</strong> knapper i kalender- og enkeltbegivenhedsvisning"
|
935 |
+
|
936 |
+
#: app/view/box_general_settings.php:55
|
937 |
+
#@ all-in-one-event-calendar
|
938 |
+
msgid "Hide <strong>Google Maps</strong> until clicked"
|
939 |
+
msgstr "Skjul <strong>Google Maps</strong> indtil der klikkes"
|
940 |
+
|
941 |
+
#: app/view/box_general_settings.php:67
|
942 |
+
#@ all-in-one-event-calendar
|
943 |
+
msgid "Include <strong>event categories</strong> in post category lists"
|
944 |
+
msgstr "Medtag <strong>begivenhedkategorier</strong> i indlægskategori listen"
|
945 |
+
|
946 |
+
#: app/view/box_general_settings.php:71
|
947 |
+
#@ all-in-one-event-calendar
|
948 |
+
msgid "Adding/Editing Events"
|
949 |
+
msgstr "Tilføj/redigér begivenheder"
|
950 |
+
|
951 |
+
#: app/view/box_general_settings.php:73
|
952 |
+
#@ all-in-one-event-calendar
|
953 |
+
msgid "Input dates in this format:"
|
954 |
+
msgstr "Tilføj datoer i dette format:"
|
955 |
+
|
956 |
+
#: app/view/box_general_settings.php:79
|
957 |
+
#@ all-in-one-event-calendar
|
958 |
+
msgid "Use <strong>24h time</strong> in time pickers"
|
959 |
+
msgstr "Benyt <strong>24 timer</strong> tidsformat"
|
960 |
+
|
961 |
+
#: app/view/box_general_settings.php:85
|
962 |
+
#@ all-in-one-event-calendar
|
963 |
+
msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
|
964 |
+
msgstr "Vis <strong>Udgiv</strong> under Redigér begivenhed formularen"
|
965 |
+
|
966 |
+
#: app/view/feed_row.php:9
|
967 |
+
#@ all-in-one-event-calendar
|
968 |
+
msgid "Event category:"
|
969 |
+
msgstr "Begivenhedskategori:"
|
970 |
+
|
971 |
+
#: app/view/feed_row.php:19
|
972 |
+
#@ all-in-one-event-calendar
|
973 |
+
msgid "× Delete"
|
974 |
+
msgstr "× Slet"
|
975 |
+
|
976 |
+
#: app/view/agenda-widget-form.php:2
|
977 |
+
#@ all-in-one-event-calendar
|
978 |
+
msgid "Title:"
|
979 |
+
msgstr "Titel:"
|
980 |
+
|
981 |
+
#: app/view/agenda-widget-form.php:6
|
982 |
+
#@ all-in-one-event-calendar
|
983 |
+
msgid "Number of events to show:"
|
984 |
+
msgstr "Antal viste begivenheder:"
|
985 |
+
|
986 |
+
#: app/view/agenda-widget-form.php:14
|
987 |
+
#@ all-in-one-event-calendar
|
988 |
+
msgid "Events with these <strong>Categories</strong>"
|
989 |
+
msgstr "Begivenheder med disse <strong>Kategorier</strong>"
|
990 |
+
|
991 |
+
#: app/view/agenda-widget-form.php:30
|
992 |
+
#@ all-in-one-event-calendar
|
993 |
+
msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
|
994 |
+
msgstr "<strong>eller</strong>begivenheder med disse <strong>Tags</strong>"
|
995 |
+
|
996 |
+
#: app/view/agenda-widget-form.php:46
|
997 |
+
#@ all-in-one-event-calendar
|
998 |
+
msgid "<strong>Or</strong> any of these <strong>Events</strong>"
|
999 |
+
msgstr ""
|
1000 |
+
"<strong>O\n"
|
1001 |
+
"eller</strong> en af disse <strong>begivenheder</strong>"
|
1002 |
+
|
1003 |
+
#: app/view/agenda-widget-form.php:62
|
1004 |
+
#@ all-in-one-event-calendar
|
1005 |
+
msgid "Show <strong>View Calendar</strong> button"
|
1006 |
+
msgstr "Vis <strong>Vis kalender</strong> knappen"
|
1007 |
+
|
1008 |
+
#: app/view/agenda-widget-form.php:65
|
1009 |
+
#@ all-in-one-event-calendar
|
1010 |
+
msgid "Show <strong>Subscribe</strong> buttons"
|
1011 |
+
msgstr "Vis <strong>Abonnér</strong> knapper"
|
1012 |
+
|
1013 |
+
#: app/view/agenda-widget-form.php:68
|
1014 |
+
#@ all-in-one-event-calendar
|
1015 |
+
msgid "Hide this widget on calendar page"
|
1016 |
+
msgstr "Skjul denne widget på kalendersiden"
|
1017 |
+
|
1018 |
+
#: app/view/calendar.php:35
|
1019 |
+
#@ all-in-one-event-calendar
|
1020 |
+
msgid "+ Post Your Event"
|
1021 |
+
msgstr "+ Indsend din begivnhed"
|
1022 |
+
|
1023 |
+
#: app/view/calendar.php:44
|
1024 |
+
#@ all-in-one-event-calendar
|
1025 |
+
msgid "Clear Filters"
|
1026 |
+
msgstr "Ryd sorteringer"
|
1027 |
+
|
1028 |
+
#: app/view/calendar.php:44
|
1029 |
+
#@ all-in-one-event-calendar
|
1030 |
+
msgid "✘"
|
1031 |
+
msgstr "✘"
|
1032 |
+
|
1033 |
+
#: app/view/calendar.php:45
|
1034 |
+
#@ all-in-one-event-calendar
|
1035 |
+
msgid "Filter:"
|
1036 |
+
msgstr "Sortering:"
|
1037 |
+
|
1038 |
+
#: app/view/calendar.php:50
|
1039 |
+
#@ all-in-one-event-calendar
|
1040 |
+
msgid "Categories ▾"
|
1041 |
+
msgstr "Kategorier ▾"
|
1042 |
+
|
1043 |
+
#: app/view/calendar.php:72
|
1044 |
+
#@ all-in-one-event-calendar
|
1045 |
+
msgid "Tags ▾"
|
1046 |
+
msgstr "Tags ▾"
|
1047 |
+
|
1048 |
+
#: app/view/calendar.php:112
|
1049 |
+
#@ all-in-one-event-calendar
|
1050 |
+
msgid "to this filtered calendar"
|
1051 |
+
msgstr "til denne sorterede kalender"
|
1052 |
+
|
1053 |
+
#: app/view/calendar.php:118
|
1054 |
+
#@ all-in-one-event-calendar
|
1055 |
+
msgid "Subscribe in Google Calendar"
|
1056 |
+
msgstr "Tilføj i Google kalender"
|
1057 |
+
|
1058 |
+
#: app/view/agenda.php:5
|
1059 |
+
#@ all-in-one-event-calendar
|
1060 |
+
msgid "+ Expand All"
|
1061 |
+
msgstr "+ Udvid alle"
|
1062 |
+
|
1063 |
+
#: app/view/agenda.php:8
|
1064 |
+
#@ all-in-one-event-calendar
|
1065 |
+
msgid "− Collapse All"
|
1066 |
+
msgstr "− Klap sammen"
|
1067 |
+
|
1068 |
+
#: app/view/agenda.php:12
|
1069 |
+
#: app/view/month.php:4
|
1070 |
+
#: app/view/week.php:4
|
1071 |
+
#@ all-in-one-event-calendar
|
1072 |
+
msgid "Today"
|
1073 |
+
msgstr "Idag"
|
1074 |
+
|
1075 |
+
#: app/view/agenda.php:29
|
1076 |
+
#@ all-in-one-event-calendar
|
1077 |
+
msgid "There are no upcoming events to display at this time."
|
1078 |
+
msgstr "Der er ingen begivenheder at vise på dette tidspunkt."
|
1079 |
+
|
1080 |
+
#: app/view/agenda.php:59
|
1081 |
+
#: app/view/agenda.php:109
|
1082 |
+
#: app/view/month.php:68
|
1083 |
+
#: app/view/week.php:69
|
1084 |
+
#@ all-in-one-event-calendar
|
1085 |
+
msgid "(all-day)"
|
1086 |
+
msgstr "(heldags)"
|
1087 |
+
|
1088 |
+
#: app/view/agenda.php:77
|
1089 |
+
#@ all-in-one-event-calendar
|
1090 |
+
msgid "Read more »"
|
1091 |
+
msgstr "Læs mere »"
|
1092 |
+
|
1093 |
+
#: app/view/class-ai1ec-agenda-widget.php:18
|
1094 |
+
#: app/view/class-ai1ec-agenda-widget.php:39
|
1095 |
+
#@ all-in-one-event-calendar
|
1096 |
+
msgid "Upcoming Events"
|
1097 |
+
msgstr "Kommende begivenheder"
|
1098 |
+
|
1099 |
+
#: app/view/class-ai1ec-agenda-widget.php:20
|
1100 |
+
#@ all-in-one-event-calendar
|
1101 |
+
msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
|
1102 |
+
msgstr "All-in-One Event Calendar: Opstil kommende begivenheder i listeform"
|
1103 |
+
|
1104 |
+
#: app/view/box_the_seed_studio.php:4
|
1105 |
+
#@ all-in-one-event-calendar
|
1106 |
+
msgid "The Seed Studio"
|
1107 |
+
msgstr "The Seed Studio"
|
1108 |
+
|
1109 |
+
#: app/view/box_the_seed_studio.php:7
|
1110 |
+
#@ all-in-one-event-calendar
|
1111 |
+
msgid "The Seed Studio provides web development and support services for clients and web developers."
|
1112 |
+
msgstr "The Seed Studio leverer webløsninger og support til privatkunder og webudviklere."
|
1113 |
+
|
1114 |
+
#: app/view/box_the_seed_studio.php:20
|
1115 |
+
#@ all-in-one-event-calendar
|
1116 |
+
msgid "Get Support<span> from one of our experienced pros</span>"
|
1117 |
+
msgstr "Få hjælp<span> fra en af vore erarne medarbejdere</span>"
|
1118 |
+
|
1119 |
+
#: app/view/box_the_seed_studio.php:23
|
1120 |
+
#@ all-in-one-event-calendar
|
1121 |
+
msgid "Support"
|
1122 |
+
msgstr "Support"
|
1123 |
+
|
1124 |
+
#: app/view/box_the_seed_studio.php:25
|
1125 |
+
#@ all-in-one-event-calendar
|
1126 |
+
msgid "View plugin documentation"
|
1127 |
+
msgstr "Læs plugindokumentationen"
|
1128 |
+
|
1129 |
+
#: app/view/box_the_seed_studio.php:28
|
1130 |
+
#@ all-in-one-event-calendar
|
1131 |
+
msgid "You can also hire The Seed for support on a contract or per-hour basis for this plugin, for your website or for any of your Internet marketing needs (we can really help!)."
|
1132 |
+
msgstr "Du har også mulighed for at købe hjælp til dette plugin fra The Seed på timebaseret kontrakt, eller til din hjemmeside eller en hvilken som helst anden af dine markedsrelaterede behov (vi kan rent faktisk hjælpe dig!) "
|
1133 |
+
|
1134 |
+
#: app/view/box_the_seed_studio.php:31
|
1135 |
+
#@ all-in-one-event-calendar
|
1136 |
+
msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
|
1137 |
+
msgstr "Pluginbrugere: The Seed support ydes først og fremmest til betalende kunder. Gratis support fra andre WordPress brugere findes på vores forumsider."
|
1138 |
+
|
1139 |
+
#: app/view/box_the_seed_studio.php:34
|
1140 |
+
#@ all-in-one-event-calendar
|
1141 |
+
msgid "Vote and Share"
|
1142 |
+
msgstr "Stem og del"
|
1143 |
+
|
1144 |
+
#: app/view/box_the_seed_studio.php:36
|
1145 |
+
#@ all-in-one-event-calendar
|
1146 |
+
msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
|
1147 |
+
msgstr "Dette plugin stilles gratis til rådighed for WordPressbrugere under GPL3 licens. Vi beder blot om at du:"
|
1148 |
+
|
1149 |
+
#: app/view/box_the_seed_studio.php:38
|
1150 |
+
#@ all-in-one-event-calendar
|
1151 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Give it a five-star rating on wordpress.org</a> (if you think it deserves it!)"
|
1152 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Giver det 5 stjerner på wordpress.org</a> (hvis du synes vi fortjener det!)"
|
1153 |
+
|
1154 |
+
#: app/view/box_the_seed_studio.php:39
|
1155 |
+
#@ all-in-one-event-calendar
|
1156 |
+
msgid "Link to the plugin page on our website"
|
1157 |
+
msgstr "Opretter link til pluginsiden på vores hjemmeside"
|
1158 |
+
|
1159 |
+
#: app/view/box_the_seed_studio.php:40
|
1160 |
+
#@ all-in-one-event-calendar
|
1161 |
+
msgid "Become a Fan on Facebook"
|
1162 |
+
msgstr "Bliver fan på Facebook"
|
1163 |
+
|
1164 |
+
#: app/view/box_the_seed_studio.php:41
|
1165 |
+
#@ all-in-one-event-calendar
|
1166 |
+
msgid "Follow us on Twitter"
|
1167 |
+
msgstr "Følg os på Twitter"
|
1168 |
+
|
1169 |
+
#: app/view/box_the_seed_studio.php:46
|
1170 |
+
#@ all-in-one-event-calendar
|
1171 |
+
msgid "Latest from the Seed Network"
|
1172 |
+
msgstr "Seneste nyt fra the Seed netværket"
|
1173 |
+
|
1174 |
+
#: app/view/box_eventbrite.php:1
|
1175 |
+
#@ all-in-one-event-calendar
|
1176 |
+
msgid "Eventbrite Ticketing"
|
1177 |
+
msgstr "Eventbrite billetsystem"
|
1178 |
+
|
1179 |
+
#: app/view/box_eventbrite.php:7
|
1180 |
+
#@ all-in-one-event-calendar
|
1181 |
+
msgid "Register this event with Eventbrite.com?"
|
1182 |
+
msgstr "Registrer denne begivnehd på Eventbrite.com?"
|
1183 |
+
|
1184 |
+
#: app/view/box_eventbrite.php:12
|
1185 |
+
#@ all-in-one-event-calendar
|
1186 |
+
msgid "Yes"
|
1187 |
+
msgstr "Ja"
|
1188 |
+
|
1189 |
+
#: app/view/box_eventbrite.php:14
|
1190 |
+
#@ all-in-one-event-calendar
|
1191 |
+
msgid "No"
|
1192 |
+
msgstr "Nej"
|
1193 |
+
|
1194 |
+
#: app/view/box_eventbrite.php:22
|
1195 |
+
#@ all-in-one-event-calendar
|
1196 |
+
msgid "Set up your first ticket"
|
1197 |
+
msgstr "Opret din første billet"
|
1198 |
+
|
1199 |
+
#: app/view/box_eventbrite.php:24
|
1200 |
+
#@ all-in-one-event-calendar
|
1201 |
+
msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
|
1202 |
+
msgstr "For at oprette flere billetter pr. begivenhed, indsend denne formular og følg derefter linket til Eventbrite."
|
1203 |
+
|
1204 |
+
#: app/view/box_eventbrite.php:32
|
1205 |
+
#@ all-in-one-event-calendar
|
1206 |
+
msgid "Name"
|
1207 |
+
msgstr "Navn"
|
1208 |
+
|
1209 |
+
#: app/view/box_eventbrite.php:42
|
1210 |
+
#@ all-in-one-event-calendar
|
1211 |
+
msgid "Description"
|
1212 |
+
msgstr "Beskrivelse"
|
1213 |
+
|
1214 |
+
#: app/view/box_eventbrite.php:53
|
1215 |
+
#@ all-in-one-event-calendar
|
1216 |
+
msgid "Type"
|
1217 |
+
msgstr "Type"
|
1218 |
+
|
1219 |
+
#: app/view/box_eventbrite.php:58
|
1220 |
+
#@ all-in-one-event-calendar
|
1221 |
+
msgid "Set Price"
|
1222 |
+
msgstr "Angiv prisen"
|
1223 |
+
|
1224 |
+
#: app/view/box_eventbrite.php:60
|
1225 |
+
#@ all-in-one-event-calendar
|
1226 |
+
msgid "Donation Based"
|
1227 |
+
msgstr "Baseret på bidrag"
|
1228 |
+
|
1229 |
+
#: app/view/box_eventbrite.php:68
|
1230 |
+
#@ all-in-one-event-calendar
|
1231 |
+
msgid "The price for this event's first ticket will be taken from the Cost field above."
|
1232 |
+
msgstr "Prisen for denne begivenheds første billet tages fra Pris-feltet ovenfor"
|
1233 |
+
|
1234 |
+
#: app/view/box_eventbrite.php:75
|
1235 |
+
#@ all-in-one-event-calendar
|
1236 |
+
msgid "Quantity"
|
1237 |
+
msgstr "Antal"
|
1238 |
+
|
1239 |
+
#: app/view/box_eventbrite.php:85
|
1240 |
+
#@ all-in-one-event-calendar
|
1241 |
+
msgid "Include Fee in Price"
|
1242 |
+
msgstr "Inkludér gebyret i prisen"
|
1243 |
+
|
1244 |
+
#: app/view/box_eventbrite.php:90
|
1245 |
+
#@ all-in-one-event-calendar
|
1246 |
+
msgid "Add Service Fee on top of price"
|
1247 |
+
msgstr "Læg servicegebyr oven i prisen"
|
1248 |
+
|
1249 |
+
#: app/view/box_eventbrite.php:92
|
1250 |
+
#@ all-in-one-event-calendar
|
1251 |
+
msgid "Include Service fee in price"
|
1252 |
+
msgstr "Inkludér servicegebyr i prisen"
|
1253 |
+
|
1254 |
+
#: app/view/box_eventbrite.php:98
|
1255 |
+
#@ all-in-one-event-calendar
|
1256 |
+
msgid "Payment Options"
|
1257 |
+
msgstr "Betalingsmuligheder"
|
1258 |
+
|
1259 |
+
#: app/view/box_eventbrite.php:103
|
1260 |
+
#@ all-in-one-event-calendar
|
1261 |
+
msgid "Paypal"
|
1262 |
+
msgstr "Paypal"
|
1263 |
+
|
1264 |
+
#: app/view/box_eventbrite.php:105
|
1265 |
+
#@ all-in-one-event-calendar
|
1266 |
+
msgid "Google Checkout"
|
1267 |
+
msgstr "Google Checkout"
|
1268 |
+
|
1269 |
+
#: app/view/box_eventbrite.php:107
|
1270 |
+
#@ all-in-one-event-calendar
|
1271 |
+
msgid "Check"
|
1272 |
+
msgstr "Check"
|
1273 |
+
|
1274 |
+
#: app/view/box_eventbrite.php:109
|
1275 |
+
#@ all-in-one-event-calendar
|
1276 |
+
msgid "Cash"
|
1277 |
+
msgstr "Kontant"
|
1278 |
+
|
1279 |
+
#: app/view/box_eventbrite.php:111
|
1280 |
+
#@ all-in-one-event-calendar
|
1281 |
+
msgid "Send an Invoice"
|
1282 |
+
msgstr "Send en kvittering"
|
1283 |
+
|
1284 |
+
#: app/view/event-single-footer.php:4
|
1285 |
+
#, php-format
|
1286 |
+
#@ default
|
1287 |
+
msgid "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
|
1288 |
+
msgstr "Dette indlæg er gengivet fra en anden sides <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">kalender feed</a>."
|
1289 |
+
|
1290 |
+
#: app/view/event-single-footer.php:8
|
1291 |
+
#@ all-in-one-event-calendar
|
1292 |
+
msgid "View original post »"
|
1293 |
+
msgstr "Vis oprindelige indlæg »"
|
1294 |
+
|
1295 |
+
#: app/view/box_time_and_date.php:2
|
1296 |
+
#@ all-in-one-event-calendar
|
1297 |
+
msgid "Event date and time"
|
1298 |
+
msgstr "Dato og tid for begivenhed"
|
1299 |
+
|
1300 |
+
#: app/view/box_time_and_date.php:8
|
1301 |
+
#@ all-in-one-event-calendar
|
1302 |
+
msgid "All-day event"
|
1303 |
+
msgstr "Heldags begivenhed"
|
1304 |
+
|
1305 |
+
#: app/view/box_time_and_date.php:18
|
1306 |
+
#@ all-in-one-event-calendar
|
1307 |
+
msgid "Start date / time"
|
1308 |
+
msgstr "Start dato/tid"
|
1309 |
+
|
1310 |
+
#: app/view/box_time_and_date.php:31
|
1311 |
+
#@ all-in-one-event-calendar
|
1312 |
+
msgid "End date / time"
|
1313 |
+
msgstr "Slut dato/tid"
|
1314 |
+
|
1315 |
+
#: app/view/box_time_and_date.php:46
|
1316 |
+
#@ all-in-one-event-calendar
|
1317 |
+
msgid "Repeat"
|
1318 |
+
msgstr "Gentag"
|
1319 |
+
|
1320 |
+
#: app/view/box_time_and_date.php:70
|
1321 |
+
#@ all-in-one-event-calendar
|
1322 |
+
msgid "End"
|
1323 |
+
msgstr "Slutter"
|
1324 |
+
|
1325 |
+
#: app/view/box_time_and_date.php:77
|
1326 |
+
#@ all-in-one-event-calendar
|
1327 |
+
msgid "Ending after"
|
1328 |
+
msgstr "Slutter efter"
|
1329 |
+
|
1330 |
+
#: app/view/box_time_and_date.php:92
|
1331 |
+
#@ all-in-one-event-calendar
|
1332 |
+
msgid "Apply"
|
1333 |
+
msgstr "Tilføj"
|
1334 |
+
|
1335 |
+
#: app/view/box_time_and_date.php:93
|
1336 |
+
#@ all-in-one-event-calendar
|
1337 |
+
msgid "Cancel"
|
1338 |
+
msgstr "Fortryd"
|
1339 |
+
|
1340 |
+
#: app/view/settings.php:5
|
1341 |
+
#@ all-in-one-event-calendar
|
1342 |
+
msgid "All-in-one Event Calendar"
|
1343 |
+
msgstr "All-in-one Event Calendar"
|
1344 |
+
|
1345 |
+
#: app/view/settings.php:16
|
1346 |
+
#@ all-in-one-event-calendar
|
1347 |
+
msgid "Update Settings"
|
1348 |
+
msgstr "Opdater indstillinger"
|
1349 |
+
|
1350 |
+
#: app/view/box_event_location.php:1
|
1351 |
+
#@ all-in-one-event-calendar
|
1352 |
+
msgid "Event location details"
|
1353 |
+
msgstr "Detaljer om stedet for begivenheden"
|
1354 |
+
|
1355 |
+
#: app/view/box_event_location.php:7
|
1356 |
+
#@ all-in-one-event-calendar
|
1357 |
+
msgid "Venue name:"
|
1358 |
+
msgstr "Sted:"
|
1359 |
+
|
1360 |
+
#: app/view/box_event_location.php:17
|
1361 |
+
#@ all-in-one-event-calendar
|
1362 |
+
msgid "Address:"
|
1363 |
+
msgstr "Adresse:"
|
1364 |
+
|
1365 |
+
#: app/view/box_event_location.php:27
|
1366 |
+
#@ all-in-one-event-calendar
|
1367 |
+
msgid "Show Google Map:"
|
1368 |
+
msgstr "Vis Google kort:"
|
1369 |
+
|
1370 |
+
#: app/view/month.php:50
|
1371 |
+
#: app/view/week.php:55
|
1372 |
+
#: app/view/week.php:127
|
1373 |
+
#@ all-in-one-event-calendar
|
1374 |
+
msgid "Summary:"
|
1375 |
+
msgstr "Kort beskrivelse:"
|
1376 |
+
|
1377 |
+
#: app/view/month.php:53
|
1378 |
+
#: app/view/week.php:58
|
1379 |
+
#: app/view/week.php:130
|
1380 |
+
#@ all-in-one-event-calendar
|
1381 |
+
msgid "click anywhere for details"
|
1382 |
+
msgstr "klik et sted for flere detaljer"
|
1383 |
+
|
1384 |
+
#: app/view/import.php:6
|
1385 |
+
#@ all-in-one-event-calendar
|
1386 |
+
msgid "Successfully imported events:"
|
1387 |
+
msgstr "Importerede begivenheder:"
|
1388 |
+
|
1389 |
+
#. translators: "%s" represents the week's starting date
|
1390 |
+
#. translators: "%s" represents the week's starting date
|
1391 |
+
#: app/controller/class-ai1ec-calendar-controller.php:326
|
1392 |
+
#: app/helper/class-ai1ec-calendar-helper.php:717
|
1393 |
+
#: app/helper/class-ai1ec-calendar-helper.php:726
|
1394 |
+
#, php-format
|
1395 |
+
#@ all-in-one-event-calendar
|
1396 |
+
msgid "Week of %s"
|
1397 |
+
msgstr "Uge nr."
|
1398 |
+
|
1399 |
+
#: app/controller/class-ai1ec-calendar-controller.php:326
|
1400 |
+
#@ all-in-one-event-calendar
|
1401 |
+
msgid "F j"
|
1402 |
+
msgstr "F j"
|
1403 |
+
|
1404 |
+
#: app/helper/class-ai1ec-app-helper.php:281
|
1405 |
+
#@ all-in-one-event-calendar
|
1406 |
+
msgid "Show All "
|
1407 |
+
msgstr "Vis alle "
|
1408 |
+
|
1409 |
+
#: app/helper/class-ai1ec-calendar-helper.php:718
|
1410 |
+
#: app/helper/class-ai1ec-calendar-helper.php:727
|
1411 |
+
#@ all-in-one-event-calendar
|
1412 |
+
msgid "M j"
|
1413 |
+
msgstr "M j"
|
1414 |
+
|
1415 |
+
#: app/helper/class-ai1ec-events-helper.php:1381
|
1416 |
+
#: app/helper/class-ai1ec-events-helper.php:1390
|
1417 |
+
#: app/helper/class-ai1ec-events-helper.php:1398
|
1418 |
+
#@ all-in-one-event-calendar
|
1419 |
+
msgctxt "Recurrence editor - weekly tab"
|
1420 |
+
msgid "on"
|
1421 |
+
msgstr "på"
|
1422 |
+
|
1423 |
+
#: app/helper/class-ai1ec-events-helper.php:1411
|
1424 |
+
#: app/helper/class-ai1ec-events-helper.php:1418
|
1425 |
+
#: app/helper/class-ai1ec-events-helper.php:1424
|
1426 |
+
#: app/helper/class-ai1ec-events-helper.php:1435
|
1427 |
+
#@ all-in-one-event-calendar
|
1428 |
+
msgctxt "Recurrence editor - monthly tab"
|
1429 |
+
msgid "on"
|
1430 |
+
msgstr "på"
|
1431 |
+
|
1432 |
+
#: app/helper/class-ai1ec-events-helper.php:1448
|
1433 |
+
#: app/helper/class-ai1ec-events-helper.php:1456
|
1434 |
+
#: app/helper/class-ai1ec-events-helper.php:1463
|
1435 |
+
#@ all-in-one-event-calendar
|
1436 |
+
msgctxt "Recurrence editor - yearly tab"
|
1437 |
+
msgid "on"
|
1438 |
+
msgstr "på"
|
1439 |
+
|
1440 |
+
#: app/helper/class-ai1ec-settings-helper.php:152
|
1441 |
+
#: app/view/calendar.php:18
|
1442 |
+
#: app/view/calendar.php:19
|
1443 |
+
#@ all-in-one-event-calendar
|
1444 |
+
msgid "Week"
|
1445 |
+
msgstr "Uge"
|
1446 |
+
|
1447 |
+
#: app/view/box_general_settings.php:61
|
1448 |
+
#@ all-in-one-event-calendar
|
1449 |
+
msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function"
|
1450 |
+
msgstr "Benyt <strong>regionale</strong> konfigurationsindstillinger (WordPress lokalisering - fx. DA for Danmark) til at opstille adresseoplysninger med funktionen autofuldførelse"
|
1451 |
+
|
1452 |
+
#: app/view/box_the_seed_studio.php:14
|
1453 |
+
#@ all-in-one-event-calendar
|
1454 |
+
msgid "Follow @theseednet"
|
1455 |
+
msgstr "Følg @theseednet"
|
1456 |
+
|
1457 |
+
#: app/view/row_weekly.php:6
|
1458 |
+
#@ all-in-one-event-calendar
|
1459 |
+
msgctxt "Recurrence editor - weekly tab"
|
1460 |
+
msgid "On"
|
1461 |
+
msgstr "På"
|
1462 |
+
|
1463 |
+
#: app/view/row_yearly.php:7
|
1464 |
+
#@ all-in-one-event-calendar
|
1465 |
+
msgctxt "Recurrence editor - yearly tab"
|
1466 |
+
msgid "In"
|
1467 |
+
msgstr "I"
|
1468 |
+
|
1469 |
+
#: app/view/week.php:33
|
1470 |
+
#@ all-in-one-event-calendar
|
1471 |
+
msgid "All-day"
|
1472 |
+
msgstr "Heldags"
|
1473 |
+
|
1474 |
+
#: app/controller/class-ai1ec-settings-controller.php:181
|
1475 |
+
#: app/controller/class-ai1ec-settings-controller.php:231
|
1476 |
+
#@ all-in-one-event-calendar
|
1477 |
+
msgid "Invalid ICS feed ID"
|
1478 |
+
msgstr "Ugyldig ICS feed-ID"
|
1479 |
+
|
1480 |
+
#: app/controller/class-ai1ec-settings-controller.php:216
|
1481 |
+
#@ all-in-one-event-calendar
|
1482 |
+
msgid "No events were found"
|
1483 |
+
msgstr "Ingen begivenheder fundet"
|
1484 |
+
|
1485 |
+
#: app/view/agenda-widget-form.php:23
|
1486 |
+
#@ all-in-one-event-calendar
|
1487 |
+
msgid "No categories found."
|
1488 |
+
msgstr "Ingen kategorier fundet."
|
1489 |
+
|
1490 |
+
#: app/view/agenda-widget-form.php:39
|
1491 |
+
#@ all-in-one-event-calendar
|
1492 |
+
msgid "No tags found."
|
1493 |
+
msgstr "Ingen tags fundet."
|
1494 |
+
|
1495 |
+
#: app/view/agenda-widget-form.php:55
|
1496 |
+
#@ all-in-one-event-calendar
|
1497 |
+
msgid "No events found."
|
1498 |
+
msgstr "Ingen begivenheder fundet."
|
1499 |
+
|
1500 |
+
#: app/view/row_monthly.php:9
|
1501 |
+
#@ all-in-one-event-calendar
|
1502 |
+
msgid "On day of the month"
|
1503 |
+
msgstr "På måneds- dagen"
|
1504 |
+
|
1505 |
+
#: app/view/row_monthly.php:13
|
1506 |
+
#@ all-in-one-event-calendar
|
1507 |
+
msgid "On day of the week"
|
1508 |
+
msgstr "På uge- dagen"
|
1509 |
+
|
language/all-in-one-event-calendar-sv_SE.mo
CHANGED
Binary file
|
language/all-in-one-event-calendar-sv_SE.po
CHANGED
@@ -2,94 +2,110 @@
|
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar Plugin package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: All-in-One Event Calendar Plugin 1.
|
6 |
"Report-Msgid-Bugs-To: http://trac.the-seed.ca/ticket/78\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
-
"Last-Translator: Jonas Sjömark
|
10 |
"Language-Team: Jonas Sjömark (josjo) <jonassjomark@gmail.com>\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
15 |
"X-Poedit-Language: Swedish\n"
|
16 |
"X-Poedit-Country: SWEDEN\n"
|
|
|
17 |
|
18 |
-
#: ..\./app/controller/class-ai1ec-app-controller.php:
|
19 |
-
#: ..\./app/controller/class-ai1ec-app-controller.php:
|
20 |
msgid "Settings"
|
21 |
msgstr "Inställningar"
|
22 |
|
23 |
-
#: ..\./app/controller/class-ai1ec-calendar-controller.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgid "Agenda"
|
25 |
msgstr "Agenda"
|
26 |
|
27 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
28 |
msgid "This feed is already being imported."
|
29 |
msgstr "Detta flöde har redan importerats."
|
30 |
|
31 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
32 |
msgid "Please enter a valid iCalendar URL."
|
33 |
msgstr "Ange en giltig iCalendar URL."
|
34 |
|
35 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
|
|
|
|
|
|
|
|
36 |
msgid "Publish"
|
37 |
msgstr "Publicera"
|
38 |
|
39 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
40 |
msgid "Update"
|
41 |
msgstr "Uppdatera"
|
42 |
|
43 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
44 |
msgid "Submit for Review"
|
45 |
msgstr "Skicka för granskning"
|
46 |
|
47 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
48 |
#, php-format
|
49 |
msgid "Event updated. <a href=\"%s\">View event</a>"
|
50 |
msgstr "Händelsen uppdaterades. <a href=\"%s\">Visa händelse</a>"
|
51 |
|
52 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
53 |
msgid "Custom field updated."
|
54 |
msgstr "Eget fält uppdaterades."
|
55 |
|
56 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
57 |
msgid "Custom field deleted."
|
58 |
msgstr "Eget fält togs bort."
|
59 |
|
60 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
61 |
msgid "Event updated."
|
62 |
msgstr "Händelsen uppdaterades."
|
63 |
|
64 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
65 |
#, php-format
|
66 |
msgid "Event restored to revision from %s"
|
67 |
msgstr "Händelsen återställdes till revision från %s"
|
68 |
|
69 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
70 |
#, php-format
|
71 |
msgid "Event published. <a href=\"%s\">View event</a>"
|
72 |
msgstr "Händelsen publicerades. <a href=\"%s\">Visa händelse</a>"
|
73 |
|
74 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
75 |
msgid "Event saved."
|
76 |
msgstr "Händelsen sparades."
|
77 |
|
78 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
79 |
#, php-format
|
80 |
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
81 |
msgstr "Händelsen sparades. <a target=\"_blank\" href=\"%s\">Förhandsgranska händelse</a>"
|
82 |
|
83 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
84 |
#, php-format
|
85 |
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
86 |
msgstr "Händelsen äger rum: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Förhandsgranska händelse</a>"
|
87 |
|
88 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
89 |
msgid "M j, Y @ G:i"
|
90 |
msgstr "j F, Y @ H:i"
|
91 |
|
92 |
-
#: ..\./app/controller/class-ai1ec-events-controller.php:
|
93 |
#, php-format
|
94 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
95 |
msgstr "Utkastet uppdaterades. <a target=\"_blank\" href=\"%s\">Förhandsgranska händelse</a>"
|
@@ -106,49 +122,58 @@ msgstr "Importera händelser som skapats med The Events Calendar till All-in-One
|
|
106 |
msgid "Settings Updated."
|
107 |
msgstr "Inställningarna uppdaterades."
|
108 |
|
109 |
-
#: ..\./app/controller/class-ai1ec-settings-controller.php:
|
110 |
#, php-format
|
111 |
msgid "Flushed %d events"
|
112 |
msgstr "Tog bort %d händelser"
|
113 |
|
114 |
-
#: ..\./app/controller/class-ai1ec-settings-controller.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
#, php-format
|
116 |
msgid "Imported %d events"
|
117 |
msgstr "Importerade %d händelser"
|
118 |
|
119 |
-
#: ..\./app/controller/class-ai1ec-settings-controller.php:
|
120 |
#, php-format
|
121 |
msgid "Flush 1 event"
|
122 |
msgid_plural "Flush %s events"
|
123 |
-
msgstr[0] "
|
124 |
-
msgstr[1] "
|
125 |
|
126 |
-
#: ..\./app/controller/class-ai1ec-settings-controller.php:
|
127 |
msgctxt "meta box"
|
128 |
msgid "General Settings"
|
129 |
msgstr "Allmänna inställningar"
|
130 |
|
131 |
-
#: ..\./app/controller/class-ai1ec-settings-controller.php:
|
132 |
msgctxt "meta box"
|
133 |
msgid "The Seed Studio Support"
|
134 |
msgstr "The Seed Studio Support"
|
135 |
|
136 |
-
#: ..\./app/controller/class-ai1ec-settings-controller.php:
|
137 |
msgctxt "meta box"
|
138 |
msgid "ICS Import Settings"
|
139 |
msgstr "Inställningar för ICS-import"
|
140 |
|
141 |
-
#: ..\./app/controller/class-ai1ec-settings-controller.php:
|
142 |
#, php-format
|
143 |
msgid "<a href=\"%s\">Settings</a>"
|
144 |
msgstr "<a href=\"%s\">Inställningar</a>"
|
145 |
|
146 |
-
#: ..\./app/controller/class-ai1ec-settings-controller.php:
|
147 |
#, php-format
|
148 |
msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
|
149 |
msgstr "<a href=\"%s\" target=\"_blank\">Ge ett bidrag</a>"
|
150 |
|
151 |
-
#: ..\./app/controller/class-ai1ec-settings-controller.php:
|
152 |
#, php-format
|
153 |
msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
|
154 |
msgstr "<a href=\"%s\" target=\"_blank\">Få support</a>"
|
@@ -240,169 +265,324 @@ msgstr "Alla händelser"
|
|
240 |
msgid "Event Details"
|
241 |
msgstr "Detaljer för händelse"
|
242 |
|
243 |
-
#: ..\./app/helper/class-ai1ec-app-helper.php:
|
244 |
msgid "Post Date"
|
245 |
msgstr "Datum för inlägg"
|
246 |
|
247 |
-
#: ..\./app/helper/class-ai1ec-app-helper.php:
|
248 |
msgid "Event date/time"
|
249 |
msgstr "Händelsens datum/tid"
|
250 |
|
251 |
-
#: ..\./app/helper/class-ai1ec-app-helper.php:
|
252 |
#, php-format
|
253 |
msgid "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</strong> dropdown list. %s 2. Select an option in the <strong>Timezone</strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
|
254 |
msgstr "%sFör att ställa in denna plugin: %s 1. Välj en sida i listan med <strong>kalendersidor</strong>. %s 2. Välj en <strong>tidszon</strong> i listan. %s 3. Klicka på <strong>Uppdatera inställningar</strong>. %s"
|
255 |
|
256 |
-
#: ..\./app/helper/class-ai1ec-app-helper.php:
|
257 |
msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
|
258 |
msgstr "För att ställa in denna plugin: välj en sida i listan med <strong>kalendersidor</strong>, klicka sedan på <strong>Uppdatera inställningar</strong>."
|
259 |
|
260 |
-
#: ..\./app/helper/class-ai1ec-app-helper.php:
|
261 |
msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
|
262 |
msgstr "För att ställa in denna plugin: välj en <strong>tidszon</strong> i listan, klicka sedan på <strong>Uppdatera inställningar</strong>."
|
263 |
|
264 |
-
#: ..\./app/helper/class-ai1ec-app-helper.php:
|
265 |
#, php-format
|
266 |
msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
|
267 |
msgstr "Denna plugin är installerad men behöver ställas in. <a href=\"%s\">Klicka här för att ställa in den nu »</a>"
|
268 |
|
269 |
-
#: ..\./app/helper/class-ai1ec-app-helper.php:
|
270 |
msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
|
271 |
msgstr "Denna plugin är installerad men behöver ställas in. Logga in som administratör i WordPress för att göra inställningarna."
|
272 |
|
273 |
-
#: ..\./app/helper/class-ai1ec-calendar-helper.php:
|
|
|
|
|
|
|
|
|
|
|
274 |
msgid "« Previous Events"
|
275 |
msgstr "« Tidigare händelser"
|
276 |
|
277 |
-
#: ..\./app/helper/class-ai1ec-calendar-helper.php:
|
278 |
msgid "Next Events »"
|
279 |
msgstr "Senare händelser »"
|
280 |
|
281 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
|
|
282 |
msgid "No repeat"
|
283 |
msgstr "Inte återkommande"
|
284 |
|
285 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
286 |
-
|
287 |
-
|
|
|
288 |
|
289 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
290 |
-
|
291 |
-
|
|
|
292 |
|
293 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
294 |
-
|
295 |
-
|
|
|
296 |
|
297 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
298 |
-
|
299 |
-
|
|
|
300 |
|
301 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
302 |
-
|
303 |
-
|
|
|
304 |
|
305 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
306 |
-
msgid "
|
307 |
-
msgstr "
|
308 |
|
309 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
310 |
-
msgid "
|
311 |
-
msgstr "
|
312 |
|
313 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
314 |
-
msgid "
|
315 |
-
msgstr "
|
316 |
|
317 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
318 |
-
msgid "
|
319 |
-
msgstr "
|
320 |
|
321 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
322 |
-
msgid "
|
323 |
-
msgstr "
|
324 |
|
325 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
326 |
-
msgid "
|
327 |
-
msgstr "
|
328 |
|
329 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
330 |
-
msgid "
|
331 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
332 |
|
333 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
msgid "Weekly"
|
335 |
msgstr "Varje vecka"
|
336 |
|
337 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
|
|
|
|
338 |
msgid "Monthly"
|
339 |
msgstr "Varje månad"
|
340 |
|
341 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
|
|
|
|
342 |
msgid "Yearly"
|
343 |
msgstr "Varje år"
|
344 |
|
345 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
346 |
-
msgid "
|
347 |
-
msgstr "
|
|
|
|
|
|
|
|
|
348 |
|
349 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
msgid "Never"
|
351 |
msgstr "Aldrig"
|
352 |
|
353 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
354 |
msgid "After"
|
355 |
msgstr "Efter"
|
356 |
|
357 |
-
#: ..\./app/helper/class-ai1ec-events-helper.php:
|
358 |
msgid "On date"
|
359 |
msgstr "Den"
|
360 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
361 |
#: ..\./app/helper/class-ai1ec-settings-helper.php:85
|
362 |
msgid "- Auto-Create New Page -"
|
363 |
msgstr "- Skapa ny sida automatiskt -"
|
364 |
|
365 |
-
#: ..\./app/helper/class-ai1ec-settings-helper.php:
|
366 |
#, php-format
|
367 |
msgid "View \"%s\" »"
|
368 |
msgstr "Visa \"%s\" »"
|
369 |
|
370 |
-
#: ..\./app/helper/class-ai1ec-settings-helper.php:
|
371 |
msgid "Month"
|
372 |
msgstr "Månad"
|
373 |
|
374 |
-
#: ..\./app/helper/class-ai1ec-settings-helper.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
375 |
msgid "Hourly"
|
376 |
msgstr "Varje timma"
|
377 |
|
378 |
-
#: ..\./app/helper/class-ai1ec-settings-helper.php:
|
379 |
msgid "Twice Daily"
|
380 |
msgstr "Två gånger dagligen"
|
381 |
|
382 |
-
#: ..\./app/helper/class-ai1ec-settings-helper.php:
|
383 |
msgid "Calendar"
|
384 |
msgstr "Kalender"
|
385 |
|
386 |
-
#: ..\./app/model/class-ai1ec-event.php:
|
387 |
msgid " (all-day)"
|
388 |
msgstr " (hela dagen)"
|
389 |
|
390 |
-
#: ..\./app/model/class-ai1ec-event.php:585
|
391 |
-
#, php-format
|
392 |
-
msgid "ending after <strong>%d</strong> time"
|
393 |
-
msgid_plural "ending after <strong>%d</strong> times"
|
394 |
-
msgstr[0] "slutar efter <strong>%d</strong> gång"
|
395 |
-
msgstr[1] "slutar efter <strong>%d</strong> gånger"
|
396 |
-
|
397 |
-
#: ..\./app/model/class-ai1ec-event.php:595
|
398 |
-
#, php-format
|
399 |
-
msgid "until <strong>%s</strong>"
|
400 |
-
msgstr "till <strong>%s</strong>"
|
401 |
-
|
402 |
-
#: ..\./app/model/class-ai1ec-event.php:604
|
403 |
-
msgid " or "
|
404 |
-
msgstr " eller "
|
405 |
-
|
406 |
#: ..\./app/view/admin_notices.php:2
|
407 |
msgid "All-in-One Event Calendar Notice:"
|
408 |
msgstr "Notis från All-in-One Event Calendar:"
|
@@ -415,15 +595,39 @@ msgstr "Titel:"
|
|
415 |
msgid "Number of events to show:"
|
416 |
msgstr "Antal händelser som ska visas:"
|
417 |
|
418 |
-
#: ..\./app/view/agenda-widget-form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
419 |
msgid "Show <strong>View Calendar</strong> button"
|
420 |
msgstr "Visa knappen <strong>Visa kalender</strong>"
|
421 |
|
422 |
-
#: ..\./app/view/agenda-widget-form.php:
|
423 |
msgid "Show <strong>Subscribe</strong> buttons"
|
424 |
msgstr "Visa knappar för att <strong>prenumerera</strong>"
|
425 |
|
426 |
-
#: ..\./app/view/agenda-widget-form.php:
|
427 |
msgid "Hide this widget on calendar page"
|
428 |
msgstr "Dölj denna widget på kalendersidan"
|
429 |
|
@@ -463,24 +667,24 @@ msgstr "− Dölj alla"
|
|
463 |
msgid "Today"
|
464 |
msgstr "Idag"
|
465 |
|
466 |
-
#: ..\./app/view/agenda.php:
|
467 |
msgid "There are no upcoming events to display at this time."
|
468 |
msgstr "Det finns inga kommande händelser."
|
469 |
|
470 |
-
#: ..\./app/view/agenda.php:
|
471 |
-
#: ..\./app/view/agenda.php:
|
472 |
msgid "(all-day)"
|
473 |
msgstr "(heldag)"
|
474 |
|
475 |
-
#: ..\./app/view/agenda.php:
|
476 |
msgid "Read more »"
|
477 |
msgstr "Läs mer »"
|
478 |
|
479 |
-
#: ..\./app/view/agenda.php:
|
480 |
msgid "Categories:"
|
481 |
msgstr "Kategorier:"
|
482 |
|
483 |
-
#: ..\./app/view/agenda.php:
|
484 |
msgid "Tags:"
|
485 |
msgstr "Etiketter:"
|
486 |
|
@@ -649,38 +853,46 @@ msgid "events"
|
|
649 |
msgstr "händelser"
|
650 |
|
651 |
#: ..\./app/view/box_general_settings.php:31
|
|
|
|
|
|
|
|
|
652 |
msgid "<strong>Exclude</strong> events from search results"
|
653 |
msgstr "<strong>Utelämna</strong> händelser från sökresultaten"
|
654 |
|
655 |
-
#: ..\./app/view/box_general_settings.php:
|
656 |
msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
|
657 |
msgstr "Visa knappen <strong>Lägg till en händelse</strong> ovanför kalendern för användare som har tillräcklig behörighet"
|
658 |
|
659 |
-
#: ..\./app/view/box_general_settings.php:
|
660 |
msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
|
661 |
msgstr "Dölj knapparna <strong>Prenumerera</strong>/<strong>Lägg till i kalender</strong> i kalendernvyn och vyn för en enskild händelse"
|
662 |
|
663 |
-
#: ..\./app/view/box_general_settings.php:
|
664 |
msgid "Hide <strong>Google Maps</strong> until clicked"
|
665 |
msgstr "Dölj <strong>Google-klarta</strong> tills man klickar på den"
|
666 |
|
667 |
-
#: ..\./app/view/box_general_settings.php:
|
|
|
|
|
|
|
|
|
668 |
msgid "Include <strong>event categories</strong> in post category lists"
|
669 |
msgstr "Ta med <strong>kategorier för händelser</strong> i listor över kategorier för inlägg"
|
670 |
|
671 |
-
#: ..\./app/view/box_general_settings.php:
|
672 |
msgid "Adding/Editing Events"
|
673 |
msgstr "Lägga till/redigera händelser"
|
674 |
|
675 |
-
#: ..\./app/view/box_general_settings.php:
|
676 |
-
msgid "Input dates in
|
677 |
-
msgstr "Mata in datum i
|
678 |
|
679 |
-
#: ..\./app/view/box_general_settings.php:
|
680 |
msgid "Use <strong>24h time</strong> in time pickers"
|
681 |
-
msgstr "Använd <strong>
|
682 |
|
683 |
-
#: ..\./app/view/box_general_settings.php:
|
684 |
msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
|
685 |
msgstr "Visa knappen <strong>Publicera</strong> längst ner på formuläret när en händelse skapas/redigeras"
|
686 |
|
@@ -706,69 +918,65 @@ msgstr "Sätt etiketten"
|
|
706 |
msgid "+ Add new subscription"
|
707 |
msgstr "+ Lägg till ny prenumeration"
|
708 |
|
709 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
710 |
msgid "The Seed Studio"
|
711 |
msgstr "The Seed Studio"
|
712 |
|
713 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
714 |
msgid "The Seed Studio provides web development and support services for clients and web developers."
|
715 |
msgstr "The Seed Studio tillhandahåller webbutveckling och supporttjänster för företag och webbutvecklare."
|
716 |
|
717 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
718 |
-
msgid "Follow @
|
719 |
-
msgstr "Följ @
|
720 |
|
721 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
722 |
msgid "Get Support<span> from one of our experienced pros</span>"
|
723 |
msgstr "Få support<span> från ett av våra erfarna proffs</span>"
|
724 |
|
725 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
726 |
msgid "Support"
|
727 |
msgstr "Support"
|
728 |
|
729 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
730 |
msgid "View plugin documentation"
|
731 |
msgstr "Visa dokumentation för denna plugin"
|
732 |
|
733 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
734 |
msgid "You can also hire The Seed for support on a contract or per-hour basis for this plugin, for your website or for any of your Internet marketing needs (we can really help!)."
|
735 |
msgstr "Du kan också anlita The Seed för support med avtal eller per timme för denna plugin, för din webbsida eller för något av dina marknadsföringsbehov på Internet (vi kan verkligen hjälpa dig!)."
|
736 |
|
737 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
738 |
msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
|
739 |
msgstr "Till användare av denna plugin: The Seed ger i första hand support till våra kunder. Besök forumet för denna plugin för att få gratis support från andra användare."
|
740 |
|
741 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
742 |
msgid "Vote and Share"
|
743 |
msgstr "Rösta och dela"
|
744 |
|
745 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
746 |
msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
|
747 |
msgstr "Denna plugin är licensierad enlig GPL3 och är tillgänglig utan kostnad. Det enda vi begär är att du:"
|
748 |
|
749 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
750 |
msgid "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Give it a five-star rating on wordpress.org</a> (if you think it deserves it!)"
|
751 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Ger den ett femstjärnigt omdömme på wordpress.org</a> (om du tycker att den är värd det!)"
|
752 |
|
753 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
754 |
msgid "Link to the plugin page on our website"
|
755 |
msgstr "Länkar till sidan för denna plugin från din webbsida"
|
756 |
|
757 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
758 |
msgid "Become a Fan on Facebook"
|
759 |
msgstr "Blir ett fan på Facebook"
|
760 |
|
761 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
762 |
msgid "Follow us on Twitter"
|
763 |
msgstr "Följer oss på Twitter"
|
764 |
|
765 |
-
#: ..\./app/view/box_the_seed_studio.php:
|
766 |
-
msgid "
|
767 |
-
msgstr "
|
768 |
-
|
769 |
-
#: ..\./app/view/box_the_seed_studio.php:43
|
770 |
-
msgid "If you would like to help support development of this plugin, then by all means..."
|
771 |
-
msgstr "Du kan göra följande för att stödja utvecklingen av denna plugin:"
|
772 |
|
773 |
#: ..\./app/view/box_time_and_date.php:2
|
774 |
msgid "Event date and time"
|
@@ -786,47 +994,55 @@ msgstr "Start"
|
|
786 |
msgid "End date / time"
|
787 |
msgstr "Slut"
|
788 |
|
789 |
-
#: ..\./app/view/box_time_and_date.php:
|
790 |
msgid "Repeat"
|
791 |
msgstr "Återkommer"
|
792 |
|
793 |
-
#: ..\./app/view/box_time_and_date.php:
|
794 |
msgid "End"
|
795 |
msgstr "Upphör"
|
796 |
|
797 |
-
#: ..\./app/view/box_time_and_date.php:
|
798 |
msgid "Ending after"
|
799 |
msgstr "Upphör efter"
|
800 |
|
801 |
-
#: ..\./app/view/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
802 |
msgid "+ Post Your Event"
|
803 |
msgstr "+ Posta ditt inlägg"
|
804 |
|
805 |
-
#: ..\./app/view/calendar.php:
|
806 |
msgid "Clear Filters"
|
807 |
msgstr "Rensa filter"
|
808 |
|
809 |
-
#: ..\./app/view/calendar.php:
|
810 |
msgid "✘"
|
811 |
msgstr "✘"
|
812 |
|
813 |
-
#: ..\./app/view/calendar.php:
|
814 |
msgid "Filter:"
|
815 |
msgstr "Filtrera:"
|
816 |
|
817 |
-
#: ..\./app/view/calendar.php:
|
818 |
msgid "Categories ▾"
|
819 |
msgstr "Kategori ▾"
|
820 |
|
821 |
-
#: ..\./app/view/calendar.php:
|
822 |
msgid "Tags ▾"
|
823 |
msgstr "Etikett ▾"
|
824 |
|
825 |
-
#: ..\./app/view/calendar.php:
|
826 |
msgid "to this filtered calendar"
|
827 |
msgstr "på denna filtrerade kalender"
|
828 |
|
829 |
-
#: ..\./app/view/calendar.php:
|
830 |
msgid "Subscribe in Google Calendar"
|
831 |
msgstr "Prenumerera i Google-kalender"
|
832 |
|
@@ -941,11 +1157,95 @@ msgstr "Sammanfattning:"
|
|
941 |
msgid "click anywhere for details"
|
942 |
msgstr "klicka för detaljer"
|
943 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
944 |
#: ..\./app/view/settings.php:5
|
945 |
msgid "All-in-one Event Calendar"
|
946 |
msgstr "All-in-one Event Calendar"
|
947 |
|
948 |
-
#: ..\./app/view/settings.php:
|
949 |
msgid "Update Settings"
|
950 |
msgstr "Uppdatera inställningar"
|
951 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar Plugin package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: All-in-One Event Calendar Plugin 1.2.5\n"
|
6 |
"Report-Msgid-Bugs-To: http://trac.the-seed.ca/ticket/78\n"
|
7 |
+
"POT-Creation-Date: 2012-02-04 13:47+0100\n"
|
8 |
+
"PO-Revision-Date: 2012-02-04 20:07+0100\n"
|
9 |
+
"Last-Translator: Jonas Sjömark <jonassjomark@gmail.com>\n"
|
10 |
"Language-Team: Jonas Sjömark (josjo) <jonassjomark@gmail.com>\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
|
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
"X-Poedit-Language: Swedish\n"
|
16 |
"X-Poedit-Country: SWEDEN\n"
|
17 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
|
19 |
+
#: ..\./app/controller/class-ai1ec-app-controller.php:354
|
20 |
+
#: ..\./app/controller/class-ai1ec-app-controller.php:355
|
21 |
msgid "Settings"
|
22 |
msgstr "Inställningar"
|
23 |
|
24 |
+
#: ..\./app/controller/class-ai1ec-calendar-controller.php:326
|
25 |
+
#: ..\./app/helper/class-ai1ec-calendar-helper.php:717
|
26 |
+
#: ..\./app/helper/class-ai1ec-calendar-helper.php:726
|
27 |
+
#, php-format
|
28 |
+
msgid "Week of %s"
|
29 |
+
msgstr "Vecka %s"
|
30 |
+
|
31 |
+
#: ..\./app/controller/class-ai1ec-calendar-controller.php:326
|
32 |
+
msgid "F j"
|
33 |
+
msgstr "W (Y-m-d)"
|
34 |
+
|
35 |
+
#: ..\./app/controller/class-ai1ec-calendar-controller.php:383
|
36 |
msgid "Agenda"
|
37 |
msgstr "Agenda"
|
38 |
|
39 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:149
|
40 |
msgid "This feed is already being imported."
|
41 |
msgstr "Detta flöde har redan importerats."
|
42 |
|
43 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:150
|
44 |
msgid "Please enter a valid iCalendar URL."
|
45 |
msgstr "Ange en giltig iCalendar URL."
|
46 |
|
47 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:285
|
48 |
+
msgid "times"
|
49 |
+
msgstr "gånger"
|
50 |
+
|
51 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:334
|
52 |
msgid "Publish"
|
53 |
msgstr "Publicera"
|
54 |
|
55 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:334
|
56 |
msgid "Update"
|
57 |
msgstr "Uppdatera"
|
58 |
|
59 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:336
|
60 |
msgid "Submit for Review"
|
61 |
msgstr "Skicka för granskning"
|
62 |
|
63 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:449
|
64 |
#, php-format
|
65 |
msgid "Event updated. <a href=\"%s\">View event</a>"
|
66 |
msgstr "Händelsen uppdaterades. <a href=\"%s\">Visa händelse</a>"
|
67 |
|
68 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:450
|
69 |
msgid "Custom field updated."
|
70 |
msgstr "Eget fält uppdaterades."
|
71 |
|
72 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:451
|
73 |
msgid "Custom field deleted."
|
74 |
msgstr "Eget fält togs bort."
|
75 |
|
76 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:452
|
77 |
msgid "Event updated."
|
78 |
msgstr "Händelsen uppdaterades."
|
79 |
|
80 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:454
|
81 |
#, php-format
|
82 |
msgid "Event restored to revision from %s"
|
83 |
msgstr "Händelsen återställdes till revision från %s"
|
84 |
|
85 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:455
|
86 |
#, php-format
|
87 |
msgid "Event published. <a href=\"%s\">View event</a>"
|
88 |
msgstr "Händelsen publicerades. <a href=\"%s\">Visa händelse</a>"
|
89 |
|
90 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:456
|
91 |
msgid "Event saved."
|
92 |
msgstr "Händelsen sparades."
|
93 |
|
94 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:457
|
95 |
#, php-format
|
96 |
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
97 |
msgstr "Händelsen sparades. <a target=\"_blank\" href=\"%s\">Förhandsgranska händelse</a>"
|
98 |
|
99 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:458
|
100 |
#, php-format
|
101 |
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
102 |
msgstr "Händelsen äger rum: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Förhandsgranska händelse</a>"
|
103 |
|
104 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:460
|
105 |
msgid "M j, Y @ G:i"
|
106 |
msgstr "j F, Y @ H:i"
|
107 |
|
108 |
+
#: ..\./app/controller/class-ai1ec-events-controller.php:461
|
109 |
#, php-format
|
110 |
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
111 |
msgstr "Utkastet uppdaterades. <a target=\"_blank\" href=\"%s\">Förhandsgranska händelse</a>"
|
122 |
msgid "Settings Updated."
|
123 |
msgstr "Inställningarna uppdaterades."
|
124 |
|
125 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:173
|
126 |
#, php-format
|
127 |
msgid "Flushed %d events"
|
128 |
msgstr "Tog bort %d händelser"
|
129 |
|
130 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:181
|
131 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:231
|
132 |
+
msgid "Invalid ICS feed ID"
|
133 |
+
msgstr "Ogiltigt ID för ICS feed"
|
134 |
+
|
135 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:216
|
136 |
+
msgid "No events were found"
|
137 |
+
msgstr "Inga händelser hittades"
|
138 |
+
|
139 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:221
|
140 |
#, php-format
|
141 |
msgid "Imported %d events"
|
142 |
msgstr "Importerade %d händelser"
|
143 |
|
144 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:222
|
145 |
#, php-format
|
146 |
msgid "Flush 1 event"
|
147 |
msgid_plural "Flush %s events"
|
148 |
+
msgstr[0] "Ta bort 1 händelse"
|
149 |
+
msgstr[1] "Ta bort %s händelser"
|
150 |
|
151 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:274
|
152 |
msgctxt "meta box"
|
153 |
msgid "General Settings"
|
154 |
msgstr "Allmänna inställningar"
|
155 |
|
156 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:282
|
157 |
msgctxt "meta box"
|
158 |
msgid "The Seed Studio Support"
|
159 |
msgstr "The Seed Studio Support"
|
160 |
|
161 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:289
|
162 |
msgctxt "meta box"
|
163 |
msgid "ICS Import Settings"
|
164 |
msgstr "Inställningar för ICS-import"
|
165 |
|
166 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:338
|
167 |
#, php-format
|
168 |
msgid "<a href=\"%s\">Settings</a>"
|
169 |
msgstr "<a href=\"%s\">Inställningar</a>"
|
170 |
|
171 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:352
|
172 |
#, php-format
|
173 |
msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
|
174 |
msgstr "<a href=\"%s\" target=\"_blank\">Ge ett bidrag</a>"
|
175 |
|
176 |
+
#: ..\./app/controller/class-ai1ec-settings-controller.php:353
|
177 |
#, php-format
|
178 |
msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
|
179 |
msgstr "<a href=\"%s\" target=\"_blank\">Få support</a>"
|
265 |
msgid "Event Details"
|
266 |
msgstr "Detaljer för händelse"
|
267 |
|
268 |
+
#: ..\./app/helper/class-ai1ec-app-helper.php:428
|
269 |
msgid "Post Date"
|
270 |
msgstr "Datum för inlägg"
|
271 |
|
272 |
+
#: ..\./app/helper/class-ai1ec-app-helper.php:429
|
273 |
msgid "Event date/time"
|
274 |
msgstr "Händelsens datum/tid"
|
275 |
|
276 |
+
#: ..\./app/helper/class-ai1ec-app-helper.php:653
|
277 |
#, php-format
|
278 |
msgid "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</strong> dropdown list. %s 2. Select an option in the <strong>Timezone</strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
|
279 |
msgstr "%sFör att ställa in denna plugin: %s 1. Välj en sida i listan med <strong>kalendersidor</strong>. %s 2. Välj en <strong>tidszon</strong> i listan. %s 3. Klicka på <strong>Uppdatera inställningar</strong>. %s"
|
280 |
|
281 |
+
#: ..\./app/helper/class-ai1ec-app-helper.php:655
|
282 |
msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
|
283 |
msgstr "För att ställa in denna plugin: välj en sida i listan med <strong>kalendersidor</strong>, klicka sedan på <strong>Uppdatera inställningar</strong>."
|
284 |
|
285 |
+
#: ..\./app/helper/class-ai1ec-app-helper.php:657
|
286 |
msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
|
287 |
msgstr "För att ställa in denna plugin: välj en <strong>tidszon</strong> i listan, klicka sedan på <strong>Uppdatera inställningar</strong>."
|
288 |
|
289 |
+
#: ..\./app/helper/class-ai1ec-app-helper.php:661
|
290 |
#, php-format
|
291 |
msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
|
292 |
msgstr "Denna plugin är installerad men behöver ställas in. <a href=\"%s\">Klicka här för att ställa in den nu »</a>"
|
293 |
|
294 |
+
#: ..\./app/helper/class-ai1ec-app-helper.php:667
|
295 |
msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
|
296 |
msgstr "Denna plugin är installerad men behöver ställas in. Logga in som administratör i WordPress för att göra inställningarna."
|
297 |
|
298 |
+
#: ..\./app/helper/class-ai1ec-calendar-helper.php:718
|
299 |
+
#: ..\./app/helper/class-ai1ec-calendar-helper.php:727
|
300 |
+
msgid "M j"
|
301 |
+
msgstr "W"
|
302 |
+
|
303 |
+
#: ..\./app/helper/class-ai1ec-calendar-helper.php:759
|
304 |
msgid "« Previous Events"
|
305 |
msgstr "« Tidigare händelser"
|
306 |
|
307 |
+
#: ..\./app/helper/class-ai1ec-calendar-helper.php:766
|
308 |
msgid "Next Events »"
|
309 |
msgstr "Senare händelser »"
|
310 |
|
311 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:319
|
312 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:341
|
313 |
msgid "No repeat"
|
314 |
msgstr "Inte återkommande"
|
315 |
|
316 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:320
|
317 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:342
|
318 |
+
msgid "Every day"
|
319 |
+
msgstr "Varje dag"
|
320 |
|
321 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:321
|
322 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:343
|
323 |
+
msgid "Every week"
|
324 |
+
msgstr "Varje vecka"
|
325 |
|
326 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:322
|
327 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:344
|
328 |
+
msgid "Every month"
|
329 |
+
msgstr "Varje månad"
|
330 |
|
331 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:323
|
332 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:345
|
333 |
+
msgid "Every year"
|
334 |
+
msgstr "Varje år"
|
335 |
|
336 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:325
|
337 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:347
|
338 |
+
msgid "Custom..."
|
339 |
+
msgstr "Eget..."
|
340 |
|
341 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:468
|
342 |
+
msgid "first"
|
343 |
+
msgstr "första"
|
344 |
|
345 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:469
|
346 |
+
msgid "second"
|
347 |
+
msgstr "andra"
|
348 |
|
349 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:470
|
350 |
+
msgid "third"
|
351 |
+
msgstr "tredje"
|
352 |
|
353 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:471
|
354 |
+
msgid "fourth"
|
355 |
+
msgstr "fjärde"
|
356 |
|
357 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:473
|
358 |
+
msgid "last"
|
359 |
+
msgstr "sista"
|
360 |
|
361 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:478
|
362 |
+
msgid "Sunday"
|
363 |
+
msgstr "Söndag"
|
364 |
|
365 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:479
|
366 |
+
msgid "Monday"
|
367 |
+
msgstr "Måndag"
|
368 |
+
|
369 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:480
|
370 |
+
msgid "Tuesday"
|
371 |
+
msgstr "Tisdag"
|
372 |
+
|
373 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:481
|
374 |
+
msgid "Wednesday"
|
375 |
+
msgstr "Onsdag"
|
376 |
|
377 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:482
|
378 |
+
msgid "Thursday"
|
379 |
+
msgstr "Torsdag"
|
380 |
+
|
381 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:483
|
382 |
+
msgid "Friday"
|
383 |
+
msgstr "Fredag"
|
384 |
+
|
385 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:484
|
386 |
+
msgid "Saturday"
|
387 |
+
msgstr "Lördag"
|
388 |
+
|
389 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:486
|
390 |
+
msgid "day"
|
391 |
+
msgstr "dag"
|
392 |
+
|
393 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:487
|
394 |
+
msgid "weekday"
|
395 |
+
msgstr "veckodag"
|
396 |
+
|
397 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:488
|
398 |
+
msgid "weekend day"
|
399 |
+
msgstr "lördag/söndag"
|
400 |
+
|
401 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:554
|
402 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:573
|
403 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1502
|
404 |
+
msgid "Daily"
|
405 |
+
msgstr "Dagligen"
|
406 |
+
|
407 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:555
|
408 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:574
|
409 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1514
|
410 |
msgid "Weekly"
|
411 |
msgstr "Varje vecka"
|
412 |
|
413 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:556
|
414 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:575
|
415 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1526
|
416 |
msgid "Monthly"
|
417 |
msgstr "Varje månad"
|
418 |
|
419 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:557
|
420 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:576
|
421 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1538
|
422 |
msgid "Yearly"
|
423 |
msgstr "Varje år"
|
424 |
|
425 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:598
|
426 |
+
msgid "day(s)"
|
427 |
+
msgstr "dagar"
|
428 |
+
|
429 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:627
|
430 |
+
msgid "week(s)"
|
431 |
+
msgstr "veckor"
|
432 |
|
433 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:697
|
434 |
+
msgid "month(s)"
|
435 |
+
msgstr "månader"
|
436 |
+
|
437 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:720
|
438 |
+
msgid "year(s)"
|
439 |
+
msgstr "år"
|
440 |
+
|
441 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1300
|
442 |
msgid "Never"
|
443 |
msgstr "Aldrig"
|
444 |
|
445 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1301
|
446 |
msgid "After"
|
447 |
msgstr "Efter"
|
448 |
|
449 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1302
|
450 |
msgid "On date"
|
451 |
msgstr "Den"
|
452 |
|
453 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1381
|
454 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1390
|
455 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1398
|
456 |
+
msgctxt "Recurrence editor - weekly tab"
|
457 |
+
msgid "on"
|
458 |
+
msgstr "på"
|
459 |
+
|
460 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1386
|
461 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1415
|
462 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1453
|
463 |
+
msgid "and"
|
464 |
+
msgstr "och"
|
465 |
+
|
466 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1411
|
467 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1418
|
468 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1424
|
469 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1435
|
470 |
+
msgctxt "Recurrence editor - monthly tab"
|
471 |
+
msgid "on"
|
472 |
+
msgstr "den"
|
473 |
+
|
474 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1411
|
475 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1418
|
476 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1424
|
477 |
+
msgid "of the month"
|
478 |
+
msgstr "i månaden"
|
479 |
+
|
480 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1448
|
481 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1456
|
482 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1463
|
483 |
+
msgctxt "Recurrence editor - yearly tab"
|
484 |
+
msgid "on"
|
485 |
+
msgstr "i"
|
486 |
+
|
487 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1505
|
488 |
+
msgid "Every other day"
|
489 |
+
msgstr "Varannan dag"
|
490 |
+
|
491 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1507
|
492 |
+
#, php-format
|
493 |
+
msgid "Every %d days"
|
494 |
+
msgstr "Var %d:e dag"
|
495 |
+
|
496 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1517
|
497 |
+
msgid "Every other week"
|
498 |
+
msgstr "Varannan vecka"
|
499 |
+
|
500 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1519
|
501 |
+
#, php-format
|
502 |
+
msgid "Every %d weeks"
|
503 |
+
msgstr "Var %d:e vecka"
|
504 |
+
|
505 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1529
|
506 |
+
msgid "Every other month"
|
507 |
+
msgstr "Varannan månad"
|
508 |
+
|
509 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1531
|
510 |
+
#, php-format
|
511 |
+
msgid "Every %d months"
|
512 |
+
msgstr "Var %d:e månad"
|
513 |
+
|
514 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1541
|
515 |
+
msgid "Every other year"
|
516 |
+
msgstr "Vartannat år"
|
517 |
+
|
518 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1543
|
519 |
+
#, php-format
|
520 |
+
msgid "Every %d years"
|
521 |
+
msgstr "Var %d:e år"
|
522 |
+
|
523 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1563
|
524 |
+
#, php-format
|
525 |
+
msgid "until %s"
|
526 |
+
msgstr "till %s"
|
527 |
+
|
528 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1566
|
529 |
+
#, php-format
|
530 |
+
msgid "for %d occurrences"
|
531 |
+
msgstr "%d gånger"
|
532 |
+
|
533 |
+
#: ..\./app/helper/class-ai1ec-events-helper.php:1568
|
534 |
+
msgid "forever"
|
535 |
+
msgstr "upphör inte"
|
536 |
+
|
537 |
#: ..\./app/helper/class-ai1ec-settings-helper.php:85
|
538 |
msgid "- Auto-Create New Page -"
|
539 |
msgstr "- Skapa ny sida automatiskt -"
|
540 |
|
541 |
+
#: ..\./app/helper/class-ai1ec-settings-helper.php:107
|
542 |
#, php-format
|
543 |
msgid "View \"%s\" »"
|
544 |
msgstr "Visa \"%s\" »"
|
545 |
|
546 |
+
#: ..\./app/helper/class-ai1ec-settings-helper.php:149
|
547 |
msgid "Month"
|
548 |
msgstr "Månad"
|
549 |
|
550 |
+
#: ..\./app/helper/class-ai1ec-settings-helper.php:152
|
551 |
+
msgid "Week"
|
552 |
+
msgstr "Vecka"
|
553 |
+
|
554 |
+
#: ..\./app/helper/class-ai1ec-settings-helper.php:204
|
555 |
+
msgid "Default (d/m/y)"
|
556 |
+
msgstr "Standard (d/m/å)"
|
557 |
+
|
558 |
+
#: ..\./app/helper/class-ai1ec-settings-helper.php:207
|
559 |
+
msgid "US (m/d/y)"
|
560 |
+
msgstr "USA (m/d/å)"
|
561 |
+
|
562 |
+
#: ..\./app/helper/class-ai1ec-settings-helper.php:210
|
563 |
+
msgid "ISO 8601 (y-m-d)"
|
564 |
+
msgstr "ISO 8601 (å-m-d)"
|
565 |
+
|
566 |
+
#: ..\./app/helper/class-ai1ec-settings-helper.php:213
|
567 |
+
msgid "Dotted (m.d.y)"
|
568 |
+
msgstr "Med punkter (m.d.å)"
|
569 |
+
|
570 |
+
#: ..\./app/helper/class-ai1ec-settings-helper.php:231
|
571 |
msgid "Hourly"
|
572 |
msgstr "Varje timma"
|
573 |
|
574 |
+
#: ..\./app/helper/class-ai1ec-settings-helper.php:234
|
575 |
msgid "Twice Daily"
|
576 |
msgstr "Två gånger dagligen"
|
577 |
|
578 |
+
#: ..\./app/helper/class-ai1ec-settings-helper.php:321
|
579 |
msgid "Calendar"
|
580 |
msgstr "Kalender"
|
581 |
|
582 |
+
#: ..\./app/model/class-ai1ec-event.php:487
|
583 |
msgid " (all-day)"
|
584 |
msgstr " (hela dagen)"
|
585 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
586 |
#: ..\./app/view/admin_notices.php:2
|
587 |
msgid "All-in-One Event Calendar Notice:"
|
588 |
msgstr "Notis från All-in-One Event Calendar:"
|
595 |
msgid "Number of events to show:"
|
596 |
msgstr "Antal händelser som ska visas:"
|
597 |
|
598 |
+
#: ..\./app/view/agenda-widget-form.php:14
|
599 |
+
msgid "Events with these <strong>Categories</strong>"
|
600 |
+
msgstr "Händelser i dessa <strong>kategorier</strong>"
|
601 |
+
|
602 |
+
#: ..\./app/view/agenda-widget-form.php:23
|
603 |
+
msgid "No categories found."
|
604 |
+
msgstr "Inga kategorier hittades"
|
605 |
+
|
606 |
+
#: ..\./app/view/agenda-widget-form.php:30
|
607 |
+
msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
|
608 |
+
msgstr "<strong>Eller</strong> händelser med dessa <strong>etiketter</strong>"
|
609 |
+
|
610 |
+
#: ..\./app/view/agenda-widget-form.php:39
|
611 |
+
msgid "No tags found."
|
612 |
+
msgstr "Inga etiketter hittades"
|
613 |
+
|
614 |
+
#: ..\./app/view/agenda-widget-form.php:46
|
615 |
+
msgid "<strong>Or</strong> any of these <strong>Events</strong>"
|
616 |
+
msgstr "<strong>Eller</strong> någon av dessa <strong>händelser</strong>"
|
617 |
+
|
618 |
+
#: ..\./app/view/agenda-widget-form.php:55
|
619 |
+
msgid "No events found."
|
620 |
+
msgstr "Inga händelser hittades"
|
621 |
+
|
622 |
+
#: ..\./app/view/agenda-widget-form.php:62
|
623 |
msgid "Show <strong>View Calendar</strong> button"
|
624 |
msgstr "Visa knappen <strong>Visa kalender</strong>"
|
625 |
|
626 |
+
#: ..\./app/view/agenda-widget-form.php:65
|
627 |
msgid "Show <strong>Subscribe</strong> buttons"
|
628 |
msgstr "Visa knappar för att <strong>prenumerera</strong>"
|
629 |
|
630 |
+
#: ..\./app/view/agenda-widget-form.php:68
|
631 |
msgid "Hide this widget on calendar page"
|
632 |
msgstr "Dölj denna widget på kalendersidan"
|
633 |
|
667 |
msgid "Today"
|
668 |
msgstr "Idag"
|
669 |
|
670 |
+
#: ..\./app/view/agenda.php:29
|
671 |
msgid "There are no upcoming events to display at this time."
|
672 |
msgstr "Det finns inga kommande händelser."
|
673 |
|
674 |
+
#: ..\./app/view/agenda.php:59
|
675 |
+
#: ..\./app/view/agenda.php:109
|
676 |
msgid "(all-day)"
|
677 |
msgstr "(heldag)"
|
678 |
|
679 |
+
#: ..\./app/view/agenda.php:77
|
680 |
msgid "Read more »"
|
681 |
msgstr "Läs mer »"
|
682 |
|
683 |
+
#: ..\./app/view/agenda.php:81
|
684 |
msgid "Categories:"
|
685 |
msgstr "Kategorier:"
|
686 |
|
687 |
+
#: ..\./app/view/agenda.php:87
|
688 |
msgid "Tags:"
|
689 |
msgstr "Etiketter:"
|
690 |
|
853 |
msgstr "händelser"
|
854 |
|
855 |
#: ..\./app/view/box_general_settings.php:31
|
856 |
+
msgid "Keep all events <strong>expanded</strong> in the agenda view"
|
857 |
+
msgstr "Låt alla händelser vara <strong>utfällda</strong> i agenda-vyn"
|
858 |
+
|
859 |
+
#: ..\./app/view/box_general_settings.php:37
|
860 |
msgid "<strong>Exclude</strong> events from search results"
|
861 |
msgstr "<strong>Utelämna</strong> händelser från sökresultaten"
|
862 |
|
863 |
+
#: ..\./app/view/box_general_settings.php:43
|
864 |
msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
|
865 |
msgstr "Visa knappen <strong>Lägg till en händelse</strong> ovanför kalendern för användare som har tillräcklig behörighet"
|
866 |
|
867 |
+
#: ..\./app/view/box_general_settings.php:49
|
868 |
msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
|
869 |
msgstr "Dölj knapparna <strong>Prenumerera</strong>/<strong>Lägg till i kalender</strong> i kalendernvyn och vyn för en enskild händelse"
|
870 |
|
871 |
+
#: ..\./app/view/box_general_settings.php:55
|
872 |
msgid "Hide <strong>Google Maps</strong> until clicked"
|
873 |
msgstr "Dölj <strong>Google-klarta</strong> tills man klickar på den"
|
874 |
|
875 |
+
#: ..\./app/view/box_general_settings.php:61
|
876 |
+
msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function"
|
877 |
+
msgstr "Använd inställningarna för region (WordPress locale) för att rikta sökningarna efter adress"
|
878 |
+
|
879 |
+
#: ..\./app/view/box_general_settings.php:67
|
880 |
msgid "Include <strong>event categories</strong> in post category lists"
|
881 |
msgstr "Ta med <strong>kategorier för händelser</strong> i listor över kategorier för inlägg"
|
882 |
|
883 |
+
#: ..\./app/view/box_general_settings.php:71
|
884 |
msgid "Adding/Editing Events"
|
885 |
msgstr "Lägga till/redigera händelser"
|
886 |
|
887 |
+
#: ..\./app/view/box_general_settings.php:73
|
888 |
+
msgid "Input dates in this format:"
|
889 |
+
msgstr "Mata in datum i detta format:"
|
890 |
|
891 |
+
#: ..\./app/view/box_general_settings.php:79
|
892 |
msgid "Use <strong>24h time</strong> in time pickers"
|
893 |
+
msgstr "Använd <strong>24-timmarsformat</strong> i tidväljare"
|
894 |
|
895 |
+
#: ..\./app/view/box_general_settings.php:85
|
896 |
msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
|
897 |
msgstr "Visa knappen <strong>Publicera</strong> längst ner på formuläret när en händelse skapas/redigeras"
|
898 |
|
918 |
msgid "+ Add new subscription"
|
919 |
msgstr "+ Lägg till ny prenumeration"
|
920 |
|
921 |
+
#: ..\./app/view/box_the_seed_studio.php:4
|
922 |
msgid "The Seed Studio"
|
923 |
msgstr "The Seed Studio"
|
924 |
|
925 |
+
#: ..\./app/view/box_the_seed_studio.php:7
|
926 |
msgid "The Seed Studio provides web development and support services for clients and web developers."
|
927 |
msgstr "The Seed Studio tillhandahåller webbutveckling och supporttjänster för företag och webbutvecklare."
|
928 |
|
929 |
+
#: ..\./app/view/box_the_seed_studio.php:14
|
930 |
+
msgid "Follow @theseednet"
|
931 |
+
msgstr "Följ @theseednet"
|
932 |
|
933 |
+
#: ..\./app/view/box_the_seed_studio.php:20
|
934 |
msgid "Get Support<span> from one of our experienced pros</span>"
|
935 |
msgstr "Få support<span> från ett av våra erfarna proffs</span>"
|
936 |
|
937 |
+
#: ..\./app/view/box_the_seed_studio.php:23
|
938 |
msgid "Support"
|
939 |
msgstr "Support"
|
940 |
|
941 |
+
#: ..\./app/view/box_the_seed_studio.php:25
|
942 |
msgid "View plugin documentation"
|
943 |
msgstr "Visa dokumentation för denna plugin"
|
944 |
|
945 |
+
#: ..\./app/view/box_the_seed_studio.php:28
|
946 |
msgid "You can also hire The Seed for support on a contract or per-hour basis for this plugin, for your website or for any of your Internet marketing needs (we can really help!)."
|
947 |
msgstr "Du kan också anlita The Seed för support med avtal eller per timme för denna plugin, för din webbsida eller för något av dina marknadsföringsbehov på Internet (vi kan verkligen hjälpa dig!)."
|
948 |
|
949 |
+
#: ..\./app/view/box_the_seed_studio.php:31
|
950 |
msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
|
951 |
msgstr "Till användare av denna plugin: The Seed ger i första hand support till våra kunder. Besök forumet för denna plugin för att få gratis support från andra användare."
|
952 |
|
953 |
+
#: ..\./app/view/box_the_seed_studio.php:34
|
954 |
msgid "Vote and Share"
|
955 |
msgstr "Rösta och dela"
|
956 |
|
957 |
+
#: ..\./app/view/box_the_seed_studio.php:36
|
958 |
msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
|
959 |
msgstr "Denna plugin är licensierad enlig GPL3 och är tillgänglig utan kostnad. Det enda vi begär är att du:"
|
960 |
|
961 |
+
#: ..\./app/view/box_the_seed_studio.php:38
|
962 |
msgid "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Give it a five-star rating on wordpress.org</a> (if you think it deserves it!)"
|
963 |
msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Ger den ett femstjärnigt omdömme på wordpress.org</a> (om du tycker att den är värd det!)"
|
964 |
|
965 |
+
#: ..\./app/view/box_the_seed_studio.php:39
|
966 |
msgid "Link to the plugin page on our website"
|
967 |
msgstr "Länkar till sidan för denna plugin från din webbsida"
|
968 |
|
969 |
+
#: ..\./app/view/box_the_seed_studio.php:40
|
970 |
msgid "Become a Fan on Facebook"
|
971 |
msgstr "Blir ett fan på Facebook"
|
972 |
|
973 |
+
#: ..\./app/view/box_the_seed_studio.php:41
|
974 |
msgid "Follow us on Twitter"
|
975 |
msgstr "Följer oss på Twitter"
|
976 |
|
977 |
+
#: ..\./app/view/box_the_seed_studio.php:46
|
978 |
+
msgid "Latest from the Seed Network"
|
979 |
+
msgstr "Det senaste från the Seed Network"
|
|
|
|
|
|
|
|
|
980 |
|
981 |
#: ..\./app/view/box_time_and_date.php:2
|
982 |
msgid "Event date and time"
|
994 |
msgid "End date / time"
|
995 |
msgstr "Slut"
|
996 |
|
997 |
+
#: ..\./app/view/box_time_and_date.php:46
|
998 |
msgid "Repeat"
|
999 |
msgstr "Återkommer"
|
1000 |
|
1001 |
+
#: ..\./app/view/box_time_and_date.php:70
|
1002 |
msgid "End"
|
1003 |
msgstr "Upphör"
|
1004 |
|
1005 |
+
#: ..\./app/view/box_time_and_date.php:77
|
1006 |
msgid "Ending after"
|
1007 |
msgstr "Upphör efter"
|
1008 |
|
1009 |
+
#: ..\./app/view/box_time_and_date.php:92
|
1010 |
+
msgid "Apply"
|
1011 |
+
msgstr "Använd"
|
1012 |
+
|
1013 |
+
#: ..\./app/view/box_time_and_date.php:93
|
1014 |
+
msgid "Cancel"
|
1015 |
+
msgstr "Ångra"
|
1016 |
+
|
1017 |
+
#: ..\./app/view/calendar.php:35
|
1018 |
msgid "+ Post Your Event"
|
1019 |
msgstr "+ Posta ditt inlägg"
|
1020 |
|
1021 |
+
#: ..\./app/view/calendar.php:44
|
1022 |
msgid "Clear Filters"
|
1023 |
msgstr "Rensa filter"
|
1024 |
|
1025 |
+
#: ..\./app/view/calendar.php:44
|
1026 |
msgid "✘"
|
1027 |
msgstr "✘"
|
1028 |
|
1029 |
+
#: ..\./app/view/calendar.php:45
|
1030 |
msgid "Filter:"
|
1031 |
msgstr "Filtrera:"
|
1032 |
|
1033 |
+
#: ..\./app/view/calendar.php:50
|
1034 |
msgid "Categories ▾"
|
1035 |
msgstr "Kategori ▾"
|
1036 |
|
1037 |
+
#: ..\./app/view/calendar.php:72
|
1038 |
msgid "Tags ▾"
|
1039 |
msgstr "Etikett ▾"
|
1040 |
|
1041 |
+
#: ..\./app/view/calendar.php:112
|
1042 |
msgid "to this filtered calendar"
|
1043 |
msgstr "på denna filtrerade kalender"
|
1044 |
|
1045 |
+
#: ..\./app/view/calendar.php:118
|
1046 |
msgid "Subscribe in Google Calendar"
|
1047 |
msgstr "Prenumerera i Google-kalender"
|
1048 |
|
1157 |
msgid "click anywhere for details"
|
1158 |
msgstr "klicka för detaljer"
|
1159 |
|
1160 |
+
#: ..\./app/view/row_daily.php:3
|
1161 |
+
#: ..\./app/view/row_monthly.php:3
|
1162 |
+
#: ..\./app/view/row_monthly.php:22
|
1163 |
+
#: ..\./app/view/row_weekly.php:3
|
1164 |
+
#: ..\./app/view/row_yearly.php:3
|
1165 |
+
msgid "Every"
|
1166 |
+
msgstr "Varje"
|
1167 |
+
|
1168 |
+
#: ..\./app/view/row_monthly.php:9
|
1169 |
+
msgid "On day of the month"
|
1170 |
+
msgstr "Dag i månad"
|
1171 |
+
|
1172 |
+
#: ..\./app/view/row_monthly.php:13
|
1173 |
+
msgid "On day of the week"
|
1174 |
+
msgstr "Dag i vecka"
|
1175 |
+
|
1176 |
+
#: ..\./app/view/row_weekly.php:6
|
1177 |
+
msgctxt "Recurrence editor - weekly tab"
|
1178 |
+
msgid "On"
|
1179 |
+
msgstr "På:"
|
1180 |
+
|
1181 |
+
#: ..\./app/view/row_yearly.php:7
|
1182 |
+
msgctxt "Recurrence editor - yearly tab"
|
1183 |
+
msgid "In"
|
1184 |
+
msgstr "i"
|
1185 |
+
|
1186 |
#: ..\./app/view/settings.php:5
|
1187 |
msgid "All-in-one Event Calendar"
|
1188 |
msgstr "All-in-one Event Calendar"
|
1189 |
|
1190 |
+
#: ..\./app/view/settings.php:16
|
1191 |
msgid "Update Settings"
|
1192 |
msgstr "Uppdatera inställningar"
|
1193 |
|
1194 |
+
#: ..\./app/view/week.php:33
|
1195 |
+
msgid "All-day"
|
1196 |
+
msgstr "Hela dagen"
|
1197 |
+
|
1198 |
+
#~ msgid "Categories"
|
1199 |
+
#~ msgstr "Kategorier"
|
1200 |
+
|
1201 |
+
#~ msgid "Tags"
|
1202 |
+
#~ msgstr "Etiketter"
|
1203 |
+
|
1204 |
+
#~ msgid "Each"
|
1205 |
+
#~ msgstr "Varje"
|
1206 |
+
#~ msgctxt "Number suffix"
|
1207 |
+
|
1208 |
+
#~ msgid "st"
|
1209 |
+
#~ msgstr "a"
|
1210 |
+
#~ msgctxt "Number suffix"
|
1211 |
+
|
1212 |
+
#~ msgid "nd"
|
1213 |
+
#~ msgstr "a"
|
1214 |
+
#~ msgctxt "Number suffix"
|
1215 |
+
|
1216 |
+
#~ msgid "rd"
|
1217 |
+
#~ msgstr "e"
|
1218 |
+
#~ msgctxt "Number suffix"
|
1219 |
+
|
1220 |
+
#~ msgid "th"
|
1221 |
+
#~ msgstr "e"
|
1222 |
+
#~ msgctxt "recurrence-weekly"
|
1223 |
+
|
1224 |
+
#~ msgid "on"
|
1225 |
+
#~ msgstr "på"
|
1226 |
+
|
1227 |
+
#~ msgid "Tuesdays & Thursdays"
|
1228 |
+
#~ msgstr "Tisdagar & torsdagar"
|
1229 |
+
|
1230 |
+
#~ msgid "Mondays, Wednesdays & Fridays"
|
1231 |
+
#~ msgstr "Måndagar, onsdagar & fredagar"
|
1232 |
+
|
1233 |
+
#~ msgid "Weekends"
|
1234 |
+
#~ msgstr "Lördagar & söndagar"
|
1235 |
+
|
1236 |
+
#~ msgid "ending after <strong>%d</strong> time"
|
1237 |
+
|
1238 |
+
#~ msgid_plural "ending after <strong>%d</strong> times"
|
1239 |
+
#~ msgstr[0] "slutar efter <strong>%d</strong> gång"
|
1240 |
+
#~ msgstr[1] "slutar efter <strong>%d</strong> gånger"
|
1241 |
+
|
1242 |
+
#~ msgid " or "
|
1243 |
+
#~ msgstr " eller "
|
1244 |
+
|
1245 |
+
#~ msgid "Donate"
|
1246 |
+
#~ msgstr "Ge ett bidrag"
|
1247 |
+
|
1248 |
+
#~ msgid ""
|
1249 |
+
#~ "If you would like to help support development of this plugin, then by all "
|
1250 |
+
#~ "means..."
|
1251 |
+
#~ msgstr "Du kan göra följande för att stödja utvecklingen av denna plugin:"
|
language/all-in-one-event-calendar.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: All-in-One Event Calendar 1.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
-
"POT-Creation-Date: 2012-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,68 +12,159 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: app/
|
16 |
-
|
|
|
17 |
msgstr ""
|
18 |
|
19 |
-
|
20 |
-
|
|
|
|
|
|
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: app/
|
24 |
-
msgid "
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: app/
|
28 |
-
#: app/
|
29 |
-
msgid "
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: app/
|
33 |
-
|
34 |
-
msgid "Week"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: app/
|
38 |
-
|
39 |
-
#: app/view/calendar.php:26
|
40 |
-
msgid "Agenda"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: app/
|
44 |
-
msgid "
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: app/
|
48 |
-
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: app/
|
52 |
-
msgid "
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: app/
|
56 |
-
msgid "
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: app/
|
60 |
-
msgid "
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: app/
|
64 |
-
msgid "
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: app/
|
68 |
-
|
69 |
-
#: app/helper/class-ai1ec-events-helper.php:573
|
70 |
-
#: app/helper/class-ai1ec-events-helper.php:1502
|
71 |
-
#: app/view/box_time_and_date.php:58
|
72 |
-
msgid "Daily"
|
73 |
msgstr ""
|
74 |
|
75 |
-
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: app/helper/class-ai1ec-app-helper.php:147
|
@@ -203,13 +294,6 @@ msgid ""
|
|
203 |
"WordPress Administrator to set it up."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#. translators: "%s" represents the week's starting date
|
207 |
-
#: app/helper/class-ai1ec-calendar-helper.php:717
|
208 |
-
#: app/helper/class-ai1ec-calendar-helper.php:726
|
209 |
-
#: app/controller/class-ai1ec-calendar-controller.php:326
|
210 |
-
msgid "Week of %s"
|
211 |
-
msgstr ""
|
212 |
-
|
213 |
#: app/helper/class-ai1ec-calendar-helper.php:718
|
214 |
#: app/helper/class-ai1ec-calendar-helper.php:727
|
215 |
msgid "M j"
|
@@ -223,429 +307,408 @@ msgstr ""
|
|
223 |
msgid "Next Events »"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
227 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
228 |
msgid "No repeat"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
232 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
233 |
msgid "Every day"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
237 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
238 |
msgid "Every week"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
242 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
243 |
msgid "Every month"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
247 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
248 |
msgid "Every year"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
252 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
253 |
msgid "Custom..."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
257 |
msgid "first"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
261 |
msgid "second"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
265 |
msgid "third"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
269 |
msgid "fourth"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
273 |
msgid "last"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
277 |
msgid "Sunday"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
281 |
msgid "Monday"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
285 |
msgid "Tuesday"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
289 |
msgid "Wednesday"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
293 |
msgid "Thursday"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
297 |
msgid "Friday"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
301 |
msgid "Saturday"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
305 |
msgid "day"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
309 |
msgid "weekday"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
313 |
msgid "weekend day"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
317 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
318 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
319 |
-
#: app/view/
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
msgid "Weekly"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
324 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
325 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
326 |
-
#: app/view/box_time_and_date.php:60
|
327 |
msgid "Monthly"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
331 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
332 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
333 |
-
#: app/view/box_time_and_date.php:61
|
334 |
msgid "Yearly"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
338 |
msgid "day(s)"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
342 |
msgid "week(s)"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
346 |
msgid "month(s)"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
350 |
msgid "year(s)"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
354 |
msgid "Never"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
358 |
msgid "After"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
362 |
-
#: app/view/box_time_and_date.php:84
|
363 |
msgid "On date"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
367 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
368 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
369 |
msgctxt "Recurrence editor - weekly tab"
|
370 |
msgid "on"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
374 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
375 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
376 |
msgid "and"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
380 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
381 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
382 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
383 |
msgctxt "Recurrence editor - monthly tab"
|
384 |
msgid "on"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
388 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
389 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
390 |
msgid "of the month"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
394 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
395 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
396 |
msgctxt "Recurrence editor - yearly tab"
|
397 |
msgid "on"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
401 |
msgid "Every other day"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
405 |
msgid "Every %d days"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
409 |
msgid "Every other week"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
413 |
msgid "Every %d weeks"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
417 |
msgid "Every other month"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
421 |
msgid "Every %d months"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
425 |
msgid "Every other year"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
429 |
msgid "Every %d years"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
433 |
msgid "until %s"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
437 |
msgid "for %d occurrences"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: app/helper/class-ai1ec-events-helper.php:
|
441 |
msgid "forever"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: app/
|
445 |
-
msgid "
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: app/
|
449 |
-
msgid "
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: app/
|
453 |
-
|
454 |
-
msgid "Invalid ICS feed ID"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: app/
|
458 |
-
|
|
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: app/
|
462 |
-
|
|
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: app/
|
466 |
-
|
467 |
-
msgid "Flush 1 event"
|
468 |
-
msgid_plural "Flush %s events"
|
469 |
-
msgstr[0] ""
|
470 |
-
msgstr[1] ""
|
471 |
-
|
472 |
-
#: app/controller/class-ai1ec-settings-controller.php:274
|
473 |
-
msgctxt "meta box"
|
474 |
-
msgid "General Settings"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: app/
|
478 |
-
|
479 |
-
msgid "The Seed Studio Support"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: app/
|
483 |
-
|
484 |
-
msgid "ICS Import Settings"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: app/
|
488 |
-
msgid "
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: app/
|
492 |
-
msgid "
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: app/
|
496 |
-
msgid "
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: app/
|
500 |
-
msgid "
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: app/
|
504 |
-
msgid "
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: app/
|
508 |
-
msgid "
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: app/
|
512 |
-
msgid "
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: app/
|
516 |
-
|
517 |
-
msgid "Update"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: app/
|
521 |
-
msgid "
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: app/
|
525 |
-
msgid "
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: app/
|
529 |
-
msgid "
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: app/
|
533 |
-
msgid "
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: app/controller/class-ai1ec-events-controller.php:452
|
537 |
-
msgid "Event updated."
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
#. translators: %s: date and time of the revision
|
541 |
-
#: app/controller/class-ai1ec-events-controller.php:454
|
542 |
-
msgid "Event restored to revision from %s"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: app/
|
546 |
-
msgid "
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: app/
|
550 |
-
msgid "
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: app/
|
554 |
-
msgid "
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: app/
|
558 |
-
msgid ""
|
559 |
-
"Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
560 |
-
"\">Preview event</a>"
|
561 |
msgstr ""
|
562 |
|
563 |
-
|
564 |
-
|
565 |
-
msgid "M j, Y @ G:i"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: app/
|
569 |
-
msgid "
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: app/
|
573 |
-
msgid "
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: app/
|
577 |
-
|
578 |
-
|
|
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: app/
|
582 |
-
msgid "
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: app/
|
586 |
-
msgid ""
|
587 |
-
"Imports events created using The Events Calendar plugin into the All-in-One "
|
588 |
-
"Event Calendar"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: app/view/
|
592 |
-
|
593 |
-
msgid "When:"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: app/view/
|
597 |
-
msgid "
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: app/view/
|
601 |
-
msgid "
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: app/view/
|
605 |
-
|
606 |
-
msgid "Where:"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: app/view/
|
610 |
-
msgid "
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: app/view/
|
614 |
-
|
|
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: app/view/
|
618 |
-
msgid "
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: app/view/event-
|
622 |
-
|
|
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: app/view/
|
626 |
-
|
|
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: app/view/
|
630 |
-
msgid "
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: app/view/
|
634 |
-
|
635 |
-
msgid "Categories:"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: app/view/
|
639 |
-
|
640 |
-
msgid "Tags:"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: app/view/
|
644 |
-
msgid "
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: app/view/
|
648 |
-
msgid "
|
649 |
msgstr ""
|
650 |
|
651 |
#: app/view/box_event_cost.php:1
|
@@ -656,94 +719,112 @@ msgstr ""
|
|
656 |
msgid "Cost"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: app/view/
|
660 |
-
msgid "
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: app/view/
|
664 |
-
msgid "
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: app/view/
|
668 |
-
msgid "
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: app/view/
|
672 |
-
|
673 |
-
#: app/view/row_monthly.php:22
|
674 |
-
msgid "Every"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: app/view/
|
678 |
-
|
679 |
-
msgid "Category Color"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: app/view/
|
683 |
-
|
684 |
-
msgid "Events in this category will be identified by this color"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: app/view/
|
688 |
-
msgid "
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: app/view/
|
692 |
-
msgid "
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: app/view/
|
|
|
|
|
|
|
|
|
696 |
msgid ""
|
697 |
-
"
|
698 |
-
"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: app/view/
|
702 |
-
msgid "
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: app/view/
|
706 |
-
msgid "
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: app/view/
|
710 |
-
msgid "
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: app/view/
|
714 |
-
msgid "
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: app/view/
|
718 |
-
msgid "
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: app/view/
|
722 |
-
msgid "
|
|
|
|
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: app/view/
|
726 |
-
msgid "
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: app/view/
|
730 |
-
msgid "
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: app/view/
|
734 |
-
msgid "
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: app/view/
|
738 |
-
msgid "
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: app/view/
|
742 |
-
msgid "
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: app/view/
|
746 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
747 |
msgstr ""
|
748 |
|
749 |
#: app/view/box_general_settings.php:1
|
@@ -836,130 +917,43 @@ msgstr ""
|
|
836 |
msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: app/view/
|
840 |
-
|
841 |
-
msgid "In"
|
842 |
-
msgstr ""
|
843 |
-
|
844 |
-
#: app/view/feed_row.php:9
|
845 |
-
msgid "Event category:"
|
846 |
-
msgstr ""
|
847 |
-
|
848 |
-
#: app/view/feed_row.php:19
|
849 |
-
msgid "× Delete"
|
850 |
-
msgstr ""
|
851 |
-
|
852 |
-
#: app/view/agenda-widget-form.php:2
|
853 |
-
msgid "Title:"
|
854 |
-
msgstr ""
|
855 |
-
|
856 |
-
#: app/view/agenda-widget-form.php:6
|
857 |
-
msgid "Number of events to show:"
|
858 |
-
msgstr ""
|
859 |
-
|
860 |
-
#: app/view/agenda-widget-form.php:14
|
861 |
-
msgid "Events with these <strong>Categories</strong>"
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: app/view/agenda-widget-form.php:23
|
865 |
-
msgid "No categories found."
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#: app/view/agenda-widget-form.php:30
|
869 |
-
msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
|
870 |
-
msgstr ""
|
871 |
-
|
872 |
-
#: app/view/agenda-widget-form.php:39
|
873 |
-
msgid "No tags found."
|
874 |
-
msgstr ""
|
875 |
-
|
876 |
-
#: app/view/agenda-widget-form.php:46
|
877 |
-
msgid "<strong>Or</strong> any of these <strong>Events</strong>"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: app/view/agenda-widget-form.php:55
|
881 |
-
msgid "No events found."
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: app/view/agenda-widget-form.php:62
|
885 |
-
msgid "Show <strong>View Calendar</strong> button"
|
886 |
-
msgstr ""
|
887 |
-
|
888 |
-
#: app/view/agenda-widget-form.php:65
|
889 |
-
msgid "Show <strong>Subscribe</strong> buttons"
|
890 |
-
msgstr ""
|
891 |
-
|
892 |
-
#: app/view/agenda-widget-form.php:68
|
893 |
-
msgid "Hide this widget on calendar page"
|
894 |
-
msgstr ""
|
895 |
-
|
896 |
-
#: app/view/calendar.php:35
|
897 |
-
msgid "+ Post Your Event"
|
898 |
-
msgstr ""
|
899 |
-
|
900 |
-
#: app/view/calendar.php:44
|
901 |
-
msgid "Clear Filters"
|
902 |
-
msgstr ""
|
903 |
-
|
904 |
-
#: app/view/calendar.php:44
|
905 |
-
msgid "✘"
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#: app/view/calendar.php:45
|
909 |
-
msgid "Filter:"
|
910 |
-
msgstr ""
|
911 |
-
|
912 |
-
#: app/view/calendar.php:50
|
913 |
-
msgid "Categories ▾"
|
914 |
-
msgstr ""
|
915 |
-
|
916 |
-
#: app/view/calendar.php:72
|
917 |
-
msgid "Tags ▾"
|
918 |
-
msgstr ""
|
919 |
-
|
920 |
-
#: app/view/calendar.php:112
|
921 |
-
msgid "to this filtered calendar"
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
#: app/view/calendar.php:118
|
925 |
-
msgid "Subscribe in Google Calendar"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: app/view/
|
929 |
-
msgid "
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: app/view/
|
933 |
-
msgid "
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: app/view/
|
937 |
-
msgid "
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: app/view/
|
941 |
-
msgid "
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: app/view/
|
945 |
-
|
946 |
-
msgid "(all-day)"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: app/view/
|
950 |
-
msgid "
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: app/view/
|
954 |
-
|
955 |
-
msgid "Upcoming Events"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: app/view/
|
959 |
-
msgid "
|
960 |
msgstr ""
|
961 |
|
962 |
-
#. #-#-#-#-# plugin.pot (All-in-One Event Calendar 1.
|
963 |
#. Author of the plugin/theme
|
964 |
#: app/view/box_the_seed_studio.php:4
|
965 |
msgid "The Seed Studio"
|
@@ -1033,108 +1027,111 @@ msgstr ""
|
|
1033 |
msgid "Latest from the Seed Network"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: app/view/
|
1037 |
-
msgid "
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: app/view/
|
1041 |
-
msgid "
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: app/view/
|
1045 |
-
msgid "
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: app/view/
|
1049 |
-
msgid "
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: app/view/
|
1053 |
-
msgid "
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: app/view/
|
1057 |
-
msgid "
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: app/view/
|
1061 |
-
msgid "
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: app/view/
|
1065 |
-
msgid "
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: app/view/
|
1069 |
-
msgid ""
|
1070 |
-
"To create multiple tickets per event, submit this form, then follow the link "
|
1071 |
-
"to Eventbrite."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: app/view/
|
1075 |
-
msgid "
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: app/view/
|
1079 |
-
msgid "
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: app/view/
|
1083 |
-
msgid "
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: app/view/
|
1087 |
-
msgid "
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: app/view/
|
1091 |
-
msgid "
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: app/view/
|
1095 |
-
msgid ""
|
1096 |
-
"The price for this event's first ticket will be taken from the Cost field "
|
1097 |
-
"above."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: app/view/
|
1101 |
-
|
|
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: app/view/
|
1105 |
-
msgid "
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: app/view/
|
1109 |
-
|
|
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: app/view/
|
1113 |
-
|
|
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: app/view/
|
1117 |
-
msgid "
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: app/view/
|
1121 |
-
msgid "
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: app/view/
|
1125 |
-
msgid "
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: app/view/
|
1129 |
-
msgid "
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: app/view/
|
1133 |
-
msgid "
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: app/view/
|
1137 |
-
msgid "
|
|
|
|
|
|
|
|
|
1138 |
msgstr ""
|
1139 |
|
1140 |
#: app/view/event-single-footer.php:4
|
@@ -1147,81 +1144,90 @@ msgstr ""
|
|
1147 |
msgid "View original post »"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: app/view/
|
1151 |
-
msgid "
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: app/view/
|
1155 |
-
msgid "
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: app/view/
|
1159 |
-
msgid "
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: app/view/
|
1163 |
-
msgid "
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: app/view/
|
1167 |
-
msgid "
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: app/view/
|
1171 |
-
|
|
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: app/view/
|
1175 |
-
|
|
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: app/view/
|
1179 |
-
msgid "
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: app/view/
|
1183 |
-
msgid "
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: app/view/
|
1187 |
-
|
1188 |
-
msgid "On"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: app/view/
|
1192 |
-
msgid "
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: app/view/
|
1196 |
-
msgid "
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: app/view/
|
1200 |
-
|
|
|
|
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: app/view/
|
1204 |
-
msgid "
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: app/view/
|
1208 |
-
msgid "
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: app/view/
|
1212 |
-
|
|
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: app/view/
|
1216 |
-
|
|
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: app/view/
|
1220 |
-
msgid "
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: app/view/
|
1224 |
-
msgid "
|
|
|
|
|
|
|
|
|
1225 |
msgstr ""
|
1226 |
|
1227 |
#. Plugin Name of the plugin/theme
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: All-in-One Event Calendar 1.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
+
"POT-Creation-Date: 2012-02-15 16:20:12+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: app/controller/class-ai1ec-app-controller.php:364
|
16 |
+
#: app/controller/class-ai1ec-app-controller.php:365
|
17 |
+
msgid "Settings"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#. translators: "%s" represents the week's starting date
|
21 |
+
#: app/controller/class-ai1ec-calendar-controller.php:326
|
22 |
+
#: app/helper/class-ai1ec-calendar-helper.php:717
|
23 |
+
#: app/helper/class-ai1ec-calendar-helper.php:726
|
24 |
+
msgid "Week of %s"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: app/controller/class-ai1ec-calendar-controller.php:326
|
28 |
+
msgid "F j"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: app/controller/class-ai1ec-calendar-controller.php:383
|
32 |
+
#: app/helper/class-ai1ec-settings-helper.php:155 app/view/calendar.php:26
|
33 |
+
msgid "Agenda"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: app/controller/class-ai1ec-events-controller.php:149
|
37 |
+
msgid "This feed is already being imported."
|
|
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: app/controller/class-ai1ec-events-controller.php:150
|
41 |
+
msgid "Please enter a valid iCalendar URL."
|
|
|
|
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: app/controller/class-ai1ec-events-controller.php:330
|
45 |
+
msgid "Publish"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: app/controller/class-ai1ec-events-controller.php:330
|
49 |
+
#: app/view/feed_row.php:20
|
50 |
+
msgid "Update"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: app/controller/class-ai1ec-events-controller.php:332
|
54 |
+
msgid "Submit for Review"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: app/controller/class-ai1ec-events-controller.php:450
|
58 |
+
msgid "Event updated. <a href=\"%s\">View event</a>"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: app/controller/class-ai1ec-events-controller.php:451
|
62 |
+
msgid "Custom field updated."
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: app/controller/class-ai1ec-events-controller.php:452
|
66 |
+
msgid "Custom field deleted."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: app/controller/class-ai1ec-events-controller.php:453
|
70 |
+
msgid "Event updated."
|
|
|
|
|
|
|
|
|
71 |
msgstr ""
|
72 |
|
73 |
+
#. translators: %s: date and time of the revision
|
74 |
+
#: app/controller/class-ai1ec-events-controller.php:455
|
75 |
+
msgid "Event restored to revision from %s"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: app/controller/class-ai1ec-events-controller.php:456
|
79 |
+
msgid "Event published. <a href=\"%s\">View event</a>"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: app/controller/class-ai1ec-events-controller.php:457
|
83 |
+
msgid "Event saved."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: app/controller/class-ai1ec-events-controller.php:458
|
87 |
+
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: app/controller/class-ai1ec-events-controller.php:459
|
91 |
+
msgid ""
|
92 |
+
"Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
|
93 |
+
"\">Preview event</a>"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#. translators: Publish box date format, see http:php.net/date
|
97 |
+
#: app/controller/class-ai1ec-events-controller.php:461
|
98 |
+
msgid "M j, Y @ G:i"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: app/controller/class-ai1ec-events-controller.php:462
|
102 |
+
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: app/controller/class-ai1ec-importer-controller.php:91
|
106 |
+
msgid "The Events Calendar → All-in-One Event Calendar"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: app/controller/class-ai1ec-importer-controller.php:92
|
110 |
+
msgid ""
|
111 |
+
"Imports events created using The Events Calendar plugin into the All-in-One "
|
112 |
+
"Event Calendar"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: app/controller/class-ai1ec-settings-controller.php:82
|
116 |
+
msgid "Settings Updated."
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: app/controller/class-ai1ec-settings-controller.php:173
|
120 |
+
msgid "Flushed %d events"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: app/controller/class-ai1ec-settings-controller.php:181
|
124 |
+
#: app/controller/class-ai1ec-settings-controller.php:231
|
125 |
+
msgid "Invalid ICS feed ID"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: app/controller/class-ai1ec-settings-controller.php:216
|
129 |
+
msgid "No events were found"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: app/controller/class-ai1ec-settings-controller.php:221
|
133 |
+
msgid "Imported %d events"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: app/controller/class-ai1ec-settings-controller.php:222
|
137 |
+
#: app/view/feed_row.php:22
|
138 |
+
msgid "Flush 1 event"
|
139 |
+
msgid_plural "Flush %s events"
|
140 |
+
msgstr[0] ""
|
141 |
+
msgstr[1] ""
|
142 |
+
|
143 |
+
#: app/controller/class-ai1ec-settings-controller.php:274
|
144 |
+
msgctxt "meta box"
|
145 |
+
msgid "General Settings"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: app/controller/class-ai1ec-settings-controller.php:282
|
149 |
+
msgctxt "meta box"
|
150 |
+
msgid "The Seed Studio Support"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: app/controller/class-ai1ec-settings-controller.php:289
|
154 |
+
msgctxt "meta box"
|
155 |
+
msgid "ICS Import Settings"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: app/controller/class-ai1ec-settings-controller.php:338
|
159 |
+
msgid "<a href=\"%s\">Settings</a>"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: app/controller/class-ai1ec-settings-controller.php:352
|
163 |
+
msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: app/controller/class-ai1ec-settings-controller.php:353
|
167 |
+
msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
|
168 |
msgstr ""
|
169 |
|
170 |
#: app/helper/class-ai1ec-app-helper.php:147
|
294 |
"WordPress Administrator to set it up."
|
295 |
msgstr ""
|
296 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
#: app/helper/class-ai1ec-calendar-helper.php:718
|
298 |
#: app/helper/class-ai1ec-calendar-helper.php:727
|
299 |
msgid "M j"
|
307 |
msgid "Next Events »"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: app/helper/class-ai1ec-events-helper.php:342
|
311 |
+
#: app/helper/class-ai1ec-events-helper.php:364
|
312 |
msgid "No repeat"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: app/helper/class-ai1ec-events-helper.php:343
|
316 |
+
#: app/helper/class-ai1ec-events-helper.php:365
|
317 |
msgid "Every day"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: app/helper/class-ai1ec-events-helper.php:344
|
321 |
+
#: app/helper/class-ai1ec-events-helper.php:366
|
322 |
msgid "Every week"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: app/helper/class-ai1ec-events-helper.php:345
|
326 |
+
#: app/helper/class-ai1ec-events-helper.php:367
|
327 |
msgid "Every month"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: app/helper/class-ai1ec-events-helper.php:346
|
331 |
+
#: app/helper/class-ai1ec-events-helper.php:368
|
332 |
msgid "Every year"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: app/helper/class-ai1ec-events-helper.php:348
|
336 |
+
#: app/helper/class-ai1ec-events-helper.php:370
|
337 |
msgid "Custom..."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: app/helper/class-ai1ec-events-helper.php:491
|
341 |
msgid "first"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: app/helper/class-ai1ec-events-helper.php:492
|
345 |
msgid "second"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: app/helper/class-ai1ec-events-helper.php:493
|
349 |
msgid "third"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: app/helper/class-ai1ec-events-helper.php:494
|
353 |
msgid "fourth"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: app/helper/class-ai1ec-events-helper.php:496
|
357 |
msgid "last"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: app/helper/class-ai1ec-events-helper.php:501
|
361 |
msgid "Sunday"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: app/helper/class-ai1ec-events-helper.php:502
|
365 |
msgid "Monday"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: app/helper/class-ai1ec-events-helper.php:503
|
369 |
msgid "Tuesday"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: app/helper/class-ai1ec-events-helper.php:504
|
373 |
msgid "Wednesday"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: app/helper/class-ai1ec-events-helper.php:505
|
377 |
msgid "Thursday"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: app/helper/class-ai1ec-events-helper.php:506
|
381 |
msgid "Friday"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: app/helper/class-ai1ec-events-helper.php:507
|
385 |
msgid "Saturday"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: app/helper/class-ai1ec-events-helper.php:509
|
389 |
msgid "day"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: app/helper/class-ai1ec-events-helper.php:510
|
393 |
msgid "weekday"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: app/helper/class-ai1ec-events-helper.php:511
|
397 |
msgid "weekend day"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: app/helper/class-ai1ec-events-helper.php:577
|
401 |
+
#: app/helper/class-ai1ec-events-helper.php:596
|
402 |
+
#: app/helper/class-ai1ec-events-helper.php:1525
|
403 |
+
#: app/helper/class-ai1ec-settings-helper.php:237 app/view/box_repeat.php:2
|
404 |
+
msgid "Daily"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: app/helper/class-ai1ec-events-helper.php:578
|
408 |
+
#: app/helper/class-ai1ec-events-helper.php:597
|
409 |
+
#: app/helper/class-ai1ec-events-helper.php:1537 app/view/box_repeat.php:3
|
410 |
msgid "Weekly"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: app/helper/class-ai1ec-events-helper.php:579
|
414 |
+
#: app/helper/class-ai1ec-events-helper.php:598
|
415 |
+
#: app/helper/class-ai1ec-events-helper.php:1549 app/view/box_repeat.php:4
|
|
|
416 |
msgid "Monthly"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: app/helper/class-ai1ec-events-helper.php:580
|
420 |
+
#: app/helper/class-ai1ec-events-helper.php:599
|
421 |
+
#: app/helper/class-ai1ec-events-helper.php:1561 app/view/box_repeat.php:5
|
|
|
422 |
msgid "Yearly"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: app/helper/class-ai1ec-events-helper.php:621
|
426 |
msgid "day(s)"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: app/helper/class-ai1ec-events-helper.php:650
|
430 |
msgid "week(s)"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: app/helper/class-ai1ec-events-helper.php:720
|
434 |
msgid "month(s)"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: app/helper/class-ai1ec-events-helper.php:743
|
438 |
msgid "year(s)"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: app/helper/class-ai1ec-events-helper.php:1323
|
442 |
msgid "Never"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: app/helper/class-ai1ec-events-helper.php:1324
|
446 |
msgid "After"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: app/helper/class-ai1ec-events-helper.php:1325 app/view/box_repeat.php:28
|
|
|
450 |
msgid "On date"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: app/helper/class-ai1ec-events-helper.php:1404
|
454 |
+
#: app/helper/class-ai1ec-events-helper.php:1413
|
455 |
+
#: app/helper/class-ai1ec-events-helper.php:1421
|
456 |
msgctxt "Recurrence editor - weekly tab"
|
457 |
msgid "on"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: app/helper/class-ai1ec-events-helper.php:1409
|
461 |
+
#: app/helper/class-ai1ec-events-helper.php:1438
|
462 |
+
#: app/helper/class-ai1ec-events-helper.php:1476
|
463 |
msgid "and"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: app/helper/class-ai1ec-events-helper.php:1434
|
467 |
+
#: app/helper/class-ai1ec-events-helper.php:1441
|
468 |
+
#: app/helper/class-ai1ec-events-helper.php:1447
|
469 |
+
#: app/helper/class-ai1ec-events-helper.php:1458
|
470 |
msgctxt "Recurrence editor - monthly tab"
|
471 |
msgid "on"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: app/helper/class-ai1ec-events-helper.php:1434
|
475 |
+
#: app/helper/class-ai1ec-events-helper.php:1441
|
476 |
+
#: app/helper/class-ai1ec-events-helper.php:1447
|
477 |
msgid "of the month"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: app/helper/class-ai1ec-events-helper.php:1471
|
481 |
+
#: app/helper/class-ai1ec-events-helper.php:1479
|
482 |
+
#: app/helper/class-ai1ec-events-helper.php:1486
|
483 |
msgctxt "Recurrence editor - yearly tab"
|
484 |
msgid "on"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: app/helper/class-ai1ec-events-helper.php:1528
|
488 |
msgid "Every other day"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: app/helper/class-ai1ec-events-helper.php:1530
|
492 |
msgid "Every %d days"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: app/helper/class-ai1ec-events-helper.php:1540
|
496 |
msgid "Every other week"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: app/helper/class-ai1ec-events-helper.php:1542
|
500 |
msgid "Every %d weeks"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: app/helper/class-ai1ec-events-helper.php:1552
|
504 |
msgid "Every other month"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: app/helper/class-ai1ec-events-helper.php:1554
|
508 |
msgid "Every %d months"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: app/helper/class-ai1ec-events-helper.php:1564
|
512 |
msgid "Every other year"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: app/helper/class-ai1ec-events-helper.php:1566
|
516 |
msgid "Every %d years"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: app/helper/class-ai1ec-events-helper.php:1586
|
520 |
msgid "until %s"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: app/helper/class-ai1ec-events-helper.php:1589
|
524 |
msgid "for %d occurrences"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: app/helper/class-ai1ec-events-helper.php:1591
|
528 |
msgid "forever"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: app/helper/class-ai1ec-events-helper.php:1688
|
532 |
+
msgid "times"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: app/helper/class-ai1ec-settings-helper.php:85
|
536 |
+
msgid "- Auto-Create New Page -"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: app/helper/class-ai1ec-settings-helper.php:107
|
540 |
+
msgid "View \"%s\" »"
|
|
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: app/helper/class-ai1ec-settings-helper.php:149 app/view/calendar.php:11
|
544 |
+
#: app/view/calendar.php:12 app/view/calendar.php:25
|
545 |
+
msgid "Month"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: app/helper/class-ai1ec-settings-helper.php:152 app/view/calendar.php:18
|
549 |
+
#: app/view/calendar.php:19
|
550 |
+
msgid "Week"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: app/helper/class-ai1ec-settings-helper.php:204
|
554 |
+
msgid "Default (d/m/y)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: app/helper/class-ai1ec-settings-helper.php:207
|
558 |
+
msgid "US (m/d/y)"
|
|
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: app/helper/class-ai1ec-settings-helper.php:210
|
562 |
+
msgid "ISO 8601 (y-m-d)"
|
|
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: app/helper/class-ai1ec-settings-helper.php:213
|
566 |
+
msgid "Dotted (m.d.y)"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: app/helper/class-ai1ec-settings-helper.php:231
|
570 |
+
msgid "Hourly"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: app/helper/class-ai1ec-settings-helper.php:234
|
574 |
+
msgid "Twice Daily"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: app/helper/class-ai1ec-settings-helper.php:321
|
578 |
+
msgid "Calendar"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: app/model/class-ai1ec-event.php:487
|
582 |
+
msgid " (all-day)"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: app/view/admin_notices.php:2
|
586 |
+
msgid "All-in-One Event Calendar Notice:"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: app/view/agenda-widget-form.php:2
|
590 |
+
msgid "Title:"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: app/view/agenda-widget-form.php:6
|
594 |
+
msgid "Number of events to show:"
|
|
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: app/view/agenda-widget-form.php:14
|
598 |
+
msgid "Events with these <strong>Categories</strong>"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: app/view/agenda-widget-form.php:23
|
602 |
+
msgid "No categories found."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: app/view/agenda-widget-form.php:30
|
606 |
+
msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: app/view/agenda-widget-form.php:39
|
610 |
+
msgid "No tags found."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: app/view/agenda-widget-form.php:46
|
614 |
+
msgid "<strong>Or</strong> any of these <strong>Events</strong>"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: app/view/agenda-widget-form.php:55
|
618 |
+
msgid "No events found."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: app/view/agenda-widget-form.php:62
|
622 |
+
msgid "Show <strong>View Calendar</strong> button"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: app/view/agenda-widget-form.php:65
|
626 |
+
msgid "Show <strong>Subscribe</strong> buttons"
|
|
|
|
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: app/view/agenda-widget-form.php:68
|
630 |
+
msgid "Hide this widget on calendar page"
|
|
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: app/view/agenda-widget.php:11
|
634 |
+
msgid "There are no upcoming events."
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: app/view/agenda-widget.php:59
|
638 |
+
msgid "View Calendar »"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: app/view/agenda-widget.php:67 app/view/calendar.php:110
|
642 |
+
msgid ""
|
643 |
+
"Subscribe to this calendar using your favourite calendar program (iCal, "
|
644 |
+
"Outlook, etc.)"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: app/view/agenda-widget.php:68 app/view/calendar.php:111
|
648 |
+
msgid "✔ Subscribe"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: app/view/agenda-widget.php:72 app/view/calendar.php:116
|
652 |
+
msgid "Subscribe to this calendar in your Google Calendar"
|
|
|
|
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: app/view/agenda-widget.php:74
|
656 |
+
msgid "Add to Google"
|
|
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: app/view/agenda.php:5
|
660 |
+
msgid "+ Expand All"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: app/view/agenda.php:8
|
664 |
+
msgid "− Collapse All"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: app/view/agenda.php:12 app/view/month.php:4 app/view/week.php:4
|
668 |
+
msgid "Today"
|
|
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: app/view/agenda.php:29
|
672 |
+
msgid "There are no upcoming events to display at this time."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: app/view/agenda.php:59 app/view/agenda.php:109 app/view/month.php:68
|
676 |
+
#: app/view/week.php:69
|
677 |
+
msgid "(all-day)"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: app/view/agenda.php:77
|
681 |
+
msgid "Read more »"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: app/view/agenda.php:81 app/view/event-multi.php:45
|
685 |
+
#: app/view/event-single.php:52
|
686 |
+
msgid "Categories:"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: app/view/agenda.php:87 app/view/event-multi.php:51
|
690 |
+
#: app/view/event-single.php:59
|
691 |
+
msgid "Tags:"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: app/view/box_date_picker.php:4
|
695 |
+
msgid "Select dates"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: app/view/box_event_contact.php:1
|
699 |
+
msgid "Organizer contact info"
|
|
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: app/view/box_event_contact.php:7
|
703 |
+
msgid "Contact name:"
|
|
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: app/view/box_event_contact.php:17
|
707 |
+
msgid "Phone:"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: app/view/box_event_contact.php:27
|
711 |
+
msgid "E-mail:"
|
712 |
msgstr ""
|
713 |
|
714 |
#: app/view/box_event_cost.php:1
|
719 |
msgid "Cost"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: app/view/box_event_location.php:1
|
723 |
+
msgid "Event location details"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: app/view/box_event_location.php:7
|
727 |
+
msgid "Venue name:"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: app/view/box_event_location.php:17
|
731 |
+
msgid "Address:"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: app/view/box_event_location.php:27
|
735 |
+
msgid "Show Google Map:"
|
|
|
|
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: app/view/box_eventbrite.php:1
|
739 |
+
msgid "Eventbrite Ticketing"
|
|
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: app/view/box_eventbrite.php:7
|
743 |
+
msgid "Register this event with Eventbrite.com?"
|
|
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: app/view/box_eventbrite.php:12
|
747 |
+
msgid "Yes"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: app/view/box_eventbrite.php:14
|
751 |
+
msgid "No"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: app/view/box_eventbrite.php:22
|
755 |
+
msgid "Set up your first ticket"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: app/view/box_eventbrite.php:24
|
759 |
msgid ""
|
760 |
+
"To create multiple tickets per event, submit this form, then follow the link "
|
761 |
+
"to Eventbrite."
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: app/view/box_eventbrite.php:32
|
765 |
+
msgid "Name"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: app/view/box_eventbrite.php:42
|
769 |
+
msgid "Description"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: app/view/box_eventbrite.php:53
|
773 |
+
msgid "Type"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: app/view/box_eventbrite.php:58
|
777 |
+
msgid "Set Price"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: app/view/box_eventbrite.php:60
|
781 |
+
msgid "Donation Based"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: app/view/box_eventbrite.php:68
|
785 |
+
msgid ""
|
786 |
+
"The price for this event's first ticket will be taken from the Cost field "
|
787 |
+
"above."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: app/view/box_eventbrite.php:75
|
791 |
+
msgid "Quantity"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: app/view/box_eventbrite.php:85
|
795 |
+
msgid "Include Fee in Price"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: app/view/box_eventbrite.php:90
|
799 |
+
msgid "Add Service Fee on top of price"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: app/view/box_eventbrite.php:92
|
803 |
+
msgid "Include Service fee in price"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: app/view/box_eventbrite.php:98
|
807 |
+
msgid "Payment Options"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: app/view/box_eventbrite.php:103
|
811 |
+
msgid "Paypal"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: app/view/box_eventbrite.php:105
|
815 |
+
msgid "Google Checkout"
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
#: app/view/box_eventbrite.php:107
|
819 |
+
msgid "Check"
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
+
#: app/view/box_eventbrite.php:109
|
823 |
+
msgid "Cash"
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
+
#: app/view/box_eventbrite.php:111
|
827 |
+
msgid "Send an Invoice"
|
828 |
msgstr ""
|
829 |
|
830 |
#: app/view/box_general_settings.php:1
|
917 |
msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: app/view/box_ics_import_settings.php:2
|
921 |
+
msgid "Auto-refresh"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: app/view/box_ics_import_settings.php:8 app/view/feed_row.php:3
|
925 |
+
msgid "iCalendar/.ics Feed URL:"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: app/view/box_ics_import_settings.php:12
|
929 |
+
msgid "Event category"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: app/view/box_ics_import_settings.php:18 app/view/feed_row.php:15
|
933 |
+
msgid "Tag with"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: app/view/box_ics_import_settings.php:22
|
937 |
+
msgid "+ Add new subscription"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: app/view/box_repeat.php:14
|
941 |
+
msgid "End"
|
|
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: app/view/box_repeat.php:21
|
945 |
+
msgid "Ending after"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: app/view/box_repeat.php:36
|
949 |
+
msgid "Apply"
|
|
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: app/view/box_repeat.php:37
|
953 |
+
msgid "Cancel"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#. #-#-#-#-# plugin.pot (All-in-One Event Calendar 1.3) #-#-#-#-#
|
957 |
#. Author of the plugin/theme
|
958 |
#: app/view/box_the_seed_studio.php:4
|
959 |
msgid "The Seed Studio"
|
1027 |
msgid "Latest from the Seed Network"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: app/view/box_time_and_date.php:2
|
1031 |
+
msgid "Event date and time"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: app/view/box_time_and_date.php:8
|
1035 |
+
msgid "All-day event"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: app/view/box_time_and_date.php:18
|
1039 |
+
msgid "Start date / time"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: app/view/box_time_and_date.php:31
|
1043 |
+
msgid "End date / time"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: app/view/box_time_and_date.php:46
|
1047 |
+
msgid "Repeat"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: app/view/box_time_and_date.php:60
|
1051 |
+
msgid "Exclude"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: app/view/box_time_and_date.php:75
|
1055 |
+
msgid "Exclude dates"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: app/view/calendar.php:35
|
1059 |
+
msgid "+ Post Your Event"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: app/view/calendar.php:44
|
1063 |
+
msgid "Clear Filters"
|
|
|
|
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: app/view/calendar.php:44
|
1067 |
+
msgid "✘"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: app/view/calendar.php:45
|
1071 |
+
msgid "Filter:"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: app/view/calendar.php:50
|
1075 |
+
msgid "Categories ▾"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: app/view/calendar.php:72
|
1079 |
+
msgid "Tags ▾"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: app/view/calendar.php:112
|
1083 |
+
msgid "to this filtered calendar"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: app/view/calendar.php:118
|
1087 |
+
msgid "Subscribe in Google Calendar"
|
|
|
|
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: app/view/class-ai1ec-agenda-widget.php:18
|
1091 |
+
#: app/view/class-ai1ec-agenda-widget.php:39
|
1092 |
+
msgid "Upcoming Events"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: app/view/class-ai1ec-agenda-widget.php:20
|
1096 |
+
msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: app/view/event-excerpt.php:2 app/view/event-multi.php:4
|
1100 |
+
#: app/view/event-single.php:5
|
1101 |
+
msgid "When:"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: app/view/event-excerpt.php:4 app/view/event-multi.php:20
|
1105 |
+
#: app/view/event-single.php:20
|
1106 |
+
msgid "Where:"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: app/view/event-map.php:2
|
1110 |
+
msgid "Click to view map"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: app/view/event-map.php:9
|
1114 |
+
msgid "View Full-Size Map »"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: app/view/event-multi.php:7
|
1118 |
+
msgid "View in Calendar »"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: app/view/event-multi.php:14 app/view/event-single.php:15
|
1122 |
+
msgid "Repeats:"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: app/view/event-multi.php:24
|
1126 |
+
msgid "View Map »"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: app/view/event-multi.php:33 app/view/event-single.php:40
|
1130 |
+
msgid "Cost:"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: app/view/event-multi.php:39 app/view/event-single.php:46
|
1134 |
+
msgid "Contact:"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
#: app/view/event-single-footer.php:4
|
1144 |
msgid "View original post »"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: app/view/event-single.php:8
|
1148 |
+
msgid "Back to Calendar »"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: app/view/event-single.php:27
|
1152 |
+
msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: app/view/event-single.php:28
|
1156 |
+
msgid "✔ Add to Calendar"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: app/view/event-single.php:31
|
1160 |
+
msgid "Add this event to your Google Calendar"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: app/view/event-single.php:33
|
1164 |
+
msgid "Add to Google Calendar"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: app/view/event_categories-color_picker.php:5
|
1168 |
+
#: app/view/event_categories-color_picker.php:19
|
1169 |
+
msgid "Category Color"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: app/view/event_categories-color_picker.php:13
|
1173 |
+
#: app/view/event_categories-color_picker.php:25
|
1174 |
+
msgid "Events in this category will be identified by this color"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: app/view/feed_row.php:9
|
1178 |
+
msgid "Event category:"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: app/view/feed_row.php:19
|
1182 |
+
msgid "× Delete"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: app/view/import.php:6
|
1186 |
+
msgid "Successfully imported events:"
|
|
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: app/view/month.php:50 app/view/week.php:55 app/view/week.php:127
|
1190 |
+
msgid "Summary:"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: app/view/month.php:53 app/view/week.php:58 app/view/week.php:130
|
1194 |
+
msgid "click anywhere for details"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: app/view/row_daily.php:3 app/view/row_monthly.php:3
|
1198 |
+
#: app/view/row_monthly.php:22 app/view/row_weekly.php:3
|
1199 |
+
#: app/view/row_yearly.php:3
|
1200 |
+
msgid "Every"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: app/view/row_monthly.php:9
|
1204 |
+
msgid "On day of the month"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: app/view/row_monthly.php:13
|
1208 |
+
msgid "On day of the week"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: app/view/row_weekly.php:6
|
1212 |
+
msgctxt "Recurrence editor - weekly tab"
|
1213 |
+
msgid "On"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: app/view/row_yearly.php:7
|
1217 |
+
msgctxt "Recurrence editor - yearly tab"
|
1218 |
+
msgid "In"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: app/view/settings.php:5
|
1222 |
+
msgid "All-in-one Event Calendar"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: app/view/settings.php:16
|
1226 |
+
msgid "Update Settings"
|
1227 |
+
msgstr ""
|
1228 |
+
|
1229 |
+
#: app/view/week.php:33
|
1230 |
+
msgid "All-day"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
#. Plugin Name of the plugin/theme
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: calendar, event, events, ics, ics calendar, ical-feed, ics feed, wordpress ics importer, wordpress ical importer, upcoming events, todo, notes, journal, freebusy, availability, web calendar, web events, webcal, google calendar, ical, iCalendar, all-in-one, ai1ec, google calendar sync, ical sync, events sync, holiday calendar, calendar 2011, events 2011, widget, events widget, upcoming events widget, calendar widget, agenda widget
|
5 |
Requires at least: 3.1.3
|
6 |
Tested up to: 3.3
|
7 |
-
Stable tag: 1.
|
8 |
|
9 |
An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
10 |
|
@@ -48,6 +48,10 @@ The All-in-One Event Calendar Plugin also has a few features that will prove use
|
|
48 |
* Each event links to the original calendar
|
49 |
* Your calendar can be embedded into a WordPress page without needing to create template files or modify the theme
|
50 |
|
|
|
|
|
|
|
|
|
51 |
= Helpful Links =
|
52 |
|
53 |
* [**Check out the DEMO »**](http://demo.theseednetwork.com/)
|
@@ -56,7 +60,36 @@ The All-in-One Event Calendar Plugin also has a few features that will prove use
|
|
56 |
* [**BUG reports only »**](http://trac.theseednetwork.com/newticket) ([registration](http://trac.theseednetwork.com/register) required)
|
57 |
* [**Get Premium Support »**](http://theseednetwork.com/get-supported) from [The Seed Studio](http://theseednetwork.com/)
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
= Version 1.2.5 =
|
61 |
* Reviewed plugin's security. The plugin is as safe to use as is WordPress itself.
|
62 |
* Fixed: instance_id not corresponding with correct data [#275](http://trac.the-seed.ca/ticket/275)
|
4 |
Tags: calendar, event, events, ics, ics calendar, ical-feed, ics feed, wordpress ics importer, wordpress ical importer, upcoming events, todo, notes, journal, freebusy, availability, web calendar, web events, webcal, google calendar, ical, iCalendar, all-in-one, ai1ec, google calendar sync, ical sync, events sync, holiday calendar, calendar 2011, events 2011, widget, events widget, upcoming events widget, calendar widget, agenda widget
|
5 |
Requires at least: 3.1.3
|
6 |
Tested up to: 3.3
|
7 |
+
Stable tag: 1.3
|
8 |
|
9 |
An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
10 |
|
48 |
* Each event links to the original calendar
|
49 |
* Your calendar can be embedded into a WordPress page without needing to create template files or modify the theme
|
50 |
|
51 |
+
= Video Tutorials =
|
52 |
+
http://www.youtube.com/watch?v=nKlIy-BUeRE
|
53 |
+
http://www.youtube.com/watch?v=zZHpzfyukyU
|
54 |
+
|
55 |
= Helpful Links =
|
56 |
|
57 |
* [**Check out the DEMO »**](http://demo.theseednetwork.com/)
|
60 |
* [**BUG reports only »**](http://trac.theseednetwork.com/newticket) ([registration](http://trac.theseednetwork.com/register) required)
|
61 |
* [**Get Premium Support »**](http://theseednetwork.com/get-supported) from [The Seed Studio](http://theseednetwork.com/)
|
62 |
|
63 |
+
== Frequently Asked Questions ==
|
64 |
+
|
65 |
+
= Shortcodes =
|
66 |
+
|
67 |
+
* Monthly view: **[ai1ec view="monthly"]**
|
68 |
+
* Weekly view: **[ai1ec view="weekly"]**
|
69 |
+
* Agenda view: **[ai1ec view="agenda"]**
|
70 |
+
* Default view as per settings: **[ai1ec]**
|
71 |
+
|
72 |
+
* Filter by event category name: **[ai1ec cat_name="halloween"]**
|
73 |
+
* Filter by event category names (separate names by comma): **[ai1ec cat_name="Halloween, Thanksgiving Day"]**
|
74 |
+
* Filter by event category id: **[ai1ec cat_id="1"]**
|
75 |
+
* Filter by event category ids (separate ids by comma): **[ai1ec cat_id="1, 2"]**
|
76 |
+
|
77 |
+
* Filter by event tag name: **[ai1ec tag_name="halloween"]**
|
78 |
+
* Filter by event tag names (separate names by comma): **[ai1ec tag_name="Halloween, Thanksgiving Day"]**
|
79 |
+
* Filter by event tag id: **[ai1ec tag_id="1"]**
|
80 |
+
* Filter by event tag ids (separate ids by comma): **[ai1ec tag_id="1, 2"]**
|
81 |
+
|
82 |
+
* Filter by post id: **[ai1ec post_id="1"]**
|
83 |
+
* Filter by post ids (separate ids by comma): **[ai1ec post_id="1, 2"]**
|
84 |
+
|
85 |
== Changelog ==
|
86 |
+
= Version 1.3 =
|
87 |
+
* Added shortcodes support.[#36](http://trac.the-seed.ca/ticket/36) (Howto is under Frequently Asked Questions tab)
|
88 |
+
* Added support to exclude events using [EXRULE](http://www.kanzaki.com/docs/ical/exrule.html)
|
89 |
+
* Added Czech translation
|
90 |
+
* Added Danish translation
|
91 |
+
* Updated Swedish translation
|
92 |
+
|
93 |
= Version 1.2.5 =
|
94 |
* Reviewed plugin's security. The plugin is as safe to use as is WordPress itself.
|
95 |
* Fixed: instance_id not corresponding with correct data [#275](http://trac.the-seed.ca/ticket/275)
|