All-in-One Event Calendar - Version 2.3.9

Version Description

Download this release

Release Info

Developer calvinyeh
Plugin Icon 128x128 All-in-One Event Calendar
Version 2.3.9
Comparing to
See all releases

Code changes from version 2.3.8 to 2.3.9

Files changed (45) hide show
  1. all-in-one-event-calendar.php +1 -1
  2. app/config/constants.php +1 -1
  3. app/controller/front.php +2 -2
  4. app/controller/javascript-widget.php +13 -2
  5. app/controller/javascript.php +29 -7
  6. app/model/search.php +6 -6
  7. app/view/admin/add-new-event.php +14 -6
  8. app/view/calendar/shortcode.php +1 -4
  9. app/view/event/single.php +1 -1
  10. language/all-in-one-event-calendar-ar.mo +0 -0
  11. language/all-in-one-event-calendar-ar.po +5 -5
  12. language/all-in-one-event-calendar-bg.mo +0 -0
  13. language/all-in-one-event-calendar-bg.po +3007 -0
  14. language/all-in-one-event-calendar-bg_BG.mo +0 -0
  15. language/all-in-one-event-calendar-bg_BG.po +34 -34
  16. language/all-in-one-event-calendar-ca.mo +0 -0
  17. language/all-in-one-event-calendar-ca.po +4 -4
  18. language/all-in-one-event-calendar-cs.mo +0 -0
  19. language/all-in-one-event-calendar-cs.po +3003 -0
  20. language/all-in-one-event-calendar-cs_CZ.mo +0 -0
  21. language/all-in-one-event-calendar-cs_CZ.po +55 -55
  22. language/all-in-one-event-calendar-da.mo +0 -0
  23. language/all-in-one-event-calendar-da.po +3020 -0
  24. language/all-in-one-event-calendar-de.mo +0 -0
  25. language/all-in-one-event-calendar-de.po +3015 -0
  26. language/all-in-one-event-calendar-de_DE.mo +0 -0
  27. language/all-in-one-event-calendar-de_DE.po +132 -132
  28. language/all-in-one-event-calendar-el.mo +0 -0
  29. language/all-in-one-event-calendar-el.po +2 -2
  30. language/all-in-one-event-calendar-en-au.mo +0 -0
  31. language/all-in-one-event-calendar-en-au.po +3020 -0
  32. language/all-in-one-event-calendar-en-gb.mo +0 -0
  33. language/all-in-one-event-calendar-en-gb.po +3020 -0
  34. language/all-in-one-event-calendar-es.mo +0 -0
  35. language/all-in-one-event-calendar-es.po +3020 -0
  36. language/all-in-one-event-calendar-es_ES.mo +0 -0
  37. language/all-in-one-event-calendar-es_ES.po +64 -64
  38. language/all-in-one-event-calendar-et.mo +0 -0
  39. language/all-in-one-event-calendar-et.po +2998 -0
  40. language/all-in-one-event-calendar-fi.mo +0 -0
  41. language/all-in-one-event-calendar-fi.po +7 -7
  42. language/all-in-one-event-calendar-fr.mo +0 -0
  43. language/all-in-one-event-calendar-fr.po +3015 -0
  44. language/all-in-one-event-calendar-gl_ES.mo +0 -0
  45. language/all-in-one-event-calendar-gl_ES.po +2684 -0
all-in-one-event-calendar.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
6
  * Author: Time.ly Network Inc.
7
  * Author URI: http://time.ly/
8
- * Version: 2.3.8
9
  * Text Domain: all-in-one-event-calendar
10
  * Domain Path: /language
11
  */
5
  * Description: A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
6
  * Author: Time.ly Network Inc.
7
  * Author URI: http://time.ly/
8
+ * Version: 2.3.9
9
  * Text Domain: all-in-one-event-calendar
10
  * Domain Path: /language
11
  */
app/config/constants.php CHANGED
@@ -50,7 +50,7 @@ function ai1ec_initiate_constants( $ai1ec_base_dir, $ai1ec_base_url ) {
50
  // = Plugin Version =
51
  // ==================
52
  if ( ! defined( 'AI1EC_VERSION' ) ) {
53
- define( 'AI1EC_VERSION', '2.3.8' );
54
  }
55
 
56
  // ================
50
  // = Plugin Version =
51
  // ==================
52
  if ( ! defined( 'AI1EC_VERSION' ) ) {
53
+ define( 'AI1EC_VERSION', '2.3.9' );
54
  }
55
 
56
  // ================
app/controller/front.php CHANGED
@@ -536,7 +536,7 @@ class Ai1ec_Front_Controller {
536
  $dispatcher->register_action(
537
  'post_row_actions',
538
  array( 'model.event.parent', 'post_row_actions' ),
539
- 10,
540
  2
541
  );
542
  // Category colors
@@ -719,7 +719,7 @@ class Ai1ec_Front_Controller {
719
  $dispatcher->register_filter(
720
  'post_row_actions',
721
  array( 'clone.renderer-helper', 'ai1ec_duplicate_post_make_duplicate_link_row' ),
722
- 10,
723
  2
724
  );
725
  $dispatcher->register_action(
536
  $dispatcher->register_action(
537
  'post_row_actions',
538
  array( 'model.event.parent', 'post_row_actions' ),
539
+ 100,
540
  2
541
  );
542
  // Category colors
719
  $dispatcher->register_filter(
720
  'post_row_actions',
721
  array( 'clone.renderer-helper', 'ai1ec_duplicate_post_make_duplicate_link_row' ),
722
+ 100,
723
  2
724
  );
725
  $dispatcher->register_action(
app/controller/javascript-widget.php CHANGED
@@ -13,6 +13,7 @@ class Ai1ec_Controller_Javascript_Widget extends Ai1ec_Base {
13
 
14
  const WIDGET_PARAMETER = 'ai1ec_js_widget';
15
  const LEGACY_WIDGET_PARAMETER = 'ai1ec_super_widget';
 
16
 
17
  protected $_widgets = array();
18
 
@@ -82,7 +83,11 @@ class Ai1ec_Controller_Javascript_Widget extends Ai1ec_Base {
82
  } else {
83
  if (
84
  ! $this->_registry->get( 'model.settings' )->get( 'cache_dynamic_js' ) ||
85
- '1' != $this->_registry->get( 'model.option' )->get( 'jswidgetupdated' )
 
 
 
 
86
  ) {
87
  $this->render_javascript();
88
  } else {
@@ -195,7 +200,13 @@ JS;
195
 
196
  if (
197
  $this->_registry->get( 'model.settings' )->get( 'cache_dynamic_js' ) &&
198
- '0' === $this->_registry->get( 'model.option' )->get( 'jswidgetupdated' )
 
 
 
 
 
 
199
  ) {
200
  try {
201
  $js_path = AI1EC_ADMIN_THEME_JS_PATH . DIRECTORY_SEPARATOR;
13
 
14
  const WIDGET_PARAMETER = 'ai1ec_js_widget';
15
  const LEGACY_WIDGET_PARAMETER = 'ai1ec_super_widget';
16
+ const WIDGET_JS_CACHE_FILE = '/public/js_cache/ai1ec_js_widget.js';
17
 
18
  protected $_widgets = array();
19
 
83
  } else {
84
  if (
85
  ! $this->_registry->get( 'model.settings' )->get( 'cache_dynamic_js' ) ||
86
+ '1' != $this->_registry->get( 'model.option' )->get( 'jswidgetupdated' ) ||
87
+ ! $this->_registry->get( 'filesystem.checker' )->check_file_exists(
88
+ AI1EC_PATH . self::WIDGET_JS_CACHE_FILE,
89
+ true
90
+ )
91
  ) {
92
  $this->render_javascript();
93
  } else {
200
 
201
  if (
202
  $this->_registry->get( 'model.settings' )->get( 'cache_dynamic_js' ) &&
203
+ (
204
+ '0' === $this->_registry->get( 'model.option' )->get( 'jswidgetupdated' ) ||
205
+ ! $this->_registry->get( 'filesystem.checker' )->check_file_exists(
206
+ AI1EC_PATH . self::WIDGET_JS_CACHE_FILE,
207
+ true
208
+ )
209
+ )
210
  ) {
211
  try {
212
  $js_path = AI1EC_ADMIN_THEME_JS_PATH . DIRECTORY_SEPARATOR;
app/controller/javascript.php CHANGED
@@ -59,10 +59,14 @@ class Ai1ec_Javascript_Controller {
59
  const SETTINGS_PAGE = 'admin_settings.js';
60
 
61
  //widget creator page
62
- CONST WIDGET_CREATOR = 'widget-creator.js';
63
 
64
  //ticketing page
65
- CONST TICKETING = 'ticketing.js';
 
 
 
 
66
  /**
67
  * @var Ai1ec_Registry_Object
68
  */
@@ -181,7 +185,11 @@ class Ai1ec_Javascript_Controller {
181
  if (
182
  $js_cache &&
183
  $page_to_load === self::CALENDAR_PAGE_JS &&
184
- '1' === $scripts_updated
 
 
 
 
185
  ) {
186
  Ai1ec_Http_Response_Helper::stop( 0 );
187
  return;
@@ -277,7 +285,13 @@ class Ai1ec_Javascript_Controller {
277
  if (
278
  $js_cache &&
279
  $page_to_load === self::CALENDAR_PAGE_JS &&
280
- '0' === $scripts_updated
 
 
 
 
 
 
281
  ) {
282
  $js_saved = false;
283
  try {
@@ -548,6 +562,8 @@ class Ai1ec_Javascript_Controller {
548
  'load_views_error' => Ai1ec_I18n::__(
549
  'Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%'
550
  ),
 
 
551
  'cookie_path' => $this->_registry->get(
552
  'cookie.utility'
553
  )->get_path_for_cookie(),
@@ -679,7 +695,10 @@ JSC;
679
  $load_backend_script = self::TRUE_PARAM;
680
  }
681
  $is_calendar_page = false;
682
- if( true === is_page( $this->_settings->get( 'calendar_page_id' ) ) ) {
 
 
 
683
  $is_calendar_page = self::TRUE_PARAM;
684
  }
685
 
@@ -694,11 +713,14 @@ JSC;
694
  ),
695
  trailingslashit( ai1ec_get_site_url() )
696
  );
697
-
698
  if (
699
  $this->_settings->get( 'cache_dynamic_js' ) &&
700
  $is_calendar_page &&
701
- '1' === $this->_registry->get( 'model.option' )->get( 'calendarjsupdated' )
 
 
 
 
702
  ) {
703
  $url = plugin_dir_url( 'all-in-one-event-calendar/public/js_cache/.' ) . $page;
704
  }
59
  const SETTINGS_PAGE = 'admin_settings.js';
60
 
61
  //widget creator page
62
+ const WIDGET_CREATOR = 'widget-creator.js';
63
 
64
  //ticketing page
65
+ const TICKETING = 'ticketing.js';
66
+
67
+ //cache file
68
+ const CALENDAR_JS_CACHE_FILE = '/public/js_cache/calendar.js';
69
+
70
  /**
71
  * @var Ai1ec_Registry_Object
72
  */
185
  if (
186
  $js_cache &&
187
  $page_to_load === self::CALENDAR_PAGE_JS &&
188
+ '1' === $scripts_updated &&
189
+ $this->_registry->get( 'filesystem.checker' )->check_file_exists(
190
+ AI1EC_PATH . self::CALENDAR_JS_CACHE_FILE,
191
+ true
192
+ )
193
  ) {
194
  Ai1ec_Http_Response_Helper::stop( 0 );
195
  return;
285
  if (
286
  $js_cache &&
287
  $page_to_load === self::CALENDAR_PAGE_JS &&
288
+ (
289
+ '0' === $scripts_updated ||
290
+ ! $this->_registry->get( 'filesystem.checker' )->check_file_exists(
291
+ AI1EC_PATH . self::CALENDAR_JS_CACHE_FILE,
292
+ true
293
+ )
294
+ )
295
  ) {
296
  $js_saved = false;
297
  try {
562
  'load_views_error' => Ai1ec_I18n::__(
563
  'Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%'
564
  ),
565
+ 'load_views_error_popup_title' => Ai1ec_I18n::__( 'Response text received from server' ),
566
+ 'load_views_error_link_popup' => Ai1ec_I18n::__( 'Click here for technical details' ),
567
  'cookie_path' => $this->_registry->get(
568
  'cookie.utility'
569
  )->get_path_for_cookie(),
695
  $load_backend_script = self::TRUE_PARAM;
696
  }
697
  $is_calendar_page = false;
698
+ if(
699
+ true === is_page( $this->_settings->get( 'calendar_page_id' ) ) ||
700
+ self::CALENDAR_PAGE_JS === $page
701
+ ) {
702
  $is_calendar_page = self::TRUE_PARAM;
703
  }
704
 
713
  ),
714
  trailingslashit( ai1ec_get_site_url() )
715
  );
 
716
  if (
717
  $this->_settings->get( 'cache_dynamic_js' ) &&
718
  $is_calendar_page &&
719
+ '1' === $this->_registry->get( 'model.option' )->get( 'calendarjsupdated' ) &&
720
+ $this->_registry->get( 'filesystem.checker' )->check_file_exists(
721
+ AI1EC_PATH . self::CALENDAR_JS_CACHE_FILE,
722
+ true
723
+ )
724
  ) {
725
  $url = plugin_dir_url( 'all-in-one-event-calendar/public/js_cache/.' ) . $page;
726
  }
app/model/search.php CHANGED
@@ -324,17 +324,17 @@ class Ai1ec_Event_Search extends Ai1ec_Base {
324
  'FROM ' . $this->_dbi->get_table_name( 'ai1ec_events' ) . ' e ' .
325
  'INNER JOIN ' . $this->_dbi->get_table_name( 'posts' ) . ' p ON e.post_id = p.ID ' .
326
  $wpml_join_particle .
327
- 'INNER JOIN ' . $this->_dbi->get_table_name( 'ai1ec_event_instances' ) . ' i ON e.post_id = i.post_id ' .
328
  $filter['filter_join'] .
329
- "WHERE post_type = '" . AI1EC_POST_TYPE . "' " .
330
- 'AND ' . $filter_date_clause .
331
  $wpml_where_particle .
332
  $filter['filter_where'] .
333
  $post_status_where .
334
- ( $unique ? 'GROUP BY e.post_id ' : '' ) .
335
  // Reverse order when viewing negative pages, to get correct set of
336
  // records. Then reverse results later to order them properly.
337
- 'ORDER BY i.start ' . $order_direction .
338
  ', post_title ' . $order_direction .
339
  ' LIMIT ' . $first_record . ', ' . $upper_boundary,
340
  $args
@@ -713,7 +713,7 @@ class Ai1ec_Event_Search extends Ai1ec_Base {
713
  */
714
  public function get_distinct_types_operator() {
715
  static $operators = array( 'AND' => 1, 'OR' => 2 );
716
- $default = key( $operators );
717
  $where_operator = strtoupper( trim( (string)apply_filters(
718
  'ai1ec_filter_distinct_types_logic',
719
  $default
324
  'FROM ' . $this->_dbi->get_table_name( 'ai1ec_events' ) . ' e ' .
325
  'INNER JOIN ' . $this->_dbi->get_table_name( 'posts' ) . ' p ON e.post_id = p.ID ' .
326
  $wpml_join_particle .
327
+ ' INNER JOIN ' . $this->_dbi->get_table_name( 'ai1ec_event_instances' ) . ' i ON e.post_id = i.post_id ' .
328
  $filter['filter_join'] .
329
+ " WHERE post_type = '" . AI1EC_POST_TYPE . "' " .
330
+ ' AND ' . $filter_date_clause .
331
  $wpml_where_particle .
332
  $filter['filter_where'] .
333
  $post_status_where .
334
+ ( $unique ? ' GROUP BY e.post_id' : '' ) .
335
  // Reverse order when viewing negative pages, to get correct set of
336
  // records. Then reverse results later to order them properly.
337
+ ' ORDER BY i.start ' . $order_direction .
338
  ', post_title ' . $order_direction .
339
  ' LIMIT ' . $first_record . ', ' . $upper_boundary,
340
  $args
713
  */
714
  public function get_distinct_types_operator() {
715
  static $operators = array( 'AND' => 1, 'OR' => 2 );
716
+ $default = 'AND';
717
  $where_operator = strtoupper( trim( (string)apply_filters(
718
  'ai1ec_filter_distinct_types_logic',
719
  $default
app/view/admin/add-new-event.php CHANGED
@@ -284,6 +284,20 @@ class Ai1ec_View_Add_New_Event extends Ai1ec_Base {
284
  // ===================================
285
  // = Display event ticketing options =
286
  // ===================================
 
 
 
 
 
 
 
 
 
 
 
 
 
 
287
  if ( AI1EC_API && AI1EC_API_TICKETING ) {
288
  $api = $this->_registry->get( 'model.api' );
289
  $ticketing = $api->is_signed();
@@ -292,14 +306,8 @@ class Ai1ec_View_Add_New_Event extends Ai1ec_Base {
292
  $ticket_event_imported = false;
293
 
294
  if ( $event ) {
295
-
296
  $ticket_event_imported = $api->is_ticket_event_imported( $event->get( 'post_id' ) );
297
  if ( $ticketing || $ticket_event_imported ) {
298
- $cost_type = get_post_meta(
299
- $event->get( 'post_id' ),
300
- '_ai1ec_cost_type',
301
- true
302
- );
303
  if ( 'tickets' === $cost_type ) {
304
  $response = json_decode( $api->get_ticket_types( $event->get( 'post_id' ) ) );
305
  if ( isset( $response->data ) ) {
284
  // ===================================
285
  // = Display event ticketing options =
286
  // ===================================
287
+ if ( $event ) {
288
+ $cost_type = get_post_meta(
289
+ $event->get( 'post_id' ),
290
+ '_ai1ec_cost_type',
291
+ true
292
+ );
293
+ if ( ! $cost_type ) {
294
+ if ( $ticket_url || $cost ) {
295
+ $cost_type = 'external';
296
+ } else {
297
+ $cost_type = 'free';
298
+ }
299
+ }
300
+ }
301
  if ( AI1EC_API && AI1EC_API_TICKETING ) {
302
  $api = $this->_registry->get( 'model.api' );
303
  $ticketing = $api->is_signed();
306
  $ticket_event_imported = false;
307
 
308
  if ( $event ) {
 
309
  $ticket_event_imported = $api->is_ticket_event_imported( $event->get( 'post_id' ) );
310
  if ( $ticketing || $ticket_event_imported ) {
 
 
 
 
 
311
  if ( 'tickets' === $cost_type ) {
312
  $response = json_decode( $api->get_ticket_types( $event->get( 'post_id' ) ) );
313
  if ( isset( $response->data ) ) {
app/view/calendar/shortcode.php CHANGED
@@ -113,15 +113,12 @@ class Ai1ec_View_Calendar_Shortcode extends Ai1ec_Base {
113
  }
114
  }
115
  }
116
- $request_type = $this->_registry->get(
117
- 'model.settings'
118
- )->get( 'ai1ec_use_frontend_rendering' ) ? 'json' : 'jsonp';
119
  $query = array(
120
  'ai1ec_cat_ids' => implode( ',', $_events_categories ),
121
  'ai1ec_tag_ids' => implode( ',', $_events_tags ),
122
  'ai1ec_post_ids' => implode( ',', $post_ids ),
123
  'action' => $view,
124
- 'request_type' => $request_type,
125
  'events_limit' => isset( $atts['events_limit'] )
126
  // definition above casts values as array, so we take first element,
127
  // as there won't be others
113
  }
114
  }
115
  }
 
 
 
116
  $query = array(
117
  'ai1ec_cat_ids' => implode( ',', $_events_categories ),
118
  'ai1ec_tag_ids' => implode( ',', $_events_tags ),
119
  'ai1ec_post_ids' => implode( ',', $post_ids ),
120
  'action' => $view,
121
+ 'request_type' => 'jsonp',
122
  'events_limit' => isset( $atts['events_limit'] )
123
  // definition above casts values as array, so we take first element,
124
  // as there won't be others
app/view/event/single.php CHANGED
@@ -97,7 +97,7 @@ class Ai1ec_View_Event_Single extends Ai1ec_Base {
97
  'exclude' => $time->get_exclude_html( $event, $rrule ),
98
  'categories' => $taxonomy->get_categories_html( $event ),
99
  'tags' => $taxonomy->get_tags_html( $event ),
100
- 'location' => $venues_html,
101
  'filter_groups' => $filter_groups_html,
102
  'map' => $location->get_map_view( $event ),
103
  'contact' => $ticket->get_contact_html( $event ),
97
  'exclude' => $time->get_exclude_html( $event, $rrule ),
98
  'categories' => $taxonomy->get_categories_html( $event ),
99
  'tags' => $taxonomy->get_tags_html( $event ),
100
+ 'location' => html_entity_decode( $venues_html ),
101
  'filter_groups' => $filter_groups_html,
102
  'map' => $location->get_map_view( $event ),
103
  'contact' => $ticket->get_contact_html( $event ),
language/all-in-one-event-calendar-ar.mo CHANGED
Binary file
language/all-in-one-event-calendar-ar.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:46:10+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -2401,7 +2401,7 @@ msgstr ""
2401
 
2402
  #: app/view/admin/add-new-event.php:424
2403
  msgid "Remove banner image"
2404
- msgstr ""
2405
 
2406
  #: app/view/admin/add-ons.php:68
2407
  msgid "Add-ons for All In One Event Calendar"
@@ -2965,7 +2965,7 @@ msgstr ""
2965
 
2966
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2967
  msgid "Preview:"
2968
- msgstr ""
2969
 
2970
  #: app/controller/javascript.php:474
2971
  msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
@@ -2998,12 +2998,12 @@ msgstr ""
2998
 
2999
  #: app/controller/front.php:343
3000
  msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3001
- msgstr ""
3002
 
3003
  #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3004
  #: app/view/admin/theme-switching.php:55
3005
  msgid "Calendar Themes"
3006
- msgstr ""
3007
 
3008
  #: app/controller/front.php:990
3009
  msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-03 01:44:46+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
2401
 
2402
  #: app/view/admin/add-new-event.php:424
2403
  msgid "Remove banner image"
2404
+ msgstr "إزالة صورة البنر"
2405
 
2406
  #: app/view/admin/add-ons.php:68
2407
  msgid "Add-ons for All In One Event Calendar"
2965
 
2966
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2967
  msgid "Preview:"
2968
+ msgstr "معاينة :"
2969
 
2970
  #: app/controller/javascript.php:474
2971
  msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2998
 
2999
  #: app/controller/front.php:343
3000
  msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3001
+ msgstr "موضوع التقويم الخاص بك نشيط لا يمكن التهيئة بشكل صحيح. تم تفعيل السمة الافتراضية بدلا من ذلك. يرجى زيارة %s الصورة ومحاولة إعادة تنشيط الموضوع الخاص بك يدويا."
3002
 
3003
  #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3004
  #: app/view/admin/theme-switching.php:55
3005
  msgid "Calendar Themes"
3006
+ msgstr "قوالب التقويم"
3007
 
3008
  #: app/controller/front.php:990
3009
  msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
language/all-in-one-event-calendar-bg.mo ADDED
Binary file
language/all-in-one-event-calendar-bg.po ADDED
@@ -0,0 +1,3007 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of 2.3 in Bulgarian
2
+ # This file is distributed under the same license as the 2.3 package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-01-21 20:46:30+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
+ "Project-Id-Version: 2.3\n"
12
+
13
+ #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
+ #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
+ msgid "Event background"
16
+ msgstr "Фон на събитието"
17
+
18
+ #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
+ #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
+ msgid "Event time background"
21
+ msgstr "Фон на времето на събитието"
22
+
23
+ #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
+ #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
+ msgid "Event text"
26
+ msgstr "Текст на събитието"
27
+
28
+ #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
+ #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
+ msgid "Month view date background"
31
+ msgstr "Фон на датата в месечен изглед"
32
+
33
+ #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
+ #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
+ msgid "Week/day view now marker"
36
+ msgstr "Маркер на седмичен/дневен изглед сега"
37
+
38
+ #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
+ #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
+ msgid "Date label accent color"
41
+ msgstr "Акцентиращ цвят на етикета на датата"
42
+
43
+ #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
+ #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
+ msgid "Date label background"
46
+ msgstr "Фон на етикета на датата"
47
+
48
+ #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
+ #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
+ msgid "Date background"
51
+ msgstr "Фон на датата"
52
+
53
+ #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
+ #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
+ msgid "Today background"
56
+ msgstr "Фон на Днешния ден"
57
+
58
+ #. Plugin Name of the plugin/theme
59
+ msgid "All-in-One Event Calendar by Time.ly"
60
+ msgstr "All-in-One Event Calendar by Time.ly"
61
+
62
+ #. Description of the plugin/theme
63
+ msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
+ msgstr "Календарна система с изгледи по месец, седмица, ден, график, уиджет Предстоящи събития, цветово-кодирани категории, повторение и импорт/експорт на .ics абонаменти (feeds)."
65
+
66
+ #. Author of the plugin/theme
67
+ msgid "Time.ly Network Inc."
68
+ msgstr "Time.ly Network Inc."
69
+
70
+ #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
+ #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
+ msgid "List item background (active/hover)"
73
+ msgstr ""
74
+
75
+ #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
+ #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
+ msgid "Input field placeholder text"
78
+ msgstr ""
79
+
80
+ #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
+ #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
+ msgid "Today color"
83
+ msgstr ""
84
+
85
+ #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
+ #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
+ msgid "All-day badge color"
88
+ msgstr ""
89
+
90
+ #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
+ #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
+ msgid "Event image shadow"
93
+ msgstr "Сянка на изображението на събитието"
94
+
95
+ #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
+ #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
+ msgid "Event default color"
98
+ msgstr "Стандартен цвят на събитието"
99
+
100
+ #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
+ #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
+ msgid "Event default color (hover)"
103
+ msgstr "Стандартен цвят на събитието (мини отгоре)"
104
+
105
+ #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
+ #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
+ msgid "All-day/multi-day event stub text"
108
+ msgstr "Текст на тестето от целодневни/многодневни събития"
109
+
110
+ #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
+ #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
+ msgid "All-day/multi-day event stub text shadow"
113
+ msgstr "Сянка на тестето от целодневни/многодневни събития"
114
+
115
+ #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
+ #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
+ msgid "Event border"
118
+ msgstr "Рамка на събитието"
119
+
120
+ #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
+ #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
+ msgid "Button text"
123
+ msgstr "Текст на бутона"
124
+
125
+ #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
+ #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
+ msgid "Input field text"
128
+ msgstr "Въведи текст на полето"
129
+
130
+ #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
+ #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
+ msgid "Input field background"
133
+ msgstr "Въведи фон на полето"
134
+
135
+ #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
+ #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
+ msgid "Input field border"
138
+ msgstr "Въведи рамка на полето"
139
+
140
+ #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
+ #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
+ msgid "Input field border (focus)"
143
+ msgstr "Въведи рамка на полето (фокус)"
144
+
145
+ #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
+ #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
+ msgid "Input field background (disabled)"
148
+ msgstr "Въведи фон на полето (недостъпно)"
149
+
150
+ #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
+ #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
+ msgid "Field label"
153
+ msgstr "Етикет на полето"
154
+
155
+ #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
+ #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
+ msgid "Dropdown list background"
158
+ msgstr "Фон на падащия списък"
159
+
160
+ #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
+ #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
+ msgid "Dropdown list border"
163
+ msgstr "Рамка на падащия списък"
164
+
165
+ #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
+ #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
+ msgid "List item text"
168
+ msgstr ""
169
+
170
+ #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
+ #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
+ msgid "List item text (active/hover)"
173
+ msgstr ""
174
+
175
+ #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
+ msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
+ msgstr "Активирана е нова тема. <a href=\"%s\">Посетете сайта</a>"
178
+
179
+ #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
+ msgid "Theme deleted."
181
+ msgstr "Темата е изтрита."
182
+
183
+ #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
+ msgid "Manage Themes"
185
+ msgstr "Управление на теми"
186
+
187
+ #: public/admin/themes-install.php:40
188
+ msgctxt "theme"
189
+ msgid "Install Themes"
190
+ msgstr "Инсталация на Теми"
191
+
192
+ #: public/admin/themes-updated.php:5
193
+ msgid "Update Calendar Themes"
194
+ msgstr "Опресни Календарните теми"
195
+
196
+ #: public/admin/themes-updated.php:15
197
+ msgid "All-in-One Event Calendar Settings »"
198
+ msgstr "All-in-One Event Calendar Настройки»"
199
+
200
+ #: public/admin/themes.php:18
201
+ msgid "Current Calendar Theme"
202
+ msgstr "Настояща календарна тема"
203
+
204
+ #: public/admin/themes.php:21
205
+ msgid "Current theme preview"
206
+ msgstr "Преглед на настоящата тема"
207
+
208
+ #: public/admin/themes.php:47
209
+ msgid "Available Calendar Themes"
210
+ msgstr "Налични календарни теми"
211
+
212
+ #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
+ #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
+ msgid "Body background"
215
+ msgstr "Фон на тялото"
216
+
217
+ #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
+ #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
+ msgid "Text color"
220
+ msgstr "Цвят на текста"
221
+
222
+ #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
+ #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
+ msgid "Text emboss"
225
+ msgstr "Релефен текст"
226
+
227
+ #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
+ #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
+ msgid "Link"
230
+ msgstr "Линк"
231
+
232
+ #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
+ #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
+ msgid "Link (hover)"
235
+ msgstr "Линк (мини отгоре)"
236
+
237
+ #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
+ #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
+ msgid "Base font"
240
+ msgstr "Базов шрифт"
241
+
242
+ #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
+ #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
+ msgid "Base font size"
245
+ msgstr "Размер на шрифта база"
246
+
247
+ #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
+ #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
+ msgid "Table background"
250
+ msgstr "Фон на таблицата"
251
+
252
+ #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
+ #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
+ msgid "Table header background"
255
+ msgstr "Фон на хедър на таблицата"
256
+
257
+ #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
+ #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
+ msgid "Table header text"
260
+ msgstr "Текст на хедър на таблицата"
261
+
262
+ #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
+ #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
+ msgid "Primary brand color"
265
+ msgstr "Основна марка цвят"
266
+
267
+ #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
+ #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
+ msgid "Button background"
270
+ msgstr "Фон на бутона"
271
+
272
+ #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
+ #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
+ msgid "Button border"
275
+ msgstr "Рамка на категорията"
276
+
277
+ #: public/admin/feed_row.php:104
278
+ msgid "Refreshing&#8230;"
279
+ msgstr "Обновяване"
280
+
281
+ #: public/admin/feed_row.php:106
282
+ msgid "Refresh"
283
+ msgstr "Опресни"
284
+
285
+ #: public/admin/feed_row.php:119
286
+ msgid "Removing&#8230;"
287
+ msgstr ""
288
+
289
+ #: public/admin/feed_row.php:121
290
+ msgid "Remove"
291
+ msgstr "Премахни"
292
+
293
+ #: public/admin/import.php:6
294
+ msgid "Successfully imported events:"
295
+ msgstr "Успешно импортнати събития:"
296
+
297
+ #: public/admin/plugins/ics/display_feeds.php:2
298
+ msgid ""
299
+ "Configure which other calendars your own calendar subscribes to.\n"
300
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
302
+ " imported periodically."
303
+ msgstr ""
304
+ "Конфигурирайте за кои други календари е абониран твоя календар.\n"
305
+ " Можете да добавите всеки календар, които предоставя абонамент чрез iCalendar (.ics).\n"
306
+ " Въведете линка на абонамента по-долу и събитията на тези абонаменти ще бъдат импортвани \n"
307
+ " периодично.."
308
+
309
+ #: public/admin/plugins/ics/display_feeds.php:14
310
+ msgid "Check for new events"
311
+ msgstr "Натисни за нови събития"
312
+
313
+ #: public/admin/plugins/ics/display_feeds.php:45
314
+ msgid "Allow comments on imported events"
315
+ msgstr "Разрешени са коментари на импортнати събития"
316
+
317
+ #: public/admin/plugins/ics/display_feeds.php:52
318
+ msgid "Show map on imported events"
319
+ msgstr "Покажи карта на импортнантите събития"
320
+
321
+ #: public/admin/plugins/ics/display_feeds.php:59
322
+ msgid "Import any tags/categories provided by feed, in addition those selected above"
323
+ msgstr "Импортване на всички етикети/категории предоставени от абонамента, в допълнение на избраните горе"
324
+
325
+ #: public/admin/plugins/ics/display_feeds.php:93
326
+ msgid "Add new subscription"
327
+ msgstr "Добави нов абонамент"
328
+
329
+ #: public/admin/plugins/ics/display_feeds.php:96
330
+ msgid "Update subscription"
331
+ msgstr ""
332
+
333
+ #: public/admin/row_custom.php:3
334
+ msgid "Custom dates:"
335
+ msgstr ""
336
+
337
+ #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
+ #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
+ #: public/admin/row_yearly.php:3
340
+ msgid "Every"
341
+ msgstr "Всеки/всяка"
342
+
343
+ #: public/admin/row_monthly.php:16
344
+ msgid "On day of the month"
345
+ msgstr "На ден от месеца"
346
+
347
+ #: public/admin/row_monthly.php:23
348
+ msgid "On day of the week"
349
+ msgstr "На ден от седмицата"
350
+
351
+ #: public/admin/row_weekly.php:12
352
+ msgctxt "Recurrence editor - weekly tab"
353
+ msgid "On"
354
+ msgstr "В"
355
+
356
+ #: public/admin/row_yearly.php:12
357
+ msgctxt "Recurrence editor - yearly tab"
358
+ msgid "In"
359
+ msgstr "В "
360
+
361
+ #: public/admin/settings.php:19
362
+ msgid "Update Settings"
363
+ msgstr "Опресни настройките"
364
+
365
+ #: public/admin/themes-install.php:4
366
+ msgid "The active theme is broken. Reverting to the default theme."
367
+ msgstr "Тази активна тема е повредена. Връщане към стандартната тема."
368
+
369
+ #: public/admin/themes-install.php:13
370
+ msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
+ msgstr ""
372
+
373
+ #: public/admin/calendar_tasks.php:24
374
+ msgid "Manage Events"
375
+ msgstr "Управление на събитията"
376
+
377
+ #: public/admin/calendar_tasks.php:27
378
+ msgid "View and edit all your events."
379
+ msgstr "Показване и редактиране на всичките събития."
380
+
381
+ #: public/admin/calendar_tasks.php:39
382
+ msgid "Manage Event Categories"
383
+ msgstr "Управление на категориите на събитието"
384
+
385
+ #: public/admin/calendar_tasks.php:42
386
+ msgid "Organize and color-code your events."
387
+ msgstr "Организиране и цветово кодиране на събитията."
388
+
389
+ #: public/admin/calendar_tasks.php:50
390
+ msgid "Choose Your Theme"
391
+ msgstr "Избор на тема"
392
+
393
+ #: public/admin/calendar_tasks.php:53
394
+ msgid "Change the look and feel."
395
+ msgstr "Промяна на външния вид и усещането."
396
+
397
+ #: public/admin/calendar_tasks.php:63
398
+ msgid "Manage Calendar Feeds"
399
+ msgstr "Управление на абонаменти на календара"
400
+
401
+ #: public/admin/calendar_tasks.php:66
402
+ msgid "Subscribe to other calendars."
403
+ msgstr "Абониране за други календари"
404
+
405
+ #: public/admin/calendar_tasks.php:74
406
+ msgid "Edit Calendar Settings"
407
+ msgstr "Редактирай настройките на календара"
408
+
409
+ #: public/admin/calendar_tasks.php:77
410
+ msgid "Make this calendar your own."
411
+ msgstr "Направете този календар Ваш."
412
+
413
+ #: public/admin/cron_freq.php:3
414
+ msgid "Hourly"
415
+ msgstr "На час"
416
+
417
+ #: public/admin/cron_freq.php:6
418
+ msgid "Twice Daily"
419
+ msgstr "Два пъти дневно"
420
+
421
+ #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
+ msgid "iCalendar/.ics Feed URL:"
423
+ msgstr "iCalendar/.ics Feed URL:"
424
+
425
+ #: public/admin/feed_row.php:24
426
+ msgid "Event categories:"
427
+ msgstr "Категории на събитията"
428
+
429
+ #: public/admin/feed_row.php:31
430
+ msgid "Tag with"
431
+ msgstr "Постави етикет"
432
+
433
+ #: public/admin/feed_row.php:40
434
+ msgid "Allow comments"
435
+ msgstr "Позволи коментари"
436
+
437
+ #: public/admin/feed_row.php:51
438
+ msgid "Show map"
439
+ msgstr "Покажи карта"
440
+
441
+ #: public/admin/feed_row.php:63
442
+ msgid "Keep original events categories and tags"
443
+ msgstr "Запази оригиналните категории и етикети на събитията"
444
+
445
+ #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
+ msgid "On refresh, preserve previously imported events that are missing from the feed"
447
+ msgstr ""
448
+
449
+ #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
+ msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
+ msgstr ""
452
+
453
+ #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
+ msgid "Assign default time zone to events in UTC"
455
+ msgstr ""
456
+
457
+ #: public/admin/box_support.php:19
458
+ msgid "Get Add-ons"
459
+ msgstr "Вземи Добавка"
460
+
461
+ #: public/admin/box_support.php:27
462
+ msgid "Support"
463
+ msgstr "Поддръжка"
464
+
465
+ #: public/admin/box_support.php:35
466
+ msgid "Timely Events"
467
+ msgstr "Timely Събития"
468
+
469
+ #: public/admin/box_support.php:43
470
+ msgid "Timely News"
471
+ msgstr "Новини от Timely "
472
+
473
+ #: public/admin/box_support.php:47
474
+ msgid "view all news"
475
+ msgstr "виж всички новини"
476
+
477
+ #: public/admin/box_support.php:95
478
+ msgid "Follow @_Timely"
479
+ msgstr "Следвай @_Timely"
480
+
481
+ #: public/admin/box_time_and_date.php:6
482
+ msgid "Event date and time"
483
+ msgstr "Дата и час на събитието"
484
+
485
+ #: public/admin/box_time_and_date.php:26
486
+ msgid "All-day event"
487
+ msgstr "Целодневно събитие"
488
+
489
+ #: public/admin/box_time_and_date.php:35
490
+ msgid "No end time"
491
+ msgstr "Няма краен час"
492
+
493
+ #: public/admin/box_time_and_date.php:42
494
+ msgid "Start date / time"
495
+ msgstr "Начална дата/час"
496
+
497
+ #: public/admin/box_time_and_date.php:59
498
+ msgid "End date / time"
499
+ msgstr "Крайна дата/час"
500
+
501
+ #: public/admin/box_time_and_date.php:76
502
+ msgid "Time zone"
503
+ msgstr "Времева зона"
504
+
505
+ #: public/admin/box_time_and_date.php:81
506
+ msgid "Choose your time zone"
507
+ msgstr "Избери времева зона"
508
+
509
+ #: public/admin/box_time_and_date.php:108
510
+ msgid "Repeat"
511
+ msgstr "Повтаря се"
512
+
513
+ #: public/admin/box_time_and_date.php:127
514
+ msgid "Exclude"
515
+ msgstr "като се изключи"
516
+
517
+ #: public/admin/box_time_and_date.php:136
518
+ msgid "Choose a rule for exclusion"
519
+ msgstr "Избери правило за изключения"
520
+
521
+ #: public/admin/calendar_tasks.php:3
522
+ msgid "Welcome"
523
+ msgstr "Добре дошли"
524
+
525
+ #: public/admin/calendar_tasks.php:4
526
+ msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
+ msgstr "при All-in-One Event Calendar на <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
+
529
+ #: public/admin/calendar_tasks.php:13
530
+ msgid "Post Your Event"
531
+ msgstr "Публикувай свое събитие"
532
+
533
+ #: public/admin/calendar_tasks.php:16
534
+ msgid "Add a new event to the calendar."
535
+ msgstr "Добави ново събитие към календара"
536
+
537
+ #: public/admin/box_eventbrite.php:60
538
+ msgid "Donation Based"
539
+ msgstr "На базата на дарение"
540
+
541
+ #: public/admin/box_eventbrite.php:68
542
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
543
+ msgstr "Цената на първия билет на това събитие ще бъде взета от полето Цена отгоре."
544
+
545
+ #: public/admin/box_eventbrite.php:75
546
+ msgid "Quantity"
547
+ msgstr "Количество"
548
+
549
+ #: public/admin/box_eventbrite.php:85
550
+ msgid "Include Fee in Price"
551
+ msgstr "Таксата е включена в цената "
552
+
553
+ #: public/admin/box_eventbrite.php:90
554
+ msgid "Add Service Fee on top of price"
555
+ msgstr "Добави такса за обслужване към цената"
556
+
557
+ #: public/admin/box_eventbrite.php:92
558
+ msgid "Include Service fee in price"
559
+ msgstr "Добави такса за обслужване към цената"
560
+
561
+ #: public/admin/box_eventbrite.php:98
562
+ msgid "Payment Options"
563
+ msgstr "Опции за плащане"
564
+
565
+ #: public/admin/box_eventbrite.php:105
566
+ msgid "Google Checkout"
567
+ msgstr "Google Checkout"
568
+
569
+ #: public/admin/box_eventbrite.php:107
570
+ msgid "Check"
571
+ msgstr "Чек"
572
+
573
+ #: public/admin/box_eventbrite.php:109
574
+ msgid "Cash"
575
+ msgstr "В брой"
576
+
577
+ #: public/admin/box_eventbrite.php:111
578
+ msgid "Send an Invoice"
579
+ msgstr "Изпрати фактура"
580
+
581
+ #: public/admin/box_profile_timezone.php:9
582
+ msgid "Your preferred timezone"
583
+ msgstr "Предпочитана часова зона"
584
+
585
+ #: public/admin/box_repeat.php:5
586
+ msgid "Select recurrence pattern:"
587
+ msgstr "Изберете схема на повторение:"
588
+
589
+ #: public/admin/box_repeat.php:36
590
+ msgid "Custom"
591
+ msgstr ""
592
+
593
+ #: public/admin/box_repeat.php:72
594
+ msgid "End"
595
+ msgstr "Приключва на"
596
+
597
+ #: public/admin/box_repeat.php:82
598
+ msgid "Ending after"
599
+ msgstr "Приключва след"
600
+
601
+ #: public/admin/box_repeat.php:109
602
+ #: public/admin/plugins/ics/display_feeds.php:90
603
+ msgid "Please wait&#8230;"
604
+ msgstr "Моля изчакайте"
605
+
606
+ #: public/admin/box_repeat.php:111
607
+ msgid "Apply"
608
+ msgstr "Приложи"
609
+
610
+ #: public/admin/box_repeat.php:116
611
+ #: public/admin/plugins/ics/display_feeds.php:84
612
+ msgid "Cancel"
613
+ msgstr "Отмени"
614
+
615
+ #: public/admin/box_support.php:4
616
+ msgid "Timely"
617
+ msgstr "Timely"
618
+
619
+ #: public/admin/box_support.php:11
620
+ msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
+ msgstr "Timely’s All-in-One Event Calendar е <br />нов революционен начин да намериш и споделиш събития."
622
+
623
+ #: public/admin/box_event_cost.php:228
624
+ msgid "Status:"
625
+ msgstr ""
626
+
627
+ #: public/admin/box_event_cost.php:235
628
+ msgid "Open"
629
+ msgstr ""
630
+
631
+ #: public/admin/box_event_cost.php:239
632
+ msgid "Closed"
633
+ msgstr ""
634
+
635
+ #: public/admin/box_event_cost.php:254
636
+ msgid "Add New Ticket Type"
637
+ msgstr ""
638
+
639
+ #: public/admin/box_event_cost.php:274
640
+ msgid "Tickets URL:"
641
+ msgstr ""
642
+
643
+ #: public/admin/box_event_location.php:6
644
+ msgid "Event location details"
645
+ msgstr "Подробности за местоположението на събитието"
646
+
647
+ #: public/admin/box_event_location.php:19
648
+ msgid "Venue name:"
649
+ msgstr "Име на местоположението:"
650
+
651
+ #: public/admin/box_event_location.php:31
652
+ msgid "Address:"
653
+ msgstr "Адрес:"
654
+
655
+ #: public/admin/box_event_location.php:45
656
+ msgid "Input Coordinates"
657
+ msgstr "Вкарайте GPS координати"
658
+
659
+ #: public/admin/box_event_location.php:57
660
+ msgid "Latitude:"
661
+ msgstr "Географска ширина:"
662
+
663
+ #: public/admin/box_event_location.php:69
664
+ msgid "Longitude:"
665
+ msgstr "Географска дължина:"
666
+
667
+ #: public/admin/box_event_location.php:85
668
+ msgid "Show Map"
669
+ msgstr ""
670
+
671
+ #: public/admin/box_eventbrite.php:1
672
+ msgid "Eventbrite Ticketing"
673
+ msgstr "Eventbrite Ticketing"
674
+
675
+ #: public/admin/box_eventbrite.php:7
676
+ msgid "Register this event with Eventbrite.com?"
677
+ msgstr "Искате ли да регистрирате това събитие с Eventbrite.com?"
678
+
679
+ #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
+ #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
+ #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
+ msgid "Yes"
683
+ msgstr "Да"
684
+
685
+ #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
+ #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
+ #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
+ msgid "No"
689
+ msgstr "Не"
690
+
691
+ #: public/admin/box_eventbrite.php:22
692
+ msgid "Set up your first ticket"
693
+ msgstr "Настройте първия си билет"
694
+
695
+ #: public/admin/box_eventbrite.php:24
696
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
+ msgstr "За да създадете многобройни билети за това събитие, попълнете този формуляр и следвайте линка към Eventbrite."
698
+
699
+ #: public/admin/box_eventbrite.php:42
700
+ msgid "Description"
701
+ msgstr "Описание"
702
+
703
+ #: public/admin/box_eventbrite.php:53
704
+ msgid "Type"
705
+ msgstr "Вид"
706
+
707
+ #: public/admin/box_eventbrite.php:58
708
+ msgid "Set Price"
709
+ msgstr "Зададена цена"
710
+
711
+ #: public/admin/box_event_contact.php:30
712
+ msgid "Phone:"
713
+ msgstr "Телефон:"
714
+
715
+ #: public/admin/box_event_contact.php:56
716
+ msgid "Website URL:"
717
+ msgstr ""
718
+
719
+ #: public/admin/box_event_cost.php:6
720
+ msgid "Event cost and Tickets"
721
+ msgstr "Цена на събитието и Билети"
722
+
723
+ #: public/admin/box_event_cost.php:20
724
+ msgid "Ticket options not available - event imported from external calendar."
725
+ msgstr ""
726
+
727
+ #: public/admin/box_event_cost.php:28
728
+ msgid "Free event"
729
+ msgstr "Безплатно събитие"
730
+
731
+ #: public/admin/box_event_cost.php:41
732
+ msgid "External Tickets URL"
733
+ msgstr ""
734
+
735
+ #: public/admin/box_event_cost.php:52
736
+ msgid "Ticketing allows you to sell tickets directly to the users."
737
+ msgstr ""
738
+
739
+ #: public/admin/box_event_cost.php:55
740
+ msgid "Sign Up for Timely Network"
741
+ msgstr ""
742
+
743
+ #: public/admin/box_event_cost.php:80
744
+ msgid "Remove Ticket Type"
745
+ msgstr ""
746
+
747
+ #: public/admin/box_event_cost.php:101
748
+ msgid "Ex.: Regular Ticket"
749
+ msgstr ""
750
+
751
+ #: public/admin/box_event_cost.php:105
752
+ msgid "Description:"
753
+ msgstr ""
754
+
755
+ #: public/admin/box_event_cost.php:111
756
+ msgid "(Optional)"
757
+ msgstr ""
758
+
759
+ #: public/admin/box_event_cost.php:115
760
+ msgid "Price:"
761
+ msgstr ""
762
+
763
+ #: public/admin/box_event_cost.php:124
764
+ msgid "USD"
765
+ msgstr ""
766
+
767
+ #: public/admin/box_event_cost.php:128
768
+ msgid "Limits:"
769
+ msgstr ""
770
+
771
+ #: public/admin/box_event_cost.php:131
772
+ msgid "This fields are required."
773
+ msgstr ""
774
+
775
+ #: public/admin/box_event_cost.php:156
776
+ msgid "Quantity:"
777
+ msgstr ""
778
+
779
+ #: public/admin/box_event_cost.php:180
780
+ msgid "Available:"
781
+ msgstr ""
782
+
783
+ #: public/admin/box_event_cost.php:185
784
+ msgid "Immediately"
785
+ msgstr ""
786
+
787
+ #: public/admin/box_event_cost.php:190
788
+ msgid "From:"
789
+ msgstr ""
790
+
791
+ #: public/admin/box_event_cost.php:207
792
+ msgid "Till:"
793
+ msgstr ""
794
+
795
+ #: public/admin/box_ask_customer_review.php:42
796
+ #: public/admin/box_ask_customer_review.php:75
797
+ msgid "No, thanks"
798
+ msgstr ""
799
+
800
+ #: public/admin/box_ask_customer_review.php:50
801
+ #: public/admin/box_ask_customer_review.php:84
802
+ msgid "Ok, sure!"
803
+ msgstr ""
804
+
805
+ #: public/admin/box_ask_customer_review.php:66
806
+ msgid "Would you mind giving us some feedback?"
807
+ msgstr ""
808
+
809
+ #: public/admin/box_ask_customer_review.php:101
810
+ msgid "Please provide some feedback"
811
+ msgstr ""
812
+
813
+ #: public/admin/box_ask_customer_review.php:108
814
+ msgid "Message:"
815
+ msgstr ""
816
+
817
+ #: public/admin/box_ask_customer_review.php:121
818
+ msgid "Name:"
819
+ msgstr ""
820
+
821
+ #: public/admin/box_ask_customer_review.php:136
822
+ #: public/admin/box_event_contact.php:43
823
+ msgid "E-mail:"
824
+ msgstr "E-mail:"
825
+
826
+ #: public/admin/box_ask_customer_review.php:143
827
+ msgid "E-mail is invalid."
828
+ msgstr ""
829
+
830
+ #: public/admin/box_ask_customer_review.php:154
831
+ msgid "Site URL:"
832
+ msgstr ""
833
+
834
+ #: public/admin/box_ask_customer_review.php:161
835
+ msgid "Site URL is invalid."
836
+ msgstr ""
837
+
838
+ #: public/admin/box_ask_customer_review.php:173
839
+ msgid "Thank you for being our customer,"
840
+ msgstr ""
841
+
842
+ #: public/admin/box_ask_customer_review.php:174
843
+ msgid "Aristotel Dascal, VP of Product, Time.ly"
844
+ msgstr ""
845
+
846
+ #: public/admin/box_ask_customer_review.php:180
847
+ msgid "Sending..."
848
+ msgstr ""
849
+
850
+ #: public/admin/box_ask_customer_review.php:181
851
+ msgid "Send Message"
852
+ msgstr ""
853
+
854
+ #: public/admin/box_event_children.php:12
855
+ msgid "Base recurrence event"
856
+ msgstr "Повтарящо се събития база"
857
+
858
+ #: public/admin/box_event_children.php:14
859
+ msgid "Modified recurrence events"
860
+ msgstr "Променени повтарящи се събития"
861
+
862
+ #: public/admin/box_event_children.php:22
863
+ msgid "Edit parent:"
864
+ msgstr "Редактирайте събитие родител:"
865
+
866
+ #: public/admin/box_event_children.php:27
867
+ msgid "Modified Events"
868
+ msgstr "Променени събития"
869
+
870
+ #: public/admin/box_event_children.php:31
871
+ msgid "Edit:"
872
+ msgstr "Редакция:"
873
+
874
+ #: public/admin/box_event_contact.php:6
875
+ msgid "Organizer contact info"
876
+ msgstr "Контакти на организатора"
877
+
878
+ #: public/admin/box_event_contact.php:17
879
+ msgid "Contact name:"
880
+ msgstr "За контакт: "
881
+
882
+ #: lib/theme/loader.php:325
883
+ msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
+ msgstr "Не успяхме да намерим подходящ зареждач за файл с разширение '%s'"
885
+
886
+ #: lib/theme/loader.php:631
887
+ msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
+ msgstr ""
889
+
890
+ #: lib/theme/search.php:253
891
+ msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
+ msgstr "Не сме способни да преместим старите core теми от <code>wp-content/themes-ai1ec</code> в <code>wp-content/themes-ai1ec-obsolete</code>, защото във Вашата <code>wp-content</code> папка не може да се пише. Моля, премахнете ръчно старите core теми от <code>wp-content/themes-ai1ec</code>."
893
+
894
+ #: lib/theme/search.php:264
895
+ msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
+ msgstr "Не успяхме да преместим старите core теми от <code>wp-content/themes-ai1ec/%s</code> в <code>wp-content/themes-ai1ec-obsolete/%s</code>. Моля, премахнете ръчно старите core теми от <code>wp-content/themes-ai1ec/%s</code>."
897
+
898
+ #: lib/twig/environment.php:115
899
+ msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
+ msgstr ""
901
+
902
+ #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
+ msgid "Title:"
904
+ msgstr "Заглавие:"
905
+
906
+ #: public/admin/agenda-widget-form.php:12
907
+ msgid "Number of events to show:"
908
+ msgstr "Брой събития за показване:"
909
+
910
+ #: public/admin/agenda-widget-form.php:21
911
+ msgid "Number of days to show:"
912
+ msgstr "Да показва колко дни:"
913
+
914
+ #: public/admin/agenda-widget-form.php:26
915
+ msgid "Limit to:"
916
+ msgstr ""
917
+
918
+ #: public/admin/agenda-widget-form.php:30
919
+ msgid "Events with these <strong>Categories</strong>"
920
+ msgstr "Събития с тези <strong>Категории</strong>"
921
+
922
+ #: public/admin/agenda-widget-form.php:39
923
+ msgid "No categories found."
924
+ msgstr "Няма намерени категории."
925
+
926
+ #: public/admin/agenda-widget-form.php:46
927
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
+ msgstr "<strong>Или</strong> събития с тези <strong>Етикети</strong>"
929
+
930
+ #: public/admin/agenda-widget-form.php:55
931
+ msgid "No tags found."
932
+ msgstr "Няма такива етикети."
933
+
934
+ #: public/admin/agenda-widget-form.php:62
935
+ msgid "Show <strong>View Calendar</strong> button"
936
+ msgstr "Покажи бутон <strong>Виж календар</strong> "
937
+
938
+ #: public/admin/agenda-widget-form.php:65
939
+ msgid "Show <strong>Subscribe</strong> buttons"
940
+ msgstr "Покажи бутон <strong>Абонирай се</strong> "
941
+
942
+ #: public/admin/agenda-widget-form.php:68
943
+ msgid "Hide this widget on calendar page"
944
+ msgstr "Скрий този Widget на страница Календар"
945
+
946
+ #: public/admin/box_ask_customer_review.php:5
947
+ msgid "Enjoying All-in-One Event Calendar?"
948
+ msgstr ""
949
+
950
+ #: public/admin/box_ask_customer_review.php:13
951
+ msgid "Not really"
952
+ msgstr ""
953
+
954
+ #: public/admin/box_ask_customer_review.php:20
955
+ msgid "Yes!"
956
+ msgstr ""
957
+
958
+ #: public/admin/box_ask_customer_review.php:33
959
+ msgid "How about a rating on the Wordpress?"
960
+ msgstr ""
961
+
962
+ #: lib/recurrence/rule.php:397
963
+ msgid "Every %d weeks"
964
+ msgstr "Всяка %d седмциа"
965
+
966
+ #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
+ msgid "Monthly"
968
+ msgstr "Месечно"
969
+
970
+ #: lib/recurrence/rule.php:409
971
+ msgid "Every other month"
972
+ msgstr "През месец"
973
+
974
+ #: lib/recurrence/rule.php:412
975
+ msgid "Every %d months"
976
+ msgstr "Всеки %d месец"
977
+
978
+ #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
+ msgid "Yearly"
980
+ msgstr "Годишно"
981
+
982
+ #: lib/recurrence/rule.php:424
983
+ msgid "Every other year"
984
+ msgstr "През година"
985
+
986
+ #: lib/recurrence/rule.php:427
987
+ msgid "Every %d years"
988
+ msgstr "През %d години"
989
+
990
+ #: lib/recurrence/rule.php:465
991
+ msgid "until %s"
992
+ msgstr "до %s"
993
+
994
+ #: lib/recurrence/rule.php:475
995
+ msgid "for %d occurrences"
996
+ msgstr "за %d повтарящи се събития"
997
+
998
+ #: lib/recurrence/rule.php:479
999
+ msgid "forever"
1000
+ msgstr "завинаги"
1001
+
1002
+ #: lib/robots/helper.php:71
1003
+ msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
+ msgstr "<strong>ERROR:</strong> Има грешка при свързването със сървъра. Моля проверете, дали настройките са правилни."
1005
+
1006
+ #: lib/robots/helper.php:105
1007
+ msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
+ msgstr "<strong>ERROR:</strong> Има грешка при съхраняването на <strong>robots.txt</strong> на сървъра, файлът не мога да бъде написан."
1009
+
1010
+ #: lib/theme/list.php:152
1011
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
+ msgstr "В момента имате само една активирана тема за този сайт. Посетете Network Admin, за да <a href=\"%1$s\">направите достъпни</a> или <a href=\"%2$s\">инсталирате</a> повече теми."
1013
+
1014
+ #: lib/theme/list.php:164
1015
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
+ msgstr "В момента имате само една активирана тема за този сайт. Посетете Network Admin, за да <a href=\"%1$s\">направите достъпни</a> повече теми."
1017
+
1018
+ #: lib/theme/list.php:179
1019
+ msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
+ msgstr "В момента имате само една активирана тема за този сайт. Може те да изберем между много безплатни теми в директорията на теми на Timely по всяко време: само натиснете таба по-горе <a href=\"%s\">Инсталирайте теми</a>."
1021
+
1022
+ #: lib/theme/list.php:190
1023
+ msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
+ msgstr "Само активната тема е достъпна. Свържете се с Администратора на <em>%s</em>, за да добавите още теми."
1025
+
1026
+ #: lib/theme/list.php:257
1027
+ msgid "Activate &#8220;%s&#8221;"
1028
+ msgstr "Активирай &#8220;%s&#8221;"
1029
+
1030
+ #: lib/theme/list.php:264
1031
+ msgid "Activate"
1032
+ msgstr "Активирайте"
1033
+
1034
+ #. translators: 1: theme title, 2: theme version, 3: theme author
1035
+ #: lib/theme/list.php:281 public/admin/themes.php:25
1036
+ msgid "%1$s %2$s by %3$s"
1037
+ msgstr "%1$s %2$s на %3$s"
1038
+
1039
+ #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
+ #. title, 5: parent_theme
1041
+ #: lib/theme/list.php:293
1042
+ msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
+ msgstr "Файловете на шаблона се намират в <code>%2$s</code>. Файловете на стилове (stylesheet) се намират в <code>%3$s</code>. <strong>%4$s</strong> използва шаблони от <strong>%5$s</strong>. Промени по тези шаблони ще се отразят и на двете теми."
1044
+
1045
+ #: lib/theme/list.php:308
1046
+ msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
+ msgstr "Всички файлове от тема theme&#8217;s се намират в <code>%2$s</code>."
1048
+
1049
+ #: lib/post/custom-type.php:36
1050
+ msgid "Parent Event"
1051
+ msgstr "Събитие родител"
1052
+
1053
+ #: lib/post/custom-type.php:55
1054
+ msgid "event"
1055
+ msgstr "събитие"
1056
+
1057
+ #: lib/post/custom-type.php:85
1058
+ msgctxt "Event categories taxonomy"
1059
+ msgid "Categories"
1060
+ msgstr ""
1061
+
1062
+ #: lib/post/custom-type.php:86
1063
+ msgctxt "Event categories taxonomy (singular)"
1064
+ msgid "Category"
1065
+ msgstr ""
1066
+
1067
+ #: lib/post/custom-type.php:87
1068
+ msgctxt "Event categories menu item"
1069
+ msgid "Organize"
1070
+ msgstr ""
1071
+
1072
+ #: lib/post/custom-type.php:94
1073
+ msgctxt "Event tags taxonomy"
1074
+ msgid "Tags"
1075
+ msgstr ""
1076
+
1077
+ #: lib/post/custom-type.php:95
1078
+ msgctxt "Event tags taxonomy (singular)"
1079
+ msgid "Tag"
1080
+ msgstr ""
1081
+
1082
+ #: lib/post/custom-type.php:102
1083
+ msgctxt "Event feeds taxonomy"
1084
+ msgid "Event Feeds"
1085
+ msgstr "Абонаменти на събитието"
1086
+
1087
+ #: lib/post/custom-type.php:103
1088
+ msgctxt "Event feed taxonomy (singular)"
1089
+ msgid "Event Feed"
1090
+ msgstr "Абонамент (feed) на събитието"
1091
+
1092
+ #: lib/post/custom-type.php:285
1093
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
+ msgstr "Всички събития <span class=\"update-plugins count-%d\" title=\"%d Изчакващи събития\"><span class=\"update-count\">%d</span></span>"
1095
+
1096
+ #: lib/post/custom-type.php:296
1097
+ msgid "All Events"
1098
+ msgstr "Всички събития"
1099
+
1100
+ #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
+ #: lib/recurrence/rule.php:260
1102
+ msgctxt "Recurrence editor - weekly tab"
1103
+ msgid "on"
1104
+ msgstr "на"
1105
+
1106
+ #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
+ #: lib/recurrence/rule.php:326
1108
+ msgid "and"
1109
+ msgstr "и"
1110
+
1111
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
+ #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
+ msgctxt "Recurrence editor - monthly tab"
1114
+ msgid "on"
1115
+ msgstr "на"
1116
+
1117
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
+ #: lib/recurrence/rule.php:286
1119
+ msgid "of the month"
1120
+ msgstr "от месеца"
1121
+
1122
+ #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
+ #: lib/recurrence/rule.php:336
1124
+ msgctxt "Recurrence editor - yearly tab"
1125
+ msgid "on"
1126
+ msgstr "на"
1127
+
1128
+ #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
+ #: public/admin/cron_freq.php:9
1130
+ msgid "Daily"
1131
+ msgstr "Ежедневно"
1132
+
1133
+ #: lib/recurrence/rule.php:379
1134
+ msgid "Every other day"
1135
+ msgstr "През ден"
1136
+
1137
+ #: lib/recurrence/rule.php:382
1138
+ msgid "Every %d days"
1139
+ msgstr "Всеки %d дни"
1140
+
1141
+ #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
+ msgid "Weekly"
1143
+ msgstr "Седмично"
1144
+
1145
+ #: lib/recurrence/rule.php:394
1146
+ msgid "Every other week"
1147
+ msgstr "През седмица"
1148
+
1149
+ #: lib/less/variable/font.php:64
1150
+ msgid "Custom..."
1151
+ msgstr "персонализирай..."
1152
+
1153
+ #: lib/less/variable/font.php:112
1154
+ msgid "Enter custom font(s)"
1155
+ msgstr "Въведи персонализиран шрифт(ове)"
1156
+
1157
+ #: lib/less/variable/size.php:26
1158
+ msgid "Length"
1159
+ msgstr "Дължина"
1160
+
1161
+ #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
+ msgid "All-in-One Event Calendar"
1163
+ msgstr "All-in-One Event Calendar"
1164
+
1165
+ #: lib/notification/admin.php:182
1166
+ msgid "Got it – dismiss this"
1167
+ msgstr ""
1168
+
1169
+ #: lib/post/custom-type.php:26
1170
+ msgctxt "Custom post type name"
1171
+ msgid "Events"
1172
+ msgstr "Събития"
1173
+
1174
+ #: lib/post/custom-type.php:27
1175
+ msgctxt "Custom post type name (singular)"
1176
+ msgid "Event"
1177
+ msgstr "Събитие"
1178
+
1179
+ #: lib/post/custom-type.php:28
1180
+ msgid "Add New"
1181
+ msgstr "Добави ново"
1182
+
1183
+ #: lib/post/custom-type.php:29
1184
+ msgid "Add New Event"
1185
+ msgstr "Добави ново събитие"
1186
+
1187
+ #: lib/post/custom-type.php:30
1188
+ msgid "Edit Event"
1189
+ msgstr "Редактирай събитие"
1190
+
1191
+ #: lib/post/custom-type.php:31
1192
+ msgid "New Event"
1193
+ msgstr "Ново събитие"
1194
+
1195
+ #: lib/post/custom-type.php:32
1196
+ msgid "View Event"
1197
+ msgstr "Покажи събитието"
1198
+
1199
+ #: lib/post/custom-type.php:33
1200
+ msgid "Search Events"
1201
+ msgstr "Търси събития"
1202
+
1203
+ #: lib/post/custom-type.php:34
1204
+ msgid "No Events found"
1205
+ msgstr "Няма намерени събития"
1206
+
1207
+ #: lib/post/custom-type.php:35
1208
+ msgid "No Events found in Trash"
1209
+ msgstr "Няма намерени събития в Кошчето"
1210
+
1211
+ #: lib/html/element/setting/html.php:62
1212
+ msgid "Filter by post ID:"
1213
+ msgstr "Филтрирай по ID на публикацията:"
1214
+
1215
+ #: lib/html/element/setting/html.php:63
1216
+ msgid "Filter by post IDs (separate IDs by comma):"
1217
+ msgstr "Филтрирай по ID на публикацията (разделяйте IDs със запетая)"
1218
+
1219
+ #: lib/html/element/setting/html.php:64
1220
+ msgid "Limit number of events per page:"
1221
+ msgstr "Ограничи броя на събития на страница:"
1222
+
1223
+ #: lib/html/element/setting/html.php:65
1224
+ msgid "Warning:"
1225
+ msgstr "Предупреждение:"
1226
+
1227
+ #: lib/html/element/setting/html.php:66
1228
+ msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
+ msgstr "В момента не поддържаме опцията да се вграждат повече от един календар на една страница. Не се опитвайте да позиционирате втори календар чрез Super Widget на страница, която вече показва календар."
1230
+
1231
+ #: lib/import-export/ics.php:831
1232
+ msgid "Tickets: "
1233
+ msgstr ""
1234
+
1235
+ #: lib/html/element/setting/html.php:41
1236
+ msgid "Day view:"
1237
+ msgstr "Дневен изглед:"
1238
+
1239
+ #: lib/html/element/setting/html.php:42
1240
+ msgid "Agenda view:"
1241
+ msgstr "Изглед График:"
1242
+
1243
+ #: lib/html/element/setting/html.php:43
1244
+ msgid "Some Other view:"
1245
+ msgstr "Друг изглед:"
1246
+
1247
+ #: lib/html/element/setting/html.php:44
1248
+ msgid "Default view as per settings:"
1249
+ msgstr "Стандартен изглед според настройките:"
1250
+
1251
+ #: lib/html/element/setting/html.php:45
1252
+ msgid "General form:"
1253
+ msgstr "Основен формуляр:"
1254
+
1255
+ #: lib/html/element/setting/html.php:46
1256
+ msgid "Optional."
1257
+ msgstr "Не е задължително."
1258
+
1259
+ #: lib/html/element/setting/html.php:47
1260
+ msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
+ msgstr "Добави опции за показване на филтриран календар. (Можете да намерите ID на категориите и етикетите като проверите линка на страницата на филтрирания календар.)"
1262
+
1263
+ #: lib/html/element/setting/html.php:48
1264
+ msgid "Filter by event category name/slug:"
1265
+ msgstr "Филтриране по име на категория на събитието/slug"
1266
+
1267
+ #: lib/html/element/setting/html.php:49
1268
+ msgid "Holidays"
1269
+ msgstr "Празници"
1270
+
1271
+ #: lib/html/element/setting/html.php:50
1272
+ msgid "Lunar Cycles"
1273
+ msgstr "Лунни цикли"
1274
+
1275
+ #: lib/html/element/setting/html.php:51
1276
+ msgid "zodiac-date-ranges"
1277
+ msgstr "zodiac-date-ranges"
1278
+
1279
+ #: lib/html/element/setting/html.php:52
1280
+ msgid "Filter by event category names/slugs (separate names by comma):"
1281
+ msgstr "Филтрирай по категория/slug на събитието (отделени със запетая)"
1282
+
1283
+ #: lib/html/element/setting/html.php:53
1284
+ msgid "Filter by event category ID:"
1285
+ msgstr "Филтрирай по ID на категорията на събитието"
1286
+
1287
+ #: lib/html/element/setting/html.php:54
1288
+ msgid "Filter by event category IDs (separate IDs by comma):"
1289
+ msgstr "Филтрирай по ID на категорията на събитието (отделени със запетая)"
1290
+
1291
+ #: lib/html/element/setting/html.php:55
1292
+ msgid "Filter by event tag name/slug:"
1293
+ msgstr "Филтрирай по етикет/slug на събитието"
1294
+
1295
+ #: lib/html/element/setting/html.php:56
1296
+ msgid "tips-and-tricks"
1297
+ msgstr "съвети-и-трикове"
1298
+
1299
+ #: lib/html/element/setting/html.php:57
1300
+ msgid "creative writing"
1301
+ msgstr "свободно съчинение"
1302
+
1303
+ #: lib/html/element/setting/html.php:58
1304
+ msgid "performing arts"
1305
+ msgstr "сценични изкуства"
1306
+
1307
+ #: lib/html/element/setting/html.php:59
1308
+ msgid "Filter by event tag names/slugs (separate names by comma):"
1309
+ msgstr "Филтрирай по етикет/slug на събитиeто (отделени със запетая):"
1310
+
1311
+ #: lib/html/element/setting/html.php:60
1312
+ msgid "Filter by event tag ID:"
1313
+ msgstr "Филтрирай по ID на етикета на събитието:"
1314
+
1315
+ #: lib/html/element/setting/html.php:61
1316
+ msgid "Filter by event tag IDs (separate IDs by comma):"
1317
+ msgstr "Филтрирай по ID на етикета на събитието (отделени със запетая):"
1318
+
1319
+ #: lib/exception/handler.php:395
1320
+ msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
+ msgstr ""
1322
+
1323
+ #: lib/exception/handler.php:404
1324
+ msgid "Try reactivating plugin"
1325
+ msgstr ""
1326
+
1327
+ #: lib/exception/handler.php:576
1328
+ msgid "Toggle error details"
1329
+ msgstr ""
1330
+
1331
+ #: lib/exception/handler.php:577
1332
+ msgid "Error Details:"
1333
+ msgstr ""
1334
+
1335
+ #: lib/factory/html.php:133
1336
+ msgid "Choose a date using calendar"
1337
+ msgstr "Избери дата използвайки календар"
1338
+
1339
+ #: lib/factory/html.php:278
1340
+ msgid "Tags (optional)"
1341
+ msgstr "Етикети (незадължителни)"
1342
+
1343
+ #: lib/html/element/setting/cache.php:38
1344
+ msgid "Check again"
1345
+ msgstr "Провери отново"
1346
+
1347
+ #: lib/html/element/setting/cache.php:39
1348
+ msgid "Templates cache is not writable"
1349
+ msgstr "Кешът на шаблоните не е подходящ за писане."
1350
+
1351
+ #: lib/html/element/setting/cache.php:40
1352
+ msgid "Templates cache is writable"
1353
+ msgstr "Кешът на шаблоните е подходящ за писане."
1354
+
1355
+ #: lib/html/element/setting/cache.php:41
1356
+ msgid "Checking..."
1357
+ msgstr "Проверка..."
1358
+
1359
+ #: lib/html/element/setting/cache.php:42
1360
+ msgid "Performance Report"
1361
+ msgstr "Доклад по изпълнението"
1362
+
1363
+ #: lib/html/element/setting/calendar-page-selector.php:70
1364
+ msgid "View"
1365
+ msgstr "Изглед"
1366
+
1367
+ #: lib/html/element/setting/calendar-page-selector.php:114
1368
+ msgid "- Auto-Create New Page -"
1369
+ msgstr "-Създай автоматично нова страница-"
1370
+
1371
+ #: lib/html/element/setting/enabled-views.php:22
1372
+ msgid "Enabled"
1373
+ msgstr "Досъпен"
1374
+
1375
+ #: lib/html/element/setting/enabled-views.php:23
1376
+ msgid "Default"
1377
+ msgstr "Стандартен"
1378
+
1379
+ #: lib/html/element/setting/enabled-views.php:24
1380
+ msgid "Desktop"
1381
+ msgstr "Desktop"
1382
+
1383
+ #: lib/html/element/setting/enabled-views.php:25
1384
+ msgid "Mobile"
1385
+ msgstr "Mobile"
1386
+
1387
+ #: lib/html/element/setting/html.php:37
1388
+ msgid "Embed the calendar using a shortcode"
1389
+ msgstr "Вгради календара чрез shortcode"
1390
+
1391
+ #: lib/html/element/setting/html.php:38
1392
+ msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
+ msgstr "Въведете един от тези shortcodes в тялото на вашата страница, за да вградите календара в която и да е друга WordPress страница:"
1394
+
1395
+ #: lib/html/element/setting/html.php:39
1396
+ msgid "Month view:"
1397
+ msgstr "Месечен изглед:"
1398
+
1399
+ #: lib/html/element/setting/html.php:40
1400
+ msgid "Week view:"
1401
+ msgstr "Седмичен изглед:"
1402
+
1403
+ #: lib/css/frontend.php:239
1404
+ msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
+ msgstr ""
1406
+
1407
+ #: lib/css/frontend.php:266
1408
+ msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
+ msgstr "Файлът LESS беше компилиран успешни, но имаше грешка докато запазвахме генерирания CSS."
1410
+
1411
+ #: lib/css/frontend.php:272
1412
+ msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
+ msgstr "<p><strong>Имаше грешка при компилирането на CSS.</strong> Полученото съобщение беше: <em>%s</em></p>"
1414
+
1415
+ #: lib/css/frontend.php:300
1416
+ msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
+ msgstr "Опциите на темата бяха успешно нулирани към стандартните им стойности.<a href='%s'>Посети сайт</a>"
1418
+
1419
+ #: lib/css/frontend.php:307
1420
+ msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
+ msgstr "Опциите на темата бяха успешно опреснени.<a href='%s'>Посети сайт</a>"
1422
+
1423
+ #: lib/css/frontend.php:343
1424
+ msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
+ msgstr "Вашият CSS бива компилиран на всяка заявка, което прави календара бавен. Настъпи следната грешка: %s"
1426
+
1427
+ #: lib/database/applicator.php:182
1428
+ msgid "Date columns in table %s have different types."
1429
+ msgstr "Колоните на датите в таблицата %s са различни видове."
1430
+
1431
+ #: lib/database/exception/database.php:19
1432
+ msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
+ msgstr "Опресняването на базата данни се провали. Моля, уверете се, че потребителя на бази данни, определен в <em>wp-config.php</em> има права да прави промени (<strong>ALTER TABLE</strong>) в на базата данни."
1434
+
1435
+ #: lib/database/exception/database.php:23
1436
+ msgid "Error encountered: %s"
1437
+ msgstr "Има грешка: %s"
1438
+
1439
+ #: lib/date/system.php:202
1440
+ msgid "GMT%+d:%02d"
1441
+ msgstr "GMT%+d:%02d"
1442
+
1443
+ #: lib/date/timezone.php:362
1444
+ msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
+ msgstr "Моля изберете часовата зона в падащото меню %s <em>Timezone</em>."
1446
+
1447
+ #: lib/date/timezone.php:397
1448
+ msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
+ msgstr "Часовата зона \"UTC%+d\" не е разпозната. Моля %suse valid%s име за часова зона, дотогава всички събития ще бъдат поставяне в зона UTC."
1450
+
1451
+ #: lib/date/timezone.php:421
1452
+ msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
+ msgstr "Избраната часова зона \"UTC%+d\" ще бъде възприемана като %s."
1454
+
1455
+ #: lib/date/timezone.php:490
1456
+ msgid "Manual Offset"
1457
+ msgstr "Ръчно отместване (offset)"
1458
+
1459
+ #: lib/date/timezone.php:493
1460
+ msgid "Choose your timezone"
1461
+ msgstr "Избери часова зона"
1462
+
1463
+ #: lib/environment/check.php:55
1464
+ msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
+ msgstr "Изберете опция от падащото меню на <strong>страница Календар</strong>."
1466
+
1467
+ #: lib/environment/check.php:68
1468
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
+ msgstr "Приставката е инсталирана, но не е конфигурирана. <a href=\"%s\">Натиснете тук, за да я конфигурирате сега &raquo;</a>"
1470
+
1471
+ #: lib/environment/check.php:78
1472
+ msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
+ msgstr "Приставката е инсталирана, но не е конфигурирана. Моля, влезте като Администратор, за да конфигурирате."
1474
+
1475
+ #: lib/environment/check.php:196
1476
+ msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
+ msgstr ""
1478
+
1479
+ #: lib/environment/check.php:197
1480
+ msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
+ msgstr ""
1482
+
1483
+ #: lib/exception/handler.php:176
1484
+ msgid "The add-on \"%s\" has been disabled due to an error:"
1485
+ msgstr ""
1486
+
1487
+ #: lib/calendar-feed/ics.php:367
1488
+ msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
+ msgstr "Бихте ли искали да запазите импортнатите събития от календара или да ги премахнете?"
1490
+
1491
+ #: lib/calendar-feed/ics.php:373
1492
+ msgid "Removing ICS Feed"
1493
+ msgstr "Премахва ICS Feed"
1494
+
1495
+ #: lib/calendar-feed/ics.php:376
1496
+ msgid "Keep Events"
1497
+ msgstr "Запази събитията"
1498
+
1499
+ #: lib/calendar-feed/ics.php:379
1500
+ msgid "Remove Events"
1501
+ msgstr "Премахни събитията"
1502
+
1503
+ #: lib/calendar-feed/ics.php:519
1504
+ msgid "Oh, submission was not accepted."
1505
+ msgstr ""
1506
+
1507
+ #: lib/calendar-feed/ics.php:699
1508
+ msgid "Deleted %d events"
1509
+ msgstr "Изтрити са %d събития"
1510
+
1511
+ #: lib/calendar-feed/ics.php:735
1512
+ msgid "Feed deleted"
1513
+ msgstr "Изтрит абонамент (feed)"
1514
+
1515
+ #: lib/captcha/provider/nocaptcha.php:31
1516
+ msgid "noCAPTCHA public key:"
1517
+ msgstr ""
1518
+
1519
+ #: lib/captcha/provider/nocaptcha.php:47
1520
+ msgid "noCAPTCHA private key:"
1521
+ msgstr ""
1522
+
1523
+ #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
+ msgid "Please try verifying you are human again."
1525
+ msgstr ""
1526
+
1527
+ #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
+ msgid "There was an error reading the human verification data. Please try again."
1529
+ msgstr ""
1530
+
1531
+ #: lib/captcha/provider/recaptcha.php:32
1532
+ msgid "reCAPTCHA public key:"
1533
+ msgstr ""
1534
+
1535
+ #: lib/captcha/provider/recaptcha.php:48
1536
+ msgid "reCAPTCHA private key:"
1537
+ msgstr ""
1538
+
1539
+ #: lib/captcha/provider/recaptcha.php:66
1540
+ msgid "Human verification"
1541
+ msgstr ""
1542
+
1543
+ #: lib/captcha/provider/recaptcha.php:67
1544
+ msgid "Loading reCAPTCHA..."
1545
+ msgstr ""
1546
+
1547
+ #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
+ #: lib/clone/renderer-helper.php:45
1549
+ msgid "Clone"
1550
+ msgstr "Клонирай"
1551
+
1552
+ #: lib/clone/renderer-helper.php:44
1553
+ msgid "Make new copy of event"
1554
+ msgstr "Направи ново копие на събитието"
1555
+
1556
+ #: lib/clone/renderer-helper.php:47
1557
+ msgid "Copy to a new draft"
1558
+ msgstr "Копирай като нова чернова"
1559
+
1560
+ #: lib/clone/renderer-helper.php:48
1561
+ msgid "Clone to Draft"
1562
+ msgstr "Клонирай като нова чернова"
1563
+
1564
+ #: lib/command/clone.php:173
1565
+ msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
+ msgstr "<p>Събитието <strong>%s</strong> беше успешно клонирано. <a href=\"%s\">Редактирай клонираното събитие</a></p>"
1567
+
1568
+ #: lib/compatibility/check.php:101
1569
+ msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
+ msgstr ""
1571
+
1572
+ #: app/view/event/single.php:123
1573
+ msgid "Tickets:"
1574
+ msgstr ""
1575
+
1576
+ #: app/view/event/single.php:124
1577
+ msgid "Free"
1578
+ msgstr "Безплатно"
1579
+
1580
+ #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
+ msgid "Buy Tickets"
1582
+ msgstr "Купи билети"
1583
+
1584
+ #: app/view/event/single.php:150
1585
+ msgid "Edit this occurrence (%s)"
1586
+ msgstr "Редактирай това повторение (%s)"
1587
+
1588
+ #: app/view/event/single.php:195
1589
+ msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
+ msgstr ""
1591
+
1592
+ #: app/view/event/single.php:206
1593
+ msgid "View original"
1594
+ msgstr ""
1595
+
1596
+ #: app/view/event/taxonomy.php:113
1597
+ msgid "Category image"
1598
+ msgstr "Изображение на категорията"
1599
+
1600
+ #: app/view/event/ticket.php:24
1601
+ msgid "Register Now"
1602
+ msgstr "Регистрирай се Сега"
1603
+
1604
+ #: app/view/event/ticket.php:82
1605
+ msgid "Event website"
1606
+ msgstr "Сайт на събитието"
1607
+
1608
+ #: app/view/event/time.php:84 app/view/event/time.php:118
1609
+ msgctxt "Event time separator"
1610
+ msgid " @ "
1611
+ msgstr " @ "
1612
+
1613
+ #: app/view/event/time.php:100
1614
+ msgctxt "Event start/end separator"
1615
+ msgid " – "
1616
+ msgstr " – "
1617
+
1618
+ #: app/view/event/time.php:166
1619
+ msgid ", and "
1620
+ msgstr ", и"
1621
+
1622
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
+ msgid "Excludes: "
1624
+ msgstr ""
1625
+
1626
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
+ msgid "Repeats"
1628
+ msgstr ""
1629
+
1630
+ #: lib/calendar-feed/ics.php:38
1631
+ msgid "ICS"
1632
+ msgstr ""
1633
+
1634
+ #: lib/calendar-feed/ics.php:69
1635
+ msgid "Another import process in progress. Please try again later."
1636
+ msgstr ""
1637
+
1638
+ #: lib/calendar-feed/ics.php:174
1639
+ msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
+ msgstr "Системна грешка пречи данните на календара да се изтеглят. Нещо пречи на приставката да функционира правилно. Това съобщение трябва да помогне: %s"
1641
+
1642
+ #: lib/calendar-feed/ics.php:181
1643
+ msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
+ msgstr "Данните на календара не могат да се изтеглят. Ако линкът е валиден и съдържа iCalendar източник, вероятно е резултат от временна грешка на сървъра и може да се оправи с времето."
1645
+
1646
+ #: lib/calendar-feed/ics.php:195
1647
+ msgid "Imported %s event"
1648
+ msgid_plural "Imported %s events"
1649
+ msgstr[0] ""
1650
+ msgstr[1] ""
1651
+
1652
+ #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
+ msgid "Invalid ICS feed ID"
1654
+ msgstr ""
1655
+
1656
+ #: lib/calendar-feed/ics.php:350
1657
+ msgid "Categories (optional)"
1658
+ msgstr ""
1659
+
1660
+ #: app/view/event/content.php:33 app/view/event/single.php:119
1661
+ msgid "When:"
1662
+ msgstr "Кога"
1663
+
1664
+ #: app/view/event/content.php:34 app/view/event/single.php:120
1665
+ msgid "Where:"
1666
+ msgstr "Къде"
1667
+
1668
+ #: app/view/event/content.php:125
1669
+ msgid "Calendar"
1670
+ msgstr ""
1671
+
1672
+ #: app/view/event/content.php:126
1673
+ msgid "View all events"
1674
+ msgstr "Виж всички събития"
1675
+
1676
+ #: app/view/event/location.php:96
1677
+ msgid "Click to view map"
1678
+ msgstr "Натисни, за да видиш карта"
1679
+
1680
+ #: app/view/event/location.php:97
1681
+ msgid "View Full-Size Map"
1682
+ msgstr "Виж карта в голям размер"
1683
+
1684
+ #: app/view/event/post.php:29
1685
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1686
+ msgstr "Събитието е опреснено. <a href=\"%s\">Виж събитието</a>"
1687
+
1688
+ #: app/view/event/post.php:32
1689
+ msgid "Custom field updated."
1690
+ msgstr "Персонализираните полета са опреснени."
1691
+
1692
+ #: app/view/event/post.php:33
1693
+ msgid "Custom field deleted."
1694
+ msgstr "Персонализираните полета са изтрити."
1695
+
1696
+ #: app/view/event/post.php:34
1697
+ msgid "Event updated."
1698
+ msgstr "Събитието е опреснено."
1699
+
1700
+ #. translators: %s: date and time of the revision
1701
+ #: app/view/event/post.php:38
1702
+ msgid "Event restored to revision from %s"
1703
+ msgstr "Събитието е възстановено към редакцията от %s"
1704
+
1705
+ #: app/view/event/post.php:43
1706
+ msgid "Event published. <a href=\"%s\">View event</a>"
1707
+ msgstr "Събитието е публикувано. <a href=\"%s\">Виж събитието</a>"
1708
+
1709
+ #: app/view/event/post.php:46
1710
+ msgid "Event saved."
1711
+ msgstr "Събитието е запазено."
1712
+
1713
+ #: app/view/event/post.php:48
1714
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
+ msgstr "Събитието е въведено. <a target=\"_blank\" href=\"%s\">Прегледай събитието</a>"
1716
+
1717
+ #: app/view/event/post.php:52
1718
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
+ msgstr "Събитието е насрочено за: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Прегледай събитието</a>"
1720
+
1721
+ #. translators: Publish box date format, see http:php.net/date
1722
+ #: app/view/event/post.php:54
1723
+ msgid "M j, Y @ G:i"
1724
+ msgstr "M j, Y @ G:i"
1725
+
1726
+ #: app/view/event/post.php:58
1727
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
+ msgstr "Черновата на събитието е опреснена. <a target=\"_blank\" href=\"%s\">Прегледай събитието</a>"
1729
+
1730
+ #: app/view/event/single.php:78
1731
+ msgid "Event was created in the %s time zone"
1732
+ msgstr ""
1733
+
1734
+ #: app/view/event/single.php:114
1735
+ msgid "Add to Calendar"
1736
+ msgstr "Добави в календара"
1737
+
1738
+ #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
+ msgid "Cost:"
1740
+ msgstr "Цена: "
1741
+
1742
+ #: app/view/event/single.php:122
1743
+ msgid "Contact:"
1744
+ msgstr "Контакт:"
1745
+
1746
+ #: app/view/calendar/view/agenda.php:169
1747
+ msgid "Categories:"
1748
+ msgstr "Категории:"
1749
+
1750
+ #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
+ #: public/admin/themes.php:29
1752
+ msgid "Tags:"
1753
+ msgstr "Етикети:"
1754
+
1755
+ #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
+ #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
+ #: app/view/calendar/widget.php:374
1758
+ msgid "@ %s"
1759
+ msgstr "@ %s"
1760
+
1761
+ #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
+ msgid "g a"
1763
+ msgstr ""
1764
+
1765
+ #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
+ msgid "Reveal full day"
1767
+ msgstr "Покажи целия ден"
1768
+
1769
+ #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
+ msgid "All-day"
1771
+ msgstr "Цял ден"
1772
+
1773
+ #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
+ msgid "Now:"
1775
+ msgstr "В момента:"
1776
+
1777
+ #: app/view/calendar/view/week.php:67
1778
+ msgid "Week of %s"
1779
+ msgstr "Седмица започваща на %s"
1780
+
1781
+ #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
+ msgid "Upcoming Events"
1783
+ msgstr "Предстоящи събития"
1784
+
1785
+ #: app/view/calendar/widget.php:38
1786
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
+ msgstr "All-in-One Event Calendar: Изрежда предстоящи събития в изглед График"
1788
+
1789
+ #: app/view/calendar/widget.php:80
1790
+ msgid "Choose how to limit the upcoming events"
1791
+ msgstr ""
1792
+
1793
+ #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
+ msgid "Events"
1795
+ msgstr "Събития"
1796
+
1797
+ #: app/view/calendar/widget.php:93
1798
+ msgid "Days"
1799
+ msgstr ""
1800
+
1801
+ #: app/view/calendar/widget.php:106
1802
+ msgid "Number of events to show"
1803
+ msgstr ""
1804
+
1805
+ #: app/view/calendar/widget.php:115
1806
+ msgid "Number of days to show"
1807
+ msgstr ""
1808
+
1809
+ #: app/view/calendar/widget.php:124
1810
+ msgid "Show events filtered for the following tags/categories"
1811
+ msgstr ""
1812
+
1813
+ #: app/view/calendar/widget.php:141
1814
+ msgid "Show the subscribe button in the widget"
1815
+ msgstr ""
1816
+
1817
+ #: app/view/calendar/widget.php:370
1818
+ msgid "There are no upcoming events."
1819
+ msgstr "Няма предстоящи събития"
1820
+
1821
+ #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
+ msgid "all-day"
1823
+ msgstr "цял-ден"
1824
+
1825
+ #: app/view/calendar/widget.php:372
1826
+ msgid "View Calendar"
1827
+ msgstr "Виж календара"
1828
+
1829
+ #: app/view/calendar/widget.php:375
1830
+ msgid "Add"
1831
+ msgstr "Добави"
1832
+
1833
+ #: app/view/calendar/page.php:260
1834
+ msgid "Subscribe to filtered calendar"
1835
+ msgstr "Абонирай се за филтриран календар"
1836
+
1837
+ #: app/view/calendar/page.php:261
1838
+ msgid "Subscribe"
1839
+ msgstr "Абонирай се"
1840
+
1841
+ #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
+ msgid "Get a Timely Calendar"
1843
+ msgstr ""
1844
+
1845
+ #: app/view/calendar/subscribe-button.php:22
1846
+ msgid "Add to Timely Calendar"
1847
+ msgstr "Добави към Timely календар"
1848
+
1849
+ #: app/view/calendar/subscribe-button.php:23
1850
+ msgid "Add to Google"
1851
+ msgstr "Добави към Google календар"
1852
+
1853
+ #: app/view/calendar/subscribe-button.php:24
1854
+ msgid "Add to Outlook"
1855
+ msgstr "Добави към Outlook"
1856
+
1857
+ #: app/view/calendar/subscribe-button.php:25
1858
+ msgid "Add to Apple Calendar"
1859
+ msgstr "Добави към Apple календар"
1860
+
1861
+ #: app/view/calendar/subscribe-button.php:26
1862
+ msgid "Add to other calendar"
1863
+ msgstr "Добави към друг календар"
1864
+
1865
+ #: app/view/calendar/subscribe-button.php:29
1866
+ msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
+ msgstr "Копирайте този линк за Вашия личен Timely календар или кликнете, за да добавите към Вашия rich-text календар"
1868
+
1869
+ #: app/view/calendar/subscribe-button.php:30
1870
+ msgid "Subscribe to this calendar in your Google Calendar"
1871
+ msgstr "Абонирай се за този календар в своя Google каленар"
1872
+
1873
+ #: app/view/calendar/subscribe-button.php:31
1874
+ msgid "Subscribe to this calendar in MS Outlook"
1875
+ msgstr "Абонирай се за този календар в MS Outlook"
1876
+
1877
+ #: app/view/calendar/subscribe-button.php:32
1878
+ msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
+ msgstr "Абонирай се за този календар в Apple Calendar/iCal"
1880
+
1881
+ #: app/view/calendar/subscribe-button.php:33
1882
+ msgid "Subscribe to this calendar in another plain-text calendar"
1883
+ msgstr "Абонирай се за този календар в друг текстов календар"
1884
+
1885
+ #: app/view/calendar/taxonomy.php:97
1886
+ msgid "Clear category filter"
1887
+ msgstr "Изчисти филтър по категория"
1888
+
1889
+ #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
+ #: lib/html/element/setting/tags-categories.php:47
1891
+ msgid "Categories"
1892
+ msgstr "Категории"
1893
+
1894
+ #: app/view/calendar/taxonomy.php:99
1895
+ msgid "Clear tag filter"
1896
+ msgstr "Изчисти филтър по етикет"
1897
+
1898
+ #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
+ #: lib/html/element/setting/tags-categories.php:39
1900
+ msgid "Tags"
1901
+ msgstr "Етикети"
1902
+
1903
+ #: app/view/calendar/view/agenda.php:142
1904
+ msgid "Collapse All"
1905
+ msgstr "Скрий подробности"
1906
+
1907
+ #: app/view/calendar/view/agenda.php:143
1908
+ msgid "Expand All"
1909
+ msgstr "Покажи подробности"
1910
+
1911
+ #: app/view/calendar/view/agenda.php:166
1912
+ msgid "There are no upcoming events to display at this time."
1913
+ msgstr "Към момента няма предстоящи събития"
1914
+
1915
+ #: app/view/calendar/view/agenda.php:168
1916
+ msgid "Read more"
1917
+ msgstr "Подрбности"
1918
+
1919
+ #: app/view/admin/tickets.php:86
1920
+ msgid "Sales"
1921
+ msgstr ""
1922
+
1923
+ #: app/view/admin/tickets.php:87
1924
+ msgid "How do you want the tickets revenue to be sent to you?"
1925
+ msgstr ""
1926
+
1927
+ #: app/view/admin/tickets.php:88
1928
+ msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
+ msgstr ""
1930
+
1931
+ #: app/view/admin/tickets.php:91
1932
+ msgid "Cheque"
1933
+ msgstr ""
1934
+
1935
+ #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
+ msgid "Paypal"
1937
+ msgstr "Paypal"
1938
+
1939
+ #: app/view/admin/tickets.php:94
1940
+ msgid "Save Changes"
1941
+ msgstr ""
1942
+
1943
+ #: app/view/admin/tickets.php:95
1944
+ msgid "Date"
1945
+ msgstr ""
1946
+
1947
+ #: app/view/admin/tickets.php:96
1948
+ msgid "Event"
1949
+ msgstr ""
1950
+
1951
+ #: app/view/admin/tickets.php:97
1952
+ msgid "Purchaser"
1953
+ msgstr ""
1954
+
1955
+ #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
+ #: public/admin/box_event_cost.php:35
1957
+ msgid "Tickets"
1958
+ msgstr "Билети"
1959
+
1960
+ #: app/view/admin/tickets.php:101
1961
+ msgid "Total"
1962
+ msgstr ""
1963
+
1964
+ #: app/view/admin/tickets.php:102
1965
+ msgid "Sign Out"
1966
+ msgstr ""
1967
+
1968
+ #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
+ #: app/view/admin/widget-creator.php:47
1970
+ msgid "Widget Creator"
1971
+ msgstr ""
1972
+
1973
+ #: app/view/admin/widget-creator.php:74
1974
+ msgctxt "meta box"
1975
+ msgid "Widget Creator"
1976
+ msgstr ""
1977
+
1978
+ #: app/view/admin/widget-creator.php:131
1979
+ msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
+ msgstr ""
1981
+
1982
+ #: app/view/admin/widget-creator.php:132
1983
+ msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
+ msgstr ""
1985
+
1986
+ #: app/view/admin/widget-creator.php:134
1987
+ msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
+ msgstr ""
1989
+
1990
+ #: app/view/admin/widget-creator.php:140
1991
+ msgid "Paste this code onto your site:"
1992
+ msgstr ""
1993
+
1994
+ #: app/view/admin/widget-creator.php:141
1995
+ msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
+ msgstr ""
1997
+
1998
+ #: app/view/calendar/page.php:54
1999
+ msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
+ msgstr "Получи се грешка при зареждането на календара. Свършете се с администратора на сайта и го информирайте да конфигурира изгледите на календара."
2001
+
2002
+ #: app/view/calendar/page.php:74
2003
+ msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
+ msgstr ""
2005
+
2006
+ #: app/view/admin/settings.php:193
2007
+ msgid "Phone Number:"
2008
+ msgstr ""
2009
+
2010
+ #: app/view/admin/settings.php:194
2011
+ msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
+ msgstr ""
2013
+
2014
+ #: app/view/admin/settings.php:197
2015
+ msgid "Sign Up"
2016
+ msgstr ""
2017
+
2018
+ #: app/view/admin/settings.php:198
2019
+ msgid "Sign In"
2020
+ msgstr ""
2021
+
2022
+ #: app/view/admin/settings.php:212
2023
+ msgid "Save Settings"
2024
+ msgstr "Запази настройките"
2025
+
2026
+ #: app/view/admin/settings.php:219
2027
+ msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
+ msgstr "Ако формулярът по-долу не работи, моля натиснете <a href=\"%s\">този линк</a>."
2029
+
2030
+ #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
+ msgid "Theme Options"
2032
+ msgstr "Опции на темата"
2033
+
2034
+ #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
+ msgid "Calendar Theme Options"
2036
+ msgstr "Опции на календарната тема"
2037
+
2038
+ #: app/view/admin/theme-options.php:79
2039
+ msgctxt "meta box"
2040
+ msgid "Calendar Theme Options"
2041
+ msgstr "Опции на календарната тема"
2042
+
2043
+ #: app/view/admin/theme-options.php:133
2044
+ msgid "General"
2045
+ msgstr "Основен"
2046
+
2047
+ #: app/view/admin/theme-options.php:136
2048
+ msgid "Tables"
2049
+ msgstr "Таблици"
2050
+
2051
+ #: app/view/admin/theme-options.php:139
2052
+ msgid "Buttons"
2053
+ msgstr "Бутони"
2054
+
2055
+ #: app/view/admin/theme-options.php:142
2056
+ msgid "Forms"
2057
+ msgstr "Формуляри"
2058
+
2059
+ #: app/view/admin/theme-options.php:145
2060
+ msgid "Calendar general"
2061
+ msgstr "Основен календар"
2062
+
2063
+ #: app/view/admin/theme-options.php:148
2064
+ msgid "Month/week/day view"
2065
+ msgstr "Изглед месец/седмица/ден"
2066
+
2067
+ #: app/view/admin/theme-options.php:151
2068
+ msgid "Agenda view"
2069
+ msgstr "Изглед График"
2070
+
2071
+ #: app/view/admin/theme-options.php:169
2072
+ msgid "Save Options"
2073
+ msgstr "Запази Опциите"
2074
+
2075
+ #: app/view/admin/theme-options.php:177
2076
+ msgid "Reset to Defaults"
2077
+ msgstr "Нулиране към стандартни параметри"
2078
+
2079
+ #: app/view/admin/theme-switching.php:31
2080
+ msgid "All-in-One Event Calendar: Themes"
2081
+ msgstr "All-in-One Event Calendar: Теми"
2082
+
2083
+ #: app/view/admin/tickets.php:36
2084
+ msgid "Ticketing"
2085
+ msgstr ""
2086
+
2087
+ #: app/view/admin/tickets.php:37
2088
+ msgid "Ticketing<sup>beta</sup>"
2089
+ msgstr ""
2090
+
2091
+ #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
+ msgid "Time.ly Ticketing<sup>beta</sup>"
2093
+ msgstr ""
2094
+
2095
+ #: app/view/admin/settings.php:98
2096
+ msgctxt "meta box"
2097
+ msgid "Timely"
2098
+ msgstr "Timely"
2099
+
2100
+ #: app/view/admin/settings.php:140
2101
+ msgid "Viewing Events"
2102
+ msgstr "Преглед на събитията"
2103
+
2104
+ #: app/view/admin/settings.php:143
2105
+ msgid "Adding/Editing Events"
2106
+ msgstr "Добавяне/Редакция на събития"
2107
+
2108
+ #: app/view/admin/settings.php:146
2109
+ msgid "Advanced"
2110
+ msgstr "Допълнителни (настройки)"
2111
+
2112
+ #: app/view/admin/settings.php:148
2113
+ msgid "Advanced Settings"
2114
+ msgstr "Допълнителни настройки"
2115
+
2116
+ #: app/view/admin/settings.php:149
2117
+ msgid "Shortcodes"
2118
+ msgstr "Shortcodes"
2119
+
2120
+ #: app/view/admin/settings.php:150
2121
+ msgid "Email Templates"
2122
+ msgstr "Шаблони за E-mail"
2123
+
2124
+ #: app/view/admin/settings.php:151
2125
+ msgid "External Services"
2126
+ msgstr "Външни услуги"
2127
+
2128
+ #: app/view/admin/settings.php:152
2129
+ msgid "Cache Report"
2130
+ msgstr "Доклад на кеша"
2131
+
2132
+ #: app/view/admin/settings.php:171
2133
+ msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
+ msgstr ""
2135
+
2136
+ #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
+ #: public/admin/box_ask_customer_review.php:112
2138
+ #: public/admin/box_ask_customer_review.php:126
2139
+ #: public/admin/box_ask_customer_review.php:140
2140
+ #: public/admin/box_ask_customer_review.php:158
2141
+ #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
+ msgid "This field is required."
2143
+ msgstr ""
2144
+
2145
+ #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
+ msgid "Register"
2147
+ msgstr "Регистрация"
2148
+
2149
+ #: app/view/admin/settings.php:184
2150
+ msgid "Sign in"
2151
+ msgstr ""
2152
+
2153
+ #: app/view/admin/settings.php:185
2154
+ msgid "You are successfully signed in to <b>Timely Network</b>."
2155
+ msgstr ""
2156
+
2157
+ #: app/view/admin/settings.php:186
2158
+ msgid "Sign out"
2159
+ msgstr ""
2160
+
2161
+ #: app/view/admin/settings.php:187
2162
+ msgid "Hide form"
2163
+ msgstr ""
2164
+
2165
+ #: app/view/admin/settings.php:188
2166
+ msgid "Show form"
2167
+ msgstr ""
2168
+
2169
+ #: app/view/admin/settings.php:189
2170
+ msgid "Full Name:"
2171
+ msgstr ""
2172
+
2173
+ #: app/view/admin/settings.php:190
2174
+ msgid "Email:"
2175
+ msgstr ""
2176
+
2177
+ #: app/view/admin/settings.php:191
2178
+ msgid "Password:"
2179
+ msgstr ""
2180
+
2181
+ #: app/view/admin/settings.php:192
2182
+ msgid "Confirm Password:"
2183
+ msgstr ""
2184
+
2185
+ #: app/view/admin/get-repeat-box.php:483
2186
+ msgid "fourth"
2187
+ msgstr "четвърта/и"
2188
+
2189
+ #: app/view/admin/get-repeat-box.php:495
2190
+ msgid "Sunday"
2191
+ msgstr "неделя"
2192
+
2193
+ #: app/view/admin/get-repeat-box.php:496
2194
+ msgid "Monday"
2195
+ msgstr "Понеделник"
2196
+
2197
+ #: app/view/admin/get-repeat-box.php:497
2198
+ msgid "Tuesday"
2199
+ msgstr "Вторник"
2200
+
2201
+ #: app/view/admin/get-repeat-box.php:498
2202
+ msgid "Wednesday"
2203
+ msgstr "Сряда"
2204
+
2205
+ #: app/view/admin/get-repeat-box.php:499
2206
+ msgid "Thursday"
2207
+ msgstr "Четвъртък"
2208
+
2209
+ #: app/view/admin/get-repeat-box.php:500
2210
+ msgid "Friday"
2211
+ msgstr "Петък"
2212
+
2213
+ #: app/view/admin/get-repeat-box.php:501
2214
+ msgid "Saturday"
2215
+ msgstr "Събота"
2216
+
2217
+ #: app/view/admin/get-repeat-box.php:503
2218
+ msgid "day"
2219
+ msgstr "ден"
2220
+
2221
+ #: app/view/admin/get-repeat-box.php:504
2222
+ msgid "weekday"
2223
+ msgstr "делник"
2224
+
2225
+ #: app/view/admin/get-repeat-box.php:505
2226
+ msgid "weekend day"
2227
+ msgstr "събота или неделя"
2228
+
2229
+ #: app/view/admin/get-repeat-box.php:571
2230
+ msgid "year(s)"
2231
+ msgstr "година/и"
2232
+
2233
+ #: app/view/admin/nav.php:22
2234
+ msgid "<a href=\"%s\">Settings</a>"
2235
+ msgstr "<a href=\"%s\">Настройки</a>"
2236
+
2237
+ #: app/view/admin/nav.php:28
2238
+ msgid "<a href=\"%s\">Check for updates</a>"
2239
+ msgstr ""
2240
+
2241
+ #: app/view/admin/organize.php:100
2242
+ msgid "Organize Events"
2243
+ msgstr ""
2244
+
2245
+ #: app/view/admin/settings.php:30
2246
+ msgid "All-in-One Event Calendar: Settings"
2247
+ msgstr "All-in-One Event Calendar: Настройки"
2248
+
2249
+ #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
+ #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
+ msgid "Settings"
2252
+ msgstr "Настройки"
2253
+
2254
+ #: app/view/admin/settings.php:89
2255
+ msgctxt "meta box"
2256
+ msgid "General Settings"
2257
+ msgstr "Общи настройки"
2258
+
2259
+ #: app/view/admin/get-repeat-box.php:480
2260
+ msgid "first"
2261
+ msgstr "последен/на"
2262
+
2263
+ #: app/view/admin/get-repeat-box.php:481
2264
+ msgid "second"
2265
+ msgstr "втори/а"
2266
+
2267
+ #: app/view/admin/get-repeat-box.php:482
2268
+ msgid "third"
2269
+ msgstr "трети/та"
2270
+
2271
+ #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
+ msgid "Import Feeds"
2273
+ msgstr ""
2274
+
2275
+ #: app/view/admin/calendar-feeds.php:48
2276
+ msgctxt "meta box"
2277
+ msgid "Feed Subscriptions"
2278
+ msgstr "Абонаменти (feed subscriptions)"
2279
+
2280
+ #: app/view/admin/calendar-feeds.php:65
2281
+ msgid "All-in-One Event Calendar: Import Feeds"
2282
+ msgstr ""
2283
+
2284
+ #: app/view/admin/event-category.php:30
2285
+ msgid "Color"
2286
+ msgstr "Цвят"
2287
+
2288
+ #: app/view/admin/event-category.php:32
2289
+ msgid "Image"
2290
+ msgstr "Изображение"
2291
+
2292
+ #: app/view/admin/event-category.php:155
2293
+ msgid "Category Color"
2294
+ msgstr "Цвят на категория"
2295
+
2296
+ #: app/view/admin/event-category.php:156
2297
+ msgid "Events in this category will be identified by this color"
2298
+ msgstr "Събитията в тази категория ще бъдат идентифицирани с този цвят"
2299
+
2300
+ #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
+ msgid "Category Image"
2302
+ msgstr "Изображение на категорията"
2303
+
2304
+ #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
+ msgid "Add Image"
2306
+ msgstr "Добави изображение"
2307
+
2308
+ #: app/view/admin/event-category.php:195
2309
+ msgid "Remove Image"
2310
+ msgstr "Премахни изображение"
2311
+
2312
+ #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
+ msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
+ msgstr "Задайте стандартно изображение за категорията. Препоръчителен размер: квадрат, minimum 400&times;400 pixels."
2315
+
2316
+ #: app/view/admin/get-repeat-box.php:94
2317
+ msgid "times"
2318
+ msgstr "пъти"
2319
+
2320
+ #: app/view/admin/get-repeat-box.php:164
2321
+ msgid "Recurrence rule cannot be empty."
2322
+ msgstr "Правилото на повторение не може да отсъства"
2323
+
2324
+ #: app/view/admin/get-repeat-box.php:182
2325
+ msgid "Recurrence rule was not provided."
2326
+ msgstr "Не е представено правило за повторение."
2327
+
2328
+ #: app/view/admin/get-repeat-box.php:209
2329
+ msgid "Never"
2330
+ msgstr "Никога"
2331
+
2332
+ #: app/view/admin/get-repeat-box.php:210
2333
+ msgid "After"
2334
+ msgstr "След"
2335
+
2336
+ #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
+ msgid "On date"
2338
+ msgstr "На дата"
2339
+
2340
+ #: app/view/admin/get-repeat-box.php:247
2341
+ msgid "day(s)"
2342
+ msgstr "ден/дни"
2343
+
2344
+ #: app/view/admin/get-repeat-box.php:330
2345
+ msgid "week(s)"
2346
+ msgstr "Седмица/и"
2347
+
2348
+ #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
+ #: lib/recurrence/rule.php:298
2350
+ msgid "last"
2351
+ msgstr "последен/на"
2352
+
2353
+ #: app/view/admin/get-repeat-box.php:426
2354
+ msgid "month(s)"
2355
+ msgstr "месец(и)"
2356
+
2357
+ #: app/model/settings.php:929
2358
+ msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
+ msgstr "<strong>Свържи CSS</strong> в <code>&lt;head&gt;</code> сектор, когато кешът на файла не е наличен."
2360
+
2361
+ #: app/model/settings.php:932
2362
+ msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
+ msgstr "Използвайте тази опция ако кеша на файла не е наличен и предпочитате да поднесете CSS като линк, отколкото да се изведе inline."
2364
+
2365
+ #: app/model/settings.php:944
2366
+ msgid "Current <strong>robots.txt</strong> on this site"
2367
+ msgstr "Същестуващ <strong>robots.txt</strong> на този сайт"
2368
+
2369
+ #: app/model/settings.php:948
2370
+ msgid ""
2371
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
+ "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
+ "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
+ "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
+ "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
+ msgstr ""
2377
+
2378
+ #: app/model/settings.php:965
2379
+ msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2380
+ msgstr "Публикувай, промотирай и сподели моите събития"
2381
+
2382
+ #: app/model/settings.php:988
2383
+ msgid "Templates cache improves site performance"
2384
+ msgstr "Кешът на шаблоните подобрява дейността на сайтa"
2385
+
2386
+ #: app/model/settings.php:1001
2387
+ msgid "Display events in <strong>calendar time zone</strong>"
2388
+ msgstr ""
2389
+
2390
+ #: app/model/settings.php:1004
2391
+ msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2392
+ msgstr ""
2393
+
2394
+ #: app/view/admin/add-new-event.php:26
2395
+ msgid "Event Details"
2396
+ msgstr "Подробности за събитието"
2397
+
2398
+ #: app/view/admin/add-new-event.php:423
2399
+ msgid "Set banner image"
2400
+ msgstr ""
2401
+
2402
+ #: app/view/admin/add-new-event.php:424
2403
+ msgid "Remove banner image"
2404
+ msgstr ""
2405
+
2406
+ #: app/view/admin/add-ons.php:68
2407
+ msgid "Add-ons for All In One Event Calendar"
2408
+ msgstr ""
2409
+
2410
+ #: app/view/admin/add-ons.php:71
2411
+ msgid "Browse All Extensions"
2412
+ msgstr ""
2413
+
2414
+ #: app/view/admin/add-ons.php:74
2415
+ msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2416
+ msgstr ""
2417
+
2418
+ #: app/view/admin/add-ons.php:77
2419
+ msgid "There was an error retrieving the extensions list from the server. Please try again later."
2420
+ msgstr ""
2421
+
2422
+ #: app/view/admin/all-events.php:16
2423
+ msgid "Author"
2424
+ msgstr "Автор"
2425
+
2426
+ #: app/view/admin/all-events.php:17
2427
+ msgid "Post Date"
2428
+ msgstr "Дата на публикувация"
2429
+
2430
+ #: app/view/admin/all-events.php:18
2431
+ msgid "Event date/time"
2432
+ msgstr "Дата и час на събитието"
2433
+
2434
+ #: app/view/admin/all-events.php:22
2435
+ msgid "Ticket Types"
2436
+ msgstr ""
2437
+
2438
+ #: app/view/admin/all-events.php:134
2439
+ msgid "Show All "
2440
+ msgstr "Покажи всички"
2441
+
2442
+ #: app/view/admin/all-events.php:147
2443
+ msgid "Show All Authors"
2444
+ msgstr ""
2445
+
2446
+ #: app/model/settings.php:746
2447
+ msgid "Strict compatibility content filtering"
2448
+ msgstr "Строго филтриране на съвместимостта"
2449
+
2450
+ #: app/model/settings.php:758
2451
+ msgid " <strong>Hide featured image</strong> from event details page"
2452
+ msgstr " <strong>Скрий показаното изображение</strong> от страницата с подробностите за събитието"
2453
+
2454
+ #: app/model/settings.php:761
2455
+ msgid "Select this option if your theme already displays each post's featured image."
2456
+ msgstr "Изберете тази опция ако темата вече показва изображението (featured) на всеки пост/публикация."
2457
+
2458
+ #: app/model/settings.php:772
2459
+ msgid "Input dates in this format"
2460
+ msgstr "Въведете датите в този формат"
2461
+
2462
+ #: app/model/settings.php:777
2463
+ msgid "Default (d/m/yyyy)"
2464
+ msgstr "По подразбиране (d/m/yyyy), например 3/12/2014"
2465
+
2466
+ #: app/model/settings.php:781
2467
+ msgid "US (m/d/yyyy)"
2468
+ msgstr "US (m/d/yyyy)"
2469
+
2470
+ #: app/model/settings.php:785
2471
+ msgid "ISO 8601 (yyyy-m-d)"
2472
+ msgstr "ISO 8601 (yyyy-m-d)"
2473
+
2474
+ #: app/model/settings.php:789
2475
+ msgid "Dotted (m.d.yyyy)"
2476
+ msgstr "Dotted (m.d.yyyy)"
2477
+
2478
+ #: app/model/settings.php:801
2479
+ msgid " Use <strong>24h time</strong> in time pickers"
2480
+ msgstr "Използвай <strong>24-часов формат</strong> в представяне на часа"
2481
+
2482
+ #: app/model/settings.php:812
2483
+ msgid "<strong>Disable address autocomplete</strong> function"
2484
+ msgstr "Направете недостъпна <strong>Функция за автоматично довършване на адреса</strong>"
2485
+
2486
+ #: app/model/settings.php:823
2487
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2488
+ msgstr "Използвайте конфигурирания <strong>регион</strong> (WordPress locale), за да предопределите функция за автоматично довършване "
2489
+
2490
+ #: app/model/settings.php:839
2491
+ msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2492
+ msgstr "Покажете стария бутон <strong>Публикувай своето събитие</strong> над календара за привилегировани потребители."
2493
+
2494
+ #: app/model/settings.php:842
2495
+ msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2496
+ msgstr "Инсталирай <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> за <strong>фронт енд формуляра Публикувай своето събитие</strong>."
2497
+
2498
+ #: app/model/settings.php:863
2499
+ msgid "Move calendar into this DOM element"
2500
+ msgstr "Преместване на календара в DOM element"
2501
+
2502
+ #: app/model/settings.php:865
2503
+ msgid ""
2504
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2505
+ "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2506
+ "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2507
+ "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2508
+ "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2509
+ "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2510
+ "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2511
+ "\t\t\t\t\t\tby the calendar."
2512
+ msgstr ""
2513
+
2514
+ #: app/model/settings.php:884
2515
+ msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2516
+ msgstr "<strong>Прескочи <tt>in_the_loop()</tt> check </strong>, което предпазва от многократни календарни резултати "
2517
+
2518
+ #: app/model/settings.php:887
2519
+ msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2520
+ msgstr "Опитайте се да активирате тази опция ако календарът не не появява на календарната страница. Това е необходимо за съвместимост на малък брой теми, които извикват формуляра <tt>the_content()</tt> извън The Loop. Иначе го оставане недостъпно."
2521
+
2522
+ #: app/model/settings.php:899
2523
+ msgid "Disable <strong>gzip</strong> compression."
2524
+ msgstr "Направи компресията <strong>gzip</strong> недостъпна."
2525
+
2526
+ #: app/model/settings.php:902
2527
+ msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2528
+ msgstr "Използвайте тази опция, само ако календара не е адаптивен. <a href=\"http://support.time.ly/disable-gzip-compression/\">Виж още</a> по този въпрос. (От версия 2.1 нагоре, gzip е недостъпен по подразбиране за максимална съвместимост.)"
2529
+
2530
+ #: app/model/settings.php:914
2531
+ msgid "Use frontend rendering."
2532
+ msgstr ""
2533
+
2534
+ #: app/model/settings.php:917
2535
+ msgid "Renders calendar views on the client rather than the server; can improve performance."
2536
+ msgstr ""
2537
+
2538
+ #: app/model/settings.php:493 app/view/calendar/widget.php:128
2539
+ msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2540
+ msgstr "За да изчистите маркираното, задръжте &#8984;/<abbr class=\"initialism\">CTRL</abbr> и размаркирайте."
2541
+
2542
+ #: app/model/settings.php:508
2543
+ msgid "Default calendar start date (optional)"
2544
+ msgstr "Начална дата на календара по подразбиране (незадължително)"
2545
+
2546
+ #: app/model/settings.php:519
2547
+ msgid "Agenda pages show at most"
2548
+ msgstr "Изгледът График показва най-много"
2549
+
2550
+ #: app/model/settings.php:532
2551
+ msgid "Week/Day view starts at"
2552
+ msgstr "Седмичен/Дневен изглед започва на"
2553
+
2554
+ #: app/model/settings.php:545
2555
+ msgid "Week/Day view ends at"
2556
+ msgstr "Седмичен/Дневен изглед приключва на"
2557
+
2558
+ #: app/model/settings.php:558
2559
+ msgid "<strong>Word-wrap event stubs</strong> in Month view"
2560
+ msgstr "<strong>Пренеси думите в тестето със събития</strong> в Месечен изглед"
2561
+
2562
+ #: app/model/settings.php:561
2563
+ msgid "Only applies to events that span a single day."
2564
+ msgstr "Отнася се само за събития, които обхващат на един ден."
2565
+
2566
+ #: app/model/settings.php:573
2567
+ msgid ""
2568
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2569
+ "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2570
+ "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2571
+ "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2572
+ "\t\t\t\t\t\tfrom last day shown</strong>"
2573
+ msgstr ""
2574
+ "В <span class=\"ai1ec-tooltip-toggle\"\n"
2575
+ "→\t→\t→\t→\t→\t→\tdata-original-title=\"Включително изглед График,\n"
2576
+ "→\t→\t→\t→\t→\t→\tуиджет Предстоящи събития, и някой разширени изгледи.\">\n"
2577
+ "→\t→\t→\t→\t→\t→\tИзгледи близки до изглед Градик</span>, <strong>включват всички събития\n"
2578
+ "→\t→\t→\t→\t→\t→\tот последния показан ден</strong>"
2579
+
2580
+ #: app/model/settings.php:589
2581
+ msgid "Keep all events <strong>expanded</strong> in Agenda view"
2582
+ msgstr "Показвай всички събития <strong>разгърнати</strong> в изглед График"
2583
+
2584
+ #: app/model/settings.php:601
2585
+ msgid "<strong>Show year</strong> in calendar date labels"
2586
+ msgstr "<strong>Покажи годината</strong> в етикета на календарните дати"
2587
+
2588
+ #: app/model/settings.php:613
2589
+ msgid "<strong>Show location in event titles</strong> in calendar views"
2590
+ msgstr "<strong>Покажи мястото в каретата на събитията</strong> в календарните изгледи"
2591
+
2592
+ #: app/model/settings.php:625
2593
+ msgid "<strong>Exclude</strong> events from search results"
2594
+ msgstr "<strong>Изключи</strong> събитията от резултатите на търсачката"
2595
+
2596
+ #: app/model/settings.php:637
2597
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2598
+ msgstr "Скрий бутоните <strong>Абонамент</strong>/<strong>Добави към календар</strong> в календарен и самостоятелен изглед на събитие"
2599
+
2600
+ #: app/model/settings.php:649
2601
+ msgid "Hide <strong>Get a Timely Calendar</strong> button"
2602
+ msgstr ""
2603
+
2604
+ #: app/model/settings.php:661
2605
+ msgid " Hide <strong>Google Maps</strong> until clicked"
2606
+ msgstr "Скрий <strong>Google Maps</strong> докато не са натиснати"
2607
+
2608
+ #: app/model/settings.php:673
2609
+ msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2610
+ msgstr " <strong>Прикрепи менюто за филтриране</strong> към горния край на прозореца, когато се скрива при превъртане на изгледа"
2611
+
2612
+ #: app/model/settings.php:676
2613
+ msgid "Only applies to first visible calendar found on the page."
2614
+ msgstr ""
2615
+
2616
+ #: app/model/settings.php:688
2617
+ msgid "Offset affixed filter bar vertically by"
2618
+ msgstr "Отмести прикрепената лента на филтъра вертикално с"
2619
+
2620
+ #: app/model/settings.php:703
2621
+ msgid "Wide screens only (&#8805; 1200px)"
2622
+ msgstr "Само за широк екран (&#8805; 1200px)"
2623
+
2624
+ #: app/model/settings.php:718
2625
+ msgid "Tablets only (< 980px)"
2626
+ msgstr "Само за таблети (< 980px)"
2627
+
2628
+ #: app/model/settings.php:733
2629
+ msgid "Phones only (< 768px)"
2630
+ msgstr "Само за телефони (< 768px)"
2631
+
2632
+ #: app/model/api.php:456
2633
+ msgid "Not available"
2634
+ msgstr ""
2635
+
2636
+ #: app/model/api.php:659
2637
+ msgid "%s.<br/>Detail: %s."
2638
+ msgstr ""
2639
+
2640
+ #: app/model/api.php:664
2641
+ msgid "API URL: %s.<br/>Detail: %s - %s"
2642
+ msgstr ""
2643
+
2644
+ #: app/model/api.php:672
2645
+ msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2646
+ msgstr ""
2647
+
2648
+ #: app/model/api.php:679
2649
+ msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2650
+ msgstr ""
2651
+
2652
+ #: app/model/event/parent.php:186
2653
+ msgid "Edit &#8220;%s&#8221;"
2654
+ msgstr "Редакция &#8220;%s&#8221;"
2655
+
2656
+ #: app/model/event/parent.php:193
2657
+ msgid "Base Event"
2658
+ msgstr "Събитие база"
2659
+
2660
+ #: app/model/review.php:169
2661
+ msgid "Feedback provided by user"
2662
+ msgstr ""
2663
+
2664
+ #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2665
+ msgid "Name"
2666
+ msgstr "Име"
2667
+
2668
+ #: app/model/review.php:173
2669
+ msgid "E-mail"
2670
+ msgstr ""
2671
+
2672
+ #: app/model/review.php:175
2673
+ msgid "Site URL"
2674
+ msgstr ""
2675
+
2676
+ #: app/model/review.php:177
2677
+ msgid "Message"
2678
+ msgstr ""
2679
+
2680
+ #: app/model/settings.php:401
2681
+ #: lib/html/element/setting/calendar-page-selector.php:50
2682
+ msgid "Calendar page"
2683
+ msgstr "Страница Календар"
2684
+
2685
+ #: app/model/settings.php:411
2686
+ msgid "Week starts on"
2687
+ msgstr "Седмицата започва на"
2688
+
2689
+ #: app/model/settings.php:424
2690
+ msgid "Available views"
2691
+ msgstr "Налични изгледи"
2692
+
2693
+ #: app/model/settings.php:432
2694
+ msgid "Agenda"
2695
+ msgid_plural "Agenda"
2696
+ msgstr[0] "График"
2697
+ msgstr[1] ""
2698
+
2699
+ #: app/model/settings.php:443
2700
+ msgid "Day"
2701
+ msgid_plural "Day"
2702
+ msgstr[0] "Ден"
2703
+ msgstr[1] ""
2704
+
2705
+ #: app/model/settings.php:454
2706
+ msgid "Month"
2707
+ msgid_plural "Month"
2708
+ msgstr[0] "Месец"
2709
+ msgstr[1] ""
2710
+
2711
+ #: app/model/settings.php:465
2712
+ msgid "Week"
2713
+ msgid_plural "Week"
2714
+ msgstr[0] "Седмица"
2715
+ msgstr[1] ""
2716
+
2717
+ #: app/model/settings.php:479
2718
+ msgid "Timezone"
2719
+ msgstr "Часова зона"
2720
+
2721
+ #: app/model/settings.php:492
2722
+ msgid "Preselected calendar filters"
2723
+ msgstr "Предварително зададени филтри на календара"
2724
+
2725
+ #: app/controller/javascript.php:509
2726
+ msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2727
+ msgstr ""
2728
+
2729
+ #: app/controller/javascript.php:516
2730
+ msgid "The end date can't be earlier than the start date."
2731
+ msgstr ""
2732
+
2733
+ #: app/controller/javascript.php:517
2734
+ msgid "For week and day view, you must select an interval of at least 6 hours."
2735
+ msgstr ""
2736
+
2737
+ #: app/model/api.php:40
2738
+ msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2739
+ msgstr ""
2740
+
2741
+ #: app/model/api.php:41
2742
+ msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2743
+ msgstr ""
2744
+
2745
+ #: app/model/api.php:42
2746
+ msgid "We were unable to Sign you Up for Time.ly Ticketing"
2747
+ msgstr ""
2748
+
2749
+ #: app/model/api.php:43
2750
+ msgid "We were unable to Sign you In for Time.ly Ticketing"
2751
+ msgstr ""
2752
+
2753
+ #: app/model/api.php:44
2754
+ msgid "We were unable to create the Event on Time.ly Ticketing"
2755
+ msgstr ""
2756
+
2757
+ #: app/model/api.php:45
2758
+ msgid "We were unable to update the Event on Time.ly Ticketing"
2759
+ msgstr ""
2760
+
2761
+ #: app/model/api.php:46
2762
+ msgid "The event has the option Tickets selected but any ticket was added."
2763
+ msgstr ""
2764
+
2765
+ #: app/model/api.php:47
2766
+ msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2767
+ msgstr ""
2768
+
2769
+ #: app/model/api.php:48
2770
+ msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2771
+ msgstr ""
2772
+
2773
+ #: app/model/api.php:49
2774
+ msgid "Payment preferences were not saved."
2775
+ msgstr ""
2776
+
2777
+ #: app/model/api.php:50
2778
+ msgid "Payment preferences were saved."
2779
+ msgstr ""
2780
+
2781
+ #: app/model/api.php:51
2782
+ msgid "Event not found inside the database."
2783
+ msgstr ""
2784
+
2785
+ #: app/model/api.php:52
2786
+ msgid "We were unable to get the Sales information from Time.ly Ticketing"
2787
+ msgstr ""
2788
+
2789
+ #: app/model/api.php:446
2790
+ msgid "Past Event"
2791
+ msgstr ""
2792
+
2793
+ #: app/model/api.php:448
2794
+ msgid "Event closed"
2795
+ msgstr ""
2796
+
2797
+ #: app/model/api.php:450
2798
+ msgid "Not available yet"
2799
+ msgstr ""
2800
+
2801
+ #: app/model/api.php:452
2802
+ msgid "Sale closed"
2803
+ msgstr ""
2804
+
2805
+ #: app/model/api.php:454
2806
+ msgid "Sold out"
2807
+ msgstr ""
2808
+
2809
+ #: app/controller/javascript.php:484
2810
+ msgid "Report"
2811
+ msgstr ""
2812
+
2813
+ #: app/controller/javascript.php:485
2814
+ msgid "Sale dates"
2815
+ msgstr ""
2816
+
2817
+ #: app/controller/javascript.php:486
2818
+ msgid "Limits"
2819
+ msgstr ""
2820
+
2821
+ #: app/controller/javascript.php:487
2822
+ msgid "Actions"
2823
+ msgstr ""
2824
+
2825
+ #: app/controller/javascript.php:488
2826
+ msgid "Sold:"
2827
+ msgstr ""
2828
+
2829
+ #: app/controller/javascript.php:489
2830
+ msgid "Left:"
2831
+ msgstr ""
2832
+
2833
+ #: app/controller/javascript.php:490
2834
+ msgid "Start:"
2835
+ msgstr ""
2836
+
2837
+ #: app/controller/javascript.php:491
2838
+ msgid "End:"
2839
+ msgstr ""
2840
+
2841
+ #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2842
+ msgid "Min:"
2843
+ msgstr ""
2844
+
2845
+ #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2846
+ msgid "Max:"
2847
+ msgstr ""
2848
+
2849
+ #: app/controller/javascript.php:494
2850
+ msgid "Attendees"
2851
+ msgstr ""
2852
+
2853
+ #: app/controller/javascript.php:495
2854
+ msgid "Hide Attendees"
2855
+ msgstr ""
2856
+
2857
+ #: app/controller/javascript.php:496
2858
+ msgid "Attendees List"
2859
+ msgstr ""
2860
+
2861
+ #: app/controller/javascript.php:497
2862
+ msgid "Guest Name"
2863
+ msgstr ""
2864
+
2865
+ #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2866
+ msgid "Status"
2867
+ msgstr ""
2868
+
2869
+ #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2870
+ #: app/view/event/ticket.php:71
2871
+ msgid "Email"
2872
+ msgstr "E-mail"
2873
+
2874
+ #: app/controller/javascript.php:500
2875
+ msgid "No attendees for this ticket type."
2876
+ msgstr ""
2877
+
2878
+ #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2879
+ #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2880
+ msgid "Edit"
2881
+ msgstr "Редакция"
2882
+
2883
+ #: app/controller/javascript.php:502
2884
+ msgid "Code"
2885
+ msgstr ""
2886
+
2887
+ #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2888
+ msgid "Unlimited"
2889
+ msgstr ""
2890
+
2891
+ #: app/controller/javascript.php:506
2892
+ msgid "Your message has been sent. Thank you for your feedback."
2893
+ msgstr ""
2894
+
2895
+ #: app/controller/javascript.php:507
2896
+ msgid "Your message has not been sent. Please try again or contact us."
2897
+ msgstr ""
2898
+
2899
+ #: app/controller/javascript.php:405
2900
+ msgid "Please enter a valid iCalendar URL."
2901
+ msgstr "Моля въведете валиден линк за iCalendar."
2902
+
2903
+ #: app/controller/javascript.php:408
2904
+ msgid "Please enter a valid email address."
2905
+ msgstr "Моля въведете валиден E-mail адрес."
2906
+
2907
+ #: app/controller/javascript.php:410
2908
+ msgid "Choose Image"
2909
+ msgstr "Избери изображение"
2910
+
2911
+ #: app/controller/javascript.php:413
2912
+ msgid "The value you have entered is not a valid CSS length."
2913
+ msgstr "Стойността, която сте въвели, е с невалидна CSS дължина."
2914
+
2915
+ #: app/controller/javascript.php:416
2916
+ msgid "Are you sure you want to reset your theme options to their default values?"
2917
+ msgstr "Сигурни ли сте, че искат да нулирате опциите на темата към стандартните им стойности."
2918
+
2919
+ #: app/controller/javascript.php:419
2920
+ msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2921
+ msgstr "Моля, въведете валидна ширина. Валидна ширина е между +90 и -90."
2922
+
2923
+ #: app/controller/javascript.php:422
2924
+ msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2925
+ msgstr "Моля, въведете валидна дължина. Валидна дължина е между +180 и -180."
2926
+
2927
+ #: app/controller/javascript.php:425
2928
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2929
+ msgstr "Когато полето за отметка \"Вкарай координати\" е селектирано, полето \"Географска ширина\" е задължително."
2930
+
2931
+ #: app/controller/javascript.php:428
2932
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2933
+ msgstr "Когато полето за отметка \"Вкарайте координати\" e тикнат, полето \"Дължина\" е задължително."
2934
+
2935
+ #: app/controller/javascript.php:431
2936
+ msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2937
+ msgstr ""
2938
+
2939
+ #: app/controller/javascript.php:434
2940
+ msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2941
+ msgstr "Линкът, който сте въвели в <b>Деца на събитието и Билети</b> &gt; <b>Линк за закупуване на билети</b> е невалиден."
2942
+
2943
+ #: app/controller/javascript.php:437
2944
+ msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2945
+ msgstr "Напомняне, че линковете започват или с \"http://\" или с \"https://\"."
2946
+
2947
+ #: app/controller/javascript.php:440
2948
+ msgid "Loading&hellip;"
2949
+ msgstr ""
2950
+
2951
+ #: app/controller/javascript.php:443
2952
+ msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2953
+ msgstr ""
2954
+
2955
+ #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2956
+ msgid "Preview:"
2957
+ msgstr ""
2958
+
2959
+ #: app/controller/javascript.php:474
2960
+ msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2961
+ msgstr ""
2962
+
2963
+ #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2964
+ msgid "Ticketing Details"
2965
+ msgstr ""
2966
+
2967
+ #: app/controller/javascript.php:480
2968
+ msgid "Hide Ticketing Details"
2969
+ msgstr ""
2970
+
2971
+ #: app/controller/javascript.php:481
2972
+ msgid "Loading tickets details..."
2973
+ msgstr ""
2974
+
2975
+ #: app/controller/javascript.php:482
2976
+ msgid "Type and price"
2977
+ msgstr ""
2978
+
2979
+ #: app/controller/javascript.php:483
2980
+ msgid "Info"
2981
+ msgstr ""
2982
+
2983
+ #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2984
+ #: app/view/admin/add-ons.php:27
2985
+ msgid "Add-ons"
2986
+ msgstr "Добавки"
2987
+
2988
+ #: app/controller/front.php:343
2989
+ msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
2990
+ msgstr "Активната тема на календара не може да се инициализира правилно. Вместо това бе активирана стандартната темата. Моля посетете %s и се опитайте да активирате отново темата, ръчно."
2991
+
2992
+ #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
2993
+ #: app/view/admin/theme-switching.php:55
2994
+ msgid "Calendar Themes"
2995
+ msgstr "Теми на календара"
2996
+
2997
+ #: app/controller/front.php:990
2998
+ msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
2999
+ msgstr "Базата данни е дефектна. Най-вероятно се е провалило предходна актуализация. Моля възстановете таблиците на All-in-One Event Calendar от предходен backup и опитайте отново. <br>Бяха намерени следните грешки:<br>%s"
3000
+
3001
+ #: app/controller/javascript-widget.php:48
3002
+ msgid "You must choose the Calendar page before using the Super Widget"
3003
+ msgstr ""
3004
+
3005
+ #: app/controller/javascript.php:402
3006
+ msgid "This feed is already being imported."
3007
+ msgstr "Този абонамент вече се импортва."
language/all-in-one-event-calendar-bg_BG.mo CHANGED
Binary file
language/all-in-one-event-calendar-bg_BG.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-02-03 00:58:39+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -276,7 +276,7 @@ msgstr "Рамка на категорията"
276
 
277
  #: public/admin/feed_row.php:104
278
  msgid "Refreshing&#8230;"
279
- msgstr "Обновяване"
280
 
281
  #: public/admin/feed_row.php:106
282
  msgid "Refresh"
@@ -284,7 +284,7 @@ msgstr "Опресни"
284
 
285
  #: public/admin/feed_row.php:119
286
  msgid "Removing&#8230;"
287
- msgstr ""
288
 
289
  #: public/admin/feed_row.php:121
290
  msgid "Remove"
@@ -601,7 +601,7 @@ msgstr "Приключва след"
601
  #: public/admin/box_repeat.php:109
602
  #: public/admin/plugins/ics/display_feeds.php:90
603
  msgid "Please wait&#8230;"
604
- msgstr "Моля изчакайте"
605
 
606
  #: public/admin/box_repeat.php:111
607
  msgid "Apply"
@@ -750,7 +750,7 @@ msgstr ""
750
 
751
  #: public/admin/box_event_cost.php:105
752
  msgid "Description:"
753
- msgstr "Описание:"
754
 
755
  #: public/admin/box_event_cost.php:111
756
  msgid "(Optional)"
@@ -913,7 +913,7 @@ msgstr "Да показва колко дни:"
913
 
914
  #: public/admin/agenda-widget-form.php:26
915
  msgid "Limit to:"
916
- msgstr ""
917
 
918
  #: public/admin/agenda-widget-form.php:30
919
  msgid "Events with these <strong>Categories</strong>"
@@ -1067,7 +1067,7 @@ msgstr "Категория"
1067
  #: lib/post/custom-type.php:87
1068
  msgctxt "Event categories menu item"
1069
  msgid "Organize"
1070
- msgstr "Организатор"
1071
 
1072
  #: lib/post/custom-type.php:94
1073
  msgctxt "Event tags taxonomy"
@@ -1514,35 +1514,35 @@ msgstr "Изтрит абонамент (feed)"
1514
 
1515
  #: lib/captcha/provider/nocaptcha.php:31
1516
  msgid "noCAPTCHA public key:"
1517
- msgstr ""
1518
 
1519
  #: lib/captcha/provider/nocaptcha.php:47
1520
  msgid "noCAPTCHA private key:"
1521
- msgstr ""
1522
 
1523
  #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
  msgid "Please try verifying you are human again."
1525
- msgstr ""
1526
 
1527
  #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
  msgid "There was an error reading the human verification data. Please try again."
1529
- msgstr ""
1530
 
1531
  #: lib/captcha/provider/recaptcha.php:32
1532
  msgid "reCAPTCHA public key:"
1533
- msgstr ""
1534
 
1535
  #: lib/captcha/provider/recaptcha.php:48
1536
  msgid "reCAPTCHA private key:"
1537
- msgstr ""
1538
 
1539
  #: lib/captcha/provider/recaptcha.php:66
1540
  msgid "Human verification"
1541
- msgstr ""
1542
 
1543
  #: lib/captcha/provider/recaptcha.php:67
1544
  msgid "Loading reCAPTCHA..."
1545
- msgstr ""
1546
 
1547
  #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
  #: lib/clone/renderer-helper.php:45
@@ -1587,7 +1587,7 @@ msgstr "Редактирай това повторение (%s)"
1587
 
1588
  #: app/view/event/single.php:195
1589
  msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
- msgstr ""
1591
 
1592
  #: app/view/event/single.php:206
1593
  msgid "View original"
@@ -1655,7 +1655,7 @@ msgstr ""
1655
 
1656
  #: lib/calendar-feed/ics.php:350
1657
  msgid "Categories (optional)"
1658
- msgstr ""
1659
 
1660
  #: app/view/event/content.php:33 app/view/event/single.php:119
1661
  msgid "When:"
@@ -1800,11 +1800,11 @@ msgstr "Дни"
1800
 
1801
  #: app/view/calendar/widget.php:106
1802
  msgid "Number of events to show"
1803
- msgstr ""
1804
 
1805
  #: app/view/calendar/widget.php:115
1806
  msgid "Number of days to show"
1807
- msgstr ""
1808
 
1809
  #: app/view/calendar/widget.php:124
1810
  msgid "Show events filtered for the following tags/categories"
@@ -1840,7 +1840,7 @@ msgstr "Абонирай се"
1840
 
1841
  #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
  msgid "Get a Timely Calendar"
1843
- msgstr ""
1844
 
1845
  #: app/view/calendar/subscribe-button.php:22
1846
  msgid "Add to Timely Calendar"
@@ -1977,19 +1977,19 @@ msgstr ""
1977
 
1978
  #: app/view/admin/widget-creator.php:131
1979
  msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
- msgstr ""
1981
 
1982
  #: app/view/admin/widget-creator.php:132
1983
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
- msgstr ""
1985
 
1986
  #: app/view/admin/widget-creator.php:134
1987
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
- msgstr ""
1989
 
1990
  #: app/view/admin/widget-creator.php:140
1991
  msgid "Paste this code onto your site:"
1992
- msgstr ""
1993
 
1994
  #: app/view/admin/widget-creator.php:141
1995
  msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
@@ -2172,7 +2172,7 @@ msgstr ""
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
2175
- msgstr ""
2176
 
2177
  #: app/view/admin/settings.php:191
2178
  msgid "Password:"
@@ -2240,7 +2240,7 @@ msgstr ""
2240
 
2241
  #: app/view/admin/organize.php:100
2242
  msgid "Organize Events"
2243
- msgstr ""
2244
 
2245
  #: app/view/admin/settings.php:30
2246
  msgid "All-in-One Event Calendar: Settings"
@@ -2377,7 +2377,7 @@ msgstr ""
2377
 
2378
  #: app/model/settings.php:965
2379
  msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2380
- msgstr "Публикувай, промотирай и сподели моите събития"
2381
 
2382
  #: app/model/settings.php:988
2383
  msgid "Templates cache improves site performance"
@@ -2529,7 +2529,7 @@ msgstr "Използвайте тази опция, само ако календ
2529
 
2530
  #: app/model/settings.php:914
2531
  msgid "Use frontend rendering."
2532
- msgstr ""
2533
 
2534
  #: app/model/settings.php:917
2535
  msgid "Renders calendar views on the client rather than the server; can improve performance."
@@ -2599,7 +2599,7 @@ msgstr "Скрий бутоните <strong>Абонамент</strong>/<strong>
2599
 
2600
  #: app/model/settings.php:649
2601
  msgid "Hide <strong>Get a Timely Calendar</strong> button"
2602
- msgstr ""
2603
 
2604
  #: app/model/settings.php:661
2605
  msgid " Hide <strong>Google Maps</strong> until clicked"
@@ -2728,11 +2728,11 @@ msgstr ""
2728
 
2729
  #: app/controller/javascript.php:516
2730
  msgid "The end date can't be earlier than the start date."
2731
- msgstr ""
2732
 
2733
  #: app/controller/javascript.php:517
2734
  msgid "For week and day view, you must select an interval of at least 6 hours."
2735
- msgstr ""
2736
 
2737
  #: app/model/api.php:40
2738
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
@@ -2946,7 +2946,7 @@ msgstr "Напомняне, че линковете започват или с
2946
 
2947
  #: app/controller/javascript.php:440
2948
  msgid "Loading&hellip;"
2949
- msgstr ""
2950
 
2951
  #: app/controller/javascript.php:443
2952
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
@@ -2954,11 +2954,11 @@ msgstr ""
2954
 
2955
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2956
  msgid "Preview:"
2957
- msgstr ""
2958
 
2959
  #: app/controller/javascript.php:474
2960
  msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2961
- msgstr ""
2962
 
2963
  #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2964
  msgid "Ticketing Details"
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-03 01:41:04+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
276
 
277
  #: public/admin/feed_row.php:104
278
  msgid "Refreshing&#8230;"
279
+ msgstr "Обновяване&#8230"
280
 
281
  #: public/admin/feed_row.php:106
282
  msgid "Refresh"
284
 
285
  #: public/admin/feed_row.php:119
286
  msgid "Removing&#8230;"
287
+ msgstr "Премахване&#8230;"
288
 
289
  #: public/admin/feed_row.php:121
290
  msgid "Remove"
601
  #: public/admin/box_repeat.php:109
602
  #: public/admin/plugins/ics/display_feeds.php:90
603
  msgid "Please wait&#8230;"
604
+ msgstr "Моля изчакайте&#8230"
605
 
606
  #: public/admin/box_repeat.php:111
607
  msgid "Apply"
750
 
751
  #: public/admin/box_event_cost.php:105
752
  msgid "Description:"
753
+ msgstr "Описание и всяка друга информация:"
754
 
755
  #: public/admin/box_event_cost.php:111
756
  msgid "(Optional)"
913
 
914
  #: public/admin/agenda-widget-form.php:26
915
  msgid "Limit to:"
916
+ msgstr "Ограничи до:"
917
 
918
  #: public/admin/agenda-widget-form.php:30
919
  msgid "Events with these <strong>Categories</strong>"
1067
  #: lib/post/custom-type.php:87
1068
  msgctxt "Event categories menu item"
1069
  msgid "Organize"
1070
+ msgstr "Организация на групи"
1071
 
1072
  #: lib/post/custom-type.php:94
1073
  msgctxt "Event tags taxonomy"
1514
 
1515
  #: lib/captcha/provider/nocaptcha.php:31
1516
  msgid "noCAPTCHA public key:"
1517
+ msgstr "noCAPTCHA public key:"
1518
 
1519
  #: lib/captcha/provider/nocaptcha.php:47
1520
  msgid "noCAPTCHA private key:"
1521
+ msgstr "noCAPTCHA private key:"
1522
 
1523
  #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
  msgid "Please try verifying you are human again."
1525
+ msgstr "Моля опитайте да потвърдите, че сте човек, отново."
1526
 
1527
  #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
  msgid "There was an error reading the human verification data. Please try again."
1529
+ msgstr "There was an error reading the human verification data. Please try again."
1530
 
1531
  #: lib/captcha/provider/recaptcha.php:32
1532
  msgid "reCAPTCHA public key:"
1533
+ msgstr "reCAPTCHA public key:"
1534
 
1535
  #: lib/captcha/provider/recaptcha.php:48
1536
  msgid "reCAPTCHA private key:"
1537
+ msgstr "reCAPTCHA private key:"
1538
 
1539
  #: lib/captcha/provider/recaptcha.php:66
1540
  msgid "Human verification"
1541
+ msgstr "Human verification"
1542
 
1543
  #: lib/captcha/provider/recaptcha.php:67
1544
  msgid "Loading reCAPTCHA..."
1545
+ msgstr "Loading reCAPTCHA..."
1546
 
1547
  #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
  #: lib/clone/renderer-helper.php:45
1587
 
1588
  #: app/view/event/single.php:195
1589
  msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
+ msgstr "Това събитие е заимствано от друг сайт <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1591
 
1592
  #: app/view/event/single.php:206
1593
  msgid "View original"
1655
 
1656
  #: lib/calendar-feed/ics.php:350
1657
  msgid "Categories (optional)"
1658
+ msgstr "Категории (по желание)"
1659
 
1660
  #: app/view/event/content.php:33 app/view/event/single.php:119
1661
  msgid "When:"
1800
 
1801
  #: app/view/calendar/widget.php:106
1802
  msgid "Number of events to show"
1803
+ msgstr "Брой събития за показване"
1804
 
1805
  #: app/view/calendar/widget.php:115
1806
  msgid "Number of days to show"
1807
+ msgstr "Брой дни за показване"
1808
 
1809
  #: app/view/calendar/widget.php:124
1810
  msgid "Show events filtered for the following tags/categories"
1840
 
1841
  #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
  msgid "Get a Timely Calendar"
1843
+ msgstr "Get a Timely Calendar"
1844
 
1845
  #: app/view/calendar/subscribe-button.php:22
1846
  msgid "Add to Timely Calendar"
1977
 
1978
  #: app/view/admin/widget-creator.php:131
1979
  msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
+ msgstr "Използвайте този инструмент, за да генерирате код, с който можете да добавите на <strong>външен сайт</strong>, за да поставите нов календар и джаджи"
1981
 
1982
  #: app/view/admin/widget-creator.php:132
1983
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
+ msgstr "<h4>Внимание!</h4><p>Тези джаджи са създадени, за да бъдат добавени <strong>само на външни сайтове</strong> и могат да предизвикат конфликт, ако се използват на един и същи WP сайт.</p>"
1985
 
1986
  #: app/view/admin/widget-creator.php:134
1987
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
+ msgstr "<p>Изполвайте<a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a>, за да добавите джаджи на събития към своя WP сайт, по съшия начин както и всяка друга джаджа, или използвайте <a href=\"%s\" target=\"_blank\">shortcodes</a>, за да вмъкнете пълен календар.</strong></p>"
1989
 
1990
  #: app/view/admin/widget-creator.php:140
1991
  msgid "Paste this code onto your site:"
1992
+ msgstr "Пейстнете този код на вашия сайт:"
1993
 
1994
  #: app/view/admin/widget-creator.php:141
1995
  msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
2175
+ msgstr "Email:"
2176
 
2177
  #: app/view/admin/settings.php:191
2178
  msgid "Password:"
2240
 
2241
  #: app/view/admin/organize.php:100
2242
  msgid "Organize Events"
2243
+ msgstr "Организация на Събития"
2244
 
2245
  #: app/view/admin/settings.php:30
2246
  msgid "All-in-One Event Calendar: Settings"
2377
 
2378
  #: app/model/settings.php:965
2379
  msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2380
+ msgstr "<strong>Публикувай, промотирай и сподели моите събития</strong> отбелязани като публични в мрежата на Timely. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2381
 
2382
  #: app/model/settings.php:988
2383
  msgid "Templates cache improves site performance"
2529
 
2530
  #: app/model/settings.php:914
2531
  msgid "Use frontend rendering."
2532
+ msgstr "Използвай фронтенд рендъринг."
2533
 
2534
  #: app/model/settings.php:917
2535
  msgid "Renders calendar views on the client rather than the server; can improve performance."
2599
 
2600
  #: app/model/settings.php:649
2601
  msgid "Hide <strong>Get a Timely Calendar</strong> button"
2602
+ msgstr "Скрий бутона <strong>Get a Timely Calendar</strong> "
2603
 
2604
  #: app/model/settings.php:661
2605
  msgid " Hide <strong>Google Maps</strong> until clicked"
2728
 
2729
  #: app/controller/javascript.php:516
2730
  msgid "The end date can't be earlier than the start date."
2731
+ msgstr "Крайната дата не може да е по-рано от началната дата."
2732
 
2733
  #: app/controller/javascript.php:517
2734
  msgid "For week and day view, you must select an interval of at least 6 hours."
2735
+ msgstr "За седмичен или дневен изглед, трябва да изберете интервал от поне 6 часа."
2736
 
2737
  #: app/model/api.php:40
2738
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2946
 
2947
  #: app/controller/javascript.php:440
2948
  msgid "Loading&hellip;"
2949
+ msgstr "Зарежда&hellip;"
2950
 
2951
  #: app/controller/javascript.php:443
2952
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2954
 
2955
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2956
  msgid "Preview:"
2957
+ msgstr "Преглед:"
2958
 
2959
  #: app/controller/javascript.php:474
2960
  msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2961
+ msgstr "Зарежда преглед&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2962
 
2963
  #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2964
  msgid "Ticketing Details"
language/all-in-one-event-calendar-ca.mo CHANGED
Binary file
language/all-in-one-event-calendar-ca.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:44:12+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -1836,7 +1836,7 @@ msgstr "Subscriu-te"
1836
 
1837
  #: app/view/calendar/page.php:262 app/view/event/single.php:118
1838
  msgid "Get a Timely Calendar"
1839
- msgstr "Consigue un calendari de Timely"
1840
 
1841
  #: app/view/calendar/subscribe-button.php:22
1842
  msgid "Add to Timely Calendar"
@@ -1977,7 +1977,7 @@ msgstr ""
1977
 
1978
  #: app/view/admin/widget-creator.php:132
1979
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1980
- msgstr ""
1981
 
1982
  #: app/view/admin/widget-creator.php:134
1983
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
@@ -2719,7 +2719,7 @@ msgstr ""
2719
 
2720
  #: app/controller/javascript.php:516
2721
  msgid "The end date can't be earlier than the start date."
2722
- msgstr ""
2723
 
2724
  #: app/controller/javascript.php:517
2725
  msgid "For week and day view, you must select an interval of at least 6 hours."
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-03 01:43:45+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
1836
 
1837
  #: app/view/calendar/page.php:262 app/view/event/single.php:118
1838
  msgid "Get a Timely Calendar"
1839
+ msgstr "Aconsegueix un calendari de Timely"
1840
 
1841
  #: app/view/calendar/subscribe-button.php:22
1842
  msgid "Add to Timely Calendar"
1977
 
1978
  #: app/view/admin/widget-creator.php:132
1979
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1980
+ msgstr "<h4>Atenció!</h4><p>Aquests widgets estan dissenyats per a incrustar-los <strong>només en webs externes</strong> i poden provocar conflictes si s'utilitzen dins la mateixa web de Wordpress.</p>"
1981
 
1982
  #: app/view/admin/widget-creator.php:134
1983
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
2719
 
2720
  #: app/controller/javascript.php:516
2721
  msgid "The end date can't be earlier than the start date."
2722
+ msgstr "La data d'acabament no pot ser anterior a la d'inici"
2723
 
2724
  #: app/controller/javascript.php:517
2725
  msgid "For week and day view, you must select an interval of at least 6 hours."
language/all-in-one-event-calendar-cs.mo ADDED
Binary file
language/all-in-one-event-calendar-cs.po ADDED
@@ -0,0 +1,3003 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of 2.3 in Czech
2
+ # This file is distributed under the same license as the 2.3 package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-01-21 20:44:58+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
+ "Project-Id-Version: 2.3\n"
12
+
13
+ #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
+ #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
+ msgid "Event background"
16
+ msgstr "Pozadí události"
17
+
18
+ #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
+ #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
+ msgid "Event time background"
21
+ msgstr "Pozadí času události"
22
+
23
+ #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
+ #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
+ msgid "Event text"
26
+ msgstr "Text události"
27
+
28
+ #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
+ #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
+ msgid "Month view date background"
31
+ msgstr "Pozadí datumu měsíčního zobrazení"
32
+
33
+ #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
+ #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
+ msgid "Week/day view now marker"
36
+ msgstr ""
37
+
38
+ #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
+ #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
+ msgid "Date label accent color"
41
+ msgstr "Barva zvýraznění názvu datumu"
42
+
43
+ #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
+ #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
+ msgid "Date label background"
46
+ msgstr "Pozadí názvu datumu"
47
+
48
+ #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
+ #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
+ msgid "Date background"
51
+ msgstr "Pozadí kalendářního data"
52
+
53
+ #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
+ #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
+ msgid "Today background"
56
+ msgstr "Pozadí kalendářního \"dnes\""
57
+
58
+ #. Plugin Name of the plugin/theme
59
+ msgid "All-in-One Event Calendar by Time.ly"
60
+ msgstr "All-in-One Event Calendar od Time.ly"
61
+
62
+ #. Description of the plugin/theme
63
+ msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
+ msgstr "Kalendářní systém s měsíčními, týdenními, denními a agenda pohledy, v brzké budoucnosti s událostními widgety, barevnými kategoriemi, opakovanými událostmi a importem/exportem ics. zdrojů."
65
+
66
+ #. Author of the plugin/theme
67
+ msgid "Time.ly Network Inc."
68
+ msgstr "Time.ly Network Inc."
69
+
70
+ #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
+ #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
+ msgid "List item background (active/hover)"
73
+ msgstr ""
74
+
75
+ #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
+ #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
+ msgid "Input field placeholder text"
78
+ msgstr ""
79
+
80
+ #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
+ #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
+ msgid "Today color"
83
+ msgstr "Dnes barva"
84
+
85
+ #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
+ #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
+ msgid "All-day badge color"
88
+ msgstr "Barva označení celodenní události"
89
+
90
+ #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
+ #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
+ msgid "Event image shadow"
93
+ msgstr "Stín obrázku události"
94
+
95
+ #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
+ #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
+ msgid "Event default color"
98
+ msgstr "Výchozí barva události"
99
+
100
+ #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
+ #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
+ msgid "Event default color (hover)"
103
+ msgstr "Výchozí barva události (hover)"
104
+
105
+ #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
+ #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
+ msgid "All-day/multi-day event stub text"
108
+ msgstr ""
109
+
110
+ #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
+ #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
+ msgid "All-day/multi-day event stub text shadow"
113
+ msgstr ""
114
+
115
+ #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
+ #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
+ msgid "Event border"
118
+ msgstr "Ohraničení události"
119
+
120
+ #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
+ #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
+ msgid "Button text"
123
+ msgstr "Text tlačítka"
124
+
125
+ #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
+ #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
+ msgid "Input field text"
128
+ msgstr "Text vstupního pole"
129
+
130
+ #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
+ #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
+ msgid "Input field background"
133
+ msgstr "Pozadí vstupního pole"
134
+
135
+ #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
+ #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
+ msgid "Input field border"
138
+ msgstr "Ohraničení vstupního pole"
139
+
140
+ #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
+ #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
+ msgid "Input field border (focus)"
143
+ msgstr ""
144
+
145
+ #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
+ #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
+ msgid "Input field background (disabled)"
148
+ msgstr ""
149
+
150
+ #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
+ #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
+ msgid "Field label"
153
+ msgstr "Název pole"
154
+
155
+ #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
+ #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
+ msgid "Dropdown list background"
158
+ msgstr ""
159
+
160
+ #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
+ #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
+ msgid "Dropdown list border"
163
+ msgstr "Ohraničení dropdown seznamu"
164
+
165
+ #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
+ #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
+ msgid "List item text"
168
+ msgstr ""
169
+
170
+ #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
+ #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
+ msgid "List item text (active/hover)"
173
+ msgstr ""
174
+
175
+ #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
+ msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
+ msgstr "Nová šablona aktivována. <a href=\"%s\">Navštívit stránku</a>"
178
+
179
+ #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
+ msgid "Theme deleted."
181
+ msgstr "Šablona smazána."
182
+
183
+ #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
+ msgid "Manage Themes"
185
+ msgstr "Spravovat šablony"
186
+
187
+ #: public/admin/themes-install.php:40
188
+ msgctxt "theme"
189
+ msgid "Install Themes"
190
+ msgstr "Instalovat šablony"
191
+
192
+ #: public/admin/themes-updated.php:5
193
+ msgid "Update Calendar Themes"
194
+ msgstr "Aktualizovat šablony kalendáře"
195
+
196
+ #: public/admin/themes-updated.php:15
197
+ msgid "All-in-One Event Calendar Settings »"
198
+ msgstr "Nastavení All-in-One Event Calendar »"
199
+
200
+ #: public/admin/themes.php:18
201
+ msgid "Current Calendar Theme"
202
+ msgstr "Aktuální šablona kalendáře"
203
+
204
+ #: public/admin/themes.php:21
205
+ msgid "Current theme preview"
206
+ msgstr "Náhled aktuální šablony"
207
+
208
+ #: public/admin/themes.php:47
209
+ msgid "Available Calendar Themes"
210
+ msgstr "Dostupné šablony kalendáře"
211
+
212
+ #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
+ #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
+ msgid "Body background"
215
+ msgstr "Pozadí těla stránky"
216
+
217
+ #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
+ #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
+ msgid "Text color"
220
+ msgstr "Barva textu"
221
+
222
+ #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
+ #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
+ msgid "Text emboss"
225
+ msgstr "Stínování textu"
226
+
227
+ #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
+ #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
+ msgid "Link"
230
+ msgstr "Link"
231
+
232
+ #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
+ #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
+ msgid "Link (hover)"
235
+ msgstr "Odkaz (hover)"
236
+
237
+ #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
+ #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
+ msgid "Base font"
240
+ msgstr "Základní písmo"
241
+
242
+ #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
+ #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
+ msgid "Base font size"
245
+ msgstr "Velikost základního písma"
246
+
247
+ #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
+ #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
+ msgid "Table background"
250
+ msgstr "Pozadí tabulky"
251
+
252
+ #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
+ #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
+ msgid "Table header background"
255
+ msgstr "Pozadí hlavičky tabulky"
256
+
257
+ #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
+ #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
+ msgid "Table header text"
260
+ msgstr "Text hlavičky tabulky"
261
+
262
+ #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
+ #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
+ msgid "Primary brand color"
265
+ msgstr "Primární barva značky"
266
+
267
+ #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
+ #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
+ msgid "Button background"
270
+ msgstr "Pozadí tlačítka"
271
+
272
+ #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
+ #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
+ msgid "Button border"
275
+ msgstr "Okraj tlačítka"
276
+
277
+ #: public/admin/feed_row.php:104
278
+ msgid "Refreshing&#8230;"
279
+ msgstr "Obnovuji&#8230;"
280
+
281
+ #: public/admin/feed_row.php:106
282
+ msgid "Refresh"
283
+ msgstr "Obnovit"
284
+
285
+ #: public/admin/feed_row.php:119
286
+ msgid "Removing&#8230;"
287
+ msgstr "Ostraňuji&#8230;"
288
+
289
+ #: public/admin/feed_row.php:121
290
+ msgid "Remove"
291
+ msgstr "Odstranit"
292
+
293
+ #: public/admin/import.php:6
294
+ msgid "Successfully imported events:"
295
+ msgstr "Úspěšně naimportované události:"
296
+
297
+ #: public/admin/plugins/ics/display_feeds.php:2
298
+ msgid ""
299
+ "Configure which other calendars your own calendar subscribes to.\n"
300
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
302
+ " imported periodically."
303
+ msgstr ""
304
+
305
+ #: public/admin/plugins/ics/display_feeds.php:14
306
+ msgid "Check for new events"
307
+ msgstr "Zkontrolovat nové události"
308
+
309
+ #: public/admin/plugins/ics/display_feeds.php:45
310
+ msgid "Allow comments on imported events"
311
+ msgstr "Povolit komentáře u importovaných událostí"
312
+
313
+ #: public/admin/plugins/ics/display_feeds.php:52
314
+ msgid "Show map on imported events"
315
+ msgstr "Zobrazit mapu v importovaných událostech"
316
+
317
+ #: public/admin/plugins/ics/display_feeds.php:59
318
+ msgid "Import any tags/categories provided by feed, in addition those selected above"
319
+ msgstr ""
320
+
321
+ #: public/admin/plugins/ics/display_feeds.php:93
322
+ msgid "Add new subscription"
323
+ msgstr "Přidat nový odběr"
324
+
325
+ #: public/admin/plugins/ics/display_feeds.php:96
326
+ msgid "Update subscription"
327
+ msgstr ""
328
+
329
+ #: public/admin/row_custom.php:3
330
+ msgid "Custom dates:"
331
+ msgstr "Uživateslké datum:"
332
+
333
+ #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
334
+ #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
335
+ #: public/admin/row_yearly.php:3
336
+ msgid "Every"
337
+ msgstr "Každý"
338
+
339
+ #: public/admin/row_monthly.php:16
340
+ msgid "On day of the month"
341
+ msgstr "Ve dni měsíce"
342
+
343
+ #: public/admin/row_monthly.php:23
344
+ msgid "On day of the week"
345
+ msgstr "Den v týdnu"
346
+
347
+ #: public/admin/row_weekly.php:12
348
+ msgctxt "Recurrence editor - weekly tab"
349
+ msgid "On"
350
+ msgstr "V"
351
+
352
+ #: public/admin/row_yearly.php:12
353
+ msgctxt "Recurrence editor - yearly tab"
354
+ msgid "In"
355
+ msgstr "V"
356
+
357
+ #: public/admin/settings.php:19
358
+ msgid "Update Settings"
359
+ msgstr "Aktualizovat nastavení"
360
+
361
+ #: public/admin/themes-install.php:4
362
+ msgid "The active theme is broken. Reverting to the default theme."
363
+ msgstr "Aktivovaná šablona je poškozená. Nastavuji výchozí šablonu."
364
+
365
+ #: public/admin/themes-install.php:13
366
+ msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
367
+ msgstr "Nové téma bylo aktivováno. Toto téma podporuje práci s widgety. Pro nastavení prosím navštivte <a href=\"%s\">widgets settings</a> ."
368
+
369
+ #: public/admin/calendar_tasks.php:24
370
+ msgid "Manage Events"
371
+ msgstr "Spravovat události"
372
+
373
+ #: public/admin/calendar_tasks.php:27
374
+ msgid "View and edit all your events."
375
+ msgstr "Zobrazit a upravit všechny vaše události."
376
+
377
+ #: public/admin/calendar_tasks.php:39
378
+ msgid "Manage Event Categories"
379
+ msgstr "Upravit kategorie událostí"
380
+
381
+ #: public/admin/calendar_tasks.php:42
382
+ msgid "Organize and color-code your events."
383
+ msgstr "Seřadit a označit své události barevným kódem."
384
+
385
+ #: public/admin/calendar_tasks.php:50
386
+ msgid "Choose Your Theme"
387
+ msgstr "Zvolte šablonu"
388
+
389
+ #: public/admin/calendar_tasks.php:53
390
+ msgid "Change the look and feel."
391
+ msgstr "Pondělí"
392
+
393
+ #: public/admin/calendar_tasks.php:63
394
+ msgid "Manage Calendar Feeds"
395
+ msgstr "Spravovat odběry kalendářů"
396
+
397
+ #: public/admin/calendar_tasks.php:66
398
+ msgid "Subscribe to other calendars."
399
+ msgstr "Přihlásit se k odběru dalších kalendářů."
400
+
401
+ #: public/admin/calendar_tasks.php:74
402
+ msgid "Edit Calendar Settings"
403
+ msgstr "Upravit nastavení kalendáře"
404
+
405
+ #: public/admin/calendar_tasks.php:77
406
+ msgid "Make this calendar your own."
407
+ msgstr "Přizpůsobte si kalendář."
408
+
409
+ #: public/admin/cron_freq.php:3
410
+ msgid "Hourly"
411
+ msgstr "Každou hodinu"
412
+
413
+ #: public/admin/cron_freq.php:6
414
+ msgid "Twice Daily"
415
+ msgstr "Dvakrát denně"
416
+
417
+ #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
418
+ msgid "iCalendar/.ics Feed URL:"
419
+ msgstr "Adresa URL iCalendar/.ics odběru:"
420
+
421
+ #: public/admin/feed_row.php:24
422
+ msgid "Event categories:"
423
+ msgstr "Kategorie událostí:"
424
+
425
+ #: public/admin/feed_row.php:31
426
+ msgid "Tag with"
427
+ msgstr "Oštítkovat s"
428
+
429
+ #: public/admin/feed_row.php:40
430
+ msgid "Allow comments"
431
+ msgstr "Povolit komentáře"
432
+
433
+ #: public/admin/feed_row.php:51
434
+ msgid "Show map"
435
+ msgstr "Zobrazit mapu"
436
+
437
+ #: public/admin/feed_row.php:63
438
+ msgid "Keep original events categories and tags"
439
+ msgstr "Zachovat původní kategorie událostí a štítky"
440
+
441
+ #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
442
+ msgid "On refresh, preserve previously imported events that are missing from the feed"
443
+ msgstr ""
444
+
445
+ #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
446
+ msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
447
+ msgstr ""
448
+
449
+ #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
450
+ msgid "Assign default time zone to events in UTC"
451
+ msgstr "Přiřadit výchozí časové pásmo událostem v UTC"
452
+
453
+ #: public/admin/box_support.php:19
454
+ msgid "Get Add-ons"
455
+ msgstr "Získat doplňky"
456
+
457
+ #: public/admin/box_support.php:27
458
+ msgid "Support"
459
+ msgstr "Podpora"
460
+
461
+ #: public/admin/box_support.php:35
462
+ msgid "Timely Events"
463
+ msgstr "Timely události"
464
+
465
+ #: public/admin/box_support.php:43
466
+ msgid "Timely News"
467
+ msgstr "Timely novinky"
468
+
469
+ #: public/admin/box_support.php:47
470
+ msgid "view all news"
471
+ msgstr "zobrazit všechny novinky"
472
+
473
+ #: public/admin/box_support.php:95
474
+ msgid "Follow @_Timely"
475
+ msgstr "Sledovat @_Timely"
476
+
477
+ #: public/admin/box_time_and_date.php:6
478
+ msgid "Event date and time"
479
+ msgstr "Datum a čas události"
480
+
481
+ #: public/admin/box_time_and_date.php:26
482
+ msgid "All-day event"
483
+ msgstr "Celodenní událost"
484
+
485
+ #: public/admin/box_time_and_date.php:35
486
+ msgid "No end time"
487
+ msgstr "Žádný čas konce"
488
+
489
+ #: public/admin/box_time_and_date.php:42
490
+ msgid "Start date / time"
491
+ msgstr "Datum / čas začátku"
492
+
493
+ #: public/admin/box_time_and_date.php:59
494
+ msgid "End date / time"
495
+ msgstr "Datum / čas ukončení"
496
+
497
+ #: public/admin/box_time_and_date.php:76
498
+ msgid "Time zone"
499
+ msgstr "Časové pásmo"
500
+
501
+ #: public/admin/box_time_and_date.php:81
502
+ msgid "Choose your time zone"
503
+ msgstr "Vyberte vaše časové pásmo"
504
+
505
+ #: public/admin/box_time_and_date.php:108
506
+ msgid "Repeat"
507
+ msgstr "Opakovat"
508
+
509
+ #: public/admin/box_time_and_date.php:127
510
+ msgid "Exclude"
511
+ msgstr "Vyloučit"
512
+
513
+ #: public/admin/box_time_and_date.php:136
514
+ msgid "Choose a rule for exclusion"
515
+ msgstr "Vyberte pravidlo pro vyloučení"
516
+
517
+ #: public/admin/calendar_tasks.php:3
518
+ msgid "Welcome"
519
+ msgstr "Vítejte"
520
+
521
+ #: public/admin/calendar_tasks.php:4
522
+ msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
523
+ msgstr ""
524
+
525
+ #: public/admin/calendar_tasks.php:13
526
+ msgid "Post Your Event"
527
+ msgstr "Vložte svou událost"
528
+
529
+ #: public/admin/calendar_tasks.php:16
530
+ msgid "Add a new event to the calendar."
531
+ msgstr "Vložit novou událost do kalendáře."
532
+
533
+ #: public/admin/box_eventbrite.php:60
534
+ msgid "Donation Based"
535
+ msgstr "Dobrovolný příspěvek"
536
+
537
+ #: public/admin/box_eventbrite.php:68
538
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
539
+ msgstr ""
540
+
541
+ #: public/admin/box_eventbrite.php:75
542
+ msgid "Quantity"
543
+ msgstr "Množství"
544
+
545
+ #: public/admin/box_eventbrite.php:85
546
+ msgid "Include Fee in Price"
547
+ msgstr "V ceně je zahrnut poplatek"
548
+
549
+ #: public/admin/box_eventbrite.php:90
550
+ msgid "Add Service Fee on top of price"
551
+ msgstr ""
552
+
553
+ #: public/admin/box_eventbrite.php:92
554
+ msgid "Include Service fee in price"
555
+ msgstr "Zahrnout cenu služby v ceně"
556
+
557
+ #: public/admin/box_eventbrite.php:98
558
+ msgid "Payment Options"
559
+ msgstr "Platební podmínky"
560
+
561
+ #: public/admin/box_eventbrite.php:105
562
+ msgid "Google Checkout"
563
+ msgstr "Google Checkout"
564
+
565
+ #: public/admin/box_eventbrite.php:107
566
+ msgid "Check"
567
+ msgstr "Šekem"
568
+
569
+ #: public/admin/box_eventbrite.php:109
570
+ msgid "Cash"
571
+ msgstr "Hotově"
572
+
573
+ #: public/admin/box_eventbrite.php:111
574
+ msgid "Send an Invoice"
575
+ msgstr "Poslat fakturu"
576
+
577
+ #: public/admin/box_profile_timezone.php:9
578
+ msgid "Your preferred timezone"
579
+ msgstr "Preferované časové pásmo"
580
+
581
+ #: public/admin/box_repeat.php:5
582
+ msgid "Select recurrence pattern:"
583
+ msgstr "Zvolte vzor opakování:"
584
+
585
+ #: public/admin/box_repeat.php:36
586
+ msgid "Custom"
587
+ msgstr "Uživatelské"
588
+
589
+ #: public/admin/box_repeat.php:72
590
+ msgid "End"
591
+ msgstr "Konec"
592
+
593
+ #: public/admin/box_repeat.php:82
594
+ msgid "Ending after"
595
+ msgstr "Končí před"
596
+
597
+ #: public/admin/box_repeat.php:109
598
+ #: public/admin/plugins/ics/display_feeds.php:90
599
+ msgid "Please wait&#8230;"
600
+ msgstr "Prosím čekejte&#8230;"
601
+
602
+ #: public/admin/box_repeat.php:111
603
+ msgid "Apply"
604
+ msgstr "Použít"
605
+
606
+ #: public/admin/box_repeat.php:116
607
+ #: public/admin/plugins/ics/display_feeds.php:84
608
+ msgid "Cancel"
609
+ msgstr "Zrušit"
610
+
611
+ #: public/admin/box_support.php:4
612
+ msgid "Timely"
613
+ msgstr "Timely"
614
+
615
+ #: public/admin/box_support.php:11
616
+ msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
617
+ msgstr ""
618
+
619
+ #: public/admin/box_event_cost.php:228
620
+ msgid "Status:"
621
+ msgstr ""
622
+
623
+ #: public/admin/box_event_cost.php:235
624
+ msgid "Open"
625
+ msgstr ""
626
+
627
+ #: public/admin/box_event_cost.php:239
628
+ msgid "Closed"
629
+ msgstr ""
630
+
631
+ #: public/admin/box_event_cost.php:254
632
+ msgid "Add New Ticket Type"
633
+ msgstr ""
634
+
635
+ #: public/admin/box_event_cost.php:274
636
+ msgid "Tickets URL:"
637
+ msgstr ""
638
+
639
+ #: public/admin/box_event_location.php:6
640
+ msgid "Event location details"
641
+ msgstr "Podrobnosti umístění události"
642
+
643
+ #: public/admin/box_event_location.php:19
644
+ msgid "Venue name:"
645
+ msgstr "Název místa"
646
+
647
+ #: public/admin/box_event_location.php:31
648
+ msgid "Address:"
649
+ msgstr "Adresa:"
650
+
651
+ #: public/admin/box_event_location.php:45
652
+ msgid "Input Coordinates"
653
+ msgstr "Vložte polohu"
654
+
655
+ #: public/admin/box_event_location.php:57
656
+ msgid "Latitude:"
657
+ msgstr "Zeměpisná šířka:"
658
+
659
+ #: public/admin/box_event_location.php:69
660
+ msgid "Longitude:"
661
+ msgstr "Zeměpisná délka:"
662
+
663
+ #: public/admin/box_event_location.php:85
664
+ msgid "Show Map"
665
+ msgstr "Zobrazit mapu"
666
+
667
+ #: public/admin/box_eventbrite.php:1
668
+ msgid "Eventbrite Ticketing"
669
+ msgstr ""
670
+
671
+ #: public/admin/box_eventbrite.php:7
672
+ msgid "Register this event with Eventbrite.com?"
673
+ msgstr ""
674
+
675
+ #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
676
+ #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
677
+ #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
678
+ msgid "Yes"
679
+ msgstr "Ano"
680
+
681
+ #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
682
+ #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
683
+ #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
684
+ msgid "No"
685
+ msgstr "Ne"
686
+
687
+ #: public/admin/box_eventbrite.php:22
688
+ msgid "Set up your first ticket"
689
+ msgstr "Nastavit první vstupenku"
690
+
691
+ #: public/admin/box_eventbrite.php:24
692
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
693
+ msgstr ""
694
+
695
+ #: public/admin/box_eventbrite.php:42
696
+ msgid "Description"
697
+ msgstr "Popis"
698
+
699
+ #: public/admin/box_eventbrite.php:53
700
+ msgid "Type"
701
+ msgstr "Typ"
702
+
703
+ #: public/admin/box_eventbrite.php:58
704
+ msgid "Set Price"
705
+ msgstr "Natavit cenu"
706
+
707
+ #: public/admin/box_event_contact.php:30
708
+ msgid "Phone:"
709
+ msgstr "Telefon:"
710
+
711
+ #: public/admin/box_event_contact.php:56
712
+ msgid "Website URL:"
713
+ msgstr ""
714
+
715
+ #: public/admin/box_event_cost.php:6
716
+ msgid "Event cost and Tickets"
717
+ msgstr "Cena události a vstupenky"
718
+
719
+ #: public/admin/box_event_cost.php:20
720
+ msgid "Ticket options not available - event imported from external calendar."
721
+ msgstr ""
722
+
723
+ #: public/admin/box_event_cost.php:28
724
+ msgid "Free event"
725
+ msgstr "Událost zdarma"
726
+
727
+ #: public/admin/box_event_cost.php:41
728
+ msgid "External Tickets URL"
729
+ msgstr ""
730
+
731
+ #: public/admin/box_event_cost.php:52
732
+ msgid "Ticketing allows you to sell tickets directly to the users."
733
+ msgstr ""
734
+
735
+ #: public/admin/box_event_cost.php:55
736
+ msgid "Sign Up for Timely Network"
737
+ msgstr ""
738
+
739
+ #: public/admin/box_event_cost.php:80
740
+ msgid "Remove Ticket Type"
741
+ msgstr ""
742
+
743
+ #: public/admin/box_event_cost.php:101
744
+ msgid "Ex.: Regular Ticket"
745
+ msgstr ""
746
+
747
+ #: public/admin/box_event_cost.php:105
748
+ msgid "Description:"
749
+ msgstr "Popis:"
750
+
751
+ #: public/admin/box_event_cost.php:111
752
+ msgid "(Optional)"
753
+ msgstr ""
754
+
755
+ #: public/admin/box_event_cost.php:115
756
+ msgid "Price:"
757
+ msgstr ""
758
+
759
+ #: public/admin/box_event_cost.php:124
760
+ msgid "USD"
761
+ msgstr ""
762
+
763
+ #: public/admin/box_event_cost.php:128
764
+ msgid "Limits:"
765
+ msgstr ""
766
+
767
+ #: public/admin/box_event_cost.php:131
768
+ msgid "This fields are required."
769
+ msgstr ""
770
+
771
+ #: public/admin/box_event_cost.php:156
772
+ msgid "Quantity:"
773
+ msgstr ""
774
+
775
+ #: public/admin/box_event_cost.php:180
776
+ msgid "Available:"
777
+ msgstr ""
778
+
779
+ #: public/admin/box_event_cost.php:185
780
+ msgid "Immediately"
781
+ msgstr ""
782
+
783
+ #: public/admin/box_event_cost.php:190
784
+ msgid "From:"
785
+ msgstr ""
786
+
787
+ #: public/admin/box_event_cost.php:207
788
+ msgid "Till:"
789
+ msgstr ""
790
+
791
+ #: public/admin/box_ask_customer_review.php:42
792
+ #: public/admin/box_ask_customer_review.php:75
793
+ msgid "No, thanks"
794
+ msgstr ""
795
+
796
+ #: public/admin/box_ask_customer_review.php:50
797
+ #: public/admin/box_ask_customer_review.php:84
798
+ msgid "Ok, sure!"
799
+ msgstr ""
800
+
801
+ #: public/admin/box_ask_customer_review.php:66
802
+ msgid "Would you mind giving us some feedback?"
803
+ msgstr ""
804
+
805
+ #: public/admin/box_ask_customer_review.php:101
806
+ msgid "Please provide some feedback"
807
+ msgstr ""
808
+
809
+ #: public/admin/box_ask_customer_review.php:108
810
+ msgid "Message:"
811
+ msgstr ""
812
+
813
+ #: public/admin/box_ask_customer_review.php:121
814
+ msgid "Name:"
815
+ msgstr ""
816
+
817
+ #: public/admin/box_ask_customer_review.php:136
818
+ #: public/admin/box_event_contact.php:43
819
+ msgid "E-mail:"
820
+ msgstr "E-mail"
821
+
822
+ #: public/admin/box_ask_customer_review.php:143
823
+ msgid "E-mail is invalid."
824
+ msgstr ""
825
+
826
+ #: public/admin/box_ask_customer_review.php:154
827
+ msgid "Site URL:"
828
+ msgstr ""
829
+
830
+ #: public/admin/box_ask_customer_review.php:161
831
+ msgid "Site URL is invalid."
832
+ msgstr ""
833
+
834
+ #: public/admin/box_ask_customer_review.php:173
835
+ msgid "Thank you for being our customer,"
836
+ msgstr ""
837
+
838
+ #: public/admin/box_ask_customer_review.php:174
839
+ msgid "Aristotel Dascal, VP of Product, Time.ly"
840
+ msgstr ""
841
+
842
+ #: public/admin/box_ask_customer_review.php:180
843
+ msgid "Sending..."
844
+ msgstr ""
845
+
846
+ #: public/admin/box_ask_customer_review.php:181
847
+ msgid "Send Message"
848
+ msgstr ""
849
+
850
+ #: public/admin/box_event_children.php:12
851
+ msgid "Base recurrence event"
852
+ msgstr "Základní opakující se událost"
853
+
854
+ #: public/admin/box_event_children.php:14
855
+ msgid "Modified recurrence events"
856
+ msgstr "Upravená opakující se událost"
857
+
858
+ #: public/admin/box_event_children.php:22
859
+ msgid "Edit parent:"
860
+ msgstr "Upravit rodiče:"
861
+
862
+ #: public/admin/box_event_children.php:27
863
+ msgid "Modified Events"
864
+ msgstr "Upravené události"
865
+
866
+ #: public/admin/box_event_children.php:31
867
+ msgid "Edit:"
868
+ msgstr "Upravit"
869
+
870
+ #: public/admin/box_event_contact.php:6
871
+ msgid "Organizer contact info"
872
+ msgstr "Kontaktní informace organizátora"
873
+
874
+ #: public/admin/box_event_contact.php:17
875
+ msgid "Contact name:"
876
+ msgstr "Kontaktní jméno:"
877
+
878
+ #: lib/theme/loader.php:325
879
+ msgid "We couldn't find a suitable loader for filename with extension '%s'"
880
+ msgstr ""
881
+
882
+ #: lib/theme/loader.php:631
883
+ msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
884
+ msgstr "Téma vybrané pro váš kalendář bylo změněno kvůli problémům při vykreslování. Více informací zíkáte, pokud zapnete \"debug mode\" - stačí pouze přidat následující řádek do vašeho WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
885
+
886
+ #: lib/theme/search.php:253
887
+ msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
888
+ msgstr ""
889
+
890
+ #: lib/theme/search.php:264
891
+ msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
892
+ msgstr ""
893
+
894
+ #: lib/twig/environment.php:115
895
+ msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
896
+ msgstr "Kalendář je dočasně vypnutý kvůli problémům s vykreslováním. Prosím, <a href=\"javascript:location.reload();\">reload the page</a>."
897
+
898
+ #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
899
+ msgid "Title:"
900
+ msgstr "Název:"
901
+
902
+ #: public/admin/agenda-widget-form.php:12
903
+ msgid "Number of events to show:"
904
+ msgstr "Počet událostí k zobrazení:"
905
+
906
+ #: public/admin/agenda-widget-form.php:21
907
+ msgid "Number of days to show:"
908
+ msgstr "Počet dní k zobrazení:"
909
+
910
+ #: public/admin/agenda-widget-form.php:26
911
+ msgid "Limit to:"
912
+ msgstr "Omezeno na:"
913
+
914
+ #: public/admin/agenda-widget-form.php:30
915
+ msgid "Events with these <strong>Categories</strong>"
916
+ msgstr "Události s těmito <strong>kategoriemi</strong>"
917
+
918
+ #: public/admin/agenda-widget-form.php:39
919
+ msgid "No categories found."
920
+ msgstr "Žádná kategorie nenalezena"
921
+
922
+ #: public/admin/agenda-widget-form.php:46
923
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
924
+ msgstr "<strong>Nebo</strong> události s těmito <strong>štítky</strong>"
925
+
926
+ #: public/admin/agenda-widget-form.php:55
927
+ msgid "No tags found."
928
+ msgstr "Žádné štítky nenalezeny"
929
+
930
+ #: public/admin/agenda-widget-form.php:62
931
+ msgid "Show <strong>View Calendar</strong> button"
932
+ msgstr "Zobrazit <strong>Zobrazit kalendář</strong> tlačítko"
933
+
934
+ #: public/admin/agenda-widget-form.php:65
935
+ msgid "Show <strong>Subscribe</strong> buttons"
936
+ msgstr "Zobrazit <strong>Odebírat</strong> tlačítka"
937
+
938
+ #: public/admin/agenda-widget-form.php:68
939
+ msgid "Hide this widget on calendar page"
940
+ msgstr "Skrýt tento widget na stránce kalendáře"
941
+
942
+ #: public/admin/box_ask_customer_review.php:5
943
+ msgid "Enjoying All-in-One Event Calendar?"
944
+ msgstr ""
945
+
946
+ #: public/admin/box_ask_customer_review.php:13
947
+ msgid "Not really"
948
+ msgstr ""
949
+
950
+ #: public/admin/box_ask_customer_review.php:20
951
+ msgid "Yes!"
952
+ msgstr ""
953
+
954
+ #: public/admin/box_ask_customer_review.php:33
955
+ msgid "How about a rating on the Wordpress?"
956
+ msgstr ""
957
+
958
+ #: lib/recurrence/rule.php:397
959
+ msgid "Every %d weeks"
960
+ msgstr "Každé %d týdny"
961
+
962
+ #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
963
+ msgid "Monthly"
964
+ msgstr "Měsíčně"
965
+
966
+ #: lib/recurrence/rule.php:409
967
+ msgid "Every other month"
968
+ msgstr "Každý druhý měsíc"
969
+
970
+ #: lib/recurrence/rule.php:412
971
+ msgid "Every %d months"
972
+ msgstr "Každý %d měsíc"
973
+
974
+ #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
975
+ msgid "Yearly"
976
+ msgstr "Ročně"
977
+
978
+ #: lib/recurrence/rule.php:424
979
+ msgid "Every other year"
980
+ msgstr "Každý druhý rok"
981
+
982
+ #: lib/recurrence/rule.php:427
983
+ msgid "Every %d years"
984
+ msgstr "Každých %d roků"
985
+
986
+ #: lib/recurrence/rule.php:465
987
+ msgid "until %s"
988
+ msgstr "do %s"
989
+
990
+ #: lib/recurrence/rule.php:475
991
+ msgid "for %d occurrences"
992
+ msgstr "%d opakování"
993
+
994
+ #: lib/recurrence/rule.php:479
995
+ msgid "forever"
996
+ msgstr "navždy"
997
+
998
+ #: lib/robots/helper.php:71
999
+ msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1000
+ msgstr "<strong>CHYBA:</strong> Objevila se chyba připojení k serveru. Prosím zkontrolujte, zda nastavení je v pořádku."
1001
+
1002
+ #: lib/robots/helper.php:105
1003
+ msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1004
+ msgstr "<strong>CHYBA:</strong> Při ukládání souboru <strong>robots.txt</strong> na server se objevila chyba, soubor nelze zapsat."
1005
+
1006
+ #: lib/theme/list.php:152
1007
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1008
+ msgstr ""
1009
+
1010
+ #: lib/theme/list.php:164
1011
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1012
+ msgstr ""
1013
+
1014
+ #: lib/theme/list.php:179
1015
+ msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1016
+ msgstr ""
1017
+
1018
+ #: lib/theme/list.php:190
1019
+ msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1020
+ msgstr ""
1021
+
1022
+ #: lib/theme/list.php:257
1023
+ msgid "Activate &#8220;%s&#8221;"
1024
+ msgstr "Aktivovat &#8220;%s&#8221;"
1025
+
1026
+ #: lib/theme/list.php:264
1027
+ msgid "Activate"
1028
+ msgstr "Aktivovat"
1029
+
1030
+ #. translators: 1: theme title, 2: theme version, 3: theme author
1031
+ #: lib/theme/list.php:281 public/admin/themes.php:25
1032
+ msgid "%1$s %2$s by %3$s"
1033
+ msgstr "%1$s %2$s od %3$s"
1034
+
1035
+ #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1036
+ #. title, 5: parent_theme
1037
+ #: lib/theme/list.php:293
1038
+ msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1039
+ msgstr ""
1040
+
1041
+ #: lib/theme/list.php:308
1042
+ msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1043
+ msgstr ""
1044
+
1045
+ #: lib/post/custom-type.php:36
1046
+ msgid "Parent Event"
1047
+ msgstr "Rodičovská událost"
1048
+
1049
+ #: lib/post/custom-type.php:55
1050
+ msgid "event"
1051
+ msgstr "udalost"
1052
+
1053
+ #: lib/post/custom-type.php:85
1054
+ msgctxt "Event categories taxonomy"
1055
+ msgid "Categories"
1056
+ msgstr "Kategorie"
1057
+
1058
+ #: lib/post/custom-type.php:86
1059
+ msgctxt "Event categories taxonomy (singular)"
1060
+ msgid "Category"
1061
+ msgstr "Kategorie"
1062
+
1063
+ #: lib/post/custom-type.php:87
1064
+ msgctxt "Event categories menu item"
1065
+ msgid "Organize"
1066
+ msgstr "Uspořádat"
1067
+
1068
+ #: lib/post/custom-type.php:94
1069
+ msgctxt "Event tags taxonomy"
1070
+ msgid "Tags"
1071
+ msgstr "Tagy"
1072
+
1073
+ #: lib/post/custom-type.php:95
1074
+ msgctxt "Event tags taxonomy (singular)"
1075
+ msgid "Tag"
1076
+ msgstr "Tag"
1077
+
1078
+ #: lib/post/custom-type.php:102
1079
+ msgctxt "Event feeds taxonomy"
1080
+ msgid "Event Feeds"
1081
+ msgstr "Zdroj události"
1082
+
1083
+ #: lib/post/custom-type.php:103
1084
+ msgctxt "Event feed taxonomy (singular)"
1085
+ msgid "Event Feed"
1086
+ msgstr "Zdroje událostí"
1087
+
1088
+ #: lib/post/custom-type.php:285
1089
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1090
+ msgstr "Všechny události <span class=\"update-plugins count-%d\" title=\"%d Nevyřízené události\"><span class=\"update-count\">%d</span></span>"
1091
+
1092
+ #: lib/post/custom-type.php:296
1093
+ msgid "All Events"
1094
+ msgstr "Všechny události"
1095
+
1096
+ #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1097
+ #: lib/recurrence/rule.php:260
1098
+ msgctxt "Recurrence editor - weekly tab"
1099
+ msgid "on"
1100
+ msgstr "v"
1101
+
1102
+ #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1103
+ #: lib/recurrence/rule.php:326
1104
+ msgid "and"
1105
+ msgstr "a"
1106
+
1107
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1108
+ #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1109
+ msgctxt "Recurrence editor - monthly tab"
1110
+ msgid "on"
1111
+ msgstr "v"
1112
+
1113
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1114
+ #: lib/recurrence/rule.php:286
1115
+ msgid "of the month"
1116
+ msgstr "měsíce"
1117
+
1118
+ #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1119
+ #: lib/recurrence/rule.php:336
1120
+ msgctxt "Recurrence editor - yearly tab"
1121
+ msgid "on"
1122
+ msgstr "v"
1123
+
1124
+ #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1125
+ #: public/admin/cron_freq.php:9
1126
+ msgid "Daily"
1127
+ msgstr "Denně"
1128
+
1129
+ #: lib/recurrence/rule.php:379
1130
+ msgid "Every other day"
1131
+ msgstr "Každý druhý den"
1132
+
1133
+ #: lib/recurrence/rule.php:382
1134
+ msgid "Every %d days"
1135
+ msgstr "Každé %d dny"
1136
+
1137
+ #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1138
+ msgid "Weekly"
1139
+ msgstr "Týdně"
1140
+
1141
+ #: lib/recurrence/rule.php:394
1142
+ msgid "Every other week"
1143
+ msgstr "Každý druhý týden"
1144
+
1145
+ #: lib/less/variable/font.php:64
1146
+ msgid "Custom..."
1147
+ msgstr "Vlastní..."
1148
+
1149
+ #: lib/less/variable/font.php:112
1150
+ msgid "Enter custom font(s)"
1151
+ msgstr "Vložte vlastní písma"
1152
+
1153
+ #: lib/less/variable/size.php:26
1154
+ msgid "Length"
1155
+ msgstr "Délka"
1156
+
1157
+ #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1158
+ msgid "All-in-One Event Calendar"
1159
+ msgstr "All-in-One Event Calendar"
1160
+
1161
+ #: lib/notification/admin.php:182
1162
+ msgid "Got it – dismiss this"
1163
+ msgstr "Rozumím"
1164
+
1165
+ #: lib/post/custom-type.php:26
1166
+ msgctxt "Custom post type name"
1167
+ msgid "Events"
1168
+ msgstr "Události"
1169
+
1170
+ #: lib/post/custom-type.php:27
1171
+ msgctxt "Custom post type name (singular)"
1172
+ msgid "Event"
1173
+ msgstr "Událost"
1174
+
1175
+ #: lib/post/custom-type.php:28
1176
+ msgid "Add New"
1177
+ msgstr "Vložit nové"
1178
+
1179
+ #: lib/post/custom-type.php:29
1180
+ msgid "Add New Event"
1181
+ msgstr "Vložit novou událost"
1182
+
1183
+ #: lib/post/custom-type.php:30
1184
+ msgid "Edit Event"
1185
+ msgstr "Upravit událost"
1186
+
1187
+ #: lib/post/custom-type.php:31
1188
+ msgid "New Event"
1189
+ msgstr "Nová událost"
1190
+
1191
+ #: lib/post/custom-type.php:32
1192
+ msgid "View Event"
1193
+ msgstr "Zobrazit události"
1194
+
1195
+ #: lib/post/custom-type.php:33
1196
+ msgid "Search Events"
1197
+ msgstr "Hledat události"
1198
+
1199
+ #: lib/post/custom-type.php:34
1200
+ msgid "No Events found"
1201
+ msgstr "Žádné události nenalezeny"
1202
+
1203
+ #: lib/post/custom-type.php:35
1204
+ msgid "No Events found in Trash"
1205
+ msgstr "Žádné události v koši"
1206
+
1207
+ #: lib/html/element/setting/html.php:62
1208
+ msgid "Filter by post ID:"
1209
+ msgstr "Filtrovat podle ID příspěvku:"
1210
+
1211
+ #: lib/html/element/setting/html.php:63
1212
+ msgid "Filter by post IDs (separate IDs by comma):"
1213
+ msgstr "Filtrovat podle více ID přispěvků (jednotlivé ID oddělte čárkou):"
1214
+
1215
+ #: lib/html/element/setting/html.php:64
1216
+ msgid "Limit number of events per page:"
1217
+ msgstr "Počet událostí na stranu:"
1218
+
1219
+ #: lib/html/element/setting/html.php:65
1220
+ msgid "Warning:"
1221
+ msgstr "Varování:"
1222
+
1223
+ #: lib/html/element/setting/html.php:66
1224
+ msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1225
+ msgstr "Momentálně není možné vložit více než jeden kalendář na stejnou stránku. Nevkládejte shortkódy k zobrazení kalendáře na stránku, která již nějaký kalendář zobrazuje."
1226
+
1227
+ #: lib/import-export/ics.php:831
1228
+ msgid "Tickets: "
1229
+ msgstr ""
1230
+
1231
+ #: lib/html/element/setting/html.php:41
1232
+ msgid "Day view:"
1233
+ msgstr "Denní zobrazení:"
1234
+
1235
+ #: lib/html/element/setting/html.php:42
1236
+ msgid "Agenda view:"
1237
+ msgstr "Zobrazení agendy:"
1238
+
1239
+ #: lib/html/element/setting/html.php:43
1240
+ msgid "Some Other view:"
1241
+ msgstr "Jiné zobrazení:"
1242
+
1243
+ #: lib/html/element/setting/html.php:44
1244
+ msgid "Default view as per settings:"
1245
+ msgstr "Zvolit jako nastavené výchozí zobrazení:"
1246
+
1247
+ #: lib/html/element/setting/html.php:45
1248
+ msgid "General form:"
1249
+ msgstr "Obecný formulář:"
1250
+
1251
+ #: lib/html/element/setting/html.php:46
1252
+ msgid "Optional."
1253
+ msgstr "Volitelně."
1254
+
1255
+ #: lib/html/element/setting/html.php:47
1256
+ msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1257
+ msgstr "Vložte možnosti k zobrazení filtrovaného kalendáře. (Můžete zjisti kategorii a štítky prozkoumáním URL vašeho filtrovaného kalendáře..)"
1258
+
1259
+ #: lib/html/element/setting/html.php:48
1260
+ msgid "Filter by event category name/slug:"
1261
+ msgstr "Filtrovat podle označení kategorie událostí: "
1262
+
1263
+ #: lib/html/element/setting/html.php:49
1264
+ msgid "Holidays"
1265
+ msgstr "Svátky"
1266
+
1267
+ #: lib/html/element/setting/html.php:50
1268
+ msgid "Lunar Cycles"
1269
+ msgstr "Měsíční cykly"
1270
+
1271
+ #: lib/html/element/setting/html.php:51
1272
+ msgid "zodiac-date-ranges"
1273
+ msgstr "Období zvěrokruhu"
1274
+
1275
+ #: lib/html/element/setting/html.php:52
1276
+ msgid "Filter by event category names/slugs (separate names by comma):"
1277
+ msgstr "Filtrovat podle více označení kategorií událostí (názvy oddělené čárkou):"
1278
+
1279
+ #: lib/html/element/setting/html.php:53
1280
+ msgid "Filter by event category ID:"
1281
+ msgstr "Filtrovat podle ID kategorie událostí:"
1282
+
1283
+ #: lib/html/element/setting/html.php:54
1284
+ msgid "Filter by event category IDs (separate IDs by comma):"
1285
+ msgstr "Filtrovat podle více ID kategorií událostí (jednotlivé ID oddělené čárkou):"
1286
+
1287
+ #: lib/html/element/setting/html.php:55
1288
+ msgid "Filter by event tag name/slug:"
1289
+ msgstr "Filtrovat podle štítku událostí:"
1290
+
1291
+ #: lib/html/element/setting/html.php:56
1292
+ msgid "tips-and-tricks"
1293
+ msgstr "tipy a triky"
1294
+
1295
+ #: lib/html/element/setting/html.php:57
1296
+ msgid "creative writing"
1297
+ msgstr "kreativní psaní"
1298
+
1299
+ #: lib/html/element/setting/html.php:58
1300
+ msgid "performing arts"
1301
+ msgstr "divadelní umění"
1302
+
1303
+ #: lib/html/element/setting/html.php:59
1304
+ msgid "Filter by event tag names/slugs (separate names by comma):"
1305
+ msgstr "Filtrovat podle více štítků událostí (jednotlivé štítky oddělte čárkou):"
1306
+
1307
+ #: lib/html/element/setting/html.php:60
1308
+ msgid "Filter by event tag ID:"
1309
+ msgstr "Filtrovat podle ID štítku události:"
1310
+
1311
+ #: lib/html/element/setting/html.php:61
1312
+ msgid "Filter by event tag IDs (separate IDs by comma):"
1313
+ msgstr "Filtrovat podle více ID štítků událostí (jednotlivé ID oddělte čárkou):"
1314
+
1315
+ #: lib/exception/handler.php:395
1316
+ msgid "All-in-One Event Calendar has been disabled due to an error:"
1317
+ msgstr "All-in-One Event Calendar byl deaktivován kvůli chybě:"
1318
+
1319
+ #: lib/exception/handler.php:404
1320
+ msgid "Try reactivating plugin"
1321
+ msgstr "Zkuste znovu aktivovat doplněk."
1322
+
1323
+ #: lib/exception/handler.php:576
1324
+ msgid "Toggle error details"
1325
+ msgstr "Přepnout na podrobnosti o chybě"
1326
+
1327
+ #: lib/exception/handler.php:577
1328
+ msgid "Error Details:"
1329
+ msgstr "Podrobnosti k chybě:"
1330
+
1331
+ #: lib/factory/html.php:133
1332
+ msgid "Choose a date using calendar"
1333
+ msgstr "Vyberte datum v kalendáři"
1334
+
1335
+ #: lib/factory/html.php:278
1336
+ msgid "Tags (optional)"
1337
+ msgstr "Štítky (volitelně)"
1338
+
1339
+ #: lib/html/element/setting/cache.php:38
1340
+ msgid "Check again"
1341
+ msgstr "Zkontrolovat znovu"
1342
+
1343
+ #: lib/html/element/setting/cache.php:39
1344
+ msgid "Templates cache is not writable"
1345
+ msgstr "Cache šablony není zapisovatelná"
1346
+
1347
+ #: lib/html/element/setting/cache.php:40
1348
+ msgid "Templates cache is writable"
1349
+ msgstr "Cache šablony je zapisovatelná"
1350
+
1351
+ #: lib/html/element/setting/cache.php:41
1352
+ msgid "Checking..."
1353
+ msgstr "Kontroluji ..."
1354
+
1355
+ #: lib/html/element/setting/cache.php:42
1356
+ msgid "Performance Report"
1357
+ msgstr "Zpráva o provozu"
1358
+
1359
+ #: lib/html/element/setting/calendar-page-selector.php:70
1360
+ msgid "View"
1361
+ msgstr "Zobrazit"
1362
+
1363
+ #: lib/html/element/setting/calendar-page-selector.php:114
1364
+ msgid "- Auto-Create New Page -"
1365
+ msgstr "Automaticky vytvořit novou stranu"
1366
+
1367
+ #: lib/html/element/setting/enabled-views.php:22
1368
+ msgid "Enabled"
1369
+ msgstr "Povoleno"
1370
+
1371
+ #: lib/html/element/setting/enabled-views.php:23
1372
+ msgid "Default"
1373
+ msgstr "Výchozí"
1374
+
1375
+ #: lib/html/element/setting/enabled-views.php:24
1376
+ msgid "Desktop"
1377
+ msgstr "Desktop"
1378
+
1379
+ #: lib/html/element/setting/enabled-views.php:25
1380
+ msgid "Mobile"
1381
+ msgstr "Mobil"
1382
+
1383
+ #: lib/html/element/setting/html.php:37
1384
+ msgid "Embed the calendar using a shortcode"
1385
+ msgstr "Umístit kalendář vložením shortkodu."
1386
+
1387
+ #: lib/html/element/setting/html.php:38
1388
+ msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1389
+ msgstr "Vložte jeden z těchto shortkodů do těla stránky pro umístění kalendáře do libovolné WordPress strany:"
1390
+
1391
+ #: lib/html/element/setting/html.php:39
1392
+ msgid "Month view:"
1393
+ msgstr "Měsíční zobrazení:"
1394
+
1395
+ #: lib/html/element/setting/html.php:40
1396
+ msgid "Week view:"
1397
+ msgstr "Týdenní zobrazení:"
1398
+
1399
+ #: lib/css/frontend.php:239
1400
+ msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1401
+ msgstr ""
1402
+
1403
+ #: lib/css/frontend.php:266
1404
+ msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1405
+ msgstr ""
1406
+
1407
+ #: lib/css/frontend.php:272
1408
+ msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1409
+ msgstr "<p><strong>Při kompilaci CSS se objevila chyba.</strong> Komentář zní: <em>%s</em></p>"
1410
+
1411
+ #: lib/css/frontend.php:300
1412
+ msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1413
+ msgstr "Nastavení šablony bylo úspěšně obnoveno do výchozího nastavení. <a href='%s'>Přejít na stránku</a>"
1414
+
1415
+ #: lib/css/frontend.php:307
1416
+ msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1417
+ msgstr "Nastavení šablony bylo úspěšně aktualizováno. <a href='%s'>Přejít na stránku</a>"
1418
+
1419
+ #: lib/css/frontend.php:343
1420
+ msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1421
+ msgstr ""
1422
+
1423
+ #: lib/database/applicator.php:182
1424
+ msgid "Date columns in table %s have different types."
1425
+ msgstr "Sloupce datumu v tabulce %s jsou rozdílných typů."
1426
+
1427
+ #: lib/database/exception/database.php:19
1428
+ msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1429
+ msgstr "Aktualizace databáze selhala. Ujistěte se, prosím, zda má uživatel <em>wp-config.php</em> potřebná práva (<strong>ALTER TABLE</strong>) pro úpravu databáze."
1430
+
1431
+ #: lib/database/exception/database.php:23
1432
+ msgid "Error encountered: %s"
1433
+ msgstr "Došlo k chybě: %s"
1434
+
1435
+ #: lib/date/system.php:202
1436
+ msgid "GMT%+d:%02d"
1437
+ msgstr "GMT%+d:%02d"
1438
+
1439
+ #: lib/date/timezone.php:362
1440
+ msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1441
+ msgstr ""
1442
+
1443
+ #: lib/date/timezone.php:397
1444
+ msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1445
+ msgstr ""
1446
+
1447
+ #: lib/date/timezone.php:421
1448
+ msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1449
+ msgstr "Vybrané časové pásmo \"UTC%+d\" bude upraveno na %s."
1450
+
1451
+ #: lib/date/timezone.php:490
1452
+ msgid "Manual Offset"
1453
+ msgstr "Časový posun ručně:"
1454
+
1455
+ #: lib/date/timezone.php:493
1456
+ msgid "Choose your timezone"
1457
+ msgstr "Vyberte svou časové pásmo"
1458
+
1459
+ #: lib/environment/check.php:55
1460
+ msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1461
+ msgstr "Zvolte možnost na <strong>Stránce kalendáře</strong> dropdown list."
1462
+
1463
+ #: lib/environment/check.php:68
1464
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1465
+ msgstr "Plugin je nainstalován, ale není nastaven. <a href=\"%s\">Klikněte sem pro nastavení &raquo;</a>"
1466
+
1467
+ #: lib/environment/check.php:78
1468
+ msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1469
+ msgstr "Plugin je nainstalován, ale nebyl nastaven. Pro nastavení se, prosím, přihlaštwe jako Administrátor stránek."
1470
+
1471
+ #: lib/environment/check.php:196
1472
+ msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1473
+ msgstr ""
1474
+
1475
+ #: lib/environment/check.php:197
1476
+ msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1477
+ msgstr ""
1478
+
1479
+ #: lib/exception/handler.php:176
1480
+ msgid "The add-on \"%s\" has been disabled due to an error:"
1481
+ msgstr "Rozšíření \"%s\" bylo deaktivováno kvůli chybě:"
1482
+
1483
+ #: lib/calendar-feed/ics.php:367
1484
+ msgid "Do you want to keep the events imported from the calendar or remove them?"
1485
+ msgstr ""
1486
+
1487
+ #: lib/calendar-feed/ics.php:373
1488
+ msgid "Removing ICS Feed"
1489
+ msgstr "Odstranění ICS odběru"
1490
+
1491
+ #: lib/calendar-feed/ics.php:376
1492
+ msgid "Keep Events"
1493
+ msgstr "Zachovat události"
1494
+
1495
+ #: lib/calendar-feed/ics.php:379
1496
+ msgid "Remove Events"
1497
+ msgstr "Odstranit události"
1498
+
1499
+ #: lib/calendar-feed/ics.php:519
1500
+ msgid "Oh, submission was not accepted."
1501
+ msgstr ""
1502
+
1503
+ #: lib/calendar-feed/ics.php:699
1504
+ msgid "Deleted %d events"
1505
+ msgstr "Smazáno %d událostí"
1506
+
1507
+ #: lib/calendar-feed/ics.php:735
1508
+ msgid "Feed deleted"
1509
+ msgstr "Zdroj smazán"
1510
+
1511
+ #: lib/captcha/provider/nocaptcha.php:31
1512
+ msgid "noCAPTCHA public key:"
1513
+ msgstr "noCAPTCHA veřejný klíč:"
1514
+
1515
+ #: lib/captcha/provider/nocaptcha.php:47
1516
+ msgid "noCAPTCHA private key:"
1517
+ msgstr "noCAPTCHA osobní klíč:"
1518
+
1519
+ #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1520
+ msgid "Please try verifying you are human again."
1521
+ msgstr "Prosím ověřte znovu, že jste lidská bytost."
1522
+
1523
+ #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1524
+ msgid "There was an error reading the human verification data. Please try again."
1525
+ msgstr "Ověření vaší lidské podstaty nebylo úspěšné. Prosím, zkuste to znovu."
1526
+
1527
+ #: lib/captcha/provider/recaptcha.php:32
1528
+ msgid "reCAPTCHA public key:"
1529
+ msgstr "reCAPTCHA veřejný klíč:"
1530
+
1531
+ #: lib/captcha/provider/recaptcha.php:48
1532
+ msgid "reCAPTCHA private key:"
1533
+ msgstr "reCAPTCHA osobní klíč:"
1534
+
1535
+ #: lib/captcha/provider/recaptcha.php:66
1536
+ msgid "Human verification"
1537
+ msgstr "Ověření, zda jste lidská bytost."
1538
+
1539
+ #: lib/captcha/provider/recaptcha.php:67
1540
+ msgid "Loading reCAPTCHA..."
1541
+ msgstr "Nahrávám reCAPTCHA..."
1542
+
1543
+ #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1544
+ #: lib/clone/renderer-helper.php:45
1545
+ msgid "Clone"
1546
+ msgstr "Klonovat"
1547
+
1548
+ #: lib/clone/renderer-helper.php:44
1549
+ msgid "Make new copy of event"
1550
+ msgstr "Vytvořit novou kopii události"
1551
+
1552
+ #: lib/clone/renderer-helper.php:47
1553
+ msgid "Copy to a new draft"
1554
+ msgstr "Kopírovat do nového konceptu."
1555
+
1556
+ #: lib/clone/renderer-helper.php:48
1557
+ msgid "Clone to Draft"
1558
+ msgstr "Kopírovat do konceptu"
1559
+
1560
+ #: lib/command/clone.php:173
1561
+ msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1562
+ msgstr "<p>Událost <strong>%s</strong> byla úspěšně naklonována. <a href=\"%s\">Upravit klonovanou událost</a></p>"
1563
+
1564
+ #: lib/compatibility/check.php:101
1565
+ msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1566
+ msgstr "Máte zapnutý Frontend Rendering a používáte upravenou kalendářovou šablonu. Pokud vaše šablona nepodporuje Frontend Rendering, váš kalendář nemusí pracovat správně."
1567
+
1568
+ #: app/view/event/single.php:123
1569
+ msgid "Tickets:"
1570
+ msgstr ""
1571
+
1572
+ #: app/view/event/single.php:124
1573
+ msgid "Free"
1574
+ msgstr "Zdarma"
1575
+
1576
+ #: app/view/event/single.php:127 app/view/event/ticket.php:38
1577
+ msgid "Buy Tickets"
1578
+ msgstr "Koupit vstupenky"
1579
+
1580
+ #: app/view/event/single.php:150
1581
+ msgid "Edit this occurrence (%s)"
1582
+ msgstr "Upravit tento výskyt (%s)"
1583
+
1584
+ #: app/view/event/single.php:195
1585
+ msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1586
+ msgstr "Tento příspěvek byl zkopírován z jiného webu <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1587
+
1588
+ #: app/view/event/single.php:206
1589
+ msgid "View original"
1590
+ msgstr "Zobrazit originál"
1591
+
1592
+ #: app/view/event/taxonomy.php:113
1593
+ msgid "Category image"
1594
+ msgstr "Obrázek kategorie"
1595
+
1596
+ #: app/view/event/ticket.php:24
1597
+ msgid "Register Now"
1598
+ msgstr "Registrovat teď"
1599
+
1600
+ #: app/view/event/ticket.php:82
1601
+ msgid "Event website"
1602
+ msgstr "Web události"
1603
+
1604
+ #: app/view/event/time.php:84 app/view/event/time.php:118
1605
+ msgctxt "Event time separator"
1606
+ msgid " @ "
1607
+ msgstr " @ "
1608
+
1609
+ #: app/view/event/time.php:100
1610
+ msgctxt "Event start/end separator"
1611
+ msgid " – "
1612
+ msgstr " – "
1613
+
1614
+ #: app/view/event/time.php:166
1615
+ msgid ", and "
1616
+ msgstr ", a"
1617
+
1618
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1619
+ msgid "Excludes: "
1620
+ msgstr ""
1621
+
1622
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1623
+ msgid "Repeats"
1624
+ msgstr ""
1625
+
1626
+ #: lib/calendar-feed/ics.php:38
1627
+ msgid "ICS"
1628
+ msgstr "ICS"
1629
+
1630
+ #: lib/calendar-feed/ics.php:69
1631
+ msgid "Another import process in progress. Please try again later."
1632
+ msgstr ""
1633
+
1634
+ #: lib/calendar-feed/ics.php:174
1635
+ msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1636
+ msgstr "Kalendáři brání v nahrání dat systémová chyba. Něco se pokazilo a plugin nepracuje správně. Následující zpráva Vám možná napoví více: %s"
1637
+
1638
+ #: lib/calendar-feed/ics.php:181
1639
+ msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1640
+ msgstr ""
1641
+
1642
+ #: lib/calendar-feed/ics.php:195
1643
+ msgid "Imported %s event"
1644
+ msgid_plural "Imported %s events"
1645
+ msgstr[0] "Importována %s událost"
1646
+ msgstr[1] "Importovány %s události"
1647
+ msgstr[2] "Importováno %s událostí"
1648
+
1649
+ #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1650
+ msgid "Invalid ICS feed ID"
1651
+ msgstr ""
1652
+
1653
+ #: lib/calendar-feed/ics.php:350
1654
+ msgid "Categories (optional)"
1655
+ msgstr "Kategorie (volitelně)"
1656
+
1657
+ #: app/view/event/content.php:33 app/view/event/single.php:119
1658
+ msgid "When:"
1659
+ msgstr "Kdy:"
1660
+
1661
+ #: app/view/event/content.php:34 app/view/event/single.php:120
1662
+ msgid "Where:"
1663
+ msgstr "Kde:"
1664
+
1665
+ #: app/view/event/content.php:125
1666
+ msgid "Calendar"
1667
+ msgstr ""
1668
+
1669
+ #: app/view/event/content.php:126
1670
+ msgid "View all events"
1671
+ msgstr "Zobrazit všechny události"
1672
+
1673
+ #: app/view/event/location.php:96
1674
+ msgid "Click to view map"
1675
+ msgstr "Klikněte pro zobrazení mapy."
1676
+
1677
+ #: app/view/event/location.php:97
1678
+ msgid "View Full-Size Map"
1679
+ msgstr "Zobrazit mapu v plné velikosti."
1680
+
1681
+ #: app/view/event/post.php:29
1682
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1683
+ msgstr "Událost aktualizována. <a href=\"%s\">Zobrazit událost</a>"
1684
+
1685
+ #: app/view/event/post.php:32
1686
+ msgid "Custom field updated."
1687
+ msgstr "Vlastní pole aktualizováno."
1688
+
1689
+ #: app/view/event/post.php:33
1690
+ msgid "Custom field deleted."
1691
+ msgstr "Vlastní pole smazáno."
1692
+
1693
+ #: app/view/event/post.php:34
1694
+ msgid "Event updated."
1695
+ msgstr "Událost aktualizována"
1696
+
1697
+ #. translators: %s: date and time of the revision
1698
+ #: app/view/event/post.php:38
1699
+ msgid "Event restored to revision from %s"
1700
+ msgstr "Událost obnovena dle stavu k %s"
1701
+
1702
+ #: app/view/event/post.php:43
1703
+ msgid "Event published. <a href=\"%s\">View event</a>"
1704
+ msgstr "Událost zveřejněna. <a href=\"%s\">Zobrazit událost</a>"
1705
+
1706
+ #: app/view/event/post.php:46
1707
+ msgid "Event saved."
1708
+ msgstr "Událost uložena"
1709
+
1710
+ #: app/view/event/post.php:48
1711
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1712
+ msgstr "Událost odeslána. <a target=\"_blank\" href=\"%s\">Náhled události</a>"
1713
+
1714
+ #: app/view/event/post.php:52
1715
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1716
+ msgstr "Událost naplánována pro: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Náhled události</a>"
1717
+
1718
+ #. translators: Publish box date format, see http:php.net/date
1719
+ #: app/view/event/post.php:54
1720
+ msgid "M j, Y @ G:i"
1721
+ msgstr ""
1722
+
1723
+ #: app/view/event/post.php:58
1724
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1725
+ msgstr ""
1726
+
1727
+ #: app/view/event/single.php:78
1728
+ msgid "Event was created in the %s time zone"
1729
+ msgstr "Událost byla vytvořena v časovém pásmu %s"
1730
+
1731
+ #: app/view/event/single.php:114
1732
+ msgid "Add to Calendar"
1733
+ msgstr "Přidat do kalendáře"
1734
+
1735
+ #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1736
+ msgid "Cost:"
1737
+ msgstr "Cena:"
1738
+
1739
+ #: app/view/event/single.php:122
1740
+ msgid "Contact:"
1741
+ msgstr "Kontakt:"
1742
+
1743
+ #: app/view/calendar/view/agenda.php:169
1744
+ msgid "Categories:"
1745
+ msgstr "Kategorie"
1746
+
1747
+ #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1748
+ #: public/admin/themes.php:29
1749
+ msgid "Tags:"
1750
+ msgstr "Štítky:"
1751
+
1752
+ #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1753
+ #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1754
+ #: app/view/calendar/widget.php:374
1755
+ msgid "@ %s"
1756
+ msgstr "v %s"
1757
+
1758
+ #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1759
+ msgid "g a"
1760
+ msgstr ""
1761
+
1762
+ #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1763
+ msgid "Reveal full day"
1764
+ msgstr "Ukázat celý den"
1765
+
1766
+ #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1767
+ msgid "All-day"
1768
+ msgstr "Celý den"
1769
+
1770
+ #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1771
+ msgid "Now:"
1772
+ msgstr "Nyní"
1773
+
1774
+ #: app/view/calendar/view/week.php:67
1775
+ msgid "Week of %s"
1776
+ msgstr "Týden %s"
1777
+
1778
+ #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1779
+ msgid "Upcoming Events"
1780
+ msgstr "Nadcházející události"
1781
+
1782
+ #: app/view/calendar/widget.php:38
1783
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1784
+ msgstr "All-in-One Event Calendar: Zobrazí následující události v zobrazení agendy"
1785
+
1786
+ #: app/view/calendar/widget.php:80
1787
+ msgid "Choose how to limit the upcoming events"
1788
+ msgstr "Zvolte, jak omezit následující události"
1789
+
1790
+ #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1791
+ msgid "Events"
1792
+ msgstr "Události"
1793
+
1794
+ #: app/view/calendar/widget.php:93
1795
+ msgid "Days"
1796
+ msgstr "Dnů"
1797
+
1798
+ #: app/view/calendar/widget.php:106
1799
+ msgid "Number of events to show"
1800
+ msgstr "Počet událostí k zobrazení"
1801
+
1802
+ #: app/view/calendar/widget.php:115
1803
+ msgid "Number of days to show"
1804
+ msgstr "Počet dnů k zobrazení"
1805
+
1806
+ #: app/view/calendar/widget.php:124
1807
+ msgid "Show events filtered for the following tags/categories"
1808
+ msgstr ""
1809
+
1810
+ #: app/view/calendar/widget.php:141
1811
+ msgid "Show the subscribe button in the widget"
1812
+ msgstr "Zobrazit ve widgetu tlačítko Odebírat"
1813
+
1814
+ #: app/view/calendar/widget.php:370
1815
+ msgid "There are no upcoming events."
1816
+ msgstr "Nejsou žádné nadcházející události."
1817
+
1818
+ #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1819
+ msgid "all-day"
1820
+ msgstr "celý den"
1821
+
1822
+ #: app/view/calendar/widget.php:372
1823
+ msgid "View Calendar"
1824
+ msgstr "Zobrazit kalendář"
1825
+
1826
+ #: app/view/calendar/widget.php:375
1827
+ msgid "Add"
1828
+ msgstr "Přidat"
1829
+
1830
+ #: app/view/calendar/page.php:260
1831
+ msgid "Subscribe to filtered calendar"
1832
+ msgstr "Přihlásit se do filtrovaného kalendáře"
1833
+
1834
+ #: app/view/calendar/page.php:261
1835
+ msgid "Subscribe"
1836
+ msgstr "Přihlásit se"
1837
+
1838
+ #: app/view/calendar/page.php:262 app/view/event/single.php:118
1839
+ msgid "Get a Timely Calendar"
1840
+ msgstr "Získat Timely Calendar"
1841
+
1842
+ #: app/view/calendar/subscribe-button.php:22
1843
+ msgid "Add to Timely Calendar"
1844
+ msgstr "Vložit do Timely kalendáře"
1845
+
1846
+ #: app/view/calendar/subscribe-button.php:23
1847
+ msgid "Add to Google"
1848
+ msgstr "Vložit do Google"
1849
+
1850
+ #: app/view/calendar/subscribe-button.php:24
1851
+ msgid "Add to Outlook"
1852
+ msgstr "Vložit do Outlooku"
1853
+
1854
+ #: app/view/calendar/subscribe-button.php:25
1855
+ msgid "Add to Apple Calendar"
1856
+ msgstr "Vložit do Apple kalendáře"
1857
+
1858
+ #: app/view/calendar/subscribe-button.php:26
1859
+ msgid "Add to other calendar"
1860
+ msgstr "Vložit do jiného kalendáře"
1861
+
1862
+ #: app/view/calendar/subscribe-button.php:29
1863
+ msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1864
+ msgstr "Kopírovat tuto URL do vlastního Timely kalendáře nebo klikněte pro přidání do vašeho rich-text kalendáře"
1865
+
1866
+ #: app/view/calendar/subscribe-button.php:30
1867
+ msgid "Subscribe to this calendar in your Google Calendar"
1868
+ msgstr "Přihlásit do tohoto kalendáře ve vašem Google kalendáři"
1869
+
1870
+ #: app/view/calendar/subscribe-button.php:31
1871
+ msgid "Subscribe to this calendar in MS Outlook"
1872
+ msgstr "Přihlásit do tohoto kalendáře ve MS Outlooku"
1873
+
1874
+ #: app/view/calendar/subscribe-button.php:32
1875
+ msgid "Subscribe to this calendar in Apple Calendar/iCal"
1876
+ msgstr "Přihlásit do tohoto kalendáře v Apple kalendáři/iCal"
1877
+
1878
+ #: app/view/calendar/subscribe-button.php:33
1879
+ msgid "Subscribe to this calendar in another plain-text calendar"
1880
+ msgstr "Přihlásit do tohoto kalendáře v jiném textovém kalendáři."
1881
+
1882
+ #: app/view/calendar/taxonomy.php:97
1883
+ msgid "Clear category filter"
1884
+ msgstr "Vyčistit filtr kategorií"
1885
+
1886
+ #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1887
+ #: lib/html/element/setting/tags-categories.php:47
1888
+ msgid "Categories"
1889
+ msgstr "Kategorie"
1890
+
1891
+ #: app/view/calendar/taxonomy.php:99
1892
+ msgid "Clear tag filter"
1893
+ msgstr "Vyčistit filtr štítků"
1894
+
1895
+ #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1896
+ #: lib/html/element/setting/tags-categories.php:39
1897
+ msgid "Tags"
1898
+ msgstr "Štítky"
1899
+
1900
+ #: app/view/calendar/view/agenda.php:142
1901
+ msgid "Collapse All"
1902
+ msgstr "Sbalit vše"
1903
+
1904
+ #: app/view/calendar/view/agenda.php:143
1905
+ msgid "Expand All"
1906
+ msgstr "Rozbalit vše"
1907
+
1908
+ #: app/view/calendar/view/agenda.php:166
1909
+ msgid "There are no upcoming events to display at this time."
1910
+ msgstr "Nyní nejsou žádné nadcházející události k zobrazení."
1911
+
1912
+ #: app/view/calendar/view/agenda.php:168
1913
+ msgid "Read more"
1914
+ msgstr "Číst více"
1915
+
1916
+ #: app/view/admin/tickets.php:86
1917
+ msgid "Sales"
1918
+ msgstr ""
1919
+
1920
+ #: app/view/admin/tickets.php:87
1921
+ msgid "How do you want the tickets revenue to be sent to you?"
1922
+ msgstr ""
1923
+
1924
+ #: app/view/admin/tickets.php:88
1925
+ msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1926
+ msgstr ""
1927
+
1928
+ #: app/view/admin/tickets.php:91
1929
+ msgid "Cheque"
1930
+ msgstr ""
1931
+
1932
+ #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1933
+ msgid "Paypal"
1934
+ msgstr "Paypal"
1935
+
1936
+ #: app/view/admin/tickets.php:94
1937
+ msgid "Save Changes"
1938
+ msgstr ""
1939
+
1940
+ #: app/view/admin/tickets.php:95
1941
+ msgid "Date"
1942
+ msgstr ""
1943
+
1944
+ #: app/view/admin/tickets.php:96
1945
+ msgid "Event"
1946
+ msgstr ""
1947
+
1948
+ #: app/view/admin/tickets.php:97
1949
+ msgid "Purchaser"
1950
+ msgstr ""
1951
+
1952
+ #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1953
+ #: public/admin/box_event_cost.php:35
1954
+ msgid "Tickets"
1955
+ msgstr "Vstupenky"
1956
+
1957
+ #: app/view/admin/tickets.php:101
1958
+ msgid "Total"
1959
+ msgstr ""
1960
+
1961
+ #: app/view/admin/tickets.php:102
1962
+ msgid "Sign Out"
1963
+ msgstr ""
1964
+
1965
+ #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1966
+ #: app/view/admin/widget-creator.php:47
1967
+ msgid "Widget Creator"
1968
+ msgstr "Vytvoření widgetu"
1969
+
1970
+ #: app/view/admin/widget-creator.php:74
1971
+ msgctxt "meta box"
1972
+ msgid "Widget Creator"
1973
+ msgstr "Vytvořit widget"
1974
+
1975
+ #: app/view/admin/widget-creator.php:131
1976
+ msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1977
+ msgstr ""
1978
+
1979
+ #: app/view/admin/widget-creator.php:132
1980
+ msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1981
+ msgstr ""
1982
+
1983
+ #: app/view/admin/widget-creator.php:134
1984
+ msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1985
+ msgstr ""
1986
+
1987
+ #: app/view/admin/widget-creator.php:140
1988
+ msgid "Paste this code onto your site:"
1989
+ msgstr "Vložte tento kód do vašich stránek:"
1990
+
1991
+ #: app/view/admin/widget-creator.php:141
1992
+ msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1993
+ msgstr ""
1994
+
1995
+ #: app/view/calendar/page.php:54
1996
+ msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
1997
+ msgstr ""
1998
+
1999
+ #: app/view/calendar/page.php:74
2000
+ msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2001
+ msgstr ""
2002
+
2003
+ #: app/view/admin/settings.php:193
2004
+ msgid "Phone Number:"
2005
+ msgstr ""
2006
+
2007
+ #: app/view/admin/settings.php:194
2008
+ msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2009
+ msgstr ""
2010
+
2011
+ #: app/view/admin/settings.php:197
2012
+ msgid "Sign Up"
2013
+ msgstr ""
2014
+
2015
+ #: app/view/admin/settings.php:198
2016
+ msgid "Sign In"
2017
+ msgstr ""
2018
+
2019
+ #: app/view/admin/settings.php:212
2020
+ msgid "Save Settings"
2021
+ msgstr "Uložit nastavení"
2022
+
2023
+ #: app/view/admin/settings.php:219
2024
+ msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2025
+ msgstr "Pokud formulář uvedený níže nefunguje, přejděte na <a href=\"%s\">tento odkaz</a>, prosím."
2026
+
2027
+ #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2028
+ msgid "Theme Options"
2029
+ msgstr "Nastavení šablony"
2030
+
2031
+ #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2032
+ msgid "Calendar Theme Options"
2033
+ msgstr "Nastavení šablony kalendáře"
2034
+
2035
+ #: app/view/admin/theme-options.php:79
2036
+ msgctxt "meta box"
2037
+ msgid "Calendar Theme Options"
2038
+ msgstr "Nastavení šablony kalendáře"
2039
+
2040
+ #: app/view/admin/theme-options.php:133
2041
+ msgid "General"
2042
+ msgstr "Obecné"
2043
+
2044
+ #: app/view/admin/theme-options.php:136
2045
+ msgid "Tables"
2046
+ msgstr "Tabulky"
2047
+
2048
+ #: app/view/admin/theme-options.php:139
2049
+ msgid "Buttons"
2050
+ msgstr "Tlačítka"
2051
+
2052
+ #: app/view/admin/theme-options.php:142
2053
+ msgid "Forms"
2054
+ msgstr "Formuláře"
2055
+
2056
+ #: app/view/admin/theme-options.php:145
2057
+ msgid "Calendar general"
2058
+ msgstr "Kalendář obecný"
2059
+
2060
+ #: app/view/admin/theme-options.php:148
2061
+ msgid "Month/week/day view"
2062
+ msgstr "Mesíční/týdenní/denní zobrazení"
2063
+
2064
+ #: app/view/admin/theme-options.php:151
2065
+ msgid "Agenda view"
2066
+ msgstr "Zobrazení agendy"
2067
+
2068
+ #: app/view/admin/theme-options.php:169
2069
+ msgid "Save Options"
2070
+ msgstr "Uložit možnosti"
2071
+
2072
+ #: app/view/admin/theme-options.php:177
2073
+ msgid "Reset to Defaults"
2074
+ msgstr "Resetovat na výchozí"
2075
+
2076
+ #: app/view/admin/theme-switching.php:31
2077
+ msgid "All-in-One Event Calendar: Themes"
2078
+ msgstr "All-in-One Event Calendar: Šablony"
2079
+
2080
+ #: app/view/admin/tickets.php:36
2081
+ msgid "Ticketing"
2082
+ msgstr ""
2083
+
2084
+ #: app/view/admin/tickets.php:37
2085
+ msgid "Ticketing<sup>beta</sup>"
2086
+ msgstr ""
2087
+
2088
+ #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2089
+ msgid "Time.ly Ticketing<sup>beta</sup>"
2090
+ msgstr ""
2091
+
2092
+ #: app/view/admin/settings.php:98
2093
+ msgctxt "meta box"
2094
+ msgid "Timely"
2095
+ msgstr "Timely"
2096
+
2097
+ #: app/view/admin/settings.php:140
2098
+ msgid "Viewing Events"
2099
+ msgstr "Zobrazení událostí"
2100
+
2101
+ #: app/view/admin/settings.php:143
2102
+ msgid "Adding/Editing Events"
2103
+ msgstr "Přidávání/editace událostí"
2104
+
2105
+ #: app/view/admin/settings.php:146
2106
+ msgid "Advanced"
2107
+ msgstr "Pokročilé"
2108
+
2109
+ #: app/view/admin/settings.php:148
2110
+ msgid "Advanced Settings"
2111
+ msgstr "Pokročilé nastavení"
2112
+
2113
+ #: app/view/admin/settings.php:149
2114
+ msgid "Shortcodes"
2115
+ msgstr "Shortkody"
2116
+
2117
+ #: app/view/admin/settings.php:150
2118
+ msgid "Email Templates"
2119
+ msgstr "Vzory emailů"
2120
+
2121
+ #: app/view/admin/settings.php:151
2122
+ msgid "External Services"
2123
+ msgstr "Externí služby"
2124
+
2125
+ #: app/view/admin/settings.php:152
2126
+ msgid "Cache Report"
2127
+ msgstr ""
2128
+
2129
+ #: app/view/admin/settings.php:171
2130
+ msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2131
+ msgstr ""
2132
+
2133
+ #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2134
+ #: public/admin/box_ask_customer_review.php:112
2135
+ #: public/admin/box_ask_customer_review.php:126
2136
+ #: public/admin/box_ask_customer_review.php:140
2137
+ #: public/admin/box_ask_customer_review.php:158
2138
+ #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2139
+ msgid "This field is required."
2140
+ msgstr ""
2141
+
2142
+ #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2143
+ msgid "Register"
2144
+ msgstr "Registrovat"
2145
+
2146
+ #: app/view/admin/settings.php:184
2147
+ msgid "Sign in"
2148
+ msgstr ""
2149
+
2150
+ #: app/view/admin/settings.php:185
2151
+ msgid "You are successfully signed in to <b>Timely Network</b>."
2152
+ msgstr ""
2153
+
2154
+ #: app/view/admin/settings.php:186
2155
+ msgid "Sign out"
2156
+ msgstr ""
2157
+
2158
+ #: app/view/admin/settings.php:187
2159
+ msgid "Hide form"
2160
+ msgstr ""
2161
+
2162
+ #: app/view/admin/settings.php:188
2163
+ msgid "Show form"
2164
+ msgstr ""
2165
+
2166
+ #: app/view/admin/settings.php:189
2167
+ msgid "Full Name:"
2168
+ msgstr ""
2169
+
2170
+ #: app/view/admin/settings.php:190
2171
+ msgid "Email:"
2172
+ msgstr "E-mail:"
2173
+
2174
+ #: app/view/admin/settings.php:191
2175
+ msgid "Password:"
2176
+ msgstr ""
2177
+
2178
+ #: app/view/admin/settings.php:192
2179
+ msgid "Confirm Password:"
2180
+ msgstr ""
2181
+
2182
+ #: app/view/admin/get-repeat-box.php:483
2183
+ msgid "fourth"
2184
+ msgstr "čtvrtý"
2185
+
2186
+ #: app/view/admin/get-repeat-box.php:495
2187
+ msgid "Sunday"
2188
+ msgstr "Neděle"
2189
+
2190
+ #: app/view/admin/get-repeat-box.php:496
2191
+ msgid "Monday"
2192
+ msgstr "Pondělí"
2193
+
2194
+ #: app/view/admin/get-repeat-box.php:497
2195
+ msgid "Tuesday"
2196
+ msgstr "Úterý"
2197
+
2198
+ #: app/view/admin/get-repeat-box.php:498
2199
+ msgid "Wednesday"
2200
+ msgstr "Středa"
2201
+
2202
+ #: app/view/admin/get-repeat-box.php:499
2203
+ msgid "Thursday"
2204
+ msgstr "Čtvrtek"
2205
+
2206
+ #: app/view/admin/get-repeat-box.php:500
2207
+ msgid "Friday"
2208
+ msgstr "Pátek"
2209
+
2210
+ #: app/view/admin/get-repeat-box.php:501
2211
+ msgid "Saturday"
2212
+ msgstr "Sobota"
2213
+
2214
+ #: app/view/admin/get-repeat-box.php:503
2215
+ msgid "day"
2216
+ msgstr "den"
2217
+
2218
+ #: app/view/admin/get-repeat-box.php:504
2219
+ msgid "weekday"
2220
+ msgstr "pracovní den"
2221
+
2222
+ #: app/view/admin/get-repeat-box.php:505
2223
+ msgid "weekend day"
2224
+ msgstr "víkendový den"
2225
+
2226
+ #: app/view/admin/get-repeat-box.php:571
2227
+ msgid "year(s)"
2228
+ msgstr "rok(ů)"
2229
+
2230
+ #: app/view/admin/nav.php:22
2231
+ msgid "<a href=\"%s\">Settings</a>"
2232
+ msgstr "<a href=\"%s\">Nastavení</a>"
2233
+
2234
+ #: app/view/admin/nav.php:28
2235
+ msgid "<a href=\"%s\">Check for updates</a>"
2236
+ msgstr ""
2237
+
2238
+ #: app/view/admin/organize.php:100
2239
+ msgid "Organize Events"
2240
+ msgstr "Uspořádat události"
2241
+
2242
+ #: app/view/admin/settings.php:30
2243
+ msgid "All-in-One Event Calendar: Settings"
2244
+ msgstr "All-in-One Event Calendar: Nastavení"
2245
+
2246
+ #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2247
+ #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2248
+ msgid "Settings"
2249
+ msgstr "Nastavení"
2250
+
2251
+ #: app/view/admin/settings.php:89
2252
+ msgctxt "meta box"
2253
+ msgid "General Settings"
2254
+ msgstr "Obecná nastavení"
2255
+
2256
+ #: app/view/admin/get-repeat-box.php:480
2257
+ msgid "first"
2258
+ msgstr "první"
2259
+
2260
+ #: app/view/admin/get-repeat-box.php:481
2261
+ msgid "second"
2262
+ msgstr "druhý"
2263
+
2264
+ #: app/view/admin/get-repeat-box.php:482
2265
+ msgid "third"
2266
+ msgstr "třetí"
2267
+
2268
+ #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2269
+ msgid "Import Feeds"
2270
+ msgstr ""
2271
+
2272
+ #: app/view/admin/calendar-feeds.php:48
2273
+ msgctxt "meta box"
2274
+ msgid "Feed Subscriptions"
2275
+ msgstr ""
2276
+
2277
+ #: app/view/admin/calendar-feeds.php:65
2278
+ msgid "All-in-One Event Calendar: Import Feeds"
2279
+ msgstr ""
2280
+
2281
+ #: app/view/admin/event-category.php:30
2282
+ msgid "Color"
2283
+ msgstr "Barva"
2284
+
2285
+ #: app/view/admin/event-category.php:32
2286
+ msgid "Image"
2287
+ msgstr "Obrázek"
2288
+
2289
+ #: app/view/admin/event-category.php:155
2290
+ msgid "Category Color"
2291
+ msgstr "Barva kategorie"
2292
+
2293
+ #: app/view/admin/event-category.php:156
2294
+ msgid "Events in this category will be identified by this color"
2295
+ msgstr "Události této kategorie budou označeny touto barvou"
2296
+
2297
+ #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2298
+ msgid "Category Image"
2299
+ msgstr "Obrázek kategorie"
2300
+
2301
+ #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2302
+ msgid "Add Image"
2303
+ msgstr "Přidat obrázek"
2304
+
2305
+ #: app/view/admin/event-category.php:195
2306
+ msgid "Remove Image"
2307
+ msgstr "Odstranit obrázek"
2308
+
2309
+ #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2310
+ msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2311
+ msgstr "Přiřaďte volitelný obrázek kategorii. Doporučená velikost: čtvercový formát, min. 400&times;400 pixelů."
2312
+
2313
+ #: app/view/admin/get-repeat-box.php:94
2314
+ msgid "times"
2315
+ msgstr "krát"
2316
+
2317
+ #: app/view/admin/get-repeat-box.php:164
2318
+ msgid "Recurrence rule cannot be empty."
2319
+ msgstr "Pravidlo opakování nemůže být prázdné."
2320
+
2321
+ #: app/view/admin/get-repeat-box.php:182
2322
+ msgid "Recurrence rule was not provided."
2323
+ msgstr "Pravidlo pro opakování nebylo uplatněno."
2324
+
2325
+ #: app/view/admin/get-repeat-box.php:209
2326
+ msgid "Never"
2327
+ msgstr "Níkdy"
2328
+
2329
+ #: app/view/admin/get-repeat-box.php:210
2330
+ msgid "After"
2331
+ msgstr "Po"
2332
+
2333
+ #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2334
+ msgid "On date"
2335
+ msgstr "V termínu"
2336
+
2337
+ #: app/view/admin/get-repeat-box.php:247
2338
+ msgid "day(s)"
2339
+ msgstr "den (dnů)"
2340
+
2341
+ #: app/view/admin/get-repeat-box.php:330
2342
+ msgid "week(s)"
2343
+ msgstr "týden (týdnů)"
2344
+
2345
+ #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2346
+ #: lib/recurrence/rule.php:298
2347
+ msgid "last"
2348
+ msgstr "poslední"
2349
+
2350
+ #: app/view/admin/get-repeat-box.php:426
2351
+ msgid "month(s)"
2352
+ msgstr "měsíc(ů)"
2353
+
2354
+ #: app/model/settings.php:929
2355
+ msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2356
+ msgstr ""
2357
+
2358
+ #: app/model/settings.php:932
2359
+ msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2360
+ msgstr ""
2361
+
2362
+ #: app/model/settings.php:944
2363
+ msgid "Current <strong>robots.txt</strong> on this site"
2364
+ msgstr "Aktuální <strong>robots.txt</strong> na těchto stránkách"
2365
+
2366
+ #: app/model/settings.php:948
2367
+ msgid ""
2368
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2369
+ "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2370
+ "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2371
+ "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2372
+ "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2373
+ msgstr ""
2374
+
2375
+ #: app/model/settings.php:965
2376
+ msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2377
+ msgstr "<strong>Zveřejnit, propagovat a sdílet mé akce</strong> označené jako veřejné v sítí Timely. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2378
+
2379
+ #: app/model/settings.php:988
2380
+ msgid "Templates cache improves site performance"
2381
+ msgstr ""
2382
+
2383
+ #: app/model/settings.php:1001
2384
+ msgid "Display events in <strong>calendar time zone</strong>"
2385
+ msgstr ""
2386
+
2387
+ #: app/model/settings.php:1004
2388
+ msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2389
+ msgstr ""
2390
+
2391
+ #: app/view/admin/add-new-event.php:26
2392
+ msgid "Event Details"
2393
+ msgstr "Detail události"
2394
+
2395
+ #: app/view/admin/add-new-event.php:423
2396
+ msgid "Set banner image"
2397
+ msgstr "Nastavit obrázek banneru"
2398
+
2399
+ #: app/view/admin/add-new-event.php:424
2400
+ msgid "Remove banner image"
2401
+ msgstr "Odstranit obrázek banneru"
2402
+
2403
+ #: app/view/admin/add-ons.php:68
2404
+ msgid "Add-ons for All In One Event Calendar"
2405
+ msgstr "Doplňky pro All In One Event Calendar"
2406
+
2407
+ #: app/view/admin/add-ons.php:71
2408
+ msgid "Browse All Extensions"
2409
+ msgstr "Procházet všechna rozšíření"
2410
+
2411
+ #: app/view/admin/add-ons.php:74
2412
+ msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2413
+ msgstr "Tyto doplňky rozšiřují funkcionalitu All In One Event Calendar"
2414
+
2415
+ #: app/view/admin/add-ons.php:77
2416
+ msgid "There was an error retrieving the extensions list from the server. Please try again later."
2417
+ msgstr "Vyskytla se chyba při získávání seznamu rozšíření ze serveru. Opakujte akci později."
2418
+
2419
+ #: app/view/admin/all-events.php:16
2420
+ msgid "Author"
2421
+ msgstr "Autor"
2422
+
2423
+ #: app/view/admin/all-events.php:17
2424
+ msgid "Post Date"
2425
+ msgstr "Datum vystavení"
2426
+
2427
+ #: app/view/admin/all-events.php:18
2428
+ msgid "Event date/time"
2429
+ msgstr "Datum/čas události"
2430
+
2431
+ #: app/view/admin/all-events.php:22
2432
+ msgid "Ticket Types"
2433
+ msgstr ""
2434
+
2435
+ #: app/view/admin/all-events.php:134
2436
+ msgid "Show All "
2437
+ msgstr "Ukázat vše"
2438
+
2439
+ #: app/view/admin/all-events.php:147
2440
+ msgid "Show All Authors"
2441
+ msgstr ""
2442
+
2443
+ #: app/model/settings.php:746
2444
+ msgid "Strict compatibility content filtering"
2445
+ msgstr "Filtrace obsahu v režimu striktní kompatibility"
2446
+
2447
+ #: app/model/settings.php:758
2448
+ msgid " <strong>Hide featured image</strong> from event details page"
2449
+ msgstr ""
2450
+
2451
+ #: app/model/settings.php:761
2452
+ msgid "Select this option if your theme already displays each post's featured image."
2453
+ msgstr ""
2454
+
2455
+ #: app/model/settings.php:772
2456
+ msgid "Input dates in this format"
2457
+ msgstr "Vložte datumy v těchto formátech"
2458
+
2459
+ #: app/model/settings.php:777
2460
+ msgid "Default (d/m/yyyy)"
2461
+ msgstr "Výchozí (d/m/yyyy)"
2462
+
2463
+ #: app/model/settings.php:781
2464
+ msgid "US (m/d/yyyy)"
2465
+ msgstr "Americký (m/d/yyyy)"
2466
+
2467
+ #: app/model/settings.php:785
2468
+ msgid "ISO 8601 (yyyy-m-d)"
2469
+ msgstr "ISO 8601 (yyyy-m-d)"
2470
+
2471
+ #: app/model/settings.php:789
2472
+ msgid "Dotted (m.d.yyyy)"
2473
+ msgstr "S tečkami (m.d.yyyy)"
2474
+
2475
+ #: app/model/settings.php:801
2476
+ msgid " Use <strong>24h time</strong> in time pickers"
2477
+ msgstr ""
2478
+
2479
+ #: app/model/settings.php:812
2480
+ msgid "<strong>Disable address autocomplete</strong> function"
2481
+ msgstr "<strong>Zakázat funkci automatické dokončování adres</strong>"
2482
+
2483
+ #: app/model/settings.php:823
2484
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2485
+ msgstr ""
2486
+
2487
+ #: app/model/settings.php:839
2488
+ msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2489
+ msgstr "Zobrazit staré <strong>Vložit událost</strong> tlačítko nad kalendářem pro privilegované uživatele"
2490
+
2491
+ #: app/model/settings.php:842
2492
+ msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2493
+ msgstr ""
2494
+
2495
+ #: app/model/settings.php:863
2496
+ msgid "Move calendar into this DOM element"
2497
+ msgstr ""
2498
+
2499
+ #: app/model/settings.php:865
2500
+ msgid ""
2501
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2502
+ "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2503
+ "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2504
+ "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2505
+ "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2506
+ "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2507
+ "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2508
+ "\t\t\t\t\t\tby the calendar."
2509
+ msgstr ""
2510
+
2511
+ #: app/model/settings.php:884
2512
+ msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2513
+ msgstr ""
2514
+
2515
+ #: app/model/settings.php:887
2516
+ msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2517
+ msgstr ""
2518
+
2519
+ #: app/model/settings.php:899
2520
+ msgid "Disable <strong>gzip</strong> compression."
2521
+ msgstr "Deaktivovat <strong>gzip</strong> kompresi."
2522
+
2523
+ #: app/model/settings.php:902
2524
+ msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2525
+ msgstr "Použijte tuto volbu pokud se kalendář chová neresponsivně <a href=\"http://support.time.ly/disable-gzip-compression/\">Čti více</a> o tomto problému. (Pro verzi 2.1 a vyšší je gzip zakázán jako výchozí volba pro zachování co největší kompatibility.)"
2526
+
2527
+ #: app/model/settings.php:914
2528
+ msgid "Use frontend rendering."
2529
+ msgstr "Použít před-renderování"
2530
+
2531
+ #: app/model/settings.php:917
2532
+ msgid "Renders calendar views on the client rather than the server; can improve performance."
2533
+ msgstr "Organizovat události"
2534
+
2535
+ #: app/model/settings.php:493 app/view/calendar/widget.php:128
2536
+ msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2537
+ msgstr ""
2538
+
2539
+ #: app/model/settings.php:508
2540
+ msgid "Default calendar start date (optional)"
2541
+ msgstr "Výchozí datum začátku kalendáře (volitelně)"
2542
+
2543
+ #: app/model/settings.php:519
2544
+ msgid "Agenda pages show at most"
2545
+ msgstr "Stránky agendy zobrazí maximálně"
2546
+
2547
+ #: app/model/settings.php:532
2548
+ msgid "Week/Day view starts at"
2549
+ msgstr "Zobrazení týdne/dne začíná v"
2550
+
2551
+ #: app/model/settings.php:545
2552
+ msgid "Week/Day view ends at"
2553
+ msgstr "Zobrazení týdne/dne končí v"
2554
+
2555
+ #: app/model/settings.php:558
2556
+ msgid "<strong>Word-wrap event stubs</strong> in Month view"
2557
+ msgstr ""
2558
+
2559
+ #: app/model/settings.php:561
2560
+ msgid "Only applies to events that span a single day."
2561
+ msgstr "Funguje jen u událostí s rozestupem jeden den."
2562
+
2563
+ #: app/model/settings.php:573
2564
+ msgid ""
2565
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2566
+ "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2567
+ "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2568
+ "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2569
+ "\t\t\t\t\t\tfrom last day shown</strong>"
2570
+ msgstr ""
2571
+
2572
+ #: app/model/settings.php:589
2573
+ msgid "Keep all events <strong>expanded</strong> in Agenda view"
2574
+ msgstr "Zachovat všechny události <strong>rozbalené</strong> v Zobrazení agendy"
2575
+
2576
+ #: app/model/settings.php:601
2577
+ msgid "<strong>Show year</strong> in calendar date labels"
2578
+ msgstr "<strong>Zobrazit rok</strong> v názvech datumů kalendáře"
2579
+
2580
+ #: app/model/settings.php:613
2581
+ msgid "<strong>Show location in event titles</strong> in calendar views"
2582
+ msgstr "<strong>Zobrazit umístění v názvech událostí</strong> v zobrazeních kalendáře"
2583
+
2584
+ #: app/model/settings.php:625
2585
+ msgid "<strong>Exclude</strong> events from search results"
2586
+ msgstr "<strong>Vyloučit</strong> události z výsledků hledání"
2587
+
2588
+ #: app/model/settings.php:637
2589
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2590
+ msgstr ""
2591
+
2592
+ #: app/model/settings.php:649
2593
+ msgid "Hide <strong>Get a Timely Calendar</strong> button"
2594
+ msgstr "Skrýt tlačítko <strong>Získat kalendář Timely</strong> "
2595
+
2596
+ #: app/model/settings.php:661
2597
+ msgid " Hide <strong>Google Maps</strong> until clicked"
2598
+ msgstr " Skrýt <strong>Google Mapy</strong> dokud na ně nekliknete"
2599
+
2600
+ #: app/model/settings.php:673
2601
+ msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2602
+ msgstr ""
2603
+
2604
+ #: app/model/settings.php:676
2605
+ msgid "Only applies to first visible calendar found on the page."
2606
+ msgstr "Aplikováno pouze na první viditelný kalendář nalezený na stránce."
2607
+
2608
+ #: app/model/settings.php:688
2609
+ msgid "Offset affixed filter bar vertically by"
2610
+ msgstr ""
2611
+
2612
+ #: app/model/settings.php:703
2613
+ msgid "Wide screens only (&#8805; 1200px)"
2614
+ msgstr " Pouze pro širokoúhlé obrazovky (&#8805; 1200px)"
2615
+
2616
+ #: app/model/settings.php:718
2617
+ msgid "Tablets only (< 980px)"
2618
+ msgstr "Pouze pro tablety (< 980px)"
2619
+
2620
+ #: app/model/settings.php:733
2621
+ msgid "Phones only (< 768px)"
2622
+ msgstr "Pouze pro telefony (< 768px)"
2623
+
2624
+ #: app/model/api.php:456
2625
+ msgid "Not available"
2626
+ msgstr ""
2627
+
2628
+ #: app/model/api.php:659
2629
+ msgid "%s.<br/>Detail: %s."
2630
+ msgstr ""
2631
+
2632
+ #: app/model/api.php:664
2633
+ msgid "API URL: %s.<br/>Detail: %s - %s"
2634
+ msgstr ""
2635
+
2636
+ #: app/model/api.php:672
2637
+ msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2638
+ msgstr ""
2639
+
2640
+ #: app/model/api.php:679
2641
+ msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2642
+ msgstr ""
2643
+
2644
+ #: app/model/event/parent.php:186
2645
+ msgid "Edit &#8220;%s&#8221;"
2646
+ msgstr ""
2647
+
2648
+ #: app/model/event/parent.php:193
2649
+ msgid "Base Event"
2650
+ msgstr "Základní událost"
2651
+
2652
+ #: app/model/review.php:169
2653
+ msgid "Feedback provided by user"
2654
+ msgstr ""
2655
+
2656
+ #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2657
+ msgid "Name"
2658
+ msgstr "Jméno"
2659
+
2660
+ #: app/model/review.php:173
2661
+ msgid "E-mail"
2662
+ msgstr ""
2663
+
2664
+ #: app/model/review.php:175
2665
+ msgid "Site URL"
2666
+ msgstr ""
2667
+
2668
+ #: app/model/review.php:177
2669
+ msgid "Message"
2670
+ msgstr ""
2671
+
2672
+ #: app/model/settings.php:401
2673
+ #: lib/html/element/setting/calendar-page-selector.php:50
2674
+ msgid "Calendar page"
2675
+ msgstr "Strana kalendáře"
2676
+
2677
+ #: app/model/settings.php:411
2678
+ msgid "Week starts on"
2679
+ msgstr "Týden startuje od"
2680
+
2681
+ #: app/model/settings.php:424
2682
+ msgid "Available views"
2683
+ msgstr "Dostupná zobrazení"
2684
+
2685
+ #: app/model/settings.php:432
2686
+ msgid "Agenda"
2687
+ msgid_plural "Agenda"
2688
+ msgstr[0] "Agenda"
2689
+ msgstr[1] "Agendy"
2690
+ msgstr[2] "Agend"
2691
+
2692
+ #: app/model/settings.php:443
2693
+ msgid "Day"
2694
+ msgid_plural "Day"
2695
+ msgstr[0] "Den"
2696
+ msgstr[1] "Dny"
2697
+ msgstr[2] "Dnů"
2698
+
2699
+ #: app/model/settings.php:454
2700
+ msgid "Month"
2701
+ msgid_plural "Month"
2702
+ msgstr[0] "Měsíc"
2703
+ msgstr[1] "Měsíce"
2704
+ msgstr[2] "Měsíců"
2705
+
2706
+ #: app/model/settings.php:465
2707
+ msgid "Week"
2708
+ msgid_plural "Week"
2709
+ msgstr[0] "Týden"
2710
+ msgstr[1] "Týdny"
2711
+ msgstr[2] "Týdnů"
2712
+
2713
+ #: app/model/settings.php:479
2714
+ msgid "Timezone"
2715
+ msgstr "Časové pásmo"
2716
+
2717
+ #: app/model/settings.php:492
2718
+ msgid "Preselected calendar filters"
2719
+ msgstr "Předvybrané filtry kalendáře"
2720
+
2721
+ #: app/controller/javascript.php:509
2722
+ msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2723
+ msgstr "Vyskytla se chyba při získávání událostí.<br>Stav: %STATUS% <br>Chyba: %ERROR%"
2724
+
2725
+ #: app/controller/javascript.php:516
2726
+ msgid "The end date can't be earlier than the start date."
2727
+ msgstr "Událost nemůže skončit dřív než začne. "
2728
+
2729
+ #: app/controller/javascript.php:517
2730
+ msgid "For week and day view, you must select an interval of at least 6 hours."
2731
+ msgstr "Je třeba zvolit alespoň 6ti hodinový interval pro týdenní a denní náhled."
2732
+
2733
+ #: app/model/api.php:40
2734
+ msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2735
+ msgstr ""
2736
+
2737
+ #: app/model/api.php:41
2738
+ msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2739
+ msgstr ""
2740
+
2741
+ #: app/model/api.php:42
2742
+ msgid "We were unable to Sign you Up for Time.ly Ticketing"
2743
+ msgstr ""
2744
+
2745
+ #: app/model/api.php:43
2746
+ msgid "We were unable to Sign you In for Time.ly Ticketing"
2747
+ msgstr ""
2748
+
2749
+ #: app/model/api.php:44
2750
+ msgid "We were unable to create the Event on Time.ly Ticketing"
2751
+ msgstr ""
2752
+
2753
+ #: app/model/api.php:45
2754
+ msgid "We were unable to update the Event on Time.ly Ticketing"
2755
+ msgstr ""
2756
+
2757
+ #: app/model/api.php:46
2758
+ msgid "The event has the option Tickets selected but any ticket was added."
2759
+ msgstr ""
2760
+
2761
+ #: app/model/api.php:47
2762
+ msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2763
+ msgstr ""
2764
+
2765
+ #: app/model/api.php:48
2766
+ msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2767
+ msgstr ""
2768
+
2769
+ #: app/model/api.php:49
2770
+ msgid "Payment preferences were not saved."
2771
+ msgstr ""
2772
+
2773
+ #: app/model/api.php:50
2774
+ msgid "Payment preferences were saved."
2775
+ msgstr ""
2776
+
2777
+ #: app/model/api.php:51
2778
+ msgid "Event not found inside the database."
2779
+ msgstr ""
2780
+
2781
+ #: app/model/api.php:52
2782
+ msgid "We were unable to get the Sales information from Time.ly Ticketing"
2783
+ msgstr ""
2784
+
2785
+ #: app/model/api.php:446
2786
+ msgid "Past Event"
2787
+ msgstr ""
2788
+
2789
+ #: app/model/api.php:448
2790
+ msgid "Event closed"
2791
+ msgstr ""
2792
+
2793
+ #: app/model/api.php:450
2794
+ msgid "Not available yet"
2795
+ msgstr ""
2796
+
2797
+ #: app/model/api.php:452
2798
+ msgid "Sale closed"
2799
+ msgstr ""
2800
+
2801
+ #: app/model/api.php:454
2802
+ msgid "Sold out"
2803
+ msgstr ""
2804
+
2805
+ #: app/controller/javascript.php:484
2806
+ msgid "Report"
2807
+ msgstr ""
2808
+
2809
+ #: app/controller/javascript.php:485
2810
+ msgid "Sale dates"
2811
+ msgstr ""
2812
+
2813
+ #: app/controller/javascript.php:486
2814
+ msgid "Limits"
2815
+ msgstr ""
2816
+
2817
+ #: app/controller/javascript.php:487
2818
+ msgid "Actions"
2819
+ msgstr ""
2820
+
2821
+ #: app/controller/javascript.php:488
2822
+ msgid "Sold:"
2823
+ msgstr ""
2824
+
2825
+ #: app/controller/javascript.php:489
2826
+ msgid "Left:"
2827
+ msgstr ""
2828
+
2829
+ #: app/controller/javascript.php:490
2830
+ msgid "Start:"
2831
+ msgstr ""
2832
+
2833
+ #: app/controller/javascript.php:491
2834
+ msgid "End:"
2835
+ msgstr ""
2836
+
2837
+ #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2838
+ msgid "Min:"
2839
+ msgstr ""
2840
+
2841
+ #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2842
+ msgid "Max:"
2843
+ msgstr ""
2844
+
2845
+ #: app/controller/javascript.php:494
2846
+ msgid "Attendees"
2847
+ msgstr ""
2848
+
2849
+ #: app/controller/javascript.php:495
2850
+ msgid "Hide Attendees"
2851
+ msgstr ""
2852
+
2853
+ #: app/controller/javascript.php:496
2854
+ msgid "Attendees List"
2855
+ msgstr ""
2856
+
2857
+ #: app/controller/javascript.php:497
2858
+ msgid "Guest Name"
2859
+ msgstr ""
2860
+
2861
+ #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2862
+ msgid "Status"
2863
+ msgstr ""
2864
+
2865
+ #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2866
+ #: app/view/event/ticket.php:71
2867
+ msgid "Email"
2868
+ msgstr "Email"
2869
+
2870
+ #: app/controller/javascript.php:500
2871
+ msgid "No attendees for this ticket type."
2872
+ msgstr ""
2873
+
2874
+ #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2875
+ #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2876
+ msgid "Edit"
2877
+ msgstr "Upravit"
2878
+
2879
+ #: app/controller/javascript.php:502
2880
+ msgid "Code"
2881
+ msgstr ""
2882
+
2883
+ #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2884
+ msgid "Unlimited"
2885
+ msgstr ""
2886
+
2887
+ #: app/controller/javascript.php:506
2888
+ msgid "Your message has been sent. Thank you for your feedback."
2889
+ msgstr ""
2890
+
2891
+ #: app/controller/javascript.php:507
2892
+ msgid "Your message has not been sent. Please try again or contact us."
2893
+ msgstr ""
2894
+
2895
+ #: app/controller/javascript.php:405
2896
+ msgid "Please enter a valid iCalendar URL."
2897
+ msgstr "Zadejte, prosím, platný odkaz URL iKalendáře."
2898
+
2899
+ #: app/controller/javascript.php:408
2900
+ msgid "Please enter a valid email address."
2901
+ msgstr "Prosím vložte platnou emailovou adresu."
2902
+
2903
+ #: app/controller/javascript.php:410
2904
+ msgid "Choose Image"
2905
+ msgstr "Vybrat obrázek"
2906
+
2907
+ #: app/controller/javascript.php:413
2908
+ msgid "The value you have entered is not a valid CSS length."
2909
+ msgstr "Zadaná hodnota není v platném CSS formátu."
2910
+
2911
+ #: app/controller/javascript.php:416
2912
+ msgid "Are you sure you want to reset your theme options to their default values?"
2913
+ msgstr "Jste si jist, že chcete resetovat nastavení šablony do výchozího nastavení?"
2914
+
2915
+ #: app/controller/javascript.php:419
2916
+ msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2917
+ msgstr "Prosím vložte platnou zeměpisnou šířku. Platná hodnota leží mezi +90 a -90."
2918
+
2919
+ #: app/controller/javascript.php:422
2920
+ msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2921
+ msgstr "Prosím vložte platnou zeměpisnou dílku. Platná hodnota leží mezi +180 a -180."
2922
+
2923
+ #: app/controller/javascript.php:425
2924
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2925
+ msgstr ""
2926
+
2927
+ #: app/controller/javascript.php:428
2928
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2929
+ msgstr ""
2930
+
2931
+ #: app/controller/javascript.php:431
2932
+ msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2933
+ msgstr ""
2934
+
2935
+ #: app/controller/javascript.php:434
2936
+ msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2937
+ msgstr "URL vložená do <b>Cena akce a vstupenky</b> &gt; <b>Koupit vstupenku URL</b> se zdá být neplatná."
2938
+
2939
+ #: app/controller/javascript.php:437
2940
+ msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2941
+ msgstr "URL musí začínat buď \"http://\" nebo \"https://\"."
2942
+
2943
+ #: app/controller/javascript.php:440
2944
+ msgid "Loading&hellip;"
2945
+ msgstr ""
2946
+
2947
+ #: app/controller/javascript.php:443
2948
+ msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2949
+ msgstr ""
2950
+
2951
+ #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2952
+ msgid "Preview:"
2953
+ msgstr "Náhled:"
2954
+
2955
+ #: app/controller/javascript.php:474
2956
+ msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2957
+ msgstr "Nahrávám náhled&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2958
+
2959
+ #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2960
+ msgid "Ticketing Details"
2961
+ msgstr ""
2962
+
2963
+ #: app/controller/javascript.php:480
2964
+ msgid "Hide Ticketing Details"
2965
+ msgstr ""
2966
+
2967
+ #: app/controller/javascript.php:481
2968
+ msgid "Loading tickets details..."
2969
+ msgstr ""
2970
+
2971
+ #: app/controller/javascript.php:482
2972
+ msgid "Type and price"
2973
+ msgstr ""
2974
+
2975
+ #: app/controller/javascript.php:483
2976
+ msgid "Info"
2977
+ msgstr ""
2978
+
2979
+ #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2980
+ #: app/view/admin/add-ons.php:27
2981
+ msgid "Add-ons"
2982
+ msgstr "Doplňky"
2983
+
2984
+ #: app/controller/front.php:343
2985
+ msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
2986
+ msgstr ""
2987
+
2988
+ #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
2989
+ #: app/view/admin/theme-switching.php:55
2990
+ msgid "Calendar Themes"
2991
+ msgstr "Šablony kalendáře"
2992
+
2993
+ #: app/controller/front.php:990
2994
+ msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
2995
+ msgstr ""
2996
+
2997
+ #: app/controller/javascript-widget.php:48
2998
+ msgid "You must choose the Calendar page before using the Super Widget"
2999
+ msgstr "Před použitím Super widgetu musíte vybrat stránku kalendáře"
3000
+
3001
+ #: app/controller/javascript.php:402
3002
+ msgid "This feed is already being imported."
3003
+ msgstr ""
language/all-in-one-event-calendar-cs_CZ.mo CHANGED
Binary file
language/all-in-one-event-calendar-cs_CZ.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-02-03 00:57:35+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -33,7 +33,7 @@ msgstr "Pozadí datumu měsíčního zobrazení"
33
  #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
  #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
  msgid "Week/day view now marker"
36
- msgstr "Značka pro zobrazení aktuálního týdne/dne"
37
 
38
  #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
  #: public/themes-ai1ec/vortex/less/user_variables.php:239
@@ -70,7 +70,7 @@ msgstr "Time.ly Network Inc."
70
  #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
  #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
  msgid "List item background (active/hover)"
73
- msgstr ""
74
 
75
  #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
  #: public/themes-ai1ec/vortex/less/user_variables.php:155
@@ -80,7 +80,7 @@ msgstr ""
80
  #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
  #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
  msgid "Today color"
83
- msgstr "Dnes barva"
84
 
85
  #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
  #: public/themes-ai1ec/vortex/less/user_variables.php:167
@@ -155,7 +155,7 @@ msgstr "Název pole"
155
  #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
  #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
  msgid "Dropdown list background"
158
- msgstr "Pozadí rozbalovacího seznamu "
159
 
160
  #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
  #: public/themes-ai1ec/vortex/less/user_variables.php:131
@@ -165,12 +165,12 @@ msgstr "Ohraničení dropdown seznamu"
165
  #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
  #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
  msgid "List item text"
168
- msgstr "Text položky seznamu"
169
 
170
  #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
  #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
  msgid "List item text (active/hover)"
173
- msgstr "Text položky seznamu (aktivní/po najetí myší)"
174
 
175
  #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
  msgid "New theme activated. <a href=\"%s\">Visit site</a>"
@@ -316,7 +316,7 @@ msgstr "Zobrazit mapu v importovaných událostech"
316
 
317
  #: public/admin/plugins/ics/display_feeds.php:59
318
  msgid "Import any tags/categories provided by feed, in addition those selected above"
319
- msgstr ""
320
 
321
  #: public/admin/plugins/ics/display_feeds.php:93
322
  msgid "Add new subscription"
@@ -726,7 +726,7 @@ msgstr "Událost zdarma"
726
 
727
  #: public/admin/box_event_cost.php:41
728
  msgid "External Tickets URL"
729
- msgstr ""
730
 
731
  #: public/admin/box_event_cost.php:52
732
  msgid "Ticketing allows you to sell tickets directly to the users."
@@ -734,11 +734,11 @@ msgstr ""
734
 
735
  #: public/admin/box_event_cost.php:55
736
  msgid "Sign Up for Timely Network"
737
- msgstr ""
738
 
739
  #: public/admin/box_event_cost.php:80
740
  msgid "Remove Ticket Type"
741
- msgstr ""
742
 
743
  #: public/admin/box_event_cost.php:101
744
  msgid "Ex.: Regular Ticket"
@@ -817,7 +817,7 @@ msgstr "Jméno:"
817
  #: public/admin/box_ask_customer_review.php:136
818
  #: public/admin/box_event_contact.php:43
819
  msgid "E-mail:"
820
- msgstr "Email:"
821
 
822
  #: public/admin/box_ask_customer_review.php:143
823
  msgid "E-mail is invalid."
@@ -837,7 +837,7 @@ msgstr "Děkujeme, že jste našim zákazníkem, "
837
 
838
  #: public/admin/box_ask_customer_review.php:174
839
  msgid "Aristotel Dascal, VP of Product, Time.ly"
840
- msgstr ""
841
 
842
  #: public/admin/box_ask_customer_review.php:180
843
  msgid "Sending..."
@@ -873,7 +873,7 @@ msgstr "Kontaktní informace organizátora"
873
 
874
  #: public/admin/box_event_contact.php:17
875
  msgid "Contact name:"
876
- msgstr "Kontaktní jméno:"
877
 
878
  #: lib/theme/loader.php:325
879
  msgid "We couldn't find a suitable loader for filename with extension '%s'"
@@ -1068,7 +1068,7 @@ msgstr "Uspořádat"
1068
  #: lib/post/custom-type.php:94
1069
  msgctxt "Event tags taxonomy"
1070
  msgid "Tags"
1071
- msgstr "Tagy"
1072
 
1073
  #: lib/post/custom-type.php:95
1074
  msgctxt "Event tags taxonomy (singular)"
@@ -1174,11 +1174,11 @@ msgstr "Událost"
1174
 
1175
  #: lib/post/custom-type.php:28
1176
  msgid "Add New"
1177
- msgstr "Vložit nové"
1178
 
1179
  #: lib/post/custom-type.php:29
1180
  msgid "Add New Event"
1181
- msgstr "Vložit novou událost"
1182
 
1183
  #: lib/post/custom-type.php:30
1184
  msgid "Edit Event"
@@ -1190,7 +1190,7 @@ msgstr "Nová událost"
1190
 
1191
  #: lib/post/custom-type.php:32
1192
  msgid "View Event"
1193
- msgstr "Zobrazit událost"
1194
 
1195
  #: lib/post/custom-type.php:33
1196
  msgid "Search Events"
@@ -1438,7 +1438,7 @@ msgstr "GMT%+d:%02d"
1438
 
1439
  #: lib/date/timezone.php:362
1440
  msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1441
- msgstr "Vyberte, prosím, časové pásmo stránek v %s <em>Časové pásmo</em> v rozbalovací nabídce."
1442
 
1443
  #: lib/date/timezone.php:397
1444
  msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
@@ -1482,7 +1482,7 @@ msgstr "Rozšíření \"%s\" bylo deaktivováno kvůli chybě:"
1482
 
1483
  #: lib/calendar-feed/ics.php:367
1484
  msgid "Do you want to keep the events imported from the calendar or remove them?"
1485
- msgstr ""
1486
 
1487
  #: lib/calendar-feed/ics.php:373
1488
  msgid "Removing ICS Feed"
@@ -1629,7 +1629,7 @@ msgstr "ICS"
1629
 
1630
  #: lib/calendar-feed/ics.php:69
1631
  msgid "Another import process in progress. Please try again later."
1632
- msgstr "Proces importu již probíhá. Zkuste to, prosím, později."
1633
 
1634
  #: lib/calendar-feed/ics.php:174
1635
  msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
@@ -1648,7 +1648,7 @@ msgstr[2] "Importováno %s událostí"
1648
 
1649
  #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1650
  msgid "Invalid ICS feed ID"
1651
- msgstr "Neplatné ID ICS odběru/kanálu"
1652
 
1653
  #: lib/calendar-feed/ics.php:350
1654
  msgid "Categories (optional)"
@@ -1718,7 +1718,7 @@ msgstr "Událost naplánována pro: <strong>%1$s</strong>. <a target=\"_blank\"
1718
  #. translators: Publish box date format, see http:php.net/date
1719
  #: app/view/event/post.php:54
1720
  msgid "M j, Y @ G:i"
1721
- msgstr "M j, Y @ G:i"
1722
 
1723
  #: app/view/event/post.php:58
1724
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
@@ -1742,7 +1742,7 @@ msgstr "Kontakt:"
1742
 
1743
  #: app/view/calendar/view/agenda.php:169
1744
  msgid "Categories:"
1745
- msgstr "Kategorie:"
1746
 
1747
  #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1748
  #: public/admin/themes.php:29
@@ -1805,7 +1805,7 @@ msgstr "Počet dnů k zobrazení"
1805
 
1806
  #: app/view/calendar/widget.php:124
1807
  msgid "Show events filtered for the following tags/categories"
1808
- msgstr "Zobrazit události filtrované podle následujících štítků/kategorií"
1809
 
1810
  #: app/view/calendar/widget.php:141
1811
  msgid "Show the subscribe button in the widget"
@@ -1978,7 +1978,7 @@ msgstr ""
1978
 
1979
  #: app/view/admin/widget-creator.php:132
1980
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1981
- msgstr ""
1982
 
1983
  #: app/view/admin/widget-creator.php:134
1984
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
@@ -2079,15 +2079,15 @@ msgstr "All-in-One Event Calendar: Šablony"
2079
 
2080
  #: app/view/admin/tickets.php:36
2081
  msgid "Ticketing"
2082
- msgstr ""
2083
 
2084
  #: app/view/admin/tickets.php:37
2085
  msgid "Ticketing<sup>beta</sup>"
2086
- msgstr ""
2087
 
2088
  #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2089
  msgid "Time.ly Ticketing<sup>beta</sup>"
2090
- msgstr ""
2091
 
2092
  #: app/view/admin/settings.php:98
2093
  msgctxt "meta box"
@@ -2104,15 +2104,15 @@ msgstr "Přidávání/editace událostí"
2104
 
2105
  #: app/view/admin/settings.php:146
2106
  msgid "Advanced"
2107
- msgstr "Pokročilé"
2108
 
2109
  #: app/view/admin/settings.php:148
2110
  msgid "Advanced Settings"
2111
- msgstr "Pokročilé nastavení"
2112
 
2113
  #: app/view/admin/settings.php:149
2114
  msgid "Shortcodes"
2115
- msgstr "Shortkody"
2116
 
2117
  #: app/view/admin/settings.php:150
2118
  msgid "Email Templates"
@@ -2124,7 +2124,7 @@ msgstr "Externí služby"
2124
 
2125
  #: app/view/admin/settings.php:152
2126
  msgid "Cache Report"
2127
- msgstr "Report vyrovnávací paměti"
2128
 
2129
  #: app/view/admin/settings.php:171
2130
  msgid "Sign Up for a <b>Timely Network</b> account. It's free."
@@ -2272,7 +2272,7 @@ msgstr "Importovat kanály"
2272
  #: app/view/admin/calendar-feeds.php:48
2273
  msgctxt "meta box"
2274
  msgid "Feed Subscriptions"
2275
- msgstr ""
2276
 
2277
  #: app/view/admin/calendar-feeds.php:65
2278
  msgid "All-in-One Event Calendar: Import Feeds"
@@ -2353,7 +2353,7 @@ msgstr "měsíc(ů)"
2353
 
2354
  #: app/model/settings.php:929
2355
  msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2356
- msgstr ""
2357
 
2358
  #: app/model/settings.php:932
2359
  msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
@@ -2378,11 +2378,11 @@ msgstr "<strong>Zveřejnit, propagovat a sdílet mé akce</strong> označené ja
2378
 
2379
  #: app/model/settings.php:988
2380
  msgid "Templates cache improves site performance"
2381
- msgstr ""
2382
 
2383
  #: app/model/settings.php:1001
2384
  msgid "Display events in <strong>calendar time zone</strong>"
2385
- msgstr ""
2386
 
2387
  #: app/model/settings.php:1004
2388
  msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
@@ -2446,7 +2446,7 @@ msgstr "Filtrace obsahu v režimu striktní kompatibility"
2446
 
2447
  #: app/model/settings.php:758
2448
  msgid " <strong>Hide featured image</strong> from event details page"
2449
- msgstr ""
2450
 
2451
  #: app/model/settings.php:761
2452
  msgid "Select this option if your theme already displays each post's featured image."
@@ -2454,7 +2454,7 @@ msgstr ""
2454
 
2455
  #: app/model/settings.php:772
2456
  msgid "Input dates in this format"
2457
- msgstr "Vložte datumy v těchto formátech"
2458
 
2459
  #: app/model/settings.php:777
2460
  msgid "Default (d/m/yyyy)"
@@ -2474,7 +2474,7 @@ msgstr "S tečkami (m.d.yyyy)"
2474
 
2475
  #: app/model/settings.php:801
2476
  msgid " Use <strong>24h time</strong> in time pickers"
2477
- msgstr "Použít <strong>24h formát</strong> při výběru času"
2478
 
2479
  #: app/model/settings.php:812
2480
  msgid "<strong>Disable address autocomplete</strong> function"
@@ -2587,7 +2587,7 @@ msgstr "<strong>Vyloučit</strong> události z výsledků hledání"
2587
 
2588
  #: app/model/settings.php:637
2589
  msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2590
- msgstr ""
2591
 
2592
  #: app/model/settings.php:649
2593
  msgid "Hide <strong>Get a Timely Calendar</strong> button"
@@ -2627,11 +2627,11 @@ msgstr "Nedostupné"
2627
 
2628
  #: app/model/api.php:659
2629
  msgid "%s.<br/>Detail: %s."
2630
- msgstr ""
2631
 
2632
  #: app/model/api.php:664
2633
  msgid "API URL: %s.<br/>Detail: %s - %s"
2634
- msgstr ""
2635
 
2636
  #: app/model/api.php:672
2637
  msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
@@ -2639,7 +2639,7 @@ msgstr ""
2639
 
2640
  #: app/model/api.php:679
2641
  msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2642
- msgstr ""
2643
 
2644
  #: app/model/event/parent.php:186
2645
  msgid "Edit &#8220;%s&#8221;"
@@ -2732,27 +2732,27 @@ msgstr "Je třeba zvolit alespoň 6ti hodinový interval pro týdenní a denní
2732
 
2733
  #: app/model/api.php:40
2734
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2735
- msgstr ""
2736
 
2737
  #: app/model/api.php:41
2738
  msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2739
- msgstr ""
2740
 
2741
  #: app/model/api.php:42
2742
  msgid "We were unable to Sign you Up for Time.ly Ticketing"
2743
- msgstr ""
2744
 
2745
  #: app/model/api.php:43
2746
  msgid "We were unable to Sign you In for Time.ly Ticketing"
2747
- msgstr ""
2748
 
2749
  #: app/model/api.php:44
2750
  msgid "We were unable to create the Event on Time.ly Ticketing"
2751
- msgstr ""
2752
 
2753
  #: app/model/api.php:45
2754
  msgid "We were unable to update the Event on Time.ly Ticketing"
2755
- msgstr ""
2756
 
2757
  #: app/model/api.php:46
2758
  msgid "The event has the option Tickets selected but any ticket was added."
@@ -2760,7 +2760,7 @@ msgstr ""
2760
 
2761
  #: app/model/api.php:47
2762
  msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2763
- msgstr ""
2764
 
2765
  #: app/model/api.php:48
2766
  msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
@@ -2768,19 +2768,19 @@ msgstr ""
2768
 
2769
  #: app/model/api.php:49
2770
  msgid "Payment preferences were not saved."
2771
- msgstr ""
2772
 
2773
  #: app/model/api.php:50
2774
  msgid "Payment preferences were saved."
2775
- msgstr ""
2776
 
2777
  #: app/model/api.php:51
2778
  msgid "Event not found inside the database."
2779
- msgstr ""
2780
 
2781
  #: app/model/api.php:52
2782
  msgid "We were unable to get the Sales information from Time.ly Ticketing"
2783
- msgstr ""
2784
 
2785
  #: app/model/api.php:446
2786
  msgid "Past Event"
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-11 18:45:24+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
33
  #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
  #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
  msgid "Week/day view now marker"
36
+ msgstr "Označení aktuálního zobrazení týdne/dne"
37
 
38
  #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
  #: public/themes-ai1ec/vortex/less/user_variables.php:239
70
  #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
  #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
  msgid "List item background (active/hover)"
73
+ msgstr "Pozadí seznamu položek (aktivní/po najetí myší)"
74
 
75
  #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
  #: public/themes-ai1ec/vortex/less/user_variables.php:155
80
  #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
  #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
  msgid "Today color"
83
+ msgstr "Barva označení aktuálního dne"
84
 
85
  #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
  #: public/themes-ai1ec/vortex/less/user_variables.php:167
155
  #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
  #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
  msgid "Dropdown list background"
158
+ msgstr "Pozadí rozbalovacího seznamu"
159
 
160
  #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
  #: public/themes-ai1ec/vortex/less/user_variables.php:131
165
  #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
  #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
  msgid "List item text"
168
+ msgstr "Text seznamu položek"
169
 
170
  #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
  #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
  msgid "List item text (active/hover)"
173
+ msgstr "Text seznamu položek (aktivní/po najetí myší)"
174
 
175
  #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
  msgid "New theme activated. <a href=\"%s\">Visit site</a>"
316
 
317
  #: public/admin/plugins/ics/display_feeds.php:59
318
  msgid "Import any tags/categories provided by feed, in addition those selected above"
319
+ msgstr "Importovat jakékoli štítky/kategorie z odebíraného kanálu, kromě výše vybraných"
320
 
321
  #: public/admin/plugins/ics/display_feeds.php:93
322
  msgid "Add new subscription"
726
 
727
  #: public/admin/box_event_cost.php:41
728
  msgid "External Tickets URL"
729
+ msgstr "Odkaz na vstupenky z externího zdroje"
730
 
731
  #: public/admin/box_event_cost.php:52
732
  msgid "Ticketing allows you to sell tickets directly to the users."
734
 
735
  #: public/admin/box_event_cost.php:55
736
  msgid "Sign Up for Timely Network"
737
+ msgstr "Registrovat se na Timely Network"
738
 
739
  #: public/admin/box_event_cost.php:80
740
  msgid "Remove Ticket Type"
741
+ msgstr "Odstranit typ vstupenky"
742
 
743
  #: public/admin/box_event_cost.php:101
744
  msgid "Ex.: Regular Ticket"
817
  #: public/admin/box_ask_customer_review.php:136
818
  #: public/admin/box_event_contact.php:43
819
  msgid "E-mail:"
820
+ msgstr "E-mail"
821
 
822
  #: public/admin/box_ask_customer_review.php:143
823
  msgid "E-mail is invalid."
837
 
838
  #: public/admin/box_ask_customer_review.php:174
839
  msgid "Aristotel Dascal, VP of Product, Time.ly"
840
+ msgstr "Aristotel Dascal, víceprezident produktu, Time.ly"
841
 
842
  #: public/admin/box_ask_customer_review.php:180
843
  msgid "Sending..."
873
 
874
  #: public/admin/box_event_contact.php:17
875
  msgid "Contact name:"
876
+ msgstr "Jméno:"
877
 
878
  #: lib/theme/loader.php:325
879
  msgid "We couldn't find a suitable loader for filename with extension '%s'"
1068
  #: lib/post/custom-type.php:94
1069
  msgctxt "Event tags taxonomy"
1070
  msgid "Tags"
1071
+ msgstr "Štítky"
1072
 
1073
  #: lib/post/custom-type.php:95
1074
  msgctxt "Event tags taxonomy (singular)"
1174
 
1175
  #: lib/post/custom-type.php:28
1176
  msgid "Add New"
1177
+ msgstr "Vytvořit událost"
1178
 
1179
  #: lib/post/custom-type.php:29
1180
  msgid "Add New Event"
1181
+ msgstr "Vytvořit novou událost"
1182
 
1183
  #: lib/post/custom-type.php:30
1184
  msgid "Edit Event"
1190
 
1191
  #: lib/post/custom-type.php:32
1192
  msgid "View Event"
1193
+ msgstr "Zobrazit události"
1194
 
1195
  #: lib/post/custom-type.php:33
1196
  msgid "Search Events"
1438
 
1439
  #: lib/date/timezone.php:362
1440
  msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1441
+ msgstr "Vyberte časové pásmo stránek v %s <em>Časové pásmo</em> rozbalovací menu."
1442
 
1443
  #: lib/date/timezone.php:397
1444
  msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1482
 
1483
  #: lib/calendar-feed/ics.php:367
1484
  msgid "Do you want to keep the events imported from the calendar or remove them?"
1485
+ msgstr "Chcete zachovat importované akce z kalendáře nebo je chcete odstranit?"
1486
 
1487
  #: lib/calendar-feed/ics.php:373
1488
  msgid "Removing ICS Feed"
1629
 
1630
  #: lib/calendar-feed/ics.php:69
1631
  msgid "Another import process in progress. Please try again later."
1632
+ msgstr "Již probíhá jiný import. Zkuste to, prosím, později."
1633
 
1634
  #: lib/calendar-feed/ics.php:174
1635
  msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1648
 
1649
  #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1650
  msgid "Invalid ICS feed ID"
1651
+ msgstr "Neplatné ICS feed ID"
1652
 
1653
  #: lib/calendar-feed/ics.php:350
1654
  msgid "Categories (optional)"
1718
  #. translators: Publish box date format, see http:php.net/date
1719
  #: app/view/event/post.php:54
1720
  msgid "M j, Y @ G:i"
1721
+ msgstr "M j, Y v G:i"
1722
 
1723
  #: app/view/event/post.php:58
1724
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1742
 
1743
  #: app/view/calendar/view/agenda.php:169
1744
  msgid "Categories:"
1745
+ msgstr "Kategorie"
1746
 
1747
  #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1748
  #: public/admin/themes.php:29
1805
 
1806
  #: app/view/calendar/widget.php:124
1807
  msgid "Show events filtered for the following tags/categories"
1808
+ msgstr "Zobrazit události vyfiltrované pro následující štítky/kategorie"
1809
 
1810
  #: app/view/calendar/widget.php:141
1811
  msgid "Show the subscribe button in the widget"
1978
 
1979
  #: app/view/admin/widget-creator.php:132
1980
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1981
+ msgstr "<h4>Pozor!</h4><p>Tyto widgety jsou navrženy tak, aby byly vestavěné v <strong> externích stránkách</strong> a můžou způsobit konflikty, pokud je používáte na stejných stránkách WordPressu.</p>"
1982
 
1983
  #: app/view/admin/widget-creator.php:134
1984
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
2079
 
2080
  #: app/view/admin/tickets.php:36
2081
  msgid "Ticketing"
2082
+ msgstr "Prodej vstupenek"
2083
 
2084
  #: app/view/admin/tickets.php:37
2085
  msgid "Ticketing<sup>beta</sup>"
2086
+ msgstr "Prodej vstupenek<sup>beta</sup>"
2087
 
2088
  #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2089
  msgid "Time.ly Ticketing<sup>beta</sup>"
2090
+ msgstr "Time.ly prodej vstupenek<sup>beta</sup>"
2091
 
2092
  #: app/view/admin/settings.php:98
2093
  msgctxt "meta box"
2104
 
2105
  #: app/view/admin/settings.php:146
2106
  msgid "Advanced"
2107
+ msgstr "Další nastavení"
2108
 
2109
  #: app/view/admin/settings.php:148
2110
  msgid "Advanced Settings"
2111
+ msgstr "Pokročilá nastavení"
2112
 
2113
  #: app/view/admin/settings.php:149
2114
  msgid "Shortcodes"
2115
+ msgstr "Shortkódy"
2116
 
2117
  #: app/view/admin/settings.php:150
2118
  msgid "Email Templates"
2124
 
2125
  #: app/view/admin/settings.php:152
2126
  msgid "Cache Report"
2127
+ msgstr "Vyrovnávací paměť"
2128
 
2129
  #: app/view/admin/settings.php:171
2130
  msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2272
  #: app/view/admin/calendar-feeds.php:48
2273
  msgctxt "meta box"
2274
  msgid "Feed Subscriptions"
2275
+ msgstr "Odběr kanálů"
2276
 
2277
  #: app/view/admin/calendar-feeds.php:65
2278
  msgid "All-in-One Event Calendar: Import Feeds"
2353
 
2354
  #: app/model/settings.php:929
2355
  msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2356
+ msgstr "<strong>Odkaz CSS</strong> v <code>&lt;head&gt;</code> sekci, když soubor s cache není dostupný."
2357
 
2358
  #: app/model/settings.php:932
2359
  msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2378
 
2379
  #: app/model/settings.php:988
2380
  msgid "Templates cache improves site performance"
2381
+ msgstr "Vyrovnávací paměť šablon zlepšuje výkon stránek"
2382
 
2383
  #: app/model/settings.php:1001
2384
  msgid "Display events in <strong>calendar time zone</strong>"
2385
+ msgstr "Zobrazit události v <strong>časovém pásmu kalendáře</strong>"
2386
 
2387
  #: app/model/settings.php:1004
2388
  msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2446
 
2447
  #: app/model/settings.php:758
2448
  msgid " <strong>Hide featured image</strong> from event details page"
2449
+ msgstr " <strong>Skrýt featured obrázek</strong> na detailní stránce události"
2450
 
2451
  #: app/model/settings.php:761
2452
  msgid "Select this option if your theme already displays each post's featured image."
2454
 
2455
  #: app/model/settings.php:772
2456
  msgid "Input dates in this format"
2457
+ msgstr "Vyberte formát datumu"
2458
 
2459
  #: app/model/settings.php:777
2460
  msgid "Default (d/m/yyyy)"
2474
 
2475
  #: app/model/settings.php:801
2476
  msgid " Use <strong>24h time</strong> in time pickers"
2477
+ msgstr " Použít <strong>24h čas</strong> při výběru času"
2478
 
2479
  #: app/model/settings.php:812
2480
  msgid "<strong>Disable address autocomplete</strong> function"
2587
 
2588
  #: app/model/settings.php:637
2589
  msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2590
+ msgstr "Skrýt odkazy<strong>Odebírat</strong>/<strong>Přidat do kalendáře</strong> v kalendáři a jednotlivých zobrazení událostí "
2591
 
2592
  #: app/model/settings.php:649
2593
  msgid "Hide <strong>Get a Timely Calendar</strong> button"
2627
 
2628
  #: app/model/api.php:659
2629
  msgid "%s.<br/>Detail: %s."
2630
+ msgstr "%s.<br/>Detail: %s."
2631
 
2632
  #: app/model/api.php:664
2633
  msgid "API URL: %s.<br/>Detail: %s - %s"
2634
+ msgstr "Odkaz API: %s.<br/>Detail: %s - %s"
2635
 
2636
  #: app/model/api.php:672
2637
  msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2639
 
2640
  #: app/model/api.php:679
2641
  msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2642
+ msgstr "%s. Zkuste to, prosím, znovu. Pokud se chyba stále vyskytuje, kontaktujte nás na %s. Ve vašem reportu, uveďte informace zobrazené níže.<br/>%s."
2643
 
2644
  #: app/model/event/parent.php:186
2645
  msgid "Edit &#8220;%s&#8221;"
2732
 
2733
  #: app/model/api.php:40
2734
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2735
+ msgstr "Nepodařilo se nám získat podrobnosti o vstupence z Time.ly prodeje vstupenek"
2736
 
2737
  #: app/model/api.php:41
2738
  msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2739
+ msgstr "Nepodařilo se nám získat seznam účastníků z Time.ly prodeje vstupenek"
2740
 
2741
  #: app/model/api.php:42
2742
  msgid "We were unable to Sign you Up for Time.ly Ticketing"
2743
+ msgstr "Nepodařilo se nám vás zaregistrovat na Time.ly prodej vstupenek"
2744
 
2745
  #: app/model/api.php:43
2746
  msgid "We were unable to Sign you In for Time.ly Ticketing"
2747
+ msgstr "Nepodařilo se nám vás přihlásit do Time.ly prodeje vstupenek."
2748
 
2749
  #: app/model/api.php:44
2750
  msgid "We were unable to create the Event on Time.ly Ticketing"
2751
+ msgstr "Nepodařilo se nám vytvořit událost v Time.ly prodeji vstupenek"
2752
 
2753
  #: app/model/api.php:45
2754
  msgid "We were unable to update the Event on Time.ly Ticketing"
2755
+ msgstr "Nepodařilo se nám aktualizovat událost v Time.ly prodeji vstupenek"
2756
 
2757
  #: app/model/api.php:46
2758
  msgid "The event has the option Tickets selected but any ticket was added."
2760
 
2761
  #: app/model/api.php:47
2762
  msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2763
+ msgstr "Nepodařilo se nám odstranit vstupenky z Time.ly prodeje vstupenek"
2764
 
2765
  #: app/model/api.php:48
2766
  msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2768
 
2769
  #: app/model/api.php:49
2770
  msgid "Payment preferences were not saved."
2771
+ msgstr "Platební předvolby nebyly uloženy."
2772
 
2773
  #: app/model/api.php:50
2774
  msgid "Payment preferences were saved."
2775
+ msgstr "Platební předvolby byly uloženy."
2776
 
2777
  #: app/model/api.php:51
2778
  msgid "Event not found inside the database."
2779
+ msgstr "Událost nebyla v databázi nalezena."
2780
 
2781
  #: app/model/api.php:52
2782
  msgid "We were unable to get the Sales information from Time.ly Ticketing"
2783
+ msgstr "Nepodařilo se nám získat informace o prodeji z Time.ly prodeje vstupenek"
2784
 
2785
  #: app/model/api.php:446
2786
  msgid "Past Event"
language/all-in-one-event-calendar-da.mo ADDED
Binary file
language/all-in-one-event-calendar-da.po ADDED
@@ -0,0 +1,3020 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of 2.3 in Danish
2
+ # This file is distributed under the same license as the 2.3 package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-01-21 20:45:37+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
+ "Project-Id-Version: 2.3\n"
12
+
13
+ #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
+ #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
+ msgid "Event background"
16
+ msgstr "Begivenhed-baggrund"
17
+
18
+ #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
+ #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
+ msgid "Event time background"
21
+ msgstr "Begivenhedstid-baggrund"
22
+
23
+ #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
+ #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
+ msgid "Event text"
26
+ msgstr "Begivenhedstekst"
27
+
28
+ #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
+ #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
+ msgid "Month view date background"
31
+ msgstr "Månedsvisning dato-baggrund"
32
+
33
+ #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
+ #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
+ msgid "Week/day view now marker"
36
+ msgstr "Uge-/dagsvisning nu-markering"
37
+
38
+ #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
+ #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
+ msgid "Date label accent color"
41
+ msgstr "Datoetiket fremhævet farve"
42
+
43
+ #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
+ #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
+ msgid "Date label background"
46
+ msgstr "Datoetiket baggrund"
47
+
48
+ #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
+ #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
+ msgid "Date background"
51
+ msgstr "Dato-baggrund"
52
+
53
+ #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
+ #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
+ msgid "Today background"
56
+ msgstr "I dag-baggrund"
57
+
58
+ #. Plugin Name of the plugin/theme
59
+ msgid "All-in-One Event Calendar by Time.ly"
60
+ msgstr "All-in-One Event Calendar af Time.ly"
61
+
62
+ #. Description of the plugin/theme
63
+ msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
+ msgstr "Et kalendersystem med måneds-, uge-​, dags- og begivenhedsvisning, widget til kommende begivenheder, farvekodede kategorier, gentagelse og import/eksport af ICS-feeds."
65
+
66
+ #. Author of the plugin/theme
67
+ msgid "Time.ly Network Inc."
68
+ msgstr "Time.ly Network Inc."
69
+
70
+ #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
+ #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
+ msgid "List item background (active/hover)"
73
+ msgstr "Listeemne-baggrund (aktiv/hover)"
74
+
75
+ #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
+ #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
+ msgid "Input field placeholder text"
78
+ msgstr "Indtastningsfelt eksempeltekst"
79
+
80
+ #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
+ #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
+ msgid "Today color"
83
+ msgstr "'I dag' farve"
84
+
85
+ #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
+ #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
+ msgid "All-day badge color"
88
+ msgstr "Heldags mærkatfarve"
89
+
90
+ #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
+ #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
+ msgid "Event image shadow"
93
+ msgstr "Begivenhedsbillede-skygge"
94
+
95
+ #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
+ #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
+ msgid "Event default color"
98
+ msgstr "Begivenhed standardfarve"
99
+
100
+ #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
+ #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
+ msgid "Event default color (hover)"
103
+ msgstr "Begivenhed standardfarve (hover)"
104
+
105
+ #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
+ #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
+ msgid "All-day/multi-day event stub text"
108
+ msgstr "Heldags/flerdags-begivenhed stubtekst"
109
+
110
+ #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
+ #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
+ msgid "All-day/multi-day event stub text shadow"
113
+ msgstr "Heldags/flerdags-begivenhed stubtekst-skygge"
114
+
115
+ #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
+ #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
+ msgid "Event border"
118
+ msgstr "Begivenhed-kant"
119
+
120
+ #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
+ #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
+ msgid "Button text"
123
+ msgstr "Knap-tekst"
124
+
125
+ #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
+ #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
+ msgid "Input field text"
128
+ msgstr "Tekst i indtastningsfelt"
129
+
130
+ #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
+ #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
+ msgid "Input field background"
133
+ msgstr "Indtastningsfelt-baggrund"
134
+
135
+ #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
+ #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
+ msgid "Input field border"
138
+ msgstr "Indtastningsfelt-kant"
139
+
140
+ #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
+ #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
+ msgid "Input field border (focus)"
143
+ msgstr "Indtastningsfelt-kant (fokus)"
144
+
145
+ #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
+ #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
+ msgid "Input field background (disabled)"
148
+ msgstr "Indtastningsfelt-baggrund (deaktiveret)"
149
+
150
+ #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
+ #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
+ msgid "Field label"
153
+ msgstr "Feltmærkat"
154
+
155
+ #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
+ #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
+ msgid "Dropdown list background"
158
+ msgstr "Dropdown liste-baggrund"
159
+
160
+ #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
+ #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
+ msgid "Dropdown list border"
163
+ msgstr "Dropdown liste-kant"
164
+
165
+ #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
+ #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
+ msgid "List item text"
168
+ msgstr "Listeemne-tekst"
169
+
170
+ #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
+ #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
+ msgid "List item text (active/hover)"
173
+ msgstr "Listeemne-tekst (aktiv/hover)"
174
+
175
+ #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
+ msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
+ msgstr "Nyt tema aktiveret. <a href=\"%s\">Besøg siden</a>"
178
+
179
+ #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
+ msgid "Theme deleted."
181
+ msgstr "Tema slettet."
182
+
183
+ #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
+ msgid "Manage Themes"
185
+ msgstr "Rediger temaer"
186
+
187
+ #: public/admin/themes-install.php:40
188
+ msgctxt "theme"
189
+ msgid "Install Themes"
190
+ msgstr "Installer temaer"
191
+
192
+ #: public/admin/themes-updated.php:5
193
+ msgid "Update Calendar Themes"
194
+ msgstr "Opdater kalendertemaer"
195
+
196
+ #: public/admin/themes-updated.php:15
197
+ msgid "All-in-One Event Calendar Settings »"
198
+ msgstr "All-in-One Event Calendar indstillinger »"
199
+
200
+ #: public/admin/themes.php:18
201
+ msgid "Current Calendar Theme"
202
+ msgstr "Aktuelle kalendertema"
203
+
204
+ #: public/admin/themes.php:21
205
+ msgid "Current theme preview"
206
+ msgstr "Forhåndsvisning af aktuelt tema"
207
+
208
+ #: public/admin/themes.php:47
209
+ msgid "Available Calendar Themes"
210
+ msgstr "Tilgængelige kalendertemaer"
211
+
212
+ #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
+ #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
+ msgid "Body background"
215
+ msgstr "Body-baggrund"
216
+
217
+ #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
+ #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
+ msgid "Text color"
220
+ msgstr "Tekstfarve"
221
+
222
+ #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
+ #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
+ msgid "Text emboss"
225
+ msgstr "Fremhævning af tekst"
226
+
227
+ #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
+ #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
+ msgid "Link"
230
+ msgstr "Link"
231
+
232
+ #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
+ #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
+ msgid "Link (hover)"
235
+ msgstr "Link (hover)"
236
+
237
+ #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
+ #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
+ msgid "Base font"
240
+ msgstr "Basis skrifttype"
241
+
242
+ #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
+ #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
+ msgid "Base font size"
245
+ msgstr "Basis skrifttypestørrelse"
246
+
247
+ #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
+ #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
+ msgid "Table background"
250
+ msgstr "Tabel-baggrund"
251
+
252
+ #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
+ #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
+ msgid "Table header background"
255
+ msgstr "Tabel header-baggrund"
256
+
257
+ #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
+ #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
+ msgid "Table header text"
260
+ msgstr "Tabel header tekst"
261
+
262
+ #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
+ #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
+ msgid "Primary brand color"
265
+ msgstr "Primære farvemærke"
266
+
267
+ #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
+ #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
+ msgid "Button background"
270
+ msgstr "Knap-baggrund"
271
+
272
+ #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
+ #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
+ msgid "Button border"
275
+ msgstr "Knap-kant"
276
+
277
+ #: public/admin/feed_row.php:104
278
+ msgid "Refreshing&#8230;"
279
+ msgstr "Opdaterer&#8230;"
280
+
281
+ #: public/admin/feed_row.php:106
282
+ msgid "Refresh"
283
+ msgstr "Genindlæs"
284
+
285
+ #: public/admin/feed_row.php:119
286
+ msgid "Removing&#8230;"
287
+ msgstr "Fjerner&#8230;"
288
+
289
+ #: public/admin/feed_row.php:121
290
+ msgid "Remove"
291
+ msgstr "Fjern"
292
+
293
+ #: public/admin/import.php:6
294
+ msgid "Successfully imported events:"
295
+ msgstr "Importerede begivenheder:"
296
+
297
+ #: public/admin/plugins/ics/display_feeds.php:2
298
+ msgid ""
299
+ "Configure which other calendars your own calendar subscribes to.\n"
300
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
302
+ " imported periodically."
303
+ msgstr ""
304
+ "Konfigurer hvilke andre kalendere du har adgang til.\n"
305
+ " Du kan tilføje alle kalendere der lever op til iCalendar (.ics)-formatet.\n"
306
+ " Indtast stien til filen herunder og begivenheder fra disse filer\n"
307
+ " vil blive hentet periodisk."
308
+
309
+ #: public/admin/plugins/ics/display_feeds.php:14
310
+ msgid "Check for new events"
311
+ msgstr "Kontroller for nye begivenheder"
312
+
313
+ #: public/admin/plugins/ics/display_feeds.php:45
314
+ msgid "Allow comments on imported events"
315
+ msgstr "Tillad kommentarer på importerede begivenheder"
316
+
317
+ #: public/admin/plugins/ics/display_feeds.php:52
318
+ msgid "Show map on imported events"
319
+ msgstr "Vis kort på importerede begivenheder"
320
+
321
+ #: public/admin/plugins/ics/display_feeds.php:59
322
+ msgid "Import any tags/categories provided by feed, in addition those selected above"
323
+ msgstr "Importer hvilke som helst tags/kategorier leveret med feed udover dem som er valgt ovenover"
324
+
325
+ #: public/admin/plugins/ics/display_feeds.php:93
326
+ msgid "Add new subscription"
327
+ msgstr "Tilføj nyt abonnement"
328
+
329
+ #: public/admin/plugins/ics/display_feeds.php:96
330
+ msgid "Update subscription"
331
+ msgstr ""
332
+
333
+ #: public/admin/row_custom.php:3
334
+ msgid "Custom dates:"
335
+ msgstr "Selvvalgte datoer:"
336
+
337
+ #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
+ #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
+ #: public/admin/row_yearly.php:3
340
+ msgid "Every"
341
+ msgstr "Hver"
342
+
343
+ #: public/admin/row_monthly.php:16
344
+ msgid "On day of the month"
345
+ msgstr "På månedsdagen"
346
+
347
+ #: public/admin/row_monthly.php:23
348
+ msgid "On day of the week"
349
+ msgstr "På ugedagen"
350
+
351
+ #: public/admin/row_weekly.php:12
352
+ msgctxt "Recurrence editor - weekly tab"
353
+ msgid "On"
354
+ msgstr "På"
355
+
356
+ #: public/admin/row_yearly.php:12
357
+ msgctxt "Recurrence editor - yearly tab"
358
+ msgid "In"
359
+ msgstr "I"
360
+
361
+ #: public/admin/settings.php:19
362
+ msgid "Update Settings"
363
+ msgstr "Opdater indstillinger"
364
+
365
+ #: public/admin/themes-install.php:4
366
+ msgid "The active theme is broken. Reverting to the default theme."
367
+ msgstr "Det aktive tema er fejlbehæftet. Vender tilbage til standardtema."
368
+
369
+ #: public/admin/themes-install.php:13
370
+ msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
+ msgstr "Nyt tema aktiveret. Dette tema understøtter widgets. Gå til <a href=\"%s\">widgetsindstillinger</a> siden for at konfigurere dem."
372
+
373
+ #: public/admin/calendar_tasks.php:24
374
+ msgid "Manage Events"
375
+ msgstr "Administrer begivenheder"
376
+
377
+ #: public/admin/calendar_tasks.php:27
378
+ msgid "View and edit all your events."
379
+ msgstr "Vis og rediger alle dine begivenheder."
380
+
381
+ #: public/admin/calendar_tasks.php:39
382
+ msgid "Manage Event Categories"
383
+ msgstr "Administrer begivenhedskategorier"
384
+
385
+ #: public/admin/calendar_tasks.php:42
386
+ msgid "Organize and color-code your events."
387
+ msgstr "Organiser og farvemarker dine begivenheder."
388
+
389
+ #: public/admin/calendar_tasks.php:50
390
+ msgid "Choose Your Theme"
391
+ msgstr "Vælg et tema"
392
+
393
+ #: public/admin/calendar_tasks.php:53
394
+ msgid "Change the look and feel."
395
+ msgstr "Skift udseende og håndtering."
396
+
397
+ #: public/admin/calendar_tasks.php:63
398
+ msgid "Manage Calendar Feeds"
399
+ msgstr "Administrer kalender-feeds"
400
+
401
+ #: public/admin/calendar_tasks.php:66
402
+ msgid "Subscribe to other calendars."
403
+ msgstr "Abonner på andre kalendere."
404
+
405
+ #: public/admin/calendar_tasks.php:74
406
+ msgid "Edit Calendar Settings"
407
+ msgstr "Rediger kalenderindstillinger "
408
+
409
+ #: public/admin/calendar_tasks.php:77
410
+ msgid "Make this calendar your own."
411
+ msgstr "Personliggør denne kalender."
412
+
413
+ #: public/admin/cron_freq.php:3
414
+ msgid "Hourly"
415
+ msgstr "Hver time"
416
+
417
+ #: public/admin/cron_freq.php:6
418
+ msgid "Twice Daily"
419
+ msgstr "To gange dagligt"
420
+
421
+ #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
+ msgid "iCalendar/.ics Feed URL:"
423
+ msgstr "iCalendar/.ics Feed webadresse(URL):"
424
+
425
+ #: public/admin/feed_row.php:24
426
+ msgid "Event categories:"
427
+ msgstr "Begivenhedskategorier:"
428
+
429
+ #: public/admin/feed_row.php:31
430
+ msgid "Tag with"
431
+ msgstr "Tag (stikord) med"
432
+
433
+ #: public/admin/feed_row.php:40
434
+ msgid "Allow comments"
435
+ msgstr "Tillad kommentarer"
436
+
437
+ #: public/admin/feed_row.php:51
438
+ msgid "Show map"
439
+ msgstr "Vis kort"
440
+
441
+ #: public/admin/feed_row.php:63
442
+ msgid "Keep original events categories and tags"
443
+ msgstr "Bevar originale begivenhedskategorier og -tags"
444
+
445
+ #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
+ msgid "On refresh, preserve previously imported events that are missing from the feed"
447
+ msgstr "Ved genindlæsning: Bevar tidligere importerede begivenheder som mangler i feed "
448
+
449
+ #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
+ msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
+ msgstr "Anslår begivenhedernes tidszonen når disse ikke er spcificeret; anbefalet ved Google kalenderfeeds."
452
+
453
+ #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
+ msgid "Assign default time zone to events in UTC"
455
+ msgstr "Tildel standard tidszone til begivenheder i UTC"
456
+
457
+ #: public/admin/box_support.php:19
458
+ msgid "Get Add-ons"
459
+ msgstr "Hent tilføjelser"
460
+
461
+ #: public/admin/box_support.php:27
462
+ msgid "Support"
463
+ msgstr "Support"
464
+
465
+ #: public/admin/box_support.php:35
466
+ msgid "Timely Events"
467
+ msgstr "Timely begivenheder"
468
+
469
+ #: public/admin/box_support.php:43
470
+ msgid "Timely News"
471
+ msgstr "Timely nyt"
472
+
473
+ #: public/admin/box_support.php:47
474
+ msgid "view all news"
475
+ msgstr "vis alle nyheder"
476
+
477
+ #: public/admin/box_support.php:95
478
+ msgid "Follow @_Timely"
479
+ msgstr "Følg @_Timely"
480
+
481
+ #: public/admin/box_time_and_date.php:6
482
+ msgid "Event date and time"
483
+ msgstr "Dato og tid for begivenhed"
484
+
485
+ #: public/admin/box_time_and_date.php:26
486
+ msgid "All-day event"
487
+ msgstr "Heldagsbegivenhed"
488
+
489
+ #: public/admin/box_time_and_date.php:35
490
+ msgid "No end time"
491
+ msgstr "Ingen sluttid"
492
+
493
+ #: public/admin/box_time_and_date.php:42
494
+ msgid "Start date / time"
495
+ msgstr "Startdato/-tidspunkt"
496
+
497
+ #: public/admin/box_time_and_date.php:59
498
+ msgid "End date / time"
499
+ msgstr "Slutdato/-tidspunkt"
500
+
501
+ #: public/admin/box_time_and_date.php:76
502
+ msgid "Time zone"
503
+ msgstr "Tidszone"
504
+
505
+ #: public/admin/box_time_and_date.php:81
506
+ msgid "Choose your time zone"
507
+ msgstr "Vælg din tidszone"
508
+
509
+ #: public/admin/box_time_and_date.php:108
510
+ msgid "Repeat"
511
+ msgstr "Gentag"
512
+
513
+ #: public/admin/box_time_and_date.php:127
514
+ msgid "Exclude"
515
+ msgstr "Udeluk"
516
+
517
+ #: public/admin/box_time_and_date.php:136
518
+ msgid "Choose a rule for exclusion"
519
+ msgstr "Vælg en regel for udelukkelse"
520
+
521
+ #: public/admin/calendar_tasks.php:3
522
+ msgid "Welcome"
523
+ msgstr "Velkommen"
524
+
525
+ #: public/admin/calendar_tasks.php:4
526
+ msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
+ msgstr "til All-in-One Event Calendar af <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
+
529
+ #: public/admin/calendar_tasks.php:13
530
+ msgid "Post Your Event"
531
+ msgstr "Indsend din begivenhed"
532
+
533
+ #: public/admin/calendar_tasks.php:16
534
+ msgid "Add a new event to the calendar."
535
+ msgstr "Tilføj denne begivenhed i din kalender."
536
+
537
+ #: public/admin/box_eventbrite.php:60
538
+ msgid "Donation Based"
539
+ msgstr "Baseret på bidrag"
540
+
541
+ #: public/admin/box_eventbrite.php:68
542
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
543
+ msgstr "Prisen for denne begivenheds første billet tages fra prisfeltet ovenfor"
544
+
545
+ #: public/admin/box_eventbrite.php:75
546
+ msgid "Quantity"
547
+ msgstr "Antal"
548
+
549
+ #: public/admin/box_eventbrite.php:85
550
+ msgid "Include Fee in Price"
551
+ msgstr "Inkluder gebyret i prisen"
552
+
553
+ #: public/admin/box_eventbrite.php:90
554
+ msgid "Add Service Fee on top of price"
555
+ msgstr "Læg servicegebyr oven i prisen"
556
+
557
+ #: public/admin/box_eventbrite.php:92
558
+ msgid "Include Service fee in price"
559
+ msgstr "Inkludér servicegebyr i prisen"
560
+
561
+ #: public/admin/box_eventbrite.php:98
562
+ msgid "Payment Options"
563
+ msgstr "Betalingsmuligheder"
564
+
565
+ #: public/admin/box_eventbrite.php:105
566
+ msgid "Google Checkout"
567
+ msgstr "Google Checkout"
568
+
569
+ #: public/admin/box_eventbrite.php:107
570
+ msgid "Check"
571
+ msgstr "Check"
572
+
573
+ #: public/admin/box_eventbrite.php:109
574
+ msgid "Cash"
575
+ msgstr "Kontant"
576
+
577
+ #: public/admin/box_eventbrite.php:111
578
+ msgid "Send an Invoice"
579
+ msgstr "Send en regning"
580
+
581
+ #: public/admin/box_profile_timezone.php:9
582
+ msgid "Your preferred timezone"
583
+ msgstr "Din foretrukne tidszone"
584
+
585
+ #: public/admin/box_repeat.php:5
586
+ msgid "Select recurrence pattern:"
587
+ msgstr "Vælg gentagelsesmønster:"
588
+
589
+ #: public/admin/box_repeat.php:36
590
+ msgid "Custom"
591
+ msgstr "Brugerdefineret"
592
+
593
+ #: public/admin/box_repeat.php:72
594
+ msgid "End"
595
+ msgstr "Slutter"
596
+
597
+ #: public/admin/box_repeat.php:82
598
+ msgid "Ending after"
599
+ msgstr "Slutter efter"
600
+
601
+ #: public/admin/box_repeat.php:109
602
+ #: public/admin/plugins/ics/display_feeds.php:90
603
+ msgid "Please wait&#8230;"
604
+ msgstr "Vent venligst&#8230;"
605
+
606
+ #: public/admin/box_repeat.php:111
607
+ msgid "Apply"
608
+ msgstr "Tilføj"
609
+
610
+ #: public/admin/box_repeat.php:116
611
+ #: public/admin/plugins/ics/display_feeds.php:84
612
+ msgid "Cancel"
613
+ msgstr "Fortryd"
614
+
615
+ #: public/admin/box_support.php:4
616
+ msgid "Timely"
617
+ msgstr "Timely"
618
+
619
+ #: public/admin/box_support.php:11
620
+ msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
+ msgstr "Timelys All-in-One Event Calendar er en <br />revolutionerende ny måde at finde og dele begivenheder på."
622
+
623
+ #: public/admin/box_event_cost.php:228
624
+ msgid "Status:"
625
+ msgstr ""
626
+
627
+ #: public/admin/box_event_cost.php:235
628
+ msgid "Open"
629
+ msgstr ""
630
+
631
+ #: public/admin/box_event_cost.php:239
632
+ msgid "Closed"
633
+ msgstr ""
634
+
635
+ #: public/admin/box_event_cost.php:254
636
+ msgid "Add New Ticket Type"
637
+ msgstr ""
638
+
639
+ #: public/admin/box_event_cost.php:274
640
+ msgid "Tickets URL:"
641
+ msgstr ""
642
+
643
+ #: public/admin/box_event_location.php:6
644
+ msgid "Event location details"
645
+ msgstr "Detaljer om stedet for begivenheden"
646
+
647
+ #: public/admin/box_event_location.php:19
648
+ msgid "Venue name:"
649
+ msgstr "Sted:"
650
+
651
+ #: public/admin/box_event_location.php:31
652
+ msgid "Address:"
653
+ msgstr "Adresse:"
654
+
655
+ #: public/admin/box_event_location.php:45
656
+ msgid "Input Coordinates"
657
+ msgstr "Angiv koordinater"
658
+
659
+ #: public/admin/box_event_location.php:57
660
+ msgid "Latitude:"
661
+ msgstr "Breddegrad:"
662
+
663
+ #: public/admin/box_event_location.php:69
664
+ msgid "Longitude:"
665
+ msgstr "Længdegrad:"
666
+
667
+ #: public/admin/box_event_location.php:85
668
+ msgid "Show Map"
669
+ msgstr "Vis kort"
670
+
671
+ #: public/admin/box_eventbrite.php:1
672
+ msgid "Eventbrite Ticketing"
673
+ msgstr "Eventbrite billetsystem"
674
+
675
+ #: public/admin/box_eventbrite.php:7
676
+ msgid "Register this event with Eventbrite.com?"
677
+ msgstr "Registrer denne begivnehd på Eventbrite.com?"
678
+
679
+ #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
+ #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
+ #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
+ msgid "Yes"
683
+ msgstr "Ja"
684
+
685
+ #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
+ #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
+ #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
+ msgid "No"
689
+ msgstr "Nej"
690
+
691
+ #: public/admin/box_eventbrite.php:22
692
+ msgid "Set up your first ticket"
693
+ msgstr "Opret din første billet"
694
+
695
+ #: public/admin/box_eventbrite.php:24
696
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
+ msgstr "For at oprette flere billetter pr. begivenhed, indsend denne formular og følg derefter linket til Eventbrite."
698
+
699
+ #: public/admin/box_eventbrite.php:42
700
+ msgid "Description"
701
+ msgstr "Beskrivelse"
702
+
703
+ #: public/admin/box_eventbrite.php:53
704
+ msgid "Type"
705
+ msgstr "Type"
706
+
707
+ #: public/admin/box_eventbrite.php:58
708
+ msgid "Set Price"
709
+ msgstr "Angiv prisen"
710
+
711
+ #: public/admin/box_event_contact.php:30
712
+ msgid "Phone:"
713
+ msgstr "Telefon:"
714
+
715
+ #: public/admin/box_event_contact.php:56
716
+ msgid "Website URL:"
717
+ msgstr ""
718
+
719
+ #: public/admin/box_event_cost.php:6
720
+ msgid "Event cost and Tickets"
721
+ msgstr "Begivenhedens pris og billetter"
722
+
723
+ #: public/admin/box_event_cost.php:20
724
+ msgid "Ticket options not available - event imported from external calendar."
725
+ msgstr ""
726
+
727
+ #: public/admin/box_event_cost.php:28
728
+ msgid "Free event"
729
+ msgstr "Gratis begivenhed"
730
+
731
+ #: public/admin/box_event_cost.php:41
732
+ msgid "External Tickets URL"
733
+ msgstr ""
734
+
735
+ #: public/admin/box_event_cost.php:52
736
+ msgid "Ticketing allows you to sell tickets directly to the users."
737
+ msgstr ""
738
+
739
+ #: public/admin/box_event_cost.php:55
740
+ msgid "Sign Up for Timely Network"
741
+ msgstr ""
742
+
743
+ #: public/admin/box_event_cost.php:80
744
+ msgid "Remove Ticket Type"
745
+ msgstr ""
746
+
747
+ #: public/admin/box_event_cost.php:101
748
+ msgid "Ex.: Regular Ticket"
749
+ msgstr ""
750
+
751
+ #: public/admin/box_event_cost.php:105
752
+ msgid "Description:"
753
+ msgstr "Beskrivelse:"
754
+
755
+ #: public/admin/box_event_cost.php:111
756
+ msgid "(Optional)"
757
+ msgstr ""
758
+
759
+ #: public/admin/box_event_cost.php:115
760
+ msgid "Price:"
761
+ msgstr ""
762
+
763
+ #: public/admin/box_event_cost.php:124
764
+ msgid "USD"
765
+ msgstr ""
766
+
767
+ #: public/admin/box_event_cost.php:128
768
+ msgid "Limits:"
769
+ msgstr ""
770
+
771
+ #: public/admin/box_event_cost.php:131
772
+ msgid "This fields are required."
773
+ msgstr ""
774
+
775
+ #: public/admin/box_event_cost.php:156
776
+ msgid "Quantity:"
777
+ msgstr ""
778
+
779
+ #: public/admin/box_event_cost.php:180
780
+ msgid "Available:"
781
+ msgstr ""
782
+
783
+ #: public/admin/box_event_cost.php:185
784
+ msgid "Immediately"
785
+ msgstr ""
786
+
787
+ #: public/admin/box_event_cost.php:190
788
+ msgid "From:"
789
+ msgstr ""
790
+
791
+ #: public/admin/box_event_cost.php:207
792
+ msgid "Till:"
793
+ msgstr ""
794
+
795
+ #: public/admin/box_ask_customer_review.php:42
796
+ #: public/admin/box_ask_customer_review.php:75
797
+ msgid "No, thanks"
798
+ msgstr ""
799
+
800
+ #: public/admin/box_ask_customer_review.php:50
801
+ #: public/admin/box_ask_customer_review.php:84
802
+ msgid "Ok, sure!"
803
+ msgstr ""
804
+
805
+ #: public/admin/box_ask_customer_review.php:66
806
+ msgid "Would you mind giving us some feedback?"
807
+ msgstr ""
808
+
809
+ #: public/admin/box_ask_customer_review.php:101
810
+ msgid "Please provide some feedback"
811
+ msgstr ""
812
+
813
+ #: public/admin/box_ask_customer_review.php:108
814
+ msgid "Message:"
815
+ msgstr ""
816
+
817
+ #: public/admin/box_ask_customer_review.php:121
818
+ msgid "Name:"
819
+ msgstr ""
820
+
821
+ #: public/admin/box_ask_customer_review.php:136
822
+ #: public/admin/box_event_contact.php:43
823
+ msgid "E-mail:"
824
+ msgstr "E-mail:"
825
+
826
+ #: public/admin/box_ask_customer_review.php:143
827
+ msgid "E-mail is invalid."
828
+ msgstr ""
829
+
830
+ #: public/admin/box_ask_customer_review.php:154
831
+ msgid "Site URL:"
832
+ msgstr ""
833
+
834
+ #: public/admin/box_ask_customer_review.php:161
835
+ msgid "Site URL is invalid."
836
+ msgstr ""
837
+
838
+ #: public/admin/box_ask_customer_review.php:173
839
+ msgid "Thank you for being our customer,"
840
+ msgstr ""
841
+
842
+ #: public/admin/box_ask_customer_review.php:174
843
+ msgid "Aristotel Dascal, VP of Product, Time.ly"
844
+ msgstr ""
845
+
846
+ #: public/admin/box_ask_customer_review.php:180
847
+ msgid "Sending..."
848
+ msgstr ""
849
+
850
+ #: public/admin/box_ask_customer_review.php:181
851
+ msgid "Send Message"
852
+ msgstr ""
853
+
854
+ #: public/admin/box_event_children.php:12
855
+ msgid "Base recurrence event"
856
+ msgstr "Standard gentagen begivenhed"
857
+
858
+ #: public/admin/box_event_children.php:14
859
+ msgid "Modified recurrence events"
860
+ msgstr "Ændrede gentagne begivenheder"
861
+
862
+ #: public/admin/box_event_children.php:22
863
+ msgid "Edit parent:"
864
+ msgstr "Rediger forælder:"
865
+
866
+ #: public/admin/box_event_children.php:27
867
+ msgid "Modified Events"
868
+ msgstr "Ændrede begivenheder"
869
+
870
+ #: public/admin/box_event_children.php:31
871
+ msgid "Edit:"
872
+ msgstr "Rediger:"
873
+
874
+ #: public/admin/box_event_contact.php:6
875
+ msgid "Organizer contact info"
876
+ msgstr "Arrangørens kontaktinformation"
877
+
878
+ #: public/admin/box_event_contact.php:17
879
+ msgid "Contact name:"
880
+ msgstr "Navn på kontakt:"
881
+
882
+ #: lib/theme/loader.php:325
883
+ msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
+ msgstr "Vi kunne ikke finde en egnet loader til filnavnet med suffikset '%s'"
885
+
886
+ #: lib/theme/loader.php:631
887
+ msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
+ msgstr "Dit kalendertema er skiftet til Vortex på grund af en renderingsfejl. For yderligere information kan du aktivere fejlrettelse (debug mode) ved at tilføje følgende kode i filen <code>wp-config.php</code>: <pre>define( 'AI1EC_DEBUG', true );</pre>"
889
+
890
+ #: lib/theme/search.php:253
891
+ msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
+ msgstr "Det er ikke muligt at flytte dine gamle standardtemaer fra <code>wp-content/themes-ai1ec</code> til <code>wp-content/themes-ai1ec-obsolete</code> fordi din <code>wp-content</code>-mappe ikke er skrivbar. Flyt dine gamle standardtemaer manuelt fra <code>wp-content/themes-ai1ec</code>."
893
+
894
+ #: lib/theme/search.php:264
895
+ msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
+ msgstr "Det lykkedes ikke at flytte dine gamle standardtemaer fra <code>wp-content/themes-ai1ec/%s</code> til <code>wp-content/themes-ai1ec-obsolete/%s</code>. Du kan i stedet flytte dine gamle standardtemaer fra <code>wp-content/themes-ai1ec/%s</code>."
897
+
898
+ #: lib/twig/environment.php:115
899
+ msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
+ msgstr "Kalenderen er midlertidig deaktveret på grund af en renderingsfejl. Prøv at <a href=\"javascript:location.reload();\">genindlæse siden</a>."
901
+
902
+ #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
+ msgid "Title:"
904
+ msgstr "Titel:"
905
+
906
+ #: public/admin/agenda-widget-form.php:12
907
+ msgid "Number of events to show:"
908
+ msgstr "Antal viste begivenheder:"
909
+
910
+ #: public/admin/agenda-widget-form.php:21
911
+ msgid "Number of days to show:"
912
+ msgstr "Antal viste dage:"
913
+
914
+ #: public/admin/agenda-widget-form.php:26
915
+ msgid "Limit to:"
916
+ msgstr "Begræns til:"
917
+
918
+ #: public/admin/agenda-widget-form.php:30
919
+ msgid "Events with these <strong>Categories</strong>"
920
+ msgstr "Begivenheder med disse <strong>Kategorier</strong>"
921
+
922
+ #: public/admin/agenda-widget-form.php:39
923
+ msgid "No categories found."
924
+ msgstr "Ingen kategorier fundet."
925
+
926
+ #: public/admin/agenda-widget-form.php:46
927
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
+ msgstr "<strong>Eller</strong> begivenheder med disse <strong>Tags</strong>"
929
+
930
+ #: public/admin/agenda-widget-form.php:55
931
+ msgid "No tags found."
932
+ msgstr "Ingen tags fundet."
933
+
934
+ #: public/admin/agenda-widget-form.php:62
935
+ msgid "Show <strong>View Calendar</strong> button"
936
+ msgstr "Vis <strong>Vis kalender</strong>-knappen"
937
+
938
+ #: public/admin/agenda-widget-form.php:65
939
+ msgid "Show <strong>Subscribe</strong> buttons"
940
+ msgstr "Vis <strong>Abonner</strong>-knapper"
941
+
942
+ #: public/admin/agenda-widget-form.php:68
943
+ msgid "Hide this widget on calendar page"
944
+ msgstr "Skjul denne widget på kalendersiden"
945
+
946
+ #: public/admin/box_ask_customer_review.php:5
947
+ msgid "Enjoying All-in-One Event Calendar?"
948
+ msgstr ""
949
+
950
+ #: public/admin/box_ask_customer_review.php:13
951
+ msgid "Not really"
952
+ msgstr ""
953
+
954
+ #: public/admin/box_ask_customer_review.php:20
955
+ msgid "Yes!"
956
+ msgstr ""
957
+
958
+ #: public/admin/box_ask_customer_review.php:33
959
+ msgid "How about a rating on the Wordpress?"
960
+ msgstr ""
961
+
962
+ #: lib/recurrence/rule.php:397
963
+ msgid "Every %d weeks"
964
+ msgstr "Hver %d uge"
965
+
966
+ #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
+ msgid "Monthly"
968
+ msgstr "Månedligt"
969
+
970
+ #: lib/recurrence/rule.php:409
971
+ msgid "Every other month"
972
+ msgstr "Hver anden måned"
973
+
974
+ #: lib/recurrence/rule.php:412
975
+ msgid "Every %d months"
976
+ msgstr "Hver %d måned"
977
+
978
+ #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
+ msgid "Yearly"
980
+ msgstr "Årligt"
981
+
982
+ #: lib/recurrence/rule.php:424
983
+ msgid "Every other year"
984
+ msgstr "Hvert andet år"
985
+
986
+ #: lib/recurrence/rule.php:427
987
+ msgid "Every %d years"
988
+ msgstr "Hvert %d år"
989
+
990
+ #: lib/recurrence/rule.php:465
991
+ msgid "until %s"
992
+ msgstr "indtil %s"
993
+
994
+ #: lib/recurrence/rule.php:475
995
+ msgid "for %d occurrences"
996
+ msgstr "i %d forekomster"
997
+
998
+ #: lib/recurrence/rule.php:479
999
+ msgid "forever"
1000
+ msgstr "altid"
1001
+
1002
+ #: lib/robots/helper.php:71
1003
+ msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
+ msgstr "<strong>FEJL:</strong> Der opstod en fejl ved forbindelsen til serveren. Kontroller om indstillingerne er korrekte."
1005
+
1006
+ #: lib/robots/helper.php:105
1007
+ msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
+ msgstr "<strong>FEJL:</strong> Der opstod en fejl ved lagringen af <strong>robots.txt</strong> på serveren. Filen kunne ikke skrives."
1009
+
1010
+ #: lib/theme/list.php:152
1011
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
+ msgstr "Du kan kun vælge et tema på din side lige nu. Besøg Netværksadministratoren for at <a href=\"%1$s\">aktivere</a> eller <a href=\"%2$s\">installere</a> flere temaer."
1013
+
1014
+ #: lib/theme/list.php:164
1015
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
+ msgstr "Du kan kun vælge et tema på din side lige nu. Besøg Netværksadministratoren for at <a href=\"%1$s\">aktivere</a> flere temaer."
1017
+
1018
+ #: lib/theme/list.php:179
1019
+ msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
+ msgstr "Du har kun eet tema installeret lige nu. Du kan vælge mellem mange gratis temaer i Timely Temabiblioteket når som helst: Klik på <a href=\"%s\">Installer temaer</a>-fanen ovenover."
1021
+
1022
+ #: lib/theme/list.php:190
1023
+ msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
+ msgstr "Kun det aktive tema er tilgængeligt for dig. Kontakt <em>%s</em> administrator for at tilføje flere temaer."
1025
+
1026
+ #: lib/theme/list.php:257
1027
+ msgid "Activate &#8220;%s&#8221;"
1028
+ msgstr "Aktiver &#8220;%s&#8221;"
1029
+
1030
+ #: lib/theme/list.php:264
1031
+ msgid "Activate"
1032
+ msgstr "Aktiver"
1033
+
1034
+ #. translators: 1: theme title, 2: theme version, 3: theme author
1035
+ #: lib/theme/list.php:281 public/admin/themes.php:25
1036
+ msgid "%1$s %2$s by %3$s"
1037
+ msgstr "%1$s %2$s af %3$s"
1038
+
1039
+ #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
+ #. title, 5: parent_theme
1041
+ #: lib/theme/list.php:293
1042
+ msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
+ msgstr "Skabelonfilerne er placeret i <code>%2$s</code>. Stilark (CSS) filerne er placeret i <code>%3$s</code>. <strong>%4$s</strong> benytter skabeloner fra <strong>%5$s</strong>. Ændringer i skabelonen vil påvirke begge temaer."
1044
+
1045
+ #: lib/theme/list.php:308
1046
+ msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
+ msgstr "Alle dette temas filer er placeret i <code>%2$s</code>."
1048
+
1049
+ #: lib/post/custom-type.php:36
1050
+ msgid "Parent Event"
1051
+ msgstr "Overordnet begivenhed"
1052
+
1053
+ #: lib/post/custom-type.php:55
1054
+ msgid "event"
1055
+ msgstr "begivenhed"
1056
+
1057
+ #: lib/post/custom-type.php:85
1058
+ msgctxt "Event categories taxonomy"
1059
+ msgid "Categories"
1060
+ msgstr "Kategorier"
1061
+
1062
+ #: lib/post/custom-type.php:86
1063
+ msgctxt "Event categories taxonomy (singular)"
1064
+ msgid "Category"
1065
+ msgstr "Kategori"
1066
+
1067
+ #: lib/post/custom-type.php:87
1068
+ msgctxt "Event categories menu item"
1069
+ msgid "Organize"
1070
+ msgstr "Arranger"
1071
+
1072
+ #: lib/post/custom-type.php:94
1073
+ msgctxt "Event tags taxonomy"
1074
+ msgid "Tags"
1075
+ msgstr "Tags"
1076
+
1077
+ #: lib/post/custom-type.php:95
1078
+ msgctxt "Event tags taxonomy (singular)"
1079
+ msgid "Tag"
1080
+ msgstr "Tag"
1081
+
1082
+ #: lib/post/custom-type.php:102
1083
+ msgctxt "Event feeds taxonomy"
1084
+ msgid "Event Feeds"
1085
+ msgstr "Begivenheds-feeds"
1086
+
1087
+ #: lib/post/custom-type.php:103
1088
+ msgctxt "Event feed taxonomy (singular)"
1089
+ msgid "Event Feed"
1090
+ msgstr "Begivenheds-feed"
1091
+
1092
+ #: lib/post/custom-type.php:285
1093
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
+ msgstr "Alle begivenheder<span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1095
+
1096
+ #: lib/post/custom-type.php:296
1097
+ msgid "All Events"
1098
+ msgstr "Alle begivenheder"
1099
+
1100
+ #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
+ #: lib/recurrence/rule.php:260
1102
+ msgctxt "Recurrence editor - weekly tab"
1103
+ msgid "on"
1104
+ msgstr "på"
1105
+
1106
+ #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
+ #: lib/recurrence/rule.php:326
1108
+ msgid "and"
1109
+ msgstr "og"
1110
+
1111
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
+ #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
+ msgctxt "Recurrence editor - monthly tab"
1114
+ msgid "on"
1115
+ msgstr "på"
1116
+
1117
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
+ #: lib/recurrence/rule.php:286
1119
+ msgid "of the month"
1120
+ msgstr "i måneden"
1121
+
1122
+ #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
+ #: lib/recurrence/rule.php:336
1124
+ msgctxt "Recurrence editor - yearly tab"
1125
+ msgid "on"
1126
+ msgstr "på"
1127
+
1128
+ #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
+ #: public/admin/cron_freq.php:9
1130
+ msgid "Daily"
1131
+ msgstr "Dagligt"
1132
+
1133
+ #: lib/recurrence/rule.php:379
1134
+ msgid "Every other day"
1135
+ msgstr "Hver anden dag"
1136
+
1137
+ #: lib/recurrence/rule.php:382
1138
+ msgid "Every %d days"
1139
+ msgstr "Hver %d dag"
1140
+
1141
+ #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
+ msgid "Weekly"
1143
+ msgstr "Ugentlig"
1144
+
1145
+ #: lib/recurrence/rule.php:394
1146
+ msgid "Every other week"
1147
+ msgstr "Hver anden uge"
1148
+
1149
+ #: lib/less/variable/font.php:64
1150
+ msgid "Custom..."
1151
+ msgstr "Brugerdefineret..."
1152
+
1153
+ #: lib/less/variable/font.php:112
1154
+ msgid "Enter custom font(s)"
1155
+ msgstr "Indsæt brugerdefineret skrifttype(r)"
1156
+
1157
+ #: lib/less/variable/size.php:26
1158
+ msgid "Length"
1159
+ msgstr "Længde"
1160
+
1161
+ #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
+ msgid "All-in-One Event Calendar"
1163
+ msgstr "All-in-One Event Calendar"
1164
+
1165
+ #: lib/notification/admin.php:182
1166
+ msgid "Got it – dismiss this"
1167
+ msgstr "Forstået - fjern dette"
1168
+
1169
+ #: lib/post/custom-type.php:26
1170
+ msgctxt "Custom post type name"
1171
+ msgid "Events"
1172
+ msgstr "Begivenheder"
1173
+
1174
+ #: lib/post/custom-type.php:27
1175
+ msgctxt "Custom post type name (singular)"
1176
+ msgid "Event"
1177
+ msgstr "Begivenhed"
1178
+
1179
+ #: lib/post/custom-type.php:28
1180
+ msgid "Add New"
1181
+ msgstr "Tilføj ny"
1182
+
1183
+ #: lib/post/custom-type.php:29
1184
+ msgid "Add New Event"
1185
+ msgstr "Tilføj ny begivenhed"
1186
+
1187
+ #: lib/post/custom-type.php:30
1188
+ msgid "Edit Event"
1189
+ msgstr "Redigér begivenhed"
1190
+
1191
+ #: lib/post/custom-type.php:31
1192
+ msgid "New Event"
1193
+ msgstr "Ny begivenhed"
1194
+
1195
+ #: lib/post/custom-type.php:32
1196
+ msgid "View Event"
1197
+ msgstr "Vis begivenhed"
1198
+
1199
+ #: lib/post/custom-type.php:33
1200
+ msgid "Search Events"
1201
+ msgstr "Søg begivenheder"
1202
+
1203
+ #: lib/post/custom-type.php:34
1204
+ msgid "No Events found"
1205
+ msgstr "Ingen begivenheder fundet"
1206
+
1207
+ #: lib/post/custom-type.php:35
1208
+ msgid "No Events found in Trash"
1209
+ msgstr "Ingen begivenheder fundet i papirkurven"
1210
+
1211
+ #: lib/html/element/setting/html.php:62
1212
+ msgid "Filter by post ID:"
1213
+ msgstr "Sorter efter indlægs ID:"
1214
+
1215
+ #: lib/html/element/setting/html.php:63
1216
+ msgid "Filter by post IDs (separate IDs by comma):"
1217
+ msgstr "Sorter efter indlæggets ID´er (adskil ID´er med komma):"
1218
+
1219
+ #: lib/html/element/setting/html.php:64
1220
+ msgid "Limit number of events per page:"
1221
+ msgstr "Begræns antal begivenheder pr. side til:"
1222
+
1223
+ #: lib/html/element/setting/html.php:65
1224
+ msgid "Warning:"
1225
+ msgstr "Advarsel"
1226
+
1227
+ #: lib/html/element/setting/html.php:66
1228
+ msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
+ msgstr "Det er i øjeblikket ikke muligt at indlejre mere end én kalender på den samme side. Forsøg ikke at indlejre kalenderen med genvejskode på en side, som allerede viser kalenderen."
1230
+
1231
+ #: lib/import-export/ics.php:831
1232
+ msgid "Tickets: "
1233
+ msgstr ""
1234
+
1235
+ #: lib/html/element/setting/html.php:41
1236
+ msgid "Day view:"
1237
+ msgstr "Dagsvisning:"
1238
+
1239
+ #: lib/html/element/setting/html.php:42
1240
+ msgid "Agenda view:"
1241
+ msgstr "Listevisning:"
1242
+
1243
+ #: lib/html/element/setting/html.php:43
1244
+ msgid "Some Other view:"
1245
+ msgstr "En anden visning"
1246
+
1247
+ #: lib/html/element/setting/html.php:44
1248
+ msgid "Default view as per settings:"
1249
+ msgstr "Standardvisning ifølge indstilling:"
1250
+
1251
+ #: lib/html/element/setting/html.php:45
1252
+ msgid "General form:"
1253
+ msgstr "Almindelige form:"
1254
+
1255
+ #: lib/html/element/setting/html.php:46
1256
+ msgid "Optional."
1257
+ msgstr "Valgfrit."
1258
+
1259
+ #: lib/html/element/setting/html.php:47
1260
+ msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
+ msgstr "Tilføj mulighed for at vise en sorteret kalender. (Du kan finde kategori- og tag-ID´er ved at kigge i adressefeltet på den sorterede kalender.)"
1262
+
1263
+ #: lib/html/element/setting/html.php:48
1264
+ msgid "Filter by event category name/slug:"
1265
+ msgstr "Sorter efter begivenhedskategoriens navn/slug:"
1266
+
1267
+ #: lib/html/element/setting/html.php:49
1268
+ msgid "Holidays"
1269
+ msgstr "Helligdage"
1270
+
1271
+ #: lib/html/element/setting/html.php:50
1272
+ msgid "Lunar Cycles"
1273
+ msgstr "Månecyklus"
1274
+
1275
+ #: lib/html/element/setting/html.php:51
1276
+ msgid "zodiac-date-ranges"
1277
+ msgstr "Datoområder for stjernetegn"
1278
+
1279
+ #: lib/html/element/setting/html.php:52
1280
+ msgid "Filter by event category names/slugs (separate names by comma):"
1281
+ msgstr "Sorter efter begivenhedens kategorinavne (adskil navne med komma):"
1282
+
1283
+ #: lib/html/element/setting/html.php:53
1284
+ msgid "Filter by event category ID:"
1285
+ msgstr "Sorter efter begivenhedskategoriens ID:"
1286
+
1287
+ #: lib/html/element/setting/html.php:54
1288
+ msgid "Filter by event category IDs (separate IDs by comma):"
1289
+ msgstr "Sorter efter begivenhedskategoriens ID´er (adskil ID´er med komma):"
1290
+
1291
+ #: lib/html/element/setting/html.php:55
1292
+ msgid "Filter by event tag name/slug:"
1293
+ msgstr "Sorter efter begivenhedstag´ets navn/slug:"
1294
+
1295
+ #: lib/html/element/setting/html.php:56
1296
+ msgid "tips-and-tricks"
1297
+ msgstr "tips og tricks"
1298
+
1299
+ #: lib/html/element/setting/html.php:57
1300
+ msgid "creative writing"
1301
+ msgstr "digtning"
1302
+
1303
+ #: lib/html/element/setting/html.php:58
1304
+ msgid "performing arts"
1305
+ msgstr "scenekunst"
1306
+
1307
+ #: lib/html/element/setting/html.php:59
1308
+ msgid "Filter by event tag names/slugs (separate names by comma):"
1309
+ msgstr "Sorter efter begivenhedstag´ets navne/slugs (adskil navne med komma):"
1310
+
1311
+ #: lib/html/element/setting/html.php:60
1312
+ msgid "Filter by event tag ID:"
1313
+ msgstr "Sorter efter begivenhedstag ID:"
1314
+
1315
+ #: lib/html/element/setting/html.php:61
1316
+ msgid "Filter by event tag IDs (separate IDs by comma):"
1317
+ msgstr "Sorter efter begivenhedstag´ets ID´er (adskil ID´er med komma):"
1318
+
1319
+ #: lib/exception/handler.php:395
1320
+ msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
+ msgstr "All-in-One Event Calendar er deaktiveret på grund af en fejl:"
1322
+
1323
+ #: lib/exception/handler.php:404
1324
+ msgid "Try reactivating plugin"
1325
+ msgstr "Prøv at genaktivere plugin"
1326
+
1327
+ #: lib/exception/handler.php:576
1328
+ msgid "Toggle error details"
1329
+ msgstr "Skift mellem detaljer om fejlen"
1330
+
1331
+ #: lib/exception/handler.php:577
1332
+ msgid "Error Details:"
1333
+ msgstr "Detaljer om fejlen:"
1334
+
1335
+ #: lib/factory/html.php:133
1336
+ msgid "Choose a date using calendar"
1337
+ msgstr "Vælg en dato ved hjælp af kalenderen"
1338
+
1339
+ #: lib/factory/html.php:278
1340
+ msgid "Tags (optional)"
1341
+ msgstr "Tags (valgfri)"
1342
+
1343
+ #: lib/html/element/setting/cache.php:38
1344
+ msgid "Check again"
1345
+ msgstr "Tjek igen"
1346
+
1347
+ #: lib/html/element/setting/cache.php:39
1348
+ msgid "Templates cache is not writable"
1349
+ msgstr "Skabelonernes cache er ikke skrivbar"
1350
+
1351
+ #: lib/html/element/setting/cache.php:40
1352
+ msgid "Templates cache is writable"
1353
+ msgstr "Skabelonernes cache er skrivbar"
1354
+
1355
+ #: lib/html/element/setting/cache.php:41
1356
+ msgid "Checking..."
1357
+ msgstr "Tjekker..."
1358
+
1359
+ #: lib/html/element/setting/cache.php:42
1360
+ msgid "Performance Report"
1361
+ msgstr "Rapport om ydeevne"
1362
+
1363
+ #: lib/html/element/setting/calendar-page-selector.php:70
1364
+ msgid "View"
1365
+ msgstr "Vis"
1366
+
1367
+ #: lib/html/element/setting/calendar-page-selector.php:114
1368
+ msgid "- Auto-Create New Page -"
1369
+ msgstr "- Opret automatisk Ny Side -"
1370
+
1371
+ #: lib/html/element/setting/enabled-views.php:22
1372
+ msgid "Enabled"
1373
+ msgstr "Aktiveret"
1374
+
1375
+ #: lib/html/element/setting/enabled-views.php:23
1376
+ msgid "Default"
1377
+ msgstr "Standard"
1378
+
1379
+ #: lib/html/element/setting/enabled-views.php:24
1380
+ msgid "Desktop"
1381
+ msgstr "Stationær"
1382
+
1383
+ #: lib/html/element/setting/enabled-views.php:25
1384
+ msgid "Mobile"
1385
+ msgstr "Mobil"
1386
+
1387
+ #: lib/html/element/setting/html.php:37
1388
+ msgid "Embed the calendar using a shortcode"
1389
+ msgstr "Brug en genvejskode til at indlejre kalenderen"
1390
+
1391
+ #: lib/html/element/setting/html.php:38
1392
+ msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
+ msgstr "Indsæt en af disse genvejskoder i 'body'-delen for at indlejre kalenderen på en hvilken som helst WordPressside"
1394
+
1395
+ #: lib/html/element/setting/html.php:39
1396
+ msgid "Month view:"
1397
+ msgstr "Månedsvisning:"
1398
+
1399
+ #: lib/html/element/setting/html.php:40
1400
+ msgid "Week view:"
1401
+ msgstr "Ugevisning:"
1402
+
1403
+ #: lib/css/frontend.php:239
1404
+ msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
+ msgstr "Dannelsen af CSS fejlede fordi du ikke har tilsktrækkelig fri hukommelse (der behøves minimum %s). Din kalender kan ikke rendere eller fungere ordentligt uden CSS. Læs venligst <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">denne artikel</a> for at lære hvordan man øger PHP hukommelsesgrænsen."
1406
+
1407
+ #: lib/css/frontend.php:266
1408
+ msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
+ msgstr "LESS-filen blev kompileret korrekt, men der opstod en fejl da den genererede CSS-fil skulle gemmes permanent."
1410
+
1411
+ #: lib/css/frontend.php:272
1412
+ msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
+ msgstr "<p><strong>Der opstod en fejl under kompilering af CSS.</strong> Den returnerede besked var: <em>%s</em></p>"
1414
+
1415
+ #: lib/css/frontend.php:300
1416
+ msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
+ msgstr "Temaindstillingerne blev nulstillet til standardværdi. <a href='%s'>Besøg siden</a>"
1418
+
1419
+ #: lib/css/frontend.php:307
1420
+ msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
+ msgstr "Temaindstilliger blev opdateret korrekt. <a href='%s'>Besøg siden</a>"
1422
+
1423
+ #: lib/css/frontend.php:343
1424
+ msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
+ msgstr "Din css bliver kompileret på ny for hvert sidekald hvilket betyder, at din kalender bliver langsom. Følgende fejl opstod: %s"
1426
+
1427
+ #: lib/database/applicator.php:182
1428
+ msgid "Date columns in table %s have different types."
1429
+ msgstr "Datokolonner i tabellen %s har forskellige typer."
1430
+
1431
+ #: lib/database/exception/database.php:19
1432
+ msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
+ msgstr "Opdatering af databasen slog fejl. Du skal sikre dig at databasebrugeren angivet i <em>wp-config.php</em> har tilladelse til at ændre databasen (<strong>ALTER TABLE</strong>)"
1434
+
1435
+ #: lib/database/exception/database.php:23
1436
+ msgid "Error encountered: %s"
1437
+ msgstr "Fundne fejl: %s"
1438
+
1439
+ #: lib/date/system.php:202
1440
+ msgid "GMT%+d:%02d"
1441
+ msgstr "GMT%+d:%02d"
1442
+
1443
+ #: lib/date/timezone.php:362
1444
+ msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
+ msgstr "Vælg hjemmesidens tidszone i %s <em>Tidszone</em> dropdown-menuen."
1446
+
1447
+ #: lib/date/timezone.php:397
1448
+ msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
+ msgstr "Tidszonen \"UTC%+d\" blev ikke genkendt. Benyt venligst et %suse valid%s navn til tidszonen. Indtil da vil begivenheder bleve oprettet i UTC tidszone."
1450
+
1451
+ #: lib/date/timezone.php:421
1452
+ msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
+ msgstr "Den valgte tidszone \"UTC%+d\" vil blive betragtet som %s."
1454
+
1455
+ #: lib/date/timezone.php:490
1456
+ msgid "Manual Offset"
1457
+ msgstr "Manuel tilpasning"
1458
+
1459
+ #: lib/date/timezone.php:493
1460
+ msgid "Choose your timezone"
1461
+ msgstr "Vælg din tidszone"
1462
+
1463
+ #: lib/environment/check.php:55
1464
+ msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
+ msgstr "Vælg en indstilling fra <strong>Kalendersidens</strong> dropdownliste."
1466
+
1467
+ #: lib/environment/check.php:68
1468
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
+ msgstr "Plugin er intalleret men endnu ikke konfigureret. <a href=\"%s\">Klik her for at opsætte det nu &raquo;</a>"
1470
+
1471
+ #: lib/environment/check.php:78
1472
+ msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
+ msgstr "Plugin er installeret men endnu ikke konfigureret. Log ind som administrator for at opsætte det."
1474
+
1475
+ #: lib/environment/check.php:196
1476
+ msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
+ msgstr "Tilføjelsen <strong>%s</strong> skal opdateres til mindst version %s for at opretholde kompatibilitet med den grundlæggende kalender."
1478
+
1479
+ #: lib/environment/check.php:197
1480
+ msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
+ msgstr "Hvis der ikke vises notitser om opdatering herunder, skal du sikre dig at du har angivet <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">rigtige licensnøgler</a>. Alternativt kan du navigere til <a href=\"https://time.ly/your-account/\">din konto</a> for at downloade den seneste version af tilføjelsen og <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">opdatere manuelt</a>. Du kan også <a href=\"https://time.ly/forums/\">spørge i forum</a> hvis du har problemer. Vi vil med glæde hjælpe."
1482
+
1483
+ #: lib/exception/handler.php:176
1484
+ msgid "The add-on \"%s\" has been disabled due to an error:"
1485
+ msgstr "Tilføjelsen \"%s\" er blevet deaktiveret på grund af en fejl:"
1486
+
1487
+ #: lib/calendar-feed/ics.php:367
1488
+ msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
+ msgstr "Ønsker du at beholde de importerede begivenheder fra kalenderen eller at fjerne dem?"
1490
+
1491
+ #: lib/calendar-feed/ics.php:373
1492
+ msgid "Removing ICS Feed"
1493
+ msgstr "Fjerner ICS-feed"
1494
+
1495
+ #: lib/calendar-feed/ics.php:376
1496
+ msgid "Keep Events"
1497
+ msgstr "Behold begivenheder"
1498
+
1499
+ #: lib/calendar-feed/ics.php:379
1500
+ msgid "Remove Events"
1501
+ msgstr "Fjern begivenheder"
1502
+
1503
+ #: lib/calendar-feed/ics.php:519
1504
+ msgid "Oh, submission was not accepted."
1505
+ msgstr ""
1506
+
1507
+ #: lib/calendar-feed/ics.php:699
1508
+ msgid "Deleted %d events"
1509
+ msgstr "Slettede %d begivenheder"
1510
+
1511
+ #: lib/calendar-feed/ics.php:735
1512
+ msgid "Feed deleted"
1513
+ msgstr "Feed slettet"
1514
+
1515
+ #: lib/captcha/provider/nocaptcha.php:31
1516
+ msgid "noCAPTCHA public key:"
1517
+ msgstr "noCAPTCHA offentlig nøgle::"
1518
+
1519
+ #: lib/captcha/provider/nocaptcha.php:47
1520
+ msgid "noCAPTCHA private key:"
1521
+ msgstr "noCAPTCHA privat nøgle:"
1522
+
1523
+ #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
+ msgid "Please try verifying you are human again."
1525
+ msgstr "Bevis venligst endnu engang at du er et menneske."
1526
+
1527
+ #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
+ msgid "There was an error reading the human verification data. Please try again."
1529
+ msgstr "Der opstod en fejl under godkendelse af kontrol for at du er et menneske. Prøv igen."
1530
+
1531
+ #: lib/captcha/provider/recaptcha.php:32
1532
+ msgid "reCAPTCHA public key:"
1533
+ msgstr "reCAPTCHA offentlig nøgle:"
1534
+
1535
+ #: lib/captcha/provider/recaptcha.php:48
1536
+ msgid "reCAPTCHA private key:"
1537
+ msgstr "reCAPTCHA privat nøgle:"
1538
+
1539
+ #: lib/captcha/provider/recaptcha.php:66
1540
+ msgid "Human verification"
1541
+ msgstr "Bevis for at du er et menneske"
1542
+
1543
+ #: lib/captcha/provider/recaptcha.php:67
1544
+ msgid "Loading reCAPTCHA..."
1545
+ msgstr "Indlæser reCAPTCHA..."
1546
+
1547
+ #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
+ #: lib/clone/renderer-helper.php:45
1549
+ msgid "Clone"
1550
+ msgstr "Klon"
1551
+
1552
+ #: lib/clone/renderer-helper.php:44
1553
+ msgid "Make new copy of event"
1554
+ msgstr "Lav ny kopi af begivenhed"
1555
+
1556
+ #: lib/clone/renderer-helper.php:47
1557
+ msgid "Copy to a new draft"
1558
+ msgstr "Kopier til ny kladde"
1559
+
1560
+ #: lib/clone/renderer-helper.php:48
1561
+ msgid "Clone to Draft"
1562
+ msgstr "Klon til kladde"
1563
+
1564
+ #: lib/command/clone.php:173
1565
+ msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
+ msgstr "<p>Begivenheden <strong>%s</strong> blev klonet korrekt. <a href=\"%s\">Rediger den klonede begivenhed</a></p>"
1567
+
1568
+ #: lib/compatibility/check.php:101
1569
+ msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
+ msgstr "Du har aktiveret rendering fra frontend og benytter samtidig eget kalendertema. Hvis dit tema ikke understøtter rendering fra frontend, virker kalenderen måske ikke korrekt."
1571
+
1572
+ #: app/view/event/single.php:123
1573
+ msgid "Tickets:"
1574
+ msgstr ""
1575
+
1576
+ #: app/view/event/single.php:124
1577
+ msgid "Free"
1578
+ msgstr "Gratis"
1579
+
1580
+ #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
+ msgid "Buy Tickets"
1582
+ msgstr "Køb billetter"
1583
+
1584
+ #: app/view/event/single.php:150
1585
+ msgid "Edit this occurrence (%s)"
1586
+ msgstr "Rediger denne forekomst (%s)"
1587
+
1588
+ #: app/view/event/single.php:195
1589
+ msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
+ msgstr "Dette indlæg er oprettet som en kopi af en anden hjemmesides <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> kalenderfeed</a>."
1591
+
1592
+ #: app/view/event/single.php:206
1593
+ msgid "View original"
1594
+ msgstr "Vis oprindelige"
1595
+
1596
+ #: app/view/event/taxonomy.php:113
1597
+ msgid "Category image"
1598
+ msgstr "Kategoribillede"
1599
+
1600
+ #: app/view/event/ticket.php:24
1601
+ msgid "Register Now"
1602
+ msgstr "Registrer nu"
1603
+
1604
+ #: app/view/event/ticket.php:82
1605
+ msgid "Event website"
1606
+ msgstr "Begivenhedens webside"
1607
+
1608
+ #: app/view/event/time.php:84 app/view/event/time.php:118
1609
+ msgctxt "Event time separator"
1610
+ msgid " @ "
1611
+ msgstr " kl. "
1612
+
1613
+ #: app/view/event/time.php:100
1614
+ msgctxt "Event start/end separator"
1615
+ msgid " – "
1616
+ msgstr " – "
1617
+
1618
+ #: app/view/event/time.php:166
1619
+ msgid ", and "
1620
+ msgstr ", og"
1621
+
1622
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
+ msgid "Excludes: "
1624
+ msgstr ""
1625
+
1626
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
+ msgid "Repeats"
1628
+ msgstr ""
1629
+
1630
+ #: lib/calendar-feed/ics.php:38
1631
+ msgid "ICS"
1632
+ msgstr "ICS"
1633
+
1634
+ #: lib/calendar-feed/ics.php:69
1635
+ msgid "Another import process in progress. Please try again later."
1636
+ msgstr "En anden importhandling er i gang. Prøv igen senere."
1637
+
1638
+ #: lib/calendar-feed/ics.php:174
1639
+ msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
+ msgstr "En systemfejl har forhindret kalenderen i at hente data. Noget forhindrer plugin i at fungere korrekt. Denne meddelelse burde indeholde et fingerpeg: %s"
1641
+
1642
+ #: lib/calendar-feed/ics.php:181
1643
+ msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
+ msgstr "Kalenderdata kunne ikke hentes. Hvis din webadresse er gyldig og indeholder en iCalendar-ressource, skyldes dette sandsynligvis en midlertidig fejl på serveren og derfor løser sig selv efter lidt tid."
1645
+
1646
+ #: lib/calendar-feed/ics.php:195
1647
+ msgid "Imported %s event"
1648
+ msgid_plural "Imported %s events"
1649
+ msgstr[0] "Importerede %s begivenhed"
1650
+ msgstr[1] "Importerede %s begivenheder"
1651
+
1652
+ #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
+ msgid "Invalid ICS feed ID"
1654
+ msgstr "Ugyldig ICS feed-ID"
1655
+
1656
+ #: lib/calendar-feed/ics.php:350
1657
+ msgid "Categories (optional)"
1658
+ msgstr "Kategorier (valgfri)"
1659
+
1660
+ #: app/view/event/content.php:33 app/view/event/single.php:119
1661
+ msgid "When:"
1662
+ msgstr "Hvornår:"
1663
+
1664
+ #: app/view/event/content.php:34 app/view/event/single.php:120
1665
+ msgid "Where:"
1666
+ msgstr "Hvor:"
1667
+
1668
+ #: app/view/event/content.php:125
1669
+ msgid "Calendar"
1670
+ msgstr ""
1671
+
1672
+ #: app/view/event/content.php:126
1673
+ msgid "View all events"
1674
+ msgstr "Vis alle begivenheder"
1675
+
1676
+ #: app/view/event/location.php:96
1677
+ msgid "Click to view map"
1678
+ msgstr "Klik for at se kortet"
1679
+
1680
+ #: app/view/event/location.php:97
1681
+ msgid "View Full-Size Map"
1682
+ msgstr "Vis kort på hel side"
1683
+
1684
+ #: app/view/event/post.php:29
1685
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1686
+ msgstr "Begivenhed opdateret. <a href=\"%s\">Vis begivenhed</a>"
1687
+
1688
+ #: app/view/event/post.php:32
1689
+ msgid "Custom field updated."
1690
+ msgstr "Brugerdefineret felt er opdateret."
1691
+
1692
+ #: app/view/event/post.php:33
1693
+ msgid "Custom field deleted."
1694
+ msgstr "Brugerdefineret felt er slettet."
1695
+
1696
+ #: app/view/event/post.php:34
1697
+ msgid "Event updated."
1698
+ msgstr "Begivenhed er opdateret."
1699
+
1700
+ #. translators: %s: date and time of the revision
1701
+ #: app/view/event/post.php:38
1702
+ msgid "Event restored to revision from %s"
1703
+ msgstr "Begivenhed gendannet til revision af %s"
1704
+
1705
+ #: app/view/event/post.php:43
1706
+ msgid "Event published. <a href=\"%s\">View event</a>"
1707
+ msgstr "Begivenhed udgivet. <a href=\"%s\">Vis begivenhed</a>"
1708
+
1709
+ #: app/view/event/post.php:46
1710
+ msgid "Event saved."
1711
+ msgstr "Begivenhed gemt."
1712
+
1713
+ #: app/view/event/post.php:48
1714
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
+ msgstr "Begivenhed indsendt. <a target=\"_blank\" href=\"%s\">Forhåndsvisning af begivenhed</a>"
1716
+
1717
+ #: app/view/event/post.php:52
1718
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
+ msgstr "Begivenhed planlagt til: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Forhåndsvisning af begivenhed</a>"
1720
+
1721
+ #. translators: Publish box date format, see http:php.net/date
1722
+ #: app/view/event/post.php:54
1723
+ msgid "M j, Y @ G:i"
1724
+ msgstr "j. M Y kl. G:i "
1725
+
1726
+ #: app/view/event/post.php:58
1727
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
+ msgstr "Udkast til begivenhed er opdateret <a target=\"_blank\" href=\"%s\">Forhåndsvisning af begivenhed</a>"
1729
+
1730
+ #: app/view/event/single.php:78
1731
+ msgid "Event was created in the %s time zone"
1732
+ msgstr "Begivenheden blev oprettet i tidszonen %s"
1733
+
1734
+ #: app/view/event/single.php:114
1735
+ msgid "Add to Calendar"
1736
+ msgstr "Tilføj i kalender"
1737
+
1738
+ #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
+ msgid "Cost:"
1740
+ msgstr "Pris:"
1741
+
1742
+ #: app/view/event/single.php:122
1743
+ msgid "Contact:"
1744
+ msgstr "Kontakt:"
1745
+
1746
+ #: app/view/calendar/view/agenda.php:169
1747
+ msgid "Categories:"
1748
+ msgstr "Kategorier:"
1749
+
1750
+ #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
+ #: public/admin/themes.php:29
1752
+ msgid "Tags:"
1753
+ msgstr "Tags:"
1754
+
1755
+ #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
+ #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
+ #: app/view/calendar/widget.php:374
1758
+ msgid "@ %s"
1759
+ msgstr " %s"
1760
+
1761
+ #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
+ msgid "g a"
1763
+ msgstr "g a"
1764
+
1765
+ #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
+ msgid "Reveal full day"
1767
+ msgstr "Vis hele dagen"
1768
+
1769
+ #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
+ msgid "All-day"
1771
+ msgstr "Heldags"
1772
+
1773
+ #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
+ msgid "Now:"
1775
+ msgstr "Nu:"
1776
+
1777
+ #: app/view/calendar/view/week.php:67
1778
+ msgid "Week of %s"
1779
+ msgstr "Ugen fra %s"
1780
+
1781
+ #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
+ msgid "Upcoming Events"
1783
+ msgstr "Kommende begivenheder"
1784
+
1785
+ #: app/view/calendar/widget.php:38
1786
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
+ msgstr "All-in-One Event Calendar: Opstiller kommende begivenheder i listeform"
1788
+
1789
+ #: app/view/calendar/widget.php:80
1790
+ msgid "Choose how to limit the upcoming events"
1791
+ msgstr "Vælg hvordan kommende begivenheder skal begrænses"
1792
+
1793
+ #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
+ msgid "Events"
1795
+ msgstr "Begivenheder"
1796
+
1797
+ #: app/view/calendar/widget.php:93
1798
+ msgid "Days"
1799
+ msgstr "Dage"
1800
+
1801
+ #: app/view/calendar/widget.php:106
1802
+ msgid "Number of events to show"
1803
+ msgstr "Antal viste begivenheder"
1804
+
1805
+ #: app/view/calendar/widget.php:115
1806
+ msgid "Number of days to show"
1807
+ msgstr "Antal viste dage"
1808
+
1809
+ #: app/view/calendar/widget.php:124
1810
+ msgid "Show events filtered for the following tags/categories"
1811
+ msgstr "Vis begivenheder sorteret efter følgende tags/kategorier"
1812
+
1813
+ #: app/view/calendar/widget.php:141
1814
+ msgid "Show the subscribe button in the widget"
1815
+ msgstr "Vis knappen Abonner i sidebaren"
1816
+
1817
+ #: app/view/calendar/widget.php:370
1818
+ msgid "There are no upcoming events."
1819
+ msgstr "Der er ingen kommende begivenheder."
1820
+
1821
+ #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
+ msgid "all-day"
1823
+ msgstr "heldags"
1824
+
1825
+ #: app/view/calendar/widget.php:372
1826
+ msgid "View Calendar"
1827
+ msgstr "Vis kalender"
1828
+
1829
+ #: app/view/calendar/widget.php:375
1830
+ msgid "Add"
1831
+ msgstr "Tilføj"
1832
+
1833
+ #: app/view/calendar/page.php:260
1834
+ msgid "Subscribe to filtered calendar"
1835
+ msgstr "Abonner på den sorterede kalender"
1836
+
1837
+ #: app/view/calendar/page.php:261
1838
+ msgid "Subscribe"
1839
+ msgstr "Abonner"
1840
+
1841
+ #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
+ msgid "Get a Timely Calendar"
1843
+ msgstr "Få en kalender fra Timely"
1844
+
1845
+ #: app/view/calendar/subscribe-button.php:22
1846
+ msgid "Add to Timely Calendar"
1847
+ msgstr "Tilføj i Timely kalender"
1848
+
1849
+ #: app/view/calendar/subscribe-button.php:23
1850
+ msgid "Add to Google"
1851
+ msgstr "Tilføj i Google"
1852
+
1853
+ #: app/view/calendar/subscribe-button.php:24
1854
+ msgid "Add to Outlook"
1855
+ msgstr "Tilføj i Outlook"
1856
+
1857
+ #: app/view/calendar/subscribe-button.php:25
1858
+ msgid "Add to Apple Calendar"
1859
+ msgstr "Tilføj i Apple kalender"
1860
+
1861
+ #: app/view/calendar/subscribe-button.php:26
1862
+ msgid "Add to other calendar"
1863
+ msgstr "Tilføj i anden kalender"
1864
+
1865
+ #: app/view/calendar/subscribe-button.php:29
1866
+ msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
+ msgstr "Kopier denne webadresse (URL) til din egen Timely kalender eller klik for at tilføje i din RTF kalender."
1868
+
1869
+ #: app/view/calendar/subscribe-button.php:30
1870
+ msgid "Subscribe to this calendar in your Google Calendar"
1871
+ msgstr "Abonner på denne kalender i Google kalender"
1872
+
1873
+ #: app/view/calendar/subscribe-button.php:31
1874
+ msgid "Subscribe to this calendar in MS Outlook"
1875
+ msgstr "Abonner på denne kalender i MS Outlook"
1876
+
1877
+ #: app/view/calendar/subscribe-button.php:32
1878
+ msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
+ msgstr "Abonner på denne kalender i Apple kalender/iCal"
1880
+
1881
+ #: app/view/calendar/subscribe-button.php:33
1882
+ msgid "Subscribe to this calendar in another plain-text calendar"
1883
+ msgstr "Abonner på denne kalender i en anden ren-tekst kalender"
1884
+
1885
+ #: app/view/calendar/taxonomy.php:97
1886
+ msgid "Clear category filter"
1887
+ msgstr "Ryd kategorisortering"
1888
+
1889
+ #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
+ #: lib/html/element/setting/tags-categories.php:47
1891
+ msgid "Categories"
1892
+ msgstr "Kategorier"
1893
+
1894
+ #: app/view/calendar/taxonomy.php:99
1895
+ msgid "Clear tag filter"
1896
+ msgstr "Ryd tagsortering"
1897
+
1898
+ #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
+ #: lib/html/element/setting/tags-categories.php:39
1900
+ msgid "Tags"
1901
+ msgstr "Tags"
1902
+
1903
+ #: app/view/calendar/view/agenda.php:142
1904
+ msgid "Collapse All"
1905
+ msgstr "Fold alle sammen"
1906
+
1907
+ #: app/view/calendar/view/agenda.php:143
1908
+ msgid "Expand All"
1909
+ msgstr "Udvid alle"
1910
+
1911
+ #: app/view/calendar/view/agenda.php:166
1912
+ msgid "There are no upcoming events to display at this time."
1913
+ msgstr "Der er ingen kommende begivenheder på dette tidspunkt."
1914
+
1915
+ #: app/view/calendar/view/agenda.php:168
1916
+ msgid "Read more"
1917
+ msgstr "Læs mere"
1918
+
1919
+ #: app/view/admin/tickets.php:86
1920
+ msgid "Sales"
1921
+ msgstr ""
1922
+
1923
+ #: app/view/admin/tickets.php:87
1924
+ msgid "How do you want the tickets revenue to be sent to you?"
1925
+ msgstr ""
1926
+
1927
+ #: app/view/admin/tickets.php:88
1928
+ msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
+ msgstr ""
1930
+
1931
+ #: app/view/admin/tickets.php:91
1932
+ msgid "Cheque"
1933
+ msgstr ""
1934
+
1935
+ #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
+ msgid "Paypal"
1937
+ msgstr "Paypal"
1938
+
1939
+ #: app/view/admin/tickets.php:94
1940
+ msgid "Save Changes"
1941
+ msgstr ""
1942
+
1943
+ #: app/view/admin/tickets.php:95
1944
+ msgid "Date"
1945
+ msgstr ""
1946
+
1947
+ #: app/view/admin/tickets.php:96
1948
+ msgid "Event"
1949
+ msgstr ""
1950
+
1951
+ #: app/view/admin/tickets.php:97
1952
+ msgid "Purchaser"
1953
+ msgstr ""
1954
+
1955
+ #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
+ #: public/admin/box_event_cost.php:35
1957
+ msgid "Tickets"
1958
+ msgstr "Billetter"
1959
+
1960
+ #: app/view/admin/tickets.php:101
1961
+ msgid "Total"
1962
+ msgstr ""
1963
+
1964
+ #: app/view/admin/tickets.php:102
1965
+ msgid "Sign Out"
1966
+ msgstr ""
1967
+
1968
+ #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
+ #: app/view/admin/widget-creator.php:47
1970
+ msgid "Widget Creator"
1971
+ msgstr "Widget Creator"
1972
+
1973
+ #: app/view/admin/widget-creator.php:74
1974
+ msgctxt "meta box"
1975
+ msgid "Widget Creator"
1976
+ msgstr "Widget Creator"
1977
+
1978
+ #: app/view/admin/widget-creator.php:131
1979
+ msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
+ msgstr "Brug dette værktøj til at generere en kode her, som du kan føje til <strong> en ekstern hjemmeside </strong> for at indlejre nye kalendere og widgets."
1981
+
1982
+ #: app/view/admin/widget-creator.php:132
1983
+ msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
+ msgstr "<h4>Bemærk!</h4><p>Disse widgets er designet til kun at blive indlejret <strong>på eksterne hjemmesider</strong> og kan derfor føre til konflikter, hvis de benyttes indenfor samme WordPress installation.</p>"
1985
+
1986
+ #: app/view/admin/widget-creator.php:134
1987
+ msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
+ msgstr "<p>Benyt <a href=\"%s\"><strong>Udseendee</strong> &gt; <strong>Widgets</strong></a> for at tilføje widgets med begivenheder på din WordPress side, som du ville gøre med en hvilken som helst anden widget, eller benyt <a href=\"%s\" target=\"_blank\">genvejskoder</a> til at indlejre hele kalenderen.</strong></p>"
1989
+
1990
+ #: app/view/admin/widget-creator.php:140
1991
+ msgid "Paste this code onto your site:"
1992
+ msgstr "Indsæt denne kode på din hjemmeside:"
1993
+
1994
+ #: app/view/admin/widget-creator.php:141
1995
+ msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
+ msgstr "Denne kode vil blive opdateret for at afspejle ændringer i indstillingerne. Ændring af indstillinger vil ikke påvirke tidligere indlejrede widgets."
1997
+
1998
+ #: app/view/calendar/page.php:54
1999
+ msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
+ msgstr "Der opstod en fejl med at hente kalenderen. Kontakt venligst sidens administrator, og bed denne om at konfigurere kalendervisninger."
2001
+
2002
+ #: app/view/calendar/page.php:74
2003
+ msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
+ msgstr "Kalenderen kunne ikke oprette %s visning og er gået tilbage til Listevisning. Tjek om du har installeret seneste versioner af kalendertilføjelserne."
2005
+
2006
+ #: app/view/admin/settings.php:193
2007
+ msgid "Phone Number:"
2008
+ msgstr ""
2009
+
2010
+ #: app/view/admin/settings.php:194
2011
+ msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
+ msgstr ""
2013
+
2014
+ #: app/view/admin/settings.php:197
2015
+ msgid "Sign Up"
2016
+ msgstr ""
2017
+
2018
+ #: app/view/admin/settings.php:198
2019
+ msgid "Sign In"
2020
+ msgstr ""
2021
+
2022
+ #: app/view/admin/settings.php:212
2023
+ msgid "Save Settings"
2024
+ msgstr "Gem indstillinger"
2025
+
2026
+ #: app/view/admin/settings.php:219
2027
+ msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
+ msgstr "Hvis formularen nedenunder ikke virker, følg da <a href=\"%s\">dette link</a>."
2029
+
2030
+ #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
+ msgid "Theme Options"
2032
+ msgstr "Temaindstillinger"
2033
+
2034
+ #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
+ msgid "Calendar Theme Options"
2036
+ msgstr "Kalendertema indstillinger"
2037
+
2038
+ #: app/view/admin/theme-options.php:79
2039
+ msgctxt "meta box"
2040
+ msgid "Calendar Theme Options"
2041
+ msgstr "Indstillinger for kalendertema"
2042
+
2043
+ #: app/view/admin/theme-options.php:133
2044
+ msgid "General"
2045
+ msgstr "Generelt"
2046
+
2047
+ #: app/view/admin/theme-options.php:136
2048
+ msgid "Tables"
2049
+ msgstr "Tabeller"
2050
+
2051
+ #: app/view/admin/theme-options.php:139
2052
+ msgid "Buttons"
2053
+ msgstr "Knapper"
2054
+
2055
+ #: app/view/admin/theme-options.php:142
2056
+ msgid "Forms"
2057
+ msgstr "Formularer"
2058
+
2059
+ #: app/view/admin/theme-options.php:145
2060
+ msgid "Calendar general"
2061
+ msgstr "Kalender generelt"
2062
+
2063
+ #: app/view/admin/theme-options.php:148
2064
+ msgid "Month/week/day view"
2065
+ msgstr "Måneds-/uge-/dagsvisning"
2066
+
2067
+ #: app/view/admin/theme-options.php:151
2068
+ msgid "Agenda view"
2069
+ msgstr "Listevisning"
2070
+
2071
+ #: app/view/admin/theme-options.php:169
2072
+ msgid "Save Options"
2073
+ msgstr "Gem indstilinger"
2074
+
2075
+ #: app/view/admin/theme-options.php:177
2076
+ msgid "Reset to Defaults"
2077
+ msgstr "Nulstil til standardværdier"
2078
+
2079
+ #: app/view/admin/theme-switching.php:31
2080
+ msgid "All-in-One Event Calendar: Themes"
2081
+ msgstr "All-in-One Event Calendar: Temaer"
2082
+
2083
+ #: app/view/admin/tickets.php:36
2084
+ msgid "Ticketing"
2085
+ msgstr ""
2086
+
2087
+ #: app/view/admin/tickets.php:37
2088
+ msgid "Ticketing<sup>beta</sup>"
2089
+ msgstr ""
2090
+
2091
+ #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
+ msgid "Time.ly Ticketing<sup>beta</sup>"
2093
+ msgstr ""
2094
+
2095
+ #: app/view/admin/settings.php:98
2096
+ msgctxt "meta box"
2097
+ msgid "Timely"
2098
+ msgstr "Timely"
2099
+
2100
+ #: app/view/admin/settings.php:140
2101
+ msgid "Viewing Events"
2102
+ msgstr "Se begivenheder"
2103
+
2104
+ #: app/view/admin/settings.php:143
2105
+ msgid "Adding/Editing Events"
2106
+ msgstr "Tilføj/redigér begivenheder"
2107
+
2108
+ #: app/view/admin/settings.php:146
2109
+ msgid "Advanced"
2110
+ msgstr "Avanceret"
2111
+
2112
+ #: app/view/admin/settings.php:148
2113
+ msgid "Advanced Settings"
2114
+ msgstr "Avancerede indstillinger"
2115
+
2116
+ #: app/view/admin/settings.php:149
2117
+ msgid "Shortcodes"
2118
+ msgstr "Genvejskoder"
2119
+
2120
+ #: app/view/admin/settings.php:150
2121
+ msgid "Email Templates"
2122
+ msgstr "E-mailskabeloner"
2123
+
2124
+ #: app/view/admin/settings.php:151
2125
+ msgid "External Services"
2126
+ msgstr "Eksterne tjenester"
2127
+
2128
+ #: app/view/admin/settings.php:152
2129
+ msgid "Cache Report"
2130
+ msgstr "Cache-rapport"
2131
+
2132
+ #: app/view/admin/settings.php:171
2133
+ msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
+ msgstr ""
2135
+
2136
+ #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
+ #: public/admin/box_ask_customer_review.php:112
2138
+ #: public/admin/box_ask_customer_review.php:126
2139
+ #: public/admin/box_ask_customer_review.php:140
2140
+ #: public/admin/box_ask_customer_review.php:158
2141
+ #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
+ msgid "This field is required."
2143
+ msgstr ""
2144
+
2145
+ #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
+ msgid "Register"
2147
+ msgstr "Registrer"
2148
+
2149
+ #: app/view/admin/settings.php:184
2150
+ msgid "Sign in"
2151
+ msgstr ""
2152
+
2153
+ #: app/view/admin/settings.php:185
2154
+ msgid "You are successfully signed in to <b>Timely Network</b>."
2155
+ msgstr ""
2156
+
2157
+ #: app/view/admin/settings.php:186
2158
+ msgid "Sign out"
2159
+ msgstr ""
2160
+
2161
+ #: app/view/admin/settings.php:187
2162
+ msgid "Hide form"
2163
+ msgstr ""
2164
+
2165
+ #: app/view/admin/settings.php:188
2166
+ msgid "Show form"
2167
+ msgstr ""
2168
+
2169
+ #: app/view/admin/settings.php:189
2170
+ msgid "Full Name:"
2171
+ msgstr ""
2172
+
2173
+ #: app/view/admin/settings.php:190
2174
+ msgid "Email:"
2175
+ msgstr "Email:"
2176
+
2177
+ #: app/view/admin/settings.php:191
2178
+ msgid "Password:"
2179
+ msgstr ""
2180
+
2181
+ #: app/view/admin/settings.php:192
2182
+ msgid "Confirm Password:"
2183
+ msgstr ""
2184
+
2185
+ #: app/view/admin/get-repeat-box.php:483
2186
+ msgid "fourth"
2187
+ msgstr "fjerde"
2188
+
2189
+ #: app/view/admin/get-repeat-box.php:495
2190
+ msgid "Sunday"
2191
+ msgstr "Søndag"
2192
+
2193
+ #: app/view/admin/get-repeat-box.php:496
2194
+ msgid "Monday"
2195
+ msgstr "Mandag"
2196
+
2197
+ #: app/view/admin/get-repeat-box.php:497
2198
+ msgid "Tuesday"
2199
+ msgstr "Tirsdag"
2200
+
2201
+ #: app/view/admin/get-repeat-box.php:498
2202
+ msgid "Wednesday"
2203
+ msgstr "Onsdag"
2204
+
2205
+ #: app/view/admin/get-repeat-box.php:499
2206
+ msgid "Thursday"
2207
+ msgstr "Torsdag"
2208
+
2209
+ #: app/view/admin/get-repeat-box.php:500
2210
+ msgid "Friday"
2211
+ msgstr "Fredag"
2212
+
2213
+ #: app/view/admin/get-repeat-box.php:501
2214
+ msgid "Saturday"
2215
+ msgstr "Lørdag"
2216
+
2217
+ #: app/view/admin/get-repeat-box.php:503
2218
+ msgid "day"
2219
+ msgstr "dag"
2220
+
2221
+ #: app/view/admin/get-repeat-box.php:504
2222
+ msgid "weekday"
2223
+ msgstr "ugedag"
2224
+
2225
+ #: app/view/admin/get-repeat-box.php:505
2226
+ msgid "weekend day"
2227
+ msgstr "dag i weekenden"
2228
+
2229
+ #: app/view/admin/get-repeat-box.php:571
2230
+ msgid "year(s)"
2231
+ msgstr "år"
2232
+
2233
+ #: app/view/admin/nav.php:22
2234
+ msgid "<a href=\"%s\">Settings</a>"
2235
+ msgstr "<a href=\"%s\">Indstillinger</a>"
2236
+
2237
+ #: app/view/admin/nav.php:28
2238
+ msgid "<a href=\"%s\">Check for updates</a>"
2239
+ msgstr ""
2240
+
2241
+ #: app/view/admin/organize.php:100
2242
+ msgid "Organize Events"
2243
+ msgstr "Organiser begivenheder"
2244
+
2245
+ #: app/view/admin/settings.php:30
2246
+ msgid "All-in-One Event Calendar: Settings"
2247
+ msgstr "All-in-One Event Calendar: Indstillinger"
2248
+
2249
+ #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
+ #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
+ msgid "Settings"
2252
+ msgstr "Indstillinger"
2253
+
2254
+ #: app/view/admin/settings.php:89
2255
+ msgctxt "meta box"
2256
+ msgid "General Settings"
2257
+ msgstr "Generelle indstillinger"
2258
+
2259
+ #: app/view/admin/get-repeat-box.php:480
2260
+ msgid "first"
2261
+ msgstr "første"
2262
+
2263
+ #: app/view/admin/get-repeat-box.php:481
2264
+ msgid "second"
2265
+ msgstr "anden"
2266
+
2267
+ #: app/view/admin/get-repeat-box.php:482
2268
+ msgid "third"
2269
+ msgstr "tredie"
2270
+
2271
+ #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
+ msgid "Import Feeds"
2273
+ msgstr ""
2274
+
2275
+ #: app/view/admin/calendar-feeds.php:48
2276
+ msgctxt "meta box"
2277
+ msgid "Feed Subscriptions"
2278
+ msgstr "Feed-abonnementer"
2279
+
2280
+ #: app/view/admin/calendar-feeds.php:65
2281
+ msgid "All-in-One Event Calendar: Import Feeds"
2282
+ msgstr ""
2283
+
2284
+ #: app/view/admin/event-category.php:30
2285
+ msgid "Color"
2286
+ msgstr "Farve"
2287
+
2288
+ #: app/view/admin/event-category.php:32
2289
+ msgid "Image"
2290
+ msgstr "Billede"
2291
+
2292
+ #: app/view/admin/event-category.php:155
2293
+ msgid "Category Color"
2294
+ msgstr "Kategorifarve"
2295
+
2296
+ #: app/view/admin/event-category.php:156
2297
+ msgid "Events in this category will be identified by this color"
2298
+ msgstr "Begivenheder i denne kategori kendes på denne farve"
2299
+
2300
+ #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
+ msgid "Category Image"
2302
+ msgstr "Kategoribillede"
2303
+
2304
+ #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
+ msgid "Add Image"
2306
+ msgstr "Tilføj billede"
2307
+
2308
+ #: app/view/admin/event-category.php:195
2309
+ msgid "Remove Image"
2310
+ msgstr "Fjern billede"
2311
+
2312
+ #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
+ msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
+ msgstr "Tilknyt et valgfrit billede til kategorien. Anbefalet størrelse: kvadrat, minimum 400&times;400 pixels."
2315
+
2316
+ #: app/view/admin/get-repeat-box.php:94
2317
+ msgid "times"
2318
+ msgstr "gange"
2319
+
2320
+ #: app/view/admin/get-repeat-box.php:164
2321
+ msgid "Recurrence rule cannot be empty."
2322
+ msgstr "Regler for gentagelse må ikke være tomt."
2323
+
2324
+ #: app/view/admin/get-repeat-box.php:182
2325
+ msgid "Recurrence rule was not provided."
2326
+ msgstr "Gentagelsesregler blev ikke angivet."
2327
+
2328
+ #: app/view/admin/get-repeat-box.php:209
2329
+ msgid "Never"
2330
+ msgstr "Aldrig"
2331
+
2332
+ #: app/view/admin/get-repeat-box.php:210
2333
+ msgid "After"
2334
+ msgstr "Efter"
2335
+
2336
+ #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
+ msgid "On date"
2338
+ msgstr "På datoen"
2339
+
2340
+ #: app/view/admin/get-repeat-box.php:247
2341
+ msgid "day(s)"
2342
+ msgstr "dag(e)"
2343
+
2344
+ #: app/view/admin/get-repeat-box.php:330
2345
+ msgid "week(s)"
2346
+ msgstr "uge(r)"
2347
+
2348
+ #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
+ #: lib/recurrence/rule.php:298
2350
+ msgid "last"
2351
+ msgstr "sidste"
2352
+
2353
+ #: app/view/admin/get-repeat-box.php:426
2354
+ msgid "month(s)"
2355
+ msgstr "måned(er)"
2356
+
2357
+ #: app/model/settings.php:929
2358
+ msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
+ msgstr "<strong>Link til CSS</strong> i <code>&lt;head&gt;</code> delen (html) hvis filcaching ikke er muligt."
2360
+
2361
+ #: app/model/settings.php:932
2362
+ msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
+ msgstr "Benyt denne indstilling hvis filcaching ikke er muligt, og du foretrækker at hente css med et link i stedet for skrevet inline."
2364
+
2365
+ #: app/model/settings.php:944
2366
+ msgid "Current <strong>robots.txt</strong> on this site"
2367
+ msgstr "Nuværende <strong>robots.txt</strong> for denne hjemmeside"
2368
+
2369
+ #: app/model/settings.php:948
2370
+ msgid ""
2371
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
+ "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
+ "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
+ "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
+ "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
+ msgstr ""
2377
+ "Robot Exclusion Standard, også kendt som Robots Exclusion Protocol eller\n"
2378
+ "→\t→\t→\t→\t→\t→\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2379
+ "→\t→\t→\t→\t→\t→\tprotokol, er en konvention for samarbejdet med web crawlers og andre typer web robotter\n"
2380
+ "→\t→\t→\t→\t→\t→\tom adgang til hele eller dele af en webside der ellers er offentligt tilgængelig.\n"
2381
+ "→\t→\t→\t→\t→\t→\tDu kan ændre dette manuelt ved at redigere <code>robots.txt</code> i roden af dit WordPress bibliotek."
2382
+
2383
+ #: app/model/settings.php:965
2384
+ msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2385
+ msgstr "<strong>Udgiv, markedsfør og del mine begivenheder</strong> markeret som offentlige på Timelys netværk. (<a href=\"%s\" target=\"_blank\">Lær mere &#187;</a>)"
2386
+
2387
+ #: app/model/settings.php:988
2388
+ msgid "Templates cache improves site performance"
2389
+ msgstr "Caching af skabeloner forbedrer ydeevnen"
2390
+
2391
+ #: app/model/settings.php:1001
2392
+ msgid "Display events in <strong>calendar time zone</strong>"
2393
+ msgstr ""
2394
+
2395
+ #: app/model/settings.php:1004
2396
+ msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
+ msgstr ""
2398
+
2399
+ #: app/view/admin/add-new-event.php:26
2400
+ msgid "Event Details"
2401
+ msgstr "Begivenhedsdetaljer"
2402
+
2403
+ #: app/view/admin/add-new-event.php:423
2404
+ msgid "Set banner image"
2405
+ msgstr "Indsæt bannerbillede"
2406
+
2407
+ #: app/view/admin/add-new-event.php:424
2408
+ msgid "Remove banner image"
2409
+ msgstr "Fjerne bannerbillede"
2410
+
2411
+ #: app/view/admin/add-ons.php:68
2412
+ msgid "Add-ons for All In One Event Calendar"
2413
+ msgstr "Tilføjelser til All In One Event Calendar"
2414
+
2415
+ #: app/view/admin/add-ons.php:71
2416
+ msgid "Browse All Extensions"
2417
+ msgstr "Gennemse alle udvidelser"
2418
+
2419
+ #: app/view/admin/add-ons.php:74
2420
+ msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
+ msgstr "Disse tilføjelser giver adgang til flere funktioner i All-in-One Event Calendar."
2422
+
2423
+ #: app/view/admin/add-ons.php:77
2424
+ msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
+ msgstr "Der opstod en fejl i modtagelsen af listen med udvidelser fra serveren. Prøv igen senere."
2426
+
2427
+ #: app/view/admin/all-events.php:16
2428
+ msgid "Author"
2429
+ msgstr "Forfatter"
2430
+
2431
+ #: app/view/admin/all-events.php:17
2432
+ msgid "Post Date"
2433
+ msgstr "Udgivelsesdato"
2434
+
2435
+ #: app/view/admin/all-events.php:18
2436
+ msgid "Event date/time"
2437
+ msgstr "Dato/tid for begivenhed"
2438
+
2439
+ #: app/view/admin/all-events.php:22
2440
+ msgid "Ticket Types"
2441
+ msgstr ""
2442
+
2443
+ #: app/view/admin/all-events.php:134
2444
+ msgid "Show All "
2445
+ msgstr "Vis alle "
2446
+
2447
+ #: app/view/admin/all-events.php:147
2448
+ msgid "Show All Authors"
2449
+ msgstr ""
2450
+
2451
+ #: app/model/settings.php:746
2452
+ msgid "Strict compatibility content filtering"
2453
+ msgstr "Kompatibilitetsafhængig indholdssortering "
2454
+
2455
+ #: app/model/settings.php:758
2456
+ msgid " <strong>Hide featured image</strong> from event details page"
2457
+ msgstr "<strong>Skjul indlægsbillede</strong> på siden med detaljer om begivenheden"
2458
+
2459
+ #: app/model/settings.php:761
2460
+ msgid "Select this option if your theme already displays each post's featured image."
2461
+ msgstr "Vælg denne indstilling hvis dit tema allerede viser hvert indlægs billede."
2462
+
2463
+ #: app/model/settings.php:772
2464
+ msgid "Input dates in this format"
2465
+ msgstr "Angiv data i dette format"
2466
+
2467
+ #: app/model/settings.php:777
2468
+ msgid "Default (d/m/yyyy)"
2469
+ msgstr "Standard (d/m/yyyy)"
2470
+
2471
+ #: app/model/settings.php:781
2472
+ msgid "US (m/d/yyyy)"
2473
+ msgstr "US (m/d/yyyy)"
2474
+
2475
+ #: app/model/settings.php:785
2476
+ msgid "ISO 8601 (yyyy-m-d)"
2477
+ msgstr "ISO 8601 (yyyy-m-d)"
2478
+
2479
+ #: app/model/settings.php:789
2480
+ msgid "Dotted (m.d.yyyy)"
2481
+ msgstr "Dotted (m.d.yyyy)"
2482
+
2483
+ #: app/model/settings.php:801
2484
+ msgid " Use <strong>24h time</strong> in time pickers"
2485
+ msgstr "Brug <strong>24 timers-format</strong> i tidsvælgeren"
2486
+
2487
+ #: app/model/settings.php:812
2488
+ msgid "<strong>Disable address autocomplete</strong> function"
2489
+ msgstr "<strong>Slå autoudfyld fra</strong>"
2490
+
2491
+ #: app/model/settings.php:823
2492
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2493
+ msgstr "Benyt den konfigurerede <strong>region</strong> (WordPress-lokalisering) til at påvirke funktionen autofuldførelse af adrresser (fx på dansk vejnavn og nr.)"
2494
+
2495
+ #: app/model/settings.php:839
2496
+ msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2497
+ msgstr "Vis den tidligere <strong>Indsend din begivenhed</strong>-knap over kalenderen for brugere med særlige rettigheder."
2498
+
2499
+ #: app/model/settings.php:842
2500
+ msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2501
+ msgstr "Installer <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> til <strong>Indsend din begivenhedsformular</strong> i frontend."
2502
+
2503
+ #: app/model/settings.php:863
2504
+ msgid "Move calendar into this DOM element"
2505
+ msgstr "Flyt kalenderen til dette DOM-element"
2506
+
2507
+ #: app/model/settings.php:865
2508
+ msgid ""
2509
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2510
+ "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2511
+ "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2512
+ "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2513
+ "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2514
+ "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2515
+ "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2516
+ "\t\t\t\t\t\tby the calendar."
2517
+ msgstr ""
2518
+ "Valgfrit. Benyt denne JavaScript-baserede genvejskode for at placere\n"
2519
+ "→\t→\t→\t→\t→\t→\tkalenderen i et DOM-element som ikke er det sædvanlige indholdselement på siden,\n"
2520
+ "→\t→\t→\t→\t→\t→\thvis du ikke er i stand til at oprette en passende sideskabelon\n"
2521
+ "→\t→\t→\t→\t→\t→\t for kalendersiden. For at gøre dette skal du indsætte en\n"
2522
+ "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2523
+ "→\t→\t→\t→\t→\t→\tjQuery selector</a>, som peger på et enkelt DOM-element.\n"
2524
+ "→\t→\t→\t→\t→\t→\tEnhver eksisterende markering som befinder sig indenfor målet, vil blive erstattet\n"
2525
+ "→\t→\t→\t→\t→\t→\taf kalenderen."
2526
+
2527
+ #: app/model/settings.php:884
2528
+ msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2529
+ msgstr "<strong>Ignorer <tt>in_the_loop()</tt>-tjek </strong> som beskytter mod duplikerede visninger af kalenderen"
2530
+
2531
+ #: app/model/settings.php:887
2532
+ msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2533
+ msgstr "Prøv at aktivere denne indstilling hvis din kalender ikke vises på kalendersiden. Den er nødvendig for kompatibilitet med et mindre antal temaer som kalder <tt>the_content()</tt> udenfor The Loop. Ellers lad den være umarkeret."
2534
+
2535
+ #: app/model/settings.php:899
2536
+ msgid "Disable <strong>gzip</strong> compression."
2537
+ msgstr "Deaktiver <strong>gzip</strong>-komprimering."
2538
+
2539
+ #: app/model/settings.php:902
2540
+ msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2541
+ msgstr "Benyt denne indstilling hvis kalenderen ikke svarer. <a href=\"http://support.time.ly/disable-gzip-compression/\">Læs mere</a> om emnet her. (Fra version 2.1 og frem er gzip som standard deaktiveret for maksimal kompatibilitet.)"
2542
+
2543
+ #: app/model/settings.php:914
2544
+ msgid "Use frontend rendering."
2545
+ msgstr "Benyt rendering fra frontend."
2546
+
2547
+ #: app/model/settings.php:917
2548
+ msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
+ msgstr "Opretter kalendervisninger på klientside i stedet for på serveren; det kan forbedre hastigheden."
2550
+
2551
+ #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
+ msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
+ msgstr "For at rydde hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> og klik på det valgte."
2554
+
2555
+ #: app/model/settings.php:508
2556
+ msgid "Default calendar start date (optional)"
2557
+ msgstr "Standard startdato for kalender (valgfri)"
2558
+
2559
+ #: app/model/settings.php:519
2560
+ msgid "Agenda pages show at most"
2561
+ msgstr "Listesider viser højst"
2562
+
2563
+ #: app/model/settings.php:532
2564
+ msgid "Week/Day view starts at"
2565
+ msgstr "Uge- /Dagsvisning begynder på"
2566
+
2567
+ #: app/model/settings.php:545
2568
+ msgid "Week/Day view ends at"
2569
+ msgstr "Uge-/Dagsvisning ender på"
2570
+
2571
+ #: app/model/settings.php:558
2572
+ msgid "<strong>Word-wrap event stubs</strong> in Month view"
2573
+ msgstr "<strong>Orddeling begivenhed stub</strong> i Månedsvisning"
2574
+
2575
+ #: app/model/settings.php:561
2576
+ msgid "Only applies to events that span a single day."
2577
+ msgstr "Gælder kun begivenheder der strækker sig over en enkelt dag."
2578
+
2579
+ #: app/model/settings.php:573
2580
+ msgid ""
2581
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2582
+ "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2583
+ "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2584
+ "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2585
+ "\t\t\t\t\t\tfrom last day shown</strong>"
2586
+ msgstr ""
2587
+ "I <span class=\"ai1ec-tooltip-toggle\"\n"
2588
+ "→\t→\t→\t→\t→\t→\tdata-original-title=\"Disse inkluderer listevisning,\n"
2589
+ "→\t→\t→\t→\t→\t→\tKommende begivenheder-widget og nogle udvidede visninger.\">\n"
2590
+ "→\t→\t→\t→\t→\t→\tListevisninger</span>, <strong>inkluder alle begivenheder\n"
2591
+ "→\t→\t→\t→\t→\t→\tfra sidst viste dag</strong>"
2592
+
2593
+ #: app/model/settings.php:589
2594
+ msgid "Keep all events <strong>expanded</strong> in Agenda view"
2595
+ msgstr "Hold alle begivenheder <strong>udvidet</strong> i listevisning"
2596
+
2597
+ #: app/model/settings.php:601
2598
+ msgid "<strong>Show year</strong> in calendar date labels"
2599
+ msgstr "<strong>Vis år</strong> i kalenderens datomærkater"
2600
+
2601
+ #: app/model/settings.php:613
2602
+ msgid "<strong>Show location in event titles</strong> in calendar views"
2603
+ msgstr "<strong>Vis sted i titlen</strong> i kalender billedet"
2604
+
2605
+ #: app/model/settings.php:625
2606
+ msgid "<strong>Exclude</strong> events from search results"
2607
+ msgstr "<strong>Udelad</strong> begivenheder fra søgeresultater"
2608
+
2609
+ #: app/model/settings.php:637
2610
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2611
+ msgstr "Skjul <strong>Abonner</strong>/<strong>Tilføj i kalender</strong>-knapper i kalenderen og visning af enkeltbegivenheder"
2612
+
2613
+ #: app/model/settings.php:649
2614
+ msgid "Hide <strong>Get a Timely Calendar</strong> button"
2615
+ msgstr "Skjul <strong>Get a Timely Calendar</strong> knappen"
2616
+
2617
+ #: app/model/settings.php:661
2618
+ msgid " Hide <strong>Google Maps</strong> until clicked"
2619
+ msgstr "Skjul <strong>Google Maps</strong> indtil der klikkes"
2620
+
2621
+ #: app/model/settings.php:673
2622
+ msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2623
+ msgstr "<strong>Fastgør sorteringsmenu</strong> til toppen af vinduet når dette ellers vil forsvinde ved scrolling"
2624
+
2625
+ #: app/model/settings.php:676
2626
+ msgid "Only applies to first visible calendar found on the page."
2627
+ msgstr "Gælder kun den første synlige kalender på siden."
2628
+
2629
+ #: app/model/settings.php:688
2630
+ msgid "Offset affixed filter bar vertically by"
2631
+ msgstr "Forskyd den fastgjorte sorteringslinje lodret med"
2632
+
2633
+ #: app/model/settings.php:703
2634
+ msgid "Wide screens only (&#8805; 1200px)"
2635
+ msgstr "Kun widescreens (&#8805; 1200px)"
2636
+
2637
+ #: app/model/settings.php:718
2638
+ msgid "Tablets only (< 980px)"
2639
+ msgstr "Kun tablets (< 980px)"
2640
+
2641
+ #: app/model/settings.php:733
2642
+ msgid "Phones only (< 768px)"
2643
+ msgstr "Kun telefoner (< 768px)"
2644
+
2645
+ #: app/model/api.php:456
2646
+ msgid "Not available"
2647
+ msgstr ""
2648
+
2649
+ #: app/model/api.php:659
2650
+ msgid "%s.<br/>Detail: %s."
2651
+ msgstr ""
2652
+
2653
+ #: app/model/api.php:664
2654
+ msgid "API URL: %s.<br/>Detail: %s - %s"
2655
+ msgstr ""
2656
+
2657
+ #: app/model/api.php:672
2658
+ msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2659
+ msgstr ""
2660
+
2661
+ #: app/model/api.php:679
2662
+ msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2663
+ msgstr ""
2664
+
2665
+ #: app/model/event/parent.php:186
2666
+ msgid "Edit &#8220;%s&#8221;"
2667
+ msgstr "Rediger &#8220;%s&#8221;"
2668
+
2669
+ #: app/model/event/parent.php:193
2670
+ msgid "Base Event"
2671
+ msgstr "Basis begivenhed"
2672
+
2673
+ #: app/model/review.php:169
2674
+ msgid "Feedback provided by user"
2675
+ msgstr ""
2676
+
2677
+ #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2678
+ msgid "Name"
2679
+ msgstr "Navn"
2680
+
2681
+ #: app/model/review.php:173
2682
+ msgid "E-mail"
2683
+ msgstr ""
2684
+
2685
+ #: app/model/review.php:175
2686
+ msgid "Site URL"
2687
+ msgstr ""
2688
+
2689
+ #: app/model/review.php:177
2690
+ msgid "Message"
2691
+ msgstr ""
2692
+
2693
+ #: app/model/settings.php:401
2694
+ #: lib/html/element/setting/calendar-page-selector.php:50
2695
+ msgid "Calendar page"
2696
+ msgstr "Kalenderside"
2697
+
2698
+ #: app/model/settings.php:411
2699
+ msgid "Week starts on"
2700
+ msgstr "Ugen begynder på en"
2701
+
2702
+ #: app/model/settings.php:424
2703
+ msgid "Available views"
2704
+ msgstr "Mulige visninger"
2705
+
2706
+ #: app/model/settings.php:432
2707
+ msgid "Agenda"
2708
+ msgid_plural "Agenda"
2709
+ msgstr[0] "Liste"
2710
+ msgstr[1] "Lister"
2711
+
2712
+ #: app/model/settings.php:443
2713
+ msgid "Day"
2714
+ msgid_plural "Day"
2715
+ msgstr[0] "Dag"
2716
+ msgstr[1] "Dage"
2717
+
2718
+ #: app/model/settings.php:454
2719
+ msgid "Month"
2720
+ msgid_plural "Month"
2721
+ msgstr[0] "Måned"
2722
+ msgstr[1] "Måneder"
2723
+
2724
+ #: app/model/settings.php:465
2725
+ msgid "Week"
2726
+ msgid_plural "Week"
2727
+ msgstr[0] "Uge"
2728
+ msgstr[1] "Uger"
2729
+
2730
+ #: app/model/settings.php:479
2731
+ msgid "Timezone"
2732
+ msgstr "Tidszone"
2733
+
2734
+ #: app/model/settings.php:492
2735
+ msgid "Preselected calendar filters"
2736
+ msgstr "Forhåndsvalgte kalendersorteringer"
2737
+
2738
+ #: app/controller/javascript.php:509
2739
+ msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2740
+ msgstr "Noget gik galt under opsamling af begivenheder.<br>Status for forespørgslen er: %STATUS% <br>Fejlmeddelelsen var: %ERROR%"
2741
+
2742
+ #: app/controller/javascript.php:516
2743
+ msgid "The end date can't be earlier than the start date."
2744
+ msgstr "Slutdato kan ikke være tidligere end startdato."
2745
+
2746
+ #: app/controller/javascript.php:517
2747
+ msgid "For week and day view, you must select an interval of at least 6 hours."
2748
+ msgstr "Til uge- eller dagvisning skal du vælge et interval på mindst 6 timer."
2749
+
2750
+ #: app/model/api.php:40
2751
+ msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2752
+ msgstr ""
2753
+
2754
+ #: app/model/api.php:41
2755
+ msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2756
+ msgstr ""
2757
+
2758
+ #: app/model/api.php:42
2759
+ msgid "We were unable to Sign you Up for Time.ly Ticketing"
2760
+ msgstr ""
2761
+
2762
+ #: app/model/api.php:43
2763
+ msgid "We were unable to Sign you In for Time.ly Ticketing"
2764
+ msgstr ""
2765
+
2766
+ #: app/model/api.php:44
2767
+ msgid "We were unable to create the Event on Time.ly Ticketing"
2768
+ msgstr ""
2769
+
2770
+ #: app/model/api.php:45
2771
+ msgid "We were unable to update the Event on Time.ly Ticketing"
2772
+ msgstr ""
2773
+
2774
+ #: app/model/api.php:46
2775
+ msgid "The event has the option Tickets selected but any ticket was added."
2776
+ msgstr ""
2777
+
2778
+ #: app/model/api.php:47
2779
+ msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2780
+ msgstr ""
2781
+
2782
+ #: app/model/api.php:48
2783
+ msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2784
+ msgstr ""
2785
+
2786
+ #: app/model/api.php:49
2787
+ msgid "Payment preferences were not saved."
2788
+ msgstr ""
2789
+
2790
+ #: app/model/api.php:50
2791
+ msgid "Payment preferences were saved."
2792
+ msgstr ""
2793
+
2794
+ #: app/model/api.php:51
2795
+ msgid "Event not found inside the database."
2796
+ msgstr ""
2797
+
2798
+ #: app/model/api.php:52
2799
+ msgid "We were unable to get the Sales information from Time.ly Ticketing"
2800
+ msgstr ""
2801
+
2802
+ #: app/model/api.php:446
2803
+ msgid "Past Event"
2804
+ msgstr ""
2805
+
2806
+ #: app/model/api.php:448
2807
+ msgid "Event closed"
2808
+ msgstr ""
2809
+
2810
+ #: app/model/api.php:450
2811
+ msgid "Not available yet"
2812
+ msgstr ""
2813
+
2814
+ #: app/model/api.php:452
2815
+ msgid "Sale closed"
2816
+ msgstr ""
2817
+
2818
+ #: app/model/api.php:454
2819
+ msgid "Sold out"
2820
+ msgstr ""
2821
+
2822
+ #: app/controller/javascript.php:484
2823
+ msgid "Report"
2824
+ msgstr ""
2825
+
2826
+ #: app/controller/javascript.php:485
2827
+ msgid "Sale dates"
2828
+ msgstr ""
2829
+
2830
+ #: app/controller/javascript.php:486
2831
+ msgid "Limits"
2832
+ msgstr ""
2833
+
2834
+ #: app/controller/javascript.php:487
2835
+ msgid "Actions"
2836
+ msgstr ""
2837
+
2838
+ #: app/controller/javascript.php:488
2839
+ msgid "Sold:"
2840
+ msgstr ""
2841
+
2842
+ #: app/controller/javascript.php:489
2843
+ msgid "Left:"
2844
+ msgstr ""
2845
+
2846
+ #: app/controller/javascript.php:490
2847
+ msgid "Start:"
2848
+ msgstr ""
2849
+
2850
+ #: app/controller/javascript.php:491
2851
+ msgid "End:"
2852
+ msgstr ""
2853
+
2854
+ #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2855
+ msgid "Min:"
2856
+ msgstr ""
2857
+
2858
+ #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2859
+ msgid "Max:"
2860
+ msgstr ""
2861
+
2862
+ #: app/controller/javascript.php:494
2863
+ msgid "Attendees"
2864
+ msgstr ""
2865
+
2866
+ #: app/controller/javascript.php:495
2867
+ msgid "Hide Attendees"
2868
+ msgstr ""
2869
+
2870
+ #: app/controller/javascript.php:496
2871
+ msgid "Attendees List"
2872
+ msgstr ""
2873
+
2874
+ #: app/controller/javascript.php:497
2875
+ msgid "Guest Name"
2876
+ msgstr ""
2877
+
2878
+ #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2879
+ msgid "Status"
2880
+ msgstr ""
2881
+
2882
+ #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2883
+ #: app/view/event/ticket.php:71
2884
+ msgid "Email"
2885
+ msgstr "E-mail"
2886
+
2887
+ #: app/controller/javascript.php:500
2888
+ msgid "No attendees for this ticket type."
2889
+ msgstr ""
2890
+
2891
+ #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2892
+ #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2893
+ msgid "Edit"
2894
+ msgstr "Rediger"
2895
+
2896
+ #: app/controller/javascript.php:502
2897
+ msgid "Code"
2898
+ msgstr ""
2899
+
2900
+ #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2901
+ msgid "Unlimited"
2902
+ msgstr ""
2903
+
2904
+ #: app/controller/javascript.php:506
2905
+ msgid "Your message has been sent. Thank you for your feedback."
2906
+ msgstr ""
2907
+
2908
+ #: app/controller/javascript.php:507
2909
+ msgid "Your message has not been sent. Please try again or contact us."
2910
+ msgstr ""
2911
+
2912
+ #: app/controller/javascript.php:405
2913
+ msgid "Please enter a valid iCalendar URL."
2914
+ msgstr "Indsæt venligst en gældende iCalendar webadresse (URL)."
2915
+
2916
+ #: app/controller/javascript.php:408
2917
+ msgid "Please enter a valid email address."
2918
+ msgstr "Angiv venligst en gyldig e-mailadresse."
2919
+
2920
+ #: app/controller/javascript.php:410
2921
+ msgid "Choose Image"
2922
+ msgstr "Vælg billede"
2923
+
2924
+ #: app/controller/javascript.php:413
2925
+ msgid "The value you have entered is not a valid CSS length."
2926
+ msgstr "Den værdi du har angivet, har ikke en gyldig længde i CSS"
2927
+
2928
+ #: app/controller/javascript.php:416
2929
+ msgid "Are you sure you want to reset your theme options to their default values?"
2930
+ msgstr "Er du sikker på at du vil sætte dine temaindstillinger tilbage til standardværdier?"
2931
+
2932
+ #: app/controller/javascript.php:419
2933
+ msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2934
+ msgstr "Angiv en gyldig længdegrad. En gyldig længdegrad ligger mellem +90 og -90."
2935
+
2936
+ #: app/controller/javascript.php:422
2937
+ msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2938
+ msgstr "Angiv en gyldig breddegrad. En gyldig breddegrad ligger mellem +180 og -180."
2939
+
2940
+ #: app/controller/javascript.php:425
2941
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2942
+ msgstr "Når checkboksen \"Angiv koordinater\" er markeret, er \"længdegrad\" et påkrævet felt."
2943
+
2944
+ #: app/controller/javascript.php:428
2945
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2946
+ msgstr "Når checkboksen \"Angiv koordinater\" er markeret, er \"breddegrad\" et påkrævet felt."
2947
+
2948
+ #: app/controller/javascript.php:431
2949
+ msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2950
+ msgstr ""
2951
+
2952
+ #: app/controller/javascript.php:434
2953
+ msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2954
+ msgstr "Den webadresse du har angivet under <b>Begivenhedens pris og billetter</b> &gt; <b>Køb billetter webadresse</b>, ser ud til at være ugyldig."
2955
+
2956
+ #: app/controller/javascript.php:437
2957
+ msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2958
+ msgstr "Husk at webadresser skal starte med enten \"http://\" eller \"https://\"."
2959
+
2960
+ #: app/controller/javascript.php:440
2961
+ msgid "Loading&hellip;"
2962
+ msgstr "Henter&hellip;"
2963
+
2964
+ #: app/controller/javascript.php:443
2965
+ msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2966
+ msgstr ""
2967
+
2968
+ #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
+ msgid "Preview:"
2970
+ msgstr "Forhåndsvisning:"
2971
+
2972
+ #: app/controller/javascript.php:474
2973
+ msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2974
+ msgstr "Henter forhåndsvisning&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2975
+
2976
+ #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2977
+ msgid "Ticketing Details"
2978
+ msgstr ""
2979
+
2980
+ #: app/controller/javascript.php:480
2981
+ msgid "Hide Ticketing Details"
2982
+ msgstr ""
2983
+
2984
+ #: app/controller/javascript.php:481
2985
+ msgid "Loading tickets details..."
2986
+ msgstr ""
2987
+
2988
+ #: app/controller/javascript.php:482
2989
+ msgid "Type and price"
2990
+ msgstr ""
2991
+
2992
+ #: app/controller/javascript.php:483
2993
+ msgid "Info"
2994
+ msgstr ""
2995
+
2996
+ #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2997
+ #: app/view/admin/add-ons.php:27
2998
+ msgid "Add-ons"
2999
+ msgstr "Tilføjelser"
3000
+
3001
+ #: app/controller/front.php:343
3002
+ msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3003
+ msgstr "Dit aktive kalendertema kunne ikke forberedes. Standardtemaet er blevet aktiveret i stedet. Besøg %s for at prøve at genaktivere dit tema manuelt."
3004
+
3005
+ #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3006
+ #: app/view/admin/theme-switching.php:55
3007
+ msgid "Calendar Themes"
3008
+ msgstr "Kalendertemaer"
3009
+
3010
+ #: app/controller/front.php:990
3011
+ msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3012
+ msgstr "Det ser ud til at din database er fejlbehæftet. Sikkert fordi tidligere opdateringer er gået galt. Genskab All-In-One Event Calendar-tabeller fra en backup og prøv igen. <br>Følgende fejl blev fundet:<br>%s"
3013
+
3014
+ #: app/controller/javascript-widget.php:48
3015
+ msgid "You must choose the Calendar page before using the Super Widget"
3016
+ msgstr "Du skal vælge kalendersiden før du kan bruge Super Widget"
3017
+
3018
+ #: app/controller/javascript.php:402
3019
+ msgid "This feed is already being imported."
3020
+ msgstr "Dette feed bliver allerede importeret."
language/all-in-one-event-calendar-de.mo ADDED
Binary file
language/all-in-one-event-calendar-de.po ADDED
@@ -0,0 +1,3015 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of 2.3 in German
2
+ # This file is distributed under the same license as the 2.3 package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-01-21 20:48:02+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
+ "Project-Id-Version: 2.3\n"
12
+
13
+ #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
+ #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
+ msgid "Event background"
16
+ msgstr "Hintergrund der Veranstaltung"
17
+
18
+ #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
+ #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
+ msgid "Event time background"
21
+ msgstr "Hintergrund der Veranstaltungszeit"
22
+
23
+ #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
+ #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
+ msgid "Event text"
26
+ msgstr "Veranstaltungstext"
27
+
28
+ #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
+ #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
+ msgid "Month view date background"
31
+ msgstr "Hintergrund des Datums in Monatsansicht "
32
+
33
+ #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
+ #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
+ msgid "Week/day view now marker"
36
+ msgstr "Markierung für Woche/Tag"
37
+
38
+ #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
+ #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
+ msgid "Date label accent color"
41
+ msgstr "Akkzentfarbe der Datumsbeschriftung"
42
+
43
+ #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
+ #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
+ msgid "Date label background"
46
+ msgstr "Hintergrund der Datumsbeschriftung"
47
+
48
+ #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
+ #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
+ msgid "Date background"
51
+ msgstr "Hintergrund des Datums"
52
+
53
+ #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
+ #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
+ msgid "Today background"
56
+ msgstr "Hintergrund für heute"
57
+
58
+ #. Plugin Name of the plugin/theme
59
+ msgid "All-in-One Event Calendar by Time.ly"
60
+ msgstr "All-in-One Event Kalender von Time.ly"
61
+
62
+ #. Description of the plugin/theme
63
+ msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
+ msgstr "Ein Kalender mit Monats-,Wochen-, Tages- und Listendarstellung, mit Widget für bevorstehende Veranstaltungen, farbkodierten Kategorien, Wiederholungs- und Import-/Exportfunktion für ICS-Dateien."
65
+
66
+ #. Author of the plugin/theme
67
+ msgid "Time.ly Network Inc."
68
+ msgstr "Time.ly Network Inc."
69
+
70
+ #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
+ #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
+ msgid "List item background (active/hover)"
73
+ msgstr "Hintergrund des Listeneintrags (active/hover) "
74
+
75
+ #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
+ #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
+ msgid "Input field placeholder text"
78
+ msgstr "Eingabefeld für Platzhaltertext"
79
+
80
+ #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
+ #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
+ msgid "Today color"
83
+ msgstr "Farbe für heute"
84
+
85
+ #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
+ #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
+ msgid "All-day badge color"
88
+ msgstr "Farbe des Schildes von ganztägiger Veranstaltung"
89
+
90
+ #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
+ #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
+ msgid "Event image shadow"
93
+ msgstr "Schatten des Veranstaltungsbildes"
94
+
95
+ #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
+ #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
+ msgid "Event default color"
98
+ msgstr "Standardfarbe der Veranstaltung "
99
+
100
+ #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
+ #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
+ msgid "Event default color (hover)"
103
+ msgstr "Standardfarbe der Veranstaltungen (hover)"
104
+
105
+ #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
+ #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
+ msgid "All-day/multi-day event stub text"
108
+ msgstr "Untertext von ganz-/mehrtägiger Veranstaltung"
109
+
110
+ #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
+ #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
+ msgid "All-day/multi-day event stub text shadow"
113
+ msgstr "Schatten zu Untertext von ganz-/mehrtägiger Veranstaltung"
114
+
115
+ #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
+ #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
+ msgid "Event border"
118
+ msgstr "Rand der Veranstaltung"
119
+
120
+ #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
+ #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
+ msgid "Button text"
123
+ msgstr "Text der Schaltfläche"
124
+
125
+ #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
+ #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
+ msgid "Input field text"
128
+ msgstr "Eingabefeld für Text"
129
+
130
+ #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
+ #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
+ msgid "Input field background"
133
+ msgstr "Hintergrund des Eingabefelds"
134
+
135
+ #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
+ #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
+ msgid "Input field border"
138
+ msgstr "Rand des Eingabefelds"
139
+
140
+ #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
+ #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
+ msgid "Input field border (focus)"
143
+ msgstr "Eingabefeld Rand (focus)"
144
+
145
+ #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
+ #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
+ msgid "Input field background (disabled)"
148
+ msgstr "Eingabefeld Rand (deaktiviert)"
149
+
150
+ #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
+ #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
+ msgid "Field label"
153
+ msgstr "Feld Bezeichnung"
154
+
155
+ #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
+ #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
+ msgid "Dropdown list background"
158
+ msgstr "Hintergrund der Dropdown Liste"
159
+
160
+ #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
+ #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
+ msgid "Dropdown list border"
163
+ msgstr "Rand der Dropdown Liste"
164
+
165
+ #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
+ #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
+ msgid "List item text"
168
+ msgstr "Text des Listeneintrags"
169
+
170
+ #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
+ #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
+ msgid "List item text (active/hover)"
173
+ msgstr "Text des Listeneintrags (active/hover) "
174
+
175
+ #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
+ msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
+ msgstr "Neues Theme aktiviert. <a href=\"%s\">Seite besuchen</a>"
178
+
179
+ #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
+ msgid "Theme deleted."
181
+ msgstr "Theme gelöscht."
182
+
183
+ #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
+ msgid "Manage Themes"
185
+ msgstr "Themes verwalten"
186
+
187
+ #: public/admin/themes-install.php:40
188
+ msgctxt "theme"
189
+ msgid "Install Themes"
190
+ msgstr "Themes installieren"
191
+
192
+ #: public/admin/themes-updated.php:5
193
+ msgid "Update Calendar Themes"
194
+ msgstr "Kalender Themes aktualisieren"
195
+
196
+ #: public/admin/themes-updated.php:15
197
+ msgid "All-in-One Event Calendar Settings »"
198
+ msgstr "All-in-One Event Kalender Einstellungen »"
199
+
200
+ #: public/admin/themes.php:18
201
+ msgid "Current Calendar Theme"
202
+ msgstr "Aktuelles Kalender Theme"
203
+
204
+ #: public/admin/themes.php:21
205
+ msgid "Current theme preview"
206
+ msgstr "Aktuelle Theme Vorschau"
207
+
208
+ #: public/admin/themes.php:47
209
+ msgid "Available Calendar Themes"
210
+ msgstr "Verfügbare Kalender Themes"
211
+
212
+ #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
+ #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
+ msgid "Body background"
215
+ msgstr "Body Hintergrund"
216
+
217
+ #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
+ #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
+ msgid "Text color"
220
+ msgstr "Textfarbe"
221
+
222
+ #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
+ #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
+ msgid "Text emboss"
225
+ msgstr "Textprägung"
226
+
227
+ #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
+ #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
+ msgid "Link"
230
+ msgstr "Link"
231
+
232
+ #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
+ #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
+ msgid "Link (hover)"
235
+ msgstr "Link (hover)"
236
+
237
+ #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
+ #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
+ msgid "Base font"
240
+ msgstr "Standard Schriftart"
241
+
242
+ #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
+ #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
+ msgid "Base font size"
245
+ msgstr "Standard Schriftgröße"
246
+
247
+ #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
+ #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
+ msgid "Table background"
250
+ msgstr "Hintergrund der Tabelle"
251
+
252
+ #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
+ #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
+ msgid "Table header background"
255
+ msgstr "Hintergrund für Kopfzeile der Tabelle"
256
+
257
+ #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
+ #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
+ msgid "Table header text"
260
+ msgstr "Text der Kopfzeile der Tabelle"
261
+
262
+ #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
+ #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
+ msgid "Primary brand color"
265
+ msgstr "Primäre Farbe der Schaltfläche"
266
+
267
+ #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
+ #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
+ msgid "Button background"
270
+ msgstr "Hintergrund der Schaltfläche"
271
+
272
+ #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
+ #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
+ msgid "Button border"
275
+ msgstr "Rand der Schaltfläche"
276
+
277
+ #: public/admin/feed_row.php:104
278
+ msgid "Refreshing&#8230;"
279
+ msgstr "Aktualisiere&#8230;"
280
+
281
+ #: public/admin/feed_row.php:106
282
+ msgid "Refresh"
283
+ msgstr "Aktualisieren"
284
+
285
+ #: public/admin/feed_row.php:119
286
+ msgid "Removing&#8230;"
287
+ msgstr "Entferne&#8230;"
288
+
289
+ #: public/admin/feed_row.php:121
290
+ msgid "Remove"
291
+ msgstr "Enfernen"
292
+
293
+ #: public/admin/import.php:6
294
+ msgid "Successfully imported events:"
295
+ msgstr "Erfolgreich hinzugefügte Veranstaltungen:"
296
+
297
+ #: public/admin/plugins/ics/display_feeds.php:2
298
+ msgid ""
299
+ "Configure which other calendars your own calendar subscribes to.\n"
300
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
302
+ " imported periodically."
303
+ msgstr ""
304
+ "Hier kannst du einrichten, welche anderen Kalender dein Kalender abonniert.\n"
305
+ " Alle Kalender, die einen iCalender-Feed (.ics) bereitstellen, können hinzugefügt werden.\n"
306
+ " Trage die Feed URL(s) unten ein und die Veranstaltungen dieser Feeds werden \n"
307
+ " regelmäßig importiert."
308
+
309
+ #: public/admin/plugins/ics/display_feeds.php:14
310
+ msgid "Check for new events"
311
+ msgstr "Auf neue Veranstaltungen prüfen"
312
+
313
+ #: public/admin/plugins/ics/display_feeds.php:45
314
+ msgid "Allow comments on imported events"
315
+ msgstr "Kommentare bei importierten Veranstaltungen erlauben"
316
+
317
+ #: public/admin/plugins/ics/display_feeds.php:52
318
+ msgid "Show map on imported events"
319
+ msgstr "Karte bei importierten Veranstaltungen anzeigen "
320
+
321
+ #: public/admin/plugins/ics/display_feeds.php:59
322
+ msgid "Import any tags/categories provided by feed, in addition those selected above"
323
+ msgstr "Alle Schlagwörter/Kategorien, die durch das Feed übermittelt werden, importieren - zusätzlich zu den oben ausgewählten"
324
+
325
+ #: public/admin/plugins/ics/display_feeds.php:93
326
+ msgid "Add new subscription"
327
+ msgstr "Neues Abonnement hinzufügen"
328
+
329
+ #: public/admin/plugins/ics/display_feeds.php:96
330
+ msgid "Update subscription"
331
+ msgstr ""
332
+
333
+ #: public/admin/row_custom.php:3
334
+ msgid "Custom dates:"
335
+ msgstr ""
336
+
337
+ #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
+ #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
+ #: public/admin/row_yearly.php:3
340
+ msgid "Every"
341
+ msgstr "Jeden"
342
+
343
+ #: public/admin/row_monthly.php:16
344
+ msgid "On day of the month"
345
+ msgstr "Am Tag des Monats"
346
+
347
+ #: public/admin/row_monthly.php:23
348
+ msgid "On day of the week"
349
+ msgstr "Am Tag der Woche"
350
+
351
+ #: public/admin/row_weekly.php:12
352
+ msgctxt "Recurrence editor - weekly tab"
353
+ msgid "On"
354
+ msgstr "Am"
355
+
356
+ #: public/admin/row_yearly.php:12
357
+ msgctxt "Recurrence editor - yearly tab"
358
+ msgid "In"
359
+ msgstr "In"
360
+
361
+ #: public/admin/settings.php:19
362
+ msgid "Update Settings"
363
+ msgstr "Einstellungen aktualisieren"
364
+
365
+ #: public/admin/themes-install.php:4
366
+ msgid "The active theme is broken. Reverting to the default theme."
367
+ msgstr "Das aktive Theme ist defekt. Standard Theme wird ausgewählt."
368
+
369
+ #: public/admin/themes-install.php:13
370
+ msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
+ msgstr ""
372
+
373
+ #: public/admin/calendar_tasks.php:24
374
+ msgid "Manage Events"
375
+ msgstr "Veranstaltungen verwalten"
376
+
377
+ #: public/admin/calendar_tasks.php:27
378
+ msgid "View and edit all your events."
379
+ msgstr "Alle deine Veranstaltungen anzeigen und bearbeiten."
380
+
381
+ #: public/admin/calendar_tasks.php:39
382
+ msgid "Manage Event Categories"
383
+ msgstr "Kategorien der Veranstaltungen verwalten"
384
+
385
+ #: public/admin/calendar_tasks.php:42
386
+ msgid "Organize and color-code your events."
387
+ msgstr "Veranstaltungen organisieren und Farbkennzeichnungen hinzufügen."
388
+
389
+ #: public/admin/calendar_tasks.php:50
390
+ msgid "Choose Your Theme"
391
+ msgstr "Theme auswählen"
392
+
393
+ #: public/admin/calendar_tasks.php:53
394
+ msgid "Change the look and feel."
395
+ msgstr "\"Look and Feel\" ändern."
396
+
397
+ #: public/admin/calendar_tasks.php:63
398
+ msgid "Manage Calendar Feeds"
399
+ msgstr "Kalender Feeds verwalten"
400
+
401
+ #: public/admin/calendar_tasks.php:66
402
+ msgid "Subscribe to other calendars."
403
+ msgstr "Andere Kalender abonnieren."
404
+
405
+ #: public/admin/calendar_tasks.php:74
406
+ msgid "Edit Calendar Settings"
407
+ msgstr "Kalendereinstellungen bearbeiten"
408
+
409
+ #: public/admin/calendar_tasks.php:77
410
+ msgid "Make this calendar your own."
411
+ msgstr "Mache diesen Kalender zu deinem Eigenen."
412
+
413
+ #: public/admin/cron_freq.php:3
414
+ msgid "Hourly"
415
+ msgstr "Stündlich"
416
+
417
+ #: public/admin/cron_freq.php:6
418
+ msgid "Twice Daily"
419
+ msgstr "Zweimal täglich"
420
+
421
+ #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
+ msgid "iCalendar/.ics Feed URL:"
423
+ msgstr " URL zu iCalendar/.ics Feed:"
424
+
425
+ #: public/admin/feed_row.php:24
426
+ msgid "Event categories:"
427
+ msgstr "Kategorien der Veranstaltung:"
428
+
429
+ #: public/admin/feed_row.php:31
430
+ msgid "Tag with"
431
+ msgstr "Mit Schlagwort versehen"
432
+
433
+ #: public/admin/feed_row.php:40
434
+ msgid "Allow comments"
435
+ msgstr "Kommentare erlauben"
436
+
437
+ #: public/admin/feed_row.php:51
438
+ msgid "Show map"
439
+ msgstr "Karte anzeigen"
440
+
441
+ #: public/admin/feed_row.php:63
442
+ msgid "Keep original events categories and tags"
443
+ msgstr "Ursprüngliche Kategorien und Schlagwörter der Veranstaltungen beibehalten"
444
+
445
+ #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
+ msgid "On refresh, preserve previously imported events that are missing from the feed"
447
+ msgstr ""
448
+
449
+ #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
+ msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
+ msgstr ""
452
+
453
+ #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
+ msgid "Assign default time zone to events in UTC"
455
+ msgstr ""
456
+
457
+ #: public/admin/box_support.php:19
458
+ msgid "Get Add-ons"
459
+ msgstr "Add-ons installieren "
460
+
461
+ #: public/admin/box_support.php:27
462
+ msgid "Support"
463
+ msgstr "Support"
464
+
465
+ #: public/admin/box_support.php:35
466
+ msgid "Timely Events"
467
+ msgstr "Veranstaltungen von Timely"
468
+
469
+ #: public/admin/box_support.php:43
470
+ msgid "Timely News"
471
+ msgstr "Neuigkeiten von Timely"
472
+
473
+ #: public/admin/box_support.php:47
474
+ msgid "view all news"
475
+ msgstr "alle Neuigkeiten anzeigen"
476
+
477
+ #: public/admin/box_support.php:95
478
+ msgid "Follow @_Timely"
479
+ msgstr "@_Timely folgen"
480
+
481
+ #: public/admin/box_time_and_date.php:6
482
+ msgid "Event date and time"
483
+ msgstr "Veranstaltungsdatum und -zeit"
484
+
485
+ #: public/admin/box_time_and_date.php:26
486
+ msgid "All-day event"
487
+ msgstr "Ganztägige Veranstaltung"
488
+
489
+ #: public/admin/box_time_and_date.php:35
490
+ msgid "No end time"
491
+ msgstr "Keine Endzeit"
492
+
493
+ #: public/admin/box_time_and_date.php:42
494
+ msgid "Start date / time"
495
+ msgstr "Anfangsdatum / -zeit"
496
+
497
+ #: public/admin/box_time_and_date.php:59
498
+ msgid "End date / time"
499
+ msgstr "Enddatum / -zeit"
500
+
501
+ #: public/admin/box_time_and_date.php:76
502
+ msgid "Time zone"
503
+ msgstr "Zeitzone"
504
+
505
+ #: public/admin/box_time_and_date.php:81
506
+ msgid "Choose your time zone"
507
+ msgstr "Wähle deine Zeitzone"
508
+
509
+ #: public/admin/box_time_and_date.php:108
510
+ msgid "Repeat"
511
+ msgstr "Wiederholen"
512
+
513
+ #: public/admin/box_time_and_date.php:127
514
+ msgid "Exclude"
515
+ msgstr "Ausschliessen"
516
+
517
+ #: public/admin/box_time_and_date.php:136
518
+ msgid "Choose a rule for exclusion"
519
+ msgstr "Regel auswählen, für das Ausschliessen"
520
+
521
+ #: public/admin/calendar_tasks.php:3
522
+ msgid "Welcome"
523
+ msgstr "Willkommen"
524
+
525
+ #: public/admin/calendar_tasks.php:4
526
+ msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
+ msgstr "zum All-in-One Event Kalender von <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
+
529
+ #: public/admin/calendar_tasks.php:13
530
+ msgid "Post Your Event"
531
+ msgstr "Deine Veranstaltung veröffentlichen"
532
+
533
+ #: public/admin/calendar_tasks.php:16
534
+ msgid "Add a new event to the calendar."
535
+ msgstr "Neue Veranstaltung zum Kalender hinzufügen."
536
+
537
+ #: public/admin/box_eventbrite.php:60
538
+ msgid "Donation Based"
539
+ msgstr "Basierend auf Spenden"
540
+
541
+ #: public/admin/box_eventbrite.php:68
542
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
543
+ msgstr "Der Preis für das erste Ticket dieser Veranstaltung, wird von dem Kostenfeld oben übernommen."
544
+
545
+ #: public/admin/box_eventbrite.php:75
546
+ msgid "Quantity"
547
+ msgstr "Anzahl"
548
+
549
+ #: public/admin/box_eventbrite.php:85
550
+ msgid "Include Fee in Price"
551
+ msgstr "Gebühr im Preis enthalten"
552
+
553
+ #: public/admin/box_eventbrite.php:90
554
+ msgid "Add Service Fee on top of price"
555
+ msgstr "Bearbeitungsgebühr zum Preis hinzufügen"
556
+
557
+ #: public/admin/box_eventbrite.php:92
558
+ msgid "Include Service fee in price"
559
+ msgstr "Bearbeitungsgebühr im Preis enthalten"
560
+
561
+ #: public/admin/box_eventbrite.php:98
562
+ msgid "Payment Options"
563
+ msgstr "Zahlungsarten"
564
+
565
+ #: public/admin/box_eventbrite.php:105
566
+ msgid "Google Checkout"
567
+ msgstr "Google Checkout"
568
+
569
+ #: public/admin/box_eventbrite.php:107
570
+ msgid "Check"
571
+ msgstr "Prüfen"
572
+
573
+ #: public/admin/box_eventbrite.php:109
574
+ msgid "Cash"
575
+ msgstr "Barzahlung"
576
+
577
+ #: public/admin/box_eventbrite.php:111
578
+ msgid "Send an Invoice"
579
+ msgstr "Rechnung senden"
580
+
581
+ #: public/admin/box_profile_timezone.php:9
582
+ msgid "Your preferred timezone"
583
+ msgstr "Deine bevorzugte Zeitzone "
584
+
585
+ #: public/admin/box_repeat.php:5
586
+ msgid "Select recurrence pattern:"
587
+ msgstr "Wiederholungsschema auswählen:"
588
+
589
+ #: public/admin/box_repeat.php:36
590
+ msgid "Custom"
591
+ msgstr ""
592
+
593
+ #: public/admin/box_repeat.php:72
594
+ msgid "End"
595
+ msgstr "Ende"
596
+
597
+ #: public/admin/box_repeat.php:82
598
+ msgid "Ending after"
599
+ msgstr "Endet nach"
600
+
601
+ #: public/admin/box_repeat.php:109
602
+ #: public/admin/plugins/ics/display_feeds.php:90
603
+ msgid "Please wait&#8230;"
604
+ msgstr "Bitte warten&#8230;"
605
+
606
+ #: public/admin/box_repeat.php:111
607
+ msgid "Apply"
608
+ msgstr "Anwenden"
609
+
610
+ #: public/admin/box_repeat.php:116
611
+ #: public/admin/plugins/ics/display_feeds.php:84
612
+ msgid "Cancel"
613
+ msgstr "Abbrechen"
614
+
615
+ #: public/admin/box_support.php:4
616
+ msgid "Timely"
617
+ msgstr "Timely"
618
+
619
+ #: public/admin/box_support.php:11
620
+ msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
+ msgstr "Timely’s All-in-One Event Kalender ist<br />eine neue, bahnbrechende Möglichkeit, Veranstaltungen zu finden und zu teilen."
622
+
623
+ #: public/admin/box_event_cost.php:228
624
+ msgid "Status:"
625
+ msgstr ""
626
+
627
+ #: public/admin/box_event_cost.php:235
628
+ msgid "Open"
629
+ msgstr ""
630
+
631
+ #: public/admin/box_event_cost.php:239
632
+ msgid "Closed"
633
+ msgstr ""
634
+
635
+ #: public/admin/box_event_cost.php:254
636
+ msgid "Add New Ticket Type"
637
+ msgstr ""
638
+
639
+ #: public/admin/box_event_cost.php:274
640
+ msgid "Tickets URL:"
641
+ msgstr ""
642
+
643
+ #: public/admin/box_event_location.php:6
644
+ msgid "Event location details"
645
+ msgstr "Details zum Veranstaltungsort"
646
+
647
+ #: public/admin/box_event_location.php:19
648
+ msgid "Venue name:"
649
+ msgstr "Bezeichnung des Veranstaltungsorts:"
650
+
651
+ #: public/admin/box_event_location.php:31
652
+ msgid "Address:"
653
+ msgstr "Adresse: "
654
+
655
+ #: public/admin/box_event_location.php:45
656
+ msgid "Input Coordinates"
657
+ msgstr "Koordinaten eingeben"
658
+
659
+ #: public/admin/box_event_location.php:57
660
+ msgid "Latitude:"
661
+ msgstr "Breitengrad:"
662
+
663
+ #: public/admin/box_event_location.php:69
664
+ msgid "Longitude:"
665
+ msgstr "Längengrad:"
666
+
667
+ #: public/admin/box_event_location.php:85
668
+ msgid "Show Map"
669
+ msgstr "Karte ansehen"
670
+
671
+ #: public/admin/box_eventbrite.php:1
672
+ msgid "Eventbrite Ticketing"
673
+ msgstr "Eventbrite Ticketing"
674
+
675
+ #: public/admin/box_eventbrite.php:7
676
+ msgid "Register this event with Eventbrite.com?"
677
+ msgstr "Diese Veranstaltung bei Eventbrite.com registrieren?"
678
+
679
+ #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
+ #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
+ #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
+ msgid "Yes"
683
+ msgstr "Ja"
684
+
685
+ #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
+ #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
+ #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
+ msgid "No"
689
+ msgstr "Nein"
690
+
691
+ #: public/admin/box_eventbrite.php:22
692
+ msgid "Set up your first ticket"
693
+ msgstr "Das erste Ticket erstellen"
694
+
695
+ #: public/admin/box_eventbrite.php:24
696
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
+ msgstr "Um mehrere Tickets je Veranstaltung zu erstellen, dieses Formular bitte senden und dem Link zu Eventbrite folgen."
698
+
699
+ #: public/admin/box_eventbrite.php:42
700
+ msgid "Description"
701
+ msgstr "Beschreibung"
702
+
703
+ #: public/admin/box_eventbrite.php:53
704
+ msgid "Type"
705
+ msgstr "Art"
706
+
707
+ #: public/admin/box_eventbrite.php:58
708
+ msgid "Set Price"
709
+ msgstr "Preis festlegen"
710
+
711
+ #: public/admin/box_event_contact.php:30
712
+ msgid "Phone:"
713
+ msgstr "Telefon:"
714
+
715
+ #: public/admin/box_event_contact.php:56
716
+ msgid "Website URL:"
717
+ msgstr ""
718
+
719
+ #: public/admin/box_event_cost.php:6
720
+ msgid "Event cost and Tickets"
721
+ msgstr "Veranstaltungspreis und Karten"
722
+
723
+ #: public/admin/box_event_cost.php:20
724
+ msgid "Ticket options not available - event imported from external calendar."
725
+ msgstr ""
726
+
727
+ #: public/admin/box_event_cost.php:28
728
+ msgid "Free event"
729
+ msgstr "keine Eintrittsgebühr"
730
+
731
+ #: public/admin/box_event_cost.php:41
732
+ msgid "External Tickets URL"
733
+ msgstr ""
734
+
735
+ #: public/admin/box_event_cost.php:52
736
+ msgid "Ticketing allows you to sell tickets directly to the users."
737
+ msgstr ""
738
+
739
+ #: public/admin/box_event_cost.php:55
740
+ msgid "Sign Up for Timely Network"
741
+ msgstr ""
742
+
743
+ #: public/admin/box_event_cost.php:80
744
+ msgid "Remove Ticket Type"
745
+ msgstr ""
746
+
747
+ #: public/admin/box_event_cost.php:101
748
+ msgid "Ex.: Regular Ticket"
749
+ msgstr ""
750
+
751
+ #: public/admin/box_event_cost.php:105
752
+ msgid "Description:"
753
+ msgstr "Beschreibung:"
754
+
755
+ #: public/admin/box_event_cost.php:111
756
+ msgid "(Optional)"
757
+ msgstr ""
758
+
759
+ #: public/admin/box_event_cost.php:115
760
+ msgid "Price:"
761
+ msgstr ""
762
+
763
+ #: public/admin/box_event_cost.php:124
764
+ msgid "USD"
765
+ msgstr ""
766
+
767
+ #: public/admin/box_event_cost.php:128
768
+ msgid "Limits:"
769
+ msgstr ""
770
+
771
+ #: public/admin/box_event_cost.php:131
772
+ msgid "This fields are required."
773
+ msgstr ""
774
+
775
+ #: public/admin/box_event_cost.php:156
776
+ msgid "Quantity:"
777
+ msgstr ""
778
+
779
+ #: public/admin/box_event_cost.php:180
780
+ msgid "Available:"
781
+ msgstr ""
782
+
783
+ #: public/admin/box_event_cost.php:185
784
+ msgid "Immediately"
785
+ msgstr ""
786
+
787
+ #: public/admin/box_event_cost.php:190
788
+ msgid "From:"
789
+ msgstr ""
790
+
791
+ #: public/admin/box_event_cost.php:207
792
+ msgid "Till:"
793
+ msgstr ""
794
+
795
+ #: public/admin/box_ask_customer_review.php:42
796
+ #: public/admin/box_ask_customer_review.php:75
797
+ msgid "No, thanks"
798
+ msgstr ""
799
+
800
+ #: public/admin/box_ask_customer_review.php:50
801
+ #: public/admin/box_ask_customer_review.php:84
802
+ msgid "Ok, sure!"
803
+ msgstr ""
804
+
805
+ #: public/admin/box_ask_customer_review.php:66
806
+ msgid "Would you mind giving us some feedback?"
807
+ msgstr ""
808
+
809
+ #: public/admin/box_ask_customer_review.php:101
810
+ msgid "Please provide some feedback"
811
+ msgstr ""
812
+
813
+ #: public/admin/box_ask_customer_review.php:108
814
+ msgid "Message:"
815
+ msgstr ""
816
+
817
+ #: public/admin/box_ask_customer_review.php:121
818
+ msgid "Name:"
819
+ msgstr ""
820
+
821
+ #: public/admin/box_ask_customer_review.php:136
822
+ #: public/admin/box_event_contact.php:43
823
+ msgid "E-mail:"
824
+ msgstr "E-Mail:"
825
+
826
+ #: public/admin/box_ask_customer_review.php:143
827
+ msgid "E-mail is invalid."
828
+ msgstr ""
829
+
830
+ #: public/admin/box_ask_customer_review.php:154
831
+ msgid "Site URL:"
832
+ msgstr ""
833
+
834
+ #: public/admin/box_ask_customer_review.php:161
835
+ msgid "Site URL is invalid."
836
+ msgstr ""
837
+
838
+ #: public/admin/box_ask_customer_review.php:173
839
+ msgid "Thank you for being our customer,"
840
+ msgstr ""
841
+
842
+ #: public/admin/box_ask_customer_review.php:174
843
+ msgid "Aristotel Dascal, VP of Product, Time.ly"
844
+ msgstr ""
845
+
846
+ #: public/admin/box_ask_customer_review.php:180
847
+ msgid "Sending..."
848
+ msgstr ""
849
+
850
+ #: public/admin/box_ask_customer_review.php:181
851
+ msgid "Send Message"
852
+ msgstr ""
853
+
854
+ #: public/admin/box_event_children.php:12
855
+ msgid "Base recurrence event"
856
+ msgstr "Standard Wiederholungsveranstaltung"
857
+
858
+ #: public/admin/box_event_children.php:14
859
+ msgid "Modified recurrence events"
860
+ msgstr "Geänderte Wiederholungsveranstaltungen"
861
+
862
+ #: public/admin/box_event_children.php:22
863
+ msgid "Edit parent:"
864
+ msgstr "Übergeordnete Veranstaltung bearbeiten:"
865
+
866
+ #: public/admin/box_event_children.php:27
867
+ msgid "Modified Events"
868
+ msgstr "Geänderte Veranstaltungen"
869
+
870
+ #: public/admin/box_event_children.php:31
871
+ msgid "Edit:"
872
+ msgstr "Bearbeiten:"
873
+
874
+ #: public/admin/box_event_contact.php:6
875
+ msgid "Organizer contact info"
876
+ msgstr "Kontaktdaten des Veranstalters"
877
+
878
+ #: public/admin/box_event_contact.php:17
879
+ msgid "Contact name:"
880
+ msgstr "Kontaktname:"
881
+
882
+ #: lib/theme/loader.php:325
883
+ msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
+ msgstr "Wir konnten keinen passender Loader für die Dateierweiterung '%s' finden."
885
+
886
+ #: lib/theme/loader.php:631
887
+ msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
+ msgstr ""
889
+
890
+ #: lib/theme/search.php:253
891
+ msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
+ msgstr "Leider ist es nicht möglich deine alten Core Themes von <code>wp-content/themes-ai1ec</code> zu <code>wp-content/themes-ai1ec-obsolete</code> umzuziehen, da dein <code>wp-content</code> Ordner nicht beschreibbar ist. Bitte entferne deine alten Core Themes manuell aus dem Ordner <code>wp-content/themes-ai1ec</code>."
893
+
894
+ #: lib/theme/search.php:264
895
+ msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
+ msgstr "Es hat nicht geklappt deine alten Core Themes von <code>wp-content/themes-ai1ec/%s</code> zu <code>wp-content/themes-ai1ec-obsolete/%s</code> zu verschieben. Bitte entferne die alten Core Themes manuell <code>wp-content/themes-ai1ec/%s</code>."
897
+
898
+ #: lib/twig/environment.php:115
899
+ msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
+ msgstr ""
901
+
902
+ #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
+ msgid "Title:"
904
+ msgstr "Titel:"
905
+
906
+ #: public/admin/agenda-widget-form.php:12
907
+ msgid "Number of events to show:"
908
+ msgstr "Anzahl der Veranstaltungen, die angezeigt werden sollen:"
909
+
910
+ #: public/admin/agenda-widget-form.php:21
911
+ msgid "Number of days to show:"
912
+ msgstr "Anzahl der Tage, die angezeigt werden sollen:"
913
+
914
+ #: public/admin/agenda-widget-form.php:26
915
+ msgid "Limit to:"
916
+ msgstr "Begrenzen auf:"
917
+
918
+ #: public/admin/agenda-widget-form.php:30
919
+ msgid "Events with these <strong>Categories</strong>"
920
+ msgstr "Veranstaltungen mit diesen <strong>Kategorien</strong>"
921
+
922
+ #: public/admin/agenda-widget-form.php:39
923
+ msgid "No categories found."
924
+ msgstr "Keine Kategorien gefunden."
925
+
926
+ #: public/admin/agenda-widget-form.php:46
927
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
+ msgstr "<strong>Oder</strong> Veranstaltungen mit diesen <strong>Schlagwörtern</strong>"
929
+
930
+ #: public/admin/agenda-widget-form.php:55
931
+ msgid "No tags found."
932
+ msgstr "Keine Schlagwörter gefunden."
933
+
934
+ #: public/admin/agenda-widget-form.php:62
935
+ msgid "Show <strong>View Calendar</strong> button"
936
+ msgstr "Schaltfläche <strong>Kalender ansehen</strong> anzeigen"
937
+
938
+ #: public/admin/agenda-widget-form.php:65
939
+ msgid "Show <strong>Subscribe</strong> buttons"
940
+ msgstr "Schaltfläche <strong>Abonnieren</strong> anzeigen"
941
+
942
+ #: public/admin/agenda-widget-form.php:68
943
+ msgid "Hide this widget on calendar page"
944
+ msgstr "Dieses Widget auf der Kalenderseite verstecken"
945
+
946
+ #: public/admin/box_ask_customer_review.php:5
947
+ msgid "Enjoying All-in-One Event Calendar?"
948
+ msgstr ""
949
+
950
+ #: public/admin/box_ask_customer_review.php:13
951
+ msgid "Not really"
952
+ msgstr ""
953
+
954
+ #: public/admin/box_ask_customer_review.php:20
955
+ msgid "Yes!"
956
+ msgstr ""
957
+
958
+ #: public/admin/box_ask_customer_review.php:33
959
+ msgid "How about a rating on the Wordpress?"
960
+ msgstr ""
961
+
962
+ #: lib/recurrence/rule.php:397
963
+ msgid "Every %d weeks"
964
+ msgstr "Alle %d Wochen"
965
+
966
+ #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
+ msgid "Monthly"
968
+ msgstr "Monatlich"
969
+
970
+ #: lib/recurrence/rule.php:409
971
+ msgid "Every other month"
972
+ msgstr "Jeden zweiten Monat"
973
+
974
+ #: lib/recurrence/rule.php:412
975
+ msgid "Every %d months"
976
+ msgstr "Alle %d Monate"
977
+
978
+ #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
+ msgid "Yearly"
980
+ msgstr "Jährlich"
981
+
982
+ #: lib/recurrence/rule.php:424
983
+ msgid "Every other year"
984
+ msgstr "Jedes zweite Jahr"
985
+
986
+ #: lib/recurrence/rule.php:427
987
+ msgid "Every %d years"
988
+ msgstr "Alle %d Jahre"
989
+
990
+ #: lib/recurrence/rule.php:465
991
+ msgid "until %s"
992
+ msgstr "bis %s"
993
+
994
+ #: lib/recurrence/rule.php:475
995
+ msgid "for %d occurrences"
996
+ msgstr "für %d Ereignisse"
997
+
998
+ #: lib/recurrence/rule.php:479
999
+ msgid "forever"
1000
+ msgstr "für immer"
1001
+
1002
+ #: lib/robots/helper.php:71
1003
+ msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
+ msgstr "<strong>FEHLER:</strong> Fehler bei der Verbindung zum Server. Bitte überprüfen, ob die Einstellungen korrekt sind."
1005
+
1006
+ #: lib/robots/helper.php:105
1007
+ msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
+ msgstr "<strong>FEHLER:</strong> Fehler beim Sichern von <strong>robots.txt</strong> auf dem Server, die Datei wurde nicht erstellt."
1009
+
1010
+ #: lib/theme/list.php:152
1011
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
+ msgstr "Derzeit ist für diese Seite nur ein Theme freigegeben. Kontaktiere den Netzwerk Administrator für eine <a href=\"%1$s\">Freigabe</a> oder <a href=\"%2$s\">installiere</a> weitere Themes."
1013
+
1014
+ #: lib/theme/list.php:164
1015
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
+ msgstr "Derzeit ist für diese Seite nur ein Theme freigegeben. Kontaktiere den Netzwerk Administrator für eine <a href=\"%1$s\">Freigabe</a> zusätzlicher Themes."
1017
+
1018
+ #: lib/theme/list.php:179
1019
+ msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
+ msgstr "Du hast zur Zeit nur ein Theme installiert. Du kannst jederzeit aus vielen konstenlosen Themes im Timely Theme Directory wählen: Einfach die Schaltfläche <a href=\"%s\">Themes installieren</a> oben anklicken."
1021
+
1022
+ #: lib/theme/list.php:190
1023
+ msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
+ msgstr "Nur das aktive Theme ist für dich verfügbar. Kontaktiere den <em>%s</em> Administrator, um weitere Themes hinzuzufügen."
1025
+
1026
+ #: lib/theme/list.php:257
1027
+ msgid "Activate &#8220;%s&#8221;"
1028
+ msgstr "Aktivieren von &#8220;%s&#8221;"
1029
+
1030
+ #: lib/theme/list.php:264
1031
+ msgid "Activate"
1032
+ msgstr "Aktivieren"
1033
+
1034
+ #. translators: 1: theme title, 2: theme version, 3: theme author
1035
+ #: lib/theme/list.php:281 public/admin/themes.php:25
1036
+ msgid "%1$s %2$s by %3$s"
1037
+ msgstr "%1$s %2$s by %3$s"
1038
+
1039
+ #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
+ #. title, 5: parent_theme
1041
+ #: lib/theme/list.php:293
1042
+ msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
+ msgstr "Die Template Dateien befinden sich in <code>%2$s</code>. Die Stylesheet Dateien befinden sich in <code>%3$s</code>. <strong>%4$s</strong> nutzt Templates von <strong>%5$s</strong>. Veränderungen an den Templates beeinflussen beide Themes. "
1044
+
1045
+ #: lib/theme/list.php:308
1046
+ msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
+ msgstr "Alle Dateien dieses Themes befinden sich unter <code>%2$s</code>."
1048
+
1049
+ #: lib/post/custom-type.php:36
1050
+ msgid "Parent Event"
1051
+ msgstr "Übergeordnete Veranstaltung"
1052
+
1053
+ #: lib/post/custom-type.php:55
1054
+ msgid "event"
1055
+ msgstr "Veranstaltung"
1056
+
1057
+ #: lib/post/custom-type.php:85
1058
+ msgctxt "Event categories taxonomy"
1059
+ msgid "Categories"
1060
+ msgstr ""
1061
+
1062
+ #: lib/post/custom-type.php:86
1063
+ msgctxt "Event categories taxonomy (singular)"
1064
+ msgid "Category"
1065
+ msgstr ""
1066
+
1067
+ #: lib/post/custom-type.php:87
1068
+ msgctxt "Event categories menu item"
1069
+ msgid "Organize"
1070
+ msgstr ""
1071
+
1072
+ #: lib/post/custom-type.php:94
1073
+ msgctxt "Event tags taxonomy"
1074
+ msgid "Tags"
1075
+ msgstr ""
1076
+
1077
+ #: lib/post/custom-type.php:95
1078
+ msgctxt "Event tags taxonomy (singular)"
1079
+ msgid "Tag"
1080
+ msgstr ""
1081
+
1082
+ #: lib/post/custom-type.php:102
1083
+ msgctxt "Event feeds taxonomy"
1084
+ msgid "Event Feeds"
1085
+ msgstr "Feed der Veranstaltung"
1086
+
1087
+ #: lib/post/custom-type.php:103
1088
+ msgctxt "Event feed taxonomy (singular)"
1089
+ msgid "Event Feed"
1090
+ msgstr "Feed der Veranstaltung"
1091
+
1092
+ #: lib/post/custom-type.php:285
1093
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
+ msgstr "Alle Veranstaltungen<span class=\"update-plugins count-%d\" title=\"%d Bevorstehende Veranstaltungen\"><span class=\"update-count\">%d</span></span>"
1095
+
1096
+ #: lib/post/custom-type.php:296
1097
+ msgid "All Events"
1098
+ msgstr "Alle Veranstaltungen"
1099
+
1100
+ #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
+ #: lib/recurrence/rule.php:260
1102
+ msgctxt "Recurrence editor - weekly tab"
1103
+ msgid "on"
1104
+ msgstr "am"
1105
+
1106
+ #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
+ #: lib/recurrence/rule.php:326
1108
+ msgid "and"
1109
+ msgstr "und"
1110
+
1111
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
+ #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
+ msgctxt "Recurrence editor - monthly tab"
1114
+ msgid "on"
1115
+ msgstr "am"
1116
+
1117
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
+ #: lib/recurrence/rule.php:286
1119
+ msgid "of the month"
1120
+ msgstr "des Monats"
1121
+
1122
+ #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
+ #: lib/recurrence/rule.php:336
1124
+ msgctxt "Recurrence editor - yearly tab"
1125
+ msgid "on"
1126
+ msgstr "am"
1127
+
1128
+ #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
+ #: public/admin/cron_freq.php:9
1130
+ msgid "Daily"
1131
+ msgstr "Täglich"
1132
+
1133
+ #: lib/recurrence/rule.php:379
1134
+ msgid "Every other day"
1135
+ msgstr "Jeden zweiten Tag"
1136
+
1137
+ #: lib/recurrence/rule.php:382
1138
+ msgid "Every %d days"
1139
+ msgstr "Alle %d Tage"
1140
+
1141
+ #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
+ msgid "Weekly"
1143
+ msgstr "Wöchentlich"
1144
+
1145
+ #: lib/recurrence/rule.php:394
1146
+ msgid "Every other week"
1147
+ msgstr "Jede zweite Woche"
1148
+
1149
+ #: lib/less/variable/font.php:64
1150
+ msgid "Custom..."
1151
+ msgstr "Benutzerdefiniert..."
1152
+
1153
+ #: lib/less/variable/font.php:112
1154
+ msgid "Enter custom font(s)"
1155
+ msgstr "Benutzerdefinierte Schriftarten eingeben"
1156
+
1157
+ #: lib/less/variable/size.php:26
1158
+ msgid "Length"
1159
+ msgstr "Länge"
1160
+
1161
+ #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
+ msgid "All-in-One Event Calendar"
1163
+ msgstr "All-in-One Event Kalender"
1164
+
1165
+ #: lib/notification/admin.php:182
1166
+ msgid "Got it – dismiss this"
1167
+ msgstr ""
1168
+
1169
+ #: lib/post/custom-type.php:26
1170
+ msgctxt "Custom post type name"
1171
+ msgid "Events"
1172
+ msgstr "Veranstaltungen"
1173
+
1174
+ #: lib/post/custom-type.php:27
1175
+ msgctxt "Custom post type name (singular)"
1176
+ msgid "Event"
1177
+ msgstr "Veranstaltung"
1178
+
1179
+ #: lib/post/custom-type.php:28
1180
+ msgid "Add New"
1181
+ msgstr "Neu hinzufügen"
1182
+
1183
+ #: lib/post/custom-type.php:29
1184
+ msgid "Add New Event"
1185
+ msgstr "Neue Veranstaltung hinzufügen"
1186
+
1187
+ #: lib/post/custom-type.php:30
1188
+ msgid "Edit Event"
1189
+ msgstr "Veranstaltung bearbeiten"
1190
+
1191
+ #: lib/post/custom-type.php:31
1192
+ msgid "New Event"
1193
+ msgstr "Neue Veranstaltung"
1194
+
1195
+ #: lib/post/custom-type.php:32
1196
+ msgid "View Event"
1197
+ msgstr "Veranstaltung anzeigen"
1198
+
1199
+ #: lib/post/custom-type.php:33
1200
+ msgid "Search Events"
1201
+ msgstr "Veranstaltungen (durch)suchen"
1202
+
1203
+ #: lib/post/custom-type.php:34
1204
+ msgid "No Events found"
1205
+ msgstr "Keine Veranstaltungen gefunden"
1206
+
1207
+ #: lib/post/custom-type.php:35
1208
+ msgid "No Events found in Trash"
1209
+ msgstr "Im Papierkorb wurden keine Veranstaltungen gefunden"
1210
+
1211
+ #: lib/html/element/setting/html.php:62
1212
+ msgid "Filter by post ID:"
1213
+ msgstr "Filtern nach Eintrag ID:"
1214
+
1215
+ #: lib/html/element/setting/html.php:63
1216
+ msgid "Filter by post IDs (separate IDs by comma):"
1217
+ msgstr "Filtern nach Eintrag IDs (IDs durch Komma trennen):"
1218
+
1219
+ #: lib/html/element/setting/html.php:64
1220
+ msgid "Limit number of events per page:"
1221
+ msgstr "Maximalzahl von Veranstaltungen pro Seite:"
1222
+
1223
+ #: lib/html/element/setting/html.php:65
1224
+ msgid "Warning:"
1225
+ msgstr "Achtung:"
1226
+
1227
+ #: lib/html/element/setting/html.php:66
1228
+ msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
+ msgstr "Es wird momentan nicht unterstützt, mehr als einen Kalender auf der selben Seite einzubetten. Bitte nicht versuchen einen Kalender via Shortcode in eine Seite einzubetten, auf der bereits ein Kalender angezeigt wird."
1230
+
1231
+ #: lib/import-export/ics.php:831
1232
+ msgid "Tickets: "
1233
+ msgstr ""
1234
+
1235
+ #: lib/html/element/setting/html.php:41
1236
+ msgid "Day view:"
1237
+ msgstr "Tagesansicht:"
1238
+
1239
+ #: lib/html/element/setting/html.php:42
1240
+ msgid "Agenda view:"
1241
+ msgstr "Listenansicht:"
1242
+
1243
+ #: lib/html/element/setting/html.php:43
1244
+ msgid "Some Other view:"
1245
+ msgstr "Andere Ansicht:"
1246
+
1247
+ #: lib/html/element/setting/html.php:44
1248
+ msgid "Default view as per settings:"
1249
+ msgstr "Standardansicht wie nach Einstellungen:"
1250
+
1251
+ #: lib/html/element/setting/html.php:45
1252
+ msgid "General form:"
1253
+ msgstr "Allgemeines Formular:"
1254
+
1255
+ #: lib/html/element/setting/html.php:46
1256
+ msgid "Optional."
1257
+ msgstr "Optional."
1258
+
1259
+ #: lib/html/element/setting/html.php:47
1260
+ msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
+ msgstr "Optionen zur Ansicht eines gefilterten Kalenders hinzufügen. (Kategorie und Schlagwort IDs sind über die URL der gefilterten Kalenderseite ersichtlich)"
1262
+
1263
+ #: lib/html/element/setting/html.php:48
1264
+ msgid "Filter by event category name/slug:"
1265
+ msgstr "Filtern nach Kategorie der Veranstaltung Name/Slug:"
1266
+
1267
+ #: lib/html/element/setting/html.php:49
1268
+ msgid "Holidays"
1269
+ msgstr "Feiertage"
1270
+
1271
+ #: lib/html/element/setting/html.php:50
1272
+ msgid "Lunar Cycles"
1273
+ msgstr "Mondphasen"
1274
+
1275
+ #: lib/html/element/setting/html.php:51
1276
+ msgid "zodiac-date-ranges"
1277
+ msgstr "Daten der Tierkreiszeichen"
1278
+
1279
+ #: lib/html/element/setting/html.php:52
1280
+ msgid "Filter by event category names/slugs (separate names by comma):"
1281
+ msgstr "Filtern nach Kategorie der Veranstaltung (Werte durch Komma trennen):"
1282
+
1283
+ #: lib/html/element/setting/html.php:53
1284
+ msgid "Filter by event category ID:"
1285
+ msgstr "Filtern nach Kategorie ID der Veranstaltung:"
1286
+
1287
+ #: lib/html/element/setting/html.php:54
1288
+ msgid "Filter by event category IDs (separate IDs by comma):"
1289
+ msgstr "Filtern nach Kategorie ID der Veranstaltung (Werte durch Komma trennen):"
1290
+
1291
+ #: lib/html/element/setting/html.php:55
1292
+ msgid "Filter by event tag name/slug:"
1293
+ msgstr "Filtern nach Schlagwort der Veranstaltung Name/Slug:"
1294
+
1295
+ #: lib/html/element/setting/html.php:56
1296
+ msgid "tips-and-tricks"
1297
+ msgstr "Tipps-und-Tricks"
1298
+
1299
+ #: lib/html/element/setting/html.php:57
1300
+ msgid "creative writing"
1301
+ msgstr "Kreatives Schreiben"
1302
+
1303
+ #: lib/html/element/setting/html.php:58
1304
+ msgid "performing arts"
1305
+ msgstr "Darstellende Künste"
1306
+
1307
+ #: lib/html/element/setting/html.php:59
1308
+ msgid "Filter by event tag names/slugs (separate names by comma):"
1309
+ msgstr "Filtern nach Schlagwort der Veranstaltung Name/Slug (Werte durch Komma trennen):"
1310
+
1311
+ #: lib/html/element/setting/html.php:60
1312
+ msgid "Filter by event tag ID:"
1313
+ msgstr "Filtern nach Schlagwort ID der Veranstaltung:"
1314
+
1315
+ #: lib/html/element/setting/html.php:61
1316
+ msgid "Filter by event tag IDs (separate IDs by comma):"
1317
+ msgstr "Filtern nach Schlagwort IDs der Veranstaltung (IDs durch Komma trennen)"
1318
+
1319
+ #: lib/exception/handler.php:395
1320
+ msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
+ msgstr ""
1322
+
1323
+ #: lib/exception/handler.php:404
1324
+ msgid "Try reactivating plugin"
1325
+ msgstr ""
1326
+
1327
+ #: lib/exception/handler.php:576
1328
+ msgid "Toggle error details"
1329
+ msgstr ""
1330
+
1331
+ #: lib/exception/handler.php:577
1332
+ msgid "Error Details:"
1333
+ msgstr ""
1334
+
1335
+ #: lib/factory/html.php:133
1336
+ msgid "Choose a date using calendar"
1337
+ msgstr "Datum aus Kalender auswählen"
1338
+
1339
+ #: lib/factory/html.php:278
1340
+ msgid "Tags (optional)"
1341
+ msgstr "Schlagwörter (optional)"
1342
+
1343
+ #: lib/html/element/setting/cache.php:38
1344
+ msgid "Check again"
1345
+ msgstr "Erneut prüfen"
1346
+
1347
+ #: lib/html/element/setting/cache.php:39
1348
+ msgid "Templates cache is not writable"
1349
+ msgstr "Vorlagen Cache ist nicht beschreibbar"
1350
+
1351
+ #: lib/html/element/setting/cache.php:40
1352
+ msgid "Templates cache is writable"
1353
+ msgstr "Vorlagen Cache ist beschreibbar"
1354
+
1355
+ #: lib/html/element/setting/cache.php:41
1356
+ msgid "Checking..."
1357
+ msgstr "Wird geprüft..."
1358
+
1359
+ #: lib/html/element/setting/cache.php:42
1360
+ msgid "Performance Report"
1361
+ msgstr "Leistungsbericht"
1362
+
1363
+ #: lib/html/element/setting/calendar-page-selector.php:70
1364
+ msgid "View"
1365
+ msgstr "Ansicht"
1366
+
1367
+ #: lib/html/element/setting/calendar-page-selector.php:114
1368
+ msgid "- Auto-Create New Page -"
1369
+ msgstr "- Neue Seite automatisch erstellen -"
1370
+
1371
+ #: lib/html/element/setting/enabled-views.php:22
1372
+ msgid "Enabled"
1373
+ msgstr "Aktiviert"
1374
+
1375
+ #: lib/html/element/setting/enabled-views.php:23
1376
+ msgid "Default"
1377
+ msgstr "Standard"
1378
+
1379
+ #: lib/html/element/setting/enabled-views.php:24
1380
+ msgid "Desktop"
1381
+ msgstr "Desktopgerät"
1382
+
1383
+ #: lib/html/element/setting/enabled-views.php:25
1384
+ msgid "Mobile"
1385
+ msgstr "Mobilgerät"
1386
+
1387
+ #: lib/html/element/setting/html.php:37
1388
+ msgid "Embed the calendar using a shortcode"
1389
+ msgstr "Kalender mit einem Shortcode einbetten"
1390
+
1391
+ #: lib/html/element/setting/html.php:38
1392
+ msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
+ msgstr "Einen dieser Shortcodes in den Body einer Seite einfügen, um den Kalender in jede beliebige WordPress-Seite einzubetten:"
1394
+
1395
+ #: lib/html/element/setting/html.php:39
1396
+ msgid "Month view:"
1397
+ msgstr "Monatsansicht:"
1398
+
1399
+ #: lib/html/element/setting/html.php:40
1400
+ msgid "Week view:"
1401
+ msgstr "Wochenansicht:"
1402
+
1403
+ #: lib/css/frontend.php:239
1404
+ msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
+ msgstr ""
1406
+
1407
+ #: lib/css/frontend.php:266
1408
+ msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
+ msgstr "Die LESS-Datei wurde korrekt kompiliert, aber beim Speichern der erzeugten CSS-Datei ist ein Fehler aufgetreten."
1410
+
1411
+ #: lib/css/frontend.php:272
1412
+ msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
+ msgstr "<p><strong>Beim Kompilieren der CSS-Datei ist ein Fehler aufgetreten.</strong> Die Fehlermeldung lautet: <em>%s</em></p>"
1414
+
1415
+ #: lib/css/frontend.php:300
1416
+ msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
+ msgstr "Theme Einstellungen wurden erfolgreich auf die Standardwerte zurückgesetzt. <a href='%s'>Seite besuchen</a>"
1418
+
1419
+ #: lib/css/frontend.php:307
1420
+ msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
+ msgstr "Theme-Einstellungen wurden erfolgreich aktualisiert. <a href='%s'>Seite besuchen</a>"
1422
+
1423
+ #: lib/css/frontend.php:343
1424
+ msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
+ msgstr "Dein CSS wird bei jedem Zugriff neu übersetzt, daher wird dein Kalender langsamer. Folgender Fehler ist aufgetreten: %s"
1426
+
1427
+ #: lib/database/applicator.php:182
1428
+ msgid "Date columns in table %s have different types."
1429
+ msgstr "Datumsspalten in Tabelle %s haben verschiedene Typen."
1430
+
1431
+ #: lib/database/exception/database.php:19
1432
+ msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
+ msgstr "Update der Datenbank ist fehlgeschlagen. Bitte stelle sicher, das der Nutzer der Datenbank, definiert in <em>wp.config.php</em>, ausreichende Berechtigungen zum Ändern (<strong>ALTER TABLE</strong>) der Datenbank besitzt."
1434
+
1435
+ #: lib/database/exception/database.php:23
1436
+ msgid "Error encountered: %s"
1437
+ msgstr "Fehler gefunden: %s"
1438
+
1439
+ #: lib/date/system.php:202
1440
+ msgid "GMT%+d:%02d"
1441
+ msgstr "GMT%+d:%02d"
1442
+
1443
+ #: lib/date/timezone.php:362
1444
+ msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
+ msgstr "Bitte Zeitzone der Seite im %s <em>Zeitzone</em> Dropdown Menü auswählen."
1446
+
1447
+ #: lib/date/timezone.php:397
1448
+ msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
+ msgstr "Zeitzone \"UTC%+d\" kann nicht erkannt werden. Bitte verwende %suse valid%s eine gültige Bezeichnung für eine Zeitzone, bis dahin werden Veranstaltungen in der UTC-Zeitzone erstellt."
1450
+
1451
+ #: lib/date/timezone.php:421
1452
+ msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
+ msgstr "Ausgewählte Zeitzone \"UTC%+d\" wird als %s behandelt."
1454
+
1455
+ #: lib/date/timezone.php:490
1456
+ msgid "Manual Offset"
1457
+ msgstr "Manueller Offset"
1458
+
1459
+ #: lib/date/timezone.php:493
1460
+ msgid "Choose your timezone"
1461
+ msgstr "Zeitzone auswählen"
1462
+
1463
+ #: lib/environment/check.php:55
1464
+ msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
+ msgstr "Bitte aus der Dropdown Liste <strong>Kalender Seite</strong> Auswahl treffen"
1466
+
1467
+ #: lib/environment/check.php:68
1468
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
+ msgstr "Das Plugin ist installiert, aber noch nicht konfiguriert.<a href=\"%s\">Klicke hier, um es jetzt einzurichten &raquo;</a>"
1470
+
1471
+ #: lib/environment/check.php:78
1472
+ msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
+ msgstr "Das Plugin ist installiert, aber noch nicht konfiguriert. Bitte als Admin einloggen und einrichten."
1474
+
1475
+ #: lib/environment/check.php:196
1476
+ msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
+ msgstr ""
1478
+
1479
+ #: lib/environment/check.php:197
1480
+ msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
+ msgstr ""
1482
+
1483
+ #: lib/exception/handler.php:176
1484
+ msgid "The add-on \"%s\" has been disabled due to an error:"
1485
+ msgstr ""
1486
+
1487
+ #: lib/calendar-feed/ics.php:367
1488
+ msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
+ msgstr "Willst du, die aus dem Kalender, importierten Events behalten oder verwerfen?"
1490
+
1491
+ #: lib/calendar-feed/ics.php:373
1492
+ msgid "Removing ICS Feed"
1493
+ msgstr "ICS-Feed entfernen"
1494
+
1495
+ #: lib/calendar-feed/ics.php:376
1496
+ msgid "Keep Events"
1497
+ msgstr "Veranstaltungen behalten"
1498
+
1499
+ #: lib/calendar-feed/ics.php:379
1500
+ msgid "Remove Events"
1501
+ msgstr "Veranstaltungen entfernen"
1502
+
1503
+ #: lib/calendar-feed/ics.php:519
1504
+ msgid "Oh, submission was not accepted."
1505
+ msgstr ""
1506
+
1507
+ #: lib/calendar-feed/ics.php:699
1508
+ msgid "Deleted %d events"
1509
+ msgstr "%d Veranstaltungen gelöscht"
1510
+
1511
+ #: lib/calendar-feed/ics.php:735
1512
+ msgid "Feed deleted"
1513
+ msgstr "Feed gelöscht"
1514
+
1515
+ #: lib/captcha/provider/nocaptcha.php:31
1516
+ msgid "noCAPTCHA public key:"
1517
+ msgstr "noCAPTCHA öffentlicher Schlüssel"
1518
+
1519
+ #: lib/captcha/provider/nocaptcha.php:47
1520
+ msgid "noCAPTCHA private key:"
1521
+ msgstr ""
1522
+
1523
+ #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
+ msgid "Please try verifying you are human again."
1525
+ msgstr ""
1526
+
1527
+ #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
+ msgid "There was an error reading the human verification data. Please try again."
1529
+ msgstr ""
1530
+
1531
+ #: lib/captcha/provider/recaptcha.php:32
1532
+ msgid "reCAPTCHA public key:"
1533
+ msgstr ""
1534
+
1535
+ #: lib/captcha/provider/recaptcha.php:48
1536
+ msgid "reCAPTCHA private key:"
1537
+ msgstr ""
1538
+
1539
+ #: lib/captcha/provider/recaptcha.php:66
1540
+ msgid "Human verification"
1541
+ msgstr ""
1542
+
1543
+ #: lib/captcha/provider/recaptcha.php:67
1544
+ msgid "Loading reCAPTCHA..."
1545
+ msgstr ""
1546
+
1547
+ #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
+ #: lib/clone/renderer-helper.php:45
1549
+ msgid "Clone"
1550
+ msgstr "Duplizieren"
1551
+
1552
+ #: lib/clone/renderer-helper.php:44
1553
+ msgid "Make new copy of event"
1554
+ msgstr "Veranstaltung erneut kopieren"
1555
+
1556
+ #: lib/clone/renderer-helper.php:47
1557
+ msgid "Copy to a new draft"
1558
+ msgstr "In neuen Entwurf kopieren"
1559
+
1560
+ #: lib/clone/renderer-helper.php:48
1561
+ msgid "Clone to Draft"
1562
+ msgstr "Als Entwurf duplizieren"
1563
+
1564
+ #: lib/command/clone.php:173
1565
+ msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
+ msgstr "<p>Die Veranstaltung <strong>%s</strong> wurde erfolgreich kopiert. <a href=\"%s\">Kopierte Veranstaltung bearbeiten</a></p>"
1567
+
1568
+ #: lib/compatibility/check.php:101
1569
+ msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
+ msgstr ""
1571
+
1572
+ #: app/view/event/single.php:123
1573
+ msgid "Tickets:"
1574
+ msgstr ""
1575
+
1576
+ #: app/view/event/single.php:124
1577
+ msgid "Free"
1578
+ msgstr "kostenlos"
1579
+
1580
+ #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
+ msgid "Buy Tickets"
1582
+ msgstr "Karten kaufen"
1583
+
1584
+ #: app/view/event/single.php:150
1585
+ msgid "Edit this occurrence (%s)"
1586
+ msgstr "Dieses Ereignis bearbeiten (%s)"
1587
+
1588
+ #: app/view/event/single.php:195
1589
+ msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
+ msgstr "Dieser Beitrag ist ein Replikat eines anderen <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> Kalender feeds</a>."
1591
+
1592
+ #: app/view/event/single.php:206
1593
+ msgid "View original"
1594
+ msgstr "Original ansehen"
1595
+
1596
+ #: app/view/event/taxonomy.php:113
1597
+ msgid "Category image"
1598
+ msgstr "Bild der Kategorie"
1599
+
1600
+ #: app/view/event/ticket.php:24
1601
+ msgid "Register Now"
1602
+ msgstr "Jetzt anmelden"
1603
+
1604
+ #: app/view/event/ticket.php:82
1605
+ msgid "Event website"
1606
+ msgstr "Webseite der Veranstaltung"
1607
+
1608
+ #: app/view/event/time.php:84 app/view/event/time.php:118
1609
+ msgctxt "Event time separator"
1610
+ msgid " @ "
1611
+ msgstr " um "
1612
+
1613
+ #: app/view/event/time.php:100
1614
+ msgctxt "Event start/end separator"
1615
+ msgid " – "
1616
+ msgstr " – "
1617
+
1618
+ #: app/view/event/time.php:166
1619
+ msgid ", and "
1620
+ msgstr ", und"
1621
+
1622
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
+ msgid "Excludes: "
1624
+ msgstr ""
1625
+
1626
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
+ msgid "Repeats"
1628
+ msgstr ""
1629
+
1630
+ #: lib/calendar-feed/ics.php:38
1631
+ msgid "ICS"
1632
+ msgstr "ICS"
1633
+
1634
+ #: lib/calendar-feed/ics.php:69
1635
+ msgid "Another import process in progress. Please try again later."
1636
+ msgstr "Ein anderer Import findet gerade statt. Bitte zu einem späteren Zeitpunkt erneut versuchen."
1637
+
1638
+ #: lib/calendar-feed/ics.php:174
1639
+ msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
+ msgstr "Ein Systemfehler ist beim Abrufen der Kalenderdaten aufgetreten. Das Plugin funktioniert deshalb nicht ordnungsgemäß. Die folgende Meldung gibt einen Hinweis auf die Ursache: %s"
1641
+
1642
+ #: lib/calendar-feed/ics.php:181
1643
+ msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
+ msgstr "Die Kalenderdaten können nicht abgerufen werden. Wenn deine URL stimmt und eine iCalendar-Ressource beinhaltet, ist wahrscheinlich der Zielserver im Moment nicht verfügbar. Probiere es bitte später noch einmal"
1645
+
1646
+ #: lib/calendar-feed/ics.php:195
1647
+ msgid "Imported %s event"
1648
+ msgid_plural "Imported %s events"
1649
+ msgstr[0] "%s Veranstaltung importiert"
1650
+ msgstr[1] "%s Veranstaltungen importiert"
1651
+
1652
+ #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
+ msgid "Invalid ICS feed ID"
1654
+ msgstr "Ungültige ICS feed ID"
1655
+
1656
+ #: lib/calendar-feed/ics.php:350
1657
+ msgid "Categories (optional)"
1658
+ msgstr "Kategorien (optional)"
1659
+
1660
+ #: app/view/event/content.php:33 app/view/event/single.php:119
1661
+ msgid "When:"
1662
+ msgstr "Wann:"
1663
+
1664
+ #: app/view/event/content.php:34 app/view/event/single.php:120
1665
+ msgid "Where:"
1666
+ msgstr "Wo:"
1667
+
1668
+ #: app/view/event/content.php:125
1669
+ msgid "Calendar"
1670
+ msgstr ""
1671
+
1672
+ #: app/view/event/content.php:126
1673
+ msgid "View all events"
1674
+ msgstr "Alle Veranstaltungen anzeigen"
1675
+
1676
+ #: app/view/event/location.php:96
1677
+ msgid "Click to view map"
1678
+ msgstr "Klicken um die Karte anzuzeigen"
1679
+
1680
+ #: app/view/event/location.php:97
1681
+ msgid "View Full-Size Map"
1682
+ msgstr "Karte in Vollansicht anzeigen"
1683
+
1684
+ #: app/view/event/post.php:29
1685
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1686
+ msgstr "Veranstaltung aktualisiert. <a href=\"%s\">Veranstaltung ansehen</a>"
1687
+
1688
+ #: app/view/event/post.php:32
1689
+ msgid "Custom field updated."
1690
+ msgstr "Benutzerdefiniertes Feld aktualisiert."
1691
+
1692
+ #: app/view/event/post.php:33
1693
+ msgid "Custom field deleted."
1694
+ msgstr "Benutzerdefiniertes Feld gelöscht."
1695
+
1696
+ #: app/view/event/post.php:34
1697
+ msgid "Event updated."
1698
+ msgstr "Veranstaltung aktualisiert."
1699
+
1700
+ #. translators: %s: date and time of the revision
1701
+ #: app/view/event/post.php:38
1702
+ msgid "Event restored to revision from %s"
1703
+ msgstr "Veranstaltung wiederhergestellt nach Revision von %s"
1704
+
1705
+ #: app/view/event/post.php:43
1706
+ msgid "Event published. <a href=\"%s\">View event</a>"
1707
+ msgstr "Veranstaltung veröffentlicht. <a href=\"%s\">Veranstaltung ansehen</a>"
1708
+
1709
+ #: app/view/event/post.php:46
1710
+ msgid "Event saved."
1711
+ msgstr "Veranstaltung gespeichert."
1712
+
1713
+ #: app/view/event/post.php:48
1714
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
+ msgstr "Veranstaltung übermittelt. <a target=\"_blank\" href=\"%s\">Vorschau ansehen</a>"
1716
+
1717
+ #: app/view/event/post.php:52
1718
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
+ msgstr "Veranstaltung geplant für: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vorschau ansehen</a>"
1720
+
1721
+ #. translators: Publish box date format, see http:php.net/date
1722
+ #: app/view/event/post.php:54
1723
+ msgid "M j, Y @ G:i"
1724
+ msgstr "M j, Y um G:i Uhr"
1725
+
1726
+ #: app/view/event/post.php:58
1727
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
+ msgstr "Entwurf der Veranstaltung aktualisiert. <a target=\"_blank\" href=\"%s\">Vorschau ansehen</a>"
1729
+
1730
+ #: app/view/event/single.php:78
1731
+ msgid "Event was created in the %s time zone"
1732
+ msgstr "Der Termin wurde in der %s Zeitzone erstellt"
1733
+
1734
+ #: app/view/event/single.php:114
1735
+ msgid "Add to Calendar"
1736
+ msgstr "Zum Kalender hinzufügen"
1737
+
1738
+ #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
+ msgid "Cost:"
1740
+ msgstr "Preis:"
1741
+
1742
+ #: app/view/event/single.php:122
1743
+ msgid "Contact:"
1744
+ msgstr "Kontakt:"
1745
+
1746
+ #: app/view/calendar/view/agenda.php:169
1747
+ msgid "Categories:"
1748
+ msgstr "Kategorien:"
1749
+
1750
+ #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
+ #: public/admin/themes.php:29
1752
+ msgid "Tags:"
1753
+ msgstr "Schlagwörter:"
1754
+
1755
+ #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
+ #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
+ #: app/view/calendar/widget.php:374
1758
+ msgid "@ %s"
1759
+ msgstr "@ %s"
1760
+
1761
+ #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
+ msgid "g a"
1763
+ msgstr "g a"
1764
+
1765
+ #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
+ msgid "Reveal full day"
1767
+ msgstr "Ganzen Tag anzeigen"
1768
+
1769
+ #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
+ msgid "All-day"
1771
+ msgstr "Ganztägig"
1772
+
1773
+ #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
+ msgid "Now:"
1775
+ msgstr "Jetzt:"
1776
+
1777
+ #: app/view/calendar/view/week.php:67
1778
+ msgid "Week of %s"
1779
+ msgstr "Woche von %s"
1780
+
1781
+ #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
+ msgid "Upcoming Events"
1783
+ msgstr "Bevorstehende Veranstaltungen"
1784
+
1785
+ #: app/view/calendar/widget.php:38
1786
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
+ msgstr "All-in-One Event Kalender: Zeigt alle bevorstehenden Veranstaltungen in der Listenansicht"
1788
+
1789
+ #: app/view/calendar/widget.php:80
1790
+ msgid "Choose how to limit the upcoming events"
1791
+ msgstr "Wähle, wie du die bevorstehenden Termine beschränken möchtest"
1792
+
1793
+ #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
+ msgid "Events"
1795
+ msgstr "Veranstaltungen"
1796
+
1797
+ #: app/view/calendar/widget.php:93
1798
+ msgid "Days"
1799
+ msgstr "Tage"
1800
+
1801
+ #: app/view/calendar/widget.php:106
1802
+ msgid "Number of events to show"
1803
+ msgstr "Anzahl der Termine, die angezeigt werden sollen"
1804
+
1805
+ #: app/view/calendar/widget.php:115
1806
+ msgid "Number of days to show"
1807
+ msgstr "Anzahl der Tage, die angezeigt werden sollen"
1808
+
1809
+ #: app/view/calendar/widget.php:124
1810
+ msgid "Show events filtered for the following tags/categories"
1811
+ msgstr "Zeige Events die dem folgenden Filter für Tags/Kategorien entsprechen"
1812
+
1813
+ #: app/view/calendar/widget.php:141
1814
+ msgid "Show the subscribe button in the widget"
1815
+ msgstr "Zeige den abonnieren Knopf im Widget an"
1816
+
1817
+ #: app/view/calendar/widget.php:370
1818
+ msgid "There are no upcoming events."
1819
+ msgstr "Es gibt keine bevorstehenden Veranstaltungen."
1820
+
1821
+ #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
+ msgid "all-day"
1823
+ msgstr "ganztägig"
1824
+
1825
+ #: app/view/calendar/widget.php:372
1826
+ msgid "View Calendar"
1827
+ msgstr "Kalender anzeigen"
1828
+
1829
+ #: app/view/calendar/widget.php:375
1830
+ msgid "Add"
1831
+ msgstr "Hinzufügen"
1832
+
1833
+ #: app/view/calendar/page.php:260
1834
+ msgid "Subscribe to filtered calendar"
1835
+ msgstr "Gefilterten Kalender abonnieren"
1836
+
1837
+ #: app/view/calendar/page.php:261
1838
+ msgid "Subscribe"
1839
+ msgstr "Abonnieren"
1840
+
1841
+ #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
+ msgid "Get a Timely Calendar"
1843
+ msgstr "Timely Calendar holen"
1844
+
1845
+ #: app/view/calendar/subscribe-button.php:22
1846
+ msgid "Add to Timely Calendar"
1847
+ msgstr "Zum Timely Kalender hinzufügen"
1848
+
1849
+ #: app/view/calendar/subscribe-button.php:23
1850
+ msgid "Add to Google"
1851
+ msgstr "Zu Google hinzufügen"
1852
+
1853
+ #: app/view/calendar/subscribe-button.php:24
1854
+ msgid "Add to Outlook"
1855
+ msgstr "Zu Outlook hinzufügen"
1856
+
1857
+ #: app/view/calendar/subscribe-button.php:25
1858
+ msgid "Add to Apple Calendar"
1859
+ msgstr "Zum Apple Kalender hinzufügen"
1860
+
1861
+ #: app/view/calendar/subscribe-button.php:26
1862
+ msgid "Add to other calendar"
1863
+ msgstr "Zu anderem Kalender hinzufügen"
1864
+
1865
+ #: app/view/calendar/subscribe-button.php:29
1866
+ msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
+ msgstr "Die URL deines Timely Kalenders kopieren oder anklicken, um ihn zu deinem Rich-Text-Kalender hinzuzufügen"
1868
+
1869
+ #: app/view/calendar/subscribe-button.php:30
1870
+ msgid "Subscribe to this calendar in your Google Calendar"
1871
+ msgstr "Diesen Kalender in deinem Google Kalender abonnieren"
1872
+
1873
+ #: app/view/calendar/subscribe-button.php:31
1874
+ msgid "Subscribe to this calendar in MS Outlook"
1875
+ msgstr "Diesen Kalender im MS-Outlook Kalender abonnieren"
1876
+
1877
+ #: app/view/calendar/subscribe-button.php:32
1878
+ msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
+ msgstr "Diesen Kalender in einem iCal/Apple Kalender abonnieren"
1880
+
1881
+ #: app/view/calendar/subscribe-button.php:33
1882
+ msgid "Subscribe to this calendar in another plain-text calendar"
1883
+ msgstr "Diesen Kalender in einem reinen Textkalender abonnieren."
1884
+
1885
+ #: app/view/calendar/taxonomy.php:97
1886
+ msgid "Clear category filter"
1887
+ msgstr "Filter für Kategorie zurücksetzen"
1888
+
1889
+ #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
+ #: lib/html/element/setting/tags-categories.php:47
1891
+ msgid "Categories"
1892
+ msgstr "Kategorien"
1893
+
1894
+ #: app/view/calendar/taxonomy.php:99
1895
+ msgid "Clear tag filter"
1896
+ msgstr "Filter für Schlagwort zurücksetzen"
1897
+
1898
+ #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
+ #: lib/html/element/setting/tags-categories.php:39
1900
+ msgid "Tags"
1901
+ msgstr "Schlagwörter"
1902
+
1903
+ #: app/view/calendar/view/agenda.php:142
1904
+ msgid "Collapse All"
1905
+ msgstr "Alle verbergen"
1906
+
1907
+ #: app/view/calendar/view/agenda.php:143
1908
+ msgid "Expand All"
1909
+ msgstr "Alle zeigen"
1910
+
1911
+ #: app/view/calendar/view/agenda.php:166
1912
+ msgid "There are no upcoming events to display at this time."
1913
+ msgstr "Zur Zeit gibt es keine bevorstehenden Veranstaltungen, die angezeigt werden können."
1914
+
1915
+ #: app/view/calendar/view/agenda.php:168
1916
+ msgid "Read more"
1917
+ msgstr "Weiter lesen"
1918
+
1919
+ #: app/view/admin/tickets.php:86
1920
+ msgid "Sales"
1921
+ msgstr ""
1922
+
1923
+ #: app/view/admin/tickets.php:87
1924
+ msgid "How do you want the tickets revenue to be sent to you?"
1925
+ msgstr ""
1926
+
1927
+ #: app/view/admin/tickets.php:88
1928
+ msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
+ msgstr ""
1930
+
1931
+ #: app/view/admin/tickets.php:91
1932
+ msgid "Cheque"
1933
+ msgstr ""
1934
+
1935
+ #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
+ msgid "Paypal"
1937
+ msgstr "Paypal"
1938
+
1939
+ #: app/view/admin/tickets.php:94
1940
+ msgid "Save Changes"
1941
+ msgstr ""
1942
+
1943
+ #: app/view/admin/tickets.php:95
1944
+ msgid "Date"
1945
+ msgstr ""
1946
+
1947
+ #: app/view/admin/tickets.php:96
1948
+ msgid "Event"
1949
+ msgstr ""
1950
+
1951
+ #: app/view/admin/tickets.php:97
1952
+ msgid "Purchaser"
1953
+ msgstr ""
1954
+
1955
+ #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
+ #: public/admin/box_event_cost.php:35
1957
+ msgid "Tickets"
1958
+ msgstr "Karten"
1959
+
1960
+ #: app/view/admin/tickets.php:101
1961
+ msgid "Total"
1962
+ msgstr ""
1963
+
1964
+ #: app/view/admin/tickets.php:102
1965
+ msgid "Sign Out"
1966
+ msgstr ""
1967
+
1968
+ #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
+ #: app/view/admin/widget-creator.php:47
1970
+ msgid "Widget Creator"
1971
+ msgstr "Widget Ersteller"
1972
+
1973
+ #: app/view/admin/widget-creator.php:74
1974
+ msgctxt "meta box"
1975
+ msgid "Widget Creator"
1976
+ msgstr "Widget Ersteller"
1977
+
1978
+ #: app/view/admin/widget-creator.php:131
1979
+ msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
+ msgstr "Generiere ein coe snippet, welches auf einer <strong>externen website</strong> dazu verwendet wird um dort neue Kalender und Widgets einzubauen."
1981
+
1982
+ #: app/view/admin/widget-creator.php:132
1983
+ msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
+ msgstr "<h4>Achtung!</h4><p>Diese Widget funktionieren <strong>nur auf externen websites</strong> und können einen Konflikt verursachen, wenn Sie auf dieser Website verwendet werden.</p>"
1985
+
1986
+ #: app/view/admin/widget-creator.php:134
1987
+ msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
+ msgstr "<p>Verwende <a href=\"%s\"><strong>Aussehen</strong> &gt; <strong>Widgets</strong></a> wie jedes andere Widget, um Veranstaltungs widgets zur WordPress Website hinzuzfügen, oder verwende <a href=\"%s\" target=\"_blank\">Shortcodes</a> um den kompletten Kalender einzubetten.</strong></p>"
1989
+
1990
+ #: app/view/admin/widget-creator.php:140
1991
+ msgid "Paste this code onto your site:"
1992
+ msgstr "Füge diesen Code in deine Seite ein:"
1993
+
1994
+ #: app/view/admin/widget-creator.php:141
1995
+ msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
+ msgstr "Dieser Code wird aktualisiert um die Einstellungs-Änderungen zu reflektieren. Geänderte Einstellungen ändern keine bestehenden Widgets."
1997
+
1998
+ #: app/view/calendar/page.php:54
1999
+ msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
+ msgstr "Beim Laden des Kalenders ist ein Fehler aufgetreten. Bitte kontaktiere den Seitenadministrator, dass die Kalenderansichten konfiguriert werden müssen."
2001
+
2002
+ #: app/view/calendar/page.php:74
2003
+ msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
+ msgstr "Kalender konnte die %s Ansicht nicht erstellen und benutzt die Agenda-Ansicht. Bitte überprüfen ob die aktuellste Version des Kalender-Zusatzes installiert ist."
2005
+
2006
+ #: app/view/admin/settings.php:193
2007
+ msgid "Phone Number:"
2008
+ msgstr ""
2009
+
2010
+ #: app/view/admin/settings.php:194
2011
+ msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
+ msgstr ""
2013
+
2014
+ #: app/view/admin/settings.php:197
2015
+ msgid "Sign Up"
2016
+ msgstr ""
2017
+
2018
+ #: app/view/admin/settings.php:198
2019
+ msgid "Sign In"
2020
+ msgstr ""
2021
+
2022
+ #: app/view/admin/settings.php:212
2023
+ msgid "Save Settings"
2024
+ msgstr "Einstellungen speichern"
2025
+
2026
+ #: app/view/admin/settings.php:219
2027
+ msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
+ msgstr "Falls das Formular nicht angezeigt wird, bitte <a href=\"%s\">diesem Link</a> folgen."
2029
+
2030
+ #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
+ msgid "Theme Options"
2032
+ msgstr "Theme Einstellungen"
2033
+
2034
+ #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
+ msgid "Calendar Theme Options"
2036
+ msgstr "Einstellungen des Kalender Themes"
2037
+
2038
+ #: app/view/admin/theme-options.php:79
2039
+ msgctxt "meta box"
2040
+ msgid "Calendar Theme Options"
2041
+ msgstr "Einstellungen des Kalender Themes"
2042
+
2043
+ #: app/view/admin/theme-options.php:133
2044
+ msgid "General"
2045
+ msgstr "Allgemein"
2046
+
2047
+ #: app/view/admin/theme-options.php:136
2048
+ msgid "Tables"
2049
+ msgstr "Tabellen"
2050
+
2051
+ #: app/view/admin/theme-options.php:139
2052
+ msgid "Buttons"
2053
+ msgstr "Schaltflächen"
2054
+
2055
+ #: app/view/admin/theme-options.php:142
2056
+ msgid "Forms"
2057
+ msgstr "Formulare"
2058
+
2059
+ #: app/view/admin/theme-options.php:145
2060
+ msgid "Calendar general"
2061
+ msgstr "Kalender allgemein"
2062
+
2063
+ #: app/view/admin/theme-options.php:148
2064
+ msgid "Month/week/day view"
2065
+ msgstr "Montats-/Wochen-/Tagesansicht"
2066
+
2067
+ #: app/view/admin/theme-options.php:151
2068
+ msgid "Agenda view"
2069
+ msgstr "Listenansicht"
2070
+
2071
+ #: app/view/admin/theme-options.php:169
2072
+ msgid "Save Options"
2073
+ msgstr "Einstellungen speichern"
2074
+
2075
+ #: app/view/admin/theme-options.php:177
2076
+ msgid "Reset to Defaults"
2077
+ msgstr "Standard wiederherstellen"
2078
+
2079
+ #: app/view/admin/theme-switching.php:31
2080
+ msgid "All-in-One Event Calendar: Themes"
2081
+ msgstr "All-in-One Event Kalender: Themes"
2082
+
2083
+ #: app/view/admin/tickets.php:36
2084
+ msgid "Ticketing"
2085
+ msgstr ""
2086
+
2087
+ #: app/view/admin/tickets.php:37
2088
+ msgid "Ticketing<sup>beta</sup>"
2089
+ msgstr ""
2090
+
2091
+ #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
+ msgid "Time.ly Ticketing<sup>beta</sup>"
2093
+ msgstr ""
2094
+
2095
+ #: app/view/admin/settings.php:98
2096
+ msgctxt "meta box"
2097
+ msgid "Timely"
2098
+ msgstr "Timely"
2099
+
2100
+ #: app/view/admin/settings.php:140
2101
+ msgid "Viewing Events"
2102
+ msgstr "Veranstaltungen ansehen"
2103
+
2104
+ #: app/view/admin/settings.php:143
2105
+ msgid "Adding/Editing Events"
2106
+ msgstr "Versanstaltungen hinzufügen/bearbeiten"
2107
+
2108
+ #: app/view/admin/settings.php:146
2109
+ msgid "Advanced"
2110
+ msgstr "Fortgeschritten"
2111
+
2112
+ #: app/view/admin/settings.php:148
2113
+ msgid "Advanced Settings"
2114
+ msgstr "Erweiterte Einstellungen"
2115
+
2116
+ #: app/view/admin/settings.php:149
2117
+ msgid "Shortcodes"
2118
+ msgstr "Shortcodes"
2119
+
2120
+ #: app/view/admin/settings.php:150
2121
+ msgid "Email Templates"
2122
+ msgstr "E-Mail Vorlagen"
2123
+
2124
+ #: app/view/admin/settings.php:151
2125
+ msgid "External Services"
2126
+ msgstr "Externe Dienste"
2127
+
2128
+ #: app/view/admin/settings.php:152
2129
+ msgid "Cache Report"
2130
+ msgstr "Cache Bericht"
2131
+
2132
+ #: app/view/admin/settings.php:171
2133
+ msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
+ msgstr ""
2135
+
2136
+ #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
+ #: public/admin/box_ask_customer_review.php:112
2138
+ #: public/admin/box_ask_customer_review.php:126
2139
+ #: public/admin/box_ask_customer_review.php:140
2140
+ #: public/admin/box_ask_customer_review.php:158
2141
+ #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
+ msgid "This field is required."
2143
+ msgstr ""
2144
+
2145
+ #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
+ msgid "Register"
2147
+ msgstr "Anmelden"
2148
+
2149
+ #: app/view/admin/settings.php:184
2150
+ msgid "Sign in"
2151
+ msgstr ""
2152
+
2153
+ #: app/view/admin/settings.php:185
2154
+ msgid "You are successfully signed in to <b>Timely Network</b>."
2155
+ msgstr ""
2156
+
2157
+ #: app/view/admin/settings.php:186
2158
+ msgid "Sign out"
2159
+ msgstr ""
2160
+
2161
+ #: app/view/admin/settings.php:187
2162
+ msgid "Hide form"
2163
+ msgstr ""
2164
+
2165
+ #: app/view/admin/settings.php:188
2166
+ msgid "Show form"
2167
+ msgstr ""
2168
+
2169
+ #: app/view/admin/settings.php:189
2170
+ msgid "Full Name:"
2171
+ msgstr ""
2172
+
2173
+ #: app/view/admin/settings.php:190
2174
+ msgid "Email:"
2175
+ msgstr "Email:"
2176
+
2177
+ #: app/view/admin/settings.php:191
2178
+ msgid "Password:"
2179
+ msgstr ""
2180
+
2181
+ #: app/view/admin/settings.php:192
2182
+ msgid "Confirm Password:"
2183
+ msgstr ""
2184
+
2185
+ #: app/view/admin/get-repeat-box.php:483
2186
+ msgid "fourth"
2187
+ msgstr "vierte"
2188
+
2189
+ #: app/view/admin/get-repeat-box.php:495
2190
+ msgid "Sunday"
2191
+ msgstr "Sonntag"
2192
+
2193
+ #: app/view/admin/get-repeat-box.php:496
2194
+ msgid "Monday"
2195
+ msgstr "Montag"
2196
+
2197
+ #: app/view/admin/get-repeat-box.php:497
2198
+ msgid "Tuesday"
2199
+ msgstr "Dienstag"
2200
+
2201
+ #: app/view/admin/get-repeat-box.php:498
2202
+ msgid "Wednesday"
2203
+ msgstr "Mittwoch"
2204
+
2205
+ #: app/view/admin/get-repeat-box.php:499
2206
+ msgid "Thursday"
2207
+ msgstr "Donnerstag"
2208
+
2209
+ #: app/view/admin/get-repeat-box.php:500
2210
+ msgid "Friday"
2211
+ msgstr "Freitag"
2212
+
2213
+ #: app/view/admin/get-repeat-box.php:501
2214
+ msgid "Saturday"
2215
+ msgstr "Samstag"
2216
+
2217
+ #: app/view/admin/get-repeat-box.php:503
2218
+ msgid "day"
2219
+ msgstr "Tag"
2220
+
2221
+ #: app/view/admin/get-repeat-box.php:504
2222
+ msgid "weekday"
2223
+ msgstr "Wochentag"
2224
+
2225
+ #: app/view/admin/get-repeat-box.php:505
2226
+ msgid "weekend day"
2227
+ msgstr "Tag am Wochenende"
2228
+
2229
+ #: app/view/admin/get-repeat-box.php:571
2230
+ msgid "year(s)"
2231
+ msgstr "Jahr(e)"
2232
+
2233
+ #: app/view/admin/nav.php:22
2234
+ msgid "<a href=\"%s\">Settings</a>"
2235
+ msgstr "<a href=\"%s\">Einstellungen</a>"
2236
+
2237
+ #: app/view/admin/nav.php:28
2238
+ msgid "<a href=\"%s\">Check for updates</a>"
2239
+ msgstr ""
2240
+
2241
+ #: app/view/admin/organize.php:100
2242
+ msgid "Organize Events"
2243
+ msgstr "Veranstaltungen organisieren"
2244
+
2245
+ #: app/view/admin/settings.php:30
2246
+ msgid "All-in-One Event Calendar: Settings"
2247
+ msgstr "All-in-One Event Kalender: Einstellungen"
2248
+
2249
+ #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
+ #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
+ msgid "Settings"
2252
+ msgstr "Einstellungen"
2253
+
2254
+ #: app/view/admin/settings.php:89
2255
+ msgctxt "meta box"
2256
+ msgid "General Settings"
2257
+ msgstr "Allgemeine Einstellungen"
2258
+
2259
+ #: app/view/admin/get-repeat-box.php:480
2260
+ msgid "first"
2261
+ msgstr "erste"
2262
+
2263
+ #: app/view/admin/get-repeat-box.php:481
2264
+ msgid "second"
2265
+ msgstr "zweite"
2266
+
2267
+ #: app/view/admin/get-repeat-box.php:482
2268
+ msgid "third"
2269
+ msgstr "dritte"
2270
+
2271
+ #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
+ msgid "Import Feeds"
2273
+ msgstr ""
2274
+
2275
+ #: app/view/admin/calendar-feeds.php:48
2276
+ msgctxt "meta box"
2277
+ msgid "Feed Subscriptions"
2278
+ msgstr "Feed Abonnements"
2279
+
2280
+ #: app/view/admin/calendar-feeds.php:65
2281
+ msgid "All-in-One Event Calendar: Import Feeds"
2282
+ msgstr ""
2283
+
2284
+ #: app/view/admin/event-category.php:30
2285
+ msgid "Color"
2286
+ msgstr "Farbe"
2287
+
2288
+ #: app/view/admin/event-category.php:32
2289
+ msgid "Image"
2290
+ msgstr "Bild"
2291
+
2292
+ #: app/view/admin/event-category.php:155
2293
+ msgid "Category Color"
2294
+ msgstr "Farbe der Kategorie"
2295
+
2296
+ #: app/view/admin/event-category.php:156
2297
+ msgid "Events in this category will be identified by this color"
2298
+ msgstr "Veranstaltungen in dieser Kategorie, werden mit dieser Farbe identifiziert"
2299
+
2300
+ #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
+ msgid "Category Image"
2302
+ msgstr "Bild der Kategorie"
2303
+
2304
+ #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
+ msgid "Add Image"
2306
+ msgstr "Bild hinzufügen"
2307
+
2308
+ #: app/view/admin/event-category.php:195
2309
+ msgid "Remove Image"
2310
+ msgstr "Bild entfernen"
2311
+
2312
+ #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
+ msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
+ msgstr "Dieser Kategorie kann ein optionales Bild zuordnet werden. Empfohlene Größe: quadratisch, mindestens 400&times;400 Pixel."
2315
+
2316
+ #: app/view/admin/get-repeat-box.php:94
2317
+ msgid "times"
2318
+ msgstr "mal"
2319
+
2320
+ #: app/view/admin/get-repeat-box.php:164
2321
+ msgid "Recurrence rule cannot be empty."
2322
+ msgstr "Wiederholungsregel darf nicht leer sein."
2323
+
2324
+ #: app/view/admin/get-repeat-box.php:182
2325
+ msgid "Recurrence rule was not provided."
2326
+ msgstr "Wiederholungsregel wurde nicht angegeben."
2327
+
2328
+ #: app/view/admin/get-repeat-box.php:209
2329
+ msgid "Never"
2330
+ msgstr "Niemals"
2331
+
2332
+ #: app/view/admin/get-repeat-box.php:210
2333
+ msgid "After"
2334
+ msgstr "Nach"
2335
+
2336
+ #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
+ msgid "On date"
2338
+ msgstr "Am Datum"
2339
+
2340
+ #: app/view/admin/get-repeat-box.php:247
2341
+ msgid "day(s)"
2342
+ msgstr "Tag(e)"
2343
+
2344
+ #: app/view/admin/get-repeat-box.php:330
2345
+ msgid "week(s)"
2346
+ msgstr "Woche(n)"
2347
+
2348
+ #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
+ #: lib/recurrence/rule.php:298
2350
+ msgid "last"
2351
+ msgstr "letzte"
2352
+
2353
+ #: app/view/admin/get-repeat-box.php:426
2354
+ msgid "month(s)"
2355
+ msgstr "Monat(e)"
2356
+
2357
+ #: app/model/settings.php:929
2358
+ msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
+ msgstr "<strong>Verlinke CSS</strong> im <code>&lt;head&gt;</code>-Abschnitt, wenn der Datei-Cache nicht zur Verfügung steht."
2360
+
2361
+ #: app/model/settings.php:932
2362
+ msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
+ msgstr "Verwende diese Option, wenn der Datei-Cache nicht zur Verfügung steht und du CSS als Link anstatt\" inline\" einbinden möchtest."
2364
+
2365
+ #: app/model/settings.php:944
2366
+ msgid "Current <strong>robots.txt</strong> on this site"
2367
+ msgstr "Aktuelle <strong>robots.txt</strong> dieser Seite"
2368
+
2369
+ #: app/model/settings.php:948
2370
+ msgid ""
2371
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
+ "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
+ "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
+ "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
+ "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
+ msgstr "Der Roboterausschluss Standard (Robot Exclusion Standard), auch bekannt als Robots Exclusion Protocol oder <code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code> Protokoll, ist eine Vereinbarung für kooperierende Web Crawler und andere Web Roboter und regelt den Zugriff auf Teile oder die Gesamtheit einer Webseite, die ansonsten öffentlich sichtbar ist. Du kannst die Einstellungen manuell ändern, indem du die <code>robots.txt</code> editierst, die sich im Root-Verzeichnis von deinem WordPress befindet."
2377
+
2378
+ #: app/model/settings.php:965
2379
+ msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2380
+ msgstr "<strong>Veröffentliche, promote, und teile meine öffentlichen Events</strong> im Timely-Netzwerk. (<a href=\"%s\" target=\"_blank\">Mehr Informationen &#187;</a>)"
2381
+
2382
+ #: app/model/settings.php:988
2383
+ msgid "Templates cache improves site performance"
2384
+ msgstr "Vorlagen Cache verbessert die Leistung der Seite"
2385
+
2386
+ #: app/model/settings.php:1001
2387
+ msgid "Display events in <strong>calendar time zone</strong>"
2388
+ msgstr ""
2389
+
2390
+ #: app/model/settings.php:1004
2391
+ msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2392
+ msgstr ""
2393
+
2394
+ #: app/view/admin/add-new-event.php:26
2395
+ msgid "Event Details"
2396
+ msgstr "Details der Veranstaltung"
2397
+
2398
+ #: app/view/admin/add-new-event.php:423
2399
+ msgid "Set banner image"
2400
+ msgstr "Banner Bild festlegen"
2401
+
2402
+ #: app/view/admin/add-new-event.php:424
2403
+ msgid "Remove banner image"
2404
+ msgstr "Banner Bild entfernen"
2405
+
2406
+ #: app/view/admin/add-ons.php:68
2407
+ msgid "Add-ons for All In One Event Calendar"
2408
+ msgstr "Erweiterungen für den All in One Event Kalender"
2409
+
2410
+ #: app/view/admin/add-ons.php:71
2411
+ msgid "Browse All Extensions"
2412
+ msgstr "Alle Erweiterungen durchsuchen"
2413
+
2414
+ #: app/view/admin/add-ons.php:74
2415
+ msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2416
+ msgstr "Diese Zusätze erweitern die Funktionalitäten des All-In-One Event Kalenders."
2417
+
2418
+ #: app/view/admin/add-ons.php:77
2419
+ msgid "There was an error retrieving the extensions list from the server. Please try again later."
2420
+ msgstr "Ein Fehler ist aufgetreten beim abholen der Zusatz-Liste vom Server. Bitte versuchen Sie es später nochmal."
2421
+
2422
+ #: app/view/admin/all-events.php:16
2423
+ msgid "Author"
2424
+ msgstr "Autor"
2425
+
2426
+ #: app/view/admin/all-events.php:17
2427
+ msgid "Post Date"
2428
+ msgstr "Datum des Eintrags"
2429
+
2430
+ #: app/view/admin/all-events.php:18
2431
+ msgid "Event date/time"
2432
+ msgstr "Veranstaltung Datum/Zeit"
2433
+
2434
+ #: app/view/admin/all-events.php:22
2435
+ msgid "Ticket Types"
2436
+ msgstr ""
2437
+
2438
+ #: app/view/admin/all-events.php:134
2439
+ msgid "Show All "
2440
+ msgstr "Alle anzeigen "
2441
+
2442
+ #: app/view/admin/all-events.php:147
2443
+ msgid "Show All Authors"
2444
+ msgstr ""
2445
+
2446
+ #: app/model/settings.php:746
2447
+ msgid "Strict compatibility content filtering"
2448
+ msgstr "Strenge Kompatibilitätsinhaltsfilterung"
2449
+
2450
+ #: app/model/settings.php:758
2451
+ msgid " <strong>Hide featured image</strong> from event details page"
2452
+ msgstr " <strong>Verberge Featured-Bild</strong> auf der Detailseite der Veranstaltung"
2453
+
2454
+ #: app/model/settings.php:761
2455
+ msgid "Select this option if your theme already displays each post's featured image."
2456
+ msgstr "Diese Option wählen, wenn dein Theme bereits die Featured-Bilder des Posts anzeigt."
2457
+
2458
+ #: app/model/settings.php:772
2459
+ msgid "Input dates in this format"
2460
+ msgstr "Daten in diesem Format angeben"
2461
+
2462
+ #: app/model/settings.php:777
2463
+ msgid "Default (d/m/yyyy)"
2464
+ msgstr "Standard (d/m/yyyy)"
2465
+
2466
+ #: app/model/settings.php:781
2467
+ msgid "US (m/d/yyyy)"
2468
+ msgstr "US (M/T/JJJJ)"
2469
+
2470
+ #: app/model/settings.php:785
2471
+ msgid "ISO 8601 (yyyy-m-d)"
2472
+ msgstr "ISO 8601 (yyyy-m-d)"
2473
+
2474
+ #: app/model/settings.php:789
2475
+ msgid "Dotted (m.d.yyyy)"
2476
+ msgstr "Dotted (m.d.yyyy)"
2477
+
2478
+ #: app/model/settings.php:801
2479
+ msgid " Use <strong>24h time</strong> in time pickers"
2480
+ msgstr "<strong>24h-Format</strong> bei der Zeitauswahl verwenden"
2481
+
2482
+ #: app/model/settings.php:812
2483
+ msgid "<strong>Disable address autocomplete</strong> function"
2484
+ msgstr "<strong>Automatische Adressenvervollständigung</strong> deaktivieren"
2485
+
2486
+ #: app/model/settings.php:823
2487
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2488
+ msgstr "Verwende die konfigurierte <strong>Region</strong> (WordPress lokal) als Vorgabe für die Funktion der Adressenvervollständigung"
2489
+
2490
+ #: app/model/settings.php:839
2491
+ msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2492
+ msgstr "Oberhalb des Kalenders, berechtigten Nutzern, die alte <strong>Deine Veranstaltung posten</strong> Schaltfläche anzeigen"
2493
+
2494
+ #: app/model/settings.php:842
2495
+ msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2496
+ msgstr "Installiere die <a target=\"_blank\" href=\"http://time.ly/\">Interaktive Front-End Erweiterung</a> für die <strong>Front-End Eingabemaske</strong>."
2497
+
2498
+ #: app/model/settings.php:863
2499
+ msgid "Move calendar into this DOM element"
2500
+ msgstr "Kalender in dieses DOM-Element verschieben"
2501
+
2502
+ #: app/model/settings.php:865
2503
+ msgid ""
2504
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2505
+ "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2506
+ "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2507
+ "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2508
+ "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2509
+ "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2510
+ "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2511
+ "\t\t\t\t\t\tby the calendar."
2512
+ msgstr ""
2513
+ "Optional. Verwende diesen JavaScript-basierten Shortcut zum Platzieren\n"
2514
+ "→\t→\t→\t→\t→\t→\t des Kalenders als DOM-Element, anstelle des üblichen Seiteninhalts-Containers \n"
2515
+ "→\t→\t→\t→\t→\t→\tfalls es dir nicht möglich ist, ein entsprechendes Seiten-Template \n"
2516
+ "→\t→\t→\t→\t→\t→\t für die Kalender-Seite zu erstellen. Zum Anwenden einen\n"
2517
+ "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2518
+ "→\t→\t→\t→\t→\t→\tjQuery selector</a> einsetzen, der ein einzelnes DOM-Element evaluiert. \n"
2519
+ "→\t→\t→\t→\t→\t→\tJede bereits existierende Auszeichnung innerhalb des Zieles\n"
2520
+ "→\t→\t→\t→\t→\t→\twird durch den Kalender ersetzt."
2521
+
2522
+ #: app/model/settings.php:884
2523
+ msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2524
+ msgstr "<strong>Überspringe <tt>in_the_loop()</tt> Überprüfen </strong> der Schutzfunktion vor mehrfacher Ausgabe des Kalenders."
2525
+
2526
+ #: app/model/settings.php:887
2527
+ msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2528
+ msgstr "Wenn dein Kalender nicht auf der Kalenderseite erscheint, versuche diese Option zu aktivieren. Dies kann notwendig sein für die Kompatibilität mit einigen wenigen Themes, die <tt>the_content()</tt> von ausserhalb des Loops benötigen. Belasse es ansonsten nicht aktiviert."
2529
+
2530
+ #: app/model/settings.php:899
2531
+ msgid "Disable <strong>gzip</strong> compression."
2532
+ msgstr "<strong>gzip</strong> Komprimierung deaktivieren"
2533
+
2534
+ #: app/model/settings.php:902
2535
+ msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2536
+ msgstr "Verwende diese Option, wenn der Kalender nicht \"responsive\" angelegt ist. Das Problem ist <a href=\"http://support.time.ly/disable-gzip-compression/\">hier genauer beschrieben</a>. (Ab Version 2.1 aufwärts ist gzip standardmäßig aus Kompatibilitätsgründen deaktiviert.)"
2537
+
2538
+ #: app/model/settings.php:914
2539
+ msgid "Use frontend rendering."
2540
+ msgstr "Verwende frontend rendering."
2541
+
2542
+ #: app/model/settings.php:917
2543
+ msgid "Renders calendar views on the client rather than the server; can improve performance."
2544
+ msgstr "Der Kalender wird im client gerendet und nicht servseitig; kann die Performance verbessern."
2545
+
2546
+ #: app/model/settings.php:493 app/view/calendar/widget.php:128
2547
+ msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2548
+ msgstr "Zum Löschen, &#8984;/<abbr class=\"initialism\">Strg</abbr> halten und auf die Auswahl klicken."
2549
+
2550
+ #: app/model/settings.php:508
2551
+ msgid "Default calendar start date (optional)"
2552
+ msgstr "Standard Startdatum des Kalenders (optional)"
2553
+
2554
+ #: app/model/settings.php:519
2555
+ msgid "Agenda pages show at most"
2556
+ msgstr "Liste - Seiten maximal anzeigen"
2557
+
2558
+ #: app/model/settings.php:532
2559
+ msgid "Week/Day view starts at"
2560
+ msgstr "Wochen-/Tagesansicht startet mit:"
2561
+
2562
+ #: app/model/settings.php:545
2563
+ msgid "Week/Day view ends at"
2564
+ msgstr "Wochen-/Tagesansicht endet mit"
2565
+
2566
+ #: app/model/settings.php:558
2567
+ msgid "<strong>Word-wrap event stubs</strong> in Month view"
2568
+ msgstr "<strong>Zeilenumbruch bei Unterzeile der Veranstaltung</strong> in der Monatsansicht"
2569
+
2570
+ #: app/model/settings.php:561
2571
+ msgid "Only applies to events that span a single day."
2572
+ msgstr "Bezieht sich nur auf Veranstaltungen, die sich über einen einzelnen Tag erstrecken."
2573
+
2574
+ #: app/model/settings.php:573
2575
+ msgid ""
2576
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2577
+ "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2578
+ "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2579
+ "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2580
+ "\t\t\t\t\t\tfrom last day shown</strong>"
2581
+ msgstr ""
2582
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2583
+ "→\t→\t→\t→\t→\t→\tdata-original-title=\"These include Agenda view,\n"
2584
+ "→\t→\t→\t→\t→\t→\tthe Upcoming Events widget, and some extended views.\">\n"
2585
+ "→\t→\t→\t→\t→\t→\tListen-ähnliche Ansichten</span>, <strong>beinhalten alle Ereignisse\n"
2586
+ "→\t→\t→\t→\t→\t→\tvom letzten angezeigten Tag</strong>"
2587
+
2588
+ #: app/model/settings.php:589
2589
+ msgid "Keep all events <strong>expanded</strong> in Agenda view"
2590
+ msgstr "Alle Veranstaltungen als <strong>erweitert</strong> in der Listenansicht behalten."
2591
+
2592
+ #: app/model/settings.php:601
2593
+ msgid "<strong>Show year</strong> in calendar date labels"
2594
+ msgstr "In Datumsbeschriftungen des Kalenders das <strong>Jahr anzeigen</strong> "
2595
+
2596
+ #: app/model/settings.php:613
2597
+ msgid "<strong>Show location in event titles</strong> in calendar views"
2598
+ msgstr " In den Kalenderansichten <strong>Veranstaltungsort in Veranstaltungstiteln anzeigen</strong>"
2599
+
2600
+ #: app/model/settings.php:625
2601
+ msgid "<strong>Exclude</strong> events from search results"
2602
+ msgstr "Veranstaltungen von Suchergebnissen <strong>ausschliessen</strong>"
2603
+
2604
+ #: app/model/settings.php:637
2605
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2606
+ msgstr "Schaltflächen <strong>Abonnieren</strong> und <strong>Zum Kalender hinzufügen</strong> in Kalender- und Einzelveranstaltungsansicht verstecken"
2607
+
2608
+ #: app/model/settings.php:649
2609
+ msgid "Hide <strong>Get a Timely Calendar</strong> button"
2610
+ msgstr "Verstecke <strong>Get a Timely Calendar</strong>"
2611
+
2612
+ #: app/model/settings.php:661
2613
+ msgid " Hide <strong>Google Maps</strong> until clicked"
2614
+ msgstr "<strong>Google Maps</strong> verstecken bis es angeklickt wird"
2615
+
2616
+ #: app/model/settings.php:673
2617
+ msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2618
+ msgstr "<strong>Anheften des Filtermenüs</strong> am oberen Fensterrand, für permanente Sichtbarkeit beim Scrollen."
2619
+
2620
+ #: app/model/settings.php:676
2621
+ msgid "Only applies to first visible calendar found on the page."
2622
+ msgstr "Trifft nur für den ersten, sichtbaren Kalender der Seite zu."
2623
+
2624
+ #: app/model/settings.php:688
2625
+ msgid "Offset affixed filter bar vertically by"
2626
+ msgstr "Vertikaler Versatz der Filterleiste um"
2627
+
2628
+ #: app/model/settings.php:703
2629
+ msgid "Wide screens only (&#8805; 1200px)"
2630
+ msgstr "Nur für Breitbildschirme (&#8805; 1200px)"
2631
+
2632
+ #: app/model/settings.php:718
2633
+ msgid "Tablets only (< 980px)"
2634
+ msgstr "Nur für Tablets (< 980px)"
2635
+
2636
+ #: app/model/settings.php:733
2637
+ msgid "Phones only (< 768px)"
2638
+ msgstr "Nur für Smartphones (< 768px)"
2639
+
2640
+ #: app/model/api.php:456
2641
+ msgid "Not available"
2642
+ msgstr ""
2643
+
2644
+ #: app/model/api.php:659
2645
+ msgid "%s.<br/>Detail: %s."
2646
+ msgstr ""
2647
+
2648
+ #: app/model/api.php:664
2649
+ msgid "API URL: %s.<br/>Detail: %s - %s"
2650
+ msgstr ""
2651
+
2652
+ #: app/model/api.php:672
2653
+ msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2654
+ msgstr ""
2655
+
2656
+ #: app/model/api.php:679
2657
+ msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2658
+ msgstr ""
2659
+
2660
+ #: app/model/event/parent.php:186
2661
+ msgid "Edit &#8220;%s&#8221;"
2662
+ msgstr "Bearbeiten von &#8220;%s&#8221;"
2663
+
2664
+ #: app/model/event/parent.php:193
2665
+ msgid "Base Event"
2666
+ msgstr "Standard Veranstaltung"
2667
+
2668
+ #: app/model/review.php:169
2669
+ msgid "Feedback provided by user"
2670
+ msgstr ""
2671
+
2672
+ #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2673
+ msgid "Name"
2674
+ msgstr "Name"
2675
+
2676
+ #: app/model/review.php:173
2677
+ msgid "E-mail"
2678
+ msgstr ""
2679
+
2680
+ #: app/model/review.php:175
2681
+ msgid "Site URL"
2682
+ msgstr ""
2683
+
2684
+ #: app/model/review.php:177
2685
+ msgid "Message"
2686
+ msgstr ""
2687
+
2688
+ #: app/model/settings.php:401
2689
+ #: lib/html/element/setting/calendar-page-selector.php:50
2690
+ msgid "Calendar page"
2691
+ msgstr "Kalenderseite"
2692
+
2693
+ #: app/model/settings.php:411
2694
+ msgid "Week starts on"
2695
+ msgstr "Woche beginnt am"
2696
+
2697
+ #: app/model/settings.php:424
2698
+ msgid "Available views"
2699
+ msgstr "Verfügbare Ansichten"
2700
+
2701
+ #: app/model/settings.php:432
2702
+ msgid "Agenda"
2703
+ msgid_plural "Agenda"
2704
+ msgstr[0] "Liste"
2705
+ msgstr[1] ""
2706
+
2707
+ #: app/model/settings.php:443
2708
+ msgid "Day"
2709
+ msgid_plural "Day"
2710
+ msgstr[0] "Tag"
2711
+ msgstr[1] ""
2712
+
2713
+ #: app/model/settings.php:454
2714
+ msgid "Month"
2715
+ msgid_plural "Month"
2716
+ msgstr[0] "Monat"
2717
+ msgstr[1] ""
2718
+
2719
+ #: app/model/settings.php:465
2720
+ msgid "Week"
2721
+ msgid_plural "Week"
2722
+ msgstr[0] "Woche"
2723
+ msgstr[1] ""
2724
+
2725
+ #: app/model/settings.php:479
2726
+ msgid "Timezone"
2727
+ msgstr "Zeitzone"
2728
+
2729
+ #: app/model/settings.php:492
2730
+ msgid "Preselected calendar filters"
2731
+ msgstr "Vorausgewählte Kalenderfilter"
2732
+
2733
+ #: app/controller/javascript.php:509
2734
+ msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2735
+ msgstr "Etwas ging schief beim abholen der Events.<br>Der Status ist: %STATUS% <br>Der ausgelöste Fehler war: %ERROR%"
2736
+
2737
+ #: app/controller/javascript.php:516
2738
+ msgid "The end date can't be earlier than the start date."
2739
+ msgstr "Das Enddatum muss später als das Anfangsdatum gesetzt sein."
2740
+
2741
+ #: app/controller/javascript.php:517
2742
+ msgid "For week and day view, you must select an interval of at least 6 hours."
2743
+ msgstr "Für die Wochen und Tagesansicht muss ein Intervall von mindestens 6 Stunden gesetzt werden."
2744
+
2745
+ #: app/model/api.php:40
2746
+ msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2747
+ msgstr ""
2748
+
2749
+ #: app/model/api.php:41
2750
+ msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2751
+ msgstr ""
2752
+
2753
+ #: app/model/api.php:42
2754
+ msgid "We were unable to Sign you Up for Time.ly Ticketing"
2755
+ msgstr ""
2756
+
2757
+ #: app/model/api.php:43
2758
+ msgid "We were unable to Sign you In for Time.ly Ticketing"
2759
+ msgstr ""
2760
+
2761
+ #: app/model/api.php:44
2762
+ msgid "We were unable to create the Event on Time.ly Ticketing"
2763
+ msgstr ""
2764
+
2765
+ #: app/model/api.php:45
2766
+ msgid "We were unable to update the Event on Time.ly Ticketing"
2767
+ msgstr ""
2768
+
2769
+ #: app/model/api.php:46
2770
+ msgid "The event has the option Tickets selected but any ticket was added."
2771
+ msgstr ""
2772
+
2773
+ #: app/model/api.php:47
2774
+ msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2775
+ msgstr ""
2776
+
2777
+ #: app/model/api.php:48
2778
+ msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2779
+ msgstr ""
2780
+
2781
+ #: app/model/api.php:49
2782
+ msgid "Payment preferences were not saved."
2783
+ msgstr ""
2784
+
2785
+ #: app/model/api.php:50
2786
+ msgid "Payment preferences were saved."
2787
+ msgstr ""
2788
+
2789
+ #: app/model/api.php:51
2790
+ msgid "Event not found inside the database."
2791
+ msgstr ""
2792
+
2793
+ #: app/model/api.php:52
2794
+ msgid "We were unable to get the Sales information from Time.ly Ticketing"
2795
+ msgstr ""
2796
+
2797
+ #: app/model/api.php:446
2798
+ msgid "Past Event"
2799
+ msgstr ""
2800
+
2801
+ #: app/model/api.php:448
2802
+ msgid "Event closed"
2803
+ msgstr ""
2804
+
2805
+ #: app/model/api.php:450
2806
+ msgid "Not available yet"
2807
+ msgstr ""
2808
+
2809
+ #: app/model/api.php:452
2810
+ msgid "Sale closed"
2811
+ msgstr ""
2812
+
2813
+ #: app/model/api.php:454
2814
+ msgid "Sold out"
2815
+ msgstr ""
2816
+
2817
+ #: app/controller/javascript.php:484
2818
+ msgid "Report"
2819
+ msgstr ""
2820
+
2821
+ #: app/controller/javascript.php:485
2822
+ msgid "Sale dates"
2823
+ msgstr ""
2824
+
2825
+ #: app/controller/javascript.php:486
2826
+ msgid "Limits"
2827
+ msgstr ""
2828
+
2829
+ #: app/controller/javascript.php:487
2830
+ msgid "Actions"
2831
+ msgstr ""
2832
+
2833
+ #: app/controller/javascript.php:488
2834
+ msgid "Sold:"
2835
+ msgstr ""
2836
+
2837
+ #: app/controller/javascript.php:489
2838
+ msgid "Left:"
2839
+ msgstr ""
2840
+
2841
+ #: app/controller/javascript.php:490
2842
+ msgid "Start:"
2843
+ msgstr ""
2844
+
2845
+ #: app/controller/javascript.php:491
2846
+ msgid "End:"
2847
+ msgstr ""
2848
+
2849
+ #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2850
+ msgid "Min:"
2851
+ msgstr ""
2852
+
2853
+ #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2854
+ msgid "Max:"
2855
+ msgstr ""
2856
+
2857
+ #: app/controller/javascript.php:494
2858
+ msgid "Attendees"
2859
+ msgstr ""
2860
+
2861
+ #: app/controller/javascript.php:495
2862
+ msgid "Hide Attendees"
2863
+ msgstr ""
2864
+
2865
+ #: app/controller/javascript.php:496
2866
+ msgid "Attendees List"
2867
+ msgstr ""
2868
+
2869
+ #: app/controller/javascript.php:497
2870
+ msgid "Guest Name"
2871
+ msgstr ""
2872
+
2873
+ #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2874
+ msgid "Status"
2875
+ msgstr ""
2876
+
2877
+ #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2878
+ #: app/view/event/ticket.php:71
2879
+ msgid "Email"
2880
+ msgstr "E-Mail"
2881
+
2882
+ #: app/controller/javascript.php:500
2883
+ msgid "No attendees for this ticket type."
2884
+ msgstr ""
2885
+
2886
+ #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2887
+ #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2888
+ msgid "Edit"
2889
+ msgstr "Bearbeiten"
2890
+
2891
+ #: app/controller/javascript.php:502
2892
+ msgid "Code"
2893
+ msgstr ""
2894
+
2895
+ #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2896
+ msgid "Unlimited"
2897
+ msgstr ""
2898
+
2899
+ #: app/controller/javascript.php:506
2900
+ msgid "Your message has been sent. Thank you for your feedback."
2901
+ msgstr ""
2902
+
2903
+ #: app/controller/javascript.php:507
2904
+ msgid "Your message has not been sent. Please try again or contact us."
2905
+ msgstr ""
2906
+
2907
+ #: app/controller/javascript.php:405
2908
+ msgid "Please enter a valid iCalendar URL."
2909
+ msgstr "Bitte eine gültige iCalendar-URL eingeben."
2910
+
2911
+ #: app/controller/javascript.php:408
2912
+ msgid "Please enter a valid email address."
2913
+ msgstr "Bitte eine gültige E-Mail Adresse eingeben."
2914
+
2915
+ #: app/controller/javascript.php:410
2916
+ msgid "Choose Image"
2917
+ msgstr "Bild auswählen"
2918
+
2919
+ #: app/controller/javascript.php:413
2920
+ msgid "The value you have entered is not a valid CSS length."
2921
+ msgstr "Der angegebene Wert hat keine gültige CSS Länge."
2922
+
2923
+ #: app/controller/javascript.php:416
2924
+ msgid "Are you sure you want to reset your theme options to their default values?"
2925
+ msgstr "Bist du sicher dass die Theme Einstellungen auf ihre Standardwerte zurückgesetzt werden sollen?"
2926
+
2927
+ #: app/controller/javascript.php:419
2928
+ msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2929
+ msgstr "Bitte einen gültigen Breitengrad eingeben. Ein gültiger Breitengrad umfasst einen Wert zwischen +90 und -90."
2930
+
2931
+ #: app/controller/javascript.php:422
2932
+ msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2933
+ msgstr "Bitte einen gültigen Längengrad angeben. Ein gültiger Längengrad umfasst einen Wert zwischen +180 und -180."
2934
+
2935
+ #: app/controller/javascript.php:425
2936
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2937
+ msgstr "Wenn das \"Koordinaten angeben\" Kontrollkästchen ausgewählt wurde, muss ein Breitengrad eingegeben werden."
2938
+
2939
+ #: app/controller/javascript.php:428
2940
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2941
+ msgstr "Wenn das \"Koordinaten angeben\" Kontrollkästchen ausgewählt wurde, muss ein Längengrad eingegeben werden."
2942
+
2943
+ #: app/controller/javascript.php:431
2944
+ msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2945
+ msgstr ""
2946
+
2947
+ #: app/controller/javascript.php:434
2948
+ msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2949
+ msgstr "Die URL, die du bei <b>Veranstaltungspreis und Karten</b> &gt; <b>Kartenverkaufs-URL</b> angegeben hast, ist ungültig."
2950
+
2951
+ #: app/controller/javascript.php:437
2952
+ msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2953
+ msgstr "Bitte beachte, dass URLs mit \"http://\" oder \"https://\" beginnen müssen."
2954
+
2955
+ #: app/controller/javascript.php:440
2956
+ msgid "Loading&hellip;"
2957
+ msgstr "Laden&hellip;"
2958
+
2959
+ #: app/controller/javascript.php:443
2960
+ msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2961
+ msgstr ""
2962
+
2963
+ #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2964
+ msgid "Preview:"
2965
+ msgstr "Vorschau:"
2966
+
2967
+ #: app/controller/javascript.php:474
2968
+ msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2969
+ msgstr "Lade Vorschau&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2970
+
2971
+ #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2972
+ msgid "Ticketing Details"
2973
+ msgstr ""
2974
+
2975
+ #: app/controller/javascript.php:480
2976
+ msgid "Hide Ticketing Details"
2977
+ msgstr ""
2978
+
2979
+ #: app/controller/javascript.php:481
2980
+ msgid "Loading tickets details..."
2981
+ msgstr ""
2982
+
2983
+ #: app/controller/javascript.php:482
2984
+ msgid "Type and price"
2985
+ msgstr ""
2986
+
2987
+ #: app/controller/javascript.php:483
2988
+ msgid "Info"
2989
+ msgstr ""
2990
+
2991
+ #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2992
+ #: app/view/admin/add-ons.php:27
2993
+ msgid "Add-ons"
2994
+ msgstr "Add-ons"
2995
+
2996
+ #: app/controller/front.php:343
2997
+ msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
2998
+ msgstr "Dein aktives Kalender Theme konnte nicht korrekt initialisiert werden. Das Default-Theme wurde stattdessen aktiviert. Bitte auf %s gehen und das Theme manuell reaktivieren."
2999
+
3000
+ #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3001
+ #: app/view/admin/theme-switching.php:55
3002
+ msgid "Calendar Themes"
3003
+ msgstr "Themes des Kalenders"
3004
+
3005
+ #: app/controller/front.php:990
3006
+ msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3007
+ msgstr "Deine Datenbank scheint beschädigt zu sein. Wahrscheinlich ist die letzte Aktualisierung fehlgeschlagen. Bitte stelle die Tabellen von All-in-One Event Kalender aus einem Backup wieder her und wiederhole den Vorgang. <br>Folgende Fehler wurden festgestellt: <br>%s"
3008
+
3009
+ #: app/controller/javascript-widget.php:48
3010
+ msgid "You must choose the Calendar page before using the Super Widget"
3011
+ msgstr "Zuerst muss eine Kalender-Seite ausgewählt werden. Danach kann das Super Widget benutzt werden."
3012
+
3013
+ #: app/controller/javascript.php:402
3014
+ msgid "This feed is already being imported."
3015
+ msgstr "Dieses Feed wird bereits importiert."
language/all-in-one-event-calendar-de_DE.mo CHANGED
Binary file
language/all-in-one-event-calendar-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:48:02+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -140,12 +140,12 @@ msgstr "Rand des Eingabefelds"
140
  #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
  #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
  msgid "Input field border (focus)"
143
- msgstr "Eingabefeld Rand (focus)"
144
 
145
  #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
  #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
  msgid "Input field background (disabled)"
148
- msgstr "Eingabefeld Rand (deaktiviert)"
149
 
150
  #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
  #: public/themes-ai1ec/vortex/less/user_variables.php:119
@@ -155,12 +155,12 @@ msgstr "Feld Bezeichnung"
155
  #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
  #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
  msgid "Dropdown list background"
158
- msgstr "Hintergrund der Dropdown Liste"
159
 
160
  #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
  #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
  msgid "Dropdown list border"
163
- msgstr "Rand der Dropdown Liste"
164
 
165
  #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
  #: public/themes-ai1ec/vortex/less/user_variables.php:137
@@ -191,7 +191,7 @@ msgstr "Themes installieren"
191
 
192
  #: public/admin/themes-updated.php:5
193
  msgid "Update Calendar Themes"
194
- msgstr "Kalender Themes aktualisieren"
195
 
196
  #: public/admin/themes-updated.php:15
197
  msgid "All-in-One Event Calendar Settings »"
@@ -199,15 +199,15 @@ msgstr "All-in-One Event Kalender Einstellungen »"
199
 
200
  #: public/admin/themes.php:18
201
  msgid "Current Calendar Theme"
202
- msgstr "Aktuelles Kalender Theme"
203
 
204
  #: public/admin/themes.php:21
205
  msgid "Current theme preview"
206
- msgstr "Aktuelle Theme Vorschau"
207
 
208
  #: public/admin/themes.php:47
209
  msgid "Available Calendar Themes"
210
- msgstr "Verfügbare Kalender Themes"
211
 
212
  #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
  #: public/themes-ai1ec/vortex/less/user_variables.php:5
@@ -237,7 +237,7 @@ msgstr "Link (hover)"
237
  #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
  #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
  msgid "Base font"
240
- msgstr "Standard Schriftart"
241
 
242
  #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
  #: public/themes-ai1ec/vortex/less/user_variables.php:41
@@ -332,7 +332,7 @@ msgstr ""
332
 
333
  #: public/admin/row_custom.php:3
334
  msgid "Custom dates:"
335
- msgstr ""
336
 
337
  #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
  #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
@@ -364,11 +364,11 @@ msgstr "Einstellungen aktualisieren"
364
 
365
  #: public/admin/themes-install.php:4
366
  msgid "The active theme is broken. Reverting to the default theme."
367
- msgstr "Das aktive Theme ist defekt. Standard Theme wird ausgewählt."
368
 
369
  #: public/admin/themes-install.php:13
370
  msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
- msgstr ""
372
 
373
  #: public/admin/calendar_tasks.php:24
374
  msgid "Manage Events"
@@ -396,7 +396,7 @@ msgstr "\"Look and Feel\" ändern."
396
 
397
  #: public/admin/calendar_tasks.php:63
398
  msgid "Manage Calendar Feeds"
399
- msgstr "Kalender Feeds verwalten"
400
 
401
  #: public/admin/calendar_tasks.php:66
402
  msgid "Subscribe to other calendars."
@@ -444,15 +444,15 @@ msgstr "Ursprüngliche Kategorien und Schlagwörter der Veranstaltungen beibehal
444
 
445
  #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
  msgid "On refresh, preserve previously imported events that are missing from the feed"
447
- msgstr ""
448
 
449
  #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
  msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
- msgstr ""
452
 
453
  #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
  msgid "Assign default time zone to events in UTC"
455
- msgstr ""
456
 
457
  #: public/admin/box_support.php:19
458
  msgid "Get Add-ons"
@@ -540,7 +540,7 @@ msgstr "Basierend auf Spenden"
540
 
541
  #: public/admin/box_eventbrite.php:68
542
  msgid "The price for this event's first ticket will be taken from the Cost field above."
543
- msgstr "Der Preis für das erste Ticket dieser Veranstaltung, wird von dem Kostenfeld oben übernommen."
544
 
545
  #: public/admin/box_eventbrite.php:75
546
  msgid "Quantity"
@@ -588,7 +588,7 @@ msgstr "Wiederholungsschema auswählen:"
588
 
589
  #: public/admin/box_repeat.php:36
590
  msgid "Custom"
591
- msgstr ""
592
 
593
  #: public/admin/box_repeat.php:72
594
  msgid "End"
@@ -622,7 +622,7 @@ msgstr "Timely’s All-in-One Event Kalender ist<br />eine neue, bahnbrechende M
622
 
623
  #: public/admin/box_event_cost.php:228
624
  msgid "Status:"
625
- msgstr ""
626
 
627
  #: public/admin/box_event_cost.php:235
628
  msgid "Open"
@@ -714,7 +714,7 @@ msgstr "Telefon:"
714
 
715
  #: public/admin/box_event_contact.php:56
716
  msgid "Website URL:"
717
- msgstr ""
718
 
719
  #: public/admin/box_event_cost.php:6
720
  msgid "Event cost and Tickets"
@@ -754,15 +754,15 @@ msgstr "Beschreibung:"
754
 
755
  #: public/admin/box_event_cost.php:111
756
  msgid "(Optional)"
757
- msgstr ""
758
 
759
  #: public/admin/box_event_cost.php:115
760
  msgid "Price:"
761
- msgstr ""
762
 
763
  #: public/admin/box_event_cost.php:124
764
  msgid "USD"
765
- msgstr ""
766
 
767
  #: public/admin/box_event_cost.php:128
768
  msgid "Limits:"
@@ -770,37 +770,37 @@ msgstr ""
770
 
771
  #: public/admin/box_event_cost.php:131
772
  msgid "This fields are required."
773
- msgstr ""
774
 
775
  #: public/admin/box_event_cost.php:156
776
  msgid "Quantity:"
777
- msgstr ""
778
 
779
  #: public/admin/box_event_cost.php:180
780
  msgid "Available:"
781
- msgstr ""
782
 
783
  #: public/admin/box_event_cost.php:185
784
  msgid "Immediately"
785
- msgstr ""
786
 
787
  #: public/admin/box_event_cost.php:190
788
  msgid "From:"
789
- msgstr ""
790
 
791
  #: public/admin/box_event_cost.php:207
792
  msgid "Till:"
793
- msgstr ""
794
 
795
  #: public/admin/box_ask_customer_review.php:42
796
  #: public/admin/box_ask_customer_review.php:75
797
  msgid "No, thanks"
798
- msgstr ""
799
 
800
  #: public/admin/box_ask_customer_review.php:50
801
  #: public/admin/box_ask_customer_review.php:84
802
  msgid "Ok, sure!"
803
- msgstr ""
804
 
805
  #: public/admin/box_ask_customer_review.php:66
806
  msgid "Would you mind giving us some feedback?"
@@ -812,11 +812,11 @@ msgstr ""
812
 
813
  #: public/admin/box_ask_customer_review.php:108
814
  msgid "Message:"
815
- msgstr ""
816
 
817
  #: public/admin/box_ask_customer_review.php:121
818
  msgid "Name:"
819
- msgstr ""
820
 
821
  #: public/admin/box_ask_customer_review.php:136
822
  #: public/admin/box_event_contact.php:43
@@ -825,15 +825,15 @@ msgstr "E-Mail:"
825
 
826
  #: public/admin/box_ask_customer_review.php:143
827
  msgid "E-mail is invalid."
828
- msgstr ""
829
 
830
  #: public/admin/box_ask_customer_review.php:154
831
  msgid "Site URL:"
832
- msgstr ""
833
 
834
  #: public/admin/box_ask_customer_review.php:161
835
  msgid "Site URL is invalid."
836
- msgstr ""
837
 
838
  #: public/admin/box_ask_customer_review.php:173
839
  msgid "Thank you for being our customer,"
@@ -885,7 +885,7 @@ msgstr "Wir konnten keinen passender Loader für die Dateierweiterung '%s' finde
885
 
886
  #: lib/theme/loader.php:631
887
  msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
- msgstr ""
889
 
890
  #: lib/theme/search.php:253
891
  msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
@@ -897,7 +897,7 @@ msgstr "Es hat nicht geklappt deine alten Core Themes von <code>wp-content/theme
897
 
898
  #: lib/twig/environment.php:115
899
  msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
- msgstr ""
901
 
902
  #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
  msgid "Title:"
@@ -1005,15 +1005,15 @@ msgstr "<strong>FEHLER:</strong> Fehler bei der Verbindung zum Server. Bitte üb
1005
 
1006
  #: lib/robots/helper.php:105
1007
  msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
- msgstr "<strong>FEHLER:</strong> Fehler beim Sichern von <strong>robots.txt</strong> auf dem Server, die Datei wurde nicht erstellt."
1009
 
1010
  #: lib/theme/list.php:152
1011
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
- msgstr "Derzeit ist für diese Seite nur ein Theme freigegeben. Kontaktiere den Netzwerk Administrator für eine <a href=\"%1$s\">Freigabe</a> oder <a href=\"%2$s\">installiere</a> weitere Themes."
1013
 
1014
  #: lib/theme/list.php:164
1015
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
- msgstr "Derzeit ist für diese Seite nur ein Theme freigegeben. Kontaktiere den Netzwerk Administrator für eine <a href=\"%1$s\">Freigabe</a> zusätzlicher Themes."
1017
 
1018
  #: lib/theme/list.php:179
1019
  msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
@@ -1040,7 +1040,7 @@ msgstr "%1$s %2$s by %3$s"
1040
  #. title, 5: parent_theme
1041
  #: lib/theme/list.php:293
1042
  msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
- msgstr "Die Template Dateien befinden sich in <code>%2$s</code>. Die Stylesheet Dateien befinden sich in <code>%3$s</code>. <strong>%4$s</strong> nutzt Templates von <strong>%5$s</strong>. Veränderungen an den Templates beeinflussen beide Themes. "
1044
 
1045
  #: lib/theme/list.php:308
1046
  msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
@@ -1057,27 +1057,27 @@ msgstr "Veranstaltung"
1057
  #: lib/post/custom-type.php:85
1058
  msgctxt "Event categories taxonomy"
1059
  msgid "Categories"
1060
- msgstr ""
1061
 
1062
  #: lib/post/custom-type.php:86
1063
  msgctxt "Event categories taxonomy (singular)"
1064
  msgid "Category"
1065
- msgstr ""
1066
 
1067
  #: lib/post/custom-type.php:87
1068
  msgctxt "Event categories menu item"
1069
  msgid "Organize"
1070
- msgstr ""
1071
 
1072
  #: lib/post/custom-type.php:94
1073
  msgctxt "Event tags taxonomy"
1074
  msgid "Tags"
1075
- msgstr ""
1076
 
1077
  #: lib/post/custom-type.php:95
1078
  msgctxt "Event tags taxonomy (singular)"
1079
  msgid "Tag"
1080
- msgstr ""
1081
 
1082
  #: lib/post/custom-type.php:102
1083
  msgctxt "Event feeds taxonomy"
@@ -1164,7 +1164,7 @@ msgstr "All-in-One Event Kalender"
1164
 
1165
  #: lib/notification/admin.php:182
1166
  msgid "Got it – dismiss this"
1167
- msgstr ""
1168
 
1169
  #: lib/post/custom-type.php:26
1170
  msgctxt "Custom post type name"
@@ -1318,19 +1318,19 @@ msgstr "Filtern nach Schlagwort IDs der Veranstaltung (IDs durch Komma trennen)"
1318
 
1319
  #: lib/exception/handler.php:395
1320
  msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
- msgstr ""
1322
 
1323
  #: lib/exception/handler.php:404
1324
  msgid "Try reactivating plugin"
1325
- msgstr ""
1326
 
1327
  #: lib/exception/handler.php:576
1328
  msgid "Toggle error details"
1329
- msgstr ""
1330
 
1331
  #: lib/exception/handler.php:577
1332
  msgid "Error Details:"
1333
- msgstr ""
1334
 
1335
  #: lib/factory/html.php:133
1336
  msgid "Choose a date using calendar"
@@ -1346,11 +1346,11 @@ msgstr "Erneut prüfen"
1346
 
1347
  #: lib/html/element/setting/cache.php:39
1348
  msgid "Templates cache is not writable"
1349
- msgstr "Vorlagen Cache ist nicht beschreibbar"
1350
 
1351
  #: lib/html/element/setting/cache.php:40
1352
  msgid "Templates cache is writable"
1353
- msgstr "Vorlagen Cache ist beschreibbar"
1354
 
1355
  #: lib/html/element/setting/cache.php:41
1356
  msgid "Checking..."
@@ -1402,7 +1402,7 @@ msgstr "Wochenansicht:"
1402
 
1403
  #: lib/css/frontend.php:239
1404
  msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
- msgstr ""
1406
 
1407
  #: lib/css/frontend.php:266
1408
  msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
@@ -1414,7 +1414,7 @@ msgstr "<p><strong>Beim Kompilieren der CSS-Datei ist ein Fehler aufgetreten.</s
1414
 
1415
  #: lib/css/frontend.php:300
1416
  msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
- msgstr "Theme Einstellungen wurden erfolgreich auf die Standardwerte zurückgesetzt. <a href='%s'>Seite besuchen</a>"
1418
 
1419
  #: lib/css/frontend.php:307
1420
  msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
@@ -1462,7 +1462,7 @@ msgstr "Zeitzone auswählen"
1462
 
1463
  #: lib/environment/check.php:55
1464
  msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
- msgstr "Bitte aus der Dropdown Liste <strong>Kalender Seite</strong> Auswahl treffen"
1466
 
1467
  #: lib/environment/check.php:68
1468
  msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
@@ -1474,19 +1474,19 @@ msgstr "Das Plugin ist installiert, aber noch nicht konfiguriert. Bitte als Admi
1474
 
1475
  #: lib/environment/check.php:196
1476
  msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
- msgstr ""
1478
 
1479
  #: lib/environment/check.php:197
1480
  msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
- msgstr ""
1482
 
1483
  #: lib/exception/handler.php:176
1484
  msgid "The add-on \"%s\" has been disabled due to an error:"
1485
- msgstr ""
1486
 
1487
  #: lib/calendar-feed/ics.php:367
1488
  msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
- msgstr "Willst du, die aus dem Kalender, importierten Events behalten oder verwerfen?"
1490
 
1491
  #: lib/calendar-feed/ics.php:373
1492
  msgid "Removing ICS Feed"
@@ -1514,35 +1514,35 @@ msgstr "Feed gelöscht"
1514
 
1515
  #: lib/captcha/provider/nocaptcha.php:31
1516
  msgid "noCAPTCHA public key:"
1517
- msgstr "noCAPTCHA öffentlicher Schlüssel"
1518
 
1519
  #: lib/captcha/provider/nocaptcha.php:47
1520
  msgid "noCAPTCHA private key:"
1521
- msgstr ""
1522
 
1523
  #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
  msgid "Please try verifying you are human again."
1525
- msgstr ""
1526
 
1527
  #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
  msgid "There was an error reading the human verification data. Please try again."
1529
- msgstr ""
1530
 
1531
  #: lib/captcha/provider/recaptcha.php:32
1532
  msgid "reCAPTCHA public key:"
1533
- msgstr ""
1534
 
1535
  #: lib/captcha/provider/recaptcha.php:48
1536
  msgid "reCAPTCHA private key:"
1537
- msgstr ""
1538
 
1539
  #: lib/captcha/provider/recaptcha.php:66
1540
  msgid "Human verification"
1541
- msgstr ""
1542
 
1543
  #: lib/captcha/provider/recaptcha.php:67
1544
  msgid "Loading reCAPTCHA..."
1545
- msgstr ""
1546
 
1547
  #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
  #: lib/clone/renderer-helper.php:45
@@ -1567,7 +1567,7 @@ msgstr "<p>Die Veranstaltung <strong>%s</strong> wurde erfolgreich kopiert. <a h
1567
 
1568
  #: lib/compatibility/check.php:101
1569
  msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
- msgstr ""
1571
 
1572
  #: app/view/event/single.php:123
1573
  msgid "Tickets:"
@@ -1587,7 +1587,7 @@ msgstr "Dieses Ereignis bearbeiten (%s)"
1587
 
1588
  #: app/view/event/single.php:195
1589
  msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
- msgstr "Dieser Beitrag ist ein Replikat eines anderen <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> Kalender feeds</a>."
1591
 
1592
  #: app/view/event/single.php:206
1593
  msgid "View original"
@@ -1651,7 +1651,7 @@ msgstr[1] "%s Veranstaltungen importiert"
1651
 
1652
  #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
  msgid "Invalid ICS feed ID"
1654
- msgstr "Ungültige ICS feed ID"
1655
 
1656
  #: lib/calendar-feed/ics.php:350
1657
  msgid "Categories (optional)"
@@ -1667,7 +1667,7 @@ msgstr "Wo:"
1667
 
1668
  #: app/view/event/content.php:125
1669
  msgid "Calendar"
1670
- msgstr ""
1671
 
1672
  #: app/view/event/content.php:126
1673
  msgid "View all events"
@@ -1729,7 +1729,7 @@ msgstr "Entwurf der Veranstaltung aktualisiert. <a target=\"_blank\" href=\"%s\"
1729
 
1730
  #: app/view/event/single.php:78
1731
  msgid "Event was created in the %s time zone"
1732
- msgstr "Der Termin wurde in der %s Zeitzone erstellt"
1733
 
1734
  #: app/view/event/single.php:114
1735
  msgid "Add to Calendar"
@@ -1788,7 +1788,7 @@ msgstr "All-in-One Event Kalender: Zeigt alle bevorstehenden Veranstaltungen in
1788
 
1789
  #: app/view/calendar/widget.php:80
1790
  msgid "Choose how to limit the upcoming events"
1791
- msgstr "Wähle, wie du die bevorstehenden Termine beschränken möchtest"
1792
 
1793
  #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
  msgid "Events"
@@ -1800,7 +1800,7 @@ msgstr "Tage"
1800
 
1801
  #: app/view/calendar/widget.php:106
1802
  msgid "Number of events to show"
1803
- msgstr "Anzahl der Termine, die angezeigt werden sollen"
1804
 
1805
  #: app/view/calendar/widget.php:115
1806
  msgid "Number of days to show"
@@ -1808,11 +1808,11 @@ msgstr "Anzahl der Tage, die angezeigt werden sollen"
1808
 
1809
  #: app/view/calendar/widget.php:124
1810
  msgid "Show events filtered for the following tags/categories"
1811
- msgstr "Zeige Events die dem folgenden Filter für Tags/Kategorien entsprechen"
1812
 
1813
  #: app/view/calendar/widget.php:141
1814
  msgid "Show the subscribe button in the widget"
1815
- msgstr "Zeige den abonnieren Knopf im Widget an"
1816
 
1817
  #: app/view/calendar/widget.php:370
1818
  msgid "There are no upcoming events."
@@ -1844,7 +1844,7 @@ msgstr "Timely Calendar holen"
1844
 
1845
  #: app/view/calendar/subscribe-button.php:22
1846
  msgid "Add to Timely Calendar"
1847
- msgstr "Zum Timely Kalender hinzufügen"
1848
 
1849
  #: app/view/calendar/subscribe-button.php:23
1850
  msgid "Add to Google"
@@ -1856,7 +1856,7 @@ msgstr "Zu Outlook hinzufügen"
1856
 
1857
  #: app/view/calendar/subscribe-button.php:25
1858
  msgid "Add to Apple Calendar"
1859
- msgstr "Zum Apple Kalender hinzufügen"
1860
 
1861
  #: app/view/calendar/subscribe-button.php:26
1862
  msgid "Add to other calendar"
@@ -1864,15 +1864,15 @@ msgstr "Zu anderem Kalender hinzufügen"
1864
 
1865
  #: app/view/calendar/subscribe-button.php:29
1866
  msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
- msgstr "Die URL deines Timely Kalenders kopieren oder anklicken, um ihn zu deinem Rich-Text-Kalender hinzuzufügen"
1868
 
1869
  #: app/view/calendar/subscribe-button.php:30
1870
  msgid "Subscribe to this calendar in your Google Calendar"
1871
- msgstr "Diesen Kalender in deinem Google Kalender abonnieren"
1872
 
1873
  #: app/view/calendar/subscribe-button.php:31
1874
  msgid "Subscribe to this calendar in MS Outlook"
1875
- msgstr "Diesen Kalender im MS-Outlook Kalender abonnieren"
1876
 
1877
  #: app/view/calendar/subscribe-button.php:32
1878
  msgid "Subscribe to this calendar in Apple Calendar/iCal"
@@ -1918,7 +1918,7 @@ msgstr "Weiter lesen"
1918
 
1919
  #: app/view/admin/tickets.php:86
1920
  msgid "Sales"
1921
- msgstr ""
1922
 
1923
  #: app/view/admin/tickets.php:87
1924
  msgid "How do you want the tickets revenue to be sent to you?"
@@ -1938,19 +1938,19 @@ msgstr "Paypal"
1938
 
1939
  #: app/view/admin/tickets.php:94
1940
  msgid "Save Changes"
1941
- msgstr ""
1942
 
1943
  #: app/view/admin/tickets.php:95
1944
  msgid "Date"
1945
- msgstr ""
1946
 
1947
  #: app/view/admin/tickets.php:96
1948
  msgid "Event"
1949
- msgstr ""
1950
 
1951
  #: app/view/admin/tickets.php:97
1952
  msgid "Purchaser"
1953
- msgstr ""
1954
 
1955
  #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
  #: public/admin/box_event_cost.php:35
@@ -1959,25 +1959,25 @@ msgstr "Karten"
1959
 
1960
  #: app/view/admin/tickets.php:101
1961
  msgid "Total"
1962
- msgstr ""
1963
 
1964
  #: app/view/admin/tickets.php:102
1965
  msgid "Sign Out"
1966
- msgstr ""
1967
 
1968
  #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
  #: app/view/admin/widget-creator.php:47
1970
  msgid "Widget Creator"
1971
- msgstr "Widget Ersteller"
1972
 
1973
  #: app/view/admin/widget-creator.php:74
1974
  msgctxt "meta box"
1975
  msgid "Widget Creator"
1976
- msgstr "Widget Ersteller"
1977
 
1978
  #: app/view/admin/widget-creator.php:131
1979
  msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
- msgstr "Generiere ein coe snippet, welches auf einer <strong>externen website</strong> dazu verwendet wird um dort neue Kalender und Widgets einzubauen."
1981
 
1982
  #: app/view/admin/widget-creator.php:132
1983
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
@@ -1985,7 +1985,7 @@ msgstr "<h4>Achtung!</h4><p>Diese Widget funktionieren <strong>nur auf externen
1985
 
1986
  #: app/view/admin/widget-creator.php:134
1987
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
- msgstr "<p>Verwende <a href=\"%s\"><strong>Aussehen</strong> &gt; <strong>Widgets</strong></a> wie jedes andere Widget, um Veranstaltungs widgets zur WordPress Website hinzuzfügen, oder verwende <a href=\"%s\" target=\"_blank\">Shortcodes</a> um den kompletten Kalender einzubetten.</strong></p>"
1989
 
1990
  #: app/view/admin/widget-creator.php:140
1991
  msgid "Paste this code onto your site:"
@@ -1993,7 +1993,7 @@ msgstr "Füge diesen Code in deine Seite ein:"
1993
 
1994
  #: app/view/admin/widget-creator.php:141
1995
  msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
- msgstr "Dieser Code wird aktualisiert um die Einstellungs-Änderungen zu reflektieren. Geänderte Einstellungen ändern keine bestehenden Widgets."
1997
 
1998
  #: app/view/calendar/page.php:54
1999
  msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
@@ -2005,7 +2005,7 @@ msgstr "Kalender konnte die %s Ansicht nicht erstellen und benutzt die Agenda-An
2005
 
2006
  #: app/view/admin/settings.php:193
2007
  msgid "Phone Number:"
2008
- msgstr ""
2009
 
2010
  #: app/view/admin/settings.php:194
2011
  msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
@@ -2013,11 +2013,11 @@ msgstr ""
2013
 
2014
  #: app/view/admin/settings.php:197
2015
  msgid "Sign Up"
2016
- msgstr ""
2017
 
2018
  #: app/view/admin/settings.php:198
2019
  msgid "Sign In"
2020
- msgstr ""
2021
 
2022
  #: app/view/admin/settings.php:212
2023
  msgid "Save Settings"
@@ -2029,16 +2029,16 @@ msgstr "Falls das Formular nicht angezeigt wird, bitte <a href=\"%s\">diesem Lin
2029
 
2030
  #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
  msgid "Theme Options"
2032
- msgstr "Theme Einstellungen"
2033
 
2034
  #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
  msgid "Calendar Theme Options"
2036
- msgstr "Einstellungen des Kalender Themes"
2037
 
2038
  #: app/view/admin/theme-options.php:79
2039
  msgctxt "meta box"
2040
  msgid "Calendar Theme Options"
2041
- msgstr "Einstellungen des Kalender Themes"
2042
 
2043
  #: app/view/admin/theme-options.php:133
2044
  msgid "General"
@@ -2119,7 +2119,7 @@ msgstr "Shortcodes"
2119
 
2120
  #: app/view/admin/settings.php:150
2121
  msgid "Email Templates"
2122
- msgstr "E-Mail Vorlagen"
2123
 
2124
  #: app/view/admin/settings.php:151
2125
  msgid "External Services"
@@ -2127,7 +2127,7 @@ msgstr "Externe Dienste"
2127
 
2128
  #: app/view/admin/settings.php:152
2129
  msgid "Cache Report"
2130
- msgstr "Cache Bericht"
2131
 
2132
  #: app/view/admin/settings.php:171
2133
  msgid "Sign Up for a <b>Timely Network</b> account. It's free."
@@ -2172,15 +2172,15 @@ msgstr ""
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
2175
- msgstr "Email:"
2176
 
2177
  #: app/view/admin/settings.php:191
2178
  msgid "Password:"
2179
- msgstr ""
2180
 
2181
  #: app/view/admin/settings.php:192
2182
  msgid "Confirm Password:"
2183
- msgstr ""
2184
 
2185
  #: app/view/admin/get-repeat-box.php:483
2186
  msgid "fourth"
@@ -2236,7 +2236,7 @@ msgstr "<a href=\"%s\">Einstellungen</a>"
2236
 
2237
  #: app/view/admin/nav.php:28
2238
  msgid "<a href=\"%s\">Check for updates</a>"
2239
- msgstr ""
2240
 
2241
  #: app/view/admin/organize.php:100
2242
  msgid "Organize Events"
@@ -2270,12 +2270,12 @@ msgstr "dritte"
2270
 
2271
  #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
  msgid "Import Feeds"
2273
- msgstr ""
2274
 
2275
  #: app/view/admin/calendar-feeds.php:48
2276
  msgctxt "meta box"
2277
  msgid "Feed Subscriptions"
2278
- msgstr "Feed Abonnements"
2279
 
2280
  #: app/view/admin/calendar-feeds.php:65
2281
  msgid "All-in-One Event Calendar: Import Feeds"
@@ -2377,11 +2377,11 @@ msgstr "Der Roboterausschluss Standard (Robot Exclusion Standard), auch bekannt
2377
 
2378
  #: app/model/settings.php:965
2379
  msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2380
- msgstr "<strong>Veröffentliche, promote, und teile meine öffentlichen Events</strong> im Timely-Netzwerk. (<a href=\"%s\" target=\"_blank\">Mehr Informationen &#187;</a>)"
2381
 
2382
  #: app/model/settings.php:988
2383
  msgid "Templates cache improves site performance"
2384
- msgstr "Vorlagen Cache verbessert die Leistung der Seite"
2385
 
2386
  #: app/model/settings.php:1001
2387
  msgid "Display events in <strong>calendar time zone</strong>"
@@ -2397,11 +2397,11 @@ msgstr "Details der Veranstaltung"
2397
 
2398
  #: app/view/admin/add-new-event.php:423
2399
  msgid "Set banner image"
2400
- msgstr "Banner Bild festlegen"
2401
 
2402
  #: app/view/admin/add-new-event.php:424
2403
  msgid "Remove banner image"
2404
- msgstr "Banner Bild entfernen"
2405
 
2406
  #: app/view/admin/add-ons.php:68
2407
  msgid "Add-ons for All In One Event Calendar"
@@ -2413,11 +2413,11 @@ msgstr "Alle Erweiterungen durchsuchen"
2413
 
2414
  #: app/view/admin/add-ons.php:74
2415
  msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2416
- msgstr "Diese Zusätze erweitern die Funktionalitäten des All-In-One Event Kalenders."
2417
 
2418
  #: app/view/admin/add-ons.php:77
2419
  msgid "There was an error retrieving the extensions list from the server. Please try again later."
2420
- msgstr "Ein Fehler ist aufgetreten beim abholen der Zusatz-Liste vom Server. Bitte versuchen Sie es später nochmal."
2421
 
2422
  #: app/view/admin/all-events.php:16
2423
  msgid "Author"
@@ -2429,7 +2429,7 @@ msgstr "Datum des Eintrags"
2429
 
2430
  #: app/view/admin/all-events.php:18
2431
  msgid "Event date/time"
2432
- msgstr "Veranstaltung Datum/Zeit"
2433
 
2434
  #: app/view/admin/all-events.php:22
2435
  msgid "Ticket Types"
@@ -2441,7 +2441,7 @@ msgstr "Alle anzeigen "
2441
 
2442
  #: app/view/admin/all-events.php:147
2443
  msgid "Show All Authors"
2444
- msgstr ""
2445
 
2446
  #: app/model/settings.php:746
2447
  msgid "Strict compatibility content filtering"
@@ -2533,15 +2533,15 @@ msgstr "<strong>gzip</strong> Komprimierung deaktivieren"
2533
 
2534
  #: app/model/settings.php:902
2535
  msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2536
- msgstr "Verwende diese Option, wenn der Kalender nicht \"responsive\" angelegt ist. Das Problem ist <a href=\"http://support.time.ly/disable-gzip-compression/\">hier genauer beschrieben</a>. (Ab Version 2.1 aufwärts ist gzip standardmäßig aus Kompatibilitätsgründen deaktiviert.)"
2537
 
2538
  #: app/model/settings.php:914
2539
  msgid "Use frontend rendering."
2540
- msgstr "Verwende frontend rendering."
2541
 
2542
  #: app/model/settings.php:917
2543
  msgid "Renders calendar views on the client rather than the server; can improve performance."
2544
- msgstr "Der Kalender wird im client gerendet und nicht servseitig; kann die Performance verbessern."
2545
 
2546
  #: app/model/settings.php:493 app/view/calendar/widget.php:128
2547
  msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
@@ -2553,7 +2553,7 @@ msgstr "Standard Startdatum des Kalenders (optional)"
2553
 
2554
  #: app/model/settings.php:519
2555
  msgid "Agenda pages show at most"
2556
- msgstr "Liste - Seiten maximal anzeigen"
2557
 
2558
  #: app/model/settings.php:532
2559
  msgid "Week/Day view starts at"
@@ -2607,7 +2607,7 @@ msgstr "Schaltflächen <strong>Abonnieren</strong> und <strong>Zum Kalender hinz
2607
 
2608
  #: app/model/settings.php:649
2609
  msgid "Hide <strong>Get a Timely Calendar</strong> button"
2610
- msgstr "Verstecke <strong>Get a Timely Calendar</strong>"
2611
 
2612
  #: app/model/settings.php:661
2613
  msgid " Hide <strong>Google Maps</strong> until clicked"
@@ -2619,7 +2619,7 @@ msgstr "<strong>Anheften des Filtermenüs</strong> am oberen Fensterrand, für p
2619
 
2620
  #: app/model/settings.php:676
2621
  msgid "Only applies to first visible calendar found on the page."
2622
- msgstr "Trifft nur für den ersten, sichtbaren Kalender der Seite zu."
2623
 
2624
  #: app/model/settings.php:688
2625
  msgid "Offset affixed filter bar vertically by"
@@ -2639,7 +2639,7 @@ msgstr "Nur für Smartphones (< 768px)"
2639
 
2640
  #: app/model/api.php:456
2641
  msgid "Not available"
2642
- msgstr ""
2643
 
2644
  #: app/model/api.php:659
2645
  msgid "%s.<br/>Detail: %s."
@@ -2740,7 +2740,7 @@ msgstr "Das Enddatum muss später als das Anfangsdatum gesetzt sein."
2740
 
2741
  #: app/controller/javascript.php:517
2742
  msgid "For week and day view, you must select an interval of at least 6 hours."
2743
- msgstr "Für die Wochen und Tagesansicht muss ein Intervall von mindestens 6 Stunden gesetzt werden."
2744
 
2745
  #: app/model/api.php:40
2746
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
@@ -2796,7 +2796,7 @@ msgstr ""
2796
 
2797
  #: app/model/api.php:446
2798
  msgid "Past Event"
2799
- msgstr ""
2800
 
2801
  #: app/model/api.php:448
2802
  msgid "Event closed"
@@ -2804,7 +2804,7 @@ msgstr ""
2804
 
2805
  #: app/model/api.php:450
2806
  msgid "Not available yet"
2807
- msgstr ""
2808
 
2809
  #: app/model/api.php:452
2810
  msgid "Sale closed"
@@ -2812,7 +2812,7 @@ msgstr ""
2812
 
2813
  #: app/model/api.php:454
2814
  msgid "Sold out"
2815
- msgstr ""
2816
 
2817
  #: app/controller/javascript.php:484
2818
  msgid "Report"
@@ -2910,7 +2910,7 @@ msgstr "Bitte eine gültige iCalendar-URL eingeben."
2910
 
2911
  #: app/controller/javascript.php:408
2912
  msgid "Please enter a valid email address."
2913
- msgstr "Bitte eine gültige E-Mail Adresse eingeben."
2914
 
2915
  #: app/controller/javascript.php:410
2916
  msgid "Choose Image"
@@ -2922,7 +2922,7 @@ msgstr "Der angegebene Wert hat keine gültige CSS Länge."
2922
 
2923
  #: app/controller/javascript.php:416
2924
  msgid "Are you sure you want to reset your theme options to their default values?"
2925
- msgstr "Bist du sicher dass die Theme Einstellungen auf ihre Standardwerte zurückgesetzt werden sollen?"
2926
 
2927
  #: app/controller/javascript.php:419
2928
  msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
@@ -3012,4 +3012,4 @@ msgstr "Zuerst muss eine Kalender-Seite ausgewählt werden. Danach kann das Supe
3012
 
3013
  #: app/controller/javascript.php:402
3014
  msgid "This feed is already being imported."
3015
- msgstr "Dieses Feed wird bereits importiert."
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-06 03:26:23+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
140
  #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
  #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
  msgid "Input field border (focus)"
143
+ msgstr "Rand des Eingabefelds (focus)"
144
 
145
  #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
  #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
  msgid "Input field background (disabled)"
148
+ msgstr "Hintergrund des Eingabefelds (deaktiviert)"
149
 
150
  #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
  #: public/themes-ai1ec/vortex/less/user_variables.php:119
155
  #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
  #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
  msgid "Dropdown list background"
158
+ msgstr "Hintergrund der Dropdown-Liste"
159
 
160
  #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
  #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
  msgid "Dropdown list border"
163
+ msgstr "Rand der Dropdown-Liste"
164
 
165
  #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
  #: public/themes-ai1ec/vortex/less/user_variables.php:137
191
 
192
  #: public/admin/themes-updated.php:5
193
  msgid "Update Calendar Themes"
194
+ msgstr "Kalender Themes-aktualisieren"
195
 
196
  #: public/admin/themes-updated.php:15
197
  msgid "All-in-One Event Calendar Settings »"
199
 
200
  #: public/admin/themes.php:18
201
  msgid "Current Calendar Theme"
202
+ msgstr "Aktuelles Kalender-Theme"
203
 
204
  #: public/admin/themes.php:21
205
  msgid "Current theme preview"
206
+ msgstr "Aktuelle Theme-Vorschau"
207
 
208
  #: public/admin/themes.php:47
209
  msgid "Available Calendar Themes"
210
+ msgstr "Verfügbare Kalender-Themes"
211
 
212
  #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
  #: public/themes-ai1ec/vortex/less/user_variables.php:5
237
  #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
  #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
  msgid "Base font"
240
+ msgstr "Standard-Schriftart"
241
 
242
  #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
  #: public/themes-ai1ec/vortex/less/user_variables.php:41
332
 
333
  #: public/admin/row_custom.php:3
334
  msgid "Custom dates:"
335
+ msgstr "Benutzerdefinierte Tage:"
336
 
337
  #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
  #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
364
 
365
  #: public/admin/themes-install.php:4
366
  msgid "The active theme is broken. Reverting to the default theme."
367
+ msgstr "Das aktive Theme ist defekt. Standard-Theme wird ausgewählt."
368
 
369
  #: public/admin/themes-install.php:13
370
  msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
+ msgstr "Neues Theme wurde aktiviert. Dieses Theme unterstützt Widgets, bitte konfiguriere sie auf der <a href=\"%s\">Widget-Einstellungsseite</a>."
372
 
373
  #: public/admin/calendar_tasks.php:24
374
  msgid "Manage Events"
396
 
397
  #: public/admin/calendar_tasks.php:63
398
  msgid "Manage Calendar Feeds"
399
+ msgstr "Kalender-Feeds verwalten"
400
 
401
  #: public/admin/calendar_tasks.php:66
402
  msgid "Subscribe to other calendars."
444
 
445
  #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
  msgid "On refresh, preserve previously imported events that are missing from the feed"
447
+ msgstr "Behalte beim Aktualisieren die zuvor importierten Veranstaltungen, die im Feed fehlen"
448
 
449
  #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
  msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
+ msgstr "Raten der Zeitzone von Veranstaltungen, bei denen keine Zeitzone angegeben ist; empfohlen für die Feeds von Google-Kalendern"
452
 
453
  #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
  msgid "Assign default time zone to events in UTC"
455
+ msgstr "Weise den Veranstaltung in UTC-Zeitzone die Standard-Zeitzone zu"
456
 
457
  #: public/admin/box_support.php:19
458
  msgid "Get Add-ons"
540
 
541
  #: public/admin/box_eventbrite.php:68
542
  msgid "The price for this event's first ticket will be taken from the Cost field above."
543
+ msgstr "Der Preis für das erste Ticket dieser Veranstaltung wird von dem Kostenfeld oben übernommen."
544
 
545
  #: public/admin/box_eventbrite.php:75
546
  msgid "Quantity"
588
 
589
  #: public/admin/box_repeat.php:36
590
  msgid "Custom"
591
+ msgstr "Benutzerdefiniert"
592
 
593
  #: public/admin/box_repeat.php:72
594
  msgid "End"
622
 
623
  #: public/admin/box_event_cost.php:228
624
  msgid "Status:"
625
+ msgstr "Status:"
626
 
627
  #: public/admin/box_event_cost.php:235
628
  msgid "Open"
714
 
715
  #: public/admin/box_event_contact.php:56
716
  msgid "Website URL:"
717
+ msgstr "Website:"
718
 
719
  #: public/admin/box_event_cost.php:6
720
  msgid "Event cost and Tickets"
754
 
755
  #: public/admin/box_event_cost.php:111
756
  msgid "(Optional)"
757
+ msgstr "(optional)"
758
 
759
  #: public/admin/box_event_cost.php:115
760
  msgid "Price:"
761
+ msgstr "Preis:"
762
 
763
  #: public/admin/box_event_cost.php:124
764
  msgid "USD"
765
+ msgstr "US-Dollar"
766
 
767
  #: public/admin/box_event_cost.php:128
768
  msgid "Limits:"
770
 
771
  #: public/admin/box_event_cost.php:131
772
  msgid "This fields are required."
773
+ msgstr "Pflichtfeld"
774
 
775
  #: public/admin/box_event_cost.php:156
776
  msgid "Quantity:"
777
+ msgstr "Menge:"
778
 
779
  #: public/admin/box_event_cost.php:180
780
  msgid "Available:"
781
+ msgstr "Verfügbar:"
782
 
783
  #: public/admin/box_event_cost.php:185
784
  msgid "Immediately"
785
+ msgstr "direkt"
786
 
787
  #: public/admin/box_event_cost.php:190
788
  msgid "From:"
789
+ msgstr "Von:"
790
 
791
  #: public/admin/box_event_cost.php:207
792
  msgid "Till:"
793
+ msgstr "Bis:"
794
 
795
  #: public/admin/box_ask_customer_review.php:42
796
  #: public/admin/box_ask_customer_review.php:75
797
  msgid "No, thanks"
798
+ msgstr "Nein, danke!"
799
 
800
  #: public/admin/box_ask_customer_review.php:50
801
  #: public/admin/box_ask_customer_review.php:84
802
  msgid "Ok, sure!"
803
+ msgstr "Ok, klar!"
804
 
805
  #: public/admin/box_ask_customer_review.php:66
806
  msgid "Would you mind giving us some feedback?"
812
 
813
  #: public/admin/box_ask_customer_review.php:108
814
  msgid "Message:"
815
+ msgstr "Nachricht:"
816
 
817
  #: public/admin/box_ask_customer_review.php:121
818
  msgid "Name:"
819
+ msgstr "Name:"
820
 
821
  #: public/admin/box_ask_customer_review.php:136
822
  #: public/admin/box_event_contact.php:43
825
 
826
  #: public/admin/box_ask_customer_review.php:143
827
  msgid "E-mail is invalid."
828
+ msgstr "Die E-Mail-Adresse ist ungültig."
829
 
830
  #: public/admin/box_ask_customer_review.php:154
831
  msgid "Site URL:"
832
+ msgstr "Website:"
833
 
834
  #: public/admin/box_ask_customer_review.php:161
835
  msgid "Site URL is invalid."
836
+ msgstr "Adresse der Website ist ungültig."
837
 
838
  #: public/admin/box_ask_customer_review.php:173
839
  msgid "Thank you for being our customer,"
885
 
886
  #: lib/theme/loader.php:631
887
  msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
+ msgstr "Dein Kalender-Theme wurde aufgrund eines Render-Problems auf Vortex geändert. Für weitere Informationen aktiviere den Debug-Modus, indem du folgende Zeile zur Datei <code>wp-config.php</code> von WordPress hinzufügst:<pre>define( 'AI1EC_DEBUG', true );</pre>"
889
 
890
  #: lib/theme/search.php:253
891
  msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
897
 
898
  #: lib/twig/environment.php:115
899
  msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
+ msgstr "Der Kalender wurde aufgrund eines Render-Fehlers vorübergehend deaktiviert. Bitte <a href=\"javascript:location.reload();\">lade die Seite neu</a>."
901
 
902
  #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
  msgid "Title:"
1005
 
1006
  #: lib/robots/helper.php:105
1007
  msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
+ msgstr "<strong>FEHLER:</strong> Fehler beim Speichern von <strong>robots.txt</strong> auf dem Server, die Datei wurde nicht erstellt."
1009
 
1010
  #: lib/theme/list.php:152
1011
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
+ msgstr "Derzeit ist für diese Seite nur ein Theme freigegeben. Kontaktiere den Netzwerk-Administrator für eine <a href=\"%1$s\">Freigabe</a> oder <a href=\"%2$s\">installiere</a> weitere Themes."
1013
 
1014
  #: lib/theme/list.php:164
1015
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
+ msgstr "Derzeit ist für diese Seite nur ein Theme freigegeben. Kontaktiere den Netzwerk-Administrator für eine <a href=\"%1$s\">Freigabe</a> zusätzlicher Themes."
1017
 
1018
  #: lib/theme/list.php:179
1019
  msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1040
  #. title, 5: parent_theme
1041
  #: lib/theme/list.php:293
1042
  msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
+ msgstr "Die Template.Dateien befinden sich in <code>%2$s</code>. Die Stylesheet.Dateien befinden sich in <code>%3$s</code>. <strong>%4$s</strong> nutzt Templates von <strong>%5$s</strong>. Veränderungen an den Templates beeinflussen beide Themes. "
1044
 
1045
  #: lib/theme/list.php:308
1046
  msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1057
  #: lib/post/custom-type.php:85
1058
  msgctxt "Event categories taxonomy"
1059
  msgid "Categories"
1060
+ msgstr "Kategorien"
1061
 
1062
  #: lib/post/custom-type.php:86
1063
  msgctxt "Event categories taxonomy (singular)"
1064
  msgid "Category"
1065
+ msgstr "Kategorie"
1066
 
1067
  #: lib/post/custom-type.php:87
1068
  msgctxt "Event categories menu item"
1069
  msgid "Organize"
1070
+ msgstr "Organisieren"
1071
 
1072
  #: lib/post/custom-type.php:94
1073
  msgctxt "Event tags taxonomy"
1074
  msgid "Tags"
1075
+ msgstr "Schlagworte"
1076
 
1077
  #: lib/post/custom-type.php:95
1078
  msgctxt "Event tags taxonomy (singular)"
1079
  msgid "Tag"
1080
+ msgstr "Schlagwort"
1081
 
1082
  #: lib/post/custom-type.php:102
1083
  msgctxt "Event feeds taxonomy"
1164
 
1165
  #: lib/notification/admin.php:182
1166
  msgid "Got it – dismiss this"
1167
+ msgstr "Verstanden – ausblenden"
1168
 
1169
  #: lib/post/custom-type.php:26
1170
  msgctxt "Custom post type name"
1318
 
1319
  #: lib/exception/handler.php:395
1320
  msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
+ msgstr "All-In-One Event Kalender wurde aufgrund eines Fehlers deaktiviert:"
1322
 
1323
  #: lib/exception/handler.php:404
1324
  msgid "Try reactivating plugin"
1325
+ msgstr "Versuche das Plugin wieder zu aktivieren"
1326
 
1327
  #: lib/exception/handler.php:576
1328
  msgid "Toggle error details"
1329
+ msgstr "Fehlerdetails ausblenden/verstecken"
1330
 
1331
  #: lib/exception/handler.php:577
1332
  msgid "Error Details:"
1333
+ msgstr "Fehlerdetails:"
1334
 
1335
  #: lib/factory/html.php:133
1336
  msgid "Choose a date using calendar"
1346
 
1347
  #: lib/html/element/setting/cache.php:39
1348
  msgid "Templates cache is not writable"
1349
+ msgstr "Vorlagen-Cache ist nicht beschreibbar"
1350
 
1351
  #: lib/html/element/setting/cache.php:40
1352
  msgid "Templates cache is writable"
1353
+ msgstr "Vorlagen-Cache ist beschreibbar"
1354
 
1355
  #: lib/html/element/setting/cache.php:41
1356
  msgid "Checking..."
1402
 
1403
  #: lib/css/frontend.php:239
1404
  msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
+ msgstr "Das Kompilieren des CSS ist fehlgeschlagen, weil du nicht über genügend freien Speicher verfügst (es werden mindestens %s benötigt). Dein Kalender wird gerendert oder ohne CSS nicht korrekt funktionieren. Bitte lese <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">diesen Artikel</a> für Informationen zum Erhöhen des PHP-Speicherlimits."
1406
 
1407
  #: lib/css/frontend.php:266
1408
  msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1414
 
1415
  #: lib/css/frontend.php:300
1416
  msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
+ msgstr "Theme-Einstellungen wurden erfolgreich auf die Standardwerte zurückgesetzt. <a href='%s'>Seite besuchen</a>"
1418
 
1419
  #: lib/css/frontend.php:307
1420
  msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1462
 
1463
  #: lib/environment/check.php:55
1464
  msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
+ msgstr "Bitte eine Option aus der Dropdown-Liste <strong>Kalender-Seite</strong> wählen."
1466
 
1467
  #: lib/environment/check.php:68
1468
  msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1474
 
1475
  #: lib/environment/check.php:196
1476
  msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
+ msgstr "Das Add-on <strong>%s</strong> muss zumindest auf Version %s aktualisiert werden, um die Kompatibilität mit dem Kalender zu gewährleisten."
1478
 
1479
  #: lib/environment/check.php:197
1480
  msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
+ msgstr "Wenn du die Update-Hinweise unten nicht sehen kannst, stelle sicher, dass du die <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">Lizenzschlüssel korrekt eingegeben</a> hast. Alternativ kannst du in <a href=\"https://time.ly/your-account/\">deinem Account</a> die aktuelle Version der Add-ons herunterladen und sie <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">manuell aktualisieren</a>. Bitte wende dich an <a href=\"https://time.ly/forums/\">das Forum</a>, wenn die Fragen hast. Wir helfen dir gerne."
1482
 
1483
  #: lib/exception/handler.php:176
1484
  msgid "The add-on \"%s\" has been disabled due to an error:"
1485
+ msgstr "Das Add-on \"%s\" wurde aufgrund eines Fehlers deaktiviert:"
1486
 
1487
  #: lib/calendar-feed/ics.php:367
1488
  msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
+ msgstr "Willst du die aus dem Kalender importierten Veranstaltungen behalten oder verwerfen?"
1490
 
1491
  #: lib/calendar-feed/ics.php:373
1492
  msgid "Removing ICS Feed"
1514
 
1515
  #: lib/captcha/provider/nocaptcha.php:31
1516
  msgid "noCAPTCHA public key:"
1517
+ msgstr "Öffentlicher Schlüssel für noCAPTCHA:"
1518
 
1519
  #: lib/captcha/provider/nocaptcha.php:47
1520
  msgid "noCAPTCHA private key:"
1521
+ msgstr "Privater Schlüssel für noCAPTCHA:"
1522
 
1523
  #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
  msgid "Please try verifying you are human again."
1525
+ msgstr "Bitte versuche erneut dich als Mensch zu verifizieren."
1526
 
1527
  #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
  msgid "There was an error reading the human verification data. Please try again."
1529
+ msgstr "Bei der Verarbeitung der Verifizierungsdaten ist ein Fehler aufgetreten. Bitte versuche es erneut."
1530
 
1531
  #: lib/captcha/provider/recaptcha.php:32
1532
  msgid "reCAPTCHA public key:"
1533
+ msgstr "Öffentlicher Schlüssel für reCAPTCHA:"
1534
 
1535
  #: lib/captcha/provider/recaptcha.php:48
1536
  msgid "reCAPTCHA private key:"
1537
+ msgstr "Privater Schlüssel für reCAPTCHA:"
1538
 
1539
  #: lib/captcha/provider/recaptcha.php:66
1540
  msgid "Human verification"
1541
+ msgstr "Verifizierung als Mensch"
1542
 
1543
  #: lib/captcha/provider/recaptcha.php:67
1544
  msgid "Loading reCAPTCHA..."
1545
+ msgstr "Lade reCAPTCHA..."
1546
 
1547
  #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
  #: lib/clone/renderer-helper.php:45
1567
 
1568
  #: lib/compatibility/check.php:101
1569
  msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
+ msgstr "Du hast Frontend-Rendering aktiviert und verwendest ein benutzerdefiniertes Kalender-Theme. Wenn deinn Theme Frontend-Rendering nicht unterstützt, funktioniert der Kalender möglicherweise nicht korrekt."
1571
 
1572
  #: app/view/event/single.php:123
1573
  msgid "Tickets:"
1587
 
1588
  #: app/view/event/single.php:195
1589
  msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
+ msgstr "Dieser Beitrag ist ein Replikat vom <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> Kalender-Feed</a> einer anderen Seite."
1591
 
1592
  #: app/view/event/single.php:206
1593
  msgid "View original"
1651
 
1652
  #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
  msgid "Invalid ICS feed ID"
1654
+ msgstr "Ungültige ID für ICS-Feed"
1655
 
1656
  #: lib/calendar-feed/ics.php:350
1657
  msgid "Categories (optional)"
1667
 
1668
  #: app/view/event/content.php:125
1669
  msgid "Calendar"
1670
+ msgstr "Kalender"
1671
 
1672
  #: app/view/event/content.php:126
1673
  msgid "View all events"
1729
 
1730
  #: app/view/event/single.php:78
1731
  msgid "Event was created in the %s time zone"
1732
+ msgstr "Der Termin wurde in der Zeitzone %s erstellt"
1733
 
1734
  #: app/view/event/single.php:114
1735
  msgid "Add to Calendar"
1788
 
1789
  #: app/view/calendar/widget.php:80
1790
  msgid "Choose how to limit the upcoming events"
1791
+ msgstr "Wähle, wie du die bevorstehenden Veranstaltungen beschränken möchtest"
1792
 
1793
  #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
  msgid "Events"
1800
 
1801
  #: app/view/calendar/widget.php:106
1802
  msgid "Number of events to show"
1803
+ msgstr "Anzahl der Veranstaltungen, die angezeigt werden sollen"
1804
 
1805
  #: app/view/calendar/widget.php:115
1806
  msgid "Number of days to show"
1808
 
1809
  #: app/view/calendar/widget.php:124
1810
  msgid "Show events filtered for the following tags/categories"
1811
+ msgstr "Zeige Veranstaltungen, die dem folgenden Filter für Schlagworte/Kategorien entsprechen"
1812
 
1813
  #: app/view/calendar/widget.php:141
1814
  msgid "Show the subscribe button in the widget"
1815
+ msgstr "Zeige die Abonnieren-Schaltfläche im Widget an"
1816
 
1817
  #: app/view/calendar/widget.php:370
1818
  msgid "There are no upcoming events."
1844
 
1845
  #: app/view/calendar/subscribe-button.php:22
1846
  msgid "Add to Timely Calendar"
1847
+ msgstr "Zum Timely-Kalender hinzufügen"
1848
 
1849
  #: app/view/calendar/subscribe-button.php:23
1850
  msgid "Add to Google"
1856
 
1857
  #: app/view/calendar/subscribe-button.php:25
1858
  msgid "Add to Apple Calendar"
1859
+ msgstr "Zum Apple-Kalender hinzufügen"
1860
 
1861
  #: app/view/calendar/subscribe-button.php:26
1862
  msgid "Add to other calendar"
1864
 
1865
  #: app/view/calendar/subscribe-button.php:29
1866
  msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
+ msgstr "Die URL deines Timely-Kalenders kopieren oder anklicken, um ihn zu deinem Rich-Text-Kalender hinzuzufügen"
1868
 
1869
  #: app/view/calendar/subscribe-button.php:30
1870
  msgid "Subscribe to this calendar in your Google Calendar"
1871
+ msgstr "Diesen Kalender in deinem Google-Kalender abonnieren"
1872
 
1873
  #: app/view/calendar/subscribe-button.php:31
1874
  msgid "Subscribe to this calendar in MS Outlook"
1875
+ msgstr "Diesen Kalender im MS-Outlook-Kalender abonnieren"
1876
 
1877
  #: app/view/calendar/subscribe-button.php:32
1878
  msgid "Subscribe to this calendar in Apple Calendar/iCal"
1918
 
1919
  #: app/view/admin/tickets.php:86
1920
  msgid "Sales"
1921
+ msgstr "Verkäufe"
1922
 
1923
  #: app/view/admin/tickets.php:87
1924
  msgid "How do you want the tickets revenue to be sent to you?"
1938
 
1939
  #: app/view/admin/tickets.php:94
1940
  msgid "Save Changes"
1941
+ msgstr "Änderungen speichern"
1942
 
1943
  #: app/view/admin/tickets.php:95
1944
  msgid "Date"
1945
+ msgstr "Datum"
1946
 
1947
  #: app/view/admin/tickets.php:96
1948
  msgid "Event"
1949
+ msgstr "Veranstaltung"
1950
 
1951
  #: app/view/admin/tickets.php:97
1952
  msgid "Purchaser"
1953
+ msgstr "Käufer"
1954
 
1955
  #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
  #: public/admin/box_event_cost.php:35
1959
 
1960
  #: app/view/admin/tickets.php:101
1961
  msgid "Total"
1962
+ msgstr "Gesamt"
1963
 
1964
  #: app/view/admin/tickets.php:102
1965
  msgid "Sign Out"
1966
+ msgstr "Abmelden"
1967
 
1968
  #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
  #: app/view/admin/widget-creator.php:47
1970
  msgid "Widget Creator"
1971
+ msgstr "Widget-Ersteller"
1972
 
1973
  #: app/view/admin/widget-creator.php:74
1974
  msgctxt "meta box"
1975
  msgid "Widget Creator"
1976
+ msgstr "Widget-Ersteller"
1977
 
1978
  #: app/view/admin/widget-creator.php:131
1979
  msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
+ msgstr "Generiere ein Code-Snippet, das auf einer <strong>externen Website</strong> dazu verwendet werden kann, dort neue Kalender und Widgets einzubauen."
1981
 
1982
  #: app/view/admin/widget-creator.php:132
1983
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1985
 
1986
  #: app/view/admin/widget-creator.php:134
1987
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
+ msgstr "<p>Verwende <a href=\"%s\"><strong>Design</strong> &gt; <strong>Widgets</strong></a>, um Veranstaltung-Widgets wie jedes andere Widget zu deiner WordPress-Seite hinzuzufügen, oder verwende <a href=\"%s\" target=\"_blank\">Shortcodes</a>, um den kompletten Kalender einzubetten.</strong></p>"
1989
 
1990
  #: app/view/admin/widget-creator.php:140
1991
  msgid "Paste this code onto your site:"
1993
 
1994
  #: app/view/admin/widget-creator.php:141
1995
  msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
+ msgstr "Dieser Code wird aktualisiert, um die Einstellungsänderungen zu berücksichtigen. Geänderte Einstellungen beeinflussen bestehende Widgets nicht."
1997
 
1998
  #: app/view/calendar/page.php:54
1999
  msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2005
 
2006
  #: app/view/admin/settings.php:193
2007
  msgid "Phone Number:"
2008
+ msgstr "Telefonnumer:"
2009
 
2010
  #: app/view/admin/settings.php:194
2011
  msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2013
 
2014
  #: app/view/admin/settings.php:197
2015
  msgid "Sign Up"
2016
+ msgstr "Registrieren"
2017
 
2018
  #: app/view/admin/settings.php:198
2019
  msgid "Sign In"
2020
+ msgstr "Anmelden"
2021
 
2022
  #: app/view/admin/settings.php:212
2023
  msgid "Save Settings"
2029
 
2030
  #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
  msgid "Theme Options"
2032
+ msgstr "Theme-Einstellungen"
2033
 
2034
  #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
  msgid "Calendar Theme Options"
2036
+ msgstr "Einstellungen des Kalender-Themes"
2037
 
2038
  #: app/view/admin/theme-options.php:79
2039
  msgctxt "meta box"
2040
  msgid "Calendar Theme Options"
2041
+ msgstr "Einstellungen des Kalender-Themes"
2042
 
2043
  #: app/view/admin/theme-options.php:133
2044
  msgid "General"
2119
 
2120
  #: app/view/admin/settings.php:150
2121
  msgid "Email Templates"
2122
+ msgstr "E-Mail-Vorlagen"
2123
 
2124
  #: app/view/admin/settings.php:151
2125
  msgid "External Services"
2127
 
2128
  #: app/view/admin/settings.php:152
2129
  msgid "Cache Report"
2130
+ msgstr "Cache-Bericht"
2131
 
2132
  #: app/view/admin/settings.php:171
2133
  msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
2175
+ msgstr "E-Mail:"
2176
 
2177
  #: app/view/admin/settings.php:191
2178
  msgid "Password:"
2179
+ msgstr "Passwort:"
2180
 
2181
  #: app/view/admin/settings.php:192
2182
  msgid "Confirm Password:"
2183
+ msgstr "Passwort bestätigen:"
2184
 
2185
  #: app/view/admin/get-repeat-box.php:483
2186
  msgid "fourth"
2236
 
2237
  #: app/view/admin/nav.php:28
2238
  msgid "<a href=\"%s\">Check for updates</a>"
2239
+ msgstr "<a href=\"%s\">Aktualisieren</a>"
2240
 
2241
  #: app/view/admin/organize.php:100
2242
  msgid "Organize Events"
2270
 
2271
  #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
  msgid "Import Feeds"
2273
+ msgstr "Feeds importieren"
2274
 
2275
  #: app/view/admin/calendar-feeds.php:48
2276
  msgctxt "meta box"
2277
  msgid "Feed Subscriptions"
2278
+ msgstr "Feed-Abonnements"
2279
 
2280
  #: app/view/admin/calendar-feeds.php:65
2281
  msgid "All-in-One Event Calendar: Import Feeds"
2377
 
2378
  #: app/model/settings.php:965
2379
  msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2380
+ msgstr "<strong>Veröffentliche, bewerbe, und teile meine öffentlichen Veranstaltungen</strong> im Timely-Netzwerk. (<a href=\"%s\" target=\"_blank\">Mehr Informationen &#187;</a>)"
2381
 
2382
  #: app/model/settings.php:988
2383
  msgid "Templates cache improves site performance"
2384
+ msgstr "Vorlagen-Cache verbessert die Leistung der Seite"
2385
 
2386
  #: app/model/settings.php:1001
2387
  msgid "Display events in <strong>calendar time zone</strong>"
2397
 
2398
  #: app/view/admin/add-new-event.php:423
2399
  msgid "Set banner image"
2400
+ msgstr "Banner-Bild festlegen"
2401
 
2402
  #: app/view/admin/add-new-event.php:424
2403
  msgid "Remove banner image"
2404
+ msgstr "Banner-Bild entfernen"
2405
 
2406
  #: app/view/admin/add-ons.php:68
2407
  msgid "Add-ons for All In One Event Calendar"
2413
 
2414
  #: app/view/admin/add-ons.php:74
2415
  msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2416
+ msgstr "Diese Add-ons erweitern die Funktionalität des All-In-One Event Kalenders."
2417
 
2418
  #: app/view/admin/add-ons.php:77
2419
  msgid "There was an error retrieving the extensions list from the server. Please try again later."
2420
+ msgstr "Beim Laden der auf dem Server verfügbaren Erweiterungen ist ein Fehler aufgetreten. Bitte versuchen Sie es später nochmal."
2421
 
2422
  #: app/view/admin/all-events.php:16
2423
  msgid "Author"
2429
 
2430
  #: app/view/admin/all-events.php:18
2431
  msgid "Event date/time"
2432
+ msgstr "Datum/Zeit der Veranstaltung"
2433
 
2434
  #: app/view/admin/all-events.php:22
2435
  msgid "Ticket Types"
2441
 
2442
  #: app/view/admin/all-events.php:147
2443
  msgid "Show All Authors"
2444
+ msgstr "Alle Autoren anzeigen"
2445
 
2446
  #: app/model/settings.php:746
2447
  msgid "Strict compatibility content filtering"
2533
 
2534
  #: app/model/settings.php:902
2535
  msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2536
+ msgstr "Verwende diese Option, wenn der Kalender nicht reagiert. Das Problem ist <a href=\"http://support.time.ly/disable-gzip-compression/\">hier genauer beschrieben</a>. (Ab Version 2.1 aufwärts ist gzip standardmäßig aus Kompatibilitätsgründen deaktiviert.)"
2537
 
2538
  #: app/model/settings.php:914
2539
  msgid "Use frontend rendering."
2540
+ msgstr "Verwende Frontend-Rendering."
2541
 
2542
  #: app/model/settings.php:917
2543
  msgid "Renders calendar views on the client rather than the server; can improve performance."
2544
+ msgstr "Der Kalender wird im Client gerendert und nicht serverseitig; kann die Performance verbessern."
2545
 
2546
  #: app/model/settings.php:493 app/view/calendar/widget.php:128
2547
  msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
 
2554
  #: app/model/settings.php:519
2555
  msgid "Agenda pages show at most"
2556
+ msgstr "Listen-Seiten zeigen maximal"
2557
 
2558
  #: app/model/settings.php:532
2559
  msgid "Week/Day view starts at"
2607
 
2608
  #: app/model/settings.php:649
2609
  msgid "Hide <strong>Get a Timely Calendar</strong> button"
2610
+ msgstr "Verstecke <strong>Timely Calendar holen</strong>"
2611
 
2612
  #: app/model/settings.php:661
2613
  msgid " Hide <strong>Google Maps</strong> until clicked"
2619
 
2620
  #: app/model/settings.php:676
2621
  msgid "Only applies to first visible calendar found on the page."
2622
+ msgstr "Trifft nur für den ersten sichtbaren Kalender der Seite zu."
2623
 
2624
  #: app/model/settings.php:688
2625
  msgid "Offset affixed filter bar vertically by"
2639
 
2640
  #: app/model/api.php:456
2641
  msgid "Not available"
2642
+ msgstr "Nicht verfügbar"
2643
 
2644
  #: app/model/api.php:659
2645
  msgid "%s.<br/>Detail: %s."
2740
 
2741
  #: app/controller/javascript.php:517
2742
  msgid "For week and day view, you must select an interval of at least 6 hours."
2743
+ msgstr "Für die Wochen- und Tagesansicht muss ein Intervall von mindestens 6 Stunden gesetzt werden."
2744
 
2745
  #: app/model/api.php:40
2746
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2796
 
2797
  #: app/model/api.php:446
2798
  msgid "Past Event"
2799
+ msgstr "Vergangene Veranstaltung"
2800
 
2801
  #: app/model/api.php:448
2802
  msgid "Event closed"
2804
 
2805
  #: app/model/api.php:450
2806
  msgid "Not available yet"
2807
+ msgstr "Noch nicht verfügbar"
2808
 
2809
  #: app/model/api.php:452
2810
  msgid "Sale closed"
2812
 
2813
  #: app/model/api.php:454
2814
  msgid "Sold out"
2815
+ msgstr "Ausverkauft"
2816
 
2817
  #: app/controller/javascript.php:484
2818
  msgid "Report"
2910
 
2911
  #: app/controller/javascript.php:408
2912
  msgid "Please enter a valid email address."
2913
+ msgstr "Bitte eine gültige E-Mail-Adresse eingeben."
2914
 
2915
  #: app/controller/javascript.php:410
2916
  msgid "Choose Image"
2922
 
2923
  #: app/controller/javascript.php:416
2924
  msgid "Are you sure you want to reset your theme options to their default values?"
2925
+ msgstr "Bist du sicher, dass die Theme-Einstellungen auf ihre Standardwerte zurückgesetzt werden sollen?"
2926
 
2927
  #: app/controller/javascript.php:419
2928
  msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
3012
 
3013
  #: app/controller/javascript.php:402
3014
  msgid "This feed is already being imported."
3015
+ msgstr "Dieser Feed wird bereits importiert."
language/all-in-one-event-calendar-el.mo CHANGED
Binary file
language/all-in-one-event-calendar-el.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:47:14+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -2967,7 +2967,7 @@ msgstr ""
2967
 
2968
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
  msgid "Preview:"
2970
- msgstr ""
2971
 
2972
  #: app/controller/javascript.php:474
2973
  msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-03 01:41:29+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
2967
 
2968
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
  msgid "Preview:"
2970
+ msgstr "Προεπισκόπηση"
2971
 
2972
  #: app/controller/javascript.php:474
2973
  msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
language/all-in-one-event-calendar-en-au.mo ADDED
Binary file
language/all-in-one-event-calendar-en-au.po ADDED
@@ -0,0 +1,3020 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of 2.3 in English (Australia)
2
+ # This file is distributed under the same license as the 2.3 package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-01-21 20:47:16+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
+ "Project-Id-Version: 2.3\n"
12
+
13
+ #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
+ #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
+ msgid "Event background"
16
+ msgstr "Event background"
17
+
18
+ #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
+ #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
+ msgid "Event time background"
21
+ msgstr "Event time background"
22
+
23
+ #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
+ #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
+ msgid "Event text"
26
+ msgstr "Event text"
27
+
28
+ #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
+ #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
+ msgid "Month view date background"
31
+ msgstr "Month view date background"
32
+
33
+ #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
+ #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
+ msgid "Week/day view now marker"
36
+ msgstr "Week/day view now marker"
37
+
38
+ #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
+ #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
+ msgid "Date label accent color"
41
+ msgstr "Date label accent colour"
42
+
43
+ #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
+ #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
+ msgid "Date label background"
46
+ msgstr "Date label background"
47
+
48
+ #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
+ #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
+ msgid "Date background"
51
+ msgstr "Date background"
52
+
53
+ #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
+ #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
+ msgid "Today background"
56
+ msgstr "Today background"
57
+
58
+ #. Plugin Name of the plugin/theme
59
+ msgid "All-in-One Event Calendar by Time.ly"
60
+ msgstr "All-in-One Event Calendar by Time.ly"
61
+
62
+ #. Description of the plugin/theme
63
+ msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
+ msgstr "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
65
+
66
+ #. Author of the plugin/theme
67
+ msgid "Time.ly Network Inc."
68
+ msgstr "Time.ly Network Inc."
69
+
70
+ #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
+ #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
+ msgid "List item background (active/hover)"
73
+ msgstr "List item background (active/hover)"
74
+
75
+ #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
+ #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
+ msgid "Input field placeholder text"
78
+ msgstr "Input field placeholder text"
79
+
80
+ #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
+ #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
+ msgid "Today color"
83
+ msgstr "Today colour"
84
+
85
+ #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
+ #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
+ msgid "All-day badge color"
88
+ msgstr "All-day badge colour"
89
+
90
+ #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
+ #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
+ msgid "Event image shadow"
93
+ msgstr "Event image shadow"
94
+
95
+ #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
+ #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
+ msgid "Event default color"
98
+ msgstr "Event default colour"
99
+
100
+ #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
+ #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
+ msgid "Event default color (hover)"
103
+ msgstr "Event default colour (hover)"
104
+
105
+ #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
+ #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
+ msgid "All-day/multi-day event stub text"
108
+ msgstr "All-day/multi-day event stub text"
109
+
110
+ #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
+ #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
+ msgid "All-day/multi-day event stub text shadow"
113
+ msgstr "All-day/multi-day event stub text shadow"
114
+
115
+ #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
+ #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
+ msgid "Event border"
118
+ msgstr "Event border"
119
+
120
+ #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
+ #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
+ msgid "Button text"
123
+ msgstr "Button text"
124
+
125
+ #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
+ #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
+ msgid "Input field text"
128
+ msgstr "Input field text"
129
+
130
+ #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
+ #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
+ msgid "Input field background"
133
+ msgstr "Input field background"
134
+
135
+ #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
+ #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
+ msgid "Input field border"
138
+ msgstr "Input field border"
139
+
140
+ #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
+ #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
+ msgid "Input field border (focus)"
143
+ msgstr "Input field border (focus)"
144
+
145
+ #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
+ #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
+ msgid "Input field background (disabled)"
148
+ msgstr "Input field background (disabled)"
149
+
150
+ #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
+ #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
+ msgid "Field label"
153
+ msgstr "Field label"
154
+
155
+ #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
+ #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
+ msgid "Dropdown list background"
158
+ msgstr "Dropdown list background"
159
+
160
+ #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
+ #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
+ msgid "Dropdown list border"
163
+ msgstr "Dropdown list border"
164
+
165
+ #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
+ #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
+ msgid "List item text"
168
+ msgstr "List item text"
169
+
170
+ #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
+ #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
+ msgid "List item text (active/hover)"
173
+ msgstr "List item text (active/hover)"
174
+
175
+ #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
+ msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
+ msgstr "New theme activated. <a href=\"%s\">Visit site</a>"
178
+
179
+ #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
+ msgid "Theme deleted."
181
+ msgstr "Theme deleted."
182
+
183
+ #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
+ msgid "Manage Themes"
185
+ msgstr "Manage Themes"
186
+
187
+ #: public/admin/themes-install.php:40
188
+ msgctxt "theme"
189
+ msgid "Install Themes"
190
+ msgstr "Install Themes"
191
+
192
+ #: public/admin/themes-updated.php:5
193
+ msgid "Update Calendar Themes"
194
+ msgstr "Update Calendar Themes"
195
+
196
+ #: public/admin/themes-updated.php:15
197
+ msgid "All-in-One Event Calendar Settings »"
198
+ msgstr "All-in-One Event Calendar Settings »"
199
+
200
+ #: public/admin/themes.php:18
201
+ msgid "Current Calendar Theme"
202
+ msgstr "Current Calendar Theme"
203
+
204
+ #: public/admin/themes.php:21
205
+ msgid "Current theme preview"
206
+ msgstr "Current theme preview"
207
+
208
+ #: public/admin/themes.php:47
209
+ msgid "Available Calendar Themes"
210
+ msgstr "Available Calendar Themes"
211
+
212
+ #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
+ #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
+ msgid "Body background"
215
+ msgstr "Body background"
216
+
217
+ #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
+ #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
+ msgid "Text color"
220
+ msgstr "Text colour"
221
+
222
+ #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
+ #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
+ msgid "Text emboss"
225
+ msgstr "Text emboss"
226
+
227
+ #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
+ #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
+ msgid "Link"
230
+ msgstr "Link"
231
+
232
+ #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
+ #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
+ msgid "Link (hover)"
235
+ msgstr "Link (hover)"
236
+
237
+ #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
+ #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
+ msgid "Base font"
240
+ msgstr "Base font"
241
+
242
+ #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
+ #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
+ msgid "Base font size"
245
+ msgstr "Base font size"
246
+
247
+ #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
+ #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
+ msgid "Table background"
250
+ msgstr "Table background"
251
+
252
+ #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
+ #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
+ msgid "Table header background"
255
+ msgstr "Table header background"
256
+
257
+ #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
+ #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
+ msgid "Table header text"
260
+ msgstr "Table header text"
261
+
262
+ #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
+ #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
+ msgid "Primary brand color"
265
+ msgstr "Primary brand colour"
266
+
267
+ #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
+ #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
+ msgid "Button background"
270
+ msgstr "Button background"
271
+
272
+ #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
+ #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
+ msgid "Button border"
275
+ msgstr "Button border"
276
+
277
+ #: public/admin/feed_row.php:104
278
+ msgid "Refreshing&#8230;"
279
+ msgstr "Refreshing&#8230;"
280
+
281
+ #: public/admin/feed_row.php:106
282
+ msgid "Refresh"
283
+ msgstr "Refresh"
284
+
285
+ #: public/admin/feed_row.php:119
286
+ msgid "Removing&#8230;"
287
+ msgstr "Removing&#8230;"
288
+
289
+ #: public/admin/feed_row.php:121
290
+ msgid "Remove"
291
+ msgstr "Remove"
292
+
293
+ #: public/admin/import.php:6
294
+ msgid "Successfully imported events:"
295
+ msgstr "Successfully imported events:"
296
+
297
+ #: public/admin/plugins/ics/display_feeds.php:2
298
+ msgid ""
299
+ "Configure which other calendars your own calendar subscribes to.\n"
300
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
302
+ " imported periodically."
303
+ msgstr ""
304
+ "Configure which other calendars your own calendar subscribes to.\n"
305
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
306
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
307
+ " imported periodically."
308
+
309
+ #: public/admin/plugins/ics/display_feeds.php:14
310
+ msgid "Check for new events"
311
+ msgstr "Check for new events"
312
+
313
+ #: public/admin/plugins/ics/display_feeds.php:45
314
+ msgid "Allow comments on imported events"
315
+ msgstr "Allow comments on imported events"
316
+
317
+ #: public/admin/plugins/ics/display_feeds.php:52
318
+ msgid "Show map on imported events"
319
+ msgstr "Show map on imported events"
320
+
321
+ #: public/admin/plugins/ics/display_feeds.php:59
322
+ msgid "Import any tags/categories provided by feed, in addition those selected above"
323
+ msgstr "Import any tags/categories provided by feed, in addition those selected above"
324
+
325
+ #: public/admin/plugins/ics/display_feeds.php:93
326
+ msgid "Add new subscription"
327
+ msgstr "Add new subscription"
328
+
329
+ #: public/admin/plugins/ics/display_feeds.php:96
330
+ msgid "Update subscription"
331
+ msgstr ""
332
+
333
+ #: public/admin/row_custom.php:3
334
+ msgid "Custom dates:"
335
+ msgstr ""
336
+
337
+ #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
+ #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
+ #: public/admin/row_yearly.php:3
340
+ msgid "Every"
341
+ msgstr "Every"
342
+
343
+ #: public/admin/row_monthly.php:16
344
+ msgid "On day of the month"
345
+ msgstr "On day of the month"
346
+
347
+ #: public/admin/row_monthly.php:23
348
+ msgid "On day of the week"
349
+ msgstr "On day of the week"
350
+
351
+ #: public/admin/row_weekly.php:12
352
+ msgctxt "Recurrence editor - weekly tab"
353
+ msgid "On"
354
+ msgstr "On"
355
+
356
+ #: public/admin/row_yearly.php:12
357
+ msgctxt "Recurrence editor - yearly tab"
358
+ msgid "In"
359
+ msgstr "In"
360
+
361
+ #: public/admin/settings.php:19
362
+ msgid "Update Settings"
363
+ msgstr "Update Settings"
364
+
365
+ #: public/admin/themes-install.php:4
366
+ msgid "The active theme is broken. Reverting to the default theme."
367
+ msgstr "The active theme is broken. Reverting to the default theme."
368
+
369
+ #: public/admin/themes-install.php:13
370
+ msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
+ msgstr ""
372
+
373
+ #: public/admin/calendar_tasks.php:24
374
+ msgid "Manage Events"
375
+ msgstr "Manage Events"
376
+
377
+ #: public/admin/calendar_tasks.php:27
378
+ msgid "View and edit all your events."
379
+ msgstr "View and edit all your events."
380
+
381
+ #: public/admin/calendar_tasks.php:39
382
+ msgid "Manage Event Categories"
383
+ msgstr "Manage Event Categories"
384
+
385
+ #: public/admin/calendar_tasks.php:42
386
+ msgid "Organize and color-code your events."
387
+ msgstr "Organise and colour-code your events."
388
+
389
+ #: public/admin/calendar_tasks.php:50
390
+ msgid "Choose Your Theme"
391
+ msgstr "Choose Your Theme"
392
+
393
+ #: public/admin/calendar_tasks.php:53
394
+ msgid "Change the look and feel."
395
+ msgstr "Change the look and feel."
396
+
397
+ #: public/admin/calendar_tasks.php:63
398
+ msgid "Manage Calendar Feeds"
399
+ msgstr "Manage Calendar Feeds"
400
+
401
+ #: public/admin/calendar_tasks.php:66
402
+ msgid "Subscribe to other calendars."
403
+ msgstr "Subscribe to other calendars."
404
+
405
+ #: public/admin/calendar_tasks.php:74
406
+ msgid "Edit Calendar Settings"
407
+ msgstr "Edit Calendar Settings"
408
+
409
+ #: public/admin/calendar_tasks.php:77
410
+ msgid "Make this calendar your own."
411
+ msgstr "Make this calendar your own."
412
+
413
+ #: public/admin/cron_freq.php:3
414
+ msgid "Hourly"
415
+ msgstr "Hourly"
416
+
417
+ #: public/admin/cron_freq.php:6
418
+ msgid "Twice Daily"
419
+ msgstr "Twice Daily"
420
+
421
+ #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
+ msgid "iCalendar/.ics Feed URL:"
423
+ msgstr "iCalendar/.ics Feed URL:"
424
+
425
+ #: public/admin/feed_row.php:24
426
+ msgid "Event categories:"
427
+ msgstr "Event categories:"
428
+
429
+ #: public/admin/feed_row.php:31
430
+ msgid "Tag with"
431
+ msgstr "Tag with"
432
+
433
+ #: public/admin/feed_row.php:40
434
+ msgid "Allow comments"
435
+ msgstr "Allow comments"
436
+
437
+ #: public/admin/feed_row.php:51
438
+ msgid "Show map"
439
+ msgstr "Show map"
440
+
441
+ #: public/admin/feed_row.php:63
442
+ msgid "Keep original events categories and tags"
443
+ msgstr "Keep original events categories and tags"
444
+
445
+ #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
+ msgid "On refresh, preserve previously imported events that are missing from the feed"
447
+ msgstr ""
448
+
449
+ #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
+ msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
+ msgstr ""
452
+
453
+ #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
+ msgid "Assign default time zone to events in UTC"
455
+ msgstr ""
456
+
457
+ #: public/admin/box_support.php:19
458
+ msgid "Get Add-ons"
459
+ msgstr "Get Add-ons"
460
+
461
+ #: public/admin/box_support.php:27
462
+ msgid "Support"
463
+ msgstr "Support"
464
+
465
+ #: public/admin/box_support.php:35
466
+ msgid "Timely Events"
467
+ msgstr "Timely Events"
468
+
469
+ #: public/admin/box_support.php:43
470
+ msgid "Timely News"
471
+ msgstr "Timely News"
472
+
473
+ #: public/admin/box_support.php:47
474
+ msgid "view all news"
475
+ msgstr "view all news"
476
+
477
+ #: public/admin/box_support.php:95
478
+ msgid "Follow @_Timely"
479
+ msgstr "Follow @_Timely"
480
+
481
+ #: public/admin/box_time_and_date.php:6
482
+ msgid "Event date and time"
483
+ msgstr "Event date and time"
484
+
485
+ #: public/admin/box_time_and_date.php:26
486
+ msgid "All-day event"
487
+ msgstr "All-day event"
488
+
489
+ #: public/admin/box_time_and_date.php:35
490
+ msgid "No end time"
491
+ msgstr "No end time"
492
+
493
+ #: public/admin/box_time_and_date.php:42
494
+ msgid "Start date / time"
495
+ msgstr "Start date / time"
496
+
497
+ #: public/admin/box_time_and_date.php:59
498
+ msgid "End date / time"
499
+ msgstr "End date / time"
500
+
501
+ #: public/admin/box_time_and_date.php:76
502
+ msgid "Time zone"
503
+ msgstr "Time zone"
504
+
505
+ #: public/admin/box_time_and_date.php:81
506
+ msgid "Choose your time zone"
507
+ msgstr "Choose your time zone"
508
+
509
+ #: public/admin/box_time_and_date.php:108
510
+ msgid "Repeat"
511
+ msgstr "Repeat"
512
+
513
+ #: public/admin/box_time_and_date.php:127
514
+ msgid "Exclude"
515
+ msgstr "Exclude"
516
+
517
+ #: public/admin/box_time_and_date.php:136
518
+ msgid "Choose a rule for exclusion"
519
+ msgstr "Choose a rule for exclusion"
520
+
521
+ #: public/admin/calendar_tasks.php:3
522
+ msgid "Welcome"
523
+ msgstr "Welcome"
524
+
525
+ #: public/admin/calendar_tasks.php:4
526
+ msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
+ msgstr "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
+
529
+ #: public/admin/calendar_tasks.php:13
530
+ msgid "Post Your Event"
531
+ msgstr "Post Your Event"
532
+
533
+ #: public/admin/calendar_tasks.php:16
534
+ msgid "Add a new event to the calendar."
535
+ msgstr "Add a new event to the calendar."
536
+
537
+ #: public/admin/box_eventbrite.php:60
538
+ msgid "Donation Based"
539
+ msgstr "Donation Based"
540
+
541
+ #: public/admin/box_eventbrite.php:68
542
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
543
+ msgstr "The price for this event's first ticket will be taken from the Cost field above."
544
+
545
+ #: public/admin/box_eventbrite.php:75
546
+ msgid "Quantity"
547
+ msgstr "Quantity"
548
+
549
+ #: public/admin/box_eventbrite.php:85
550
+ msgid "Include Fee in Price"
551
+ msgstr "Include Fee in Price"
552
+
553
+ #: public/admin/box_eventbrite.php:90
554
+ msgid "Add Service Fee on top of price"
555
+ msgstr "Add Service Fee on top of price"
556
+
557
+ #: public/admin/box_eventbrite.php:92
558
+ msgid "Include Service fee in price"
559
+ msgstr "Include Service fee in price"
560
+
561
+ #: public/admin/box_eventbrite.php:98
562
+ msgid "Payment Options"
563
+ msgstr "Payment Options"
564
+
565
+ #: public/admin/box_eventbrite.php:105
566
+ msgid "Google Checkout"
567
+ msgstr "Google Checkout"
568
+
569
+ #: public/admin/box_eventbrite.php:107
570
+ msgid "Check"
571
+ msgstr "Cheque"
572
+
573
+ #: public/admin/box_eventbrite.php:109
574
+ msgid "Cash"
575
+ msgstr "Cash"
576
+
577
+ #: public/admin/box_eventbrite.php:111
578
+ msgid "Send an Invoice"
579
+ msgstr "Send an Invoice"
580
+
581
+ #: public/admin/box_profile_timezone.php:9
582
+ msgid "Your preferred timezone"
583
+ msgstr "Your preferred timezone"
584
+
585
+ #: public/admin/box_repeat.php:5
586
+ msgid "Select recurrence pattern:"
587
+ msgstr "Select recurrence pattern:"
588
+
589
+ #: public/admin/box_repeat.php:36
590
+ msgid "Custom"
591
+ msgstr ""
592
+
593
+ #: public/admin/box_repeat.php:72
594
+ msgid "End"
595
+ msgstr "End"
596
+
597
+ #: public/admin/box_repeat.php:82
598
+ msgid "Ending after"
599
+ msgstr "Ending after"
600
+
601
+ #: public/admin/box_repeat.php:109
602
+ #: public/admin/plugins/ics/display_feeds.php:90
603
+ msgid "Please wait&#8230;"
604
+ msgstr "Please wait&#8230;"
605
+
606
+ #: public/admin/box_repeat.php:111
607
+ msgid "Apply"
608
+ msgstr "Apply"
609
+
610
+ #: public/admin/box_repeat.php:116
611
+ #: public/admin/plugins/ics/display_feeds.php:84
612
+ msgid "Cancel"
613
+ msgstr "Cancel"
614
+
615
+ #: public/admin/box_support.php:4
616
+ msgid "Timely"
617
+ msgstr "Timely"
618
+
619
+ #: public/admin/box_support.php:11
620
+ msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
+ msgstr "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
622
+
623
+ #: public/admin/box_event_cost.php:228
624
+ msgid "Status:"
625
+ msgstr ""
626
+
627
+ #: public/admin/box_event_cost.php:235
628
+ msgid "Open"
629
+ msgstr ""
630
+
631
+ #: public/admin/box_event_cost.php:239
632
+ msgid "Closed"
633
+ msgstr ""
634
+
635
+ #: public/admin/box_event_cost.php:254
636
+ msgid "Add New Ticket Type"
637
+ msgstr ""
638
+
639
+ #: public/admin/box_event_cost.php:274
640
+ msgid "Tickets URL:"
641
+ msgstr ""
642
+
643
+ #: public/admin/box_event_location.php:6
644
+ msgid "Event location details"
645
+ msgstr "Event location details"
646
+
647
+ #: public/admin/box_event_location.php:19
648
+ msgid "Venue name:"
649
+ msgstr "Venue name:"
650
+
651
+ #: public/admin/box_event_location.php:31
652
+ msgid "Address:"
653
+ msgstr "Address:"
654
+
655
+ #: public/admin/box_event_location.php:45
656
+ msgid "Input Coordinates"
657
+ msgstr "Input Coordinates"
658
+
659
+ #: public/admin/box_event_location.php:57
660
+ msgid "Latitude:"
661
+ msgstr "Latitude:"
662
+
663
+ #: public/admin/box_event_location.php:69
664
+ msgid "Longitude:"
665
+ msgstr "Longitude:"
666
+
667
+ #: public/admin/box_event_location.php:85
668
+ msgid "Show Map"
669
+ msgstr ""
670
+
671
+ #: public/admin/box_eventbrite.php:1
672
+ msgid "Eventbrite Ticketing"
673
+ msgstr "Eventbrite Ticketing"
674
+
675
+ #: public/admin/box_eventbrite.php:7
676
+ msgid "Register this event with Eventbrite.com?"
677
+ msgstr "Register this event with Eventbrite.com?"
678
+
679
+ #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
+ #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
+ #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
+ msgid "Yes"
683
+ msgstr "Yes"
684
+
685
+ #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
+ #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
+ #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
+ msgid "No"
689
+ msgstr "No"
690
+
691
+ #: public/admin/box_eventbrite.php:22
692
+ msgid "Set up your first ticket"
693
+ msgstr "Set up your first ticket"
694
+
695
+ #: public/admin/box_eventbrite.php:24
696
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
+ msgstr "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
698
+
699
+ #: public/admin/box_eventbrite.php:42
700
+ msgid "Description"
701
+ msgstr "Description"
702
+
703
+ #: public/admin/box_eventbrite.php:53
704
+ msgid "Type"
705
+ msgstr "Type"
706
+
707
+ #: public/admin/box_eventbrite.php:58
708
+ msgid "Set Price"
709
+ msgstr "Set Price"
710
+
711
+ #: public/admin/box_event_contact.php:30
712
+ msgid "Phone:"
713
+ msgstr "Phone:"
714
+
715
+ #: public/admin/box_event_contact.php:56
716
+ msgid "Website URL:"
717
+ msgstr ""
718
+
719
+ #: public/admin/box_event_cost.php:6
720
+ msgid "Event cost and Tickets"
721
+ msgstr "Event cost and Tickets"
722
+
723
+ #: public/admin/box_event_cost.php:20
724
+ msgid "Ticket options not available - event imported from external calendar."
725
+ msgstr ""
726
+
727
+ #: public/admin/box_event_cost.php:28
728
+ msgid "Free event"
729
+ msgstr "Free event"
730
+
731
+ #: public/admin/box_event_cost.php:41
732
+ msgid "External Tickets URL"
733
+ msgstr ""
734
+
735
+ #: public/admin/box_event_cost.php:52
736
+ msgid "Ticketing allows you to sell tickets directly to the users."
737
+ msgstr ""
738
+
739
+ #: public/admin/box_event_cost.php:55
740
+ msgid "Sign Up for Timely Network"
741
+ msgstr ""
742
+
743
+ #: public/admin/box_event_cost.php:80
744
+ msgid "Remove Ticket Type"
745
+ msgstr ""
746
+
747
+ #: public/admin/box_event_cost.php:101
748
+ msgid "Ex.: Regular Ticket"
749
+ msgstr ""
750
+
751
+ #: public/admin/box_event_cost.php:105
752
+ msgid "Description:"
753
+ msgstr ""
754
+
755
+ #: public/admin/box_event_cost.php:111
756
+ msgid "(Optional)"
757
+ msgstr ""
758
+
759
+ #: public/admin/box_event_cost.php:115
760
+ msgid "Price:"
761
+ msgstr ""
762
+
763
+ #: public/admin/box_event_cost.php:124
764
+ msgid "USD"
765
+ msgstr ""
766
+
767
+ #: public/admin/box_event_cost.php:128
768
+ msgid "Limits:"
769
+ msgstr ""
770
+
771
+ #: public/admin/box_event_cost.php:131
772
+ msgid "This fields are required."
773
+ msgstr ""
774
+
775
+ #: public/admin/box_event_cost.php:156
776
+ msgid "Quantity:"
777
+ msgstr ""
778
+
779
+ #: public/admin/box_event_cost.php:180
780
+ msgid "Available:"
781
+ msgstr ""
782
+
783
+ #: public/admin/box_event_cost.php:185
784
+ msgid "Immediately"
785
+ msgstr ""
786
+
787
+ #: public/admin/box_event_cost.php:190
788
+ msgid "From:"
789
+ msgstr ""
790
+
791
+ #: public/admin/box_event_cost.php:207
792
+ msgid "Till:"
793
+ msgstr ""
794
+
795
+ #: public/admin/box_ask_customer_review.php:42
796
+ #: public/admin/box_ask_customer_review.php:75
797
+ msgid "No, thanks"
798
+ msgstr ""
799
+
800
+ #: public/admin/box_ask_customer_review.php:50
801
+ #: public/admin/box_ask_customer_review.php:84
802
+ msgid "Ok, sure!"
803
+ msgstr ""
804
+
805
+ #: public/admin/box_ask_customer_review.php:66
806
+ msgid "Would you mind giving us some feedback?"
807
+ msgstr ""
808
+
809
+ #: public/admin/box_ask_customer_review.php:101
810
+ msgid "Please provide some feedback"
811
+ msgstr ""
812
+
813
+ #: public/admin/box_ask_customer_review.php:108
814
+ msgid "Message:"
815
+ msgstr ""
816
+
817
+ #: public/admin/box_ask_customer_review.php:121
818
+ msgid "Name:"
819
+ msgstr ""
820
+
821
+ #: public/admin/box_ask_customer_review.php:136
822
+ #: public/admin/box_event_contact.php:43
823
+ msgid "E-mail:"
824
+ msgstr "E-mail:"
825
+
826
+ #: public/admin/box_ask_customer_review.php:143
827
+ msgid "E-mail is invalid."
828
+ msgstr ""
829
+
830
+ #: public/admin/box_ask_customer_review.php:154
831
+ msgid "Site URL:"
832
+ msgstr ""
833
+
834
+ #: public/admin/box_ask_customer_review.php:161
835
+ msgid "Site URL is invalid."
836
+ msgstr ""
837
+
838
+ #: public/admin/box_ask_customer_review.php:173
839
+ msgid "Thank you for being our customer,"
840
+ msgstr ""
841
+
842
+ #: public/admin/box_ask_customer_review.php:174
843
+ msgid "Aristotel Dascal, VP of Product, Time.ly"
844
+ msgstr ""
845
+
846
+ #: public/admin/box_ask_customer_review.php:180
847
+ msgid "Sending..."
848
+ msgstr ""
849
+
850
+ #: public/admin/box_ask_customer_review.php:181
851
+ msgid "Send Message"
852
+ msgstr ""
853
+
854
+ #: public/admin/box_event_children.php:12
855
+ msgid "Base recurrence event"
856
+ msgstr "Base recurrence event"
857
+
858
+ #: public/admin/box_event_children.php:14
859
+ msgid "Modified recurrence events"
860
+ msgstr "Modified recurrence events"
861
+
862
+ #: public/admin/box_event_children.php:22
863
+ msgid "Edit parent:"
864
+ msgstr "Edit parent:"
865
+
866
+ #: public/admin/box_event_children.php:27
867
+ msgid "Modified Events"
868
+ msgstr "Modified Events"
869
+
870
+ #: public/admin/box_event_children.php:31
871
+ msgid "Edit:"
872
+ msgstr "Edit:"
873
+
874
+ #: public/admin/box_event_contact.php:6
875
+ msgid "Organizer contact info"
876
+ msgstr "Organiser contact info"
877
+
878
+ #: public/admin/box_event_contact.php:17
879
+ msgid "Contact name:"
880
+ msgstr "Contact name:"
881
+
882
+ #: lib/theme/loader.php:325
883
+ msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
+ msgstr "We couldn't find a suitable loader for filename with extension '%s'"
885
+
886
+ #: lib/theme/loader.php:631
887
+ msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
+ msgstr ""
889
+
890
+ #: lib/theme/search.php:253
891
+ msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
+ msgstr "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writeable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
893
+
894
+ #: lib/theme/search.php:264
895
+ msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
+ msgstr "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
897
+
898
+ #: lib/twig/environment.php:115
899
+ msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
+ msgstr ""
901
+
902
+ #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
+ msgid "Title:"
904
+ msgstr "Title:"
905
+
906
+ #: public/admin/agenda-widget-form.php:12
907
+ msgid "Number of events to show:"
908
+ msgstr "Number of events to show:"
909
+
910
+ #: public/admin/agenda-widget-form.php:21
911
+ msgid "Number of days to show:"
912
+ msgstr "Number of days to show:"
913
+
914
+ #: public/admin/agenda-widget-form.php:26
915
+ msgid "Limit to:"
916
+ msgstr "Limit to:"
917
+
918
+ #: public/admin/agenda-widget-form.php:30
919
+ msgid "Events with these <strong>Categories</strong>"
920
+ msgstr "Events with these <strong>Categories</strong>"
921
+
922
+ #: public/admin/agenda-widget-form.php:39
923
+ msgid "No categories found."
924
+ msgstr "No categories found."
925
+
926
+ #: public/admin/agenda-widget-form.php:46
927
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
+ msgstr "<strong>Or</strong> events with these <strong>Tags</strong>"
929
+
930
+ #: public/admin/agenda-widget-form.php:55
931
+ msgid "No tags found."
932
+ msgstr "No tags found."
933
+
934
+ #: public/admin/agenda-widget-form.php:62
935
+ msgid "Show <strong>View Calendar</strong> button"
936
+ msgstr "Show <strong>View Calendar</strong> button"
937
+
938
+ #: public/admin/agenda-widget-form.php:65
939
+ msgid "Show <strong>Subscribe</strong> buttons"
940
+ msgstr "Show <strong>Subscribe</strong> buttons"
941
+
942
+ #: public/admin/agenda-widget-form.php:68
943
+ msgid "Hide this widget on calendar page"
944
+ msgstr "Hide this widget on calendar page"
945
+
946
+ #: public/admin/box_ask_customer_review.php:5
947
+ msgid "Enjoying All-in-One Event Calendar?"
948
+ msgstr ""
949
+
950
+ #: public/admin/box_ask_customer_review.php:13
951
+ msgid "Not really"
952
+ msgstr ""
953
+
954
+ #: public/admin/box_ask_customer_review.php:20
955
+ msgid "Yes!"
956
+ msgstr ""
957
+
958
+ #: public/admin/box_ask_customer_review.php:33
959
+ msgid "How about a rating on the Wordpress?"
960
+ msgstr ""
961
+
962
+ #: lib/recurrence/rule.php:397
963
+ msgid "Every %d weeks"
964
+ msgstr "Every %d weeks"
965
+
966
+ #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
+ msgid "Monthly"
968
+ msgstr "Monthly"
969
+
970
+ #: lib/recurrence/rule.php:409
971
+ msgid "Every other month"
972
+ msgstr "Every other month"
973
+
974
+ #: lib/recurrence/rule.php:412
975
+ msgid "Every %d months"
976
+ msgstr "Every %d months"
977
+
978
+ #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
+ msgid "Yearly"
980
+ msgstr "Yearly"
981
+
982
+ #: lib/recurrence/rule.php:424
983
+ msgid "Every other year"
984
+ msgstr "Every other year"
985
+
986
+ #: lib/recurrence/rule.php:427
987
+ msgid "Every %d years"
988
+ msgstr "Every %d years"
989
+
990
+ #: lib/recurrence/rule.php:465
991
+ msgid "until %s"
992
+ msgstr "until %s"
993
+
994
+ #: lib/recurrence/rule.php:475
995
+ msgid "for %d occurrences"
996
+ msgstr "for %d occurrences"
997
+
998
+ #: lib/recurrence/rule.php:479
999
+ msgid "forever"
1000
+ msgstr "forever"
1001
+
1002
+ #: lib/robots/helper.php:71
1003
+ msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
+ msgstr "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1005
+
1006
+ #: lib/robots/helper.php:105
1007
+ msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
+ msgstr "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1009
+
1010
+ #: lib/theme/list.php:152
1011
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
+ msgstr "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1013
+
1014
+ #: lib/theme/list.php:164
1015
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
+ msgstr "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1017
+
1018
+ #: lib/theme/list.php:179
1019
+ msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
+ msgstr "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1021
+
1022
+ #: lib/theme/list.php:190
1023
+ msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
+ msgstr "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1025
+
1026
+ #: lib/theme/list.php:257
1027
+ msgid "Activate &#8220;%s&#8221;"
1028
+ msgstr "Activate &#8220;%s&#8221;"
1029
+
1030
+ #: lib/theme/list.php:264
1031
+ msgid "Activate"
1032
+ msgstr "Activate"
1033
+
1034
+ #. translators: 1: theme title, 2: theme version, 3: theme author
1035
+ #: lib/theme/list.php:281 public/admin/themes.php:25
1036
+ msgid "%1$s %2$s by %3$s"
1037
+ msgstr "%1$s %2$s by %3$s"
1038
+
1039
+ #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
+ #. title, 5: parent_theme
1041
+ #: lib/theme/list.php:293
1042
+ msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
+ msgstr "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1044
+
1045
+ #: lib/theme/list.php:308
1046
+ msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
+ msgstr "All of this theme&#8217;s files are located in <code>%2$s</code>."
1048
+
1049
+ #: lib/post/custom-type.php:36
1050
+ msgid "Parent Event"
1051
+ msgstr "Parent Event"
1052
+
1053
+ #: lib/post/custom-type.php:55
1054
+ msgid "event"
1055
+ msgstr "event"
1056
+
1057
+ #: lib/post/custom-type.php:85
1058
+ msgctxt "Event categories taxonomy"
1059
+ msgid "Categories"
1060
+ msgstr ""
1061
+
1062
+ #: lib/post/custom-type.php:86
1063
+ msgctxt "Event categories taxonomy (singular)"
1064
+ msgid "Category"
1065
+ msgstr ""
1066
+
1067
+ #: lib/post/custom-type.php:87
1068
+ msgctxt "Event categories menu item"
1069
+ msgid "Organize"
1070
+ msgstr ""
1071
+
1072
+ #: lib/post/custom-type.php:94
1073
+ msgctxt "Event tags taxonomy"
1074
+ msgid "Tags"
1075
+ msgstr ""
1076
+
1077
+ #: lib/post/custom-type.php:95
1078
+ msgctxt "Event tags taxonomy (singular)"
1079
+ msgid "Tag"
1080
+ msgstr ""
1081
+
1082
+ #: lib/post/custom-type.php:102
1083
+ msgctxt "Event feeds taxonomy"
1084
+ msgid "Event Feeds"
1085
+ msgstr "Event Feeds"
1086
+
1087
+ #: lib/post/custom-type.php:103
1088
+ msgctxt "Event feed taxonomy (singular)"
1089
+ msgid "Event Feed"
1090
+ msgstr "Event Feed"
1091
+
1092
+ #: lib/post/custom-type.php:285
1093
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
+ msgstr "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1095
+
1096
+ #: lib/post/custom-type.php:296
1097
+ msgid "All Events"
1098
+ msgstr "All Events"
1099
+
1100
+ #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
+ #: lib/recurrence/rule.php:260
1102
+ msgctxt "Recurrence editor - weekly tab"
1103
+ msgid "on"
1104
+ msgstr "on"
1105
+
1106
+ #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
+ #: lib/recurrence/rule.php:326
1108
+ msgid "and"
1109
+ msgstr "and"
1110
+
1111
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
+ #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
+ msgctxt "Recurrence editor - monthly tab"
1114
+ msgid "on"
1115
+ msgstr "on"
1116
+
1117
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
+ #: lib/recurrence/rule.php:286
1119
+ msgid "of the month"
1120
+ msgstr "of the month"
1121
+
1122
+ #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
+ #: lib/recurrence/rule.php:336
1124
+ msgctxt "Recurrence editor - yearly tab"
1125
+ msgid "on"
1126
+ msgstr "on"
1127
+
1128
+ #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
+ #: public/admin/cron_freq.php:9
1130
+ msgid "Daily"
1131
+ msgstr "Daily"
1132
+
1133
+ #: lib/recurrence/rule.php:379
1134
+ msgid "Every other day"
1135
+ msgstr "Every other day"
1136
+
1137
+ #: lib/recurrence/rule.php:382
1138
+ msgid "Every %d days"
1139
+ msgstr "Every %d days"
1140
+
1141
+ #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
+ msgid "Weekly"
1143
+ msgstr "Weekly"
1144
+
1145
+ #: lib/recurrence/rule.php:394
1146
+ msgid "Every other week"
1147
+ msgstr "Every other week"
1148
+
1149
+ #: lib/less/variable/font.php:64
1150
+ msgid "Custom..."
1151
+ msgstr "Custom..."
1152
+
1153
+ #: lib/less/variable/font.php:112
1154
+ msgid "Enter custom font(s)"
1155
+ msgstr "Enter custom font(s)"
1156
+
1157
+ #: lib/less/variable/size.php:26
1158
+ msgid "Length"
1159
+ msgstr "Length"
1160
+
1161
+ #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
+ msgid "All-in-One Event Calendar"
1163
+ msgstr "All-in-One Event Calendar"
1164
+
1165
+ #: lib/notification/admin.php:182
1166
+ msgid "Got it – dismiss this"
1167
+ msgstr ""
1168
+
1169
+ #: lib/post/custom-type.php:26
1170
+ msgctxt "Custom post type name"
1171
+ msgid "Events"
1172
+ msgstr "Events"
1173
+
1174
+ #: lib/post/custom-type.php:27
1175
+ msgctxt "Custom post type name (singular)"
1176
+ msgid "Event"
1177
+ msgstr "Event"
1178
+
1179
+ #: lib/post/custom-type.php:28
1180
+ msgid "Add New"
1181
+ msgstr "Add New"
1182
+
1183
+ #: lib/post/custom-type.php:29
1184
+ msgid "Add New Event"
1185
+ msgstr "Add New Event"
1186
+
1187
+ #: lib/post/custom-type.php:30
1188
+ msgid "Edit Event"
1189
+ msgstr "Edit Event"
1190
+
1191
+ #: lib/post/custom-type.php:31
1192
+ msgid "New Event"
1193
+ msgstr "New Event"
1194
+
1195
+ #: lib/post/custom-type.php:32
1196
+ msgid "View Event"
1197
+ msgstr "View Event"
1198
+
1199
+ #: lib/post/custom-type.php:33
1200
+ msgid "Search Events"
1201
+ msgstr "Search Events"
1202
+
1203
+ #: lib/post/custom-type.php:34
1204
+ msgid "No Events found"
1205
+ msgstr "No Events found"
1206
+
1207
+ #: lib/post/custom-type.php:35
1208
+ msgid "No Events found in Trash"
1209
+ msgstr "No Events found in Trash"
1210
+
1211
+ #: lib/html/element/setting/html.php:62
1212
+ msgid "Filter by post ID:"
1213
+ msgstr "Filter by post ID:"
1214
+
1215
+ #: lib/html/element/setting/html.php:63
1216
+ msgid "Filter by post IDs (separate IDs by comma):"
1217
+ msgstr "Filter by post IDs (separate IDs by comma):"
1218
+
1219
+ #: lib/html/element/setting/html.php:64
1220
+ msgid "Limit number of events per page:"
1221
+ msgstr "Limit number of events per page:"
1222
+
1223
+ #: lib/html/element/setting/html.php:65
1224
+ msgid "Warning:"
1225
+ msgstr "Warning:"
1226
+
1227
+ #: lib/html/element/setting/html.php:66
1228
+ msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
+ msgstr "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1230
+
1231
+ #: lib/import-export/ics.php:831
1232
+ msgid "Tickets: "
1233
+ msgstr ""
1234
+
1235
+ #: lib/html/element/setting/html.php:41
1236
+ msgid "Day view:"
1237
+ msgstr "Day view:"
1238
+
1239
+ #: lib/html/element/setting/html.php:42
1240
+ msgid "Agenda view:"
1241
+ msgstr "Agenda view:"
1242
+
1243
+ #: lib/html/element/setting/html.php:43
1244
+ msgid "Some Other view:"
1245
+ msgstr "Some Other view:"
1246
+
1247
+ #: lib/html/element/setting/html.php:44
1248
+ msgid "Default view as per settings:"
1249
+ msgstr "Default view as per settings:"
1250
+
1251
+ #: lib/html/element/setting/html.php:45
1252
+ msgid "General form:"
1253
+ msgstr "General form:"
1254
+
1255
+ #: lib/html/element/setting/html.php:46
1256
+ msgid "Optional."
1257
+ msgstr "Optional."
1258
+
1259
+ #: lib/html/element/setting/html.php:47
1260
+ msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
+ msgstr "Add options to display a filtered calendar. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1262
+
1263
+ #: lib/html/element/setting/html.php:48
1264
+ msgid "Filter by event category name/slug:"
1265
+ msgstr "Filter by event category name/slug:"
1266
+
1267
+ #: lib/html/element/setting/html.php:49
1268
+ msgid "Holidays"
1269
+ msgstr "Holidays"
1270
+
1271
+ #: lib/html/element/setting/html.php:50
1272
+ msgid "Lunar Cycles"
1273
+ msgstr "Lunar Cycles"
1274
+
1275
+ #: lib/html/element/setting/html.php:51
1276
+ msgid "zodiac-date-ranges"
1277
+ msgstr "zodiac-date-ranges"
1278
+
1279
+ #: lib/html/element/setting/html.php:52
1280
+ msgid "Filter by event category names/slugs (separate names by comma):"
1281
+ msgstr "Filter by event category names/slugs (separate names by comma):"
1282
+
1283
+ #: lib/html/element/setting/html.php:53
1284
+ msgid "Filter by event category ID:"
1285
+ msgstr "Filter by event category ID:"
1286
+
1287
+ #: lib/html/element/setting/html.php:54
1288
+ msgid "Filter by event category IDs (separate IDs by comma):"
1289
+ msgstr "Filter by event category IDs (separate IDs by comma):"
1290
+
1291
+ #: lib/html/element/setting/html.php:55
1292
+ msgid "Filter by event tag name/slug:"
1293
+ msgstr "Filter by event tag name/slug:"
1294
+
1295
+ #: lib/html/element/setting/html.php:56
1296
+ msgid "tips-and-tricks"
1297
+ msgstr "tips-and-tricks"
1298
+
1299
+ #: lib/html/element/setting/html.php:57
1300
+ msgid "creative writing"
1301
+ msgstr "creative writing"
1302
+
1303
+ #: lib/html/element/setting/html.php:58
1304
+ msgid "performing arts"
1305
+ msgstr "performing arts"
1306
+
1307
+ #: lib/html/element/setting/html.php:59
1308
+ msgid "Filter by event tag names/slugs (separate names by comma):"
1309
+ msgstr "Filter by event tag names/slugs (separate names by comma):"
1310
+
1311
+ #: lib/html/element/setting/html.php:60
1312
+ msgid "Filter by event tag ID:"
1313
+ msgstr "Filter by event tag ID:"
1314
+
1315
+ #: lib/html/element/setting/html.php:61
1316
+ msgid "Filter by event tag IDs (separate IDs by comma):"
1317
+ msgstr "Filter by event tag IDs (separate IDs by comma):"
1318
+
1319
+ #: lib/exception/handler.php:395
1320
+ msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
+ msgstr ""
1322
+
1323
+ #: lib/exception/handler.php:404
1324
+ msgid "Try reactivating plugin"
1325
+ msgstr ""
1326
+
1327
+ #: lib/exception/handler.php:576
1328
+ msgid "Toggle error details"
1329
+ msgstr ""
1330
+
1331
+ #: lib/exception/handler.php:577
1332
+ msgid "Error Details:"
1333
+ msgstr ""
1334
+
1335
+ #: lib/factory/html.php:133
1336
+ msgid "Choose a date using calendar"
1337
+ msgstr "Choose a date using calendar"
1338
+
1339
+ #: lib/factory/html.php:278
1340
+ msgid "Tags (optional)"
1341
+ msgstr "Tags (optional)"
1342
+
1343
+ #: lib/html/element/setting/cache.php:38
1344
+ msgid "Check again"
1345
+ msgstr "Check again"
1346
+
1347
+ #: lib/html/element/setting/cache.php:39
1348
+ msgid "Templates cache is not writable"
1349
+ msgstr "Templates cache is not writeable"
1350
+
1351
+ #: lib/html/element/setting/cache.php:40
1352
+ msgid "Templates cache is writable"
1353
+ msgstr "Templates cache is writeable"
1354
+
1355
+ #: lib/html/element/setting/cache.php:41
1356
+ msgid "Checking..."
1357
+ msgstr "Checking..."
1358
+
1359
+ #: lib/html/element/setting/cache.php:42
1360
+ msgid "Performance Report"
1361
+ msgstr "Performance Report"
1362
+
1363
+ #: lib/html/element/setting/calendar-page-selector.php:70
1364
+ msgid "View"
1365
+ msgstr "View"
1366
+
1367
+ #: lib/html/element/setting/calendar-page-selector.php:114
1368
+ msgid "- Auto-Create New Page -"
1369
+ msgstr "- Auto-Create New Page -"
1370
+
1371
+ #: lib/html/element/setting/enabled-views.php:22
1372
+ msgid "Enabled"
1373
+ msgstr "Enabled"
1374
+
1375
+ #: lib/html/element/setting/enabled-views.php:23
1376
+ msgid "Default"
1377
+ msgstr "Default"
1378
+
1379
+ #: lib/html/element/setting/enabled-views.php:24
1380
+ msgid "Desktop"
1381
+ msgstr "Desktop"
1382
+
1383
+ #: lib/html/element/setting/enabled-views.php:25
1384
+ msgid "Mobile"
1385
+ msgstr "Mobile"
1386
+
1387
+ #: lib/html/element/setting/html.php:37
1388
+ msgid "Embed the calendar using a shortcode"
1389
+ msgstr "Embed the calendar using a shortcode"
1390
+
1391
+ #: lib/html/element/setting/html.php:38
1392
+ msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
+ msgstr "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1394
+
1395
+ #: lib/html/element/setting/html.php:39
1396
+ msgid "Month view:"
1397
+ msgstr "Month view:"
1398
+
1399
+ #: lib/html/element/setting/html.php:40
1400
+ msgid "Week view:"
1401
+ msgstr "Week view:"
1402
+
1403
+ #: lib/css/frontend.php:239
1404
+ msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
+ msgstr ""
1406
+
1407
+ #: lib/css/frontend.php:266
1408
+ msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
+ msgstr "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1410
+
1411
+ #: lib/css/frontend.php:272
1412
+ msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
+ msgstr "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1414
+
1415
+ #: lib/css/frontend.php:300
1416
+ msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
+ msgstr "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1418
+
1419
+ #: lib/css/frontend.php:307
1420
+ msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
+ msgstr "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1422
+
1423
+ #: lib/css/frontend.php:343
1424
+ msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
+ msgstr "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1426
+
1427
+ #: lib/database/applicator.php:182
1428
+ msgid "Date columns in table %s have different types."
1429
+ msgstr "Date columns in table %s have different types."
1430
+
1431
+ #: lib/database/exception/database.php:19
1432
+ msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
+ msgstr "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1434
+
1435
+ #: lib/database/exception/database.php:23
1436
+ msgid "Error encountered: %s"
1437
+ msgstr "Error encountered: %s"
1438
+
1439
+ #: lib/date/system.php:202
1440
+ msgid "GMT%+d:%02d"
1441
+ msgstr "GMT%+d:%02d"
1442
+
1443
+ #: lib/date/timezone.php:362
1444
+ msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
+ msgstr "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1446
+
1447
+ #: lib/date/timezone.php:397
1448
+ msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
+ msgstr "Timezone \"UTC%+d\" is not recognised. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1450
+
1451
+ #: lib/date/timezone.php:421
1452
+ msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
+ msgstr "Selected timezone \"UTC%+d\" will be treated as %s."
1454
+
1455
+ #: lib/date/timezone.php:490
1456
+ msgid "Manual Offset"
1457
+ msgstr "Manual Offset"
1458
+
1459
+ #: lib/date/timezone.php:493
1460
+ msgid "Choose your timezone"
1461
+ msgstr "Choose your timezone"
1462
+
1463
+ #: lib/environment/check.php:55
1464
+ msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
+ msgstr "Select an option in the <strong>Calendar page</strong> dropdown list."
1466
+
1467
+ #: lib/environment/check.php:68
1468
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
+ msgstr "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1470
+
1471
+ #: lib/environment/check.php:78
1472
+ msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
+ msgstr "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1474
+
1475
+ #: lib/environment/check.php:196
1476
+ msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
+ msgstr ""
1478
+
1479
+ #: lib/environment/check.php:197
1480
+ msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
+ msgstr ""
1482
+
1483
+ #: lib/exception/handler.php:176
1484
+ msgid "The add-on \"%s\" has been disabled due to an error:"
1485
+ msgstr ""
1486
+
1487
+ #: lib/calendar-feed/ics.php:367
1488
+ msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
+ msgstr "Do you want to keep the events imported from the calendar or remove them?"
1490
+
1491
+ #: lib/calendar-feed/ics.php:373
1492
+ msgid "Removing ICS Feed"
1493
+ msgstr "Removing ICS Feed"
1494
+
1495
+ #: lib/calendar-feed/ics.php:376
1496
+ msgid "Keep Events"
1497
+ msgstr "Keep Events"
1498
+
1499
+ #: lib/calendar-feed/ics.php:379
1500
+ msgid "Remove Events"
1501
+ msgstr "Remove Events"
1502
+
1503
+ #: lib/calendar-feed/ics.php:519
1504
+ msgid "Oh, submission was not accepted."
1505
+ msgstr ""
1506
+
1507
+ #: lib/calendar-feed/ics.php:699
1508
+ msgid "Deleted %d events"
1509
+ msgstr "Deleted %d events"
1510
+
1511
+ #: lib/calendar-feed/ics.php:735
1512
+ msgid "Feed deleted"
1513
+ msgstr "Feed deleted"
1514
+
1515
+ #: lib/captcha/provider/nocaptcha.php:31
1516
+ msgid "noCAPTCHA public key:"
1517
+ msgstr ""
1518
+
1519
+ #: lib/captcha/provider/nocaptcha.php:47
1520
+ msgid "noCAPTCHA private key:"
1521
+ msgstr ""
1522
+
1523
+ #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
+ msgid "Please try verifying you are human again."
1525
+ msgstr ""
1526
+
1527
+ #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
+ msgid "There was an error reading the human verification data. Please try again."
1529
+ msgstr ""
1530
+
1531
+ #: lib/captcha/provider/recaptcha.php:32
1532
+ msgid "reCAPTCHA public key:"
1533
+ msgstr ""
1534
+
1535
+ #: lib/captcha/provider/recaptcha.php:48
1536
+ msgid "reCAPTCHA private key:"
1537
+ msgstr ""
1538
+
1539
+ #: lib/captcha/provider/recaptcha.php:66
1540
+ msgid "Human verification"
1541
+ msgstr ""
1542
+
1543
+ #: lib/captcha/provider/recaptcha.php:67
1544
+ msgid "Loading reCAPTCHA..."
1545
+ msgstr ""
1546
+
1547
+ #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
+ #: lib/clone/renderer-helper.php:45
1549
+ msgid "Clone"
1550
+ msgstr "Clone"
1551
+
1552
+ #: lib/clone/renderer-helper.php:44
1553
+ msgid "Make new copy of event"
1554
+ msgstr "Make new copy of event"
1555
+
1556
+ #: lib/clone/renderer-helper.php:47
1557
+ msgid "Copy to a new draft"
1558
+ msgstr "Copy to a new draft"
1559
+
1560
+ #: lib/clone/renderer-helper.php:48
1561
+ msgid "Clone to Draft"
1562
+ msgstr "Clone to Draft"
1563
+
1564
+ #: lib/command/clone.php:173
1565
+ msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
+ msgstr "<p>The event <strong>%s</strong> was cloned successfully. <a href=\"%s\">Edit cloned event</a></p>"
1567
+
1568
+ #: lib/compatibility/check.php:101
1569
+ msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
+ msgstr ""
1571
+
1572
+ #: app/view/event/single.php:123
1573
+ msgid "Tickets:"
1574
+ msgstr ""
1575
+
1576
+ #: app/view/event/single.php:124
1577
+ msgid "Free"
1578
+ msgstr "Free"
1579
+
1580
+ #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
+ msgid "Buy Tickets"
1582
+ msgstr "Buy Tickets"
1583
+
1584
+ #: app/view/event/single.php:150
1585
+ msgid "Edit this occurrence (%s)"
1586
+ msgstr "Edit this occurrence (%s)"
1587
+
1588
+ #: app/view/event/single.php:195
1589
+ msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
+ msgstr "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1591
+
1592
+ #: app/view/event/single.php:206
1593
+ msgid "View original"
1594
+ msgstr "View original"
1595
+
1596
+ #: app/view/event/taxonomy.php:113
1597
+ msgid "Category image"
1598
+ msgstr "Category image"
1599
+
1600
+ #: app/view/event/ticket.php:24
1601
+ msgid "Register Now"
1602
+ msgstr "Register Now"
1603
+
1604
+ #: app/view/event/ticket.php:82
1605
+ msgid "Event website"
1606
+ msgstr "Event website"
1607
+
1608
+ #: app/view/event/time.php:84 app/view/event/time.php:118
1609
+ msgctxt "Event time separator"
1610
+ msgid " @ "
1611
+ msgstr " @ "
1612
+
1613
+ #: app/view/event/time.php:100
1614
+ msgctxt "Event start/end separator"
1615
+ msgid " – "
1616
+ msgstr " – "
1617
+
1618
+ #: app/view/event/time.php:166
1619
+ msgid ", and "
1620
+ msgstr ", and "
1621
+
1622
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
+ msgid "Excludes: "
1624
+ msgstr ""
1625
+
1626
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
+ msgid "Repeats"
1628
+ msgstr ""
1629
+
1630
+ #: lib/calendar-feed/ics.php:38
1631
+ msgid "ICS"
1632
+ msgstr "ICS"
1633
+
1634
+ #: lib/calendar-feed/ics.php:69
1635
+ msgid "Another import process in progress. Please try again later."
1636
+ msgstr "Another import process in progress. Please try again later."
1637
+
1638
+ #: lib/calendar-feed/ics.php:174
1639
+ msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
+ msgstr "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1641
+
1642
+ #: lib/calendar-feed/ics.php:181
1643
+ msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
+ msgstr "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1645
+
1646
+ #: lib/calendar-feed/ics.php:195
1647
+ msgid "Imported %s event"
1648
+ msgid_plural "Imported %s events"
1649
+ msgstr[0] "Imported %s event"
1650
+ msgstr[1] "Imported %s events"
1651
+
1652
+ #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
+ msgid "Invalid ICS feed ID"
1654
+ msgstr "Invalid ICS feed ID"
1655
+
1656
+ #: lib/calendar-feed/ics.php:350
1657
+ msgid "Categories (optional)"
1658
+ msgstr "Categories (optional)"
1659
+
1660
+ #: app/view/event/content.php:33 app/view/event/single.php:119
1661
+ msgid "When:"
1662
+ msgstr "When:"
1663
+
1664
+ #: app/view/event/content.php:34 app/view/event/single.php:120
1665
+ msgid "Where:"
1666
+ msgstr "Where:"
1667
+
1668
+ #: app/view/event/content.php:125
1669
+ msgid "Calendar"
1670
+ msgstr ""
1671
+
1672
+ #: app/view/event/content.php:126
1673
+ msgid "View all events"
1674
+ msgstr "View all events"
1675
+
1676
+ #: app/view/event/location.php:96
1677
+ msgid "Click to view map"
1678
+ msgstr "Click to view map"
1679
+
1680
+ #: app/view/event/location.php:97
1681
+ msgid "View Full-Size Map"
1682
+ msgstr "View Full-Size Map"
1683
+
1684
+ #: app/view/event/post.php:29
1685
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1686
+ msgstr "Event updated. <a href=\"%s\">View event</a>"
1687
+
1688
+ #: app/view/event/post.php:32
1689
+ msgid "Custom field updated."
1690
+ msgstr "Custom field updated."
1691
+
1692
+ #: app/view/event/post.php:33
1693
+ msgid "Custom field deleted."
1694
+ msgstr "Custom field deleted."
1695
+
1696
+ #: app/view/event/post.php:34
1697
+ msgid "Event updated."
1698
+ msgstr "Event updated."
1699
+
1700
+ #. translators: %s: date and time of the revision
1701
+ #: app/view/event/post.php:38
1702
+ msgid "Event restored to revision from %s"
1703
+ msgstr "Event restored to revision from %s"
1704
+
1705
+ #: app/view/event/post.php:43
1706
+ msgid "Event published. <a href=\"%s\">View event</a>"
1707
+ msgstr "Event published. <a href=\"%s\">View event</a>"
1708
+
1709
+ #: app/view/event/post.php:46
1710
+ msgid "Event saved."
1711
+ msgstr "Event saved."
1712
+
1713
+ #: app/view/event/post.php:48
1714
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
+ msgstr "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1716
+
1717
+ #: app/view/event/post.php:52
1718
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
+ msgstr "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1720
+
1721
+ #. translators: Publish box date format, see http:php.net/date
1722
+ #: app/view/event/post.php:54
1723
+ msgid "M j, Y @ G:i"
1724
+ msgstr "jS M, Y @ G:i"
1725
+
1726
+ #: app/view/event/post.php:58
1727
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
+ msgstr "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1729
+
1730
+ #: app/view/event/single.php:78
1731
+ msgid "Event was created in the %s time zone"
1732
+ msgstr "Event was created in the %s time zone"
1733
+
1734
+ #: app/view/event/single.php:114
1735
+ msgid "Add to Calendar"
1736
+ msgstr "Add to Calendar"
1737
+
1738
+ #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
+ msgid "Cost:"
1740
+ msgstr "Cost:"
1741
+
1742
+ #: app/view/event/single.php:122
1743
+ msgid "Contact:"
1744
+ msgstr "Contact:"
1745
+
1746
+ #: app/view/calendar/view/agenda.php:169
1747
+ msgid "Categories:"
1748
+ msgstr "Categories:"
1749
+
1750
+ #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
+ #: public/admin/themes.php:29
1752
+ msgid "Tags:"
1753
+ msgstr "Tags:"
1754
+
1755
+ #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
+ #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
+ #: app/view/calendar/widget.php:374
1758
+ msgid "@ %s"
1759
+ msgstr "@ %s"
1760
+
1761
+ #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
+ msgid "g a"
1763
+ msgstr "g a"
1764
+
1765
+ #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
+ msgid "Reveal full day"
1767
+ msgstr "Reveal full day"
1768
+
1769
+ #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
+ msgid "All-day"
1771
+ msgstr "All-day"
1772
+
1773
+ #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
+ msgid "Now:"
1775
+ msgstr "Now:"
1776
+
1777
+ #: app/view/calendar/view/week.php:67
1778
+ msgid "Week of %s"
1779
+ msgstr "Week of %s"
1780
+
1781
+ #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
+ msgid "Upcoming Events"
1783
+ msgstr "Upcoming Events"
1784
+
1785
+ #: app/view/calendar/widget.php:38
1786
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
+ msgstr "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1788
+
1789
+ #: app/view/calendar/widget.php:80
1790
+ msgid "Choose how to limit the upcoming events"
1791
+ msgstr "Choose how to limit the upcoming events"
1792
+
1793
+ #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
+ msgid "Events"
1795
+ msgstr "Events"
1796
+
1797
+ #: app/view/calendar/widget.php:93
1798
+ msgid "Days"
1799
+ msgstr "Days"
1800
+
1801
+ #: app/view/calendar/widget.php:106
1802
+ msgid "Number of events to show"
1803
+ msgstr "Number of events to show"
1804
+
1805
+ #: app/view/calendar/widget.php:115
1806
+ msgid "Number of days to show"
1807
+ msgstr "Number of days to show"
1808
+
1809
+ #: app/view/calendar/widget.php:124
1810
+ msgid "Show events filtered for the following tags/categories"
1811
+ msgstr "Show events filtered for the following tags/categories"
1812
+
1813
+ #: app/view/calendar/widget.php:141
1814
+ msgid "Show the subscribe button in the widget"
1815
+ msgstr "Show the subscribe button in the widget"
1816
+
1817
+ #: app/view/calendar/widget.php:370
1818
+ msgid "There are no upcoming events."
1819
+ msgstr "There are no upcoming events."
1820
+
1821
+ #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
+ msgid "all-day"
1823
+ msgstr "all-day"
1824
+
1825
+ #: app/view/calendar/widget.php:372
1826
+ msgid "View Calendar"
1827
+ msgstr "View Calendar"
1828
+
1829
+ #: app/view/calendar/widget.php:375
1830
+ msgid "Add"
1831
+ msgstr "Add"
1832
+
1833
+ #: app/view/calendar/page.php:260
1834
+ msgid "Subscribe to filtered calendar"
1835
+ msgstr "Subscribe to filtered calendar"
1836
+
1837
+ #: app/view/calendar/page.php:261
1838
+ msgid "Subscribe"
1839
+ msgstr "Subscribe"
1840
+
1841
+ #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
+ msgid "Get a Timely Calendar"
1843
+ msgstr "Get a Timely Calendar"
1844
+
1845
+ #: app/view/calendar/subscribe-button.php:22
1846
+ msgid "Add to Timely Calendar"
1847
+ msgstr "Add to Timely Calendar"
1848
+
1849
+ #: app/view/calendar/subscribe-button.php:23
1850
+ msgid "Add to Google"
1851
+ msgstr "Add to Google"
1852
+
1853
+ #: app/view/calendar/subscribe-button.php:24
1854
+ msgid "Add to Outlook"
1855
+ msgstr "Add to Outlook"
1856
+
1857
+ #: app/view/calendar/subscribe-button.php:25
1858
+ msgid "Add to Apple Calendar"
1859
+ msgstr "Add to Apple Calendar"
1860
+
1861
+ #: app/view/calendar/subscribe-button.php:26
1862
+ msgid "Add to other calendar"
1863
+ msgstr "Add to other calendar"
1864
+
1865
+ #: app/view/calendar/subscribe-button.php:29
1866
+ msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
+ msgstr "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1868
+
1869
+ #: app/view/calendar/subscribe-button.php:30
1870
+ msgid "Subscribe to this calendar in your Google Calendar"
1871
+ msgstr "Subscribe to this calendar in your Google Calendar"
1872
+
1873
+ #: app/view/calendar/subscribe-button.php:31
1874
+ msgid "Subscribe to this calendar in MS Outlook"
1875
+ msgstr "Subscribe to this calendar in MS Outlook"
1876
+
1877
+ #: app/view/calendar/subscribe-button.php:32
1878
+ msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
+ msgstr "Subscribe to this calendar in Apple Calendar/iCal"
1880
+
1881
+ #: app/view/calendar/subscribe-button.php:33
1882
+ msgid "Subscribe to this calendar in another plain-text calendar"
1883
+ msgstr "Subscribe to this calendar in another plain-text calendar"
1884
+
1885
+ #: app/view/calendar/taxonomy.php:97
1886
+ msgid "Clear category filter"
1887
+ msgstr "Clear category filter"
1888
+
1889
+ #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
+ #: lib/html/element/setting/tags-categories.php:47
1891
+ msgid "Categories"
1892
+ msgstr "Categories"
1893
+
1894
+ #: app/view/calendar/taxonomy.php:99
1895
+ msgid "Clear tag filter"
1896
+ msgstr "Clear tag filter"
1897
+
1898
+ #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
+ #: lib/html/element/setting/tags-categories.php:39
1900
+ msgid "Tags"
1901
+ msgstr "Tags"
1902
+
1903
+ #: app/view/calendar/view/agenda.php:142
1904
+ msgid "Collapse All"
1905
+ msgstr "Collapse All"
1906
+
1907
+ #: app/view/calendar/view/agenda.php:143
1908
+ msgid "Expand All"
1909
+ msgstr "Expand All"
1910
+
1911
+ #: app/view/calendar/view/agenda.php:166
1912
+ msgid "There are no upcoming events to display at this time."
1913
+ msgstr "There are no upcoming events to display at this time."
1914
+
1915
+ #: app/view/calendar/view/agenda.php:168
1916
+ msgid "Read more"
1917
+ msgstr "Read more"
1918
+
1919
+ #: app/view/admin/tickets.php:86
1920
+ msgid "Sales"
1921
+ msgstr ""
1922
+
1923
+ #: app/view/admin/tickets.php:87
1924
+ msgid "How do you want the tickets revenue to be sent to you?"
1925
+ msgstr ""
1926
+
1927
+ #: app/view/admin/tickets.php:88
1928
+ msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
+ msgstr ""
1930
+
1931
+ #: app/view/admin/tickets.php:91
1932
+ msgid "Cheque"
1933
+ msgstr ""
1934
+
1935
+ #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
+ msgid "Paypal"
1937
+ msgstr "Paypal"
1938
+
1939
+ #: app/view/admin/tickets.php:94
1940
+ msgid "Save Changes"
1941
+ msgstr ""
1942
+
1943
+ #: app/view/admin/tickets.php:95
1944
+ msgid "Date"
1945
+ msgstr ""
1946
+
1947
+ #: app/view/admin/tickets.php:96
1948
+ msgid "Event"
1949
+ msgstr ""
1950
+
1951
+ #: app/view/admin/tickets.php:97
1952
+ msgid "Purchaser"
1953
+ msgstr ""
1954
+
1955
+ #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
+ #: public/admin/box_event_cost.php:35
1957
+ msgid "Tickets"
1958
+ msgstr "Tickets"
1959
+
1960
+ #: app/view/admin/tickets.php:101
1961
+ msgid "Total"
1962
+ msgstr ""
1963
+
1964
+ #: app/view/admin/tickets.php:102
1965
+ msgid "Sign Out"
1966
+ msgstr ""
1967
+
1968
+ #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
+ #: app/view/admin/widget-creator.php:47
1970
+ msgid "Widget Creator"
1971
+ msgstr "Widget Creator"
1972
+
1973
+ #: app/view/admin/widget-creator.php:74
1974
+ msgctxt "meta box"
1975
+ msgid "Widget Creator"
1976
+ msgstr "Widget Creator"
1977
+
1978
+ #: app/view/admin/widget-creator.php:131
1979
+ msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
+ msgstr "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1981
+
1982
+ #: app/view/admin/widget-creator.php:132
1983
+ msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
+ msgstr "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1985
+
1986
+ #: app/view/admin/widget-creator.php:134
1987
+ msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
+ msgstr "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1989
+
1990
+ #: app/view/admin/widget-creator.php:140
1991
+ msgid "Paste this code onto your site:"
1992
+ msgstr "Paste this code onto your site:"
1993
+
1994
+ #: app/view/admin/widget-creator.php:141
1995
+ msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
+ msgstr "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1997
+
1998
+ #: app/view/calendar/page.php:54
1999
+ msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
+ msgstr "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2001
+
2002
+ #: app/view/calendar/page.php:74
2003
+ msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
+ msgstr "Calendar was unable to initialise %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2005
+
2006
+ #: app/view/admin/settings.php:193
2007
+ msgid "Phone Number:"
2008
+ msgstr ""
2009
+
2010
+ #: app/view/admin/settings.php:194
2011
+ msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
+ msgstr ""
2013
+
2014
+ #: app/view/admin/settings.php:197
2015
+ msgid "Sign Up"
2016
+ msgstr ""
2017
+
2018
+ #: app/view/admin/settings.php:198
2019
+ msgid "Sign In"
2020
+ msgstr ""
2021
+
2022
+ #: app/view/admin/settings.php:212
2023
+ msgid "Save Settings"
2024
+ msgstr "Save Settings"
2025
+
2026
+ #: app/view/admin/settings.php:219
2027
+ msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
+ msgstr "If the form below is not working please follow <a href=\"%s\">this link</a>."
2029
+
2030
+ #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
+ msgid "Theme Options"
2032
+ msgstr "Theme Options"
2033
+
2034
+ #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
+ msgid "Calendar Theme Options"
2036
+ msgstr "Calendar Theme Options"
2037
+
2038
+ #: app/view/admin/theme-options.php:79
2039
+ msgctxt "meta box"
2040
+ msgid "Calendar Theme Options"
2041
+ msgstr "Calendar Theme Options"
2042
+
2043
+ #: app/view/admin/theme-options.php:133
2044
+ msgid "General"
2045
+ msgstr "General"
2046
+
2047
+ #: app/view/admin/theme-options.php:136
2048
+ msgid "Tables"
2049
+ msgstr "Tables"
2050
+
2051
+ #: app/view/admin/theme-options.php:139
2052
+ msgid "Buttons"
2053
+ msgstr "Buttons"
2054
+
2055
+ #: app/view/admin/theme-options.php:142
2056
+ msgid "Forms"
2057
+ msgstr "Forms"
2058
+
2059
+ #: app/view/admin/theme-options.php:145
2060
+ msgid "Calendar general"
2061
+ msgstr "Calendar general"
2062
+
2063
+ #: app/view/admin/theme-options.php:148
2064
+ msgid "Month/week/day view"
2065
+ msgstr "Month/week/day view"
2066
+
2067
+ #: app/view/admin/theme-options.php:151
2068
+ msgid "Agenda view"
2069
+ msgstr "Agenda view"
2070
+
2071
+ #: app/view/admin/theme-options.php:169
2072
+ msgid "Save Options"
2073
+ msgstr "Save Options"
2074
+
2075
+ #: app/view/admin/theme-options.php:177
2076
+ msgid "Reset to Defaults"
2077
+ msgstr "Reset to Defaults"
2078
+
2079
+ #: app/view/admin/theme-switching.php:31
2080
+ msgid "All-in-One Event Calendar: Themes"
2081
+ msgstr "All-in-One Event Calendar: Themes"
2082
+
2083
+ #: app/view/admin/tickets.php:36
2084
+ msgid "Ticketing"
2085
+ msgstr ""
2086
+
2087
+ #: app/view/admin/tickets.php:37
2088
+ msgid "Ticketing<sup>beta</sup>"
2089
+ msgstr ""
2090
+
2091
+ #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
+ msgid "Time.ly Ticketing<sup>beta</sup>"
2093
+ msgstr ""
2094
+
2095
+ #: app/view/admin/settings.php:98
2096
+ msgctxt "meta box"
2097
+ msgid "Timely"
2098
+ msgstr "Timely"
2099
+
2100
+ #: app/view/admin/settings.php:140
2101
+ msgid "Viewing Events"
2102
+ msgstr "Viewing Events"
2103
+
2104
+ #: app/view/admin/settings.php:143
2105
+ msgid "Adding/Editing Events"
2106
+ msgstr "Adding/Editing Events"
2107
+
2108
+ #: app/view/admin/settings.php:146
2109
+ msgid "Advanced"
2110
+ msgstr "Advanced"
2111
+
2112
+ #: app/view/admin/settings.php:148
2113
+ msgid "Advanced Settings"
2114
+ msgstr "Advanced Settings"
2115
+
2116
+ #: app/view/admin/settings.php:149
2117
+ msgid "Shortcodes"
2118
+ msgstr "Shortcodes"
2119
+
2120
+ #: app/view/admin/settings.php:150
2121
+ msgid "Email Templates"
2122
+ msgstr "Email Templates"
2123
+
2124
+ #: app/view/admin/settings.php:151
2125
+ msgid "External Services"
2126
+ msgstr "External Services"
2127
+
2128
+ #: app/view/admin/settings.php:152
2129
+ msgid "Cache Report"
2130
+ msgstr "Cache Report"
2131
+
2132
+ #: app/view/admin/settings.php:171
2133
+ msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
+ msgstr ""
2135
+
2136
+ #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
+ #: public/admin/box_ask_customer_review.php:112
2138
+ #: public/admin/box_ask_customer_review.php:126
2139
+ #: public/admin/box_ask_customer_review.php:140
2140
+ #: public/admin/box_ask_customer_review.php:158
2141
+ #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
+ msgid "This field is required."
2143
+ msgstr ""
2144
+
2145
+ #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
+ msgid "Register"
2147
+ msgstr "Register"
2148
+
2149
+ #: app/view/admin/settings.php:184
2150
+ msgid "Sign in"
2151
+ msgstr ""
2152
+
2153
+ #: app/view/admin/settings.php:185
2154
+ msgid "You are successfully signed in to <b>Timely Network</b>."
2155
+ msgstr ""
2156
+
2157
+ #: app/view/admin/settings.php:186
2158
+ msgid "Sign out"
2159
+ msgstr ""
2160
+
2161
+ #: app/view/admin/settings.php:187
2162
+ msgid "Hide form"
2163
+ msgstr ""
2164
+
2165
+ #: app/view/admin/settings.php:188
2166
+ msgid "Show form"
2167
+ msgstr ""
2168
+
2169
+ #: app/view/admin/settings.php:189
2170
+ msgid "Full Name:"
2171
+ msgstr ""
2172
+
2173
+ #: app/view/admin/settings.php:190
2174
+ msgid "Email:"
2175
+ msgstr ""
2176
+
2177
+ #: app/view/admin/settings.php:191
2178
+ msgid "Password:"
2179
+ msgstr ""
2180
+
2181
+ #: app/view/admin/settings.php:192
2182
+ msgid "Confirm Password:"
2183
+ msgstr ""
2184
+
2185
+ #: app/view/admin/get-repeat-box.php:483
2186
+ msgid "fourth"
2187
+ msgstr "fourth"
2188
+
2189
+ #: app/view/admin/get-repeat-box.php:495
2190
+ msgid "Sunday"
2191
+ msgstr "Sunday"
2192
+
2193
+ #: app/view/admin/get-repeat-box.php:496
2194
+ msgid "Monday"
2195
+ msgstr "Monday"
2196
+
2197
+ #: app/view/admin/get-repeat-box.php:497
2198
+ msgid "Tuesday"
2199
+ msgstr "Tuesday"
2200
+
2201
+ #: app/view/admin/get-repeat-box.php:498
2202
+ msgid "Wednesday"
2203
+ msgstr "Wednesday"
2204
+
2205
+ #: app/view/admin/get-repeat-box.php:499
2206
+ msgid "Thursday"
2207
+ msgstr "Thursday"
2208
+
2209
+ #: app/view/admin/get-repeat-box.php:500
2210
+ msgid "Friday"
2211
+ msgstr "Friday"
2212
+
2213
+ #: app/view/admin/get-repeat-box.php:501
2214
+ msgid "Saturday"
2215
+ msgstr "Saturday"
2216
+
2217
+ #: app/view/admin/get-repeat-box.php:503
2218
+ msgid "day"
2219
+ msgstr "day"
2220
+
2221
+ #: app/view/admin/get-repeat-box.php:504
2222
+ msgid "weekday"
2223
+ msgstr "weekday"
2224
+
2225
+ #: app/view/admin/get-repeat-box.php:505
2226
+ msgid "weekend day"
2227
+ msgstr "weekend day"
2228
+
2229
+ #: app/view/admin/get-repeat-box.php:571
2230
+ msgid "year(s)"
2231
+ msgstr "year(s)"
2232
+
2233
+ #: app/view/admin/nav.php:22
2234
+ msgid "<a href=\"%s\">Settings</a>"
2235
+ msgstr "<a href=\"%s\">Settings</a>"
2236
+
2237
+ #: app/view/admin/nav.php:28
2238
+ msgid "<a href=\"%s\">Check for updates</a>"
2239
+ msgstr ""
2240
+
2241
+ #: app/view/admin/organize.php:100
2242
+ msgid "Organize Events"
2243
+ msgstr "Organise Events"
2244
+
2245
+ #: app/view/admin/settings.php:30
2246
+ msgid "All-in-One Event Calendar: Settings"
2247
+ msgstr "All-in-One Event Calendar: Settings"
2248
+
2249
+ #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
+ #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
+ msgid "Settings"
2252
+ msgstr "Settings"
2253
+
2254
+ #: app/view/admin/settings.php:89
2255
+ msgctxt "meta box"
2256
+ msgid "General Settings"
2257
+ msgstr "General Settings"
2258
+
2259
+ #: app/view/admin/get-repeat-box.php:480
2260
+ msgid "first"
2261
+ msgstr "first"
2262
+
2263
+ #: app/view/admin/get-repeat-box.php:481
2264
+ msgid "second"
2265
+ msgstr "second"
2266
+
2267
+ #: app/view/admin/get-repeat-box.php:482
2268
+ msgid "third"
2269
+ msgstr "third"
2270
+
2271
+ #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
+ msgid "Import Feeds"
2273
+ msgstr ""
2274
+
2275
+ #: app/view/admin/calendar-feeds.php:48
2276
+ msgctxt "meta box"
2277
+ msgid "Feed Subscriptions"
2278
+ msgstr "Feed Subscriptions"
2279
+
2280
+ #: app/view/admin/calendar-feeds.php:65
2281
+ msgid "All-in-One Event Calendar: Import Feeds"
2282
+ msgstr ""
2283
+
2284
+ #: app/view/admin/event-category.php:30
2285
+ msgid "Color"
2286
+ msgstr "Colour"
2287
+
2288
+ #: app/view/admin/event-category.php:32
2289
+ msgid "Image"
2290
+ msgstr "Image"
2291
+
2292
+ #: app/view/admin/event-category.php:155
2293
+ msgid "Category Color"
2294
+ msgstr "Category Colour"
2295
+
2296
+ #: app/view/admin/event-category.php:156
2297
+ msgid "Events in this category will be identified by this color"
2298
+ msgstr "Events in this category will be identified by this colour"
2299
+
2300
+ #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
+ msgid "Category Image"
2302
+ msgstr "Category Image"
2303
+
2304
+ #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
+ msgid "Add Image"
2306
+ msgstr "Add Image"
2307
+
2308
+ #: app/view/admin/event-category.php:195
2309
+ msgid "Remove Image"
2310
+ msgstr "Remove Image"
2311
+
2312
+ #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
+ msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
+ msgstr "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2315
+
2316
+ #: app/view/admin/get-repeat-box.php:94
2317
+ msgid "times"
2318
+ msgstr "times"
2319
+
2320
+ #: app/view/admin/get-repeat-box.php:164
2321
+ msgid "Recurrence rule cannot be empty."
2322
+ msgstr "Recurrence rule cannot be empty."
2323
+
2324
+ #: app/view/admin/get-repeat-box.php:182
2325
+ msgid "Recurrence rule was not provided."
2326
+ msgstr "Recurrence rule was not provided."
2327
+
2328
+ #: app/view/admin/get-repeat-box.php:209
2329
+ msgid "Never"
2330
+ msgstr "Never"
2331
+
2332
+ #: app/view/admin/get-repeat-box.php:210
2333
+ msgid "After"
2334
+ msgstr "After"
2335
+
2336
+ #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
+ msgid "On date"
2338
+ msgstr "On date"
2339
+
2340
+ #: app/view/admin/get-repeat-box.php:247
2341
+ msgid "day(s)"
2342
+ msgstr "day(s)"
2343
+
2344
+ #: app/view/admin/get-repeat-box.php:330
2345
+ msgid "week(s)"
2346
+ msgstr "week(s)"
2347
+
2348
+ #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
+ #: lib/recurrence/rule.php:298
2350
+ msgid "last"
2351
+ msgstr "last"
2352
+
2353
+ #: app/view/admin/get-repeat-box.php:426
2354
+ msgid "month(s)"
2355
+ msgstr "month(s)"
2356
+
2357
+ #: app/model/settings.php:929
2358
+ msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
+ msgstr "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2360
+
2361
+ #: app/model/settings.php:932
2362
+ msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
+ msgstr "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2364
+
2365
+ #: app/model/settings.php:944
2366
+ msgid "Current <strong>robots.txt</strong> on this site"
2367
+ msgstr "Current <strong>robots.txt</strong> on this site"
2368
+
2369
+ #: app/model/settings.php:948
2370
+ msgid ""
2371
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
+ "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
+ "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
+ "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
+ "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
+ msgstr ""
2377
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2378
+ "→\t→\t→\t→\t→\t→\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2379
+ "→\t→\t→\t→\t→\t→\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2380
+ "→\t→\t→\t→\t→\t→\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2381
+ "→\t→\t→\t→\t→\t→\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2382
+
2383
+ #: app/model/settings.php:965
2384
+ msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2385
+ msgstr "<strong>Publicise, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2386
+
2387
+ #: app/model/settings.php:988
2388
+ msgid "Templates cache improves site performance"
2389
+ msgstr "Templates cache improves site performance"
2390
+
2391
+ #: app/model/settings.php:1001
2392
+ msgid "Display events in <strong>calendar time zone</strong>"
2393
+ msgstr ""
2394
+
2395
+ #: app/model/settings.php:1004
2396
+ msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
+ msgstr ""
2398
+
2399
+ #: app/view/admin/add-new-event.php:26
2400
+ msgid "Event Details"
2401
+ msgstr "Event Details"
2402
+
2403
+ #: app/view/admin/add-new-event.php:423
2404
+ msgid "Set banner image"
2405
+ msgstr "Set banner image"
2406
+
2407
+ #: app/view/admin/add-new-event.php:424
2408
+ msgid "Remove banner image"
2409
+ msgstr "Remove banner image"
2410
+
2411
+ #: app/view/admin/add-ons.php:68
2412
+ msgid "Add-ons for All In One Event Calendar"
2413
+ msgstr "Add-ons for All In One Event Calendar"
2414
+
2415
+ #: app/view/admin/add-ons.php:71
2416
+ msgid "Browse All Extensions"
2417
+ msgstr "Browse All Extensions"
2418
+
2419
+ #: app/view/admin/add-ons.php:74
2420
+ msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
+ msgstr "These add-ons extend the functionality of the All-in-One Event Calendar."
2422
+
2423
+ #: app/view/admin/add-ons.php:77
2424
+ msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
+ msgstr "There was an error retrieving the extensions list from the server. Please try again later."
2426
+
2427
+ #: app/view/admin/all-events.php:16
2428
+ msgid "Author"
2429
+ msgstr "Author"
2430
+
2431
+ #: app/view/admin/all-events.php:17
2432
+ msgid "Post Date"
2433
+ msgstr "Post Date"
2434
+
2435
+ #: app/view/admin/all-events.php:18
2436
+ msgid "Event date/time"
2437
+ msgstr "Event date/time"
2438
+
2439
+ #: app/view/admin/all-events.php:22
2440
+ msgid "Ticket Types"
2441
+ msgstr ""
2442
+
2443
+ #: app/view/admin/all-events.php:134
2444
+ msgid "Show All "
2445
+ msgstr "Show All "
2446
+
2447
+ #: app/view/admin/all-events.php:147
2448
+ msgid "Show All Authors"
2449
+ msgstr ""
2450
+
2451
+ #: app/model/settings.php:746
2452
+ msgid "Strict compatibility content filtering"
2453
+ msgstr "Strict compatibility content filtering"
2454
+
2455
+ #: app/model/settings.php:758
2456
+ msgid " <strong>Hide featured image</strong> from event details page"
2457
+ msgstr " <strong>Hide featured image</strong> from event details page"
2458
+
2459
+ #: app/model/settings.php:761
2460
+ msgid "Select this option if your theme already displays each post's featured image."
2461
+ msgstr "Select this option if your theme already displays each post's featured image."
2462
+
2463
+ #: app/model/settings.php:772
2464
+ msgid "Input dates in this format"
2465
+ msgstr "Input dates in this format"
2466
+
2467
+ #: app/model/settings.php:777
2468
+ msgid "Default (d/m/yyyy)"
2469
+ msgstr "Default (d/m/yyyy)"
2470
+
2471
+ #: app/model/settings.php:781
2472
+ msgid "US (m/d/yyyy)"
2473
+ msgstr "US (m/d/yyyy)"
2474
+
2475
+ #: app/model/settings.php:785
2476
+ msgid "ISO 8601 (yyyy-m-d)"
2477
+ msgstr "ISO 8601 (yyyy-m-d)"
2478
+
2479
+ #: app/model/settings.php:789
2480
+ msgid "Dotted (m.d.yyyy)"
2481
+ msgstr "Dotted (m.d.yyyy)"
2482
+
2483
+ #: app/model/settings.php:801
2484
+ msgid " Use <strong>24h time</strong> in time pickers"
2485
+ msgstr " Use <strong>24h time</strong> in time pickers"
2486
+
2487
+ #: app/model/settings.php:812
2488
+ msgid "<strong>Disable address autocomplete</strong> function"
2489
+ msgstr "<strong>Disable address autocomplete</strong> function"
2490
+
2491
+ #: app/model/settings.php:823
2492
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2493
+ msgstr "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2494
+
2495
+ #: app/model/settings.php:839
2496
+ msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2497
+ msgstr " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2498
+
2499
+ #: app/model/settings.php:842
2500
+ msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2501
+ msgstr "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2502
+
2503
+ #: app/model/settings.php:863
2504
+ msgid "Move calendar into this DOM element"
2505
+ msgstr "Move calendar into this DOM element"
2506
+
2507
+ #: app/model/settings.php:865
2508
+ msgid ""
2509
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2510
+ "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2511
+ "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2512
+ "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2513
+ "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2514
+ "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2515
+ "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2516
+ "\t\t\t\t\t\tby the calendar."
2517
+ msgstr ""
2518
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2519
+ "→\t→\t→\t→\t→\t→\tcalendar a DOM element other than the usual page content container\n"
2520
+ "→\t→\t→\t→\t→\t→\tif you are unable to create an appropriate page template\n"
2521
+ "→\t→\t→\t→\t→\t→\t for the calendar page. To use, enter a\n"
2522
+ "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2523
+ "→\t→\t→\t→\t→\t→\tjQuery selector</a> that evaluates to a single DOM element.\n"
2524
+ "→\t→\t→\t→\t→\t→\tAny existing markup found within the target will be replaced\n"
2525
+ "→\t→\t→\t→\t→\t→\tby the calendar."
2526
+
2527
+ #: app/model/settings.php:884
2528
+ msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2529
+ msgstr "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2530
+
2531
+ #: app/model/settings.php:887
2532
+ msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2533
+ msgstr "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2534
+
2535
+ #: app/model/settings.php:899
2536
+ msgid "Disable <strong>gzip</strong> compression."
2537
+ msgstr "Disable <strong>gzip</strong> compression."
2538
+
2539
+ #: app/model/settings.php:902
2540
+ msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2541
+ msgstr "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2542
+
2543
+ #: app/model/settings.php:914
2544
+ msgid "Use frontend rendering."
2545
+ msgstr "Use frontend rendering."
2546
+
2547
+ #: app/model/settings.php:917
2548
+ msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
+ msgstr "Renders calendar views on the client rather than the server; can improve performance."
2550
+
2551
+ #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
+ msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
+ msgstr "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2554
+
2555
+ #: app/model/settings.php:508
2556
+ msgid "Default calendar start date (optional)"
2557
+ msgstr "Default calendar start date (optional)"
2558
+
2559
+ #: app/model/settings.php:519
2560
+ msgid "Agenda pages show at most"
2561
+ msgstr "Agenda pages show at most"
2562
+
2563
+ #: app/model/settings.php:532
2564
+ msgid "Week/Day view starts at"
2565
+ msgstr "Week/Day view starts at"
2566
+
2567
+ #: app/model/settings.php:545
2568
+ msgid "Week/Day view ends at"
2569
+ msgstr "Week/Day view ends at"
2570
+
2571
+ #: app/model/settings.php:558
2572
+ msgid "<strong>Word-wrap event stubs</strong> in Month view"
2573
+ msgstr "<strong>Word-wrap event stubs</strong> in Month view"
2574
+
2575
+ #: app/model/settings.php:561
2576
+ msgid "Only applies to events that span a single day."
2577
+ msgstr "Only applies to events that span a single day."
2578
+
2579
+ #: app/model/settings.php:573
2580
+ msgid ""
2581
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2582
+ "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2583
+ "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2584
+ "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2585
+ "\t\t\t\t\t\tfrom last day shown</strong>"
2586
+ msgstr ""
2587
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2588
+ "→\t→\t→\t→\t→\t→\tdata-original-title=\"These include Agenda view,\n"
2589
+ "→\t→\t→\t→\t→\t→\tthe Upcoming Events widget, and some extended views.\">\n"
2590
+ "→\t→\t→\t→\t→\t→\tAgenda-like views</span>, <strong>include all events\n"
2591
+ "→\t→\t→\t→\t→\t→\tfrom last day shown</strong>"
2592
+
2593
+ #: app/model/settings.php:589
2594
+ msgid "Keep all events <strong>expanded</strong> in Agenda view"
2595
+ msgstr "Keep all events <strong>expanded</strong> in Agenda view"
2596
+
2597
+ #: app/model/settings.php:601
2598
+ msgid "<strong>Show year</strong> in calendar date labels"
2599
+ msgstr "<strong>Show year</strong> in calendar date labels"
2600
+
2601
+ #: app/model/settings.php:613
2602
+ msgid "<strong>Show location in event titles</strong> in calendar views"
2603
+ msgstr "<strong>Show location in event titles</strong> in calendar views"
2604
+
2605
+ #: app/model/settings.php:625
2606
+ msgid "<strong>Exclude</strong> events from search results"
2607
+ msgstr "<strong>Exclude</strong> events from search results"
2608
+
2609
+ #: app/model/settings.php:637
2610
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2611
+ msgstr "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2612
+
2613
+ #: app/model/settings.php:649
2614
+ msgid "Hide <strong>Get a Timely Calendar</strong> button"
2615
+ msgstr "Hide <strong>Get a Timely Calendar</strong> button"
2616
+
2617
+ #: app/model/settings.php:661
2618
+ msgid " Hide <strong>Google Maps</strong> until clicked"
2619
+ msgstr " Hide <strong>Google Maps</strong> until clicked"
2620
+
2621
+ #: app/model/settings.php:673
2622
+ msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2623
+ msgstr " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2624
+
2625
+ #: app/model/settings.php:676
2626
+ msgid "Only applies to first visible calendar found on the page."
2627
+ msgstr "Only applies to first visible calendar found on the page."
2628
+
2629
+ #: app/model/settings.php:688
2630
+ msgid "Offset affixed filter bar vertically by"
2631
+ msgstr "Offset affixed filter bar vertically by"
2632
+
2633
+ #: app/model/settings.php:703
2634
+ msgid "Wide screens only (&#8805; 1200px)"
2635
+ msgstr "Wide screens only (&#8805; 1200px)"
2636
+
2637
+ #: app/model/settings.php:718
2638
+ msgid "Tablets only (< 980px)"
2639
+ msgstr "Tablets only (< 980px)"
2640
+
2641
+ #: app/model/settings.php:733
2642
+ msgid "Phones only (< 768px)"
2643
+ msgstr "Phones only (< 768px)"
2644
+
2645
+ #: app/model/api.php:456
2646
+ msgid "Not available"
2647
+ msgstr ""
2648
+
2649
+ #: app/model/api.php:659
2650
+ msgid "%s.<br/>Detail: %s."
2651
+ msgstr ""
2652
+
2653
+ #: app/model/api.php:664
2654
+ msgid "API URL: %s.<br/>Detail: %s - %s"
2655
+ msgstr ""
2656
+
2657
+ #: app/model/api.php:672
2658
+ msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2659
+ msgstr ""
2660
+
2661
+ #: app/model/api.php:679
2662
+ msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2663
+ msgstr ""
2664
+
2665
+ #: app/model/event/parent.php:186
2666
+ msgid "Edit &#8220;%s&#8221;"
2667
+ msgstr "Edit &#8220;%s&#8221;"
2668
+
2669
+ #: app/model/event/parent.php:193
2670
+ msgid "Base Event"
2671
+ msgstr "Base Event"
2672
+
2673
+ #: app/model/review.php:169
2674
+ msgid "Feedback provided by user"
2675
+ msgstr ""
2676
+
2677
+ #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2678
+ msgid "Name"
2679
+ msgstr "Name"
2680
+
2681
+ #: app/model/review.php:173
2682
+ msgid "E-mail"
2683
+ msgstr ""
2684
+
2685
+ #: app/model/review.php:175
2686
+ msgid "Site URL"
2687
+ msgstr ""
2688
+
2689
+ #: app/model/review.php:177
2690
+ msgid "Message"
2691
+ msgstr ""
2692
+
2693
+ #: app/model/settings.php:401
2694
+ #: lib/html/element/setting/calendar-page-selector.php:50
2695
+ msgid "Calendar page"
2696
+ msgstr "Calendar page"
2697
+
2698
+ #: app/model/settings.php:411
2699
+ msgid "Week starts on"
2700
+ msgstr "Week starts on"
2701
+
2702
+ #: app/model/settings.php:424
2703
+ msgid "Available views"
2704
+ msgstr "Available views"
2705
+
2706
+ #: app/model/settings.php:432
2707
+ msgid "Agenda"
2708
+ msgid_plural "Agenda"
2709
+ msgstr[0] "Agenda"
2710
+ msgstr[1] ""
2711
+
2712
+ #: app/model/settings.php:443
2713
+ msgid "Day"
2714
+ msgid_plural "Day"
2715
+ msgstr[0] "Day"
2716
+ msgstr[1] ""
2717
+
2718
+ #: app/model/settings.php:454
2719
+ msgid "Month"
2720
+ msgid_plural "Month"
2721
+ msgstr[0] "Month"
2722
+ msgstr[1] ""
2723
+
2724
+ #: app/model/settings.php:465
2725
+ msgid "Week"
2726
+ msgid_plural "Week"
2727
+ msgstr[0] "Week"
2728
+ msgstr[1] ""
2729
+
2730
+ #: app/model/settings.php:479
2731
+ msgid "Timezone"
2732
+ msgstr "Timezone"
2733
+
2734
+ #: app/model/settings.php:492
2735
+ msgid "Preselected calendar filters"
2736
+ msgstr "Preselected calendar filters"
2737
+
2738
+ #: app/controller/javascript.php:509
2739
+ msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2740
+ msgstr "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2741
+
2742
+ #: app/controller/javascript.php:516
2743
+ msgid "The end date can't be earlier than the start date."
2744
+ msgstr "The end date can't be earlier than the start date."
2745
+
2746
+ #: app/controller/javascript.php:517
2747
+ msgid "For week and day view, you must select an interval of at least 6 hours."
2748
+ msgstr "For week and day view, you must select an interval of at least 6 hours."
2749
+
2750
+ #: app/model/api.php:40
2751
+ msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2752
+ msgstr ""
2753
+
2754
+ #: app/model/api.php:41
2755
+ msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2756
+ msgstr ""
2757
+
2758
+ #: app/model/api.php:42
2759
+ msgid "We were unable to Sign you Up for Time.ly Ticketing"
2760
+ msgstr ""
2761
+
2762
+ #: app/model/api.php:43
2763
+ msgid "We were unable to Sign you In for Time.ly Ticketing"
2764
+ msgstr ""
2765
+
2766
+ #: app/model/api.php:44
2767
+ msgid "We were unable to create the Event on Time.ly Ticketing"
2768
+ msgstr ""
2769
+
2770
+ #: app/model/api.php:45
2771
+ msgid "We were unable to update the Event on Time.ly Ticketing"
2772
+ msgstr ""
2773
+
2774
+ #: app/model/api.php:46
2775
+ msgid "The event has the option Tickets selected but any ticket was added."
2776
+ msgstr ""
2777
+
2778
+ #: app/model/api.php:47
2779
+ msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2780
+ msgstr ""
2781
+
2782
+ #: app/model/api.php:48
2783
+ msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2784
+ msgstr ""
2785
+
2786
+ #: app/model/api.php:49
2787
+ msgid "Payment preferences were not saved."
2788
+ msgstr ""
2789
+
2790
+ #: app/model/api.php:50
2791
+ msgid "Payment preferences were saved."
2792
+ msgstr ""
2793
+
2794
+ #: app/model/api.php:51
2795
+ msgid "Event not found inside the database."
2796
+ msgstr ""
2797
+
2798
+ #: app/model/api.php:52
2799
+ msgid "We were unable to get the Sales information from Time.ly Ticketing"
2800
+ msgstr ""
2801
+
2802
+ #: app/model/api.php:446
2803
+ msgid "Past Event"
2804
+ msgstr ""
2805
+
2806
+ #: app/model/api.php:448
2807
+ msgid "Event closed"
2808
+ msgstr ""
2809
+
2810
+ #: app/model/api.php:450
2811
+ msgid "Not available yet"
2812
+ msgstr ""
2813
+
2814
+ #: app/model/api.php:452
2815
+ msgid "Sale closed"
2816
+ msgstr ""
2817
+
2818
+ #: app/model/api.php:454
2819
+ msgid "Sold out"
2820
+ msgstr ""
2821
+
2822
+ #: app/controller/javascript.php:484
2823
+ msgid "Report"
2824
+ msgstr ""
2825
+
2826
+ #: app/controller/javascript.php:485
2827
+ msgid "Sale dates"
2828
+ msgstr ""
2829
+
2830
+ #: app/controller/javascript.php:486
2831
+ msgid "Limits"
2832
+ msgstr ""
2833
+
2834
+ #: app/controller/javascript.php:487
2835
+ msgid "Actions"
2836
+ msgstr ""
2837
+
2838
+ #: app/controller/javascript.php:488
2839
+ msgid "Sold:"
2840
+ msgstr ""
2841
+
2842
+ #: app/controller/javascript.php:489
2843
+ msgid "Left:"
2844
+ msgstr ""
2845
+
2846
+ #: app/controller/javascript.php:490
2847
+ msgid "Start:"
2848
+ msgstr ""
2849
+
2850
+ #: app/controller/javascript.php:491
2851
+ msgid "End:"
2852
+ msgstr ""
2853
+
2854
+ #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2855
+ msgid "Min:"
2856
+ msgstr ""
2857
+
2858
+ #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2859
+ msgid "Max:"
2860
+ msgstr ""
2861
+
2862
+ #: app/controller/javascript.php:494
2863
+ msgid "Attendees"
2864
+ msgstr ""
2865
+
2866
+ #: app/controller/javascript.php:495
2867
+ msgid "Hide Attendees"
2868
+ msgstr ""
2869
+
2870
+ #: app/controller/javascript.php:496
2871
+ msgid "Attendees List"
2872
+ msgstr ""
2873
+
2874
+ #: app/controller/javascript.php:497
2875
+ msgid "Guest Name"
2876
+ msgstr ""
2877
+
2878
+ #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2879
+ msgid "Status"
2880
+ msgstr ""
2881
+
2882
+ #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2883
+ #: app/view/event/ticket.php:71
2884
+ msgid "Email"
2885
+ msgstr "Email"
2886
+
2887
+ #: app/controller/javascript.php:500
2888
+ msgid "No attendees for this ticket type."
2889
+ msgstr ""
2890
+
2891
+ #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2892
+ #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2893
+ msgid "Edit"
2894
+ msgstr "Edit"
2895
+
2896
+ #: app/controller/javascript.php:502
2897
+ msgid "Code"
2898
+ msgstr ""
2899
+
2900
+ #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2901
+ msgid "Unlimited"
2902
+ msgstr ""
2903
+
2904
+ #: app/controller/javascript.php:506
2905
+ msgid "Your message has been sent. Thank you for your feedback."
2906
+ msgstr ""
2907
+
2908
+ #: app/controller/javascript.php:507
2909
+ msgid "Your message has not been sent. Please try again or contact us."
2910
+ msgstr ""
2911
+
2912
+ #: app/controller/javascript.php:405
2913
+ msgid "Please enter a valid iCalendar URL."
2914
+ msgstr "Please enter a valid iCalendar URL."
2915
+
2916
+ #: app/controller/javascript.php:408
2917
+ msgid "Please enter a valid email address."
2918
+ msgstr "Please enter a valid email address."
2919
+
2920
+ #: app/controller/javascript.php:410
2921
+ msgid "Choose Image"
2922
+ msgstr "Choose Image"
2923
+
2924
+ #: app/controller/javascript.php:413
2925
+ msgid "The value you have entered is not a valid CSS length."
2926
+ msgstr "The value you have entered is not a valid CSS length."
2927
+
2928
+ #: app/controller/javascript.php:416
2929
+ msgid "Are you sure you want to reset your theme options to their default values?"
2930
+ msgstr "Are you sure you want to reset your theme options to their default values?"
2931
+
2932
+ #: app/controller/javascript.php:419
2933
+ msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2934
+ msgstr "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2935
+
2936
+ #: app/controller/javascript.php:422
2937
+ msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2938
+ msgstr "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2939
+
2940
+ #: app/controller/javascript.php:425
2941
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2942
+ msgstr "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2943
+
2944
+ #: app/controller/javascript.php:428
2945
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2946
+ msgstr "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2947
+
2948
+ #: app/controller/javascript.php:431
2949
+ msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2950
+ msgstr ""
2951
+
2952
+ #: app/controller/javascript.php:434
2953
+ msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2954
+ msgstr "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2955
+
2956
+ #: app/controller/javascript.php:437
2957
+ msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2958
+ msgstr "Please remember that URLs must start with either \"http://\" or \"https://\"."
2959
+
2960
+ #: app/controller/javascript.php:440
2961
+ msgid "Loading&hellip;"
2962
+ msgstr "Loading&hellip;"
2963
+
2964
+ #: app/controller/javascript.php:443
2965
+ msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2966
+ msgstr ""
2967
+
2968
+ #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
+ msgid "Preview:"
2970
+ msgstr "Preview:"
2971
+
2972
+ #: app/controller/javascript.php:474
2973
+ msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2974
+ msgstr "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2975
+
2976
+ #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2977
+ msgid "Ticketing Details"
2978
+ msgstr ""
2979
+
2980
+ #: app/controller/javascript.php:480
2981
+ msgid "Hide Ticketing Details"
2982
+ msgstr ""
2983
+
2984
+ #: app/controller/javascript.php:481
2985
+ msgid "Loading tickets details..."
2986
+ msgstr ""
2987
+
2988
+ #: app/controller/javascript.php:482
2989
+ msgid "Type and price"
2990
+ msgstr ""
2991
+
2992
+ #: app/controller/javascript.php:483
2993
+ msgid "Info"
2994
+ msgstr ""
2995
+
2996
+ #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2997
+ #: app/view/admin/add-ons.php:27
2998
+ msgid "Add-ons"
2999
+ msgstr "Add-ons"
3000
+
3001
+ #: app/controller/front.php:343
3002
+ msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3003
+ msgstr "Your active calendar theme could not be properly initialised. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3004
+
3005
+ #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3006
+ #: app/view/admin/theme-switching.php:55
3007
+ msgid "Calendar Themes"
3008
+ msgstr "Calendar Themes"
3009
+
3010
+ #: app/controller/front.php:990
3011
+ msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3012
+ msgstr "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3013
+
3014
+ #: app/controller/javascript-widget.php:48
3015
+ msgid "You must choose the Calendar page before using the Super Widget"
3016
+ msgstr "You must choose the Calendar page before using the Super Widget"
3017
+
3018
+ #: app/controller/javascript.php:402
3019
+ msgid "This feed is already being imported."
3020
+ msgstr "This feed is already being imported."
language/all-in-one-event-calendar-en-gb.mo ADDED
Binary file
language/all-in-one-event-calendar-en-gb.po ADDED
@@ -0,0 +1,3020 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of 2.3 in English (UK)
2
+ # This file is distributed under the same license as the 2.3 package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-01-21 20:47:57+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
+ "Project-Id-Version: 2.3\n"
12
+
13
+ #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
+ #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
+ msgid "Event background"
16
+ msgstr "Event background"
17
+
18
+ #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
+ #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
+ msgid "Event time background"
21
+ msgstr "Event time background"
22
+
23
+ #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
+ #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
+ msgid "Event text"
26
+ msgstr "Event text"
27
+
28
+ #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
+ #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
+ msgid "Month view date background"
31
+ msgstr "Month view date background"
32
+
33
+ #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
+ #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
+ msgid "Week/day view now marker"
36
+ msgstr "Week/day view now marker"
37
+
38
+ #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
+ #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
+ msgid "Date label accent color"
41
+ msgstr "Date label accent colour"
42
+
43
+ #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
+ #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
+ msgid "Date label background"
46
+ msgstr "Date label background"
47
+
48
+ #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
+ #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
+ msgid "Date background"
51
+ msgstr "Date background"
52
+
53
+ #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
+ #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
+ msgid "Today background"
56
+ msgstr "Today background"
57
+
58
+ #. Plugin Name of the plugin/theme
59
+ msgid "All-in-One Event Calendar by Time.ly"
60
+ msgstr "All-in-One Event Calendar by Time.ly"
61
+
62
+ #. Description of the plugin/theme
63
+ msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
+ msgstr "A calendar system with month, week, day, agenda views, upcoming events widget, colour-coded categories, recurrence, and import/export of .ics feeds."
65
+
66
+ #. Author of the plugin/theme
67
+ msgid "Time.ly Network Inc."
68
+ msgstr "Time.ly Network Inc."
69
+
70
+ #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
+ #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
+ msgid "List item background (active/hover)"
73
+ msgstr "List item background (active/hover)"
74
+
75
+ #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
+ #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
+ msgid "Input field placeholder text"
78
+ msgstr "Input field placeholder text"
79
+
80
+ #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
+ #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
+ msgid "Today color"
83
+ msgstr "Today colour"
84
+
85
+ #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
+ #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
+ msgid "All-day badge color"
88
+ msgstr "All-day badge colour"
89
+
90
+ #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
+ #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
+ msgid "Event image shadow"
93
+ msgstr "Event image shadow"
94
+
95
+ #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
+ #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
+ msgid "Event default color"
98
+ msgstr "Event default colour"
99
+
100
+ #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
+ #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
+ msgid "Event default color (hover)"
103
+ msgstr "Event default colour (hover)"
104
+
105
+ #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
+ #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
+ msgid "All-day/multi-day event stub text"
108
+ msgstr "All-day/multi-day event stub text"
109
+
110
+ #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
+ #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
+ msgid "All-day/multi-day event stub text shadow"
113
+ msgstr "All-day/multi-day event stub text shadow"
114
+
115
+ #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
+ #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
+ msgid "Event border"
118
+ msgstr "Event border"
119
+
120
+ #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
+ #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
+ msgid "Button text"
123
+ msgstr "Button text"
124
+
125
+ #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
+ #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
+ msgid "Input field text"
128
+ msgstr "Input field text"
129
+
130
+ #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
+ #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
+ msgid "Input field background"
133
+ msgstr "Input field background"
134
+
135
+ #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
+ #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
+ msgid "Input field border"
138
+ msgstr "Input field border"
139
+
140
+ #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
+ #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
+ msgid "Input field border (focus)"
143
+ msgstr "Input field border (focus)"
144
+
145
+ #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
+ #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
+ msgid "Input field background (disabled)"
148
+ msgstr "Input field background (disabled)"
149
+
150
+ #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
+ #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
+ msgid "Field label"
153
+ msgstr "Field label"
154
+
155
+ #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
+ #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
+ msgid "Dropdown list background"
158
+ msgstr "Dropdown list background"
159
+
160
+ #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
+ #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
+ msgid "Dropdown list border"
163
+ msgstr "Dropdown list border"
164
+
165
+ #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
+ #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
+ msgid "List item text"
168
+ msgstr "List item text"
169
+
170
+ #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
+ #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
+ msgid "List item text (active/hover)"
173
+ msgstr "List item text (active/hover)"
174
+
175
+ #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
+ msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
+ msgstr "New theme activated. <a href=\"%s\">Visit site</a>"
178
+
179
+ #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
+ msgid "Theme deleted."
181
+ msgstr "Theme deleted."
182
+
183
+ #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
+ msgid "Manage Themes"
185
+ msgstr "Manage Themes"
186
+
187
+ #: public/admin/themes-install.php:40
188
+ msgctxt "theme"
189
+ msgid "Install Themes"
190
+ msgstr "Instal Themes"
191
+
192
+ #: public/admin/themes-updated.php:5
193
+ msgid "Update Calendar Themes"
194
+ msgstr "Update Calendar Themes"
195
+
196
+ #: public/admin/themes-updated.php:15
197
+ msgid "All-in-One Event Calendar Settings »"
198
+ msgstr "All-in-One Event Calendar Settings »"
199
+
200
+ #: public/admin/themes.php:18
201
+ msgid "Current Calendar Theme"
202
+ msgstr "Current Calendar Theme"
203
+
204
+ #: public/admin/themes.php:21
205
+ msgid "Current theme preview"
206
+ msgstr "Current theme preview"
207
+
208
+ #: public/admin/themes.php:47
209
+ msgid "Available Calendar Themes"
210
+ msgstr "Available Calendar Themes"
211
+
212
+ #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
+ #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
+ msgid "Body background"
215
+ msgstr "Body background"
216
+
217
+ #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
+ #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
+ msgid "Text color"
220
+ msgstr "Text colour"
221
+
222
+ #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
+ #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
+ msgid "Text emboss"
225
+ msgstr "Text emboss"
226
+
227
+ #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
+ #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
+ msgid "Link"
230
+ msgstr "Link"
231
+
232
+ #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
+ #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
+ msgid "Link (hover)"
235
+ msgstr "Link (hover)"
236
+
237
+ #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
+ #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
+ msgid "Base font"
240
+ msgstr "Base font"
241
+
242
+ #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
+ #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
+ msgid "Base font size"
245
+ msgstr "Base font size"
246
+
247
+ #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
+ #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
+ msgid "Table background"
250
+ msgstr "Table background"
251
+
252
+ #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
+ #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
+ msgid "Table header background"
255
+ msgstr "Table header background"
256
+
257
+ #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
+ #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
+ msgid "Table header text"
260
+ msgstr "Table header text"
261
+
262
+ #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
+ #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
+ msgid "Primary brand color"
265
+ msgstr "Primary brand colour"
266
+
267
+ #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
+ #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
+ msgid "Button background"
270
+ msgstr "Button background"
271
+
272
+ #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
+ #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
+ msgid "Button border"
275
+ msgstr "Button border"
276
+
277
+ #: public/admin/feed_row.php:104
278
+ msgid "Refreshing&#8230;"
279
+ msgstr "Refreshing&#8230;"
280
+
281
+ #: public/admin/feed_row.php:106
282
+ msgid "Refresh"
283
+ msgstr "Refresh"
284
+
285
+ #: public/admin/feed_row.php:119
286
+ msgid "Removing&#8230;"
287
+ msgstr "Removing&#8230;"
288
+
289
+ #: public/admin/feed_row.php:121
290
+ msgid "Remove"
291
+ msgstr "Remove"
292
+
293
+ #: public/admin/import.php:6
294
+ msgid "Successfully imported events:"
295
+ msgstr "Successfully imported events:"
296
+
297
+ #: public/admin/plugins/ics/display_feeds.php:2
298
+ msgid ""
299
+ "Configure which other calendars your own calendar subscribes to.\n"
300
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
302
+ " imported periodically."
303
+ msgstr ""
304
+ "Configure which other calendars your own calendar subscribes to.\n"
305
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
306
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
307
+ " imported periodically."
308
+
309
+ #: public/admin/plugins/ics/display_feeds.php:14
310
+ msgid "Check for new events"
311
+ msgstr "Check for new events"
312
+
313
+ #: public/admin/plugins/ics/display_feeds.php:45
314
+ msgid "Allow comments on imported events"
315
+ msgstr "Allow comments on imported events"
316
+
317
+ #: public/admin/plugins/ics/display_feeds.php:52
318
+ msgid "Show map on imported events"
319
+ msgstr "Show map on imported events"
320
+
321
+ #: public/admin/plugins/ics/display_feeds.php:59
322
+ msgid "Import any tags/categories provided by feed, in addition those selected above"
323
+ msgstr "Import any tags/categories provided by feed, in addition those selected above"
324
+
325
+ #: public/admin/plugins/ics/display_feeds.php:93
326
+ msgid "Add new subscription"
327
+ msgstr "Add new subscription"
328
+
329
+ #: public/admin/plugins/ics/display_feeds.php:96
330
+ msgid "Update subscription"
331
+ msgstr ""
332
+
333
+ #: public/admin/row_custom.php:3
334
+ msgid "Custom dates:"
335
+ msgstr ""
336
+
337
+ #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
+ #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
+ #: public/admin/row_yearly.php:3
340
+ msgid "Every"
341
+ msgstr "Every"
342
+
343
+ #: public/admin/row_monthly.php:16
344
+ msgid "On day of the month"
345
+ msgstr "On day of the month"
346
+
347
+ #: public/admin/row_monthly.php:23
348
+ msgid "On day of the week"
349
+ msgstr "On day of the week"
350
+
351
+ #: public/admin/row_weekly.php:12
352
+ msgctxt "Recurrence editor - weekly tab"
353
+ msgid "On"
354
+ msgstr "On"
355
+
356
+ #: public/admin/row_yearly.php:12
357
+ msgctxt "Recurrence editor - yearly tab"
358
+ msgid "In"
359
+ msgstr "In"
360
+
361
+ #: public/admin/settings.php:19
362
+ msgid "Update Settings"
363
+ msgstr "Update Settings"
364
+
365
+ #: public/admin/themes-install.php:4
366
+ msgid "The active theme is broken. Reverting to the default theme."
367
+ msgstr "The active theme is broken. Reverting to the default theme."
368
+
369
+ #: public/admin/themes-install.php:13
370
+ msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
+ msgstr ""
372
+
373
+ #: public/admin/calendar_tasks.php:24
374
+ msgid "Manage Events"
375
+ msgstr "Manage Events"
376
+
377
+ #: public/admin/calendar_tasks.php:27
378
+ msgid "View and edit all your events."
379
+ msgstr "View and edit all your events."
380
+
381
+ #: public/admin/calendar_tasks.php:39
382
+ msgid "Manage Event Categories"
383
+ msgstr "Manage Event Categories"
384
+
385
+ #: public/admin/calendar_tasks.php:42
386
+ msgid "Organize and color-code your events."
387
+ msgstr "Organise and colour-code your events."
388
+
389
+ #: public/admin/calendar_tasks.php:50
390
+ msgid "Choose Your Theme"
391
+ msgstr "Choose Your Theme"
392
+
393
+ #: public/admin/calendar_tasks.php:53
394
+ msgid "Change the look and feel."
395
+ msgstr "Change the look and feel."
396
+
397
+ #: public/admin/calendar_tasks.php:63
398
+ msgid "Manage Calendar Feeds"
399
+ msgstr "Manage Calendar Feeds"
400
+
401
+ #: public/admin/calendar_tasks.php:66
402
+ msgid "Subscribe to other calendars."
403
+ msgstr "Subscribe to other calendars."
404
+
405
+ #: public/admin/calendar_tasks.php:74
406
+ msgid "Edit Calendar Settings"
407
+ msgstr "Edit Calendar Settings"
408
+
409
+ #: public/admin/calendar_tasks.php:77
410
+ msgid "Make this calendar your own."
411
+ msgstr "Make this calendar your own."
412
+
413
+ #: public/admin/cron_freq.php:3
414
+ msgid "Hourly"
415
+ msgstr "Hourly"
416
+
417
+ #: public/admin/cron_freq.php:6
418
+ msgid "Twice Daily"
419
+ msgstr "Twice Daily"
420
+
421
+ #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
+ msgid "iCalendar/.ics Feed URL:"
423
+ msgstr "iCalendar/.ics Feed URL:"
424
+
425
+ #: public/admin/feed_row.php:24
426
+ msgid "Event categories:"
427
+ msgstr "Event categories:"
428
+
429
+ #: public/admin/feed_row.php:31
430
+ msgid "Tag with"
431
+ msgstr "Tag with"
432
+
433
+ #: public/admin/feed_row.php:40
434
+ msgid "Allow comments"
435
+ msgstr "Allow comments"
436
+
437
+ #: public/admin/feed_row.php:51
438
+ msgid "Show map"
439
+ msgstr "Show map"
440
+
441
+ #: public/admin/feed_row.php:63
442
+ msgid "Keep original events categories and tags"
443
+ msgstr "Keep original events categories and tags"
444
+
445
+ #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
+ msgid "On refresh, preserve previously imported events that are missing from the feed"
447
+ msgstr ""
448
+
449
+ #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
+ msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
+ msgstr ""
452
+
453
+ #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
+ msgid "Assign default time zone to events in UTC"
455
+ msgstr ""
456
+
457
+ #: public/admin/box_support.php:19
458
+ msgid "Get Add-ons"
459
+ msgstr "Get Add-ons"
460
+
461
+ #: public/admin/box_support.php:27
462
+ msgid "Support"
463
+ msgstr "Support"
464
+
465
+ #: public/admin/box_support.php:35
466
+ msgid "Timely Events"
467
+ msgstr "Timely Events"
468
+
469
+ #: public/admin/box_support.php:43
470
+ msgid "Timely News"
471
+ msgstr "Timely News"
472
+
473
+ #: public/admin/box_support.php:47
474
+ msgid "view all news"
475
+ msgstr "view all news"
476
+
477
+ #: public/admin/box_support.php:95
478
+ msgid "Follow @_Timely"
479
+ msgstr "Follow @_Timely"
480
+
481
+ #: public/admin/box_time_and_date.php:6
482
+ msgid "Event date and time"
483
+ msgstr "Event date and time"
484
+
485
+ #: public/admin/box_time_and_date.php:26
486
+ msgid "All-day event"
487
+ msgstr "All-day event"
488
+
489
+ #: public/admin/box_time_and_date.php:35
490
+ msgid "No end time"
491
+ msgstr "No end time"
492
+
493
+ #: public/admin/box_time_and_date.php:42
494
+ msgid "Start date / time"
495
+ msgstr "Start date / time"
496
+
497
+ #: public/admin/box_time_and_date.php:59
498
+ msgid "End date / time"
499
+ msgstr "End date / time"
500
+
501
+ #: public/admin/box_time_and_date.php:76
502
+ msgid "Time zone"
503
+ msgstr "Time zone"
504
+
505
+ #: public/admin/box_time_and_date.php:81
506
+ msgid "Choose your time zone"
507
+ msgstr "Choose your time zone"
508
+
509
+ #: public/admin/box_time_and_date.php:108
510
+ msgid "Repeat"
511
+ msgstr "Repeat"
512
+
513
+ #: public/admin/box_time_and_date.php:127
514
+ msgid "Exclude"
515
+ msgstr "Exclude"
516
+
517
+ #: public/admin/box_time_and_date.php:136
518
+ msgid "Choose a rule for exclusion"
519
+ msgstr "Choose a rule for exclusion"
520
+
521
+ #: public/admin/calendar_tasks.php:3
522
+ msgid "Welcome"
523
+ msgstr "Welcome"
524
+
525
+ #: public/admin/calendar_tasks.php:4
526
+ msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
+ msgstr "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
+
529
+ #: public/admin/calendar_tasks.php:13
530
+ msgid "Post Your Event"
531
+ msgstr "Post Your Event"
532
+
533
+ #: public/admin/calendar_tasks.php:16
534
+ msgid "Add a new event to the calendar."
535
+ msgstr "Add a new event to the calendar."
536
+
537
+ #: public/admin/box_eventbrite.php:60
538
+ msgid "Donation Based"
539
+ msgstr "Donation Based"
540
+
541
+ #: public/admin/box_eventbrite.php:68
542
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
543
+ msgstr "The price for this event's first ticket will be taken from the Cost field above."
544
+
545
+ #: public/admin/box_eventbrite.php:75
546
+ msgid "Quantity"
547
+ msgstr "Quantity"
548
+
549
+ #: public/admin/box_eventbrite.php:85
550
+ msgid "Include Fee in Price"
551
+ msgstr "Include Fee in Price"
552
+
553
+ #: public/admin/box_eventbrite.php:90
554
+ msgid "Add Service Fee on top of price"
555
+ msgstr "Add Service Fee on top of price"
556
+
557
+ #: public/admin/box_eventbrite.php:92
558
+ msgid "Include Service fee in price"
559
+ msgstr "Include Service fee in price"
560
+
561
+ #: public/admin/box_eventbrite.php:98
562
+ msgid "Payment Options"
563
+ msgstr "Payment Options"
564
+
565
+ #: public/admin/box_eventbrite.php:105
566
+ msgid "Google Checkout"
567
+ msgstr "Google Checkout"
568
+
569
+ #: public/admin/box_eventbrite.php:107
570
+ msgid "Check"
571
+ msgstr "Check"
572
+
573
+ #: public/admin/box_eventbrite.php:109
574
+ msgid "Cash"
575
+ msgstr "Cash"
576
+
577
+ #: public/admin/box_eventbrite.php:111
578
+ msgid "Send an Invoice"
579
+ msgstr "Send an Invoice"
580
+
581
+ #: public/admin/box_profile_timezone.php:9
582
+ msgid "Your preferred timezone"
583
+ msgstr "Your preferred timezone"
584
+
585
+ #: public/admin/box_repeat.php:5
586
+ msgid "Select recurrence pattern:"
587
+ msgstr "Select recurrence pattern:"
588
+
589
+ #: public/admin/box_repeat.php:36
590
+ msgid "Custom"
591
+ msgstr ""
592
+
593
+ #: public/admin/box_repeat.php:72
594
+ msgid "End"
595
+ msgstr "End"
596
+
597
+ #: public/admin/box_repeat.php:82
598
+ msgid "Ending after"
599
+ msgstr "Ending after"
600
+
601
+ #: public/admin/box_repeat.php:109
602
+ #: public/admin/plugins/ics/display_feeds.php:90
603
+ msgid "Please wait&#8230;"
604
+ msgstr "Please wait&#8230;"
605
+
606
+ #: public/admin/box_repeat.php:111
607
+ msgid "Apply"
608
+ msgstr "Apply"
609
+
610
+ #: public/admin/box_repeat.php:116
611
+ #: public/admin/plugins/ics/display_feeds.php:84
612
+ msgid "Cancel"
613
+ msgstr "Cancel"
614
+
615
+ #: public/admin/box_support.php:4
616
+ msgid "Timely"
617
+ msgstr "Timely"
618
+
619
+ #: public/admin/box_support.php:11
620
+ msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
+ msgstr "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
622
+
623
+ #: public/admin/box_event_cost.php:228
624
+ msgid "Status:"
625
+ msgstr ""
626
+
627
+ #: public/admin/box_event_cost.php:235
628
+ msgid "Open"
629
+ msgstr ""
630
+
631
+ #: public/admin/box_event_cost.php:239
632
+ msgid "Closed"
633
+ msgstr ""
634
+
635
+ #: public/admin/box_event_cost.php:254
636
+ msgid "Add New Ticket Type"
637
+ msgstr ""
638
+
639
+ #: public/admin/box_event_cost.php:274
640
+ msgid "Tickets URL:"
641
+ msgstr ""
642
+
643
+ #: public/admin/box_event_location.php:6
644
+ msgid "Event location details"
645
+ msgstr "Event location details"
646
+
647
+ #: public/admin/box_event_location.php:19
648
+ msgid "Venue name:"
649
+ msgstr "Venue name:"
650
+
651
+ #: public/admin/box_event_location.php:31
652
+ msgid "Address:"
653
+ msgstr "Address:"
654
+
655
+ #: public/admin/box_event_location.php:45
656
+ msgid "Input Coordinates"
657
+ msgstr "Input Coordinates"
658
+
659
+ #: public/admin/box_event_location.php:57
660
+ msgid "Latitude:"
661
+ msgstr "Latitude:"
662
+
663
+ #: public/admin/box_event_location.php:69
664
+ msgid "Longitude:"
665
+ msgstr "Longitude:"
666
+
667
+ #: public/admin/box_event_location.php:85
668
+ msgid "Show Map"
669
+ msgstr ""
670
+
671
+ #: public/admin/box_eventbrite.php:1
672
+ msgid "Eventbrite Ticketing"
673
+ msgstr "Eventbrite Ticketing"
674
+
675
+ #: public/admin/box_eventbrite.php:7
676
+ msgid "Register this event with Eventbrite.com?"
677
+ msgstr "Register this event with Eventbrite.com?"
678
+
679
+ #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
+ #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
+ #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
+ msgid "Yes"
683
+ msgstr "Yes"
684
+
685
+ #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
+ #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
+ #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
+ msgid "No"
689
+ msgstr "No"
690
+
691
+ #: public/admin/box_eventbrite.php:22
692
+ msgid "Set up your first ticket"
693
+ msgstr "Set up your first ticket"
694
+
695
+ #: public/admin/box_eventbrite.php:24
696
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
+ msgstr "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
698
+
699
+ #: public/admin/box_eventbrite.php:42
700
+ msgid "Description"
701
+ msgstr "Description"
702
+
703
+ #: public/admin/box_eventbrite.php:53
704
+ msgid "Type"
705
+ msgstr "Type"
706
+
707
+ #: public/admin/box_eventbrite.php:58
708
+ msgid "Set Price"
709
+ msgstr "Set Price"
710
+
711
+ #: public/admin/box_event_contact.php:30
712
+ msgid "Phone:"
713
+ msgstr "Phone:"
714
+
715
+ #: public/admin/box_event_contact.php:56
716
+ msgid "Website URL:"
717
+ msgstr ""
718
+
719
+ #: public/admin/box_event_cost.php:6
720
+ msgid "Event cost and Tickets"
721
+ msgstr "Event cost and Tickets"
722
+
723
+ #: public/admin/box_event_cost.php:20
724
+ msgid "Ticket options not available - event imported from external calendar."
725
+ msgstr ""
726
+
727
+ #: public/admin/box_event_cost.php:28
728
+ msgid "Free event"
729
+ msgstr "Free event"
730
+
731
+ #: public/admin/box_event_cost.php:41
732
+ msgid "External Tickets URL"
733
+ msgstr ""
734
+
735
+ #: public/admin/box_event_cost.php:52
736
+ msgid "Ticketing allows you to sell tickets directly to the users."
737
+ msgstr ""
738
+
739
+ #: public/admin/box_event_cost.php:55
740
+ msgid "Sign Up for Timely Network"
741
+ msgstr ""
742
+
743
+ #: public/admin/box_event_cost.php:80
744
+ msgid "Remove Ticket Type"
745
+ msgstr ""
746
+
747
+ #: public/admin/box_event_cost.php:101
748
+ msgid "Ex.: Regular Ticket"
749
+ msgstr ""
750
+
751
+ #: public/admin/box_event_cost.php:105
752
+ msgid "Description:"
753
+ msgstr ""
754
+
755
+ #: public/admin/box_event_cost.php:111
756
+ msgid "(Optional)"
757
+ msgstr ""
758
+
759
+ #: public/admin/box_event_cost.php:115
760
+ msgid "Price:"
761
+ msgstr ""
762
+
763
+ #: public/admin/box_event_cost.php:124
764
+ msgid "USD"
765
+ msgstr ""
766
+
767
+ #: public/admin/box_event_cost.php:128
768
+ msgid "Limits:"
769
+ msgstr ""
770
+
771
+ #: public/admin/box_event_cost.php:131
772
+ msgid "This fields are required."
773
+ msgstr ""
774
+
775
+ #: public/admin/box_event_cost.php:156
776
+ msgid "Quantity:"
777
+ msgstr ""
778
+
779
+ #: public/admin/box_event_cost.php:180
780
+ msgid "Available:"
781
+ msgstr ""
782
+
783
+ #: public/admin/box_event_cost.php:185
784
+ msgid "Immediately"
785
+ msgstr ""
786
+
787
+ #: public/admin/box_event_cost.php:190
788
+ msgid "From:"
789
+ msgstr ""
790
+
791
+ #: public/admin/box_event_cost.php:207
792
+ msgid "Till:"
793
+ msgstr ""
794
+
795
+ #: public/admin/box_ask_customer_review.php:42
796
+ #: public/admin/box_ask_customer_review.php:75
797
+ msgid "No, thanks"
798
+ msgstr ""
799
+
800
+ #: public/admin/box_ask_customer_review.php:50
801
+ #: public/admin/box_ask_customer_review.php:84
802
+ msgid "Ok, sure!"
803
+ msgstr ""
804
+
805
+ #: public/admin/box_ask_customer_review.php:66
806
+ msgid "Would you mind giving us some feedback?"
807
+ msgstr ""
808
+
809
+ #: public/admin/box_ask_customer_review.php:101
810
+ msgid "Please provide some feedback"
811
+ msgstr ""
812
+
813
+ #: public/admin/box_ask_customer_review.php:108
814
+ msgid "Message:"
815
+ msgstr ""
816
+
817
+ #: public/admin/box_ask_customer_review.php:121
818
+ msgid "Name:"
819
+ msgstr ""
820
+
821
+ #: public/admin/box_ask_customer_review.php:136
822
+ #: public/admin/box_event_contact.php:43
823
+ msgid "E-mail:"
824
+ msgstr "E-mail:"
825
+
826
+ #: public/admin/box_ask_customer_review.php:143
827
+ msgid "E-mail is invalid."
828
+ msgstr ""
829
+
830
+ #: public/admin/box_ask_customer_review.php:154
831
+ msgid "Site URL:"
832
+ msgstr ""
833
+
834
+ #: public/admin/box_ask_customer_review.php:161
835
+ msgid "Site URL is invalid."
836
+ msgstr ""
837
+
838
+ #: public/admin/box_ask_customer_review.php:173
839
+ msgid "Thank you for being our customer,"
840
+ msgstr ""
841
+
842
+ #: public/admin/box_ask_customer_review.php:174
843
+ msgid "Aristotel Dascal, VP of Product, Time.ly"
844
+ msgstr ""
845
+
846
+ #: public/admin/box_ask_customer_review.php:180
847
+ msgid "Sending..."
848
+ msgstr ""
849
+
850
+ #: public/admin/box_ask_customer_review.php:181
851
+ msgid "Send Message"
852
+ msgstr ""
853
+
854
+ #: public/admin/box_event_children.php:12
855
+ msgid "Base recurrence event"
856
+ msgstr "Base recurrence event"
857
+
858
+ #: public/admin/box_event_children.php:14
859
+ msgid "Modified recurrence events"
860
+ msgstr "Modified recurrence events"
861
+
862
+ #: public/admin/box_event_children.php:22
863
+ msgid "Edit parent:"
864
+ msgstr "Edit parent:"
865
+
866
+ #: public/admin/box_event_children.php:27
867
+ msgid "Modified Events"
868
+ msgstr "Modified Events"
869
+
870
+ #: public/admin/box_event_children.php:31
871
+ msgid "Edit:"
872
+ msgstr "Edit:"
873
+
874
+ #: public/admin/box_event_contact.php:6
875
+ msgid "Organizer contact info"
876
+ msgstr "Organiser contact info"
877
+
878
+ #: public/admin/box_event_contact.php:17
879
+ msgid "Contact name:"
880
+ msgstr "Contact name:"
881
+
882
+ #: lib/theme/loader.php:325
883
+ msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
+ msgstr "We couldn't find a suitable loader for filename with extension '%s'"
885
+
886
+ #: lib/theme/loader.php:631
887
+ msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
+ msgstr ""
889
+
890
+ #: lib/theme/search.php:253
891
+ msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
+ msgstr "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writeable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
893
+
894
+ #: lib/theme/search.php:264
895
+ msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
+ msgstr "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
897
+
898
+ #: lib/twig/environment.php:115
899
+ msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
+ msgstr ""
901
+
902
+ #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
+ msgid "Title:"
904
+ msgstr "Title:"
905
+
906
+ #: public/admin/agenda-widget-form.php:12
907
+ msgid "Number of events to show:"
908
+ msgstr "Number of events to show:"
909
+
910
+ #: public/admin/agenda-widget-form.php:21
911
+ msgid "Number of days to show:"
912
+ msgstr "Number of days to show:"
913
+
914
+ #: public/admin/agenda-widget-form.php:26
915
+ msgid "Limit to:"
916
+ msgstr "Limit to:"
917
+
918
+ #: public/admin/agenda-widget-form.php:30
919
+ msgid "Events with these <strong>Categories</strong>"
920
+ msgstr "Events with these <strong>Categories</strong>"
921
+
922
+ #: public/admin/agenda-widget-form.php:39
923
+ msgid "No categories found."
924
+ msgstr "No categories found."
925
+
926
+ #: public/admin/agenda-widget-form.php:46
927
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
+ msgstr "<strong>Or</strong> events with these <strong>Tags</strong>"
929
+
930
+ #: public/admin/agenda-widget-form.php:55
931
+ msgid "No tags found."
932
+ msgstr "No tags found."
933
+
934
+ #: public/admin/agenda-widget-form.php:62
935
+ msgid "Show <strong>View Calendar</strong> button"
936
+ msgstr "Show <strong>View Calendar</strong> button"
937
+
938
+ #: public/admin/agenda-widget-form.php:65
939
+ msgid "Show <strong>Subscribe</strong> buttons"
940
+ msgstr "Show <strong>Subscribe</strong> buttons"
941
+
942
+ #: public/admin/agenda-widget-form.php:68
943
+ msgid "Hide this widget on calendar page"
944
+ msgstr "Hide this widget on calendar page"
945
+
946
+ #: public/admin/box_ask_customer_review.php:5
947
+ msgid "Enjoying All-in-One Event Calendar?"
948
+ msgstr ""
949
+
950
+ #: public/admin/box_ask_customer_review.php:13
951
+ msgid "Not really"
952
+ msgstr ""
953
+
954
+ #: public/admin/box_ask_customer_review.php:20
955
+ msgid "Yes!"
956
+ msgstr ""
957
+
958
+ #: public/admin/box_ask_customer_review.php:33
959
+ msgid "How about a rating on the Wordpress?"
960
+ msgstr ""
961
+
962
+ #: lib/recurrence/rule.php:397
963
+ msgid "Every %d weeks"
964
+ msgstr "Every %d weeks"
965
+
966
+ #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
+ msgid "Monthly"
968
+ msgstr "Monthly"
969
+
970
+ #: lib/recurrence/rule.php:409
971
+ msgid "Every other month"
972
+ msgstr "Every other month"
973
+
974
+ #: lib/recurrence/rule.php:412
975
+ msgid "Every %d months"
976
+ msgstr "Every %d months"
977
+
978
+ #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
+ msgid "Yearly"
980
+ msgstr "Yearly"
981
+
982
+ #: lib/recurrence/rule.php:424
983
+ msgid "Every other year"
984
+ msgstr "Every other year"
985
+
986
+ #: lib/recurrence/rule.php:427
987
+ msgid "Every %d years"
988
+ msgstr "Every %d years"
989
+
990
+ #: lib/recurrence/rule.php:465
991
+ msgid "until %s"
992
+ msgstr "until %s"
993
+
994
+ #: lib/recurrence/rule.php:475
995
+ msgid "for %d occurrences"
996
+ msgstr "for %d occurrences"
997
+
998
+ #: lib/recurrence/rule.php:479
999
+ msgid "forever"
1000
+ msgstr "forever"
1001
+
1002
+ #: lib/robots/helper.php:71
1003
+ msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
+ msgstr "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1005
+
1006
+ #: lib/robots/helper.php:105
1007
+ msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
+ msgstr "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1009
+
1010
+ #: lib/theme/list.php:152
1011
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
+ msgstr "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1013
+
1014
+ #: lib/theme/list.php:164
1015
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
+ msgstr "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1017
+
1018
+ #: lib/theme/list.php:179
1019
+ msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
+ msgstr "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1021
+
1022
+ #: lib/theme/list.php:190
1023
+ msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
+ msgstr "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1025
+
1026
+ #: lib/theme/list.php:257
1027
+ msgid "Activate &#8220;%s&#8221;"
1028
+ msgstr "Activate &#8220;%s&#8221;"
1029
+
1030
+ #: lib/theme/list.php:264
1031
+ msgid "Activate"
1032
+ msgstr "Activate"
1033
+
1034
+ #. translators: 1: theme title, 2: theme version, 3: theme author
1035
+ #: lib/theme/list.php:281 public/admin/themes.php:25
1036
+ msgid "%1$s %2$s by %3$s"
1037
+ msgstr "%1$s %2$s by %3$s"
1038
+
1039
+ #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
+ #. title, 5: parent_theme
1041
+ #: lib/theme/list.php:293
1042
+ msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
+ msgstr "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1044
+
1045
+ #: lib/theme/list.php:308
1046
+ msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
+ msgstr "All of this theme&#8217;s files are located in <code>%2$s</code>."
1048
+
1049
+ #: lib/post/custom-type.php:36
1050
+ msgid "Parent Event"
1051
+ msgstr "Parent Event"
1052
+
1053
+ #: lib/post/custom-type.php:55
1054
+ msgid "event"
1055
+ msgstr "event"
1056
+
1057
+ #: lib/post/custom-type.php:85
1058
+ msgctxt "Event categories taxonomy"
1059
+ msgid "Categories"
1060
+ msgstr ""
1061
+
1062
+ #: lib/post/custom-type.php:86
1063
+ msgctxt "Event categories taxonomy (singular)"
1064
+ msgid "Category"
1065
+ msgstr ""
1066
+
1067
+ #: lib/post/custom-type.php:87
1068
+ msgctxt "Event categories menu item"
1069
+ msgid "Organize"
1070
+ msgstr ""
1071
+
1072
+ #: lib/post/custom-type.php:94
1073
+ msgctxt "Event tags taxonomy"
1074
+ msgid "Tags"
1075
+ msgstr ""
1076
+
1077
+ #: lib/post/custom-type.php:95
1078
+ msgctxt "Event tags taxonomy (singular)"
1079
+ msgid "Tag"
1080
+ msgstr ""
1081
+
1082
+ #: lib/post/custom-type.php:102
1083
+ msgctxt "Event feeds taxonomy"
1084
+ msgid "Event Feeds"
1085
+ msgstr "Event Feeds"
1086
+
1087
+ #: lib/post/custom-type.php:103
1088
+ msgctxt "Event feed taxonomy (singular)"
1089
+ msgid "Event Feed"
1090
+ msgstr "Event Feed"
1091
+
1092
+ #: lib/post/custom-type.php:285
1093
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
+ msgstr "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1095
+
1096
+ #: lib/post/custom-type.php:296
1097
+ msgid "All Events"
1098
+ msgstr "All Events"
1099
+
1100
+ #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
+ #: lib/recurrence/rule.php:260
1102
+ msgctxt "Recurrence editor - weekly tab"
1103
+ msgid "on"
1104
+ msgstr "on"
1105
+
1106
+ #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
+ #: lib/recurrence/rule.php:326
1108
+ msgid "and"
1109
+ msgstr "and"
1110
+
1111
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
+ #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
+ msgctxt "Recurrence editor - monthly tab"
1114
+ msgid "on"
1115
+ msgstr "on"
1116
+
1117
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
+ #: lib/recurrence/rule.php:286
1119
+ msgid "of the month"
1120
+ msgstr "of the month"
1121
+
1122
+ #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
+ #: lib/recurrence/rule.php:336
1124
+ msgctxt "Recurrence editor - yearly tab"
1125
+ msgid "on"
1126
+ msgstr "on"
1127
+
1128
+ #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
+ #: public/admin/cron_freq.php:9
1130
+ msgid "Daily"
1131
+ msgstr "Daily"
1132
+
1133
+ #: lib/recurrence/rule.php:379
1134
+ msgid "Every other day"
1135
+ msgstr "Every other day"
1136
+
1137
+ #: lib/recurrence/rule.php:382
1138
+ msgid "Every %d days"
1139
+ msgstr "Every %d days"
1140
+
1141
+ #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
+ msgid "Weekly"
1143
+ msgstr "Weekly"
1144
+
1145
+ #: lib/recurrence/rule.php:394
1146
+ msgid "Every other week"
1147
+ msgstr "Every other week"
1148
+
1149
+ #: lib/less/variable/font.php:64
1150
+ msgid "Custom..."
1151
+ msgstr "Custom..."
1152
+
1153
+ #: lib/less/variable/font.php:112
1154
+ msgid "Enter custom font(s)"
1155
+ msgstr "Enter custom font(s)"
1156
+
1157
+ #: lib/less/variable/size.php:26
1158
+ msgid "Length"
1159
+ msgstr "Length"
1160
+
1161
+ #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
+ msgid "All-in-One Event Calendar"
1163
+ msgstr "All-in-One Event Calendar"
1164
+
1165
+ #: lib/notification/admin.php:182
1166
+ msgid "Got it – dismiss this"
1167
+ msgstr ""
1168
+
1169
+ #: lib/post/custom-type.php:26
1170
+ msgctxt "Custom post type name"
1171
+ msgid "Events"
1172
+ msgstr "Events"
1173
+
1174
+ #: lib/post/custom-type.php:27
1175
+ msgctxt "Custom post type name (singular)"
1176
+ msgid "Event"
1177
+ msgstr "Event"
1178
+
1179
+ #: lib/post/custom-type.php:28
1180
+ msgid "Add New"
1181
+ msgstr "Add New"
1182
+
1183
+ #: lib/post/custom-type.php:29
1184
+ msgid "Add New Event"
1185
+ msgstr "Add New Event"
1186
+
1187
+ #: lib/post/custom-type.php:30
1188
+ msgid "Edit Event"
1189
+ msgstr "Edit Event"
1190
+
1191
+ #: lib/post/custom-type.php:31
1192
+ msgid "New Event"
1193
+ msgstr "New Event"
1194
+
1195
+ #: lib/post/custom-type.php:32
1196
+ msgid "View Event"
1197
+ msgstr "View Event"
1198
+
1199
+ #: lib/post/custom-type.php:33
1200
+ msgid "Search Events"
1201
+ msgstr "Search Events"
1202
+
1203
+ #: lib/post/custom-type.php:34
1204
+ msgid "No Events found"
1205
+ msgstr "No Events found"
1206
+
1207
+ #: lib/post/custom-type.php:35
1208
+ msgid "No Events found in Trash"
1209
+ msgstr "No Events found in Trash"
1210
+
1211
+ #: lib/html/element/setting/html.php:62
1212
+ msgid "Filter by post ID:"
1213
+ msgstr "Filter by post ID:"
1214
+
1215
+ #: lib/html/element/setting/html.php:63
1216
+ msgid "Filter by post IDs (separate IDs by comma):"
1217
+ msgstr "Filter by post IDs (separate IDs by comma):"
1218
+
1219
+ #: lib/html/element/setting/html.php:64
1220
+ msgid "Limit number of events per page:"
1221
+ msgstr "Limit number of events per page:"
1222
+
1223
+ #: lib/html/element/setting/html.php:65
1224
+ msgid "Warning:"
1225
+ msgstr "Warning:"
1226
+
1227
+ #: lib/html/element/setting/html.php:66
1228
+ msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
+ msgstr "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1230
+
1231
+ #: lib/import-export/ics.php:831
1232
+ msgid "Tickets: "
1233
+ msgstr ""
1234
+
1235
+ #: lib/html/element/setting/html.php:41
1236
+ msgid "Day view:"
1237
+ msgstr "Day view:"
1238
+
1239
+ #: lib/html/element/setting/html.php:42
1240
+ msgid "Agenda view:"
1241
+ msgstr "Agenda view:"
1242
+
1243
+ #: lib/html/element/setting/html.php:43
1244
+ msgid "Some Other view:"
1245
+ msgstr "Some Other view:"
1246
+
1247
+ #: lib/html/element/setting/html.php:44
1248
+ msgid "Default view as per settings:"
1249
+ msgstr "Default view as per settings:"
1250
+
1251
+ #: lib/html/element/setting/html.php:45
1252
+ msgid "General form:"
1253
+ msgstr "General form:"
1254
+
1255
+ #: lib/html/element/setting/html.php:46
1256
+ msgid "Optional."
1257
+ msgstr "Optional."
1258
+
1259
+ #: lib/html/element/setting/html.php:47
1260
+ msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
+ msgstr "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1262
+
1263
+ #: lib/html/element/setting/html.php:48
1264
+ msgid "Filter by event category name/slug:"
1265
+ msgstr "Filter by event category name/slug:"
1266
+
1267
+ #: lib/html/element/setting/html.php:49
1268
+ msgid "Holidays"
1269
+ msgstr "Holidays"
1270
+
1271
+ #: lib/html/element/setting/html.php:50
1272
+ msgid "Lunar Cycles"
1273
+ msgstr "Lunar Cycles"
1274
+
1275
+ #: lib/html/element/setting/html.php:51
1276
+ msgid "zodiac-date-ranges"
1277
+ msgstr "zodiac-date-ranges"
1278
+
1279
+ #: lib/html/element/setting/html.php:52
1280
+ msgid "Filter by event category names/slugs (separate names by comma):"
1281
+ msgstr "Filter by event category names/slugs (separate names by comma):"
1282
+
1283
+ #: lib/html/element/setting/html.php:53
1284
+ msgid "Filter by event category ID:"
1285
+ msgstr "Filter by event category ID:"
1286
+
1287
+ #: lib/html/element/setting/html.php:54
1288
+ msgid "Filter by event category IDs (separate IDs by comma):"
1289
+ msgstr "Filter by event category IDs (separate IDs by comma):"
1290
+
1291
+ #: lib/html/element/setting/html.php:55
1292
+ msgid "Filter by event tag name/slug:"
1293
+ msgstr "Filter by event tag name/slug:"
1294
+
1295
+ #: lib/html/element/setting/html.php:56
1296
+ msgid "tips-and-tricks"
1297
+ msgstr "tips-and-tricks"
1298
+
1299
+ #: lib/html/element/setting/html.php:57
1300
+ msgid "creative writing"
1301
+ msgstr "creative writing"
1302
+
1303
+ #: lib/html/element/setting/html.php:58
1304
+ msgid "performing arts"
1305
+ msgstr "performing arts"
1306
+
1307
+ #: lib/html/element/setting/html.php:59
1308
+ msgid "Filter by event tag names/slugs (separate names by comma):"
1309
+ msgstr "Filter by event tag names/slugs (separate names by comma):"
1310
+
1311
+ #: lib/html/element/setting/html.php:60
1312
+ msgid "Filter by event tag ID:"
1313
+ msgstr "Filter by event tag ID:"
1314
+
1315
+ #: lib/html/element/setting/html.php:61
1316
+ msgid "Filter by event tag IDs (separate IDs by comma):"
1317
+ msgstr "Filter by event tag IDs (separate IDs by comma):"
1318
+
1319
+ #: lib/exception/handler.php:395
1320
+ msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
+ msgstr ""
1322
+
1323
+ #: lib/exception/handler.php:404
1324
+ msgid "Try reactivating plugin"
1325
+ msgstr ""
1326
+
1327
+ #: lib/exception/handler.php:576
1328
+ msgid "Toggle error details"
1329
+ msgstr ""
1330
+
1331
+ #: lib/exception/handler.php:577
1332
+ msgid "Error Details:"
1333
+ msgstr ""
1334
+
1335
+ #: lib/factory/html.php:133
1336
+ msgid "Choose a date using calendar"
1337
+ msgstr "Choose a date using calendar"
1338
+
1339
+ #: lib/factory/html.php:278
1340
+ msgid "Tags (optional)"
1341
+ msgstr "Tags (optional)"
1342
+
1343
+ #: lib/html/element/setting/cache.php:38
1344
+ msgid "Check again"
1345
+ msgstr "Check again"
1346
+
1347
+ #: lib/html/element/setting/cache.php:39
1348
+ msgid "Templates cache is not writable"
1349
+ msgstr "Templates cache is not writeable"
1350
+
1351
+ #: lib/html/element/setting/cache.php:40
1352
+ msgid "Templates cache is writable"
1353
+ msgstr "Templates cache is writeable"
1354
+
1355
+ #: lib/html/element/setting/cache.php:41
1356
+ msgid "Checking..."
1357
+ msgstr "Checking..."
1358
+
1359
+ #: lib/html/element/setting/cache.php:42
1360
+ msgid "Performance Report"
1361
+ msgstr "Performance Report"
1362
+
1363
+ #: lib/html/element/setting/calendar-page-selector.php:70
1364
+ msgid "View"
1365
+ msgstr "View"
1366
+
1367
+ #: lib/html/element/setting/calendar-page-selector.php:114
1368
+ msgid "- Auto-Create New Page -"
1369
+ msgstr "- Auto-Create New Page -"
1370
+
1371
+ #: lib/html/element/setting/enabled-views.php:22
1372
+ msgid "Enabled"
1373
+ msgstr "Enabled"
1374
+
1375
+ #: lib/html/element/setting/enabled-views.php:23
1376
+ msgid "Default"
1377
+ msgstr "Default"
1378
+
1379
+ #: lib/html/element/setting/enabled-views.php:24
1380
+ msgid "Desktop"
1381
+ msgstr "Desktop"
1382
+
1383
+ #: lib/html/element/setting/enabled-views.php:25
1384
+ msgid "Mobile"
1385
+ msgstr "Mobile"
1386
+
1387
+ #: lib/html/element/setting/html.php:37
1388
+ msgid "Embed the calendar using a shortcode"
1389
+ msgstr "Embed the calendar using a shortcode"
1390
+
1391
+ #: lib/html/element/setting/html.php:38
1392
+ msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
+ msgstr "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1394
+
1395
+ #: lib/html/element/setting/html.php:39
1396
+ msgid "Month view:"
1397
+ msgstr "Month view:"
1398
+
1399
+ #: lib/html/element/setting/html.php:40
1400
+ msgid "Week view:"
1401
+ msgstr "Week view:"
1402
+
1403
+ #: lib/css/frontend.php:239
1404
+ msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
+ msgstr ""
1406
+
1407
+ #: lib/css/frontend.php:266
1408
+ msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
+ msgstr "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1410
+
1411
+ #: lib/css/frontend.php:272
1412
+ msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
+ msgstr "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1414
+
1415
+ #: lib/css/frontend.php:300
1416
+ msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
+ msgstr "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1418
+
1419
+ #: lib/css/frontend.php:307
1420
+ msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
+ msgstr "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1422
+
1423
+ #: lib/css/frontend.php:343
1424
+ msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
+ msgstr "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1426
+
1427
+ #: lib/database/applicator.php:182
1428
+ msgid "Date columns in table %s have different types."
1429
+ msgstr "Date columns in table %s have different types."
1430
+
1431
+ #: lib/database/exception/database.php:19
1432
+ msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
+ msgstr "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1434
+
1435
+ #: lib/database/exception/database.php:23
1436
+ msgid "Error encountered: %s"
1437
+ msgstr "Error encountered: %s"
1438
+
1439
+ #: lib/date/system.php:202
1440
+ msgid "GMT%+d:%02d"
1441
+ msgstr "GMT%+d:%02d"
1442
+
1443
+ #: lib/date/timezone.php:362
1444
+ msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
+ msgstr "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1446
+
1447
+ #: lib/date/timezone.php:397
1448
+ msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
+ msgstr "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1450
+
1451
+ #: lib/date/timezone.php:421
1452
+ msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
+ msgstr "Selected timezone \"UTC%+d\" will be treated as %s."
1454
+
1455
+ #: lib/date/timezone.php:490
1456
+ msgid "Manual Offset"
1457
+ msgstr "Manual Offset"
1458
+
1459
+ #: lib/date/timezone.php:493
1460
+ msgid "Choose your timezone"
1461
+ msgstr "Choose your timezone"
1462
+
1463
+ #: lib/environment/check.php:55
1464
+ msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
+ msgstr "Select an option in the <strong>Calendar page</strong> dropdown list."
1466
+
1467
+ #: lib/environment/check.php:68
1468
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
+ msgstr "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1470
+
1471
+ #: lib/environment/check.php:78
1472
+ msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
+ msgstr "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1474
+
1475
+ #: lib/environment/check.php:196
1476
+ msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
+ msgstr ""
1478
+
1479
+ #: lib/environment/check.php:197
1480
+ msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
+ msgstr ""
1482
+
1483
+ #: lib/exception/handler.php:176
1484
+ msgid "The add-on \"%s\" has been disabled due to an error:"
1485
+ msgstr ""
1486
+
1487
+ #: lib/calendar-feed/ics.php:367
1488
+ msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
+ msgstr "Do you want to keep the events imported from the calendar or remove them?"
1490
+
1491
+ #: lib/calendar-feed/ics.php:373
1492
+ msgid "Removing ICS Feed"
1493
+ msgstr "Removing ICS Feed"
1494
+
1495
+ #: lib/calendar-feed/ics.php:376
1496
+ msgid "Keep Events"
1497
+ msgstr "Keep Events"
1498
+
1499
+ #: lib/calendar-feed/ics.php:379
1500
+ msgid "Remove Events"
1501
+ msgstr "Remove Events"
1502
+
1503
+ #: lib/calendar-feed/ics.php:519
1504
+ msgid "Oh, submission was not accepted."
1505
+ msgstr ""
1506
+
1507
+ #: lib/calendar-feed/ics.php:699
1508
+ msgid "Deleted %d events"
1509
+ msgstr "Deleted %d events"
1510
+
1511
+ #: lib/calendar-feed/ics.php:735
1512
+ msgid "Feed deleted"
1513
+ msgstr "Feed deleted"
1514
+
1515
+ #: lib/captcha/provider/nocaptcha.php:31
1516
+ msgid "noCAPTCHA public key:"
1517
+ msgstr ""
1518
+
1519
+ #: lib/captcha/provider/nocaptcha.php:47
1520
+ msgid "noCAPTCHA private key:"
1521
+ msgstr ""
1522
+
1523
+ #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
+ msgid "Please try verifying you are human again."
1525
+ msgstr ""
1526
+
1527
+ #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
+ msgid "There was an error reading the human verification data. Please try again."
1529
+ msgstr ""
1530
+
1531
+ #: lib/captcha/provider/recaptcha.php:32
1532
+ msgid "reCAPTCHA public key:"
1533
+ msgstr ""
1534
+
1535
+ #: lib/captcha/provider/recaptcha.php:48
1536
+ msgid "reCAPTCHA private key:"
1537
+ msgstr ""
1538
+
1539
+ #: lib/captcha/provider/recaptcha.php:66
1540
+ msgid "Human verification"
1541
+ msgstr ""
1542
+
1543
+ #: lib/captcha/provider/recaptcha.php:67
1544
+ msgid "Loading reCAPTCHA..."
1545
+ msgstr ""
1546
+
1547
+ #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
+ #: lib/clone/renderer-helper.php:45
1549
+ msgid "Clone"
1550
+ msgstr "Clone"
1551
+
1552
+ #: lib/clone/renderer-helper.php:44
1553
+ msgid "Make new copy of event"
1554
+ msgstr "Make new copy of event"
1555
+
1556
+ #: lib/clone/renderer-helper.php:47
1557
+ msgid "Copy to a new draft"
1558
+ msgstr "Copy to a new draft"
1559
+
1560
+ #: lib/clone/renderer-helper.php:48
1561
+ msgid "Clone to Draft"
1562
+ msgstr "Clone to Draft"
1563
+
1564
+ #: lib/command/clone.php:173
1565
+ msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
+ msgstr "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1567
+
1568
+ #: lib/compatibility/check.php:101
1569
+ msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
+ msgstr ""
1571
+
1572
+ #: app/view/event/single.php:123
1573
+ msgid "Tickets:"
1574
+ msgstr ""
1575
+
1576
+ #: app/view/event/single.php:124
1577
+ msgid "Free"
1578
+ msgstr "Free"
1579
+
1580
+ #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
+ msgid "Buy Tickets"
1582
+ msgstr "Buy Tickets"
1583
+
1584
+ #: app/view/event/single.php:150
1585
+ msgid "Edit this occurrence (%s)"
1586
+ msgstr "Edit this occurrence (%s)"
1587
+
1588
+ #: app/view/event/single.php:195
1589
+ msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
+ msgstr ""
1591
+
1592
+ #: app/view/event/single.php:206
1593
+ msgid "View original"
1594
+ msgstr ""
1595
+
1596
+ #: app/view/event/taxonomy.php:113
1597
+ msgid "Category image"
1598
+ msgstr "Category image"
1599
+
1600
+ #: app/view/event/ticket.php:24
1601
+ msgid "Register Now"
1602
+ msgstr "Register Now"
1603
+
1604
+ #: app/view/event/ticket.php:82
1605
+ msgid "Event website"
1606
+ msgstr "Event website"
1607
+
1608
+ #: app/view/event/time.php:84 app/view/event/time.php:118
1609
+ msgctxt "Event time separator"
1610
+ msgid " @ "
1611
+ msgstr " @ "
1612
+
1613
+ #: app/view/event/time.php:100
1614
+ msgctxt "Event start/end separator"
1615
+ msgid " – "
1616
+ msgstr " – "
1617
+
1618
+ #: app/view/event/time.php:166
1619
+ msgid ", and "
1620
+ msgstr ", and "
1621
+
1622
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
+ msgid "Excludes: "
1624
+ msgstr ""
1625
+
1626
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
+ msgid "Repeats"
1628
+ msgstr ""
1629
+
1630
+ #: lib/calendar-feed/ics.php:38
1631
+ msgid "ICS"
1632
+ msgstr "ICS"
1633
+
1634
+ #: lib/calendar-feed/ics.php:69
1635
+ msgid "Another import process in progress. Please try again later."
1636
+ msgstr "Another import process in progress. Please try again later."
1637
+
1638
+ #: lib/calendar-feed/ics.php:174
1639
+ msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
+ msgstr "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1641
+
1642
+ #: lib/calendar-feed/ics.php:181
1643
+ msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
+ msgstr "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1645
+
1646
+ #: lib/calendar-feed/ics.php:195
1647
+ msgid "Imported %s event"
1648
+ msgid_plural "Imported %s events"
1649
+ msgstr[0] "Imported %s event"
1650
+ msgstr[1] "Imported %s events"
1651
+
1652
+ #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
+ msgid "Invalid ICS feed ID"
1654
+ msgstr "Invalid ICS feed ID"
1655
+
1656
+ #: lib/calendar-feed/ics.php:350
1657
+ msgid "Categories (optional)"
1658
+ msgstr "Categories (optional)"
1659
+
1660
+ #: app/view/event/content.php:33 app/view/event/single.php:119
1661
+ msgid "When:"
1662
+ msgstr "When:"
1663
+
1664
+ #: app/view/event/content.php:34 app/view/event/single.php:120
1665
+ msgid "Where:"
1666
+ msgstr "Where:"
1667
+
1668
+ #: app/view/event/content.php:125
1669
+ msgid "Calendar"
1670
+ msgstr ""
1671
+
1672
+ #: app/view/event/content.php:126
1673
+ msgid "View all events"
1674
+ msgstr "View all events"
1675
+
1676
+ #: app/view/event/location.php:96
1677
+ msgid "Click to view map"
1678
+ msgstr "Click to view map"
1679
+
1680
+ #: app/view/event/location.php:97
1681
+ msgid "View Full-Size Map"
1682
+ msgstr "View Full-Size Map"
1683
+
1684
+ #: app/view/event/post.php:29
1685
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1686
+ msgstr "Event updated. <a href=\"%s\">View event</a>"
1687
+
1688
+ #: app/view/event/post.php:32
1689
+ msgid "Custom field updated."
1690
+ msgstr "Custom field updated."
1691
+
1692
+ #: app/view/event/post.php:33
1693
+ msgid "Custom field deleted."
1694
+ msgstr "Custom field deleted."
1695
+
1696
+ #: app/view/event/post.php:34
1697
+ msgid "Event updated."
1698
+ msgstr "Event updated."
1699
+
1700
+ #. translators: %s: date and time of the revision
1701
+ #: app/view/event/post.php:38
1702
+ msgid "Event restored to revision from %s"
1703
+ msgstr "Event restored to revision from %s"
1704
+
1705
+ #: app/view/event/post.php:43
1706
+ msgid "Event published. <a href=\"%s\">View event</a>"
1707
+ msgstr "Event published. <a href=\"%s\">View event</a>"
1708
+
1709
+ #: app/view/event/post.php:46
1710
+ msgid "Event saved."
1711
+ msgstr "Event saved."
1712
+
1713
+ #: app/view/event/post.php:48
1714
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
+ msgstr "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1716
+
1717
+ #: app/view/event/post.php:52
1718
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
+ msgstr "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1720
+
1721
+ #. translators: Publish box date format, see http:php.net/date
1722
+ #: app/view/event/post.php:54
1723
+ msgid "M j, Y @ G:i"
1724
+ msgstr "jS M, Y @ G:i"
1725
+
1726
+ #: app/view/event/post.php:58
1727
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
+ msgstr "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1729
+
1730
+ #: app/view/event/single.php:78
1731
+ msgid "Event was created in the %s time zone"
1732
+ msgstr ""
1733
+
1734
+ #: app/view/event/single.php:114
1735
+ msgid "Add to Calendar"
1736
+ msgstr "Add to Calendar"
1737
+
1738
+ #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
+ msgid "Cost:"
1740
+ msgstr "Cost:"
1741
+
1742
+ #: app/view/event/single.php:122
1743
+ msgid "Contact:"
1744
+ msgstr "Contact:"
1745
+
1746
+ #: app/view/calendar/view/agenda.php:169
1747
+ msgid "Categories:"
1748
+ msgstr "Categories:"
1749
+
1750
+ #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
+ #: public/admin/themes.php:29
1752
+ msgid "Tags:"
1753
+ msgstr "Tags:"
1754
+
1755
+ #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
+ #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
+ #: app/view/calendar/widget.php:374
1758
+ msgid "@ %s"
1759
+ msgstr "@ %s"
1760
+
1761
+ #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
+ msgid "g a"
1763
+ msgstr "g a"
1764
+
1765
+ #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
+ msgid "Reveal full day"
1767
+ msgstr "Reveal full day"
1768
+
1769
+ #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
+ msgid "All-day"
1771
+ msgstr "All-day"
1772
+
1773
+ #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
+ msgid "Now:"
1775
+ msgstr "Now:"
1776
+
1777
+ #: app/view/calendar/view/week.php:67
1778
+ msgid "Week of %s"
1779
+ msgstr "Week of %s"
1780
+
1781
+ #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
+ msgid "Upcoming Events"
1783
+ msgstr "Upcoming Events"
1784
+
1785
+ #: app/view/calendar/widget.php:38
1786
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
+ msgstr "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1788
+
1789
+ #: app/view/calendar/widget.php:80
1790
+ msgid "Choose how to limit the upcoming events"
1791
+ msgstr ""
1792
+
1793
+ #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
+ msgid "Events"
1795
+ msgstr "Events"
1796
+
1797
+ #: app/view/calendar/widget.php:93
1798
+ msgid "Days"
1799
+ msgstr ""
1800
+
1801
+ #: app/view/calendar/widget.php:106
1802
+ msgid "Number of events to show"
1803
+ msgstr ""
1804
+
1805
+ #: app/view/calendar/widget.php:115
1806
+ msgid "Number of days to show"
1807
+ msgstr ""
1808
+
1809
+ #: app/view/calendar/widget.php:124
1810
+ msgid "Show events filtered for the following tags/categories"
1811
+ msgstr ""
1812
+
1813
+ #: app/view/calendar/widget.php:141
1814
+ msgid "Show the subscribe button in the widget"
1815
+ msgstr ""
1816
+
1817
+ #: app/view/calendar/widget.php:370
1818
+ msgid "There are no upcoming events."
1819
+ msgstr "There are no upcoming events."
1820
+
1821
+ #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
+ msgid "all-day"
1823
+ msgstr "all-day"
1824
+
1825
+ #: app/view/calendar/widget.php:372
1826
+ msgid "View Calendar"
1827
+ msgstr "View Calendar"
1828
+
1829
+ #: app/view/calendar/widget.php:375
1830
+ msgid "Add"
1831
+ msgstr "Add"
1832
+
1833
+ #: app/view/calendar/page.php:260
1834
+ msgid "Subscribe to filtered calendar"
1835
+ msgstr "Subscribe to filtered calendar"
1836
+
1837
+ #: app/view/calendar/page.php:261
1838
+ msgid "Subscribe"
1839
+ msgstr "Subscribe"
1840
+
1841
+ #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
+ msgid "Get a Timely Calendar"
1843
+ msgstr ""
1844
+
1845
+ #: app/view/calendar/subscribe-button.php:22
1846
+ msgid "Add to Timely Calendar"
1847
+ msgstr "Add to Timely Calendar"
1848
+
1849
+ #: app/view/calendar/subscribe-button.php:23
1850
+ msgid "Add to Google"
1851
+ msgstr "Add to Google"
1852
+
1853
+ #: app/view/calendar/subscribe-button.php:24
1854
+ msgid "Add to Outlook"
1855
+ msgstr "Add to Outlook"
1856
+
1857
+ #: app/view/calendar/subscribe-button.php:25
1858
+ msgid "Add to Apple Calendar"
1859
+ msgstr "Add to Apple Calendar"
1860
+
1861
+ #: app/view/calendar/subscribe-button.php:26
1862
+ msgid "Add to other calendar"
1863
+ msgstr "Add to other calendar"
1864
+
1865
+ #: app/view/calendar/subscribe-button.php:29
1866
+ msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
+ msgstr "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1868
+
1869
+ #: app/view/calendar/subscribe-button.php:30
1870
+ msgid "Subscribe to this calendar in your Google Calendar"
1871
+ msgstr "Subscribe to this calendar in your Google Calendar"
1872
+
1873
+ #: app/view/calendar/subscribe-button.php:31
1874
+ msgid "Subscribe to this calendar in MS Outlook"
1875
+ msgstr "Subscribe to this calendar in MS Outlook"
1876
+
1877
+ #: app/view/calendar/subscribe-button.php:32
1878
+ msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
+ msgstr "Subscribe to this calendar in Apple Calendar/iCal"
1880
+
1881
+ #: app/view/calendar/subscribe-button.php:33
1882
+ msgid "Subscribe to this calendar in another plain-text calendar"
1883
+ msgstr "Subscribe to this calendar in another plain-text calendar"
1884
+
1885
+ #: app/view/calendar/taxonomy.php:97
1886
+ msgid "Clear category filter"
1887
+ msgstr "Clear category filter"
1888
+
1889
+ #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
+ #: lib/html/element/setting/tags-categories.php:47
1891
+ msgid "Categories"
1892
+ msgstr "Categories"
1893
+
1894
+ #: app/view/calendar/taxonomy.php:99
1895
+ msgid "Clear tag filter"
1896
+ msgstr "Clear tag filter"
1897
+
1898
+ #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
+ #: lib/html/element/setting/tags-categories.php:39
1900
+ msgid "Tags"
1901
+ msgstr "Tags"
1902
+
1903
+ #: app/view/calendar/view/agenda.php:142
1904
+ msgid "Collapse All"
1905
+ msgstr "Collapse All"
1906
+
1907
+ #: app/view/calendar/view/agenda.php:143
1908
+ msgid "Expand All"
1909
+ msgstr "Expand All"
1910
+
1911
+ #: app/view/calendar/view/agenda.php:166
1912
+ msgid "There are no upcoming events to display at this time."
1913
+ msgstr "There are no upcoming events to display at this time."
1914
+
1915
+ #: app/view/calendar/view/agenda.php:168
1916
+ msgid "Read more"
1917
+ msgstr "Read more"
1918
+
1919
+ #: app/view/admin/tickets.php:86
1920
+ msgid "Sales"
1921
+ msgstr ""
1922
+
1923
+ #: app/view/admin/tickets.php:87
1924
+ msgid "How do you want the tickets revenue to be sent to you?"
1925
+ msgstr ""
1926
+
1927
+ #: app/view/admin/tickets.php:88
1928
+ msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
+ msgstr ""
1930
+
1931
+ #: app/view/admin/tickets.php:91
1932
+ msgid "Cheque"
1933
+ msgstr ""
1934
+
1935
+ #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
+ msgid "Paypal"
1937
+ msgstr "Paypal"
1938
+
1939
+ #: app/view/admin/tickets.php:94
1940
+ msgid "Save Changes"
1941
+ msgstr ""
1942
+
1943
+ #: app/view/admin/tickets.php:95
1944
+ msgid "Date"
1945
+ msgstr ""
1946
+
1947
+ #: app/view/admin/tickets.php:96
1948
+ msgid "Event"
1949
+ msgstr ""
1950
+
1951
+ #: app/view/admin/tickets.php:97
1952
+ msgid "Purchaser"
1953
+ msgstr ""
1954
+
1955
+ #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
+ #: public/admin/box_event_cost.php:35
1957
+ msgid "Tickets"
1958
+ msgstr "Tickets"
1959
+
1960
+ #: app/view/admin/tickets.php:101
1961
+ msgid "Total"
1962
+ msgstr ""
1963
+
1964
+ #: app/view/admin/tickets.php:102
1965
+ msgid "Sign Out"
1966
+ msgstr ""
1967
+
1968
+ #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
+ #: app/view/admin/widget-creator.php:47
1970
+ msgid "Widget Creator"
1971
+ msgstr ""
1972
+
1973
+ #: app/view/admin/widget-creator.php:74
1974
+ msgctxt "meta box"
1975
+ msgid "Widget Creator"
1976
+ msgstr ""
1977
+
1978
+ #: app/view/admin/widget-creator.php:131
1979
+ msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
+ msgstr ""
1981
+
1982
+ #: app/view/admin/widget-creator.php:132
1983
+ msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
+ msgstr ""
1985
+
1986
+ #: app/view/admin/widget-creator.php:134
1987
+ msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
+ msgstr ""
1989
+
1990
+ #: app/view/admin/widget-creator.php:140
1991
+ msgid "Paste this code onto your site:"
1992
+ msgstr ""
1993
+
1994
+ #: app/view/admin/widget-creator.php:141
1995
+ msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
+ msgstr ""
1997
+
1998
+ #: app/view/calendar/page.php:54
1999
+ msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
+ msgstr "There was an error loading the calendar. Please contact site administrator and inform him to configure calendar views."
2001
+
2002
+ #: app/view/calendar/page.php:74
2003
+ msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
+ msgstr ""
2005
+
2006
+ #: app/view/admin/settings.php:193
2007
+ msgid "Phone Number:"
2008
+ msgstr ""
2009
+
2010
+ #: app/view/admin/settings.php:194
2011
+ msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
+ msgstr ""
2013
+
2014
+ #: app/view/admin/settings.php:197
2015
+ msgid "Sign Up"
2016
+ msgstr ""
2017
+
2018
+ #: app/view/admin/settings.php:198
2019
+ msgid "Sign In"
2020
+ msgstr ""
2021
+
2022
+ #: app/view/admin/settings.php:212
2023
+ msgid "Save Settings"
2024
+ msgstr "Save Settings"
2025
+
2026
+ #: app/view/admin/settings.php:219
2027
+ msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
+ msgstr "If the form below is not working please follow <a href=\"%s\">this link</a>."
2029
+
2030
+ #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
+ msgid "Theme Options"
2032
+ msgstr "Theme Options"
2033
+
2034
+ #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
+ msgid "Calendar Theme Options"
2036
+ msgstr "Calendar Theme Options"
2037
+
2038
+ #: app/view/admin/theme-options.php:79
2039
+ msgctxt "meta box"
2040
+ msgid "Calendar Theme Options"
2041
+ msgstr "Calendar Theme Options"
2042
+
2043
+ #: app/view/admin/theme-options.php:133
2044
+ msgid "General"
2045
+ msgstr "General"
2046
+
2047
+ #: app/view/admin/theme-options.php:136
2048
+ msgid "Tables"
2049
+ msgstr "Tables"
2050
+
2051
+ #: app/view/admin/theme-options.php:139
2052
+ msgid "Buttons"
2053
+ msgstr "Buttons"
2054
+
2055
+ #: app/view/admin/theme-options.php:142
2056
+ msgid "Forms"
2057
+ msgstr "Forms"
2058
+
2059
+ #: app/view/admin/theme-options.php:145
2060
+ msgid "Calendar general"
2061
+ msgstr "Calendar general"
2062
+
2063
+ #: app/view/admin/theme-options.php:148
2064
+ msgid "Month/week/day view"
2065
+ msgstr "Month/week/day view"
2066
+
2067
+ #: app/view/admin/theme-options.php:151
2068
+ msgid "Agenda view"
2069
+ msgstr "Agenda view"
2070
+
2071
+ #: app/view/admin/theme-options.php:169
2072
+ msgid "Save Options"
2073
+ msgstr "Save Options"
2074
+
2075
+ #: app/view/admin/theme-options.php:177
2076
+ msgid "Reset to Defaults"
2077
+ msgstr "Reset to Defaults"
2078
+
2079
+ #: app/view/admin/theme-switching.php:31
2080
+ msgid "All-in-One Event Calendar: Themes"
2081
+ msgstr "All-in-One Event Calendar: Themes"
2082
+
2083
+ #: app/view/admin/tickets.php:36
2084
+ msgid "Ticketing"
2085
+ msgstr ""
2086
+
2087
+ #: app/view/admin/tickets.php:37
2088
+ msgid "Ticketing<sup>beta</sup>"
2089
+ msgstr ""
2090
+
2091
+ #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
+ msgid "Time.ly Ticketing<sup>beta</sup>"
2093
+ msgstr ""
2094
+
2095
+ #: app/view/admin/settings.php:98
2096
+ msgctxt "meta box"
2097
+ msgid "Timely"
2098
+ msgstr "Timely"
2099
+
2100
+ #: app/view/admin/settings.php:140
2101
+ msgid "Viewing Events"
2102
+ msgstr "Viewing Events"
2103
+
2104
+ #: app/view/admin/settings.php:143
2105
+ msgid "Adding/Editing Events"
2106
+ msgstr "Adding/Editing Events"
2107
+
2108
+ #: app/view/admin/settings.php:146
2109
+ msgid "Advanced"
2110
+ msgstr "Advanced"
2111
+
2112
+ #: app/view/admin/settings.php:148
2113
+ msgid "Advanced Settings"
2114
+ msgstr "Advanced Settings"
2115
+
2116
+ #: app/view/admin/settings.php:149
2117
+ msgid "Shortcodes"
2118
+ msgstr "Shortcodes"
2119
+
2120
+ #: app/view/admin/settings.php:150
2121
+ msgid "Email Templates"
2122
+ msgstr "Email Templates"
2123
+
2124
+ #: app/view/admin/settings.php:151
2125
+ msgid "External Services"
2126
+ msgstr "External Services"
2127
+
2128
+ #: app/view/admin/settings.php:152
2129
+ msgid "Cache Report"
2130
+ msgstr "Cache Report"
2131
+
2132
+ #: app/view/admin/settings.php:171
2133
+ msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
+ msgstr ""
2135
+
2136
+ #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
+ #: public/admin/box_ask_customer_review.php:112
2138
+ #: public/admin/box_ask_customer_review.php:126
2139
+ #: public/admin/box_ask_customer_review.php:140
2140
+ #: public/admin/box_ask_customer_review.php:158
2141
+ #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
+ msgid "This field is required."
2143
+ msgstr ""
2144
+
2145
+ #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
+ msgid "Register"
2147
+ msgstr "Register"
2148
+
2149
+ #: app/view/admin/settings.php:184
2150
+ msgid "Sign in"
2151
+ msgstr ""
2152
+
2153
+ #: app/view/admin/settings.php:185
2154
+ msgid "You are successfully signed in to <b>Timely Network</b>."
2155
+ msgstr ""
2156
+
2157
+ #: app/view/admin/settings.php:186
2158
+ msgid "Sign out"
2159
+ msgstr ""
2160
+
2161
+ #: app/view/admin/settings.php:187
2162
+ msgid "Hide form"
2163
+ msgstr ""
2164
+
2165
+ #: app/view/admin/settings.php:188
2166
+ msgid "Show form"
2167
+ msgstr ""
2168
+
2169
+ #: app/view/admin/settings.php:189
2170
+ msgid "Full Name:"
2171
+ msgstr ""
2172
+
2173
+ #: app/view/admin/settings.php:190
2174
+ msgid "Email:"
2175
+ msgstr ""
2176
+
2177
+ #: app/view/admin/settings.php:191
2178
+ msgid "Password:"
2179
+ msgstr ""
2180
+
2181
+ #: app/view/admin/settings.php:192
2182
+ msgid "Confirm Password:"
2183
+ msgstr ""
2184
+
2185
+ #: app/view/admin/get-repeat-box.php:483
2186
+ msgid "fourth"
2187
+ msgstr "fourth"
2188
+
2189
+ #: app/view/admin/get-repeat-box.php:495
2190
+ msgid "Sunday"
2191
+ msgstr "Sunday"
2192
+
2193
+ #: app/view/admin/get-repeat-box.php:496
2194
+ msgid "Monday"
2195
+ msgstr "Monday"
2196
+
2197
+ #: app/view/admin/get-repeat-box.php:497
2198
+ msgid "Tuesday"
2199
+ msgstr "Tuesday"
2200
+
2201
+ #: app/view/admin/get-repeat-box.php:498
2202
+ msgid "Wednesday"
2203
+ msgstr "Wednesday"
2204
+
2205
+ #: app/view/admin/get-repeat-box.php:499
2206
+ msgid "Thursday"
2207
+ msgstr "Thursday"
2208
+
2209
+ #: app/view/admin/get-repeat-box.php:500
2210
+ msgid "Friday"
2211
+ msgstr "Friday"
2212
+
2213
+ #: app/view/admin/get-repeat-box.php:501
2214
+ msgid "Saturday"
2215
+ msgstr "Saturday"
2216
+
2217
+ #: app/view/admin/get-repeat-box.php:503
2218
+ msgid "day"
2219
+ msgstr "day"
2220
+
2221
+ #: app/view/admin/get-repeat-box.php:504
2222
+ msgid "weekday"
2223
+ msgstr "weekday"
2224
+
2225
+ #: app/view/admin/get-repeat-box.php:505
2226
+ msgid "weekend day"
2227
+ msgstr "weekend day"
2228
+
2229
+ #: app/view/admin/get-repeat-box.php:571
2230
+ msgid "year(s)"
2231
+ msgstr "year(s)"
2232
+
2233
+ #: app/view/admin/nav.php:22
2234
+ msgid "<a href=\"%s\">Settings</a>"
2235
+ msgstr "<a href=\"%s\">Settings</a>"
2236
+
2237
+ #: app/view/admin/nav.php:28
2238
+ msgid "<a href=\"%s\">Check for updates</a>"
2239
+ msgstr ""
2240
+
2241
+ #: app/view/admin/organize.php:100
2242
+ msgid "Organize Events"
2243
+ msgstr ""
2244
+
2245
+ #: app/view/admin/settings.php:30
2246
+ msgid "All-in-One Event Calendar: Settings"
2247
+ msgstr "All-in-One Event Calendar: Settings"
2248
+
2249
+ #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
+ #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
+ msgid "Settings"
2252
+ msgstr "Settings"
2253
+
2254
+ #: app/view/admin/settings.php:89
2255
+ msgctxt "meta box"
2256
+ msgid "General Settings"
2257
+ msgstr "General Settings"
2258
+
2259
+ #: app/view/admin/get-repeat-box.php:480
2260
+ msgid "first"
2261
+ msgstr "first"
2262
+
2263
+ #: app/view/admin/get-repeat-box.php:481
2264
+ msgid "second"
2265
+ msgstr "second"
2266
+
2267
+ #: app/view/admin/get-repeat-box.php:482
2268
+ msgid "third"
2269
+ msgstr "third"
2270
+
2271
+ #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
+ msgid "Import Feeds"
2273
+ msgstr ""
2274
+
2275
+ #: app/view/admin/calendar-feeds.php:48
2276
+ msgctxt "meta box"
2277
+ msgid "Feed Subscriptions"
2278
+ msgstr "Feed Subscriptions"
2279
+
2280
+ #: app/view/admin/calendar-feeds.php:65
2281
+ msgid "All-in-One Event Calendar: Import Feeds"
2282
+ msgstr ""
2283
+
2284
+ #: app/view/admin/event-category.php:30
2285
+ msgid "Color"
2286
+ msgstr "Colour"
2287
+
2288
+ #: app/view/admin/event-category.php:32
2289
+ msgid "Image"
2290
+ msgstr "Image"
2291
+
2292
+ #: app/view/admin/event-category.php:155
2293
+ msgid "Category Color"
2294
+ msgstr "Category Colour"
2295
+
2296
+ #: app/view/admin/event-category.php:156
2297
+ msgid "Events in this category will be identified by this color"
2298
+ msgstr "Events in this category will be identified by this colour"
2299
+
2300
+ #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
+ msgid "Category Image"
2302
+ msgstr "Category Image"
2303
+
2304
+ #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
+ msgid "Add Image"
2306
+ msgstr "Add Image"
2307
+
2308
+ #: app/view/admin/event-category.php:195
2309
+ msgid "Remove Image"
2310
+ msgstr "Remove Image"
2311
+
2312
+ #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
+ msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
+ msgstr "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2315
+
2316
+ #: app/view/admin/get-repeat-box.php:94
2317
+ msgid "times"
2318
+ msgstr "times"
2319
+
2320
+ #: app/view/admin/get-repeat-box.php:164
2321
+ msgid "Recurrence rule cannot be empty."
2322
+ msgstr "Recurrence rule cannot be empty."
2323
+
2324
+ #: app/view/admin/get-repeat-box.php:182
2325
+ msgid "Recurrence rule was not provided."
2326
+ msgstr "Recurrence rule was not provided."
2327
+
2328
+ #: app/view/admin/get-repeat-box.php:209
2329
+ msgid "Never"
2330
+ msgstr "Never"
2331
+
2332
+ #: app/view/admin/get-repeat-box.php:210
2333
+ msgid "After"
2334
+ msgstr "After"
2335
+
2336
+ #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
+ msgid "On date"
2338
+ msgstr "On date"
2339
+
2340
+ #: app/view/admin/get-repeat-box.php:247
2341
+ msgid "day(s)"
2342
+ msgstr "day(s)"
2343
+
2344
+ #: app/view/admin/get-repeat-box.php:330
2345
+ msgid "week(s)"
2346
+ msgstr "week(s)"
2347
+
2348
+ #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
+ #: lib/recurrence/rule.php:298
2350
+ msgid "last"
2351
+ msgstr "last"
2352
+
2353
+ #: app/view/admin/get-repeat-box.php:426
2354
+ msgid "month(s)"
2355
+ msgstr "month(s)"
2356
+
2357
+ #: app/model/settings.php:929
2358
+ msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
+ msgstr "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2360
+
2361
+ #: app/model/settings.php:932
2362
+ msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
+ msgstr "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2364
+
2365
+ #: app/model/settings.php:944
2366
+ msgid "Current <strong>robots.txt</strong> on this site"
2367
+ msgstr "Current <strong>robots.txt</strong> on this site"
2368
+
2369
+ #: app/model/settings.php:948
2370
+ msgid ""
2371
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
+ "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
+ "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
+ "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
+ "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
+ msgstr ""
2377
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2378
+ "→\t→\t→\t→\t→\t→\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2379
+ "→\t→\t→\t→\t→\t→\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2380
+ "→\t→\t→\t→\t→\t→\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2381
+ "→\t→\t→\t→\t→\t→\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2382
+
2383
+ #: app/model/settings.php:965
2384
+ msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2385
+ msgstr "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2386
+
2387
+ #: app/model/settings.php:988
2388
+ msgid "Templates cache improves site performance"
2389
+ msgstr "Templates cache improves site performance"
2390
+
2391
+ #: app/model/settings.php:1001
2392
+ msgid "Display events in <strong>calendar time zone</strong>"
2393
+ msgstr ""
2394
+
2395
+ #: app/model/settings.php:1004
2396
+ msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
+ msgstr ""
2398
+
2399
+ #: app/view/admin/add-new-event.php:26
2400
+ msgid "Event Details"
2401
+ msgstr "Event Details"
2402
+
2403
+ #: app/view/admin/add-new-event.php:423
2404
+ msgid "Set banner image"
2405
+ msgstr ""
2406
+
2407
+ #: app/view/admin/add-new-event.php:424
2408
+ msgid "Remove banner image"
2409
+ msgstr ""
2410
+
2411
+ #: app/view/admin/add-ons.php:68
2412
+ msgid "Add-ons for All In One Event Calendar"
2413
+ msgstr ""
2414
+
2415
+ #: app/view/admin/add-ons.php:71
2416
+ msgid "Browse All Extensions"
2417
+ msgstr ""
2418
+
2419
+ #: app/view/admin/add-ons.php:74
2420
+ msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
+ msgstr ""
2422
+
2423
+ #: app/view/admin/add-ons.php:77
2424
+ msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
+ msgstr ""
2426
+
2427
+ #: app/view/admin/all-events.php:16
2428
+ msgid "Author"
2429
+ msgstr "Author"
2430
+
2431
+ #: app/view/admin/all-events.php:17
2432
+ msgid "Post Date"
2433
+ msgstr "Post Date"
2434
+
2435
+ #: app/view/admin/all-events.php:18
2436
+ msgid "Event date/time"
2437
+ msgstr "Event date/time"
2438
+
2439
+ #: app/view/admin/all-events.php:22
2440
+ msgid "Ticket Types"
2441
+ msgstr ""
2442
+
2443
+ #: app/view/admin/all-events.php:134
2444
+ msgid "Show All "
2445
+ msgstr "Show All "
2446
+
2447
+ #: app/view/admin/all-events.php:147
2448
+ msgid "Show All Authors"
2449
+ msgstr ""
2450
+
2451
+ #: app/model/settings.php:746
2452
+ msgid "Strict compatibility content filtering"
2453
+ msgstr "Strict compatibility content filtering"
2454
+
2455
+ #: app/model/settings.php:758
2456
+ msgid " <strong>Hide featured image</strong> from event details page"
2457
+ msgstr " <strong>Hide featured image</strong> from event details page"
2458
+
2459
+ #: app/model/settings.php:761
2460
+ msgid "Select this option if your theme already displays each post's featured image."
2461
+ msgstr "Select this option if your theme already displays each post's featured image."
2462
+
2463
+ #: app/model/settings.php:772
2464
+ msgid "Input dates in this format"
2465
+ msgstr "Input dates in this format"
2466
+
2467
+ #: app/model/settings.php:777
2468
+ msgid "Default (d/m/yyyy)"
2469
+ msgstr "Default (d/m/yyyy)"
2470
+
2471
+ #: app/model/settings.php:781
2472
+ msgid "US (m/d/yyyy)"
2473
+ msgstr "US (m/d/yyyy)"
2474
+
2475
+ #: app/model/settings.php:785
2476
+ msgid "ISO 8601 (yyyy-m-d)"
2477
+ msgstr "ISO 8601 (yyyy-m-d)"
2478
+
2479
+ #: app/model/settings.php:789
2480
+ msgid "Dotted (m.d.yyyy)"
2481
+ msgstr "Dotted (m.d.yyyy)"
2482
+
2483
+ #: app/model/settings.php:801
2484
+ msgid " Use <strong>24h time</strong> in time pickers"
2485
+ msgstr " Use <strong>24h time</strong> in time pickers"
2486
+
2487
+ #: app/model/settings.php:812
2488
+ msgid "<strong>Disable address autocomplete</strong> function"
2489
+ msgstr "<strong>Disable address autocomplete</strong> function"
2490
+
2491
+ #: app/model/settings.php:823
2492
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2493
+ msgstr "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2494
+
2495
+ #: app/model/settings.php:839
2496
+ msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2497
+ msgstr " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2498
+
2499
+ #: app/model/settings.php:842
2500
+ msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2501
+ msgstr "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2502
+
2503
+ #: app/model/settings.php:863
2504
+ msgid "Move calendar into this DOM element"
2505
+ msgstr "Move calendar into this DOM element"
2506
+
2507
+ #: app/model/settings.php:865
2508
+ msgid ""
2509
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2510
+ "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2511
+ "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2512
+ "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2513
+ "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2514
+ "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2515
+ "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2516
+ "\t\t\t\t\t\tby the calendar."
2517
+ msgstr ""
2518
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2519
+ "→\t→\t→\t→\t→\t→\tcalendar a DOM element other than the usual page content container\n"
2520
+ "→\t→\t→\t→\t→\t→\tif you are unable to create an appropriate page template\n"
2521
+ "→\t→\t→\t→\t→\t→\t for the calendar page. To use, enter a\n"
2522
+ "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2523
+ "→\t→\t→\t→\t→\t→\tjQuery selector</a> that evaluates to a single DOM element.\n"
2524
+ "→\t→\t→\t→\t→\t→\tAny existing markup found within the target will be replaced\n"
2525
+ "→\t→\t→\t→\t→\t→\tby the calendar."
2526
+
2527
+ #: app/model/settings.php:884
2528
+ msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2529
+ msgstr "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2530
+
2531
+ #: app/model/settings.php:887
2532
+ msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2533
+ msgstr "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2534
+
2535
+ #: app/model/settings.php:899
2536
+ msgid "Disable <strong>gzip</strong> compression."
2537
+ msgstr "Disable <strong>gzip</strong> compression."
2538
+
2539
+ #: app/model/settings.php:902
2540
+ msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2541
+ msgstr "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2542
+
2543
+ #: app/model/settings.php:914
2544
+ msgid "Use frontend rendering."
2545
+ msgstr ""
2546
+
2547
+ #: app/model/settings.php:917
2548
+ msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
+ msgstr ""
2550
+
2551
+ #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
+ msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
+ msgstr "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2554
+
2555
+ #: app/model/settings.php:508
2556
+ msgid "Default calendar start date (optional)"
2557
+ msgstr "Default calendar start date (optional)"
2558
+
2559
+ #: app/model/settings.php:519
2560
+ msgid "Agenda pages show at most"
2561
+ msgstr "Agenda pages show at most"
2562
+
2563
+ #: app/model/settings.php:532
2564
+ msgid "Week/Day view starts at"
2565
+ msgstr "Week/Day view starts at"
2566
+
2567
+ #: app/model/settings.php:545
2568
+ msgid "Week/Day view ends at"
2569
+ msgstr "Week/Day view ends at"
2570
+
2571
+ #: app/model/settings.php:558
2572
+ msgid "<strong>Word-wrap event stubs</strong> in Month view"
2573
+ msgstr "<strong>Word-wrap event stubs</strong> in Month view"
2574
+
2575
+ #: app/model/settings.php:561
2576
+ msgid "Only applies to events that span a single day."
2577
+ msgstr "Only applies to events that span a single day."
2578
+
2579
+ #: app/model/settings.php:573
2580
+ msgid ""
2581
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2582
+ "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2583
+ "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2584
+ "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2585
+ "\t\t\t\t\t\tfrom last day shown</strong>"
2586
+ msgstr ""
2587
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2588
+ "→\t→\t→\t→\t→\t→\tdata-original-title=\"These include Agenda view,\n"
2589
+ "→\t→\t→\t→\t→\t→\tthe Upcoming Events widget, and some extended views.\">\n"
2590
+ "→\t→\t→\t→\t→\t→\tAgenda-like views</span>, <strong>include all events\n"
2591
+ "→\t→\t→\t→\t→\t→\tfrom last day shown</strong>"
2592
+
2593
+ #: app/model/settings.php:589
2594
+ msgid "Keep all events <strong>expanded</strong> in Agenda view"
2595
+ msgstr "Keep all events <strong>expanded</strong> in Agenda view"
2596
+
2597
+ #: app/model/settings.php:601
2598
+ msgid "<strong>Show year</strong> in calendar date labels"
2599
+ msgstr "<strong>Show year</strong> in calendar date labels"
2600
+
2601
+ #: app/model/settings.php:613
2602
+ msgid "<strong>Show location in event titles</strong> in calendar views"
2603
+ msgstr "<strong>Show location in event titles</strong> in calendar views"
2604
+
2605
+ #: app/model/settings.php:625
2606
+ msgid "<strong>Exclude</strong> events from search results"
2607
+ msgstr "<strong>Exclude</strong> events from search results"
2608
+
2609
+ #: app/model/settings.php:637
2610
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2611
+ msgstr "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2612
+
2613
+ #: app/model/settings.php:649
2614
+ msgid "Hide <strong>Get a Timely Calendar</strong> button"
2615
+ msgstr ""
2616
+
2617
+ #: app/model/settings.php:661
2618
+ msgid " Hide <strong>Google Maps</strong> until clicked"
2619
+ msgstr " Hide <strong>Google Maps</strong> until clicked"
2620
+
2621
+ #: app/model/settings.php:673
2622
+ msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2623
+ msgstr " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2624
+
2625
+ #: app/model/settings.php:676
2626
+ msgid "Only applies to first visible calendar found on the page."
2627
+ msgstr ""
2628
+
2629
+ #: app/model/settings.php:688
2630
+ msgid "Offset affixed filter bar vertically by"
2631
+ msgstr "Offset affixed filter bar vertically by"
2632
+
2633
+ #: app/model/settings.php:703
2634
+ msgid "Wide screens only (&#8805; 1200px)"
2635
+ msgstr "Wide screens only (&#8805; 1200px)"
2636
+
2637
+ #: app/model/settings.php:718
2638
+ msgid "Tablets only (< 980px)"
2639
+ msgstr "Tablets only (< 980px)"
2640
+
2641
+ #: app/model/settings.php:733
2642
+ msgid "Phones only (< 768px)"
2643
+ msgstr "Phones only (< 768px)"
2644
+
2645
+ #: app/model/api.php:456
2646
+ msgid "Not available"
2647
+ msgstr ""
2648
+
2649
+ #: app/model/api.php:659
2650
+ msgid "%s.<br/>Detail: %s."
2651
+ msgstr ""
2652
+
2653
+ #: app/model/api.php:664
2654
+ msgid "API URL: %s.<br/>Detail: %s - %s"
2655
+ msgstr ""
2656
+
2657
+ #: app/model/api.php:672
2658
+ msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2659
+ msgstr ""
2660
+
2661
+ #: app/model/api.php:679
2662
+ msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2663
+ msgstr ""
2664
+
2665
+ #: app/model/event/parent.php:186
2666
+ msgid "Edit &#8220;%s&#8221;"
2667
+ msgstr "Edit &#8220;%s&#8221;"
2668
+
2669
+ #: app/model/event/parent.php:193
2670
+ msgid "Base Event"
2671
+ msgstr "Base Event"
2672
+
2673
+ #: app/model/review.php:169
2674
+ msgid "Feedback provided by user"
2675
+ msgstr ""
2676
+
2677
+ #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2678
+ msgid "Name"
2679
+ msgstr "Name"
2680
+
2681
+ #: app/model/review.php:173
2682
+ msgid "E-mail"
2683
+ msgstr ""
2684
+
2685
+ #: app/model/review.php:175
2686
+ msgid "Site URL"
2687
+ msgstr ""
2688
+
2689
+ #: app/model/review.php:177
2690
+ msgid "Message"
2691
+ msgstr ""
2692
+
2693
+ #: app/model/settings.php:401
2694
+ #: lib/html/element/setting/calendar-page-selector.php:50
2695
+ msgid "Calendar page"
2696
+ msgstr "Calendar page"
2697
+
2698
+ #: app/model/settings.php:411
2699
+ msgid "Week starts on"
2700
+ msgstr "Week starts on"
2701
+
2702
+ #: app/model/settings.php:424
2703
+ msgid "Available views"
2704
+ msgstr "Available views"
2705
+
2706
+ #: app/model/settings.php:432
2707
+ msgid "Agenda"
2708
+ msgid_plural "Agenda"
2709
+ msgstr[0] "Agenda"
2710
+ msgstr[1] ""
2711
+
2712
+ #: app/model/settings.php:443
2713
+ msgid "Day"
2714
+ msgid_plural "Day"
2715
+ msgstr[0] "Day"
2716
+ msgstr[1] ""
2717
+
2718
+ #: app/model/settings.php:454
2719
+ msgid "Month"
2720
+ msgid_plural "Month"
2721
+ msgstr[0] "Month"
2722
+ msgstr[1] ""
2723
+
2724
+ #: app/model/settings.php:465
2725
+ msgid "Week"
2726
+ msgid_plural "Week"
2727
+ msgstr[0] "Week"
2728
+ msgstr[1] ""
2729
+
2730
+ #: app/model/settings.php:479
2731
+ msgid "Timezone"
2732
+ msgstr "Timezone"
2733
+
2734
+ #: app/model/settings.php:492
2735
+ msgid "Preselected calendar filters"
2736
+ msgstr "Preselected calendar filters"
2737
+
2738
+ #: app/controller/javascript.php:509
2739
+ msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2740
+ msgstr ""
2741
+
2742
+ #: app/controller/javascript.php:516
2743
+ msgid "The end date can't be earlier than the start date."
2744
+ msgstr ""
2745
+
2746
+ #: app/controller/javascript.php:517
2747
+ msgid "For week and day view, you must select an interval of at least 6 hours."
2748
+ msgstr ""
2749
+
2750
+ #: app/model/api.php:40
2751
+ msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2752
+ msgstr ""
2753
+
2754
+ #: app/model/api.php:41
2755
+ msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2756
+ msgstr ""
2757
+
2758
+ #: app/model/api.php:42
2759
+ msgid "We were unable to Sign you Up for Time.ly Ticketing"
2760
+ msgstr ""
2761
+
2762
+ #: app/model/api.php:43
2763
+ msgid "We were unable to Sign you In for Time.ly Ticketing"
2764
+ msgstr ""
2765
+
2766
+ #: app/model/api.php:44
2767
+ msgid "We were unable to create the Event on Time.ly Ticketing"
2768
+ msgstr ""
2769
+
2770
+ #: app/model/api.php:45
2771
+ msgid "We were unable to update the Event on Time.ly Ticketing"
2772
+ msgstr ""
2773
+
2774
+ #: app/model/api.php:46
2775
+ msgid "The event has the option Tickets selected but any ticket was added."
2776
+ msgstr ""
2777
+
2778
+ #: app/model/api.php:47
2779
+ msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2780
+ msgstr ""
2781
+
2782
+ #: app/model/api.php:48
2783
+ msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2784
+ msgstr ""
2785
+
2786
+ #: app/model/api.php:49
2787
+ msgid "Payment preferences were not saved."
2788
+ msgstr ""
2789
+
2790
+ #: app/model/api.php:50
2791
+ msgid "Payment preferences were saved."
2792
+ msgstr ""
2793
+
2794
+ #: app/model/api.php:51
2795
+ msgid "Event not found inside the database."
2796
+ msgstr ""
2797
+
2798
+ #: app/model/api.php:52
2799
+ msgid "We were unable to get the Sales information from Time.ly Ticketing"
2800
+ msgstr ""
2801
+
2802
+ #: app/model/api.php:446
2803
+ msgid "Past Event"
2804
+ msgstr ""
2805
+
2806
+ #: app/model/api.php:448
2807
+ msgid "Event closed"
2808
+ msgstr ""
2809
+
2810
+ #: app/model/api.php:450
2811
+ msgid "Not available yet"
2812
+ msgstr ""
2813
+
2814
+ #: app/model/api.php:452
2815
+ msgid "Sale closed"
2816
+ msgstr ""
2817
+
2818
+ #: app/model/api.php:454
2819
+ msgid "Sold out"
2820
+ msgstr ""
2821
+
2822
+ #: app/controller/javascript.php:484
2823
+ msgid "Report"
2824
+ msgstr ""
2825
+
2826
+ #: app/controller/javascript.php:485
2827
+ msgid "Sale dates"
2828
+ msgstr ""
2829
+
2830
+ #: app/controller/javascript.php:486
2831
+ msgid "Limits"
2832
+ msgstr ""
2833
+
2834
+ #: app/controller/javascript.php:487
2835
+ msgid "Actions"
2836
+ msgstr ""
2837
+
2838
+ #: app/controller/javascript.php:488
2839
+ msgid "Sold:"
2840
+ msgstr ""
2841
+
2842
+ #: app/controller/javascript.php:489
2843
+ msgid "Left:"
2844
+ msgstr ""
2845
+
2846
+ #: app/controller/javascript.php:490
2847
+ msgid "Start:"
2848
+ msgstr ""
2849
+
2850
+ #: app/controller/javascript.php:491
2851
+ msgid "End:"
2852
+ msgstr ""
2853
+
2854
+ #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2855
+ msgid "Min:"
2856
+ msgstr ""
2857
+
2858
+ #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2859
+ msgid "Max:"
2860
+ msgstr ""
2861
+
2862
+ #: app/controller/javascript.php:494
2863
+ msgid "Attendees"
2864
+ msgstr ""
2865
+
2866
+ #: app/controller/javascript.php:495
2867
+ msgid "Hide Attendees"
2868
+ msgstr ""
2869
+
2870
+ #: app/controller/javascript.php:496
2871
+ msgid "Attendees List"
2872
+ msgstr ""
2873
+
2874
+ #: app/controller/javascript.php:497
2875
+ msgid "Guest Name"
2876
+ msgstr ""
2877
+
2878
+ #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2879
+ msgid "Status"
2880
+ msgstr ""
2881
+
2882
+ #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2883
+ #: app/view/event/ticket.php:71
2884
+ msgid "Email"
2885
+ msgstr "Email"
2886
+
2887
+ #: app/controller/javascript.php:500
2888
+ msgid "No attendees for this ticket type."
2889
+ msgstr ""
2890
+
2891
+ #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2892
+ #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2893
+ msgid "Edit"
2894
+ msgstr "Edit"
2895
+
2896
+ #: app/controller/javascript.php:502
2897
+ msgid "Code"
2898
+ msgstr ""
2899
+
2900
+ #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2901
+ msgid "Unlimited"
2902
+ msgstr ""
2903
+
2904
+ #: app/controller/javascript.php:506
2905
+ msgid "Your message has been sent. Thank you for your feedback."
2906
+ msgstr ""
2907
+
2908
+ #: app/controller/javascript.php:507
2909
+ msgid "Your message has not been sent. Please try again or contact us."
2910
+ msgstr ""
2911
+
2912
+ #: app/controller/javascript.php:405
2913
+ msgid "Please enter a valid iCalendar URL."
2914
+ msgstr "Please enter a valid iCalendar URL."
2915
+
2916
+ #: app/controller/javascript.php:408
2917
+ msgid "Please enter a valid email address."
2918
+ msgstr "Please enter a valid email address."
2919
+
2920
+ #: app/controller/javascript.php:410
2921
+ msgid "Choose Image"
2922
+ msgstr "Choose Image"
2923
+
2924
+ #: app/controller/javascript.php:413
2925
+ msgid "The value you have entered is not a valid CSS length."
2926
+ msgstr "The value you have entered is not a valid CSS length."
2927
+
2928
+ #: app/controller/javascript.php:416
2929
+ msgid "Are you sure you want to reset your theme options to their default values?"
2930
+ msgstr "Are you sure you want to reset your theme options to their default values?"
2931
+
2932
+ #: app/controller/javascript.php:419
2933
+ msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2934
+ msgstr "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2935
+
2936
+ #: app/controller/javascript.php:422
2937
+ msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2938
+ msgstr "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2939
+
2940
+ #: app/controller/javascript.php:425
2941
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2942
+ msgstr "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2943
+
2944
+ #: app/controller/javascript.php:428
2945
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2946
+ msgstr "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2947
+
2948
+ #: app/controller/javascript.php:431
2949
+ msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2950
+ msgstr ""
2951
+
2952
+ #: app/controller/javascript.php:434
2953
+ msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2954
+ msgstr "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2955
+
2956
+ #: app/controller/javascript.php:437
2957
+ msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2958
+ msgstr "Please remember that URLs must start with either \"http://\" or \"https://\"."
2959
+
2960
+ #: app/controller/javascript.php:440
2961
+ msgid "Loading&hellip;"
2962
+ msgstr ""
2963
+
2964
+ #: app/controller/javascript.php:443
2965
+ msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2966
+ msgstr ""
2967
+
2968
+ #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
+ msgid "Preview:"
2970
+ msgstr ""
2971
+
2972
+ #: app/controller/javascript.php:474
2973
+ msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2974
+ msgstr ""
2975
+
2976
+ #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2977
+ msgid "Ticketing Details"
2978
+ msgstr ""
2979
+
2980
+ #: app/controller/javascript.php:480
2981
+ msgid "Hide Ticketing Details"
2982
+ msgstr ""
2983
+
2984
+ #: app/controller/javascript.php:481
2985
+ msgid "Loading tickets details..."
2986
+ msgstr ""
2987
+
2988
+ #: app/controller/javascript.php:482
2989
+ msgid "Type and price"
2990
+ msgstr ""
2991
+
2992
+ #: app/controller/javascript.php:483
2993
+ msgid "Info"
2994
+ msgstr ""
2995
+
2996
+ #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2997
+ #: app/view/admin/add-ons.php:27
2998
+ msgid "Add-ons"
2999
+ msgstr "Add-ons"
3000
+
3001
+ #: app/controller/front.php:343
3002
+ msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3003
+ msgstr "Your active calendar theme could not be properly initialised. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3004
+
3005
+ #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3006
+ #: app/view/admin/theme-switching.php:55
3007
+ msgid "Calendar Themes"
3008
+ msgstr "Calendar Themes"
3009
+
3010
+ #: app/controller/front.php:990
3011
+ msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3012
+ msgstr "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3013
+
3014
+ #: app/controller/javascript-widget.php:48
3015
+ msgid "You must choose the Calendar page before using the Super Widget"
3016
+ msgstr ""
3017
+
3018
+ #: app/controller/javascript.php:402
3019
+ msgid "This feed is already being imported."
3020
+ msgstr "This feed is already being imported."
language/all-in-one-event-calendar-es.mo ADDED
Binary file
language/all-in-one-event-calendar-es.po ADDED
@@ -0,0 +1,3020 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of 2.3 in Spanish (Spain)
2
+ # This file is distributed under the same license as the 2.3 package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-01-21 20:43:00+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
+ "Project-Id-Version: 2.3\n"
12
+
13
+ #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
+ #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
+ msgid "Event background"
16
+ msgstr "Fondo de evento"
17
+
18
+ #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
+ #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
+ msgid "Event time background"
21
+ msgstr "Fondo de tiempo del evento"
22
+
23
+ #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
+ #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
+ msgid "Event text"
26
+ msgstr "Texto de evento"
27
+
28
+ #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
+ #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
+ msgid "Month view date background"
31
+ msgstr "Fondo de fecha de vista de mes"
32
+
33
+ #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
+ #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
+ msgid "Week/day view now marker"
36
+ msgstr "Marcador ver ahora de la semana/día"
37
+
38
+ #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
+ #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
+ msgid "Date label accent color"
41
+ msgstr "Color de acento de etiqueta de fecha"
42
+
43
+ #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
+ #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
+ msgid "Date label background"
46
+ msgstr "Fondo de etiqueta de fecha"
47
+
48
+ #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
+ #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
+ msgid "Date background"
51
+ msgstr "Fondo de fecha"
52
+
53
+ #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
+ #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
+ msgid "Today background"
56
+ msgstr "Fondo hoy"
57
+
58
+ #. Plugin Name of the plugin/theme
59
+ msgid "All-in-One Event Calendar by Time.ly"
60
+ msgstr "Calendario de eventos All-in-One por Time.ly"
61
+
62
+ #. Description of the plugin/theme
63
+ msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
+ msgstr "Un sistema de calendario con vistas de mes, semana, día, agenda, widget de eventos próximos, categorías codificadas por colores, recurrencias e importar/exportar canales de notificaciones \".ics\"."
65
+
66
+ #. Author of the plugin/theme
67
+ msgid "Time.ly Network Inc."
68
+ msgstr "Time.ly Network Inc."
69
+
70
+ #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
+ #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
+ msgid "List item background (active/hover)"
73
+ msgstr "Fondo de artículo de lista (activo/hover)"
74
+
75
+ #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
+ #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
+ msgid "Input field placeholder text"
78
+ msgstr "Texto provisional de campo de entrada"
79
+
80
+ #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
+ #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
+ msgid "Today color"
83
+ msgstr "Color de hoy"
84
+
85
+ #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
+ #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
+ msgid "All-day badge color"
88
+ msgstr "Color de insigna de día completo"
89
+
90
+ #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
+ #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
+ msgid "Event image shadow"
93
+ msgstr "Sombra de la imagen del evento"
94
+
95
+ #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
+ #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
+ msgid "Event default color"
98
+ msgstr "Color de evento por defecto"
99
+
100
+ #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
+ #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
+ msgid "Event default color (hover)"
103
+ msgstr "Color de evento por defecto (hover)"
104
+
105
+ #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
+ #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
+ msgid "All-day/multi-day event stub text"
108
+ msgstr "Texto corto de evento día completo/día múltiple"
109
+
110
+ #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
+ #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
+ msgid "All-day/multi-day event stub text shadow"
113
+ msgstr "Sombra del texto corto de evento día completo/día múltiple"
114
+
115
+ #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
+ #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
+ msgid "Event border"
118
+ msgstr "Contorno de evento"
119
+
120
+ #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
+ #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
+ msgid "Button text"
123
+ msgstr "Texto de botón"
124
+
125
+ #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
+ #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
+ msgid "Input field text"
128
+ msgstr "Texto de campo de entrada"
129
+
130
+ #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
+ #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
+ msgid "Input field background"
133
+ msgstr "Fondo de campo de entrada"
134
+
135
+ #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
+ #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
+ msgid "Input field border"
138
+ msgstr "Contorno de campo de entrada"
139
+
140
+ #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
+ #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
+ msgid "Input field border (focus)"
143
+ msgstr "Contorno de campo de entrada (enfocado)"
144
+
145
+ #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
+ #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
+ msgid "Input field background (disabled)"
148
+ msgstr "Fondo de campo de entrada (deshabilitado)"
149
+
150
+ #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
+ #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
+ msgid "Field label"
153
+ msgstr "Etiqueta de campo"
154
+
155
+ #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
+ #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
+ msgid "Dropdown list background"
158
+ msgstr "Fondo de lista desplegable"
159
+
160
+ #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
+ #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
+ msgid "Dropdown list border"
163
+ msgstr "Contorno de lista desplegable"
164
+
165
+ #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
+ #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
+ msgid "List item text"
168
+ msgstr "Texto de artículo de lista"
169
+
170
+ #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
+ #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
+ msgid "List item text (active/hover)"
173
+ msgstr "Texto de artículo de lista (activo/hover)"
174
+
175
+ #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
+ msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
+ msgstr "Nuevo tema activado. <a href=\"%s\">Visitar sitio</a>"
178
+
179
+ #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
+ msgid "Theme deleted."
181
+ msgstr "Tema borrado"
182
+
183
+ #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
+ msgid "Manage Themes"
185
+ msgstr "Administrar Temas"
186
+
187
+ #: public/admin/themes-install.php:40
188
+ msgctxt "theme"
189
+ msgid "Install Themes"
190
+ msgstr "Instalar Themas de Calendario"
191
+
192
+ #: public/admin/themes-updated.php:5
193
+ msgid "Update Calendar Themes"
194
+ msgstr "Actualizar los temas de Calendario"
195
+
196
+ #: public/admin/themes-updated.php:15
197
+ msgid "All-in-One Event Calendar Settings »"
198
+ msgstr "Ajuses de All-in-One Event Calendar:"
199
+
200
+ #: public/admin/themes.php:18
201
+ msgid "Current Calendar Theme"
202
+ msgstr "Tema de calendario actual"
203
+
204
+ #: public/admin/themes.php:21
205
+ msgid "Current theme preview"
206
+ msgstr "Vista previa del Tema Actual"
207
+
208
+ #: public/admin/themes.php:47
209
+ msgid "Available Calendar Themes"
210
+ msgstr "Temas de calendario disponibles"
211
+
212
+ #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
+ #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
+ msgid "Body background"
215
+ msgstr "Fondo de cuerpo"
216
+
217
+ #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
+ #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
+ msgid "Text color"
220
+ msgstr "Color de texto"
221
+
222
+ #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
+ #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
+ msgid "Text emboss"
225
+ msgstr "Relieve de texto"
226
+
227
+ #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
+ #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
+ msgid "Link"
230
+ msgstr "Liga"
231
+
232
+ #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
+ #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
+ msgid "Link (hover)"
235
+ msgstr "Liga (hover)"
236
+
237
+ #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
+ #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
+ msgid "Base font"
240
+ msgstr "Tipografía base"
241
+
242
+ #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
+ #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
+ msgid "Base font size"
245
+ msgstr "Tamaño de tipografía base"
246
+
247
+ #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
+ #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
+ msgid "Table background"
250
+ msgstr "Fondo de tabla"
251
+
252
+ #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
+ #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
+ msgid "Table header background"
255
+ msgstr "Fondo de cabecera de tabla"
256
+
257
+ #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
+ #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
+ msgid "Table header text"
260
+ msgstr "Texto de cabecera de tabla"
261
+
262
+ #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
+ #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
+ msgid "Primary brand color"
265
+ msgstr "Color de marca principal"
266
+
267
+ #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
+ #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
+ msgid "Button background"
270
+ msgstr "Fondo de botón"
271
+
272
+ #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
+ #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
+ msgid "Button border"
275
+ msgstr "Contorno de botón"
276
+
277
+ #: public/admin/feed_row.php:104
278
+ msgid "Refreshing&#8230;"
279
+ msgstr "Actualizando&#8230;"
280
+
281
+ #: public/admin/feed_row.php:106
282
+ msgid "Refresh"
283
+ msgstr "Actualizar"
284
+
285
+ #: public/admin/feed_row.php:119
286
+ msgid "Removing&#8230;"
287
+ msgstr "Borrando&#8230;"
288
+
289
+ #: public/admin/feed_row.php:121
290
+ msgid "Remove"
291
+ msgstr "Eliminar"
292
+
293
+ #: public/admin/import.php:6
294
+ msgid "Successfully imported events:"
295
+ msgstr "Eventos importados correctamente:"
296
+
297
+ #: public/admin/plugins/ics/display_feeds.php:2
298
+ msgid ""
299
+ "Configure which other calendars your own calendar subscribes to.\n"
300
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
302
+ " imported periodically."
303
+ msgstr ""
304
+ "Configura a qué otros calendarios subscribirte.\n"
305
+ " Puedes añadir cualquier calendario que cuente con una fuente iCalendar (.ics) .\n"
306
+ " Introduce la URL de la fuente URL(s) a continuación y los eventos que se \n"
307
+ " importarán periódicamente."
308
+
309
+ #: public/admin/plugins/ics/display_feeds.php:14
310
+ msgid "Check for new events"
311
+ msgstr "Buscar nuevos eventos"
312
+
313
+ #: public/admin/plugins/ics/display_feeds.php:45
314
+ msgid "Allow comments on imported events"
315
+ msgstr "Permitir comentarios en eventos importados"
316
+
317
+ #: public/admin/plugins/ics/display_feeds.php:52
318
+ msgid "Show map on imported events"
319
+ msgstr "Mostrar mapa en eventos importados"
320
+
321
+ #: public/admin/plugins/ics/display_feeds.php:59
322
+ msgid "Import any tags/categories provided by feed, in addition those selected above"
323
+ msgstr "Importar cualquier etiquetas/categorías proporcionadas por la fuente además de las que se seleccionaron más arriba"
324
+
325
+ #: public/admin/plugins/ics/display_feeds.php:93
326
+ msgid "Add new subscription"
327
+ msgstr "Agregar suscripción nueva"
328
+
329
+ #: public/admin/plugins/ics/display_feeds.php:96
330
+ msgid "Update subscription"
331
+ msgstr ""
332
+
333
+ #: public/admin/row_custom.php:3
334
+ msgid "Custom dates:"
335
+ msgstr ""
336
+
337
+ #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
+ #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
+ #: public/admin/row_yearly.php:3
340
+ msgid "Every"
341
+ msgstr "Cada"
342
+
343
+ #: public/admin/row_monthly.php:16
344
+ msgid "On day of the month"
345
+ msgstr "On día del mes"
346
+
347
+ #: public/admin/row_monthly.php:23
348
+ msgid "On day of the week"
349
+ msgstr "Un día de la semana"
350
+
351
+ #: public/admin/row_weekly.php:12
352
+ msgctxt "Recurrence editor - weekly tab"
353
+ msgid "On"
354
+ msgstr "El"
355
+
356
+ #: public/admin/row_yearly.php:12
357
+ msgctxt "Recurrence editor - yearly tab"
358
+ msgid "In"
359
+ msgstr "En"
360
+
361
+ #: public/admin/settings.php:19
362
+ msgid "Update Settings"
363
+ msgstr "Actualizar eventos"
364
+
365
+ #: public/admin/themes-install.php:4
366
+ msgid "The active theme is broken. Reverting to the default theme."
367
+ msgstr "El tema activo tien un problema. Volviendo al tema por defecto."
368
+
369
+ #: public/admin/themes-install.php:13
370
+ msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
+ msgstr ""
372
+
373
+ #: public/admin/calendar_tasks.php:24
374
+ msgid "Manage Events"
375
+ msgstr "Administrar Eventos"
376
+
377
+ #: public/admin/calendar_tasks.php:27
378
+ msgid "View and edit all your events."
379
+ msgstr "Ver y editar todos tus eventos"
380
+
381
+ #: public/admin/calendar_tasks.php:39
382
+ msgid "Manage Event Categories"
383
+ msgstr "Administrar Categorías de Eventos"
384
+
385
+ #: public/admin/calendar_tasks.php:42
386
+ msgid "Organize and color-code your events."
387
+ msgstr "Organiza y colorea tus eventos"
388
+
389
+ #: public/admin/calendar_tasks.php:50
390
+ msgid "Choose Your Theme"
391
+ msgstr "Elige tu tema"
392
+
393
+ #: public/admin/calendar_tasks.php:53
394
+ msgid "Change the look and feel."
395
+ msgstr "Cambia la fuente y aspecto"
396
+
397
+ #: public/admin/calendar_tasks.php:63
398
+ msgid "Manage Calendar Feeds"
399
+ msgstr "Administra las Fuentes de Calendario"
400
+
401
+ #: public/admin/calendar_tasks.php:66
402
+ msgid "Subscribe to other calendars."
403
+ msgstr "Suscribirse a otros calendarios"
404
+
405
+ #: public/admin/calendar_tasks.php:74
406
+ msgid "Edit Calendar Settings"
407
+ msgstr "Editar Ajustres del Calendario"
408
+
409
+ #: public/admin/calendar_tasks.php:77
410
+ msgid "Make this calendar your own."
411
+ msgstr "Haz este calendario tuyo."
412
+
413
+ #: public/admin/cron_freq.php:3
414
+ msgid "Hourly"
415
+ msgstr "Cada hora"
416
+
417
+ #: public/admin/cron_freq.php:6
418
+ msgid "Twice Daily"
419
+ msgstr "Dos veces al día"
420
+
421
+ #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
+ msgid "iCalendar/.ics Feed URL:"
423
+ msgstr "URL de iCalendar/.ics:"
424
+
425
+ #: public/admin/feed_row.php:24
426
+ msgid "Event categories:"
427
+ msgstr "Categorías de evento:"
428
+
429
+ #: public/admin/feed_row.php:31
430
+ msgid "Tag with"
431
+ msgstr "Etiquetar con"
432
+
433
+ #: public/admin/feed_row.php:40
434
+ msgid "Allow comments"
435
+ msgstr "Permitir comentarios"
436
+
437
+ #: public/admin/feed_row.php:51
438
+ msgid "Show map"
439
+ msgstr "Mostrar mapa"
440
+
441
+ #: public/admin/feed_row.php:63
442
+ msgid "Keep original events categories and tags"
443
+ msgstr "Mantener categorías y etiquetas originales de eventos"
444
+
445
+ #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
+ msgid "On refresh, preserve previously imported events that are missing from the feed"
447
+ msgstr ""
448
+
449
+ #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
+ msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
+ msgstr ""
452
+
453
+ #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
+ msgid "Assign default time zone to events in UTC"
455
+ msgstr ""
456
+
457
+ #: public/admin/box_support.php:19
458
+ msgid "Get Add-ons"
459
+ msgstr "Conseguir complementos"
460
+
461
+ #: public/admin/box_support.php:27
462
+ msgid "Support"
463
+ msgstr "Soporte"
464
+
465
+ #: public/admin/box_support.php:35
466
+ msgid "Timely Events"
467
+ msgstr "Eventos Timely"
468
+
469
+ #: public/admin/box_support.php:43
470
+ msgid "Timely News"
471
+ msgstr "Noticias de Timely"
472
+
473
+ #: public/admin/box_support.php:47
474
+ msgid "view all news"
475
+ msgstr "ver todas las noticias"
476
+
477
+ #: public/admin/box_support.php:95
478
+ msgid "Follow @_Timely"
479
+ msgstr "Sigue @_Timely"
480
+
481
+ #: public/admin/box_time_and_date.php:6
482
+ msgid "Event date and time"
483
+ msgstr "Fecha y hora del evento"
484
+
485
+ #: public/admin/box_time_and_date.php:26
486
+ msgid "All-day event"
487
+ msgstr "Evento de todo el día"
488
+
489
+ #: public/admin/box_time_and_date.php:35
490
+ msgid "No end time"
491
+ msgstr "Sin hora de término"
492
+
493
+ #: public/admin/box_time_and_date.php:42
494
+ msgid "Start date / time"
495
+ msgstr "Fecha / hora de inicio"
496
+
497
+ #: public/admin/box_time_and_date.php:59
498
+ msgid "End date / time"
499
+ msgstr "Fecha / hora de fin"
500
+
501
+ #: public/admin/box_time_and_date.php:76
502
+ msgid "Time zone"
503
+ msgstr "Zona horaria"
504
+
505
+ #: public/admin/box_time_and_date.php:81
506
+ msgid "Choose your time zone"
507
+ msgstr "Elija su zona horaria"
508
+
509
+ #: public/admin/box_time_and_date.php:108
510
+ msgid "Repeat"
511
+ msgstr "Repetir"
512
+
513
+ #: public/admin/box_time_and_date.php:127
514
+ msgid "Exclude"
515
+ msgstr "Excluir"
516
+
517
+ #: public/admin/box_time_and_date.php:136
518
+ msgid "Choose a rule for exclusion"
519
+ msgstr "Elige una regla para la exclusión"
520
+
521
+ #: public/admin/calendar_tasks.php:3
522
+ msgid "Welcome"
523
+ msgstr "Bienvenido"
524
+
525
+ #: public/admin/calendar_tasks.php:4
526
+ msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
+ msgstr "Al Calendario All-in-One Event por <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
+
529
+ #: public/admin/calendar_tasks.php:13
530
+ msgid "Post Your Event"
531
+ msgstr "+ Publicar un evento"
532
+
533
+ #: public/admin/calendar_tasks.php:16
534
+ msgid "Add a new event to the calendar."
535
+ msgstr "Añade un nuevo evento al calendario."
536
+
537
+ #: public/admin/box_eventbrite.php:60
538
+ msgid "Donation Based"
539
+ msgstr "Basado en donaciones"
540
+
541
+ #: public/admin/box_eventbrite.php:68
542
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
543
+ msgstr "El precio para el primer ticket de este evento se tomará del campo Precio de más arriba."
544
+
545
+ #: public/admin/box_eventbrite.php:75
546
+ msgid "Quantity"
547
+ msgstr "Cantidad"
548
+
549
+ #: public/admin/box_eventbrite.php:85
550
+ msgid "Include Fee in Price"
551
+ msgstr "Incluir comisión en precio"
552
+
553
+ #: public/admin/box_eventbrite.php:90
554
+ msgid "Add Service Fee on top of price"
555
+ msgstr "Añadir coste del servicio al precio"
556
+
557
+ #: public/admin/box_eventbrite.php:92
558
+ msgid "Include Service fee in price"
559
+ msgstr "Incluir coste del servicio en el precio"
560
+
561
+ #: public/admin/box_eventbrite.php:98
562
+ msgid "Payment Options"
563
+ msgstr "Opciones de pago"
564
+
565
+ #: public/admin/box_eventbrite.php:105
566
+ msgid "Google Checkout"
567
+ msgstr "Google Checkout"
568
+
569
+ #: public/admin/box_eventbrite.php:107
570
+ msgid "Check"
571
+ msgstr "Cheque"
572
+
573
+ #: public/admin/box_eventbrite.php:109
574
+ msgid "Cash"
575
+ msgstr "Efectivo"
576
+
577
+ #: public/admin/box_eventbrite.php:111
578
+ msgid "Send an Invoice"
579
+ msgstr "Enviar una factura"
580
+
581
+ #: public/admin/box_profile_timezone.php:9
582
+ msgid "Your preferred timezone"
583
+ msgstr "Tu zona horaria preferida"
584
+
585
+ #: public/admin/box_repeat.php:5
586
+ msgid "Select recurrence pattern:"
587
+ msgstr "Selecciona patrón de recurrencia:"
588
+
589
+ #: public/admin/box_repeat.php:36
590
+ msgid "Custom"
591
+ msgstr ""
592
+
593
+ #: public/admin/box_repeat.php:72
594
+ msgid "End"
595
+ msgstr "Fin"
596
+
597
+ #: public/admin/box_repeat.php:82
598
+ msgid "Ending after"
599
+ msgstr "Termina tras"
600
+
601
+ #: public/admin/box_repeat.php:109
602
+ #: public/admin/plugins/ics/display_feeds.php:90
603
+ msgid "Please wait&#8230;"
604
+ msgstr "Por favor, espera&#8230;"
605
+
606
+ #: public/admin/box_repeat.php:111
607
+ msgid "Apply"
608
+ msgstr "Aplicar"
609
+
610
+ #: public/admin/box_repeat.php:116
611
+ #: public/admin/plugins/ics/display_feeds.php:84
612
+ msgid "Cancel"
613
+ msgstr "Cancelar"
614
+
615
+ #: public/admin/box_support.php:4
616
+ msgid "Timely"
617
+ msgstr "http://time.ly/"
618
+
619
+ #: public/admin/box_support.php:11
620
+ msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
+ msgstr "El calendario de eventos All-in-One de Timely es una<br />nueva y revolucionaria manera de encontrar y compartir eventos."
622
+
623
+ #: public/admin/box_event_cost.php:228
624
+ msgid "Status:"
625
+ msgstr ""
626
+
627
+ #: public/admin/box_event_cost.php:235
628
+ msgid "Open"
629
+ msgstr ""
630
+
631
+ #: public/admin/box_event_cost.php:239
632
+ msgid "Closed"
633
+ msgstr ""
634
+
635
+ #: public/admin/box_event_cost.php:254
636
+ msgid "Add New Ticket Type"
637
+ msgstr ""
638
+
639
+ #: public/admin/box_event_cost.php:274
640
+ msgid "Tickets URL:"
641
+ msgstr ""
642
+
643
+ #: public/admin/box_event_location.php:6
644
+ msgid "Event location details"
645
+ msgstr "Datos del lugar del evento"
646
+
647
+ #: public/admin/box_event_location.php:19
648
+ msgid "Venue name:"
649
+ msgstr "Nombre del sitio:"
650
+
651
+ #: public/admin/box_event_location.php:31
652
+ msgid "Address:"
653
+ msgstr "Dirección:"
654
+
655
+ #: public/admin/box_event_location.php:45
656
+ msgid "Input Coordinates"
657
+ msgstr "Introducir coordenadas:"
658
+
659
+ #: public/admin/box_event_location.php:57
660
+ msgid "Latitude:"
661
+ msgstr "Latitud:"
662
+
663
+ #: public/admin/box_event_location.php:69
664
+ msgid "Longitude:"
665
+ msgstr "Longuitud:"
666
+
667
+ #: public/admin/box_event_location.php:85
668
+ msgid "Show Map"
669
+ msgstr ""
670
+
671
+ #: public/admin/box_eventbrite.php:1
672
+ msgid "Eventbrite Ticketing"
673
+ msgstr "Tickets con Eventbrite"
674
+
675
+ #: public/admin/box_eventbrite.php:7
676
+ msgid "Register this event with Eventbrite.com?"
677
+ msgstr "¿Registrar este evento en Eventbrite.com?"
678
+
679
+ #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
+ #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
+ #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
+ msgid "Yes"
683
+ msgstr "Sí"
684
+
685
+ #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
+ #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
+ #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
+ msgid "No"
689
+ msgstr "No"
690
+
691
+ #: public/admin/box_eventbrite.php:22
692
+ msgid "Set up your first ticket"
693
+ msgstr "Configura el primer ticket"
694
+
695
+ #: public/admin/box_eventbrite.php:24
696
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
+ msgstr "Para crear varios tickets por evento, envía este formulario y sigue el enlace a Eventbrite."
698
+
699
+ #: public/admin/box_eventbrite.php:42
700
+ msgid "Description"
701
+ msgstr "Descripción"
702
+
703
+ #: public/admin/box_eventbrite.php:53
704
+ msgid "Type"
705
+ msgstr "Tipo"
706
+
707
+ #: public/admin/box_eventbrite.php:58
708
+ msgid "Set Price"
709
+ msgstr "Fijar precio"
710
+
711
+ #: public/admin/box_event_contact.php:30
712
+ msgid "Phone:"
713
+ msgstr "Teléfono:"
714
+
715
+ #: public/admin/box_event_contact.php:56
716
+ msgid "Website URL:"
717
+ msgstr ""
718
+
719
+ #: public/admin/box_event_cost.php:6
720
+ msgid "Event cost and Tickets"
721
+ msgstr "Costo de evento y Boletos"
722
+
723
+ #: public/admin/box_event_cost.php:20
724
+ msgid "Ticket options not available - event imported from external calendar."
725
+ msgstr ""
726
+
727
+ #: public/admin/box_event_cost.php:28
728
+ msgid "Free event"
729
+ msgstr "Evento gratuito"
730
+
731
+ #: public/admin/box_event_cost.php:41
732
+ msgid "External Tickets URL"
733
+ msgstr ""
734
+
735
+ #: public/admin/box_event_cost.php:52
736
+ msgid "Ticketing allows you to sell tickets directly to the users."
737
+ msgstr ""
738
+
739
+ #: public/admin/box_event_cost.php:55
740
+ msgid "Sign Up for Timely Network"
741
+ msgstr ""
742
+
743
+ #: public/admin/box_event_cost.php:80
744
+ msgid "Remove Ticket Type"
745
+ msgstr ""
746
+
747
+ #: public/admin/box_event_cost.php:101
748
+ msgid "Ex.: Regular Ticket"
749
+ msgstr ""
750
+
751
+ #: public/admin/box_event_cost.php:105
752
+ msgid "Description:"
753
+ msgstr ""
754
+
755
+ #: public/admin/box_event_cost.php:111
756
+ msgid "(Optional)"
757
+ msgstr ""
758
+
759
+ #: public/admin/box_event_cost.php:115
760
+ msgid "Price:"
761
+ msgstr ""
762
+
763
+ #: public/admin/box_event_cost.php:124
764
+ msgid "USD"
765
+ msgstr ""
766
+
767
+ #: public/admin/box_event_cost.php:128
768
+ msgid "Limits:"
769
+ msgstr ""
770
+
771
+ #: public/admin/box_event_cost.php:131
772
+ msgid "This fields are required."
773
+ msgstr ""
774
+
775
+ #: public/admin/box_event_cost.php:156
776
+ msgid "Quantity:"
777
+ msgstr ""
778
+
779
+ #: public/admin/box_event_cost.php:180
780
+ msgid "Available:"
781
+ msgstr ""
782
+
783
+ #: public/admin/box_event_cost.php:185
784
+ msgid "Immediately"
785
+ msgstr ""
786
+
787
+ #: public/admin/box_event_cost.php:190
788
+ msgid "From:"
789
+ msgstr ""
790
+
791
+ #: public/admin/box_event_cost.php:207
792
+ msgid "Till:"
793
+ msgstr ""
794
+
795
+ #: public/admin/box_ask_customer_review.php:42
796
+ #: public/admin/box_ask_customer_review.php:75
797
+ msgid "No, thanks"
798
+ msgstr ""
799
+
800
+ #: public/admin/box_ask_customer_review.php:50
801
+ #: public/admin/box_ask_customer_review.php:84
802
+ msgid "Ok, sure!"
803
+ msgstr ""
804
+
805
+ #: public/admin/box_ask_customer_review.php:66
806
+ msgid "Would you mind giving us some feedback?"
807
+ msgstr ""
808
+
809
+ #: public/admin/box_ask_customer_review.php:101
810
+ msgid "Please provide some feedback"
811
+ msgstr ""
812
+
813
+ #: public/admin/box_ask_customer_review.php:108
814
+ msgid "Message:"
815
+ msgstr ""
816
+
817
+ #: public/admin/box_ask_customer_review.php:121
818
+ msgid "Name:"
819
+ msgstr ""
820
+
821
+ #: public/admin/box_ask_customer_review.php:136
822
+ #: public/admin/box_event_contact.php:43
823
+ msgid "E-mail:"
824
+ msgstr "E-mail:"
825
+
826
+ #: public/admin/box_ask_customer_review.php:143
827
+ msgid "E-mail is invalid."
828
+ msgstr ""
829
+
830
+ #: public/admin/box_ask_customer_review.php:154
831
+ msgid "Site URL:"
832
+ msgstr ""
833
+
834
+ #: public/admin/box_ask_customer_review.php:161
835
+ msgid "Site URL is invalid."
836
+ msgstr ""
837
+
838
+ #: public/admin/box_ask_customer_review.php:173
839
+ msgid "Thank you for being our customer,"
840
+ msgstr ""
841
+
842
+ #: public/admin/box_ask_customer_review.php:174
843
+ msgid "Aristotel Dascal, VP of Product, Time.ly"
844
+ msgstr ""
845
+
846
+ #: public/admin/box_ask_customer_review.php:180
847
+ msgid "Sending..."
848
+ msgstr ""
849
+
850
+ #: public/admin/box_ask_customer_review.php:181
851
+ msgid "Send Message"
852
+ msgstr ""
853
+
854
+ #: public/admin/box_event_children.php:12
855
+ msgid "Base recurrence event"
856
+ msgstr "Evento recurrente base"
857
+
858
+ #: public/admin/box_event_children.php:14
859
+ msgid "Modified recurrence events"
860
+ msgstr "Eventos de recurrencia modificados"
861
+
862
+ #: public/admin/box_event_children.php:22
863
+ msgid "Edit parent:"
864
+ msgstr "Editar elemento raíz:"
865
+
866
+ #: public/admin/box_event_children.php:27
867
+ msgid "Modified Events"
868
+ msgstr "Eventos modificados"
869
+
870
+ #: public/admin/box_event_children.php:31
871
+ msgid "Edit:"
872
+ msgstr "Editar:"
873
+
874
+ #: public/admin/box_event_contact.php:6
875
+ msgid "Organizer contact info"
876
+ msgstr "Datos de contacto del organizador"
877
+
878
+ #: public/admin/box_event_contact.php:17
879
+ msgid "Contact name:"
880
+ msgstr "Nombre:"
881
+
882
+ #: lib/theme/loader.php:325
883
+ msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
+ msgstr "No se pudo encontrar un cargador adecuado para el archivo con la extensión '%s'"
885
+
886
+ #: lib/theme/loader.php:631
887
+ msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
+ msgstr ""
889
+
890
+ #: lib/theme/search.php:253
891
+ msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
+ msgstr "No se pudo mover sus antiguos temas desde <code>wp-content/themes-ai1ec</code> a <code>wp-content/themes-ai1ec-obsolete</code> porque su carpeta <code>wp-content</code> no permite escritura. Por favor mueva o elimine manualmente sus antiguos temas de <code>wp-content/themes-ai1ec</code>."
893
+
894
+ #: lib/theme/search.php:264
895
+ msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
+ msgstr "No se pudo mover sus antiguos temas desde <code>wp-content/themes-ai1ec/%s</code> a <code>wp-content/themes-ai1ec-obsolete/%s</code>. Por favor mueva o elimine manualmente sus antiguos temas de <code>wp-content/themes-ai1ec/%s</code>."
897
+
898
+ #: lib/twig/environment.php:115
899
+ msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
+ msgstr ""
901
+
902
+ #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
+ msgid "Title:"
904
+ msgstr "Título:"
905
+
906
+ #: public/admin/agenda-widget-form.php:12
907
+ msgid "Number of events to show:"
908
+ msgstr "Número de eventos a mostrar:"
909
+
910
+ #: public/admin/agenda-widget-form.php:21
911
+ msgid "Number of days to show:"
912
+ msgstr "Número de días a mostrar:"
913
+
914
+ #: public/admin/agenda-widget-form.php:26
915
+ msgid "Limit to:"
916
+ msgstr "Limitar a:"
917
+
918
+ #: public/admin/agenda-widget-form.php:30
919
+ msgid "Events with these <strong>Categories</strong>"
920
+ msgstr "Eventos con estras <strong>Categorías</strong>"
921
+
922
+ #: public/admin/agenda-widget-form.php:39
923
+ msgid "No categories found."
924
+ msgstr "No se encuentran categorías."
925
+
926
+ #: public/admin/agenda-widget-form.php:46
927
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
+ msgstr "<strong>O</strong> eventos con estas <strong>Etiquetas</strong>"
929
+
930
+ #: public/admin/agenda-widget-form.php:55
931
+ msgid "No tags found."
932
+ msgstr "No se encuentran etiquetas."
933
+
934
+ #: public/admin/agenda-widget-form.php:62
935
+ msgid "Show <strong>View Calendar</strong> button"
936
+ msgstr "Mostrar botón <strong>Ver calendario</strong>"
937
+
938
+ #: public/admin/agenda-widget-form.php:65
939
+ msgid "Show <strong>Subscribe</strong> buttons"
940
+ msgstr "Mostrar botones <strong>Suscribir</strong>"
941
+
942
+ #: public/admin/agenda-widget-form.php:68
943
+ msgid "Hide this widget on calendar page"
944
+ msgstr "Ocultar este widget en la página del calendario"
945
+
946
+ #: public/admin/box_ask_customer_review.php:5
947
+ msgid "Enjoying All-in-One Event Calendar?"
948
+ msgstr ""
949
+
950
+ #: public/admin/box_ask_customer_review.php:13
951
+ msgid "Not really"
952
+ msgstr ""
953
+
954
+ #: public/admin/box_ask_customer_review.php:20
955
+ msgid "Yes!"
956
+ msgstr ""
957
+
958
+ #: public/admin/box_ask_customer_review.php:33
959
+ msgid "How about a rating on the Wordpress?"
960
+ msgstr ""
961
+
962
+ #: lib/recurrence/rule.php:397
963
+ msgid "Every %d weeks"
964
+ msgstr "Cada %d semanas"
965
+
966
+ #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
+ msgid "Monthly"
968
+ msgstr "Mensualmente"
969
+
970
+ #: lib/recurrence/rule.php:409
971
+ msgid "Every other month"
972
+ msgstr "En meses alternos"
973
+
974
+ #: lib/recurrence/rule.php:412
975
+ msgid "Every %d months"
976
+ msgstr "Cada %d meses"
977
+
978
+ #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
+ msgid "Yearly"
980
+ msgstr "Anualmente"
981
+
982
+ #: lib/recurrence/rule.php:424
983
+ msgid "Every other year"
984
+ msgstr "En años alternos"
985
+
986
+ #: lib/recurrence/rule.php:427
987
+ msgid "Every %d years"
988
+ msgstr "Cada %d años"
989
+
990
+ #: lib/recurrence/rule.php:465
991
+ msgid "until %s"
992
+ msgstr "hasta el %s"
993
+
994
+ #: lib/recurrence/rule.php:475
995
+ msgid "for %d occurrences"
996
+ msgstr "para %d coincidencias"
997
+
998
+ #: lib/recurrence/rule.php:479
999
+ msgid "forever"
1000
+ msgstr "Para siempre"
1001
+
1002
+ #: lib/robots/helper.php:71
1003
+ msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
+ msgstr "<strong>ERROR:</strong> Hubo un error en la conexión con el servidor. Por favor verifique que la configuración sea la correcta."
1005
+
1006
+ #: lib/robots/helper.php:105
1007
+ msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
+ msgstr "<strong>ERROR:</strong> Hubo un error al guardar <strong>robots.txt</strong> al servidor, el archivo no pudo ser grabado."
1009
+
1010
+ #: lib/theme/list.php:152
1011
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
+ msgstr "En este momento solo tienes un tema activado para esta web. Visita el administrador de red para <a href=\"%1$s\">activar</a> o <a href=\"%2$s\">instalar</a> más temas."
1013
+
1014
+ #: lib/theme/list.php:164
1015
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
+ msgstr "En este momento solo tienes un tema activado para esta web. Visita el administrador de red para <a href=\"%1$s\">activar</a> más temas."
1017
+
1018
+ #: lib/theme/list.php:179
1019
+ msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
+ msgstr "Actualmente solo tienes un tema instalado. Puedes escoger de los muchos temas gratuitos en el directorio de temas Timely en cualquier momento: sólo haz clic en la pestaña <a href=\"%s\">Instalar temas</a> de arriba."
1021
+
1022
+ #: lib/theme/list.php:190
1023
+ msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
+ msgstr "En este momento únicamente está disponible el tema actualmente en uso. Contacta con el <em>%s</em> administrador para añadir más temas."
1025
+
1026
+ #: lib/theme/list.php:257
1027
+ msgid "Activate &#8220;%s&#8221;"
1028
+ msgstr "Activar &#8220;%s&#8221;"
1029
+
1030
+ #: lib/theme/list.php:264
1031
+ msgid "Activate"
1032
+ msgstr "Activar"
1033
+
1034
+ #. translators: 1: theme title, 2: theme version, 3: theme author
1035
+ #: lib/theme/list.php:281 public/admin/themes.php:25
1036
+ msgid "%1$s %2$s by %3$s"
1037
+ msgstr "%1$s %2$s por %3$s"
1038
+
1039
+ #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
+ #. title, 5: parent_theme
1041
+ #: lib/theme/list.php:293
1042
+ msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
+ msgstr "Los archivos de plantilla están ubicados en <code>%2$s</code>. Los archivos de hoja de estilo están ubicados en <code>%3$s</code>. <strong>%4$s</strong> utiliza plantillas de <strong>%5$s</strong>. Los cambios hechos a las plantillas afectarán ambos temas."
1044
+
1045
+ #: lib/theme/list.php:308
1046
+ msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
+ msgstr "Todos los archivos de este tema &#8217;s están ubicados en <code>%2$s</code>."
1048
+
1049
+ #: lib/post/custom-type.php:36
1050
+ msgid "Parent Event"
1051
+ msgstr "Evento principal"
1052
+
1053
+ #: lib/post/custom-type.php:55
1054
+ msgid "event"
1055
+ msgstr "evento"
1056
+
1057
+ #: lib/post/custom-type.php:85
1058
+ msgctxt "Event categories taxonomy"
1059
+ msgid "Categories"
1060
+ msgstr ""
1061
+
1062
+ #: lib/post/custom-type.php:86
1063
+ msgctxt "Event categories taxonomy (singular)"
1064
+ msgid "Category"
1065
+ msgstr ""
1066
+
1067
+ #: lib/post/custom-type.php:87
1068
+ msgctxt "Event categories menu item"
1069
+ msgid "Organize"
1070
+ msgstr ""
1071
+
1072
+ #: lib/post/custom-type.php:94
1073
+ msgctxt "Event tags taxonomy"
1074
+ msgid "Tags"
1075
+ msgstr ""
1076
+
1077
+ #: lib/post/custom-type.php:95
1078
+ msgctxt "Event tags taxonomy (singular)"
1079
+ msgid "Tag"
1080
+ msgstr ""
1081
+
1082
+ #: lib/post/custom-type.php:102
1083
+ msgctxt "Event feeds taxonomy"
1084
+ msgid "Event Feeds"
1085
+ msgstr "Fuentes de Eventos"
1086
+
1087
+ #: lib/post/custom-type.php:103
1088
+ msgctxt "Event feed taxonomy (singular)"
1089
+ msgid "Event Feed"
1090
+ msgstr "Fuentes de Evento"
1091
+
1092
+ #: lib/post/custom-type.php:285
1093
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
+ msgstr "Todos los eventos <span class=\"update-plugins count-%d\" title=\"%d Eventos pendientes\"><span class=\"update-count\">%d</span></span>"
1095
+
1096
+ #: lib/post/custom-type.php:296
1097
+ msgid "All Events"
1098
+ msgstr "Todos los eventos"
1099
+
1100
+ #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
+ #: lib/recurrence/rule.php:260
1102
+ msgctxt "Recurrence editor - weekly tab"
1103
+ msgid "on"
1104
+ msgstr "el"
1105
+
1106
+ #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
+ #: lib/recurrence/rule.php:326
1108
+ msgid "and"
1109
+ msgstr "y"
1110
+
1111
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
+ #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
+ msgctxt "Recurrence editor - monthly tab"
1114
+ msgid "on"
1115
+ msgstr "el"
1116
+
1117
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
+ #: lib/recurrence/rule.php:286
1119
+ msgid "of the month"
1120
+ msgstr "del mesd"
1121
+
1122
+ #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
+ #: lib/recurrence/rule.php:336
1124
+ msgctxt "Recurrence editor - yearly tab"
1125
+ msgid "on"
1126
+ msgstr "el"
1127
+
1128
+ #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
+ #: public/admin/cron_freq.php:9
1130
+ msgid "Daily"
1131
+ msgstr "Diariamente"
1132
+
1133
+ #: lib/recurrence/rule.php:379
1134
+ msgid "Every other day"
1135
+ msgstr "Días alternos"
1136
+
1137
+ #: lib/recurrence/rule.php:382
1138
+ msgid "Every %d days"
1139
+ msgstr "Cada %d días"
1140
+
1141
+ #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
+ msgid "Weekly"
1143
+ msgstr "Semanalmente"
1144
+
1145
+ #: lib/recurrence/rule.php:394
1146
+ msgid "Every other week"
1147
+ msgstr "En semanas alternas"
1148
+
1149
+ #: lib/less/variable/font.php:64
1150
+ msgid "Custom..."
1151
+ msgstr "Personalizado..."
1152
+
1153
+ #: lib/less/variable/font.php:112
1154
+ msgid "Enter custom font(s)"
1155
+ msgstr "Ingresa tipografía(s) personalizada(s)"
1156
+
1157
+ #: lib/less/variable/size.php:26
1158
+ msgid "Length"
1159
+ msgstr "Duración"
1160
+
1161
+ #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
+ msgid "All-in-One Event Calendar"
1163
+ msgstr "All-in-One Event Calendar"
1164
+
1165
+ #: lib/notification/admin.php:182
1166
+ msgid "Got it – dismiss this"
1167
+ msgstr ""
1168
+
1169
+ #: lib/post/custom-type.php:26
1170
+ msgctxt "Custom post type name"
1171
+ msgid "Events"
1172
+ msgstr "Eventos"
1173
+
1174
+ #: lib/post/custom-type.php:27
1175
+ msgctxt "Custom post type name (singular)"
1176
+ msgid "Event"
1177
+ msgstr "Evento"
1178
+
1179
+ #: lib/post/custom-type.php:28
1180
+ msgid "Add New"
1181
+ msgstr "Crear evento"
1182
+
1183
+ #: lib/post/custom-type.php:29
1184
+ msgid "Add New Event"
1185
+ msgstr "Crear evento nuevo"
1186
+
1187
+ #: lib/post/custom-type.php:30
1188
+ msgid "Edit Event"
1189
+ msgstr "Editar evento"
1190
+
1191
+ #: lib/post/custom-type.php:31
1192
+ msgid "New Event"
1193
+ msgstr "Evento nuevo"
1194
+
1195
+ #: lib/post/custom-type.php:32
1196
+ msgid "View Event"
1197
+ msgstr "Ver evento"
1198
+
1199
+ #: lib/post/custom-type.php:33
1200
+ msgid "Search Events"
1201
+ msgstr "Buscar eventos"
1202
+
1203
+ #: lib/post/custom-type.php:34
1204
+ msgid "No Events found"
1205
+ msgstr "No se encuentran eventos."
1206
+
1207
+ #: lib/post/custom-type.php:35
1208
+ msgid "No Events found in Trash"
1209
+ msgstr "No se encuentran eventos en la papelera"
1210
+
1211
+ #: lib/html/element/setting/html.php:62
1212
+ msgid "Filter by post ID:"
1213
+ msgstr "Filtrar por ID de publicación:"
1214
+
1215
+ #: lib/html/element/setting/html.php:63
1216
+ msgid "Filter by post IDs (separate IDs by comma):"
1217
+ msgstr "Filtrar por IDs de publicación (separar IDs con comas):"
1218
+
1219
+ #: lib/html/element/setting/html.php:64
1220
+ msgid "Limit number of events per page:"
1221
+ msgstr "Limita el número de eventos por página:"
1222
+
1223
+ #: lib/html/element/setting/html.php:65
1224
+ msgid "Warning:"
1225
+ msgstr "Advertencia:"
1226
+
1227
+ #: lib/html/element/setting/html.php:66
1228
+ msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
+ msgstr "Actualmente no se permite incrustar más de un calendario en la misma página. No intente incrustar el calendario con shortcodes en una página que ya incluye un calendario."
1230
+
1231
+ #: lib/import-export/ics.php:831
1232
+ msgid "Tickets: "
1233
+ msgstr ""
1234
+
1235
+ #: lib/html/element/setting/html.php:41
1236
+ msgid "Day view:"
1237
+ msgstr "Vista diaria:"
1238
+
1239
+ #: lib/html/element/setting/html.php:42
1240
+ msgid "Agenda view:"
1241
+ msgstr "Vista Agenda:"
1242
+
1243
+ #: lib/html/element/setting/html.php:43
1244
+ msgid "Some Other view:"
1245
+ msgstr "Alguna otra vista:"
1246
+
1247
+ #: lib/html/element/setting/html.php:44
1248
+ msgid "Default view as per settings:"
1249
+ msgstr "Vista por defecto según la configuración:"
1250
+
1251
+ #: lib/html/element/setting/html.php:45
1252
+ msgid "General form:"
1253
+ msgstr "Formulario general:"
1254
+
1255
+ #: lib/html/element/setting/html.php:46
1256
+ msgid "Optional."
1257
+ msgstr "Opcional."
1258
+
1259
+ #: lib/html/element/setting/html.php:47
1260
+ msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
+ msgstr "Añadir opciones para mostrar un calendario filtrada. (Puede encontrar la categoría y el ID de etiquetas mediante la inspección de la dirección URL de la página de calendario filtrada.)"
1262
+
1263
+ #: lib/html/element/setting/html.php:48
1264
+ msgid "Filter by event category name/slug:"
1265
+ msgstr "Filtrar por tipo de evento de categoría nombre / tag:"
1266
+
1267
+ #: lib/html/element/setting/html.php:49
1268
+ msgid "Holidays"
1269
+ msgstr "Días festivos"
1270
+
1271
+ #: lib/html/element/setting/html.php:50
1272
+ msgid "Lunar Cycles"
1273
+ msgstr "Ciclos Lunares"
1274
+
1275
+ #: lib/html/element/setting/html.php:51
1276
+ msgid "zodiac-date-ranges"
1277
+ msgstr "Rangos Zodiacales"
1278
+
1279
+ #: lib/html/element/setting/html.php:52
1280
+ msgid "Filter by event category names/slugs (separate names by comma):"
1281
+ msgstr "Filtrar por nombres o slugs de categoría (separar nombres con comas):"
1282
+
1283
+ #: lib/html/element/setting/html.php:53
1284
+ msgid "Filter by event category ID:"
1285
+ msgstr "Filtrar por ID de categoría de evento"
1286
+
1287
+ #: lib/html/element/setting/html.php:54
1288
+ msgid "Filter by event category IDs (separate IDs by comma):"
1289
+ msgstr "Filtrar por IDs de categorías de eventos (separar IDs con comas):"
1290
+
1291
+ #: lib/html/element/setting/html.php:55
1292
+ msgid "Filter by event tag name/slug:"
1293
+ msgstr "Filtrar por nombre o slug de tag:"
1294
+
1295
+ #: lib/html/element/setting/html.php:56
1296
+ msgid "tips-and-tricks"
1297
+ msgstr "consejos"
1298
+
1299
+ #: lib/html/element/setting/html.php:57
1300
+ msgid "creative writing"
1301
+ msgstr "escritura creativa"
1302
+
1303
+ #: lib/html/element/setting/html.php:58
1304
+ msgid "performing arts"
1305
+ msgstr "artes interpretativas"
1306
+
1307
+ #: lib/html/element/setting/html.php:59
1308
+ msgid "Filter by event tag names/slugs (separate names by comma):"
1309
+ msgstr "Filtrar por nombres o slugs de tags (separar con comas):"
1310
+
1311
+ #: lib/html/element/setting/html.php:60
1312
+ msgid "Filter by event tag ID:"
1313
+ msgstr "Filtrar por ID de tag de evento:"
1314
+
1315
+ #: lib/html/element/setting/html.php:61
1316
+ msgid "Filter by event tag IDs (separate IDs by comma):"
1317
+ msgstr "Filtrar por IDs de tags de eventos (separar IDs con comas):"
1318
+
1319
+ #: lib/exception/handler.php:395
1320
+ msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
+ msgstr ""
1322
+
1323
+ #: lib/exception/handler.php:404
1324
+ msgid "Try reactivating plugin"
1325
+ msgstr ""
1326
+
1327
+ #: lib/exception/handler.php:576
1328
+ msgid "Toggle error details"
1329
+ msgstr ""
1330
+
1331
+ #: lib/exception/handler.php:577
1332
+ msgid "Error Details:"
1333
+ msgstr ""
1334
+
1335
+ #: lib/factory/html.php:133
1336
+ msgid "Choose a date using calendar"
1337
+ msgstr "Elegir una fecha usando el calendario"
1338
+
1339
+ #: lib/factory/html.php:278
1340
+ msgid "Tags (optional)"
1341
+ msgstr "Etiquetas (opcional)"
1342
+
1343
+ #: lib/html/element/setting/cache.php:38
1344
+ msgid "Check again"
1345
+ msgstr "Revisa de nuevo"
1346
+
1347
+ #: lib/html/element/setting/cache.php:39
1348
+ msgid "Templates cache is not writable"
1349
+ msgstr "El cache de plantillas no es grabable"
1350
+
1351
+ #: lib/html/element/setting/cache.php:40
1352
+ msgid "Templates cache is writable"
1353
+ msgstr "Se puede grabar el cache de plantillas"
1354
+
1355
+ #: lib/html/element/setting/cache.php:41
1356
+ msgid "Checking..."
1357
+ msgstr "Revisando..."
1358
+
1359
+ #: lib/html/element/setting/cache.php:42
1360
+ msgid "Performance Report"
1361
+ msgstr "Reporte de rendimiento"
1362
+
1363
+ #: lib/html/element/setting/calendar-page-selector.php:70
1364
+ msgid "View"
1365
+ msgstr "Ver"
1366
+
1367
+ #: lib/html/element/setting/calendar-page-selector.php:114
1368
+ msgid "- Auto-Create New Page -"
1369
+ msgstr "- Crear página automáticamente -"
1370
+
1371
+ #: lib/html/element/setting/enabled-views.php:22
1372
+ msgid "Enabled"
1373
+ msgstr "Habilitado"
1374
+
1375
+ #: lib/html/element/setting/enabled-views.php:23
1376
+ msgid "Default"
1377
+ msgstr "Por defecto"
1378
+
1379
+ #: lib/html/element/setting/enabled-views.php:24
1380
+ msgid "Desktop"
1381
+ msgstr "Escritorio"
1382
+
1383
+ #: lib/html/element/setting/enabled-views.php:25
1384
+ msgid "Mobile"
1385
+ msgstr "Móvil"
1386
+
1387
+ #: lib/html/element/setting/html.php:37
1388
+ msgid "Embed the calendar using a shortcode"
1389
+ msgstr "Insertar el calendario usando un shortcode"
1390
+
1391
+ #: lib/html/element/setting/html.php:38
1392
+ msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
+ msgstr "Inserte uno de estos shortcodes en el \"body\" de la página para insertar el calendario en una página arbitraria de WordPress."
1394
+
1395
+ #: lib/html/element/setting/html.php:39
1396
+ msgid "Month view:"
1397
+ msgstr "Vista mensual:"
1398
+
1399
+ #: lib/html/element/setting/html.php:40
1400
+ msgid "Week view:"
1401
+ msgstr "Vista semanal:"
1402
+
1403
+ #: lib/css/frontend.php:239
1404
+ msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
+ msgstr ""
1406
+
1407
+ #: lib/css/frontend.php:266
1408
+ msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
+ msgstr "El archivo LESS se compiló correctamente pero hubo un error al guardar el archivo CSS que se creó."
1410
+
1411
+ #: lib/css/frontend.php:272
1412
+ msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
+ msgstr "<p><strong>Hubo un error al compilar el CSS.</strong> El mensaje recibido fue: <em>%s</em></p>"
1414
+
1415
+ #: lib/css/frontend.php:300
1416
+ msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
+ msgstr "Las opciones de tema se restauraron exitosamente a sus valores por defecto. <a href='%s'>Visita el sitio</a>"
1418
+
1419
+ #: lib/css/frontend.php:307
1420
+ msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
+ msgstr "Las opciones de tema se actualizaron exitosamente. <a href='%s'>Visita el sitio</a>"
1422
+
1423
+ #: lib/css/frontend.php:343
1424
+ msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
+ msgstr "Su CSS se está compilando en cada solicitud lo cual está causando que el calendario se desempeñe lentamente. El siguiente error ocurrió: %s"
1426
+
1427
+ #: lib/database/applicator.php:182
1428
+ msgid "Date columns in table %s have different types."
1429
+ msgstr "Las columnas de fechas en la tabla %s tienen diferentes tipos."
1430
+
1431
+ #: lib/database/exception/database.php:19
1432
+ msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
+ msgstr "La actualización de base de datos ha fallado. Asegúrate de que el usuario de base de datos, definido en <em>wp-config.php</em>, tiene permisos para hacer los cambios (<strong>ALTER TABLE</strong>) a la base de datos."
1434
+
1435
+ #: lib/database/exception/database.php:23
1436
+ msgid "Error encountered: %s"
1437
+ msgstr "Se encontró el error: %s"
1438
+
1439
+ #: lib/date/system.php:202
1440
+ msgid "GMT%+d:%02d"
1441
+ msgstr "GMT%+d:%02d"
1442
+
1443
+ #: lib/date/timezone.php:362
1444
+ msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
+ msgstr "Por favor selecciona la zona horaria del sitio en el menú desplegable de %s <em>Zona horaria</em>."
1446
+
1447
+ #: lib/date/timezone.php:397
1448
+ msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
+ msgstr "La zona horaria \"UTC%+d\" no se ha reconocido. Por favor usa un nombre de zona horaria %sválida%s, hasta entonces los eventos se crearán con la zona horaria UTC."
1450
+
1451
+ #: lib/date/timezone.php:421
1452
+ msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
+ msgstr "La zona horaria seleccionada \"UTC%+d\" será tratada como %s."
1454
+
1455
+ #: lib/date/timezone.php:490
1456
+ msgid "Manual Offset"
1457
+ msgstr "Desplazamiento Manual"
1458
+
1459
+ #: lib/date/timezone.php:493
1460
+ msgid "Choose your timezone"
1461
+ msgstr "Seleccione su Zona Horaria"
1462
+
1463
+ #: lib/environment/check.php:55
1464
+ msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
+ msgstr "Elija una opción de la lista desplegable <strong>Página de calendario</strong>."
1466
+
1467
+ #: lib/environment/check.php:68
1468
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
+ msgstr "El plugin ha sido instalado, pero aún no ha sido configurado. <a href=\"%s\">Haga click aquí para configurarlo ahora &raquo;</a>"
1470
+
1471
+ #: lib/environment/check.php:78
1472
+ msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
+ msgstr "El plugin ha sido instalado, pero aún no ha sido configurado. Por favor identifíquese como Administrador para configurarlo."
1474
+
1475
+ #: lib/environment/check.php:196
1476
+ msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
+ msgstr ""
1478
+
1479
+ #: lib/environment/check.php:197
1480
+ msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
+ msgstr ""
1482
+
1483
+ #: lib/exception/handler.php:176
1484
+ msgid "The add-on \"%s\" has been disabled due to an error:"
1485
+ msgstr ""
1486
+
1487
+ #: lib/calendar-feed/ics.php:367
1488
+ msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
+ msgstr "¿Te gustaría eliminar o mantener estos eventos de tu calendario?"
1490
+
1491
+ #: lib/calendar-feed/ics.php:373
1492
+ msgid "Removing ICS Feed"
1493
+ msgstr "Eliminar fuente ICS"
1494
+
1495
+ #: lib/calendar-feed/ics.php:376
1496
+ msgid "Keep Events"
1497
+ msgstr "Mantener Eventos"
1498
+
1499
+ #: lib/calendar-feed/ics.php:379
1500
+ msgid "Remove Events"
1501
+ msgstr "Eliminar Eventos nuevo"
1502
+
1503
+ #: lib/calendar-feed/ics.php:519
1504
+ msgid "Oh, submission was not accepted."
1505
+ msgstr ""
1506
+
1507
+ #: lib/calendar-feed/ics.php:699
1508
+ msgid "Deleted %d events"
1509
+ msgstr "Borrados %d eventos."
1510
+
1511
+ #: lib/calendar-feed/ics.php:735
1512
+ msgid "Feed deleted"
1513
+ msgstr "Fuente Borrada"
1514
+
1515
+ #: lib/captcha/provider/nocaptcha.php:31
1516
+ msgid "noCAPTCHA public key:"
1517
+ msgstr ""
1518
+
1519
+ #: lib/captcha/provider/nocaptcha.php:47
1520
+ msgid "noCAPTCHA private key:"
1521
+ msgstr ""
1522
+
1523
+ #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
+ msgid "Please try verifying you are human again."
1525
+ msgstr ""
1526
+
1527
+ #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
+ msgid "There was an error reading the human verification data. Please try again."
1529
+ msgstr ""
1530
+
1531
+ #: lib/captcha/provider/recaptcha.php:32
1532
+ msgid "reCAPTCHA public key:"
1533
+ msgstr ""
1534
+
1535
+ #: lib/captcha/provider/recaptcha.php:48
1536
+ msgid "reCAPTCHA private key:"
1537
+ msgstr ""
1538
+
1539
+ #: lib/captcha/provider/recaptcha.php:66
1540
+ msgid "Human verification"
1541
+ msgstr ""
1542
+
1543
+ #: lib/captcha/provider/recaptcha.php:67
1544
+ msgid "Loading reCAPTCHA..."
1545
+ msgstr ""
1546
+
1547
+ #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
+ #: lib/clone/renderer-helper.php:45
1549
+ msgid "Clone"
1550
+ msgstr "Clonar"
1551
+
1552
+ #: lib/clone/renderer-helper.php:44
1553
+ msgid "Make new copy of event"
1554
+ msgstr "Hacer una copia nueva del evento"
1555
+
1556
+ #: lib/clone/renderer-helper.php:47
1557
+ msgid "Copy to a new draft"
1558
+ msgstr "Copiar a un nuevo borrador"
1559
+
1560
+ #: lib/clone/renderer-helper.php:48
1561
+ msgid "Clone to Draft"
1562
+ msgstr "Clonar al borrador"
1563
+
1564
+ #: lib/command/clone.php:173
1565
+ msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
+ msgstr "<p>El evento <strong>%s</strong> se clonó exitosamente. <a href=\"%s\">Editar evento clonado</a></p>"
1567
+
1568
+ #: lib/compatibility/check.php:101
1569
+ msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
+ msgstr ""
1571
+
1572
+ #: app/view/event/single.php:123
1573
+ msgid "Tickets:"
1574
+ msgstr ""
1575
+
1576
+ #: app/view/event/single.php:124
1577
+ msgid "Free"
1578
+ msgstr "Gratis"
1579
+
1580
+ #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
+ msgid "Buy Tickets"
1582
+ msgstr "Comprar entradas"
1583
+
1584
+ #: app/view/event/single.php:150
1585
+ msgid "Edit this occurrence (%s)"
1586
+ msgstr "Edita esta ocurrencia (%s)"
1587
+
1588
+ #: app/view/event/single.php:195
1589
+ msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
+ msgstr ""
1591
+
1592
+ #: app/view/event/single.php:206
1593
+ msgid "View original"
1594
+ msgstr ""
1595
+
1596
+ #: app/view/event/taxonomy.php:113
1597
+ msgid "Category image"
1598
+ msgstr "Imagen de categoría"
1599
+
1600
+ #: app/view/event/ticket.php:24
1601
+ msgid "Register Now"
1602
+ msgstr "Registrarse ahora"
1603
+
1604
+ #: app/view/event/ticket.php:82
1605
+ msgid "Event website"
1606
+ msgstr "Sitio web del evento"
1607
+
1608
+ #: app/view/event/time.php:84 app/view/event/time.php:118
1609
+ msgctxt "Event time separator"
1610
+ msgid " @ "
1611
+ msgstr " a las "
1612
+
1613
+ #: app/view/event/time.php:100
1614
+ msgctxt "Event start/end separator"
1615
+ msgid " – "
1616
+ msgstr " – "
1617
+
1618
+ #: app/view/event/time.php:166
1619
+ msgid ", and "
1620
+ msgstr " y "
1621
+
1622
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
+ msgid "Excludes: "
1624
+ msgstr ""
1625
+
1626
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
+ msgid "Repeats"
1628
+ msgstr ""
1629
+
1630
+ #: lib/calendar-feed/ics.php:38
1631
+ msgid "ICS"
1632
+ msgstr "ICS"
1633
+
1634
+ #: lib/calendar-feed/ics.php:69
1635
+ msgid "Another import process in progress. Please try again later."
1636
+ msgstr "Existe otro proceso de importación en progreso. Por favor inténtelo nuevamente más tarde."
1637
+
1638
+ #: lib/calendar-feed/ics.php:174
1639
+ msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
+ msgstr "Un error del sistema impide que se recuperen los datos del calendario. Algo impide que el plugin funcione correctamente. Este mensaje te dará más información: %s"
1641
+
1642
+ #: lib/calendar-feed/ics.php:181
1643
+ msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
+ msgstr "Los datos del calendario no se pueden recuperar. Si la URL es correcta y apunta a un recurso de tipo iCalendar, se debe probablemente a un error transitorio del servidor y se resolverá con el tiempo"
1645
+
1646
+ #: lib/calendar-feed/ics.php:195
1647
+ msgid "Imported %s event"
1648
+ msgid_plural "Imported %s events"
1649
+ msgstr[0] "Importado %s evento"
1650
+ msgstr[1] "Importados %s eventos"
1651
+
1652
+ #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
+ msgid "Invalid ICS feed ID"
1654
+ msgstr "ID de fuente ICS inválida"
1655
+
1656
+ #: lib/calendar-feed/ics.php:350
1657
+ msgid "Categories (optional)"
1658
+ msgstr "Categorías (opcional)"
1659
+
1660
+ #: app/view/event/content.php:33 app/view/event/single.php:119
1661
+ msgid "When:"
1662
+ msgstr "Cuando:"
1663
+
1664
+ #: app/view/event/content.php:34 app/view/event/single.php:120
1665
+ msgid "Where:"
1666
+ msgstr "Donde:"
1667
+
1668
+ #: app/view/event/content.php:125
1669
+ msgid "Calendar"
1670
+ msgstr ""
1671
+
1672
+ #: app/view/event/content.php:126
1673
+ msgid "View all events"
1674
+ msgstr "Ver todos los eventos"
1675
+
1676
+ #: app/view/event/location.php:96
1677
+ msgid "Click to view map"
1678
+ msgstr "Pulsar para ver el mapa"
1679
+
1680
+ #: app/view/event/location.php:97
1681
+ msgid "View Full-Size Map"
1682
+ msgstr "Ver mapa a tamaño completo"
1683
+
1684
+ #: app/view/event/post.php:29
1685
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1686
+ msgstr "Evento actualizado. <a href=\"%s\">Ver evento</a>"
1687
+
1688
+ #: app/view/event/post.php:32
1689
+ msgid "Custom field updated."
1690
+ msgstr "Campo personalizado actualizado."
1691
+
1692
+ #: app/view/event/post.php:33
1693
+ msgid "Custom field deleted."
1694
+ msgstr "Campo personalizado borrado."
1695
+
1696
+ #: app/view/event/post.php:34
1697
+ msgid "Event updated."
1698
+ msgstr "Evento actualizado."
1699
+
1700
+ #. translators: %s: date and time of the revision
1701
+ #: app/view/event/post.php:38
1702
+ msgid "Event restored to revision from %s"
1703
+ msgstr "Evento restaurado a la revisión del %s."
1704
+
1705
+ #: app/view/event/post.php:43
1706
+ msgid "Event published. <a href=\"%s\">View event</a>"
1707
+ msgstr "Evento publicado. <a href=\"%s\">Ver evento</a>"
1708
+
1709
+ #: app/view/event/post.php:46
1710
+ msgid "Event saved."
1711
+ msgstr "Evento guardado."
1712
+
1713
+ #: app/view/event/post.php:48
1714
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
+ msgstr "Evento enviado. <a target=\"_blank\" href=\"%s\">Previsualizar evento</a>"
1716
+
1717
+ #: app/view/event/post.php:52
1718
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
+ msgstr "Evento programado para: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Previsualizar evento</a>"
1720
+
1721
+ #. translators: Publish box date format, see http:php.net/date
1722
+ #: app/view/event/post.php:54
1723
+ msgid "M j, Y @ G:i"
1724
+ msgstr "j \\d\\e F \\d\\e Y G:i"
1725
+
1726
+ #: app/view/event/post.php:58
1727
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
+ msgstr "Borrador de evento actualizado. <a target=\"_blank\" href=\"%s\">Previsualizar evento</a>"
1729
+
1730
+ #: app/view/event/single.php:78
1731
+ msgid "Event was created in the %s time zone"
1732
+ msgstr ""
1733
+
1734
+ #: app/view/event/single.php:114
1735
+ msgid "Add to Calendar"
1736
+ msgstr "Añadir al Calendario"
1737
+
1738
+ #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
+ msgid "Cost:"
1740
+ msgstr "Precio:"
1741
+
1742
+ #: app/view/event/single.php:122
1743
+ msgid "Contact:"
1744
+ msgstr "Contacto:"
1745
+
1746
+ #: app/view/calendar/view/agenda.php:169
1747
+ msgid "Categories:"
1748
+ msgstr "Categorías:"
1749
+
1750
+ #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
+ #: public/admin/themes.php:29
1752
+ msgid "Tags:"
1753
+ msgstr "Etiquetas:"
1754
+
1755
+ #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
+ #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
+ #: app/view/calendar/widget.php:374
1758
+ msgid "@ %s"
1759
+ msgstr "@ %s"
1760
+
1761
+ #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
+ msgid "g a"
1763
+ msgstr "g a"
1764
+
1765
+ #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
+ msgid "Reveal full day"
1767
+ msgstr "Mostrar todo el día"
1768
+
1769
+ #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
+ msgid "All-day"
1771
+ msgstr "Todo el día"
1772
+
1773
+ #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
+ msgid "Now:"
1775
+ msgstr "Ahora:"
1776
+
1777
+ #: app/view/calendar/view/week.php:67
1778
+ msgid "Week of %s"
1779
+ msgstr "Semana de %s"
1780
+
1781
+ #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
+ msgid "Upcoming Events"
1783
+ msgstr "Eventos programados"
1784
+
1785
+ #: app/view/calendar/widget.php:38
1786
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
+ msgstr "All-in-One Event Calendar: Lista de eventos en vista Agenda"
1788
+
1789
+ #: app/view/calendar/widget.php:80
1790
+ msgid "Choose how to limit the upcoming events"
1791
+ msgstr ""
1792
+
1793
+ #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
+ msgid "Events"
1795
+ msgstr "Eventos"
1796
+
1797
+ #: app/view/calendar/widget.php:93
1798
+ msgid "Days"
1799
+ msgstr "Días"
1800
+
1801
+ #: app/view/calendar/widget.php:106
1802
+ msgid "Number of events to show"
1803
+ msgstr "Número de eventos a mostrar"
1804
+
1805
+ #: app/view/calendar/widget.php:115
1806
+ msgid "Number of days to show"
1807
+ msgstr "Número de días a mostrar"
1808
+
1809
+ #: app/view/calendar/widget.php:124
1810
+ msgid "Show events filtered for the following tags/categories"
1811
+ msgstr "Filtrar eventos por las siguientes etiquetas/categorías"
1812
+
1813
+ #: app/view/calendar/widget.php:141
1814
+ msgid "Show the subscribe button in the widget"
1815
+ msgstr ""
1816
+
1817
+ #: app/view/calendar/widget.php:370
1818
+ msgid "There are no upcoming events."
1819
+ msgstr "No hay nuevos eventos."
1820
+
1821
+ #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
+ msgid "all-day"
1823
+ msgstr "todo el día"
1824
+
1825
+ #: app/view/calendar/widget.php:372
1826
+ msgid "View Calendar"
1827
+ msgstr "Ver Calendario"
1828
+
1829
+ #: app/view/calendar/widget.php:375
1830
+ msgid "Add"
1831
+ msgstr "Añadir"
1832
+
1833
+ #: app/view/calendar/page.php:260
1834
+ msgid "Subscribe to filtered calendar"
1835
+ msgstr "Suscribirse a calendario filtrado"
1836
+
1837
+ #: app/view/calendar/page.php:261
1838
+ msgid "Subscribe"
1839
+ msgstr "Suscribirse"
1840
+
1841
+ #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
+ msgid "Get a Timely Calendar"
1843
+ msgstr ""
1844
+
1845
+ #: app/view/calendar/subscribe-button.php:22
1846
+ msgid "Add to Timely Calendar"
1847
+ msgstr "Añadir a Timely Calendar"
1848
+
1849
+ #: app/view/calendar/subscribe-button.php:23
1850
+ msgid "Add to Google"
1851
+ msgstr "Añadir a Google"
1852
+
1853
+ #: app/view/calendar/subscribe-button.php:24
1854
+ msgid "Add to Outlook"
1855
+ msgstr "Agregar a Outlook"
1856
+
1857
+ #: app/view/calendar/subscribe-button.php:25
1858
+ msgid "Add to Apple Calendar"
1859
+ msgstr "Agregar a Apple Calendar"
1860
+
1861
+ #: app/view/calendar/subscribe-button.php:26
1862
+ msgid "Add to other calendar"
1863
+ msgstr "Agregar a otro calendario"
1864
+
1865
+ #: app/view/calendar/subscribe-button.php:29
1866
+ msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
+ msgstr "Copia esta URL de tu propio calendario Timely o haz click para agregar a tu calendario de texto-enriquecido"
1868
+
1869
+ #: app/view/calendar/subscribe-button.php:30
1870
+ msgid "Subscribe to this calendar in your Google Calendar"
1871
+ msgstr "Suscribete a este calendario en tu Google Calendar"
1872
+
1873
+ #: app/view/calendar/subscribe-button.php:31
1874
+ msgid "Subscribe to this calendar in MS Outlook"
1875
+ msgstr "Suscríbete a este calendario en tu MS Outlook"
1876
+
1877
+ #: app/view/calendar/subscribe-button.php:32
1878
+ msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
+ msgstr "Suscríbete a este calendario en Apple Calendar / iCal"
1880
+
1881
+ #: app/view/calendar/subscribe-button.php:33
1882
+ msgid "Subscribe to this calendar in another plain-text calendar"
1883
+ msgstr "Suscribirse a este calendario en la agenda de otro de texto plano"
1884
+
1885
+ #: app/view/calendar/taxonomy.php:97
1886
+ msgid "Clear category filter"
1887
+ msgstr "Eliminar filtro de categoría"
1888
+
1889
+ #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
+ #: lib/html/element/setting/tags-categories.php:47
1891
+ msgid "Categories"
1892
+ msgstr "Categorías"
1893
+
1894
+ #: app/view/calendar/taxonomy.php:99
1895
+ msgid "Clear tag filter"
1896
+ msgstr "Eliminar filtro de etiqueta"
1897
+
1898
+ #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
+ #: lib/html/element/setting/tags-categories.php:39
1900
+ msgid "Tags"
1901
+ msgstr "Etiquetas:"
1902
+
1903
+ #: app/view/calendar/view/agenda.php:142
1904
+ msgid "Collapse All"
1905
+ msgstr "Cerrar todo"
1906
+
1907
+ #: app/view/calendar/view/agenda.php:143
1908
+ msgid "Expand All"
1909
+ msgstr "Expandir todo"
1910
+
1911
+ #: app/view/calendar/view/agenda.php:166
1912
+ msgid "There are no upcoming events to display at this time."
1913
+ msgstr "No hay nuevos eventos para mostrar en esta fecha."
1914
+
1915
+ #: app/view/calendar/view/agenda.php:168
1916
+ msgid "Read more"
1917
+ msgstr "Leer más"
1918
+
1919
+ #: app/view/admin/tickets.php:86
1920
+ msgid "Sales"
1921
+ msgstr ""
1922
+
1923
+ #: app/view/admin/tickets.php:87
1924
+ msgid "How do you want the tickets revenue to be sent to you?"
1925
+ msgstr ""
1926
+
1927
+ #: app/view/admin/tickets.php:88
1928
+ msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
+ msgstr ""
1930
+
1931
+ #: app/view/admin/tickets.php:91
1932
+ msgid "Cheque"
1933
+ msgstr ""
1934
+
1935
+ #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
+ msgid "Paypal"
1937
+ msgstr "Paypal"
1938
+
1939
+ #: app/view/admin/tickets.php:94
1940
+ msgid "Save Changes"
1941
+ msgstr ""
1942
+
1943
+ #: app/view/admin/tickets.php:95
1944
+ msgid "Date"
1945
+ msgstr ""
1946
+
1947
+ #: app/view/admin/tickets.php:96
1948
+ msgid "Event"
1949
+ msgstr ""
1950
+
1951
+ #: app/view/admin/tickets.php:97
1952
+ msgid "Purchaser"
1953
+ msgstr ""
1954
+
1955
+ #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
+ #: public/admin/box_event_cost.php:35
1957
+ msgid "Tickets"
1958
+ msgstr "Entradas"
1959
+
1960
+ #: app/view/admin/tickets.php:101
1961
+ msgid "Total"
1962
+ msgstr ""
1963
+
1964
+ #: app/view/admin/tickets.php:102
1965
+ msgid "Sign Out"
1966
+ msgstr ""
1967
+
1968
+ #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
+ #: app/view/admin/widget-creator.php:47
1970
+ msgid "Widget Creator"
1971
+ msgstr ""
1972
+
1973
+ #: app/view/admin/widget-creator.php:74
1974
+ msgctxt "meta box"
1975
+ msgid "Widget Creator"
1976
+ msgstr ""
1977
+
1978
+ #: app/view/admin/widget-creator.php:131
1979
+ msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
+ msgstr ""
1981
+
1982
+ #: app/view/admin/widget-creator.php:132
1983
+ msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
+ msgstr ""
1985
+
1986
+ #: app/view/admin/widget-creator.php:134
1987
+ msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
+ msgstr ""
1989
+
1990
+ #: app/view/admin/widget-creator.php:140
1991
+ msgid "Paste this code onto your site:"
1992
+ msgstr "Pega este código en tu sitio:"
1993
+
1994
+ #: app/view/admin/widget-creator.php:141
1995
+ msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
+ msgstr ""
1997
+
1998
+ #: app/view/calendar/page.php:54
1999
+ msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
+ msgstr "Hubo un error al cargar el calendario. Por favor contacta al administrador del sitio para que configure las vistas de calendario."
2001
+
2002
+ #: app/view/calendar/page.php:74
2003
+ msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
+ msgstr ""
2005
+
2006
+ #: app/view/admin/settings.php:193
2007
+ msgid "Phone Number:"
2008
+ msgstr ""
2009
+
2010
+ #: app/view/admin/settings.php:194
2011
+ msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
+ msgstr ""
2013
+
2014
+ #: app/view/admin/settings.php:197
2015
+ msgid "Sign Up"
2016
+ msgstr ""
2017
+
2018
+ #: app/view/admin/settings.php:198
2019
+ msgid "Sign In"
2020
+ msgstr ""
2021
+
2022
+ #: app/view/admin/settings.php:212
2023
+ msgid "Save Settings"
2024
+ msgstr "Guardar ajustes"
2025
+
2026
+ #: app/view/admin/settings.php:219
2027
+ msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
+ msgstr "Si el formulario de abajo no está funcionando, por favor sigue <a href=\"%s\">esta liga</a>."
2029
+
2030
+ #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
+ msgid "Theme Options"
2032
+ msgstr "Opciones de tema"
2033
+
2034
+ #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
+ msgid "Calendar Theme Options"
2036
+ msgstr "Opciones de tema de calendario"
2037
+
2038
+ #: app/view/admin/theme-options.php:79
2039
+ msgctxt "meta box"
2040
+ msgid "Calendar Theme Options"
2041
+ msgstr "Opciones de tema de calendario"
2042
+
2043
+ #: app/view/admin/theme-options.php:133
2044
+ msgid "General"
2045
+ msgstr "General"
2046
+
2047
+ #: app/view/admin/theme-options.php:136
2048
+ msgid "Tables"
2049
+ msgstr "Tablas"
2050
+
2051
+ #: app/view/admin/theme-options.php:139
2052
+ msgid "Buttons"
2053
+ msgstr "Botones"
2054
+
2055
+ #: app/view/admin/theme-options.php:142
2056
+ msgid "Forms"
2057
+ msgstr "Formularios"
2058
+
2059
+ #: app/view/admin/theme-options.php:145
2060
+ msgid "Calendar general"
2061
+ msgstr "General de calendario"
2062
+
2063
+ #: app/view/admin/theme-options.php:148
2064
+ msgid "Month/week/day view"
2065
+ msgstr "Vista de mes/semana/día"
2066
+
2067
+ #: app/view/admin/theme-options.php:151
2068
+ msgid "Agenda view"
2069
+ msgstr "Vista de agenda"
2070
+
2071
+ #: app/view/admin/theme-options.php:169
2072
+ msgid "Save Options"
2073
+ msgstr "Guardar opciones"
2074
+
2075
+ #: app/view/admin/theme-options.php:177
2076
+ msgid "Reset to Defaults"
2077
+ msgstr "Restaurar a opciones por defecto"
2078
+
2079
+ #: app/view/admin/theme-switching.php:31
2080
+ msgid "All-in-One Event Calendar: Themes"
2081
+ msgstr "Temas: All-in-One Event Calendar"
2082
+
2083
+ #: app/view/admin/tickets.php:36
2084
+ msgid "Ticketing"
2085
+ msgstr ""
2086
+
2087
+ #: app/view/admin/tickets.php:37
2088
+ msgid "Ticketing<sup>beta</sup>"
2089
+ msgstr ""
2090
+
2091
+ #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
+ msgid "Time.ly Ticketing<sup>beta</sup>"
2093
+ msgstr ""
2094
+
2095
+ #: app/view/admin/settings.php:98
2096
+ msgctxt "meta box"
2097
+ msgid "Timely"
2098
+ msgstr "Timely"
2099
+
2100
+ #: app/view/admin/settings.php:140
2101
+ msgid "Viewing Events"
2102
+ msgstr "Visualización de eventos"
2103
+
2104
+ #: app/view/admin/settings.php:143
2105
+ msgid "Adding/Editing Events"
2106
+ msgstr "Creación/Modificación de eventos"
2107
+
2108
+ #: app/view/admin/settings.php:146
2109
+ msgid "Advanced"
2110
+ msgstr "Avanzado"
2111
+
2112
+ #: app/view/admin/settings.php:148
2113
+ msgid "Advanced Settings"
2114
+ msgstr "Ajustes avanzados"
2115
+
2116
+ #: app/view/admin/settings.php:149
2117
+ msgid "Shortcodes"
2118
+ msgstr "Códigos abreviados"
2119
+
2120
+ #: app/view/admin/settings.php:150
2121
+ msgid "Email Templates"
2122
+ msgstr "Plantillas de correo electrónico"
2123
+
2124
+ #: app/view/admin/settings.php:151
2125
+ msgid "External Services"
2126
+ msgstr "Servicios externos"
2127
+
2128
+ #: app/view/admin/settings.php:152
2129
+ msgid "Cache Report"
2130
+ msgstr "Reporte de caché"
2131
+
2132
+ #: app/view/admin/settings.php:171
2133
+ msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
+ msgstr ""
2135
+
2136
+ #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
+ #: public/admin/box_ask_customer_review.php:112
2138
+ #: public/admin/box_ask_customer_review.php:126
2139
+ #: public/admin/box_ask_customer_review.php:140
2140
+ #: public/admin/box_ask_customer_review.php:158
2141
+ #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
+ msgid "This field is required."
2143
+ msgstr ""
2144
+
2145
+ #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
+ msgid "Register"
2147
+ msgstr "Registrarse"
2148
+
2149
+ #: app/view/admin/settings.php:184
2150
+ msgid "Sign in"
2151
+ msgstr ""
2152
+
2153
+ #: app/view/admin/settings.php:185
2154
+ msgid "You are successfully signed in to <b>Timely Network</b>."
2155
+ msgstr ""
2156
+
2157
+ #: app/view/admin/settings.php:186
2158
+ msgid "Sign out"
2159
+ msgstr ""
2160
+
2161
+ #: app/view/admin/settings.php:187
2162
+ msgid "Hide form"
2163
+ msgstr ""
2164
+
2165
+ #: app/view/admin/settings.php:188
2166
+ msgid "Show form"
2167
+ msgstr ""
2168
+
2169
+ #: app/view/admin/settings.php:189
2170
+ msgid "Full Name:"
2171
+ msgstr ""
2172
+
2173
+ #: app/view/admin/settings.php:190
2174
+ msgid "Email:"
2175
+ msgstr ""
2176
+
2177
+ #: app/view/admin/settings.php:191
2178
+ msgid "Password:"
2179
+ msgstr ""
2180
+
2181
+ #: app/view/admin/settings.php:192
2182
+ msgid "Confirm Password:"
2183
+ msgstr ""
2184
+
2185
+ #: app/view/admin/get-repeat-box.php:483
2186
+ msgid "fourth"
2187
+ msgstr "cuarto"
2188
+
2189
+ #: app/view/admin/get-repeat-box.php:495
2190
+ msgid "Sunday"
2191
+ msgstr "Domingo"
2192
+
2193
+ #: app/view/admin/get-repeat-box.php:496
2194
+ msgid "Monday"
2195
+ msgstr "Lunes"
2196
+
2197
+ #: app/view/admin/get-repeat-box.php:497
2198
+ msgid "Tuesday"
2199
+ msgstr "Martes"
2200
+
2201
+ #: app/view/admin/get-repeat-box.php:498
2202
+ msgid "Wednesday"
2203
+ msgstr "Miércoles"
2204
+
2205
+ #: app/view/admin/get-repeat-box.php:499
2206
+ msgid "Thursday"
2207
+ msgstr "Jueves"
2208
+
2209
+ #: app/view/admin/get-repeat-box.php:500
2210
+ msgid "Friday"
2211
+ msgstr "Viernes"
2212
+
2213
+ #: app/view/admin/get-repeat-box.php:501
2214
+ msgid "Saturday"
2215
+ msgstr "Sábados"
2216
+
2217
+ #: app/view/admin/get-repeat-box.php:503
2218
+ msgid "day"
2219
+ msgstr "día"
2220
+
2221
+ #: app/view/admin/get-repeat-box.php:504
2222
+ msgid "weekday"
2223
+ msgstr "Días laborables"
2224
+
2225
+ #: app/view/admin/get-repeat-box.php:505
2226
+ msgid "weekend day"
2227
+ msgstr "Fines de semana"
2228
+
2229
+ #: app/view/admin/get-repeat-box.php:571
2230
+ msgid "year(s)"
2231
+ msgstr "año(s)"
2232
+
2233
+ #: app/view/admin/nav.php:22
2234
+ msgid "<a href=\"%s\">Settings</a>"
2235
+ msgstr "<a href=\"%s\">Ajustes</a>"
2236
+
2237
+ #: app/view/admin/nav.php:28
2238
+ msgid "<a href=\"%s\">Check for updates</a>"
2239
+ msgstr ""
2240
+
2241
+ #: app/view/admin/organize.php:100
2242
+ msgid "Organize Events"
2243
+ msgstr ""
2244
+
2245
+ #: app/view/admin/settings.php:30
2246
+ msgid "All-in-One Event Calendar: Settings"
2247
+ msgstr "Ajustes de All-in-One Event Calendar:"
2248
+
2249
+ #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
+ #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
+ msgid "Settings"
2252
+ msgstr "Ajustes"
2253
+
2254
+ #: app/view/admin/settings.php:89
2255
+ msgctxt "meta box"
2256
+ msgid "General Settings"
2257
+ msgstr "Ajustes generales"
2258
+
2259
+ #: app/view/admin/get-repeat-box.php:480
2260
+ msgid "first"
2261
+ msgstr "primero"
2262
+
2263
+ #: app/view/admin/get-repeat-box.php:481
2264
+ msgid "second"
2265
+ msgstr "segundo"
2266
+
2267
+ #: app/view/admin/get-repeat-box.php:482
2268
+ msgid "third"
2269
+ msgstr "tercero"
2270
+
2271
+ #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
+ msgid "Import Feeds"
2273
+ msgstr ""
2274
+
2275
+ #: app/view/admin/calendar-feeds.php:48
2276
+ msgctxt "meta box"
2277
+ msgid "Feed Subscriptions"
2278
+ msgstr "Subscripciones a Fuentes"
2279
+
2280
+ #: app/view/admin/calendar-feeds.php:65
2281
+ msgid "All-in-One Event Calendar: Import Feeds"
2282
+ msgstr ""
2283
+
2284
+ #: app/view/admin/event-category.php:30
2285
+ msgid "Color"
2286
+ msgstr "Color"
2287
+
2288
+ #: app/view/admin/event-category.php:32
2289
+ msgid "Image"
2290
+ msgstr "Imagen"
2291
+
2292
+ #: app/view/admin/event-category.php:155
2293
+ msgid "Category Color"
2294
+ msgstr "Color de categoría"
2295
+
2296
+ #: app/view/admin/event-category.php:156
2297
+ msgid "Events in this category will be identified by this color"
2298
+ msgstr "Los eventos de esta categoría se identificarán con este color."
2299
+
2300
+ #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
+ msgid "Category Image"
2302
+ msgstr "Imagen de categoría"
2303
+
2304
+ #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
+ msgid "Add Image"
2306
+ msgstr "Agregar imagen"
2307
+
2308
+ #: app/view/admin/event-category.php:195
2309
+ msgid "Remove Image"
2310
+ msgstr "Remover imagen"
2311
+
2312
+ #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
+ msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
+ msgstr "Asignar una imagen opcional a la categoría. Tamaño recomendado: cuadrado, mínimo de 400&times;400 pixeles."
2315
+
2316
+ #: app/view/admin/get-repeat-box.php:94
2317
+ msgid "times"
2318
+ msgstr "veces"
2319
+
2320
+ #: app/view/admin/get-repeat-box.php:164
2321
+ msgid "Recurrence rule cannot be empty."
2322
+ msgstr "La regla de recurrencia no puede estar vacía."
2323
+
2324
+ #: app/view/admin/get-repeat-box.php:182
2325
+ msgid "Recurrence rule was not provided."
2326
+ msgstr "No se proporcionó regla de recurrencia."
2327
+
2328
+ #: app/view/admin/get-repeat-box.php:209
2329
+ msgid "Never"
2330
+ msgstr "Nunca"
2331
+
2332
+ #: app/view/admin/get-repeat-box.php:210
2333
+ msgid "After"
2334
+ msgstr "Número de veces"
2335
+
2336
+ #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
+ msgid "On date"
2338
+ msgstr "Fecha concreta"
2339
+
2340
+ #: app/view/admin/get-repeat-box.php:247
2341
+ msgid "day(s)"
2342
+ msgstr "día(s)"
2343
+
2344
+ #: app/view/admin/get-repeat-box.php:330
2345
+ msgid "week(s)"
2346
+ msgstr "semana(s)"
2347
+
2348
+ #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
+ #: lib/recurrence/rule.php:298
2350
+ msgid "last"
2351
+ msgstr "último"
2352
+
2353
+ #: app/view/admin/get-repeat-box.php:426
2354
+ msgid "month(s)"
2355
+ msgstr "Mes(es)"
2356
+
2357
+ #: app/model/settings.php:929
2358
+ msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
+ msgstr "<strong>Incluye CSS</strong> en la sección <code>&lt;head&gt;</code> cuando la caché de ficheros js no esté disponible."
2360
+
2361
+ #: app/model/settings.php:932
2362
+ msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
+ msgstr "Utiliza esta opción si la caché de ficheros no está disponible y si prefieres servir el fichero CSS como si fuera un enlace en lugar de incluirlo directamente."
2364
+
2365
+ #: app/model/settings.php:944
2366
+ msgid "Current <strong>robots.txt</strong> on this site"
2367
+ msgstr "El <strong>robots.txt</strong> actual en este sitio"
2368
+
2369
+ #: app/model/settings.php:948
2370
+ msgid ""
2371
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
+ "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
+ "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
+ "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
+ "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
+ msgstr ""
2377
+ "El Robot Exclusion Standard, también conocido como el Robots Exclusion Protocol o\n"
2378
+ "→\t→\t→\t→\t→\t→\tprotocolo <code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>,\n"
2379
+ "→\t→\t→\t→\t→\t→\tes una convención para rastreadores web y robots web cooperadores\n"
2380
+ "→\t→\t→\t→\t→\t→\tsobre accesar todo o parte de un sitio web que está a la vista públicamente.\n"
2381
+ "→\t→\t→\t→\t→\t→\tPuedes cambiarlo manualmente al editar <code>robots.txt</code> en el directorio raíz de WordPress."
2382
+
2383
+ #: app/model/settings.php:965
2384
+ msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2385
+ msgstr "<strong>Difunde, promociona y comparte</strong> entre los miembros de la red Timely los eventos seleccionados como públicos. (<a href=\"%s\" target=\"_blank\">Ver más &#187;</a>)"
2386
+
2387
+ #: app/model/settings.php:988
2388
+ msgid "Templates cache improves site performance"
2389
+ msgstr "El cache de plantillas mejora el desempeño del sitio"
2390
+
2391
+ #: app/model/settings.php:1001
2392
+ msgid "Display events in <strong>calendar time zone</strong>"
2393
+ msgstr ""
2394
+
2395
+ #: app/model/settings.php:1004
2396
+ msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
+ msgstr ""
2398
+
2399
+ #: app/view/admin/add-new-event.php:26
2400
+ msgid "Event Details"
2401
+ msgstr "Detalles del evento"
2402
+
2403
+ #: app/view/admin/add-new-event.php:423
2404
+ msgid "Set banner image"
2405
+ msgstr ""
2406
+
2407
+ #: app/view/admin/add-new-event.php:424
2408
+ msgid "Remove banner image"
2409
+ msgstr ""
2410
+
2411
+ #: app/view/admin/add-ons.php:68
2412
+ msgid "Add-ons for All In One Event Calendar"
2413
+ msgstr ""
2414
+
2415
+ #: app/view/admin/add-ons.php:71
2416
+ msgid "Browse All Extensions"
2417
+ msgstr ""
2418
+
2419
+ #: app/view/admin/add-ons.php:74
2420
+ msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
+ msgstr ""
2422
+
2423
+ #: app/view/admin/add-ons.php:77
2424
+ msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
+ msgstr ""
2426
+
2427
+ #: app/view/admin/all-events.php:16
2428
+ msgid "Author"
2429
+ msgstr "Autor"
2430
+
2431
+ #: app/view/admin/all-events.php:17
2432
+ msgid "Post Date"
2433
+ msgstr "Fecha de publicación"
2434
+
2435
+ #: app/view/admin/all-events.php:18
2436
+ msgid "Event date/time"
2437
+ msgstr "Fecha/hora del evento"
2438
+
2439
+ #: app/view/admin/all-events.php:22
2440
+ msgid "Ticket Types"
2441
+ msgstr ""
2442
+
2443
+ #: app/view/admin/all-events.php:134
2444
+ msgid "Show All "
2445
+ msgstr "Mostrar Todo"
2446
+
2447
+ #: app/view/admin/all-events.php:147
2448
+ msgid "Show All Authors"
2449
+ msgstr ""
2450
+
2451
+ #: app/model/settings.php:746
2452
+ msgid "Strict compatibility content filtering"
2453
+ msgstr "Filtrado de contenido en modo de compatibilidad estricta"
2454
+
2455
+ #: app/model/settings.php:758
2456
+ msgid " <strong>Hide featured image</strong> from event details page"
2457
+ msgstr " <strong>Esconder la imagen destacada</strong> de la página de detalles del evento"
2458
+
2459
+ #: app/model/settings.php:761
2460
+ msgid "Select this option if your theme already displays each post's featured image."
2461
+ msgstr "Selecciona esta opción si tu tema ya despliega la imagen destacada de cada publicación."
2462
+
2463
+ #: app/model/settings.php:772
2464
+ msgid "Input dates in this format"
2465
+ msgstr "Introducir fechas en este formato:"
2466
+
2467
+ #: app/model/settings.php:777
2468
+ msgid "Default (d/m/yyyy)"
2469
+ msgstr "Por defecto (d/m/yyyy)"
2470
+
2471
+ #: app/model/settings.php:781
2472
+ msgid "US (m/d/yyyy)"
2473
+ msgstr "EUA (m/d/yyyy)"
2474
+
2475
+ #: app/model/settings.php:785
2476
+ msgid "ISO 8601 (yyyy-m-d)"
2477
+ msgstr "ISO 8601 (yyyy-m-d)"
2478
+
2479
+ #: app/model/settings.php:789
2480
+ msgid "Dotted (m.d.yyyy)"
2481
+ msgstr "Punteado (m.d.yyyy)"
2482
+
2483
+ #: app/model/settings.php:801
2484
+ msgid " Use <strong>24h time</strong> in time pickers"
2485
+ msgstr "Usar <strong>tiempo de 24h</strong> en los seleccionadores de tiempo"
2486
+
2487
+ #: app/model/settings.php:812
2488
+ msgid "<strong>Disable address autocomplete</strong> function"
2489
+ msgstr "<strong>Desactivar el autocompletado de direcciones</strong>"
2490
+
2491
+ #: app/model/settings.php:823
2492
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2493
+ msgstr "Usar la <strong>región</strong> configurada (localidad de WordPress) para afectar la función de autocompletar direcciones"
2494
+
2495
+ #: app/model/settings.php:839
2496
+ msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2497
+ msgstr "Mostrar el viejo botón de <strong>Publicar tu evento</strong> arriba del calendario a los usuarios privilegiados"
2498
+
2499
+ #: app/model/settings.php:842
2500
+ msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2501
+ msgstr "Instalar la <a target=\"_blank\" href=\"http://time.ly/\">Extensión interactiva de interfaz de usuario </a> para la interfaz de usuario del <strong>formulario de Publica tu propio evento</strong>."
2502
+
2503
+ #: app/model/settings.php:863
2504
+ msgid "Move calendar into this DOM element"
2505
+ msgstr "Mover el calendario a este elemento DOM:"
2506
+
2507
+ #: app/model/settings.php:865
2508
+ msgid ""
2509
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2510
+ "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2511
+ "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2512
+ "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2513
+ "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2514
+ "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2515
+ "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2516
+ "\t\t\t\t\t\tby the calendar."
2517
+ msgstr ""
2518
+ "Opcional. Usa este atajo basado en JavaScript para poner el\n"
2519
+ "→\t→\t→\t→\t→\t→\tcalendario en un elemento DOM en un contenedor aparte del contenido regular de la página\n"
2520
+ "→\t→\t→\t→\t→\t→\tsi no puedes crear una página de plantilla apropiada\n"
2521
+ "→\t→\t→\t→\t→\t→\t para la página de calendario. Para usarla, inserta un \n"
2522
+ "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2523
+ "→\t→\t→\t→\t→\t→\tselector jQuery</a> que evalúe un solo elemento DOM.\n"
2524
+ "→\t→\t→\t→\t→\t→\tCualquier marcado existente que se encuentre dentro del objetivo \n"
2525
+ "→\t→\t→\t→\t→\t→\tserá reemplazado por el calendario."
2526
+
2527
+ #: app/model/settings.php:884
2528
+ msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2529
+ msgstr "<strong>Saltar la revisión <tt>in_the_loop()</tt> </strong> que protege contra la salida múltiple de calendarios"
2530
+
2531
+ #: app/model/settings.php:887
2532
+ msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2533
+ msgstr "Intenta habilitar esta opción si tu calendario no aparece en la página de calendario. Se necesita para la compatibilidad con un pequeño número de temas que llaman <tt>the_content()</tt> desde afuera de The Loop. De no ser el caso, dejar deshabilitado."
2534
+
2535
+ #: app/model/settings.php:899
2536
+ msgid "Disable <strong>gzip</strong> compression."
2537
+ msgstr "Desactivar la compresión <strong>gzip</strong>."
2538
+
2539
+ #: app/model/settings.php:902
2540
+ msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2541
+ msgstr "Use esta opción si el calendario no responde. <a href=\"http://support.time.ly/disable-gzip-compression/\">Lea más</a> sobre el problema. (Desde la versión 2.1 en adelante, gzip se deshabilita por defecto para mayor compatibilidad.)"
2542
+
2543
+ #: app/model/settings.php:914
2544
+ msgid "Use frontend rendering."
2545
+ msgstr ""
2546
+
2547
+ #: app/model/settings.php:917
2548
+ msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
+ msgstr ""
2550
+
2551
+ #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
+ msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
+ msgstr "Para despejar, sostén &#8984;/<abbr class=\"initialism\">CTRL</abbr> y haz click en la selección."
2554
+
2555
+ #: app/model/settings.php:508
2556
+ msgid "Default calendar start date (optional)"
2557
+ msgstr "Fecha de inicio del calendario por defecto (opcional)"
2558
+
2559
+ #: app/model/settings.php:519
2560
+ msgid "Agenda pages show at most"
2561
+ msgstr "Las páginas de la agenda muestran como mucho"
2562
+
2563
+ #: app/model/settings.php:532
2564
+ msgid "Week/Day view starts at"
2565
+ msgstr "La vista de Semana/Día comienza en:"
2566
+
2567
+ #: app/model/settings.php:545
2568
+ msgid "Week/Day view ends at"
2569
+ msgstr "La vista de Semana/Día termina en:"
2570
+
2571
+ #: app/model/settings.php:558
2572
+ msgid "<strong>Word-wrap event stubs</strong> in Month view"
2573
+ msgstr "<strong>Ajuste de línea en texto corto de eventos</strong> en la vista de Mes"
2574
+
2575
+ #: app/model/settings.php:561
2576
+ msgid "Only applies to events that span a single day."
2577
+ msgstr "Sólo aplica a eventos que abarcan un solo día."
2578
+
2579
+ #: app/model/settings.php:573
2580
+ msgid ""
2581
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2582
+ "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2583
+ "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2584
+ "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2585
+ "\t\t\t\t\t\tfrom last day shown</strong>"
2586
+ msgstr ""
2587
+ "En <span class=\"ai1ec-tooltip-toggle\"\n"
2588
+ "→\t→\t→\t→\t→\t→\tdata-original-title=\"Estos incluyen vista de agenda,\n"
2589
+ "→\t→\t→\t→\t→\t→\tel widget de Eventos Próximos y algunas vistas extendidas.\">\n"
2590
+ "→\t→\t→\t→\t→\t→\tVista como de agenda</span>, <strong>incluír todos los eventos\n"
2591
+ "→\t→\t→\t→\t→\t→\t del última día mostrado</strong>"
2592
+
2593
+ #: app/model/settings.php:589
2594
+ msgid "Keep all events <strong>expanded</strong> in Agenda view"
2595
+ msgstr "Mantener todos los eventos <strong>expandidos</strong> en la vista de agenda."
2596
+
2597
+ #: app/model/settings.php:601
2598
+ msgid "<strong>Show year</strong> in calendar date labels"
2599
+ msgstr "<strong>Mostrar el año</strong> en las etiquetas de fecha del calendario"
2600
+
2601
+ #: app/model/settings.php:613
2602
+ msgid "<strong>Show location in event titles</strong> in calendar views"
2603
+ msgstr "<strong>Mostrar la ubicación en los títulos de los eventos</strong> en la vista de calendario"
2604
+
2605
+ #: app/model/settings.php:625
2606
+ msgid "<strong>Exclude</strong> events from search results"
2607
+ msgstr "<strong>Excluir</strong> los eventos de las búsquedas"
2608
+
2609
+ #: app/model/settings.php:637
2610
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2611
+ msgstr "Ocultar botones de <strong>Suscribir</strong>/<strong>Agregar a calendario</strong> en las vistas de calendario y eventos individuales"
2612
+
2613
+ #: app/model/settings.php:649
2614
+ msgid "Hide <strong>Get a Timely Calendar</strong> button"
2615
+ msgstr ""
2616
+
2617
+ #: app/model/settings.php:661
2618
+ msgid " Hide <strong>Google Maps</strong> until clicked"
2619
+ msgstr "Esconder <strong>Google Maps</strong> hasta hacerle clic"
2620
+
2621
+ #: app/model/settings.php:673
2622
+ msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2623
+ msgstr " <strong>Fijar el menú de filtrado</strong> a la parte superior de la ventana cuando se desplaze fuera de vista"
2624
+
2625
+ #: app/model/settings.php:676
2626
+ msgid "Only applies to first visible calendar found on the page."
2627
+ msgstr ""
2628
+
2629
+ #: app/model/settings.php:688
2630
+ msgid "Offset affixed filter bar vertically by"
2631
+ msgstr "Compensar la barra de filtro fija verticalmente por"
2632
+
2633
+ #: app/model/settings.php:703
2634
+ msgid "Wide screens only (&#8805; 1200px)"
2635
+ msgstr "Solamente disponible para pantallas panorámicas (&#8805; 1200px)"
2636
+
2637
+ #: app/model/settings.php:718
2638
+ msgid "Tablets only (< 980px)"
2639
+ msgstr "Solo para tabletas (< 980px)"
2640
+
2641
+ #: app/model/settings.php:733
2642
+ msgid "Phones only (< 768px)"
2643
+ msgstr "Sólo teléfonos (< 768px)"
2644
+
2645
+ #: app/model/api.php:456
2646
+ msgid "Not available"
2647
+ msgstr ""
2648
+
2649
+ #: app/model/api.php:659
2650
+ msgid "%s.<br/>Detail: %s."
2651
+ msgstr ""
2652
+
2653
+ #: app/model/api.php:664
2654
+ msgid "API URL: %s.<br/>Detail: %s - %s"
2655
+ msgstr ""
2656
+
2657
+ #: app/model/api.php:672
2658
+ msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2659
+ msgstr ""
2660
+
2661
+ #: app/model/api.php:679
2662
+ msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2663
+ msgstr ""
2664
+
2665
+ #: app/model/event/parent.php:186
2666
+ msgid "Edit &#8220;%s&#8221;"
2667
+ msgstr "Editar &#8220;%s&#8221;"
2668
+
2669
+ #: app/model/event/parent.php:193
2670
+ msgid "Base Event"
2671
+ msgstr "Evento base"
2672
+
2673
+ #: app/model/review.php:169
2674
+ msgid "Feedback provided by user"
2675
+ msgstr ""
2676
+
2677
+ #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2678
+ msgid "Name"
2679
+ msgstr "Nombre"
2680
+
2681
+ #: app/model/review.php:173
2682
+ msgid "E-mail"
2683
+ msgstr ""
2684
+
2685
+ #: app/model/review.php:175
2686
+ msgid "Site URL"
2687
+ msgstr ""
2688
+
2689
+ #: app/model/review.php:177
2690
+ msgid "Message"
2691
+ msgstr ""
2692
+
2693
+ #: app/model/settings.php:401
2694
+ #: lib/html/element/setting/calendar-page-selector.php:50
2695
+ msgid "Calendar page"
2696
+ msgstr "Página de calendario"
2697
+
2698
+ #: app/model/settings.php:411
2699
+ msgid "Week starts on"
2700
+ msgstr "La semana empieza en"
2701
+
2702
+ #: app/model/settings.php:424
2703
+ msgid "Available views"
2704
+ msgstr "Vistas disponibles"
2705
+
2706
+ #: app/model/settings.php:432
2707
+ msgid "Agenda"
2708
+ msgid_plural "Agenda"
2709
+ msgstr[0] "Agenda"
2710
+ msgstr[1] ""
2711
+
2712
+ #: app/model/settings.php:443
2713
+ msgid "Day"
2714
+ msgid_plural "Day"
2715
+ msgstr[0] "Día"
2716
+ msgstr[1] ""
2717
+
2718
+ #: app/model/settings.php:454
2719
+ msgid "Month"
2720
+ msgid_plural "Month"
2721
+ msgstr[0] "Mes"
2722
+ msgstr[1] ""
2723
+
2724
+ #: app/model/settings.php:465
2725
+ msgid "Week"
2726
+ msgid_plural "Week"
2727
+ msgstr[0] "Semana"
2728
+ msgstr[1] ""
2729
+
2730
+ #: app/model/settings.php:479
2731
+ msgid "Timezone"
2732
+ msgstr "Zona Horaria"
2733
+
2734
+ #: app/model/settings.php:492
2735
+ msgid "Preselected calendar filters"
2736
+ msgstr "Filtros de calendario preseleccionados"
2737
+
2738
+ #: app/controller/javascript.php:509
2739
+ msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2740
+ msgstr ""
2741
+
2742
+ #: app/controller/javascript.php:516
2743
+ msgid "The end date can't be earlier than the start date."
2744
+ msgstr ""
2745
+
2746
+ #: app/controller/javascript.php:517
2747
+ msgid "For week and day view, you must select an interval of at least 6 hours."
2748
+ msgstr ""
2749
+
2750
+ #: app/model/api.php:40
2751
+ msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2752
+ msgstr ""
2753
+
2754
+ #: app/model/api.php:41
2755
+ msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2756
+ msgstr ""
2757
+
2758
+ #: app/model/api.php:42
2759
+ msgid "We were unable to Sign you Up for Time.ly Ticketing"
2760
+ msgstr ""
2761
+
2762
+ #: app/model/api.php:43
2763
+ msgid "We were unable to Sign you In for Time.ly Ticketing"
2764
+ msgstr ""
2765
+
2766
+ #: app/model/api.php:44
2767
+ msgid "We were unable to create the Event on Time.ly Ticketing"
2768
+ msgstr ""
2769
+
2770
+ #: app/model/api.php:45
2771
+ msgid "We were unable to update the Event on Time.ly Ticketing"
2772
+ msgstr ""
2773
+
2774
+ #: app/model/api.php:46
2775
+ msgid "The event has the option Tickets selected but any ticket was added."
2776
+ msgstr ""
2777
+
2778
+ #: app/model/api.php:47
2779
+ msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2780
+ msgstr ""
2781
+
2782
+ #: app/model/api.php:48
2783
+ msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2784
+ msgstr ""
2785
+
2786
+ #: app/model/api.php:49
2787
+ msgid "Payment preferences were not saved."
2788
+ msgstr ""
2789
+
2790
+ #: app/model/api.php:50
2791
+ msgid "Payment preferences were saved."
2792
+ msgstr ""
2793
+
2794
+ #: app/model/api.php:51
2795
+ msgid "Event not found inside the database."
2796
+ msgstr ""
2797
+
2798
+ #: app/model/api.php:52
2799
+ msgid "We were unable to get the Sales information from Time.ly Ticketing"
2800
+ msgstr ""
2801
+
2802
+ #: app/model/api.php:446
2803
+ msgid "Past Event"
2804
+ msgstr ""
2805
+
2806
+ #: app/model/api.php:448
2807
+ msgid "Event closed"
2808
+ msgstr ""
2809
+
2810
+ #: app/model/api.php:450
2811
+ msgid "Not available yet"
2812
+ msgstr ""
2813
+
2814
+ #: app/model/api.php:452
2815
+ msgid "Sale closed"
2816
+ msgstr ""
2817
+
2818
+ #: app/model/api.php:454
2819
+ msgid "Sold out"
2820
+ msgstr ""
2821
+
2822
+ #: app/controller/javascript.php:484
2823
+ msgid "Report"
2824
+ msgstr ""
2825
+
2826
+ #: app/controller/javascript.php:485
2827
+ msgid "Sale dates"
2828
+ msgstr ""
2829
+
2830
+ #: app/controller/javascript.php:486
2831
+ msgid "Limits"
2832
+ msgstr ""
2833
+
2834
+ #: app/controller/javascript.php:487
2835
+ msgid "Actions"
2836
+ msgstr ""
2837
+
2838
+ #: app/controller/javascript.php:488
2839
+ msgid "Sold:"
2840
+ msgstr ""
2841
+
2842
+ #: app/controller/javascript.php:489
2843
+ msgid "Left:"
2844
+ msgstr ""
2845
+
2846
+ #: app/controller/javascript.php:490
2847
+ msgid "Start:"
2848
+ msgstr ""
2849
+
2850
+ #: app/controller/javascript.php:491
2851
+ msgid "End:"
2852
+ msgstr ""
2853
+
2854
+ #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2855
+ msgid "Min:"
2856
+ msgstr ""
2857
+
2858
+ #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2859
+ msgid "Max:"
2860
+ msgstr ""
2861
+
2862
+ #: app/controller/javascript.php:494
2863
+ msgid "Attendees"
2864
+ msgstr ""
2865
+
2866
+ #: app/controller/javascript.php:495
2867
+ msgid "Hide Attendees"
2868
+ msgstr ""
2869
+
2870
+ #: app/controller/javascript.php:496
2871
+ msgid "Attendees List"
2872
+ msgstr ""
2873
+
2874
+ #: app/controller/javascript.php:497
2875
+ msgid "Guest Name"
2876
+ msgstr ""
2877
+
2878
+ #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2879
+ msgid "Status"
2880
+ msgstr ""
2881
+
2882
+ #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2883
+ #: app/view/event/ticket.php:71
2884
+ msgid "Email"
2885
+ msgstr "Correo electrónico"
2886
+
2887
+ #: app/controller/javascript.php:500
2888
+ msgid "No attendees for this ticket type."
2889
+ msgstr ""
2890
+
2891
+ #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2892
+ #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2893
+ msgid "Edit"
2894
+ msgstr "Editar"
2895
+
2896
+ #: app/controller/javascript.php:502
2897
+ msgid "Code"
2898
+ msgstr ""
2899
+
2900
+ #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2901
+ msgid "Unlimited"
2902
+ msgstr ""
2903
+
2904
+ #: app/controller/javascript.php:506
2905
+ msgid "Your message has been sent. Thank you for your feedback."
2906
+ msgstr ""
2907
+
2908
+ #: app/controller/javascript.php:507
2909
+ msgid "Your message has not been sent. Please try again or contact us."
2910
+ msgstr ""
2911
+
2912
+ #: app/controller/javascript.php:405
2913
+ msgid "Please enter a valid iCalendar URL."
2914
+ msgstr "Por favor introduce una URL válida para iCalendar."
2915
+
2916
+ #: app/controller/javascript.php:408
2917
+ msgid "Please enter a valid email address."
2918
+ msgstr "Por favor ingresa una dirección de correo electrónico válida."
2919
+
2920
+ #: app/controller/javascript.php:410
2921
+ msgid "Choose Image"
2922
+ msgstr "Selecciona imagen"
2923
+
2924
+ #: app/controller/javascript.php:413
2925
+ msgid "The value you have entered is not a valid CSS length."
2926
+ msgstr "El valor que ingresaste no es una longitud de CSS válida."
2927
+
2928
+ #: app/controller/javascript.php:416
2929
+ msgid "Are you sure you want to reset your theme options to their default values?"
2930
+ msgstr "¿Estás seguro que quieres restaurar las opciones de tema a sus valores por defecto?"
2931
+
2932
+ #: app/controller/javascript.php:419
2933
+ msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2934
+ msgstr "Por favor, introduce una latitud válida. Las latitudes válidas están comprendidas entre +90 y -90"
2935
+
2936
+ #: app/controller/javascript.php:422
2937
+ msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2938
+ msgstr "Por favor, introduce un valor válido para la longitud. Los valores válidos están comprendidos entre +180 y -180."
2939
+
2940
+ #: app/controller/javascript.php:425
2941
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2942
+ msgstr "Cuando se marca la casilla \"Inserción de coordenadas\" el campo \"Latutid\" es obligatorio"
2943
+
2944
+ #: app/controller/javascript.php:428
2945
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2946
+ msgstr "Cuando se marca la casilla \"Inserción de corrdenadas\", el campo \"Longitud\" es obligatorio"
2947
+
2948
+ #: app/controller/javascript.php:431
2949
+ msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2950
+ msgstr ""
2951
+
2952
+ #: app/controller/javascript.php:434
2953
+ msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2954
+ msgstr "La URL que has introducido en <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> parece ser inválida"
2955
+
2956
+ #: app/controller/javascript.php:437
2957
+ msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2958
+ msgstr "Recuerda que las URLs deben comenzar por \"http://\" o por \"https://\"."
2959
+
2960
+ #: app/controller/javascript.php:440
2961
+ msgid "Loading&hellip;"
2962
+ msgstr ""
2963
+
2964
+ #: app/controller/javascript.php:443
2965
+ msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2966
+ msgstr ""
2967
+
2968
+ #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
+ msgid "Preview:"
2970
+ msgstr "Vista previa:"
2971
+
2972
+ #: app/controller/javascript.php:474
2973
+ msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2974
+ msgstr "Cargando vista previa&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2975
+
2976
+ #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2977
+ msgid "Ticketing Details"
2978
+ msgstr ""
2979
+
2980
+ #: app/controller/javascript.php:480
2981
+ msgid "Hide Ticketing Details"
2982
+ msgstr ""
2983
+
2984
+ #: app/controller/javascript.php:481
2985
+ msgid "Loading tickets details..."
2986
+ msgstr ""
2987
+
2988
+ #: app/controller/javascript.php:482
2989
+ msgid "Type and price"
2990
+ msgstr ""
2991
+
2992
+ #: app/controller/javascript.php:483
2993
+ msgid "Info"
2994
+ msgstr ""
2995
+
2996
+ #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2997
+ #: app/view/admin/add-ons.php:27
2998
+ msgid "Add-ons"
2999
+ msgstr "Extensiones"
3000
+
3001
+ #: app/controller/front.php:343
3002
+ msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3003
+ msgstr "Tu tema de calendario actual no se pudo inicializar de manera correcta. El tema por defecto se ha activado en su lugar. Por favor visita %s e intenta reactivar tu tema manualmente."
3004
+
3005
+ #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3006
+ #: app/view/admin/theme-switching.php:55
3007
+ msgid "Calendar Themes"
3008
+ msgstr "Calendario"
3009
+
3010
+ #: app/controller/front.php:990
3011
+ msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3012
+ msgstr "Tu base de datos se encuentra corrompida. Probablemente falló la actualización anterior. Por favor restaura las tablas de All-in-One Event Calendar usando un respaldo y vuelve a intentar.<br>Los siguientes errores fueron encontrados:<br>%s"
3013
+
3014
+ #: app/controller/javascript-widget.php:48
3015
+ msgid "You must choose the Calendar page before using the Super Widget"
3016
+ msgstr ""
3017
+
3018
+ #: app/controller/javascript.php:402
3019
+ msgid "This feed is already being imported."
3020
+ msgstr "Este fuente ya ha sido importada."
language/all-in-one-event-calendar-es_ES.mo CHANGED
Binary file
language/all-in-one-event-calendar-es_ES.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:43:00+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -332,7 +332,7 @@ msgstr ""
332
 
333
  #: public/admin/row_custom.php:3
334
  msgid "Custom dates:"
335
- msgstr ""
336
 
337
  #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
  #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
@@ -368,7 +368,7 @@ msgstr "El tema activo tien un problema. Volviendo al tema por defecto."
368
 
369
  #: public/admin/themes-install.php:13
370
  msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
- msgstr ""
372
 
373
  #: public/admin/calendar_tasks.php:24
374
  msgid "Manage Events"
@@ -444,15 +444,15 @@ msgstr "Mantener categorías y etiquetas originales de eventos"
444
 
445
  #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
  msgid "On refresh, preserve previously imported events that are missing from the feed"
447
- msgstr ""
448
 
449
  #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
  msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
- msgstr ""
452
 
453
  #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
  msgid "Assign default time zone to events in UTC"
455
- msgstr ""
456
 
457
  #: public/admin/box_support.php:19
458
  msgid "Get Add-ons"
@@ -588,7 +588,7 @@ msgstr "Selecciona patrón de recurrencia:"
588
 
589
  #: public/admin/box_repeat.php:36
590
  msgid "Custom"
591
- msgstr ""
592
 
593
  #: public/admin/box_repeat.php:72
594
  msgid "End"
@@ -666,7 +666,7 @@ msgstr "Longuitud:"
666
 
667
  #: public/admin/box_event_location.php:85
668
  msgid "Show Map"
669
- msgstr ""
670
 
671
  #: public/admin/box_eventbrite.php:1
672
  msgid "Eventbrite Ticketing"
@@ -750,7 +750,7 @@ msgstr ""
750
 
751
  #: public/admin/box_event_cost.php:105
752
  msgid "Description:"
753
- msgstr ""
754
 
755
  #: public/admin/box_event_cost.php:111
756
  msgid "(Optional)"
@@ -885,7 +885,7 @@ msgstr "No se pudo encontrar un cargador adecuado para el archivo con la extensi
885
 
886
  #: lib/theme/loader.php:631
887
  msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
- msgstr ""
889
 
890
  #: lib/theme/search.php:253
891
  msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
@@ -897,7 +897,7 @@ msgstr "No se pudo mover sus antiguos temas desde <code>wp-content/themes-ai1ec/
897
 
898
  #: lib/twig/environment.php:115
899
  msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
- msgstr ""
901
 
902
  #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
  msgid "Title:"
@@ -1057,27 +1057,27 @@ msgstr "evento"
1057
  #: lib/post/custom-type.php:85
1058
  msgctxt "Event categories taxonomy"
1059
  msgid "Categories"
1060
- msgstr ""
1061
 
1062
  #: lib/post/custom-type.php:86
1063
  msgctxt "Event categories taxonomy (singular)"
1064
  msgid "Category"
1065
- msgstr ""
1066
 
1067
  #: lib/post/custom-type.php:87
1068
  msgctxt "Event categories menu item"
1069
  msgid "Organize"
1070
- msgstr ""
1071
 
1072
  #: lib/post/custom-type.php:94
1073
  msgctxt "Event tags taxonomy"
1074
  msgid "Tags"
1075
- msgstr ""
1076
 
1077
  #: lib/post/custom-type.php:95
1078
  msgctxt "Event tags taxonomy (singular)"
1079
  msgid "Tag"
1080
- msgstr ""
1081
 
1082
  #: lib/post/custom-type.php:102
1083
  msgctxt "Event feeds taxonomy"
@@ -1164,7 +1164,7 @@ msgstr "All-in-One Event Calendar"
1164
 
1165
  #: lib/notification/admin.php:182
1166
  msgid "Got it – dismiss this"
1167
- msgstr ""
1168
 
1169
  #: lib/post/custom-type.php:26
1170
  msgctxt "Custom post type name"
@@ -1318,19 +1318,19 @@ msgstr "Filtrar por IDs de tags de eventos (separar IDs con comas):"
1318
 
1319
  #: lib/exception/handler.php:395
1320
  msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
- msgstr ""
1322
 
1323
  #: lib/exception/handler.php:404
1324
  msgid "Try reactivating plugin"
1325
- msgstr ""
1326
 
1327
  #: lib/exception/handler.php:576
1328
  msgid "Toggle error details"
1329
- msgstr ""
1330
 
1331
  #: lib/exception/handler.php:577
1332
  msgid "Error Details:"
1333
- msgstr ""
1334
 
1335
  #: lib/factory/html.php:133
1336
  msgid "Choose a date using calendar"
@@ -1402,7 +1402,7 @@ msgstr "Vista semanal:"
1402
 
1403
  #: lib/css/frontend.php:239
1404
  msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
- msgstr ""
1406
 
1407
  #: lib/css/frontend.php:266
1408
  msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
@@ -1474,15 +1474,15 @@ msgstr "El plugin ha sido instalado, pero aún no ha sido configurado. Por favor
1474
 
1475
  #: lib/environment/check.php:196
1476
  msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
- msgstr ""
1478
 
1479
  #: lib/environment/check.php:197
1480
  msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
- msgstr ""
1482
 
1483
  #: lib/exception/handler.php:176
1484
  msgid "The add-on \"%s\" has been disabled due to an error:"
1485
- msgstr ""
1486
 
1487
  #: lib/calendar-feed/ics.php:367
1488
  msgid "Do you want to keep the events imported from the calendar or remove them?"
@@ -1514,35 +1514,35 @@ msgstr "Fuente Borrada"
1514
 
1515
  #: lib/captcha/provider/nocaptcha.php:31
1516
  msgid "noCAPTCHA public key:"
1517
- msgstr ""
1518
 
1519
  #: lib/captcha/provider/nocaptcha.php:47
1520
  msgid "noCAPTCHA private key:"
1521
- msgstr ""
1522
 
1523
  #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
  msgid "Please try verifying you are human again."
1525
- msgstr ""
1526
 
1527
  #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
  msgid "There was an error reading the human verification data. Please try again."
1529
- msgstr ""
1530
 
1531
  #: lib/captcha/provider/recaptcha.php:32
1532
  msgid "reCAPTCHA public key:"
1533
- msgstr ""
1534
 
1535
  #: lib/captcha/provider/recaptcha.php:48
1536
  msgid "reCAPTCHA private key:"
1537
- msgstr ""
1538
 
1539
  #: lib/captcha/provider/recaptcha.php:66
1540
  msgid "Human verification"
1541
- msgstr ""
1542
 
1543
  #: lib/captcha/provider/recaptcha.php:67
1544
  msgid "Loading reCAPTCHA..."
1545
- msgstr ""
1546
 
1547
  #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
  #: lib/clone/renderer-helper.php:45
@@ -1567,7 +1567,7 @@ msgstr "<p>El evento <strong>%s</strong> se clonó exitosamente. <a href=\"%s\">
1567
 
1568
  #: lib/compatibility/check.php:101
1569
  msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
- msgstr ""
1571
 
1572
  #: app/view/event/single.php:123
1573
  msgid "Tickets:"
@@ -1587,11 +1587,11 @@ msgstr "Edita esta ocurrencia (%s)"
1587
 
1588
  #: app/view/event/single.php:195
1589
  msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
- msgstr ""
1591
 
1592
  #: app/view/event/single.php:206
1593
  msgid "View original"
1594
- msgstr ""
1595
 
1596
  #: app/view/event/taxonomy.php:113
1597
  msgid "Category image"
@@ -1729,7 +1729,7 @@ msgstr "Borrador de evento actualizado. <a target=\"_blank\" href=\"%s\">Previsu
1729
 
1730
  #: app/view/event/single.php:78
1731
  msgid "Event was created in the %s time zone"
1732
- msgstr ""
1733
 
1734
  #: app/view/event/single.php:114
1735
  msgid "Add to Calendar"
@@ -1788,7 +1788,7 @@ msgstr "All-in-One Event Calendar: Lista de eventos en vista Agenda"
1788
 
1789
  #: app/view/calendar/widget.php:80
1790
  msgid "Choose how to limit the upcoming events"
1791
- msgstr ""
1792
 
1793
  #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
  msgid "Events"
@@ -1812,7 +1812,7 @@ msgstr "Filtrar eventos por las siguientes etiquetas/categorías"
1812
 
1813
  #: app/view/calendar/widget.php:141
1814
  msgid "Show the subscribe button in the widget"
1815
- msgstr ""
1816
 
1817
  #: app/view/calendar/widget.php:370
1818
  msgid "There are no upcoming events."
@@ -1840,7 +1840,7 @@ msgstr "Suscribirse"
1840
 
1841
  #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
  msgid "Get a Timely Calendar"
1843
- msgstr ""
1844
 
1845
  #: app/view/calendar/subscribe-button.php:22
1846
  msgid "Add to Timely Calendar"
@@ -1968,24 +1968,24 @@ msgstr ""
1968
  #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
  #: app/view/admin/widget-creator.php:47
1970
  msgid "Widget Creator"
1971
- msgstr ""
1972
 
1973
  #: app/view/admin/widget-creator.php:74
1974
  msgctxt "meta box"
1975
  msgid "Widget Creator"
1976
- msgstr ""
1977
 
1978
  #: app/view/admin/widget-creator.php:131
1979
  msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
- msgstr ""
1981
 
1982
  #: app/view/admin/widget-creator.php:132
1983
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
- msgstr ""
1985
 
1986
  #: app/view/admin/widget-creator.php:134
1987
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
- msgstr ""
1989
 
1990
  #: app/view/admin/widget-creator.php:140
1991
  msgid "Paste this code onto your site:"
@@ -1993,7 +1993,7 @@ msgstr "Pega este código en tu sitio:"
1993
 
1994
  #: app/view/admin/widget-creator.php:141
1995
  msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
- msgstr ""
1997
 
1998
  #: app/view/calendar/page.php:54
1999
  msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
@@ -2001,7 +2001,7 @@ msgstr "Hubo un error al cargar el calendario. Por favor contacta al administrad
2001
 
2002
  #: app/view/calendar/page.php:74
2003
  msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
- msgstr ""
2005
 
2006
  #: app/view/admin/settings.php:193
2007
  msgid "Phone Number:"
@@ -2172,7 +2172,7 @@ msgstr ""
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
2175
- msgstr ""
2176
 
2177
  #: app/view/admin/settings.php:191
2178
  msgid "Password:"
@@ -2240,7 +2240,7 @@ msgstr ""
2240
 
2241
  #: app/view/admin/organize.php:100
2242
  msgid "Organize Events"
2243
- msgstr ""
2244
 
2245
  #: app/view/admin/settings.php:30
2246
  msgid "All-in-One Event Calendar: Settings"
@@ -2402,27 +2402,27 @@ msgstr "Detalles del evento"
2402
 
2403
  #: app/view/admin/add-new-event.php:423
2404
  msgid "Set banner image"
2405
- msgstr ""
2406
 
2407
  #: app/view/admin/add-new-event.php:424
2408
  msgid "Remove banner image"
2409
- msgstr ""
2410
 
2411
  #: app/view/admin/add-ons.php:68
2412
  msgid "Add-ons for All In One Event Calendar"
2413
- msgstr ""
2414
 
2415
  #: app/view/admin/add-ons.php:71
2416
  msgid "Browse All Extensions"
2417
- msgstr ""
2418
 
2419
  #: app/view/admin/add-ons.php:74
2420
  msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
- msgstr ""
2422
 
2423
  #: app/view/admin/add-ons.php:77
2424
  msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
- msgstr ""
2426
 
2427
  #: app/view/admin/all-events.php:16
2428
  msgid "Author"
@@ -2542,11 +2542,11 @@ msgstr "Use esta opción si el calendario no responde. <a href=\"http://support.
2542
 
2543
  #: app/model/settings.php:914
2544
  msgid "Use frontend rendering."
2545
- msgstr ""
2546
 
2547
  #: app/model/settings.php:917
2548
  msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
- msgstr ""
2550
 
2551
  #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
  msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
@@ -2612,7 +2612,7 @@ msgstr "Ocultar botones de <strong>Suscribir</strong>/<strong>Agregar a calendar
2612
 
2613
  #: app/model/settings.php:649
2614
  msgid "Hide <strong>Get a Timely Calendar</strong> button"
2615
- msgstr ""
2616
 
2617
  #: app/model/settings.php:661
2618
  msgid " Hide <strong>Google Maps</strong> until clicked"
@@ -2624,7 +2624,7 @@ msgstr " <strong>Fijar el menú de filtrado</strong> a la parte superior de la v
2624
 
2625
  #: app/model/settings.php:676
2626
  msgid "Only applies to first visible calendar found on the page."
2627
- msgstr ""
2628
 
2629
  #: app/model/settings.php:688
2630
  msgid "Offset affixed filter bar vertically by"
@@ -2737,15 +2737,15 @@ msgstr "Filtros de calendario preseleccionados"
2737
 
2738
  #: app/controller/javascript.php:509
2739
  msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2740
- msgstr ""
2741
 
2742
  #: app/controller/javascript.php:516
2743
  msgid "The end date can't be earlier than the start date."
2744
- msgstr ""
2745
 
2746
  #: app/controller/javascript.php:517
2747
  msgid "For week and day view, you must select an interval of at least 6 hours."
2748
- msgstr ""
2749
 
2750
  #: app/model/api.php:40
2751
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
@@ -2959,7 +2959,7 @@ msgstr "Recuerda que las URLs deben comenzar por \"http://\" o por \"https://\".
2959
 
2960
  #: app/controller/javascript.php:440
2961
  msgid "Loading&hellip;"
2962
- msgstr ""
2963
 
2964
  #: app/controller/javascript.php:443
2965
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
@@ -3013,7 +3013,7 @@ msgstr "Tu base de datos se encuentra corrompida. Probablemente falló la actual
3013
 
3014
  #: app/controller/javascript-widget.php:48
3015
  msgid "You must choose the Calendar page before using the Super Widget"
3016
- msgstr ""
3017
 
3018
  #: app/controller/javascript.php:402
3019
  msgid "This feed is already being imported."
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-03 01:34:08+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
332
 
333
  #: public/admin/row_custom.php:3
334
  msgid "Custom dates:"
335
+ msgstr "Fechas personalizadas:"
336
 
337
  #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
  #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
368
 
369
  #: public/admin/themes-install.php:13
370
  msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
+ msgstr "Nuevo tema activado. Este tema soporta widgets, por favor ve a los <a href=\"%s\">ajustes del widget</a> para configurarlos."
372
 
373
  #: public/admin/calendar_tasks.php:24
374
  msgid "Manage Events"
444
 
445
  #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
  msgid "On refresh, preserve previously imported events that are missing from the feed"
447
+ msgstr "Al refrescar, preservar los eventos previamente importados que falten del feed"
448
 
449
  #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
  msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
+ msgstr "Averigua la zona horaria de los eventos que no la especifiquen; recomendado para feeds de Calendarios de Google"
452
 
453
  #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
  msgid "Assign default time zone to events in UTC"
455
+ msgstr "Asignar una zona horaria por defecto a los eventos en UTC"
456
 
457
  #: public/admin/box_support.php:19
458
  msgid "Get Add-ons"
588
 
589
  #: public/admin/box_repeat.php:36
590
  msgid "Custom"
591
+ msgstr "Personalizado"
592
 
593
  #: public/admin/box_repeat.php:72
594
  msgid "End"
666
 
667
  #: public/admin/box_event_location.php:85
668
  msgid "Show Map"
669
+ msgstr "Mostrar mapa"
670
 
671
  #: public/admin/box_eventbrite.php:1
672
  msgid "Eventbrite Ticketing"
750
 
751
  #: public/admin/box_event_cost.php:105
752
  msgid "Description:"
753
+ msgstr "Descripción:"
754
 
755
  #: public/admin/box_event_cost.php:111
756
  msgid "(Optional)"
885
 
886
  #: lib/theme/loader.php:631
887
  msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
+ msgstr "Tu tema de calendario ha sido cambiado a Vortex debido a un problema de renderizado. Para más información, por favor habilita el modo de depuración añadiendo esta línea a tu archivo <code>wp-config.php</code> de WordPress: <pre>define( 'AI1EC_DEBUG', true );</pre>"
889
 
890
  #: lib/theme/search.php:253
891
  msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
897
 
898
  #: lib/twig/environment.php:115
899
  msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
+ msgstr "El calendario está temporalmente deshabilitado debido a un error de renderizado. Por favor <a href=\"javascript:location.reload();\">refresca la página</a>."
901
 
902
  #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
  msgid "Title:"
1057
  #: lib/post/custom-type.php:85
1058
  msgctxt "Event categories taxonomy"
1059
  msgid "Categories"
1060
+ msgstr "Categorias"
1061
 
1062
  #: lib/post/custom-type.php:86
1063
  msgctxt "Event categories taxonomy (singular)"
1064
  msgid "Category"
1065
+ msgstr "Categoria"
1066
 
1067
  #: lib/post/custom-type.php:87
1068
  msgctxt "Event categories menu item"
1069
  msgid "Organize"
1070
+ msgstr "Organizar"
1071
 
1072
  #: lib/post/custom-type.php:94
1073
  msgctxt "Event tags taxonomy"
1074
  msgid "Tags"
1075
+ msgstr "Tags"
1076
 
1077
  #: lib/post/custom-type.php:95
1078
  msgctxt "Event tags taxonomy (singular)"
1079
  msgid "Tag"
1080
+ msgstr "Tag"
1081
 
1082
  #: lib/post/custom-type.php:102
1083
  msgctxt "Event feeds taxonomy"
1164
 
1165
  #: lib/notification/admin.php:182
1166
  msgid "Got it – dismiss this"
1167
+ msgstr "Lo entiendo - cierra esto"
1168
 
1169
  #: lib/post/custom-type.php:26
1170
  msgctxt "Custom post type name"
1318
 
1319
  #: lib/exception/handler.php:395
1320
  msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
+ msgstr "All-in-One Event Calendar ha sido dehabilitado debido a un error:"
1322
 
1323
  #: lib/exception/handler.php:404
1324
  msgid "Try reactivating plugin"
1325
+ msgstr "Intentando reactivar el plugin"
1326
 
1327
  #: lib/exception/handler.php:576
1328
  msgid "Toggle error details"
1329
+ msgstr "Cambiar los detalles del error"
1330
 
1331
  #: lib/exception/handler.php:577
1332
  msgid "Error Details:"
1333
+ msgstr "Detalles del Error:"
1334
 
1335
  #: lib/factory/html.php:133
1336
  msgid "Choose a date using calendar"
1402
 
1403
  #: lib/css/frontend.php:239
1404
  msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
+ msgstr "La compilación CSS falló debido a que no tienes memoria suficiente (mínimo requerido: %s). Tu calendario no se renderizará o funcionará correctamente sin CSS. Por favor, lee <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">este artículo</a> para aprender a incrementar el límite de memoria de PHP."
1406
 
1407
  #: lib/css/frontend.php:266
1408
  msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1474
 
1475
  #: lib/environment/check.php:196
1476
  msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
+ msgstr "El add-on <strong>%s</strong> debe ser actualizado al menos a la versión %s para mantener la compatibilidad con el calendario."
1478
 
1479
  #: lib/environment/check.php:197
1480
  msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
+ msgstr "Si no ves noticias de actualización debajo, asegúrate de que has <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">insertado tus claves de licencia</a>. Alternativamente, ve a <a href=\"https://time.ly/your-account/\">tu cuenta</a>para descargarte la última versión del add on y <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">actualiza manualmente</a>. Por favor, <a href=\"https://time.ly/forums/\">publica en el foro</a> si te encuentras con problemas. Estaremos encantados de ayudarte."
1482
 
1483
  #: lib/exception/handler.php:176
1484
  msgid "The add-on \"%s\" has been disabled due to an error:"
1485
+ msgstr "El add-on \"%s\" ha sido deshabilitado debido a un error: "
1486
 
1487
  #: lib/calendar-feed/ics.php:367
1488
  msgid "Do you want to keep the events imported from the calendar or remove them?"
1514
 
1515
  #: lib/captcha/provider/nocaptcha.php:31
1516
  msgid "noCAPTCHA public key:"
1517
+ msgstr "clave pública de noCAPTCHA:"
1518
 
1519
  #: lib/captcha/provider/nocaptcha.php:47
1520
  msgid "noCAPTCHA private key:"
1521
+ msgstr "clave privada de noCAPTCHA:"
1522
 
1523
  #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
  msgid "Please try verifying you are human again."
1525
+ msgstr "Por favor, verifica de nuevo que eres humano."
1526
 
1527
  #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
  msgid "There was an error reading the human verification data. Please try again."
1529
+ msgstr "Ha habido un error comprobando el captcha. Inténtelo de nuevo."
1530
 
1531
  #: lib/captcha/provider/recaptcha.php:32
1532
  msgid "reCAPTCHA public key:"
1533
+ msgstr "clave pública de reCAPTCHA"
1534
 
1535
  #: lib/captcha/provider/recaptcha.php:48
1536
  msgid "reCAPTCHA private key:"
1537
+ msgstr "clave privada de reCAPTCHA:"
1538
 
1539
  #: lib/captcha/provider/recaptcha.php:66
1540
  msgid "Human verification"
1541
+ msgstr "Verificación de humano"
1542
 
1543
  #: lib/captcha/provider/recaptcha.php:67
1544
  msgid "Loading reCAPTCHA..."
1545
+ msgstr "Cargando reCAPTCHA..."
1546
 
1547
  #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
  #: lib/clone/renderer-helper.php:45
1567
 
1568
  #: lib/compatibility/check.php:101
1569
  msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
+ msgstr "Has activado el renderizado de interfaz y estás utilizando un tema personalizado de calendario. Si tu tema no soporta el renderizado de interfaz, tu calendario podría no funcionar correctamente."
1571
 
1572
  #: app/view/event/single.php:123
1573
  msgid "Tickets:"
1587
 
1588
  #: app/view/event/single.php:195
1589
  msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
+ msgstr "Esta publicación fue replicada desde un <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i>feed de calendario</a> de otro sitio web."
1591
 
1592
  #: app/view/event/single.php:206
1593
  msgid "View original"
1594
+ msgstr "Ver original"
1595
 
1596
  #: app/view/event/taxonomy.php:113
1597
  msgid "Category image"
1729
 
1730
  #: app/view/event/single.php:78
1731
  msgid "Event was created in the %s time zone"
1732
+ msgstr "El evento fue creado en la zona horaria %s"
1733
 
1734
  #: app/view/event/single.php:114
1735
  msgid "Add to Calendar"
1788
 
1789
  #: app/view/calendar/widget.php:80
1790
  msgid "Choose how to limit the upcoming events"
1791
+ msgstr "Elija como limitar los pr&oacute;ximos eventos"
1792
 
1793
  #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
  msgid "Events"
1812
 
1813
  #: app/view/calendar/widget.php:141
1814
  msgid "Show the subscribe button in the widget"
1815
+ msgstr "Ver el bot&oacute;n de suscripci&oacute;n en el widget"
1816
 
1817
  #: app/view/calendar/widget.php:370
1818
  msgid "There are no upcoming events."
1840
 
1841
  #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
  msgid "Get a Timely Calendar"
1843
+ msgstr "Obtener un Calendario Timely"
1844
 
1845
  #: app/view/calendar/subscribe-button.php:22
1846
  msgid "Add to Timely Calendar"
1968
  #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
  #: app/view/admin/widget-creator.php:47
1970
  msgid "Widget Creator"
1971
+ msgstr "Creador de Widget"
1972
 
1973
  #: app/view/admin/widget-creator.php:74
1974
  msgctxt "meta box"
1975
  msgid "Widget Creator"
1976
+ msgstr "Widget Creator"
1977
 
1978
  #: app/view/admin/widget-creator.php:131
1979
  msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
+ msgstr "Usa esta herramienta para generar trozos de código que puedes añadir a <strong>una web externa</strong> para añadir nuevos calendarios y widgets."
1981
 
1982
  #: app/view/admin/widget-creator.php:132
1983
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
+ msgstr "<h4>¡Atención!</h4><p>Estos widgets están diseñados para ser embebidos en <strong>sitios externos solamente</strong> y pueden causar conflictos si son utilizados dentro del propio sitio wordpress.</p>"
1985
 
1986
  #: app/view/admin/widget-creator.php:134
1987
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
+ msgstr "<p>Usa <a href=\"%s\"><strong>Apariencia</strong> &gt; <strong>Widgets</strong></a> para añadir un widget de evento a tu sitio Wordpress como lo harías con cualquier otro widget, o usa <a href=\"%s\" target=\"_blank\">shortcodes</a> para embeber el calendario completo.</strong></p>"
1989
 
1990
  #: app/view/admin/widget-creator.php:140
1991
  msgid "Paste this code onto your site:"
1993
 
1994
  #: app/view/admin/widget-creator.php:141
1995
  msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
+ msgstr "Este c&oacute;digo se actualizar&aacute; para reflejar los cambios realizados en los ajustes. Los cambios en la configuraci&oacute;n no afectan a los widgets embebidos anteriormente."
1997
 
1998
  #: app/view/calendar/page.php:54
1999
  msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2001
 
2002
  #: app/view/calendar/page.php:74
2003
  msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
+ msgstr "la vista del calendario no se pudo inicializar %s y se ha revertido a la vista Agenda. Por favor, revisa si has instalado la versi&oacute;n m&aacute;s reciente de las add-ons."
2005
 
2006
  #: app/view/admin/settings.php:193
2007
  msgid "Phone Number:"
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
2175
+ msgstr "Email:"
2176
 
2177
  #: app/view/admin/settings.php:191
2178
  msgid "Password:"
2240
 
2241
  #: app/view/admin/organize.php:100
2242
  msgid "Organize Events"
2243
+ msgstr "Organizar Eventos"
2244
 
2245
  #: app/view/admin/settings.php:30
2246
  msgid "All-in-One Event Calendar: Settings"
2402
 
2403
  #: app/view/admin/add-new-event.php:423
2404
  msgid "Set banner image"
2405
+ msgstr "Establecer la imagen en banner"
2406
 
2407
  #: app/view/admin/add-new-event.php:424
2408
  msgid "Remove banner image"
2409
+ msgstr "Borrar la imagen en banner"
2410
 
2411
  #: app/view/admin/add-ons.php:68
2412
  msgid "Add-ons for All In One Event Calendar"
2413
+ msgstr "Add-ons para All In One Event Calendar"
2414
 
2415
  #: app/view/admin/add-ons.php:71
2416
  msgid "Browse All Extensions"
2417
+ msgstr "Buscar todas las extensiones"
2418
 
2419
  #: app/view/admin/add-ons.php:74
2420
  msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
+ msgstr "Estos add-ons amplian la funcionalidad de All-in-One Event Calendar."
2422
 
2423
  #: app/view/admin/add-ons.php:77
2424
  msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
+ msgstr "Se encontr&oacute; un error al recuperar la lista de extensiones del servidor. Por favor, vuelve a intentarlo."
2426
 
2427
  #: app/view/admin/all-events.php:16
2428
  msgid "Author"
2542
 
2543
  #: app/model/settings.php:914
2544
  msgid "Use frontend rendering."
2545
+ msgstr "Utilizar el renderizado en interfaz."
2546
 
2547
  #: app/model/settings.php:917
2548
  msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
+ msgstr "Renderiza la vista de calendario en el navegador en lugar de hacerlo en el servidor; puede mejorar el rendimiento."
2550
 
2551
  #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
  msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2612
 
2613
  #: app/model/settings.php:649
2614
  msgid "Hide <strong>Get a Timely Calendar</strong> button"
2615
+ msgstr "Oculta el botón: <strong>Obtener Timely Calendar</strong>"
2616
 
2617
  #: app/model/settings.php:661
2618
  msgid " Hide <strong>Google Maps</strong> until clicked"
2624
 
2625
  #: app/model/settings.php:676
2626
  msgid "Only applies to first visible calendar found on the page."
2627
+ msgstr "S&oacute;lo se aplica al primer calendario visible encontrado en la p&aucute;gina."
2628
 
2629
  #: app/model/settings.php:688
2630
  msgid "Offset affixed filter bar vertically by"
2737
 
2738
  #: app/controller/javascript.php:509
2739
  msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2740
+ msgstr "Se produjo alg&aucute;n error al establecer la fecha en los eventos.<br>La respuesta del estado es: %STATUS% <br>El error observado era: %ERROR%"
2741
 
2742
  #: app/controller/javascript.php:516
2743
  msgid "The end date can't be earlier than the start date."
2744
+ msgstr "La fecha de finalización no puede ser anterior a la de inicio."
2745
 
2746
  #: app/controller/javascript.php:517
2747
  msgid "For week and day view, you must select an interval of at least 6 hours."
2748
+ msgstr "Para la vista de día o semana debes selecciona un intervalo de al menos 6 horas."
2749
 
2750
  #: app/model/api.php:40
2751
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2959
 
2960
  #: app/controller/javascript.php:440
2961
  msgid "Loading&hellip;"
2962
+ msgstr "Cargando&hellip;"
2963
 
2964
  #: app/controller/javascript.php:443
2965
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
3013
 
3014
  #: app/controller/javascript-widget.php:48
3015
  msgid "You must choose the Calendar page before using the Super Widget"
3016
+ msgstr "Debes elegir la p&aacute;gina para el calendario antes de usar Super Widget"
3017
 
3018
  #: app/controller/javascript.php:402
3019
  msgid "This feed is already being imported."
language/all-in-one-event-calendar-et.mo ADDED
Binary file
language/all-in-one-event-calendar-et.po ADDED
@@ -0,0 +1,2998 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of 2.3 in Estonian
2
+ # This file is distributed under the same license as the 2.3 package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: +0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
+ "Project-Id-Version: 2.3\n"
12
+
13
+ #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
+ #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
+ msgid "Event background"
16
+ msgstr ""
17
+
18
+ #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
+ #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
+ msgid "Event time background"
21
+ msgstr ""
22
+
23
+ #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
+ #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
+ msgid "Event text"
26
+ msgstr ""
27
+
28
+ #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
+ #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
+ msgid "Month view date background"
31
+ msgstr ""
32
+
33
+ #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
+ #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
+ msgid "Week/day view now marker"
36
+ msgstr ""
37
+
38
+ #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
+ #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
+ msgid "Date label accent color"
41
+ msgstr ""
42
+
43
+ #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
+ #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
+ msgid "Date label background"
46
+ msgstr ""
47
+
48
+ #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
+ #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
+ msgid "Date background"
51
+ msgstr ""
52
+
53
+ #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
+ #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
+ msgid "Today background"
56
+ msgstr ""
57
+
58
+ #. Plugin Name of the plugin/theme
59
+ msgid "All-in-One Event Calendar by Time.ly"
60
+ msgstr ""
61
+
62
+ #. Description of the plugin/theme
63
+ msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
+ msgstr ""
65
+
66
+ #. Author of the plugin/theme
67
+ msgid "Time.ly Network Inc."
68
+ msgstr ""
69
+
70
+ #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
+ #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
+ msgid "List item background (active/hover)"
73
+ msgstr ""
74
+
75
+ #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
+ #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
+ msgid "Input field placeholder text"
78
+ msgstr ""
79
+
80
+ #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
+ #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
+ msgid "Today color"
83
+ msgstr ""
84
+
85
+ #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
+ #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
+ msgid "All-day badge color"
88
+ msgstr ""
89
+
90
+ #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
+ #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
+ msgid "Event image shadow"
93
+ msgstr ""
94
+
95
+ #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
+ #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
+ msgid "Event default color"
98
+ msgstr ""
99
+
100
+ #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
+ #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
+ msgid "Event default color (hover)"
103
+ msgstr ""
104
+
105
+ #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
+ #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
+ msgid "All-day/multi-day event stub text"
108
+ msgstr ""
109
+
110
+ #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
+ #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
+ msgid "All-day/multi-day event stub text shadow"
113
+ msgstr ""
114
+
115
+ #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
+ #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
+ msgid "Event border"
118
+ msgstr ""
119
+
120
+ #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
+ #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
+ msgid "Button text"
123
+ msgstr ""
124
+
125
+ #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
+ #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
+ msgid "Input field text"
128
+ msgstr ""
129
+
130
+ #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
+ #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
+ msgid "Input field background"
133
+ msgstr ""
134
+
135
+ #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
+ #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
+ msgid "Input field border"
138
+ msgstr ""
139
+
140
+ #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
+ #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
+ msgid "Input field border (focus)"
143
+ msgstr ""
144
+
145
+ #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
+ #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
+ msgid "Input field background (disabled)"
148
+ msgstr ""
149
+
150
+ #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
+ #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
+ msgid "Field label"
153
+ msgstr ""
154
+
155
+ #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
+ #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
+ msgid "Dropdown list background"
158
+ msgstr ""
159
+
160
+ #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
+ #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
+ msgid "Dropdown list border"
163
+ msgstr ""
164
+
165
+ #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
+ #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
+ msgid "List item text"
168
+ msgstr ""
169
+
170
+ #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
+ #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
+ msgid "List item text (active/hover)"
173
+ msgstr ""
174
+
175
+ #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
+ msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
+ msgstr ""
178
+
179
+ #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
+ msgid "Theme deleted."
181
+ msgstr ""
182
+
183
+ #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
+ msgid "Manage Themes"
185
+ msgstr ""
186
+
187
+ #: public/admin/themes-install.php:40
188
+ msgctxt "theme"
189
+ msgid "Install Themes"
190
+ msgstr ""
191
+
192
+ #: public/admin/themes-updated.php:5
193
+ msgid "Update Calendar Themes"
194
+ msgstr ""
195
+
196
+ #: public/admin/themes-updated.php:15
197
+ msgid "All-in-One Event Calendar Settings »"
198
+ msgstr ""
199
+
200
+ #: public/admin/themes.php:18
201
+ msgid "Current Calendar Theme"
202
+ msgstr ""
203
+
204
+ #: public/admin/themes.php:21
205
+ msgid "Current theme preview"
206
+ msgstr ""
207
+
208
+ #: public/admin/themes.php:47
209
+ msgid "Available Calendar Themes"
210
+ msgstr ""
211
+
212
+ #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
+ #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
+ msgid "Body background"
215
+ msgstr ""
216
+
217
+ #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
+ #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
+ msgid "Text color"
220
+ msgstr ""
221
+
222
+ #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
+ #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
+ msgid "Text emboss"
225
+ msgstr ""
226
+
227
+ #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
+ #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
+ msgid "Link"
230
+ msgstr ""
231
+
232
+ #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
+ #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
+ msgid "Link (hover)"
235
+ msgstr ""
236
+
237
+ #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
+ #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
+ msgid "Base font"
240
+ msgstr ""
241
+
242
+ #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
+ #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
+ msgid "Base font size"
245
+ msgstr ""
246
+
247
+ #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
+ #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
+ msgid "Table background"
250
+ msgstr ""
251
+
252
+ #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
+ #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
+ msgid "Table header background"
255
+ msgstr ""
256
+
257
+ #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
+ #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
+ msgid "Table header text"
260
+ msgstr ""
261
+
262
+ #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
+ #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
+ msgid "Primary brand color"
265
+ msgstr ""
266
+
267
+ #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
+ #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
+ msgid "Button background"
270
+ msgstr ""
271
+
272
+ #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
+ #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
+ msgid "Button border"
275
+ msgstr ""
276
+
277
+ #: public/admin/feed_row.php:104
278
+ msgid "Refreshing&#8230;"
279
+ msgstr ""
280
+
281
+ #: public/admin/feed_row.php:106
282
+ msgid "Refresh"
283
+ msgstr ""
284
+
285
+ #: public/admin/feed_row.php:119
286
+ msgid "Removing&#8230;"
287
+ msgstr ""
288
+
289
+ #: public/admin/feed_row.php:121
290
+ msgid "Remove"
291
+ msgstr ""
292
+
293
+ #: public/admin/import.php:6
294
+ msgid "Successfully imported events:"
295
+ msgstr ""
296
+
297
+ #: public/admin/plugins/ics/display_feeds.php:2
298
+ msgid ""
299
+ "Configure which other calendars your own calendar subscribes to.\n"
300
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
302
+ " imported periodically."
303
+ msgstr ""
304
+
305
+ #: public/admin/plugins/ics/display_feeds.php:14
306
+ msgid "Check for new events"
307
+ msgstr ""
308
+
309
+ #: public/admin/plugins/ics/display_feeds.php:45
310
+ msgid "Allow comments on imported events"
311
+ msgstr ""
312
+
313
+ #: public/admin/plugins/ics/display_feeds.php:52
314
+ msgid "Show map on imported events"
315
+ msgstr ""
316
+
317
+ #: public/admin/plugins/ics/display_feeds.php:59
318
+ msgid "Import any tags/categories provided by feed, in addition those selected above"
319
+ msgstr ""
320
+
321
+ #: public/admin/plugins/ics/display_feeds.php:93
322
+ msgid "Add new subscription"
323
+ msgstr ""
324
+
325
+ #: public/admin/plugins/ics/display_feeds.php:96
326
+ msgid "Update subscription"
327
+ msgstr ""
328
+
329
+ #: public/admin/row_custom.php:3
330
+ msgid "Custom dates:"
331
+ msgstr ""
332
+
333
+ #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
334
+ #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
335
+ #: public/admin/row_yearly.php:3
336
+ msgid "Every"
337
+ msgstr ""
338
+
339
+ #: public/admin/row_monthly.php:16
340
+ msgid "On day of the month"
341
+ msgstr ""
342
+
343
+ #: public/admin/row_monthly.php:23
344
+ msgid "On day of the week"
345
+ msgstr ""
346
+
347
+ #: public/admin/row_weekly.php:12
348
+ msgctxt "Recurrence editor - weekly tab"
349
+ msgid "On"
350
+ msgstr ""
351
+
352
+ #: public/admin/row_yearly.php:12
353
+ msgctxt "Recurrence editor - yearly tab"
354
+ msgid "In"
355
+ msgstr ""
356
+
357
+ #: public/admin/settings.php:19
358
+ msgid "Update Settings"
359
+ msgstr ""
360
+
361
+ #: public/admin/themes-install.php:4
362
+ msgid "The active theme is broken. Reverting to the default theme."
363
+ msgstr ""
364
+
365
+ #: public/admin/themes-install.php:13
366
+ msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
367
+ msgstr ""
368
+
369
+ #: public/admin/calendar_tasks.php:24
370
+ msgid "Manage Events"
371
+ msgstr ""
372
+
373
+ #: public/admin/calendar_tasks.php:27
374
+ msgid "View and edit all your events."
375
+ msgstr ""
376
+
377
+ #: public/admin/calendar_tasks.php:39
378
+ msgid "Manage Event Categories"
379
+ msgstr ""
380
+
381
+ #: public/admin/calendar_tasks.php:42
382
+ msgid "Organize and color-code your events."
383
+ msgstr ""
384
+
385
+ #: public/admin/calendar_tasks.php:50
386
+ msgid "Choose Your Theme"
387
+ msgstr ""
388
+
389
+ #: public/admin/calendar_tasks.php:53
390
+ msgid "Change the look and feel."
391
+ msgstr ""
392
+
393
+ #: public/admin/calendar_tasks.php:63
394
+ msgid "Manage Calendar Feeds"
395
+ msgstr ""
396
+
397
+ #: public/admin/calendar_tasks.php:66
398
+ msgid "Subscribe to other calendars."
399
+ msgstr ""
400
+
401
+ #: public/admin/calendar_tasks.php:74
402
+ msgid "Edit Calendar Settings"
403
+ msgstr ""
404
+
405
+ #: public/admin/calendar_tasks.php:77
406
+ msgid "Make this calendar your own."
407
+ msgstr ""
408
+
409
+ #: public/admin/cron_freq.php:3
410
+ msgid "Hourly"
411
+ msgstr ""
412
+
413
+ #: public/admin/cron_freq.php:6
414
+ msgid "Twice Daily"
415
+ msgstr ""
416
+
417
+ #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
418
+ msgid "iCalendar/.ics Feed URL:"
419
+ msgstr ""
420
+
421
+ #: public/admin/feed_row.php:24
422
+ msgid "Event categories:"
423
+ msgstr ""
424
+
425
+ #: public/admin/feed_row.php:31
426
+ msgid "Tag with"
427
+ msgstr ""
428
+
429
+ #: public/admin/feed_row.php:40
430
+ msgid "Allow comments"
431
+ msgstr ""
432
+
433
+ #: public/admin/feed_row.php:51
434
+ msgid "Show map"
435
+ msgstr ""
436
+
437
+ #: public/admin/feed_row.php:63
438
+ msgid "Keep original events categories and tags"
439
+ msgstr ""
440
+
441
+ #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
442
+ msgid "On refresh, preserve previously imported events that are missing from the feed"
443
+ msgstr ""
444
+
445
+ #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
446
+ msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
447
+ msgstr ""
448
+
449
+ #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
450
+ msgid "Assign default time zone to events in UTC"
451
+ msgstr ""
452
+
453
+ #: public/admin/box_support.php:19
454
+ msgid "Get Add-ons"
455
+ msgstr ""
456
+
457
+ #: public/admin/box_support.php:27
458
+ msgid "Support"
459
+ msgstr ""
460
+
461
+ #: public/admin/box_support.php:35
462
+ msgid "Timely Events"
463
+ msgstr ""
464
+
465
+ #: public/admin/box_support.php:43
466
+ msgid "Timely News"
467
+ msgstr ""
468
+
469
+ #: public/admin/box_support.php:47
470
+ msgid "view all news"
471
+ msgstr ""
472
+
473
+ #: public/admin/box_support.php:95
474
+ msgid "Follow @_Timely"
475
+ msgstr ""
476
+
477
+ #: public/admin/box_time_and_date.php:6
478
+ msgid "Event date and time"
479
+ msgstr ""
480
+
481
+ #: public/admin/box_time_and_date.php:26
482
+ msgid "All-day event"
483
+ msgstr ""
484
+
485
+ #: public/admin/box_time_and_date.php:35
486
+ msgid "No end time"
487
+ msgstr ""
488
+
489
+ #: public/admin/box_time_and_date.php:42
490
+ msgid "Start date / time"
491
+ msgstr ""
492
+
493
+ #: public/admin/box_time_and_date.php:59
494
+ msgid "End date / time"
495
+ msgstr ""
496
+
497
+ #: public/admin/box_time_and_date.php:76
498
+ msgid "Time zone"
499
+ msgstr ""
500
+
501
+ #: public/admin/box_time_and_date.php:81
502
+ msgid "Choose your time zone"
503
+ msgstr ""
504
+
505
+ #: public/admin/box_time_and_date.php:108
506
+ msgid "Repeat"
507
+ msgstr ""
508
+
509
+ #: public/admin/box_time_and_date.php:127
510
+ msgid "Exclude"
511
+ msgstr ""
512
+
513
+ #: public/admin/box_time_and_date.php:136
514
+ msgid "Choose a rule for exclusion"
515
+ msgstr ""
516
+
517
+ #: public/admin/calendar_tasks.php:3
518
+ msgid "Welcome"
519
+ msgstr ""
520
+
521
+ #: public/admin/calendar_tasks.php:4
522
+ msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
523
+ msgstr ""
524
+
525
+ #: public/admin/calendar_tasks.php:13
526
+ msgid "Post Your Event"
527
+ msgstr ""
528
+
529
+ #: public/admin/calendar_tasks.php:16
530
+ msgid "Add a new event to the calendar."
531
+ msgstr ""
532
+
533
+ #: public/admin/box_eventbrite.php:60
534
+ msgid "Donation Based"
535
+ msgstr ""
536
+
537
+ #: public/admin/box_eventbrite.php:68
538
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
539
+ msgstr ""
540
+
541
+ #: public/admin/box_eventbrite.php:75
542
+ msgid "Quantity"
543
+ msgstr ""
544
+
545
+ #: public/admin/box_eventbrite.php:85
546
+ msgid "Include Fee in Price"
547
+ msgstr ""
548
+
549
+ #: public/admin/box_eventbrite.php:90
550
+ msgid "Add Service Fee on top of price"
551
+ msgstr ""
552
+
553
+ #: public/admin/box_eventbrite.php:92
554
+ msgid "Include Service fee in price"
555
+ msgstr ""
556
+
557
+ #: public/admin/box_eventbrite.php:98
558
+ msgid "Payment Options"
559
+ msgstr ""
560
+
561
+ #: public/admin/box_eventbrite.php:105
562
+ msgid "Google Checkout"
563
+ msgstr ""
564
+
565
+ #: public/admin/box_eventbrite.php:107
566
+ msgid "Check"
567
+ msgstr ""
568
+
569
+ #: public/admin/box_eventbrite.php:109
570
+ msgid "Cash"
571
+ msgstr ""
572
+
573
+ #: public/admin/box_eventbrite.php:111
574
+ msgid "Send an Invoice"
575
+ msgstr ""
576
+
577
+ #: public/admin/box_profile_timezone.php:9
578
+ msgid "Your preferred timezone"
579
+ msgstr ""
580
+
581
+ #: public/admin/box_repeat.php:5
582
+ msgid "Select recurrence pattern:"
583
+ msgstr ""
584
+
585
+ #: public/admin/box_repeat.php:36
586
+ msgid "Custom"
587
+ msgstr ""
588
+
589
+ #: public/admin/box_repeat.php:72
590
+ msgid "End"
591
+ msgstr ""
592
+
593
+ #: public/admin/box_repeat.php:82
594
+ msgid "Ending after"
595
+ msgstr ""
596
+
597
+ #: public/admin/box_repeat.php:109
598
+ #: public/admin/plugins/ics/display_feeds.php:90
599
+ msgid "Please wait&#8230;"
600
+ msgstr ""
601
+
602
+ #: public/admin/box_repeat.php:111
603
+ msgid "Apply"
604
+ msgstr ""
605
+
606
+ #: public/admin/box_repeat.php:116
607
+ #: public/admin/plugins/ics/display_feeds.php:84
608
+ msgid "Cancel"
609
+ msgstr ""
610
+
611
+ #: public/admin/box_support.php:4
612
+ msgid "Timely"
613
+ msgstr ""
614
+
615
+ #: public/admin/box_support.php:11
616
+ msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
617
+ msgstr ""
618
+
619
+ #: public/admin/box_event_cost.php:228
620
+ msgid "Status:"
621
+ msgstr ""
622
+
623
+ #: public/admin/box_event_cost.php:235
624
+ msgid "Open"
625
+ msgstr ""
626
+
627
+ #: public/admin/box_event_cost.php:239
628
+ msgid "Closed"
629
+ msgstr ""
630
+
631
+ #: public/admin/box_event_cost.php:254
632
+ msgid "Add New Ticket Type"
633
+ msgstr ""
634
+
635
+ #: public/admin/box_event_cost.php:274
636
+ msgid "Tickets URL:"
637
+ msgstr ""
638
+
639
+ #: public/admin/box_event_location.php:6
640
+ msgid "Event location details"
641
+ msgstr ""
642
+
643
+ #: public/admin/box_event_location.php:19
644
+ msgid "Venue name:"
645
+ msgstr ""
646
+
647
+ #: public/admin/box_event_location.php:31
648
+ msgid "Address:"
649
+ msgstr ""
650
+
651
+ #: public/admin/box_event_location.php:45
652
+ msgid "Input Coordinates"
653
+ msgstr ""
654
+
655
+ #: public/admin/box_event_location.php:57
656
+ msgid "Latitude:"
657
+ msgstr ""
658
+
659
+ #: public/admin/box_event_location.php:69
660
+ msgid "Longitude:"
661
+ msgstr ""
662
+
663
+ #: public/admin/box_event_location.php:85
664
+ msgid "Show Map"
665
+ msgstr ""
666
+
667
+ #: public/admin/box_eventbrite.php:1
668
+ msgid "Eventbrite Ticketing"
669
+ msgstr ""
670
+
671
+ #: public/admin/box_eventbrite.php:7
672
+ msgid "Register this event with Eventbrite.com?"
673
+ msgstr ""
674
+
675
+ #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
676
+ #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
677
+ #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
678
+ msgid "Yes"
679
+ msgstr ""
680
+
681
+ #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
682
+ #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
683
+ #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
684
+ msgid "No"
685
+ msgstr ""
686
+
687
+ #: public/admin/box_eventbrite.php:22
688
+ msgid "Set up your first ticket"
689
+ msgstr ""
690
+
691
+ #: public/admin/box_eventbrite.php:24
692
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
693
+ msgstr ""
694
+
695
+ #: public/admin/box_eventbrite.php:42
696
+ msgid "Description"
697
+ msgstr ""
698
+
699
+ #: public/admin/box_eventbrite.php:53
700
+ msgid "Type"
701
+ msgstr ""
702
+
703
+ #: public/admin/box_eventbrite.php:58
704
+ msgid "Set Price"
705
+ msgstr ""
706
+
707
+ #: public/admin/box_event_contact.php:30
708
+ msgid "Phone:"
709
+ msgstr ""
710
+
711
+ #: public/admin/box_event_contact.php:56
712
+ msgid "Website URL:"
713
+ msgstr ""
714
+
715
+ #: public/admin/box_event_cost.php:6
716
+ msgid "Event cost and Tickets"
717
+ msgstr ""
718
+
719
+ #: public/admin/box_event_cost.php:20
720
+ msgid "Ticket options not available - event imported from external calendar."
721
+ msgstr ""
722
+
723
+ #: public/admin/box_event_cost.php:28
724
+ msgid "Free event"
725
+ msgstr ""
726
+
727
+ #: public/admin/box_event_cost.php:41
728
+ msgid "External Tickets URL"
729
+ msgstr ""
730
+
731
+ #: public/admin/box_event_cost.php:52
732
+ msgid "Ticketing allows you to sell tickets directly to the users."
733
+ msgstr ""
734
+
735
+ #: public/admin/box_event_cost.php:55
736
+ msgid "Sign Up for Timely Network"
737
+ msgstr ""
738
+
739
+ #: public/admin/box_event_cost.php:80
740
+ msgid "Remove Ticket Type"
741
+ msgstr ""
742
+
743
+ #: public/admin/box_event_cost.php:101
744
+ msgid "Ex.: Regular Ticket"
745
+ msgstr ""
746
+
747
+ #: public/admin/box_event_cost.php:105
748
+ msgid "Description:"
749
+ msgstr ""
750
+
751
+ #: public/admin/box_event_cost.php:111
752
+ msgid "(Optional)"
753
+ msgstr ""
754
+
755
+ #: public/admin/box_event_cost.php:115
756
+ msgid "Price:"
757
+ msgstr ""
758
+
759
+ #: public/admin/box_event_cost.php:124
760
+ msgid "USD"
761
+ msgstr ""
762
+
763
+ #: public/admin/box_event_cost.php:128
764
+ msgid "Limits:"
765
+ msgstr ""
766
+
767
+ #: public/admin/box_event_cost.php:131
768
+ msgid "This fields are required."
769
+ msgstr ""
770
+
771
+ #: public/admin/box_event_cost.php:156
772
+ msgid "Quantity:"
773
+ msgstr ""
774
+
775
+ #: public/admin/box_event_cost.php:180
776
+ msgid "Available:"
777
+ msgstr ""
778
+
779
+ #: public/admin/box_event_cost.php:185
780
+ msgid "Immediately"
781
+ msgstr ""
782
+
783
+ #: public/admin/box_event_cost.php:190
784
+ msgid "From:"
785
+ msgstr ""
786
+
787
+ #: public/admin/box_event_cost.php:207
788
+ msgid "Till:"
789
+ msgstr ""
790
+
791
+ #: public/admin/box_ask_customer_review.php:42
792
+ #: public/admin/box_ask_customer_review.php:75
793
+ msgid "No, thanks"
794
+ msgstr ""
795
+
796
+ #: public/admin/box_ask_customer_review.php:50
797
+ #: public/admin/box_ask_customer_review.php:84
798
+ msgid "Ok, sure!"
799
+ msgstr ""
800
+
801
+ #: public/admin/box_ask_customer_review.php:66
802
+ msgid "Would you mind giving us some feedback?"
803
+ msgstr ""
804
+
805
+ #: public/admin/box_ask_customer_review.php:101
806
+ msgid "Please provide some feedback"
807
+ msgstr ""
808
+
809
+ #: public/admin/box_ask_customer_review.php:108
810
+ msgid "Message:"
811
+ msgstr ""
812
+
813
+ #: public/admin/box_ask_customer_review.php:121
814
+ msgid "Name:"
815
+ msgstr ""
816
+
817
+ #: public/admin/box_ask_customer_review.php:136
818
+ #: public/admin/box_event_contact.php:43
819
+ msgid "E-mail:"
820
+ msgstr ""
821
+
822
+ #: public/admin/box_ask_customer_review.php:143
823
+ msgid "E-mail is invalid."
824
+ msgstr ""
825
+
826
+ #: public/admin/box_ask_customer_review.php:154
827
+ msgid "Site URL:"
828
+ msgstr ""
829
+
830
+ #: public/admin/box_ask_customer_review.php:161
831
+ msgid "Site URL is invalid."
832
+ msgstr ""
833
+
834
+ #: public/admin/box_ask_customer_review.php:173
835
+ msgid "Thank you for being our customer,"
836
+ msgstr ""
837
+
838
+ #: public/admin/box_ask_customer_review.php:174
839
+ msgid "Aristotel Dascal, VP of Product, Time.ly"
840
+ msgstr ""
841
+
842
+ #: public/admin/box_ask_customer_review.php:180
843
+ msgid "Sending..."
844
+ msgstr ""
845
+
846
+ #: public/admin/box_ask_customer_review.php:181
847
+ msgid "Send Message"
848
+ msgstr ""
849
+
850
+ #: public/admin/box_event_children.php:12
851
+ msgid "Base recurrence event"
852
+ msgstr ""
853
+
854
+ #: public/admin/box_event_children.php:14
855
+ msgid "Modified recurrence events"
856
+ msgstr ""
857
+
858
+ #: public/admin/box_event_children.php:22
859
+ msgid "Edit parent:"
860
+ msgstr ""
861
+
862
+ #: public/admin/box_event_children.php:27
863
+ msgid "Modified Events"
864
+ msgstr ""
865
+
866
+ #: public/admin/box_event_children.php:31
867
+ msgid "Edit:"
868
+ msgstr ""
869
+
870
+ #: public/admin/box_event_contact.php:6
871
+ msgid "Organizer contact info"
872
+ msgstr ""
873
+
874
+ #: public/admin/box_event_contact.php:17
875
+ msgid "Contact name:"
876
+ msgstr ""
877
+
878
+ #: lib/theme/loader.php:325
879
+ msgid "We couldn't find a suitable loader for filename with extension '%s'"
880
+ msgstr ""
881
+
882
+ #: lib/theme/loader.php:631
883
+ msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
884
+ msgstr ""
885
+
886
+ #: lib/theme/search.php:253
887
+ msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
888
+ msgstr ""
889
+
890
+ #: lib/theme/search.php:264
891
+ msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
892
+ msgstr ""
893
+
894
+ #: lib/twig/environment.php:115
895
+ msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
896
+ msgstr ""
897
+
898
+ #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
899
+ msgid "Title:"
900
+ msgstr ""
901
+
902
+ #: public/admin/agenda-widget-form.php:12
903
+ msgid "Number of events to show:"
904
+ msgstr ""
905
+
906
+ #: public/admin/agenda-widget-form.php:21
907
+ msgid "Number of days to show:"
908
+ msgstr ""
909
+
910
+ #: public/admin/agenda-widget-form.php:26
911
+ msgid "Limit to:"
912
+ msgstr ""
913
+
914
+ #: public/admin/agenda-widget-form.php:30
915
+ msgid "Events with these <strong>Categories</strong>"
916
+ msgstr ""
917
+
918
+ #: public/admin/agenda-widget-form.php:39
919
+ msgid "No categories found."
920
+ msgstr ""
921
+
922
+ #: public/admin/agenda-widget-form.php:46
923
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
924
+ msgstr ""
925
+
926
+ #: public/admin/agenda-widget-form.php:55
927
+ msgid "No tags found."
928
+ msgstr ""
929
+
930
+ #: public/admin/agenda-widget-form.php:62
931
+ msgid "Show <strong>View Calendar</strong> button"
932
+ msgstr ""
933
+
934
+ #: public/admin/agenda-widget-form.php:65
935
+ msgid "Show <strong>Subscribe</strong> buttons"
936
+ msgstr ""
937
+
938
+ #: public/admin/agenda-widget-form.php:68
939
+ msgid "Hide this widget on calendar page"
940
+ msgstr ""
941
+
942
+ #: public/admin/box_ask_customer_review.php:5
943
+ msgid "Enjoying All-in-One Event Calendar?"
944
+ msgstr ""
945
+
946
+ #: public/admin/box_ask_customer_review.php:13
947
+ msgid "Not really"
948
+ msgstr ""
949
+
950
+ #: public/admin/box_ask_customer_review.php:20
951
+ msgid "Yes!"
952
+ msgstr ""
953
+
954
+ #: public/admin/box_ask_customer_review.php:33
955
+ msgid "How about a rating on the Wordpress?"
956
+ msgstr ""
957
+
958
+ #: lib/recurrence/rule.php:397
959
+ msgid "Every %d weeks"
960
+ msgstr ""
961
+
962
+ #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
963
+ msgid "Monthly"
964
+ msgstr ""
965
+
966
+ #: lib/recurrence/rule.php:409
967
+ msgid "Every other month"
968
+ msgstr ""
969
+
970
+ #: lib/recurrence/rule.php:412
971
+ msgid "Every %d months"
972
+ msgstr ""
973
+
974
+ #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
975
+ msgid "Yearly"
976
+ msgstr ""
977
+
978
+ #: lib/recurrence/rule.php:424
979
+ msgid "Every other year"
980
+ msgstr ""
981
+
982
+ #: lib/recurrence/rule.php:427
983
+ msgid "Every %d years"
984
+ msgstr ""
985
+
986
+ #: lib/recurrence/rule.php:465
987
+ msgid "until %s"
988
+ msgstr ""
989
+
990
+ #: lib/recurrence/rule.php:475
991
+ msgid "for %d occurrences"
992
+ msgstr ""
993
+
994
+ #: lib/recurrence/rule.php:479
995
+ msgid "forever"
996
+ msgstr ""
997
+
998
+ #: lib/robots/helper.php:71
999
+ msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1000
+ msgstr ""
1001
+
1002
+ #: lib/robots/helper.php:105
1003
+ msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1004
+ msgstr ""
1005
+
1006
+ #: lib/theme/list.php:152
1007
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1008
+ msgstr ""
1009
+
1010
+ #: lib/theme/list.php:164
1011
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1012
+ msgstr ""
1013
+
1014
+ #: lib/theme/list.php:179
1015
+ msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1016
+ msgstr ""
1017
+
1018
+ #: lib/theme/list.php:190
1019
+ msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1020
+ msgstr ""
1021
+
1022
+ #: lib/theme/list.php:257
1023
+ msgid "Activate &#8220;%s&#8221;"
1024
+ msgstr ""
1025
+
1026
+ #: lib/theme/list.php:264
1027
+ msgid "Activate"
1028
+ msgstr ""
1029
+
1030
+ #. translators: 1: theme title, 2: theme version, 3: theme author
1031
+ #: lib/theme/list.php:281 public/admin/themes.php:25
1032
+ msgid "%1$s %2$s by %3$s"
1033
+ msgstr ""
1034
+
1035
+ #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1036
+ #. title, 5: parent_theme
1037
+ #: lib/theme/list.php:293
1038
+ msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1039
+ msgstr ""
1040
+
1041
+ #: lib/theme/list.php:308
1042
+ msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1043
+ msgstr ""
1044
+
1045
+ #: lib/post/custom-type.php:36
1046
+ msgid "Parent Event"
1047
+ msgstr ""
1048
+
1049
+ #: lib/post/custom-type.php:55
1050
+ msgid "event"
1051
+ msgstr ""
1052
+
1053
+ #: lib/post/custom-type.php:85
1054
+ msgctxt "Event categories taxonomy"
1055
+ msgid "Categories"
1056
+ msgstr ""
1057
+
1058
+ #: lib/post/custom-type.php:86
1059
+ msgctxt "Event categories taxonomy (singular)"
1060
+ msgid "Category"
1061
+ msgstr ""
1062
+
1063
+ #: lib/post/custom-type.php:87
1064
+ msgctxt "Event categories menu item"
1065
+ msgid "Organize"
1066
+ msgstr ""
1067
+
1068
+ #: lib/post/custom-type.php:94
1069
+ msgctxt "Event tags taxonomy"
1070
+ msgid "Tags"
1071
+ msgstr ""
1072
+
1073
+ #: lib/post/custom-type.php:95
1074
+ msgctxt "Event tags taxonomy (singular)"
1075
+ msgid "Tag"
1076
+ msgstr ""
1077
+
1078
+ #: lib/post/custom-type.php:102
1079
+ msgctxt "Event feeds taxonomy"
1080
+ msgid "Event Feeds"
1081
+ msgstr ""
1082
+
1083
+ #: lib/post/custom-type.php:103
1084
+ msgctxt "Event feed taxonomy (singular)"
1085
+ msgid "Event Feed"
1086
+ msgstr ""
1087
+
1088
+ #: lib/post/custom-type.php:285
1089
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1090
+ msgstr ""
1091
+
1092
+ #: lib/post/custom-type.php:296
1093
+ msgid "All Events"
1094
+ msgstr ""
1095
+
1096
+ #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1097
+ #: lib/recurrence/rule.php:260
1098
+ msgctxt "Recurrence editor - weekly tab"
1099
+ msgid "on"
1100
+ msgstr ""
1101
+
1102
+ #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1103
+ #: lib/recurrence/rule.php:326
1104
+ msgid "and"
1105
+ msgstr ""
1106
+
1107
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1108
+ #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1109
+ msgctxt "Recurrence editor - monthly tab"
1110
+ msgid "on"
1111
+ msgstr ""
1112
+
1113
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1114
+ #: lib/recurrence/rule.php:286
1115
+ msgid "of the month"
1116
+ msgstr ""
1117
+
1118
+ #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1119
+ #: lib/recurrence/rule.php:336
1120
+ msgctxt "Recurrence editor - yearly tab"
1121
+ msgid "on"
1122
+ msgstr ""
1123
+
1124
+ #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1125
+ #: public/admin/cron_freq.php:9
1126
+ msgid "Daily"
1127
+ msgstr ""
1128
+
1129
+ #: lib/recurrence/rule.php:379
1130
+ msgid "Every other day"
1131
+ msgstr ""
1132
+
1133
+ #: lib/recurrence/rule.php:382
1134
+ msgid "Every %d days"
1135
+ msgstr ""
1136
+
1137
+ #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1138
+ msgid "Weekly"
1139
+ msgstr ""
1140
+
1141
+ #: lib/recurrence/rule.php:394
1142
+ msgid "Every other week"
1143
+ msgstr ""
1144
+
1145
+ #: lib/less/variable/font.php:64
1146
+ msgid "Custom..."
1147
+ msgstr ""
1148
+
1149
+ #: lib/less/variable/font.php:112
1150
+ msgid "Enter custom font(s)"
1151
+ msgstr ""
1152
+
1153
+ #: lib/less/variable/size.php:26
1154
+ msgid "Length"
1155
+ msgstr ""
1156
+
1157
+ #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1158
+ msgid "All-in-One Event Calendar"
1159
+ msgstr ""
1160
+
1161
+ #: lib/notification/admin.php:182
1162
+ msgid "Got it – dismiss this"
1163
+ msgstr ""
1164
+
1165
+ #: lib/post/custom-type.php:26
1166
+ msgctxt "Custom post type name"
1167
+ msgid "Events"
1168
+ msgstr ""
1169
+
1170
+ #: lib/post/custom-type.php:27
1171
+ msgctxt "Custom post type name (singular)"
1172
+ msgid "Event"
1173
+ msgstr ""
1174
+
1175
+ #: lib/post/custom-type.php:28
1176
+ msgid "Add New"
1177
+ msgstr ""
1178
+
1179
+ #: lib/post/custom-type.php:29
1180
+ msgid "Add New Event"
1181
+ msgstr ""
1182
+
1183
+ #: lib/post/custom-type.php:30
1184
+ msgid "Edit Event"
1185
+ msgstr ""
1186
+
1187
+ #: lib/post/custom-type.php:31
1188
+ msgid "New Event"
1189
+ msgstr ""
1190
+
1191
+ #: lib/post/custom-type.php:32
1192
+ msgid "View Event"
1193
+ msgstr ""
1194
+
1195
+ #: lib/post/custom-type.php:33
1196
+ msgid "Search Events"
1197
+ msgstr ""
1198
+
1199
+ #: lib/post/custom-type.php:34
1200
+ msgid "No Events found"
1201
+ msgstr ""
1202
+
1203
+ #: lib/post/custom-type.php:35
1204
+ msgid "No Events found in Trash"
1205
+ msgstr ""
1206
+
1207
+ #: lib/html/element/setting/html.php:62
1208
+ msgid "Filter by post ID:"
1209
+ msgstr ""
1210
+
1211
+ #: lib/html/element/setting/html.php:63
1212
+ msgid "Filter by post IDs (separate IDs by comma):"
1213
+ msgstr ""
1214
+
1215
+ #: lib/html/element/setting/html.php:64
1216
+ msgid "Limit number of events per page:"
1217
+ msgstr ""
1218
+
1219
+ #: lib/html/element/setting/html.php:65
1220
+ msgid "Warning:"
1221
+ msgstr ""
1222
+
1223
+ #: lib/html/element/setting/html.php:66
1224
+ msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1225
+ msgstr ""
1226
+
1227
+ #: lib/import-export/ics.php:831
1228
+ msgid "Tickets: "
1229
+ msgstr ""
1230
+
1231
+ #: lib/html/element/setting/html.php:41
1232
+ msgid "Day view:"
1233
+ msgstr ""
1234
+
1235
+ #: lib/html/element/setting/html.php:42
1236
+ msgid "Agenda view:"
1237
+ msgstr ""
1238
+
1239
+ #: lib/html/element/setting/html.php:43
1240
+ msgid "Some Other view:"
1241
+ msgstr ""
1242
+
1243
+ #: lib/html/element/setting/html.php:44
1244
+ msgid "Default view as per settings:"
1245
+ msgstr ""
1246
+
1247
+ #: lib/html/element/setting/html.php:45
1248
+ msgid "General form:"
1249
+ msgstr ""
1250
+
1251
+ #: lib/html/element/setting/html.php:46
1252
+ msgid "Optional."
1253
+ msgstr ""
1254
+
1255
+ #: lib/html/element/setting/html.php:47
1256
+ msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1257
+ msgstr ""
1258
+
1259
+ #: lib/html/element/setting/html.php:48
1260
+ msgid "Filter by event category name/slug:"
1261
+ msgstr ""
1262
+
1263
+ #: lib/html/element/setting/html.php:49
1264
+ msgid "Holidays"
1265
+ msgstr ""
1266
+
1267
+ #: lib/html/element/setting/html.php:50
1268
+ msgid "Lunar Cycles"
1269
+ msgstr ""
1270
+
1271
+ #: lib/html/element/setting/html.php:51
1272
+ msgid "zodiac-date-ranges"
1273
+ msgstr ""
1274
+
1275
+ #: lib/html/element/setting/html.php:52
1276
+ msgid "Filter by event category names/slugs (separate names by comma):"
1277
+ msgstr ""
1278
+
1279
+ #: lib/html/element/setting/html.php:53
1280
+ msgid "Filter by event category ID:"
1281
+ msgstr ""
1282
+
1283
+ #: lib/html/element/setting/html.php:54
1284
+ msgid "Filter by event category IDs (separate IDs by comma):"
1285
+ msgstr ""
1286
+
1287
+ #: lib/html/element/setting/html.php:55
1288
+ msgid "Filter by event tag name/slug:"
1289
+ msgstr ""
1290
+
1291
+ #: lib/html/element/setting/html.php:56
1292
+ msgid "tips-and-tricks"
1293
+ msgstr ""
1294
+
1295
+ #: lib/html/element/setting/html.php:57
1296
+ msgid "creative writing"
1297
+ msgstr ""
1298
+
1299
+ #: lib/html/element/setting/html.php:58
1300
+ msgid "performing arts"
1301
+ msgstr ""
1302
+
1303
+ #: lib/html/element/setting/html.php:59
1304
+ msgid "Filter by event tag names/slugs (separate names by comma):"
1305
+ msgstr ""
1306
+
1307
+ #: lib/html/element/setting/html.php:60
1308
+ msgid "Filter by event tag ID:"
1309
+ msgstr ""
1310
+
1311
+ #: lib/html/element/setting/html.php:61
1312
+ msgid "Filter by event tag IDs (separate IDs by comma):"
1313
+ msgstr ""
1314
+
1315
+ #: lib/exception/handler.php:395
1316
+ msgid "All-in-One Event Calendar has been disabled due to an error:"
1317
+ msgstr ""
1318
+
1319
+ #: lib/exception/handler.php:404
1320
+ msgid "Try reactivating plugin"
1321
+ msgstr ""
1322
+
1323
+ #: lib/exception/handler.php:576
1324
+ msgid "Toggle error details"
1325
+ msgstr ""
1326
+
1327
+ #: lib/exception/handler.php:577
1328
+ msgid "Error Details:"
1329
+ msgstr ""
1330
+
1331
+ #: lib/factory/html.php:133
1332
+ msgid "Choose a date using calendar"
1333
+ msgstr ""
1334
+
1335
+ #: lib/factory/html.php:278
1336
+ msgid "Tags (optional)"
1337
+ msgstr ""
1338
+
1339
+ #: lib/html/element/setting/cache.php:38
1340
+ msgid "Check again"
1341
+ msgstr ""
1342
+
1343
+ #: lib/html/element/setting/cache.php:39
1344
+ msgid "Templates cache is not writable"
1345
+ msgstr ""
1346
+
1347
+ #: lib/html/element/setting/cache.php:40
1348
+ msgid "Templates cache is writable"
1349
+ msgstr ""
1350
+
1351
+ #: lib/html/element/setting/cache.php:41
1352
+ msgid "Checking..."
1353
+ msgstr ""
1354
+
1355
+ #: lib/html/element/setting/cache.php:42
1356
+ msgid "Performance Report"
1357
+ msgstr ""
1358
+
1359
+ #: lib/html/element/setting/calendar-page-selector.php:70
1360
+ msgid "View"
1361
+ msgstr ""
1362
+
1363
+ #: lib/html/element/setting/calendar-page-selector.php:114
1364
+ msgid "- Auto-Create New Page -"
1365
+ msgstr ""
1366
+
1367
+ #: lib/html/element/setting/enabled-views.php:22
1368
+ msgid "Enabled"
1369
+ msgstr ""
1370
+
1371
+ #: lib/html/element/setting/enabled-views.php:23
1372
+ msgid "Default"
1373
+ msgstr ""
1374
+
1375
+ #: lib/html/element/setting/enabled-views.php:24
1376
+ msgid "Desktop"
1377
+ msgstr ""
1378
+
1379
+ #: lib/html/element/setting/enabled-views.php:25
1380
+ msgid "Mobile"
1381
+ msgstr ""
1382
+
1383
+ #: lib/html/element/setting/html.php:37
1384
+ msgid "Embed the calendar using a shortcode"
1385
+ msgstr ""
1386
+
1387
+ #: lib/html/element/setting/html.php:38
1388
+ msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1389
+ msgstr ""
1390
+
1391
+ #: lib/html/element/setting/html.php:39
1392
+ msgid "Month view:"
1393
+ msgstr ""
1394
+
1395
+ #: lib/html/element/setting/html.php:40
1396
+ msgid "Week view:"
1397
+ msgstr ""
1398
+
1399
+ #: lib/css/frontend.php:239
1400
+ msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1401
+ msgstr ""
1402
+
1403
+ #: lib/css/frontend.php:266
1404
+ msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1405
+ msgstr ""
1406
+
1407
+ #: lib/css/frontend.php:272
1408
+ msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1409
+ msgstr ""
1410
+
1411
+ #: lib/css/frontend.php:300
1412
+ msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1413
+ msgstr ""
1414
+
1415
+ #: lib/css/frontend.php:307
1416
+ msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1417
+ msgstr ""
1418
+
1419
+ #: lib/css/frontend.php:343
1420
+ msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1421
+ msgstr ""
1422
+
1423
+ #: lib/database/applicator.php:182
1424
+ msgid "Date columns in table %s have different types."
1425
+ msgstr ""
1426
+
1427
+ #: lib/database/exception/database.php:19
1428
+ msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1429
+ msgstr ""
1430
+
1431
+ #: lib/database/exception/database.php:23
1432
+ msgid "Error encountered: %s"
1433
+ msgstr ""
1434
+
1435
+ #: lib/date/system.php:202
1436
+ msgid "GMT%+d:%02d"
1437
+ msgstr ""
1438
+
1439
+ #: lib/date/timezone.php:362
1440
+ msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1441
+ msgstr ""
1442
+
1443
+ #: lib/date/timezone.php:397
1444
+ msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1445
+ msgstr ""
1446
+
1447
+ #: lib/date/timezone.php:421
1448
+ msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1449
+ msgstr ""
1450
+
1451
+ #: lib/date/timezone.php:490
1452
+ msgid "Manual Offset"
1453
+ msgstr ""
1454
+
1455
+ #: lib/date/timezone.php:493
1456
+ msgid "Choose your timezone"
1457
+ msgstr ""
1458
+
1459
+ #: lib/environment/check.php:55
1460
+ msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1461
+ msgstr ""
1462
+
1463
+ #: lib/environment/check.php:68
1464
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1465
+ msgstr ""
1466
+
1467
+ #: lib/environment/check.php:78
1468
+ msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1469
+ msgstr ""
1470
+
1471
+ #: lib/environment/check.php:196
1472
+ msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1473
+ msgstr ""
1474
+
1475
+ #: lib/environment/check.php:197
1476
+ msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1477
+ msgstr ""
1478
+
1479
+ #: lib/exception/handler.php:176
1480
+ msgid "The add-on \"%s\" has been disabled due to an error:"
1481
+ msgstr ""
1482
+
1483
+ #: lib/calendar-feed/ics.php:367
1484
+ msgid "Do you want to keep the events imported from the calendar or remove them?"
1485
+ msgstr ""
1486
+
1487
+ #: lib/calendar-feed/ics.php:373
1488
+ msgid "Removing ICS Feed"
1489
+ msgstr ""
1490
+
1491
+ #: lib/calendar-feed/ics.php:376
1492
+ msgid "Keep Events"
1493
+ msgstr ""
1494
+
1495
+ #: lib/calendar-feed/ics.php:379
1496
+ msgid "Remove Events"
1497
+ msgstr ""
1498
+
1499
+ #: lib/calendar-feed/ics.php:519
1500
+ msgid "Oh, submission was not accepted."
1501
+ msgstr ""
1502
+
1503
+ #: lib/calendar-feed/ics.php:699
1504
+ msgid "Deleted %d events"
1505
+ msgstr ""
1506
+
1507
+ #: lib/calendar-feed/ics.php:735
1508
+ msgid "Feed deleted"
1509
+ msgstr ""
1510
+
1511
+ #: lib/captcha/provider/nocaptcha.php:31
1512
+ msgid "noCAPTCHA public key:"
1513
+ msgstr ""
1514
+
1515
+ #: lib/captcha/provider/nocaptcha.php:47
1516
+ msgid "noCAPTCHA private key:"
1517
+ msgstr ""
1518
+
1519
+ #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1520
+ msgid "Please try verifying you are human again."
1521
+ msgstr ""
1522
+
1523
+ #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1524
+ msgid "There was an error reading the human verification data. Please try again."
1525
+ msgstr ""
1526
+
1527
+ #: lib/captcha/provider/recaptcha.php:32
1528
+ msgid "reCAPTCHA public key:"
1529
+ msgstr ""
1530
+
1531
+ #: lib/captcha/provider/recaptcha.php:48
1532
+ msgid "reCAPTCHA private key:"
1533
+ msgstr ""
1534
+
1535
+ #: lib/captcha/provider/recaptcha.php:66
1536
+ msgid "Human verification"
1537
+ msgstr ""
1538
+
1539
+ #: lib/captcha/provider/recaptcha.php:67
1540
+ msgid "Loading reCAPTCHA..."
1541
+ msgstr ""
1542
+
1543
+ #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1544
+ #: lib/clone/renderer-helper.php:45
1545
+ msgid "Clone"
1546
+ msgstr ""
1547
+
1548
+ #: lib/clone/renderer-helper.php:44
1549
+ msgid "Make new copy of event"
1550
+ msgstr ""
1551
+
1552
+ #: lib/clone/renderer-helper.php:47
1553
+ msgid "Copy to a new draft"
1554
+ msgstr ""
1555
+
1556
+ #: lib/clone/renderer-helper.php:48
1557
+ msgid "Clone to Draft"
1558
+ msgstr ""
1559
+
1560
+ #: lib/command/clone.php:173
1561
+ msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1562
+ msgstr ""
1563
+
1564
+ #: lib/compatibility/check.php:101
1565
+ msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1566
+ msgstr ""
1567
+
1568
+ #: app/view/event/single.php:123
1569
+ msgid "Tickets:"
1570
+ msgstr ""
1571
+
1572
+ #: app/view/event/single.php:124
1573
+ msgid "Free"
1574
+ msgstr ""
1575
+
1576
+ #: app/view/event/single.php:127 app/view/event/ticket.php:38
1577
+ msgid "Buy Tickets"
1578
+ msgstr ""
1579
+
1580
+ #: app/view/event/single.php:150
1581
+ msgid "Edit this occurrence (%s)"
1582
+ msgstr ""
1583
+
1584
+ #: app/view/event/single.php:195
1585
+ msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1586
+ msgstr ""
1587
+
1588
+ #: app/view/event/single.php:206
1589
+ msgid "View original"
1590
+ msgstr ""
1591
+
1592
+ #: app/view/event/taxonomy.php:113
1593
+ msgid "Category image"
1594
+ msgstr ""
1595
+
1596
+ #: app/view/event/ticket.php:24
1597
+ msgid "Register Now"
1598
+ msgstr ""
1599
+
1600
+ #: app/view/event/ticket.php:82
1601
+ msgid "Event website"
1602
+ msgstr ""
1603
+
1604
+ #: app/view/event/time.php:84 app/view/event/time.php:118
1605
+ msgctxt "Event time separator"
1606
+ msgid " @ "
1607
+ msgstr ""
1608
+
1609
+ #: app/view/event/time.php:100
1610
+ msgctxt "Event start/end separator"
1611
+ msgid " – "
1612
+ msgstr ""
1613
+
1614
+ #: app/view/event/time.php:166
1615
+ msgid ", and "
1616
+ msgstr ""
1617
+
1618
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1619
+ msgid "Excludes: "
1620
+ msgstr ""
1621
+
1622
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1623
+ msgid "Repeats"
1624
+ msgstr ""
1625
+
1626
+ #: lib/calendar-feed/ics.php:38
1627
+ msgid "ICS"
1628
+ msgstr ""
1629
+
1630
+ #: lib/calendar-feed/ics.php:69
1631
+ msgid "Another import process in progress. Please try again later."
1632
+ msgstr ""
1633
+
1634
+ #: lib/calendar-feed/ics.php:174
1635
+ msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1636
+ msgstr ""
1637
+
1638
+ #: lib/calendar-feed/ics.php:181
1639
+ msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1640
+ msgstr ""
1641
+
1642
+ #: lib/calendar-feed/ics.php:195
1643
+ msgid "Imported %s event"
1644
+ msgid_plural "Imported %s events"
1645
+ msgstr[0] ""
1646
+ msgstr[1] ""
1647
+
1648
+ #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1649
+ msgid "Invalid ICS feed ID"
1650
+ msgstr ""
1651
+
1652
+ #: lib/calendar-feed/ics.php:350
1653
+ msgid "Categories (optional)"
1654
+ msgstr ""
1655
+
1656
+ #: app/view/event/content.php:33 app/view/event/single.php:119
1657
+ msgid "When:"
1658
+ msgstr ""
1659
+
1660
+ #: app/view/event/content.php:34 app/view/event/single.php:120
1661
+ msgid "Where:"
1662
+ msgstr ""
1663
+
1664
+ #: app/view/event/content.php:125
1665
+ msgid "Calendar"
1666
+ msgstr ""
1667
+
1668
+ #: app/view/event/content.php:126
1669
+ msgid "View all events"
1670
+ msgstr ""
1671
+
1672
+ #: app/view/event/location.php:96
1673
+ msgid "Click to view map"
1674
+ msgstr ""
1675
+
1676
+ #: app/view/event/location.php:97
1677
+ msgid "View Full-Size Map"
1678
+ msgstr ""
1679
+
1680
+ #: app/view/event/post.php:29
1681
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1682
+ msgstr ""
1683
+
1684
+ #: app/view/event/post.php:32
1685
+ msgid "Custom field updated."
1686
+ msgstr ""
1687
+
1688
+ #: app/view/event/post.php:33
1689
+ msgid "Custom field deleted."
1690
+ msgstr ""
1691
+
1692
+ #: app/view/event/post.php:34
1693
+ msgid "Event updated."
1694
+ msgstr ""
1695
+
1696
+ #. translators: %s: date and time of the revision
1697
+ #: app/view/event/post.php:38
1698
+ msgid "Event restored to revision from %s"
1699
+ msgstr ""
1700
+
1701
+ #: app/view/event/post.php:43
1702
+ msgid "Event published. <a href=\"%s\">View event</a>"
1703
+ msgstr ""
1704
+
1705
+ #: app/view/event/post.php:46
1706
+ msgid "Event saved."
1707
+ msgstr ""
1708
+
1709
+ #: app/view/event/post.php:48
1710
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1711
+ msgstr ""
1712
+
1713
+ #: app/view/event/post.php:52
1714
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1715
+ msgstr ""
1716
+
1717
+ #. translators: Publish box date format, see http:php.net/date
1718
+ #: app/view/event/post.php:54
1719
+ msgid "M j, Y @ G:i"
1720
+ msgstr ""
1721
+
1722
+ #: app/view/event/post.php:58
1723
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1724
+ msgstr ""
1725
+
1726
+ #: app/view/event/single.php:78
1727
+ msgid "Event was created in the %s time zone"
1728
+ msgstr ""
1729
+
1730
+ #: app/view/event/single.php:114
1731
+ msgid "Add to Calendar"
1732
+ msgstr ""
1733
+
1734
+ #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1735
+ msgid "Cost:"
1736
+ msgstr ""
1737
+
1738
+ #: app/view/event/single.php:122
1739
+ msgid "Contact:"
1740
+ msgstr ""
1741
+
1742
+ #: app/view/calendar/view/agenda.php:169
1743
+ msgid "Categories:"
1744
+ msgstr ""
1745
+
1746
+ #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1747
+ #: public/admin/themes.php:29
1748
+ msgid "Tags:"
1749
+ msgstr ""
1750
+
1751
+ #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1752
+ #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1753
+ #: app/view/calendar/widget.php:374
1754
+ msgid "@ %s"
1755
+ msgstr ""
1756
+
1757
+ #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1758
+ msgid "g a"
1759
+ msgstr ""
1760
+
1761
+ #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1762
+ msgid "Reveal full day"
1763
+ msgstr ""
1764
+
1765
+ #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1766
+ msgid "All-day"
1767
+ msgstr ""
1768
+
1769
+ #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1770
+ msgid "Now:"
1771
+ msgstr ""
1772
+
1773
+ #: app/view/calendar/view/week.php:67
1774
+ msgid "Week of %s"
1775
+ msgstr ""
1776
+
1777
+ #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1778
+ msgid "Upcoming Events"
1779
+ msgstr ""
1780
+
1781
+ #: app/view/calendar/widget.php:38
1782
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1783
+ msgstr ""
1784
+
1785
+ #: app/view/calendar/widget.php:80
1786
+ msgid "Choose how to limit the upcoming events"
1787
+ msgstr ""
1788
+
1789
+ #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1790
+ msgid "Events"
1791
+ msgstr ""
1792
+
1793
+ #: app/view/calendar/widget.php:93
1794
+ msgid "Days"
1795
+ msgstr ""
1796
+
1797
+ #: app/view/calendar/widget.php:106
1798
+ msgid "Number of events to show"
1799
+ msgstr ""
1800
+
1801
+ #: app/view/calendar/widget.php:115
1802
+ msgid "Number of days to show"
1803
+ msgstr ""
1804
+
1805
+ #: app/view/calendar/widget.php:124
1806
+ msgid "Show events filtered for the following tags/categories"
1807
+ msgstr ""
1808
+
1809
+ #: app/view/calendar/widget.php:141
1810
+ msgid "Show the subscribe button in the widget"
1811
+ msgstr ""
1812
+
1813
+ #: app/view/calendar/widget.php:370
1814
+ msgid "There are no upcoming events."
1815
+ msgstr ""
1816
+
1817
+ #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1818
+ msgid "all-day"
1819
+ msgstr ""
1820
+
1821
+ #: app/view/calendar/widget.php:372
1822
+ msgid "View Calendar"
1823
+ msgstr ""
1824
+
1825
+ #: app/view/calendar/widget.php:375
1826
+ msgid "Add"
1827
+ msgstr ""
1828
+
1829
+ #: app/view/calendar/page.php:260
1830
+ msgid "Subscribe to filtered calendar"
1831
+ msgstr ""
1832
+
1833
+ #: app/view/calendar/page.php:261
1834
+ msgid "Subscribe"
1835
+ msgstr ""
1836
+
1837
+ #: app/view/calendar/page.php:262 app/view/event/single.php:118
1838
+ msgid "Get a Timely Calendar"
1839
+ msgstr ""
1840
+
1841
+ #: app/view/calendar/subscribe-button.php:22
1842
+ msgid "Add to Timely Calendar"
1843
+ msgstr ""
1844
+
1845
+ #: app/view/calendar/subscribe-button.php:23
1846
+ msgid "Add to Google"
1847
+ msgstr ""
1848
+
1849
+ #: app/view/calendar/subscribe-button.php:24
1850
+ msgid "Add to Outlook"
1851
+ msgstr ""
1852
+
1853
+ #: app/view/calendar/subscribe-button.php:25
1854
+ msgid "Add to Apple Calendar"
1855
+ msgstr ""
1856
+
1857
+ #: app/view/calendar/subscribe-button.php:26
1858
+ msgid "Add to other calendar"
1859
+ msgstr ""
1860
+
1861
+ #: app/view/calendar/subscribe-button.php:29
1862
+ msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1863
+ msgstr ""
1864
+
1865
+ #: app/view/calendar/subscribe-button.php:30
1866
+ msgid "Subscribe to this calendar in your Google Calendar"
1867
+ msgstr ""
1868
+
1869
+ #: app/view/calendar/subscribe-button.php:31
1870
+ msgid "Subscribe to this calendar in MS Outlook"
1871
+ msgstr ""
1872
+
1873
+ #: app/view/calendar/subscribe-button.php:32
1874
+ msgid "Subscribe to this calendar in Apple Calendar/iCal"
1875
+ msgstr ""
1876
+
1877
+ #: app/view/calendar/subscribe-button.php:33
1878
+ msgid "Subscribe to this calendar in another plain-text calendar"
1879
+ msgstr ""
1880
+
1881
+ #: app/view/calendar/taxonomy.php:97
1882
+ msgid "Clear category filter"
1883
+ msgstr ""
1884
+
1885
+ #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1886
+ #: lib/html/element/setting/tags-categories.php:47
1887
+ msgid "Categories"
1888
+ msgstr ""
1889
+
1890
+ #: app/view/calendar/taxonomy.php:99
1891
+ msgid "Clear tag filter"
1892
+ msgstr ""
1893
+
1894
+ #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1895
+ #: lib/html/element/setting/tags-categories.php:39
1896
+ msgid "Tags"
1897
+ msgstr ""
1898
+
1899
+ #: app/view/calendar/view/agenda.php:142
1900
+ msgid "Collapse All"
1901
+ msgstr ""
1902
+
1903
+ #: app/view/calendar/view/agenda.php:143
1904
+ msgid "Expand All"
1905
+ msgstr ""
1906
+
1907
+ #: app/view/calendar/view/agenda.php:166
1908
+ msgid "There are no upcoming events to display at this time."
1909
+ msgstr ""
1910
+
1911
+ #: app/view/calendar/view/agenda.php:168
1912
+ msgid "Read more"
1913
+ msgstr ""
1914
+
1915
+ #: app/view/admin/tickets.php:86
1916
+ msgid "Sales"
1917
+ msgstr ""
1918
+
1919
+ #: app/view/admin/tickets.php:87
1920
+ msgid "How do you want the tickets revenue to be sent to you?"
1921
+ msgstr ""
1922
+
1923
+ #: app/view/admin/tickets.php:88
1924
+ msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1925
+ msgstr ""
1926
+
1927
+ #: app/view/admin/tickets.php:91
1928
+ msgid "Cheque"
1929
+ msgstr ""
1930
+
1931
+ #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1932
+ msgid "Paypal"
1933
+ msgstr ""
1934
+
1935
+ #: app/view/admin/tickets.php:94
1936
+ msgid "Save Changes"
1937
+ msgstr ""
1938
+
1939
+ #: app/view/admin/tickets.php:95
1940
+ msgid "Date"
1941
+ msgstr ""
1942
+
1943
+ #: app/view/admin/tickets.php:96
1944
+ msgid "Event"
1945
+ msgstr ""
1946
+
1947
+ #: app/view/admin/tickets.php:97
1948
+ msgid "Purchaser"
1949
+ msgstr ""
1950
+
1951
+ #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1952
+ #: public/admin/box_event_cost.php:35
1953
+ msgid "Tickets"
1954
+ msgstr ""
1955
+
1956
+ #: app/view/admin/tickets.php:101
1957
+ msgid "Total"
1958
+ msgstr ""
1959
+
1960
+ #: app/view/admin/tickets.php:102
1961
+ msgid "Sign Out"
1962
+ msgstr ""
1963
+
1964
+ #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1965
+ #: app/view/admin/widget-creator.php:47
1966
+ msgid "Widget Creator"
1967
+ msgstr ""
1968
+
1969
+ #: app/view/admin/widget-creator.php:74
1970
+ msgctxt "meta box"
1971
+ msgid "Widget Creator"
1972
+ msgstr ""
1973
+
1974
+ #: app/view/admin/widget-creator.php:131
1975
+ msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1976
+ msgstr ""
1977
+
1978
+ #: app/view/admin/widget-creator.php:132
1979
+ msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1980
+ msgstr ""
1981
+
1982
+ #: app/view/admin/widget-creator.php:134
1983
+ msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1984
+ msgstr ""
1985
+
1986
+ #: app/view/admin/widget-creator.php:140
1987
+ msgid "Paste this code onto your site:"
1988
+ msgstr ""
1989
+
1990
+ #: app/view/admin/widget-creator.php:141
1991
+ msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1992
+ msgstr ""
1993
+
1994
+ #: app/view/calendar/page.php:54
1995
+ msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
1996
+ msgstr ""
1997
+
1998
+ #: app/view/calendar/page.php:74
1999
+ msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2000
+ msgstr ""
2001
+
2002
+ #: app/view/admin/settings.php:193
2003
+ msgid "Phone Number:"
2004
+ msgstr ""
2005
+
2006
+ #: app/view/admin/settings.php:194
2007
+ msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2008
+ msgstr ""
2009
+
2010
+ #: app/view/admin/settings.php:197
2011
+ msgid "Sign Up"
2012
+ msgstr ""
2013
+
2014
+ #: app/view/admin/settings.php:198
2015
+ msgid "Sign In"
2016
+ msgstr ""
2017
+
2018
+ #: app/view/admin/settings.php:212
2019
+ msgid "Save Settings"
2020
+ msgstr ""
2021
+
2022
+ #: app/view/admin/settings.php:219
2023
+ msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2024
+ msgstr ""
2025
+
2026
+ #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2027
+ msgid "Theme Options"
2028
+ msgstr ""
2029
+
2030
+ #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2031
+ msgid "Calendar Theme Options"
2032
+ msgstr ""
2033
+
2034
+ #: app/view/admin/theme-options.php:79
2035
+ msgctxt "meta box"
2036
+ msgid "Calendar Theme Options"
2037
+ msgstr ""
2038
+
2039
+ #: app/view/admin/theme-options.php:133
2040
+ msgid "General"
2041
+ msgstr ""
2042
+
2043
+ #: app/view/admin/theme-options.php:136
2044
+ msgid "Tables"
2045
+ msgstr ""
2046
+
2047
+ #: app/view/admin/theme-options.php:139
2048
+ msgid "Buttons"
2049
+ msgstr ""
2050
+
2051
+ #: app/view/admin/theme-options.php:142
2052
+ msgid "Forms"
2053
+ msgstr ""
2054
+
2055
+ #: app/view/admin/theme-options.php:145
2056
+ msgid "Calendar general"
2057
+ msgstr ""
2058
+
2059
+ #: app/view/admin/theme-options.php:148
2060
+ msgid "Month/week/day view"
2061
+ msgstr ""
2062
+
2063
+ #: app/view/admin/theme-options.php:151
2064
+ msgid "Agenda view"
2065
+ msgstr ""
2066
+
2067
+ #: app/view/admin/theme-options.php:169
2068
+ msgid "Save Options"
2069
+ msgstr ""
2070
+
2071
+ #: app/view/admin/theme-options.php:177
2072
+ msgid "Reset to Defaults"
2073
+ msgstr ""
2074
+
2075
+ #: app/view/admin/theme-switching.php:31
2076
+ msgid "All-in-One Event Calendar: Themes"
2077
+ msgstr ""
2078
+
2079
+ #: app/view/admin/tickets.php:36
2080
+ msgid "Ticketing"
2081
+ msgstr ""
2082
+
2083
+ #: app/view/admin/tickets.php:37
2084
+ msgid "Ticketing<sup>beta</sup>"
2085
+ msgstr ""
2086
+
2087
+ #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2088
+ msgid "Time.ly Ticketing<sup>beta</sup>"
2089
+ msgstr ""
2090
+
2091
+ #: app/view/admin/settings.php:98
2092
+ msgctxt "meta box"
2093
+ msgid "Timely"
2094
+ msgstr ""
2095
+
2096
+ #: app/view/admin/settings.php:140
2097
+ msgid "Viewing Events"
2098
+ msgstr ""
2099
+
2100
+ #: app/view/admin/settings.php:143
2101
+ msgid "Adding/Editing Events"
2102
+ msgstr ""
2103
+
2104
+ #: app/view/admin/settings.php:146
2105
+ msgid "Advanced"
2106
+ msgstr ""
2107
+
2108
+ #: app/view/admin/settings.php:148
2109
+ msgid "Advanced Settings"
2110
+ msgstr ""
2111
+
2112
+ #: app/view/admin/settings.php:149
2113
+ msgid "Shortcodes"
2114
+ msgstr ""
2115
+
2116
+ #: app/view/admin/settings.php:150
2117
+ msgid "Email Templates"
2118
+ msgstr ""
2119
+
2120
+ #: app/view/admin/settings.php:151
2121
+ msgid "External Services"
2122
+ msgstr ""
2123
+
2124
+ #: app/view/admin/settings.php:152
2125
+ msgid "Cache Report"
2126
+ msgstr ""
2127
+
2128
+ #: app/view/admin/settings.php:171
2129
+ msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2130
+ msgstr ""
2131
+
2132
+ #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2133
+ #: public/admin/box_ask_customer_review.php:112
2134
+ #: public/admin/box_ask_customer_review.php:126
2135
+ #: public/admin/box_ask_customer_review.php:140
2136
+ #: public/admin/box_ask_customer_review.php:158
2137
+ #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2138
+ msgid "This field is required."
2139
+ msgstr ""
2140
+
2141
+ #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2142
+ msgid "Register"
2143
+ msgstr ""
2144
+
2145
+ #: app/view/admin/settings.php:184
2146
+ msgid "Sign in"
2147
+ msgstr ""
2148
+
2149
+ #: app/view/admin/settings.php:185
2150
+ msgid "You are successfully signed in to <b>Timely Network</b>."
2151
+ msgstr ""
2152
+
2153
+ #: app/view/admin/settings.php:186
2154
+ msgid "Sign out"
2155
+ msgstr ""
2156
+
2157
+ #: app/view/admin/settings.php:187
2158
+ msgid "Hide form"
2159
+ msgstr ""
2160
+
2161
+ #: app/view/admin/settings.php:188
2162
+ msgid "Show form"
2163
+ msgstr ""
2164
+
2165
+ #: app/view/admin/settings.php:189
2166
+ msgid "Full Name:"
2167
+ msgstr ""
2168
+
2169
+ #: app/view/admin/settings.php:190
2170
+ msgid "Email:"
2171
+ msgstr ""
2172
+
2173
+ #: app/view/admin/settings.php:191
2174
+ msgid "Password:"
2175
+ msgstr ""
2176
+
2177
+ #: app/view/admin/settings.php:192
2178
+ msgid "Confirm Password:"
2179
+ msgstr ""
2180
+
2181
+ #: app/view/admin/get-repeat-box.php:483
2182
+ msgid "fourth"
2183
+ msgstr ""
2184
+
2185
+ #: app/view/admin/get-repeat-box.php:495
2186
+ msgid "Sunday"
2187
+ msgstr ""
2188
+
2189
+ #: app/view/admin/get-repeat-box.php:496
2190
+ msgid "Monday"
2191
+ msgstr ""
2192
+
2193
+ #: app/view/admin/get-repeat-box.php:497
2194
+ msgid "Tuesday"
2195
+ msgstr ""
2196
+
2197
+ #: app/view/admin/get-repeat-box.php:498
2198
+ msgid "Wednesday"
2199
+ msgstr ""
2200
+
2201
+ #: app/view/admin/get-repeat-box.php:499
2202
+ msgid "Thursday"
2203
+ msgstr ""
2204
+
2205
+ #: app/view/admin/get-repeat-box.php:500
2206
+ msgid "Friday"
2207
+ msgstr ""
2208
+
2209
+ #: app/view/admin/get-repeat-box.php:501
2210
+ msgid "Saturday"
2211
+ msgstr ""
2212
+
2213
+ #: app/view/admin/get-repeat-box.php:503
2214
+ msgid "day"
2215
+ msgstr ""
2216
+
2217
+ #: app/view/admin/get-repeat-box.php:504
2218
+ msgid "weekday"
2219
+ msgstr ""
2220
+
2221
+ #: app/view/admin/get-repeat-box.php:505
2222
+ msgid "weekend day"
2223
+ msgstr ""
2224
+
2225
+ #: app/view/admin/get-repeat-box.php:571
2226
+ msgid "year(s)"
2227
+ msgstr ""
2228
+
2229
+ #: app/view/admin/nav.php:22
2230
+ msgid "<a href=\"%s\">Settings</a>"
2231
+ msgstr ""
2232
+
2233
+ #: app/view/admin/nav.php:28
2234
+ msgid "<a href=\"%s\">Check for updates</a>"
2235
+ msgstr ""
2236
+
2237
+ #: app/view/admin/organize.php:100
2238
+ msgid "Organize Events"
2239
+ msgstr ""
2240
+
2241
+ #: app/view/admin/settings.php:30
2242
+ msgid "All-in-One Event Calendar: Settings"
2243
+ msgstr ""
2244
+
2245
+ #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2246
+ #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2247
+ msgid "Settings"
2248
+ msgstr ""
2249
+
2250
+ #: app/view/admin/settings.php:89
2251
+ msgctxt "meta box"
2252
+ msgid "General Settings"
2253
+ msgstr ""
2254
+
2255
+ #: app/view/admin/get-repeat-box.php:480
2256
+ msgid "first"
2257
+ msgstr ""
2258
+
2259
+ #: app/view/admin/get-repeat-box.php:481
2260
+ msgid "second"
2261
+ msgstr ""
2262
+
2263
+ #: app/view/admin/get-repeat-box.php:482
2264
+ msgid "third"
2265
+ msgstr ""
2266
+
2267
+ #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2268
+ msgid "Import Feeds"
2269
+ msgstr ""
2270
+
2271
+ #: app/view/admin/calendar-feeds.php:48
2272
+ msgctxt "meta box"
2273
+ msgid "Feed Subscriptions"
2274
+ msgstr ""
2275
+
2276
+ #: app/view/admin/calendar-feeds.php:65
2277
+ msgid "All-in-One Event Calendar: Import Feeds"
2278
+ msgstr ""
2279
+
2280
+ #: app/view/admin/event-category.php:30
2281
+ msgid "Color"
2282
+ msgstr ""
2283
+
2284
+ #: app/view/admin/event-category.php:32
2285
+ msgid "Image"
2286
+ msgstr ""
2287
+
2288
+ #: app/view/admin/event-category.php:155
2289
+ msgid "Category Color"
2290
+ msgstr ""
2291
+
2292
+ #: app/view/admin/event-category.php:156
2293
+ msgid "Events in this category will be identified by this color"
2294
+ msgstr ""
2295
+
2296
+ #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2297
+ msgid "Category Image"
2298
+ msgstr ""
2299
+
2300
+ #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2301
+ msgid "Add Image"
2302
+ msgstr ""
2303
+
2304
+ #: app/view/admin/event-category.php:195
2305
+ msgid "Remove Image"
2306
+ msgstr ""
2307
+
2308
+ #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2309
+ msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2310
+ msgstr ""
2311
+
2312
+ #: app/view/admin/get-repeat-box.php:94
2313
+ msgid "times"
2314
+ msgstr ""
2315
+
2316
+ #: app/view/admin/get-repeat-box.php:164
2317
+ msgid "Recurrence rule cannot be empty."
2318
+ msgstr ""
2319
+
2320
+ #: app/view/admin/get-repeat-box.php:182
2321
+ msgid "Recurrence rule was not provided."
2322
+ msgstr ""
2323
+
2324
+ #: app/view/admin/get-repeat-box.php:209
2325
+ msgid "Never"
2326
+ msgstr ""
2327
+
2328
+ #: app/view/admin/get-repeat-box.php:210
2329
+ msgid "After"
2330
+ msgstr ""
2331
+
2332
+ #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2333
+ msgid "On date"
2334
+ msgstr ""
2335
+
2336
+ #: app/view/admin/get-repeat-box.php:247
2337
+ msgid "day(s)"
2338
+ msgstr ""
2339
+
2340
+ #: app/view/admin/get-repeat-box.php:330
2341
+ msgid "week(s)"
2342
+ msgstr ""
2343
+
2344
+ #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2345
+ #: lib/recurrence/rule.php:298
2346
+ msgid "last"
2347
+ msgstr ""
2348
+
2349
+ #: app/view/admin/get-repeat-box.php:426
2350
+ msgid "month(s)"
2351
+ msgstr ""
2352
+
2353
+ #: app/model/settings.php:929
2354
+ msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2355
+ msgstr ""
2356
+
2357
+ #: app/model/settings.php:932
2358
+ msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2359
+ msgstr ""
2360
+
2361
+ #: app/model/settings.php:944
2362
+ msgid "Current <strong>robots.txt</strong> on this site"
2363
+ msgstr ""
2364
+
2365
+ #: app/model/settings.php:948
2366
+ msgid ""
2367
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2368
+ "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2369
+ "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2370
+ "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2371
+ "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2372
+ msgstr ""
2373
+
2374
+ #: app/model/settings.php:965
2375
+ msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2376
+ msgstr ""
2377
+
2378
+ #: app/model/settings.php:988
2379
+ msgid "Templates cache improves site performance"
2380
+ msgstr ""
2381
+
2382
+ #: app/model/settings.php:1001
2383
+ msgid "Display events in <strong>calendar time zone</strong>"
2384
+ msgstr ""
2385
+
2386
+ #: app/model/settings.php:1004
2387
+ msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2388
+ msgstr ""
2389
+
2390
+ #: app/view/admin/add-new-event.php:26
2391
+ msgid "Event Details"
2392
+ msgstr ""
2393
+
2394
+ #: app/view/admin/add-new-event.php:423
2395
+ msgid "Set banner image"
2396
+ msgstr ""
2397
+
2398
+ #: app/view/admin/add-new-event.php:424
2399
+ msgid "Remove banner image"
2400
+ msgstr ""
2401
+
2402
+ #: app/view/admin/add-ons.php:68
2403
+ msgid "Add-ons for All In One Event Calendar"
2404
+ msgstr ""
2405
+
2406
+ #: app/view/admin/add-ons.php:71
2407
+ msgid "Browse All Extensions"
2408
+ msgstr ""
2409
+
2410
+ #: app/view/admin/add-ons.php:74
2411
+ msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2412
+ msgstr ""
2413
+
2414
+ #: app/view/admin/add-ons.php:77
2415
+ msgid "There was an error retrieving the extensions list from the server. Please try again later."
2416
+ msgstr ""
2417
+
2418
+ #: app/view/admin/all-events.php:16
2419
+ msgid "Author"
2420
+ msgstr ""
2421
+
2422
+ #: app/view/admin/all-events.php:17
2423
+ msgid "Post Date"
2424
+ msgstr ""
2425
+
2426
+ #: app/view/admin/all-events.php:18
2427
+ msgid "Event date/time"
2428
+ msgstr ""
2429
+
2430
+ #: app/view/admin/all-events.php:22
2431
+ msgid "Ticket Types"
2432
+ msgstr ""
2433
+
2434
+ #: app/view/admin/all-events.php:134
2435
+ msgid "Show All "
2436
+ msgstr ""
2437
+
2438
+ #: app/view/admin/all-events.php:147
2439
+ msgid "Show All Authors"
2440
+ msgstr ""
2441
+
2442
+ #: app/model/settings.php:746
2443
+ msgid "Strict compatibility content filtering"
2444
+ msgstr ""
2445
+
2446
+ #: app/model/settings.php:758
2447
+ msgid " <strong>Hide featured image</strong> from event details page"
2448
+ msgstr ""
2449
+
2450
+ #: app/model/settings.php:761
2451
+ msgid "Select this option if your theme already displays each post's featured image."
2452
+ msgstr ""
2453
+
2454
+ #: app/model/settings.php:772
2455
+ msgid "Input dates in this format"
2456
+ msgstr ""
2457
+
2458
+ #: app/model/settings.php:777
2459
+ msgid "Default (d/m/yyyy)"
2460
+ msgstr ""
2461
+
2462
+ #: app/model/settings.php:781
2463
+ msgid "US (m/d/yyyy)"
2464
+ msgstr ""
2465
+
2466
+ #: app/model/settings.php:785
2467
+ msgid "ISO 8601 (yyyy-m-d)"
2468
+ msgstr ""
2469
+
2470
+ #: app/model/settings.php:789
2471
+ msgid "Dotted (m.d.yyyy)"
2472
+ msgstr ""
2473
+
2474
+ #: app/model/settings.php:801
2475
+ msgid " Use <strong>24h time</strong> in time pickers"
2476
+ msgstr ""
2477
+
2478
+ #: app/model/settings.php:812
2479
+ msgid "<strong>Disable address autocomplete</strong> function"
2480
+ msgstr ""
2481
+
2482
+ #: app/model/settings.php:823
2483
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2484
+ msgstr ""
2485
+
2486
+ #: app/model/settings.php:839
2487
+ msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2488
+ msgstr ""
2489
+
2490
+ #: app/model/settings.php:842
2491
+ msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2492
+ msgstr ""
2493
+
2494
+ #: app/model/settings.php:863
2495
+ msgid "Move calendar into this DOM element"
2496
+ msgstr ""
2497
+
2498
+ #: app/model/settings.php:865
2499
+ msgid ""
2500
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2501
+ "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2502
+ "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2503
+ "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2504
+ "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2505
+ "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2506
+ "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2507
+ "\t\t\t\t\t\tby the calendar."
2508
+ msgstr ""
2509
+
2510
+ #: app/model/settings.php:884
2511
+ msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2512
+ msgstr ""
2513
+
2514
+ #: app/model/settings.php:887
2515
+ msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2516
+ msgstr ""
2517
+
2518
+ #: app/model/settings.php:899
2519
+ msgid "Disable <strong>gzip</strong> compression."
2520
+ msgstr ""
2521
+
2522
+ #: app/model/settings.php:902
2523
+ msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2524
+ msgstr ""
2525
+
2526
+ #: app/model/settings.php:914
2527
+ msgid "Use frontend rendering."
2528
+ msgstr ""
2529
+
2530
+ #: app/model/settings.php:917
2531
+ msgid "Renders calendar views on the client rather than the server; can improve performance."
2532
+ msgstr ""
2533
+
2534
+ #: app/model/settings.php:493 app/view/calendar/widget.php:128
2535
+ msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2536
+ msgstr ""
2537
+
2538
+ #: app/model/settings.php:508
2539
+ msgid "Default calendar start date (optional)"
2540
+ msgstr ""
2541
+
2542
+ #: app/model/settings.php:519
2543
+ msgid "Agenda pages show at most"
2544
+ msgstr ""
2545
+
2546
+ #: app/model/settings.php:532
2547
+ msgid "Week/Day view starts at"
2548
+ msgstr ""
2549
+
2550
+ #: app/model/settings.php:545
2551
+ msgid "Week/Day view ends at"
2552
+ msgstr ""
2553
+
2554
+ #: app/model/settings.php:558
2555
+ msgid "<strong>Word-wrap event stubs</strong> in Month view"
2556
+ msgstr ""
2557
+
2558
+ #: app/model/settings.php:561
2559
+ msgid "Only applies to events that span a single day."
2560
+ msgstr ""
2561
+
2562
+ #: app/model/settings.php:573
2563
+ msgid ""
2564
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2565
+ "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2566
+ "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2567
+ "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2568
+ "\t\t\t\t\t\tfrom last day shown</strong>"
2569
+ msgstr ""
2570
+
2571
+ #: app/model/settings.php:589
2572
+ msgid "Keep all events <strong>expanded</strong> in Agenda view"
2573
+ msgstr ""
2574
+
2575
+ #: app/model/settings.php:601
2576
+ msgid "<strong>Show year</strong> in calendar date labels"
2577
+ msgstr ""
2578
+
2579
+ #: app/model/settings.php:613
2580
+ msgid "<strong>Show location in event titles</strong> in calendar views"
2581
+ msgstr ""
2582
+
2583
+ #: app/model/settings.php:625
2584
+ msgid "<strong>Exclude</strong> events from search results"
2585
+ msgstr ""
2586
+
2587
+ #: app/model/settings.php:637
2588
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2589
+ msgstr ""
2590
+
2591
+ #: app/model/settings.php:649
2592
+ msgid "Hide <strong>Get a Timely Calendar</strong> button"
2593
+ msgstr ""
2594
+
2595
+ #: app/model/settings.php:661
2596
+ msgid " Hide <strong>Google Maps</strong> until clicked"
2597
+ msgstr ""
2598
+
2599
+ #: app/model/settings.php:673
2600
+ msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2601
+ msgstr ""
2602
+
2603
+ #: app/model/settings.php:676
2604
+ msgid "Only applies to first visible calendar found on the page."
2605
+ msgstr ""
2606
+
2607
+ #: app/model/settings.php:688
2608
+ msgid "Offset affixed filter bar vertically by"
2609
+ msgstr ""
2610
+
2611
+ #: app/model/settings.php:703
2612
+ msgid "Wide screens only (&#8805; 1200px)"
2613
+ msgstr ""
2614
+
2615
+ #: app/model/settings.php:718
2616
+ msgid "Tablets only (< 980px)"
2617
+ msgstr ""
2618
+
2619
+ #: app/model/settings.php:733
2620
+ msgid "Phones only (< 768px)"
2621
+ msgstr ""
2622
+
2623
+ #: app/model/api.php:456
2624
+ msgid "Not available"
2625
+ msgstr ""
2626
+
2627
+ #: app/model/api.php:659
2628
+ msgid "%s.<br/>Detail: %s."
2629
+ msgstr ""
2630
+
2631
+ #: app/model/api.php:664
2632
+ msgid "API URL: %s.<br/>Detail: %s - %s"
2633
+ msgstr ""
2634
+
2635
+ #: app/model/api.php:672
2636
+ msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2637
+ msgstr ""
2638
+
2639
+ #: app/model/api.php:679
2640
+ msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2641
+ msgstr ""
2642
+
2643
+ #: app/model/event/parent.php:186
2644
+ msgid "Edit &#8220;%s&#8221;"
2645
+ msgstr ""
2646
+
2647
+ #: app/model/event/parent.php:193
2648
+ msgid "Base Event"
2649
+ msgstr ""
2650
+
2651
+ #: app/model/review.php:169
2652
+ msgid "Feedback provided by user"
2653
+ msgstr ""
2654
+
2655
+ #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2656
+ msgid "Name"
2657
+ msgstr ""
2658
+
2659
+ #: app/model/review.php:173
2660
+ msgid "E-mail"
2661
+ msgstr ""
2662
+
2663
+ #: app/model/review.php:175
2664
+ msgid "Site URL"
2665
+ msgstr ""
2666
+
2667
+ #: app/model/review.php:177
2668
+ msgid "Message"
2669
+ msgstr ""
2670
+
2671
+ #: app/model/settings.php:401
2672
+ #: lib/html/element/setting/calendar-page-selector.php:50
2673
+ msgid "Calendar page"
2674
+ msgstr ""
2675
+
2676
+ #: app/model/settings.php:411
2677
+ msgid "Week starts on"
2678
+ msgstr ""
2679
+
2680
+ #: app/model/settings.php:424
2681
+ msgid "Available views"
2682
+ msgstr ""
2683
+
2684
+ #: app/model/settings.php:432
2685
+ msgid "Agenda"
2686
+ msgid_plural "Agenda"
2687
+ msgstr[0] ""
2688
+ msgstr[1] ""
2689
+
2690
+ #: app/model/settings.php:443
2691
+ msgid "Day"
2692
+ msgid_plural "Day"
2693
+ msgstr[0] ""
2694
+ msgstr[1] ""
2695
+
2696
+ #: app/model/settings.php:454
2697
+ msgid "Month"
2698
+ msgid_plural "Month"
2699
+ msgstr[0] ""
2700
+ msgstr[1] ""
2701
+
2702
+ #: app/model/settings.php:465
2703
+ msgid "Week"
2704
+ msgid_plural "Week"
2705
+ msgstr[0] ""
2706
+ msgstr[1] ""
2707
+
2708
+ #: app/model/settings.php:479
2709
+ msgid "Timezone"
2710
+ msgstr ""
2711
+
2712
+ #: app/model/settings.php:492
2713
+ msgid "Preselected calendar filters"
2714
+ msgstr ""
2715
+
2716
+ #: app/controller/javascript.php:509
2717
+ msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2718
+ msgstr ""
2719
+
2720
+ #: app/controller/javascript.php:516
2721
+ msgid "The end date can't be earlier than the start date."
2722
+ msgstr ""
2723
+
2724
+ #: app/controller/javascript.php:517
2725
+ msgid "For week and day view, you must select an interval of at least 6 hours."
2726
+ msgstr ""
2727
+
2728
+ #: app/model/api.php:40
2729
+ msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2730
+ msgstr ""
2731
+
2732
+ #: app/model/api.php:41
2733
+ msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2734
+ msgstr ""
2735
+
2736
+ #: app/model/api.php:42
2737
+ msgid "We were unable to Sign you Up for Time.ly Ticketing"
2738
+ msgstr ""
2739
+
2740
+ #: app/model/api.php:43
2741
+ msgid "We were unable to Sign you In for Time.ly Ticketing"
2742
+ msgstr ""
2743
+
2744
+ #: app/model/api.php:44
2745
+ msgid "We were unable to create the Event on Time.ly Ticketing"
2746
+ msgstr ""
2747
+
2748
+ #: app/model/api.php:45
2749
+ msgid "We were unable to update the Event on Time.ly Ticketing"
2750
+ msgstr ""
2751
+
2752
+ #: app/model/api.php:46
2753
+ msgid "The event has the option Tickets selected but any ticket was added."
2754
+ msgstr ""
2755
+
2756
+ #: app/model/api.php:47
2757
+ msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2758
+ msgstr ""
2759
+
2760
+ #: app/model/api.php:48
2761
+ msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2762
+ msgstr ""
2763
+
2764
+ #: app/model/api.php:49
2765
+ msgid "Payment preferences were not saved."
2766
+ msgstr ""
2767
+
2768
+ #: app/model/api.php:50
2769
+ msgid "Payment preferences were saved."
2770
+ msgstr ""
2771
+
2772
+ #: app/model/api.php:51
2773
+ msgid "Event not found inside the database."
2774
+ msgstr ""
2775
+
2776
+ #: app/model/api.php:52
2777
+ msgid "We were unable to get the Sales information from Time.ly Ticketing"
2778
+ msgstr ""
2779
+
2780
+ #: app/model/api.php:446
2781
+ msgid "Past Event"
2782
+ msgstr ""
2783
+
2784
+ #: app/model/api.php:448
2785
+ msgid "Event closed"
2786
+ msgstr ""
2787
+
2788
+ #: app/model/api.php:450
2789
+ msgid "Not available yet"
2790
+ msgstr ""
2791
+
2792
+ #: app/model/api.php:452
2793
+ msgid "Sale closed"
2794
+ msgstr ""
2795
+
2796
+ #: app/model/api.php:454
2797
+ msgid "Sold out"
2798
+ msgstr ""
2799
+
2800
+ #: app/controller/javascript.php:484
2801
+ msgid "Report"
2802
+ msgstr ""
2803
+
2804
+ #: app/controller/javascript.php:485
2805
+ msgid "Sale dates"
2806
+ msgstr ""
2807
+
2808
+ #: app/controller/javascript.php:486
2809
+ msgid "Limits"
2810
+ msgstr ""
2811
+
2812
+ #: app/controller/javascript.php:487
2813
+ msgid "Actions"
2814
+ msgstr ""
2815
+
2816
+ #: app/controller/javascript.php:488
2817
+ msgid "Sold:"
2818
+ msgstr ""
2819
+
2820
+ #: app/controller/javascript.php:489
2821
+ msgid "Left:"
2822
+ msgstr ""
2823
+
2824
+ #: app/controller/javascript.php:490
2825
+ msgid "Start:"
2826
+ msgstr ""
2827
+
2828
+ #: app/controller/javascript.php:491
2829
+ msgid "End:"
2830
+ msgstr ""
2831
+
2832
+ #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2833
+ msgid "Min:"
2834
+ msgstr ""
2835
+
2836
+ #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2837
+ msgid "Max:"
2838
+ msgstr ""
2839
+
2840
+ #: app/controller/javascript.php:494
2841
+ msgid "Attendees"
2842
+ msgstr ""
2843
+
2844
+ #: app/controller/javascript.php:495
2845
+ msgid "Hide Attendees"
2846
+ msgstr ""
2847
+
2848
+ #: app/controller/javascript.php:496
2849
+ msgid "Attendees List"
2850
+ msgstr ""
2851
+
2852
+ #: app/controller/javascript.php:497
2853
+ msgid "Guest Name"
2854
+ msgstr ""
2855
+
2856
+ #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2857
+ msgid "Status"
2858
+ msgstr ""
2859
+
2860
+ #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2861
+ #: app/view/event/ticket.php:71
2862
+ msgid "Email"
2863
+ msgstr ""
2864
+
2865
+ #: app/controller/javascript.php:500
2866
+ msgid "No attendees for this ticket type."
2867
+ msgstr ""
2868
+
2869
+ #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2870
+ #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2871
+ msgid "Edit"
2872
+ msgstr ""
2873
+
2874
+ #: app/controller/javascript.php:502
2875
+ msgid "Code"
2876
+ msgstr ""
2877
+
2878
+ #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2879
+ msgid "Unlimited"
2880
+ msgstr ""
2881
+
2882
+ #: app/controller/javascript.php:506
2883
+ msgid "Your message has been sent. Thank you for your feedback."
2884
+ msgstr ""
2885
+
2886
+ #: app/controller/javascript.php:507
2887
+ msgid "Your message has not been sent. Please try again or contact us."
2888
+ msgstr ""
2889
+
2890
+ #: app/controller/javascript.php:405
2891
+ msgid "Please enter a valid iCalendar URL."
2892
+ msgstr ""
2893
+
2894
+ #: app/controller/javascript.php:408
2895
+ msgid "Please enter a valid email address."
2896
+ msgstr ""
2897
+
2898
+ #: app/controller/javascript.php:410
2899
+ msgid "Choose Image"
2900
+ msgstr ""
2901
+
2902
+ #: app/controller/javascript.php:413
2903
+ msgid "The value you have entered is not a valid CSS length."
2904
+ msgstr ""
2905
+
2906
+ #: app/controller/javascript.php:416
2907
+ msgid "Are you sure you want to reset your theme options to their default values?"
2908
+ msgstr ""
2909
+
2910
+ #: app/controller/javascript.php:419
2911
+ msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2912
+ msgstr ""
2913
+
2914
+ #: app/controller/javascript.php:422
2915
+ msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2916
+ msgstr ""
2917
+
2918
+ #: app/controller/javascript.php:425
2919
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2920
+ msgstr ""
2921
+
2922
+ #: app/controller/javascript.php:428
2923
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2924
+ msgstr ""
2925
+
2926
+ #: app/controller/javascript.php:431
2927
+ msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2928
+ msgstr ""
2929
+
2930
+ #: app/controller/javascript.php:434
2931
+ msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2932
+ msgstr ""
2933
+
2934
+ #: app/controller/javascript.php:437
2935
+ msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2936
+ msgstr ""
2937
+
2938
+ #: app/controller/javascript.php:440
2939
+ msgid "Loading&hellip;"
2940
+ msgstr ""
2941
+
2942
+ #: app/controller/javascript.php:443
2943
+ msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2944
+ msgstr ""
2945
+
2946
+ #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2947
+ msgid "Preview:"
2948
+ msgstr ""
2949
+
2950
+ #: app/controller/javascript.php:474
2951
+ msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2952
+ msgstr ""
2953
+
2954
+ #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2955
+ msgid "Ticketing Details"
2956
+ msgstr ""
2957
+
2958
+ #: app/controller/javascript.php:480
2959
+ msgid "Hide Ticketing Details"
2960
+ msgstr ""
2961
+
2962
+ #: app/controller/javascript.php:481
2963
+ msgid "Loading tickets details..."
2964
+ msgstr ""
2965
+
2966
+ #: app/controller/javascript.php:482
2967
+ msgid "Type and price"
2968
+ msgstr ""
2969
+
2970
+ #: app/controller/javascript.php:483
2971
+ msgid "Info"
2972
+ msgstr ""
2973
+
2974
+ #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2975
+ #: app/view/admin/add-ons.php:27
2976
+ msgid "Add-ons"
2977
+ msgstr ""
2978
+
2979
+ #: app/controller/front.php:343
2980
+ msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
2981
+ msgstr ""
2982
+
2983
+ #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
2984
+ #: app/view/admin/theme-switching.php:55
2985
+ msgid "Calendar Themes"
2986
+ msgstr ""
2987
+
2988
+ #: app/controller/front.php:990
2989
+ msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
2990
+ msgstr ""
2991
+
2992
+ #: app/controller/javascript-widget.php:48
2993
+ msgid "You must choose the Calendar page before using the Super Widget"
2994
+ msgstr ""
2995
+
2996
+ #: app/controller/javascript.php:402
2997
+ msgid "This feed is already being imported."
2998
+ msgstr ""
language/all-in-one-event-calendar-fi.mo CHANGED
Binary file
language/all-in-one-event-calendar-fi.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:47:24+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -1792,15 +1792,15 @@ msgstr "Tapahtumat"
1792
 
1793
  #: app/view/calendar/widget.php:93
1794
  msgid "Days"
1795
- msgstr ""
1796
 
1797
  #: app/view/calendar/widget.php:106
1798
  msgid "Number of events to show"
1799
- msgstr ""
1800
 
1801
  #: app/view/calendar/widget.php:115
1802
  msgid "Number of days to show"
1803
- msgstr ""
1804
 
1805
  #: app/view/calendar/widget.php:124
1806
  msgid "Show events filtered for the following tags/categories"
@@ -2393,15 +2393,15 @@ msgstr "Tapahtuman yksityiskohdat"
2393
 
2394
  #: app/view/admin/add-new-event.php:423
2395
  msgid "Set banner image"
2396
- msgstr ""
2397
 
2398
  #: app/view/admin/add-new-event.php:424
2399
  msgid "Remove banner image"
2400
- msgstr ""
2401
 
2402
  #: app/view/admin/add-ons.php:68
2403
  msgid "Add-ons for All In One Event Calendar"
2404
- msgstr ""
2405
 
2406
  #: app/view/admin/add-ons.php:71
2407
  msgid "Browse All Extensions"
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-03 01:42:25+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
1792
 
1793
  #: app/view/calendar/widget.php:93
1794
  msgid "Days"
1795
+ msgstr "Päivät"
1796
 
1797
  #: app/view/calendar/widget.php:106
1798
  msgid "Number of events to show"
1799
+ msgstr "Montako tapahtumaa näytetään"
1800
 
1801
  #: app/view/calendar/widget.php:115
1802
  msgid "Number of days to show"
1803
+ msgstr "Montako päivää näytetään"
1804
 
1805
  #: app/view/calendar/widget.php:124
1806
  msgid "Show events filtered for the following tags/categories"
2393
 
2394
  #: app/view/admin/add-new-event.php:423
2395
  msgid "Set banner image"
2396
+ msgstr "Aseta otsikko kuva"
2397
 
2398
  #: app/view/admin/add-new-event.php:424
2399
  msgid "Remove banner image"
2400
+ msgstr "Poista otsikko kuva"
2401
 
2402
  #: app/view/admin/add-ons.php:68
2403
  msgid "Add-ons for All In One Event Calendar"
2404
+ msgstr "Lisäosia - All In One Event Calendar"
2405
 
2406
  #: app/view/admin/add-ons.php:71
2407
  msgid "Browse All Extensions"
language/all-in-one-event-calendar-fr.mo ADDED
Binary file
language/all-in-one-event-calendar-fr.po ADDED
@@ -0,0 +1,3015 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of 2.3 in French (France)
2
+ # This file is distributed under the same license as the 2.3 package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2016-01-21 20:40:11+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
+ "Project-Id-Version: 2.3\n"
12
+
13
+ #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
+ #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
+ msgid "Event background"
16
+ msgstr "Fond d'un événement"
17
+
18
+ #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
+ #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
+ msgid "Event time background"
21
+ msgstr "Arrière plan de l'horaire d'un événement"
22
+
23
+ #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
+ #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
+ msgid "Event text"
26
+ msgstr "Texte de l'événement"
27
+
28
+ #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
+ #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
+ msgid "Month view date background"
31
+ msgstr "Fond de la date dans la vue mensuelle"
32
+
33
+ #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
+ #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
+ msgid "Week/day view now marker"
36
+ msgstr "Marqueur du jour courant de la vue semaine/jour"
37
+
38
+ #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
+ #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
+ msgid "Date label accent color"
41
+ msgstr "Couleur d'accentuation du label de date"
42
+
43
+ #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
+ #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
+ msgid "Date label background"
46
+ msgstr "Fond du label de date"
47
+
48
+ #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
+ #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
+ msgid "Date background"
51
+ msgstr "Fond de date"
52
+
53
+ #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
+ #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
+ msgid "Today background"
56
+ msgstr "Fond du jour courant"
57
+
58
+ #. Plugin Name of the plugin/theme
59
+ msgid "All-in-One Event Calendar by Time.ly"
60
+ msgstr "All-in-One Event Calendar par Time.ly"
61
+
62
+ #. Description of the plugin/theme
63
+ msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
+ msgstr "Un système de calendrier avec des vues mois, semaine, jour et agenda, un widget d'événements à venir, code couleur de catégories, récurrence, et import/export de flux .ics."
65
+
66
+ #. Author of the plugin/theme
67
+ msgid "Time.ly Network Inc."
68
+ msgstr "Time.ly Network Inc."
69
+
70
+ #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
+ #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
+ msgid "List item background (active/hover)"
73
+ msgstr "Fond des listes (active/hover)"
74
+
75
+ #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
+ #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
+ msgid "Input field placeholder text"
78
+ msgstr "Texte fictif de champs de saisie"
79
+
80
+ #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
+ #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
+ msgid "Today color"
83
+ msgstr "Couleur du jour courant"
84
+
85
+ #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
+ #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
+ msgid "All-day badge color"
88
+ msgstr "Couleur de badge d'un événement journée entière"
89
+
90
+ #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
+ #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
+ msgid "Event image shadow"
93
+ msgstr "Ombre de l'image d'un événement"
94
+
95
+ #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
+ #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
+ msgid "Event default color"
98
+ msgstr "Couleur par défaut d'évènement"
99
+
100
+ #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
+ #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
+ msgid "Event default color (hover)"
103
+ msgstr "Couleur par défaut d'évènement (hover)"
104
+
105
+ #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
+ #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
+ msgid "All-day/multi-day event stub text"
108
+ msgstr "Texte de talon d'événement Journée entière/Journées multiples"
109
+
110
+ #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
+ #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
+ msgid "All-day/multi-day event stub text shadow"
113
+ msgstr "Ombre de texte de talon d'événement Journée entière/Journées multiples "
114
+
115
+ #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
+ #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
+ msgid "Event border"
118
+ msgstr "Bordure d'un événement"
119
+
120
+ #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
+ #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
+ msgid "Button text"
123
+ msgstr "Texte de bouton"
124
+
125
+ #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
+ #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
+ msgid "Input field text"
128
+ msgstr "Texte de champs de saisie"
129
+
130
+ #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
+ #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
+ msgid "Input field background"
133
+ msgstr "Fond de champs de saisie"
134
+
135
+ #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
+ #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
+ msgid "Input field border"
138
+ msgstr "Bordure de champs de saisie"
139
+
140
+ #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
+ #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
+ msgid "Input field border (focus)"
143
+ msgstr "Bordure de champs de saisie (focus)"
144
+
145
+ #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
+ #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
+ msgid "Input field background (disabled)"
148
+ msgstr "Fond de champs de saisie (désactivé)"
149
+
150
+ #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
+ #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
+ msgid "Field label"
153
+ msgstr "Label de champs"
154
+
155
+ #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
+ #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
+ msgid "Dropdown list background"
158
+ msgstr "Fond des listes déroulantes"
159
+
160
+ #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
+ #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
+ msgid "Dropdown list border"
163
+ msgstr "Bordure des listes déroulantes"
164
+
165
+ #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
+ #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
+ msgid "List item text"
168
+ msgstr "Texte des listes"
169
+
170
+ #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
+ #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
+ msgid "List item text (active/hover)"
173
+ msgstr "Texte des listes (active/hover)"
174
+
175
+ #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
+ msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
+ msgstr "Nouveau thème activé. <a href=\"%s\">Visiter le site</a>"
178
+
179
+ #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
+ msgid "Theme deleted."
181
+ msgstr "Thème supprimé."
182
+
183
+ #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
+ msgid "Manage Themes"
185
+ msgstr "Gérer Thèmes"
186
+
187
+ #: public/admin/themes-install.php:40
188
+ msgctxt "theme"
189
+ msgid "Install Themes"
190
+ msgstr "Installer Thèmes"
191
+
192
+ #: public/admin/themes-updated.php:5
193
+ msgid "Update Calendar Themes"
194
+ msgstr "Mise à jour Thèmes Calendrier"
195
+
196
+ #: public/admin/themes-updated.php:15
197
+ msgid "All-in-One Event Calendar Settings »"
198
+ msgstr "Paramètres All-in-One Event Calendar »"
199
+
200
+ #: public/admin/themes.php:18
201
+ msgid "Current Calendar Theme"
202
+ msgstr "Thème Calendrier Actuel"
203
+
204
+ #: public/admin/themes.php:21
205
+ msgid "Current theme preview"
206
+ msgstr "Prévisualisation du thème actuel"
207
+
208
+ #: public/admin/themes.php:47
209
+ msgid "Available Calendar Themes"
210
+ msgstr "Thèmes Calendrier Disponibles"
211
+
212
+ #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
+ #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
+ msgid "Body background"
215
+ msgstr "Fond écran principal"
216
+
217
+ #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
+ #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
+ msgid "Text color"
220
+ msgstr "Couleur de texte"
221
+
222
+ #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
+ #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
+ msgid "Text emboss"
225
+ msgstr "Texte en relief"
226
+
227
+ #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
+ #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
+ msgid "Link"
230
+ msgstr "Lien"
231
+
232
+ #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
+ #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
+ msgid "Link (hover)"
235
+ msgstr "Lien (hover)"
236
+
237
+ #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
+ #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
+ msgid "Base font"
240
+ msgstr "Police de base"
241
+
242
+ #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
+ #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
+ msgid "Base font size"
245
+ msgstr "Taille de police de base"
246
+
247
+ #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
+ #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
+ msgid "Table background"
250
+ msgstr "Fond de tableau"
251
+
252
+ #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
+ #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
+ msgid "Table header background"
255
+ msgstr "Fond d'en-tête de tableau"
256
+
257
+ #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
+ #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
+ msgid "Table header text"
260
+ msgstr "Texte d'en-tête de tableau"
261
+
262
+ #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
+ #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
+ msgid "Primary brand color"
265
+ msgstr "Couleur principale"
266
+
267
+ #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
+ #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
+ msgid "Button background"
270
+ msgstr "Fond de bouton"
271
+
272
+ #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
+ #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
+ msgid "Button border"
275
+ msgstr "Bord de bouton"
276
+
277
+ #: public/admin/feed_row.php:104
278
+ msgid "Refreshing&#8230;"
279
+ msgstr "Actualisation&#8230;"
280
+
281
+ #: public/admin/feed_row.php:106
282
+ msgid "Refresh"
283
+ msgstr "Rafraichir"
284
+
285
+ #: public/admin/feed_row.php:119
286
+ msgid "Removing&#8230;"
287
+ msgstr "Suppression&#8230;"
288
+
289
+ #: public/admin/feed_row.php:121
290
+ msgid "Remove"
291
+ msgstr "Supprimer"
292
+
293
+ #: public/admin/import.php:6
294
+ msgid "Successfully imported events:"
295
+ msgstr "Événements importés avec succès :"
296
+
297
+ #: public/admin/plugins/ics/display_feeds.php:2
298
+ msgid ""
299
+ "Configure which other calendars your own calendar subscribes to.\n"
300
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
302
+ " imported periodically."
303
+ msgstr ""
304
+ "Configurez à quel(s) autre(s) calendrier(s) votre propre calendrier souscrit.\n"
305
+ " Vous pouvez ajouter n'importe quel calendrier fournissant un flux iCalendar (.ics).\n"
306
+ " Entrez le(s) URL(s) ci-dessous et les événements de ces flux seront\n"
307
+ " importés périodiquement."
308
+
309
+ #: public/admin/plugins/ics/display_feeds.php:14
310
+ msgid "Check for new events"
311
+ msgstr "Vérifier les nouveaux événements"
312
+
313
+ #: public/admin/plugins/ics/display_feeds.php:45
314
+ msgid "Allow comments on imported events"
315
+ msgstr "Autoriser les commentaires sur les évènements importés"
316
+
317
+ #: public/admin/plugins/ics/display_feeds.php:52
318
+ msgid "Show map on imported events"
319
+ msgstr "Afficher la carte sur les événements importés"
320
+
321
+ #: public/admin/plugins/ics/display_feeds.php:59
322
+ msgid "Import any tags/categories provided by feed, in addition those selected above"
323
+ msgstr "Importer tous les mots-clés/catégories fournies par le flux, en plus de ceux sélectionnés ci-dessous."
324
+
325
+ #: public/admin/plugins/ics/display_feeds.php:93
326
+ msgid "Add new subscription"
327
+ msgstr "Ajouter une nouvelle souscription"
328
+
329
+ #: public/admin/plugins/ics/display_feeds.php:96
330
+ msgid "Update subscription"
331
+ msgstr ""
332
+
333
+ #: public/admin/row_custom.php:3
334
+ msgid "Custom dates:"
335
+ msgstr "Dates personnalisées:"
336
+
337
+ #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
+ #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
+ #: public/admin/row_yearly.php:3
340
+ msgid "Every"
341
+ msgstr "Chaque"
342
+
343
+ #: public/admin/row_monthly.php:16
344
+ msgid "On day of the month"
345
+ msgstr "Au jour du mois"
346
+
347
+ #: public/admin/row_monthly.php:23
348
+ msgid "On day of the week"
349
+ msgstr "Au jour de la semaine"
350
+
351
+ #: public/admin/row_weekly.php:12
352
+ msgctxt "Recurrence editor - weekly tab"
353
+ msgid "On"
354
+ msgstr "Le"
355
+
356
+ #: public/admin/row_yearly.php:12
357
+ msgctxt "Recurrence editor - yearly tab"
358
+ msgid "In"
359
+ msgstr "En"
360
+
361
+ #: public/admin/settings.php:19
362
+ msgid "Update Settings"
363
+ msgstr "Mettre à jour Paramètres"
364
+
365
+ #: public/admin/themes-install.php:4
366
+ msgid "The active theme is broken. Reverting to the default theme."
367
+ msgstr "Le thème actif est cassé. Basculement vers le thème par défaut en cours."
368
+
369
+ #: public/admin/themes-install.php:13
370
+ msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
+ msgstr "Nouveau thème activé. Ce thème supporte les widgets, veuillez consulter l'écran <a href=\"%s\">paramètres widgets</a> pour les configurer."
372
+
373
+ #: public/admin/calendar_tasks.php:24
374
+ msgid "Manage Events"
375
+ msgstr "Gérer Événements"
376
+
377
+ #: public/admin/calendar_tasks.php:27
378
+ msgid "View and edit all your events."
379
+ msgstr "Affichez et modifiez tous vos événements."
380
+
381
+ #: public/admin/calendar_tasks.php:39
382
+ msgid "Manage Event Categories"
383
+ msgstr "Gérer Catégories Évènement"
384
+
385
+ #: public/admin/calendar_tasks.php:42
386
+ msgid "Organize and color-code your events."
387
+ msgstr "Organisez et colorez vos événements."
388
+
389
+ #: public/admin/calendar_tasks.php:50
390
+ msgid "Choose Your Theme"
391
+ msgstr "Choisissez votre thème"
392
+
393
+ #: public/admin/calendar_tasks.php:53
394
+ msgid "Change the look and feel."
395
+ msgstr "Changer l'apparence."
396
+
397
+ #: public/admin/calendar_tasks.php:63
398
+ msgid "Manage Calendar Feeds"
399
+ msgstr "Gérer Flux Calendrier"
400
+
401
+ #: public/admin/calendar_tasks.php:66
402
+ msgid "Subscribe to other calendars."
403
+ msgstr "Souscrire à d'autres calendriers."
404
+
405
+ #: public/admin/calendar_tasks.php:74
406
+ msgid "Edit Calendar Settings"
407
+ msgstr "Modifier Paramètres Calendrier"
408
+
409
+ #: public/admin/calendar_tasks.php:77
410
+ msgid "Make this calendar your own."
411
+ msgstr "Faites de ce calendrier le vôtre."
412
+
413
+ #: public/admin/cron_freq.php:3
414
+ msgid "Hourly"
415
+ msgstr "Chaque heure"
416
+
417
+ #: public/admin/cron_freq.php:6
418
+ msgid "Twice Daily"
419
+ msgstr "Deux fois par jour"
420
+
421
+ #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
+ msgid "iCalendar/.ics Feed URL:"
423
+ msgstr "URL Flux iCalendar/.ics :"
424
+
425
+ #: public/admin/feed_row.php:24
426
+ msgid "Event categories:"
427
+ msgstr "Catégories d'événement:"
428
+
429
+ #: public/admin/feed_row.php:31
430
+ msgid "Tag with"
431
+ msgstr "Taguer avec"
432
+
433
+ #: public/admin/feed_row.php:40
434
+ msgid "Allow comments"
435
+ msgstr "Autoriser les commentaires"
436
+
437
+ #: public/admin/feed_row.php:51
438
+ msgid "Show map"
439
+ msgstr "Afficher la carte"
440
+
441
+ #: public/admin/feed_row.php:63
442
+ msgid "Keep original events categories and tags"
443
+ msgstr "Garder les catégories et mots-clés originaux des événements"
444
+
445
+ #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
+ msgid "On refresh, preserve previously imported events that are missing from the feed"
447
+ msgstr "Lors du rafraichissement, conserver les événements précédemment importés qui manquent dans le flux"
448
+
449
+ #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
+ msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
+ msgstr "Deviner le fuseau horaire des événements qui n'en possèdent pas; recommandé pour les flux Google Agenda"
452
+
453
+ #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
+ msgid "Assign default time zone to events in UTC"
455
+ msgstr "Assigner par défaut le fuseau horaire UTC aux événements "
456
+
457
+ #: public/admin/box_support.php:19
458
+ msgid "Get Add-ons"
459
+ msgstr "Trouver des extensions"
460
+
461
+ #: public/admin/box_support.php:27
462
+ msgid "Support"
463
+ msgstr "Support"
464
+
465
+ #: public/admin/box_support.php:35
466
+ msgid "Timely Events"
467
+ msgstr "Événements Timely"
468
+
469
+ #: public/admin/box_support.php:43
470
+ msgid "Timely News"
471
+ msgstr "Actualités Timely"
472
+
473
+ #: public/admin/box_support.php:47
474
+ msgid "view all news"
475
+ msgstr "voir toutes les actualités"
476
+
477
+ #: public/admin/box_support.php:95
478
+ msgid "Follow @_Timely"
479
+ msgstr "Suivre @_Timely"
480
+
481
+ #: public/admin/box_time_and_date.php:6
482
+ msgid "Event date and time"
483
+ msgstr "Date et heure de l'événement"
484
+
485
+ #: public/admin/box_time_and_date.php:26
486
+ msgid "All-day event"
487
+ msgstr "Évènement de journée entière"
488
+
489
+ #: public/admin/box_time_and_date.php:35
490
+ msgid "No end time"
491
+ msgstr "Aucune date de fin"
492
+
493
+ #: public/admin/box_time_and_date.php:42
494
+ msgid "Start date / time"
495
+ msgstr "Date/heure de début"
496
+
497
+ #: public/admin/box_time_and_date.php:59
498
+ msgid "End date / time"
499
+ msgstr "Date/heure de fin"
500
+
501
+ #: public/admin/box_time_and_date.php:76
502
+ msgid "Time zone"
503
+ msgstr "Fuseau horaire"
504
+
505
+ #: public/admin/box_time_and_date.php:81
506
+ msgid "Choose your time zone"
507
+ msgstr "Choisissez votre fuseau horaire"
508
+
509
+ #: public/admin/box_time_and_date.php:108
510
+ msgid "Repeat"
511
+ msgstr "Répéter"
512
+
513
+ #: public/admin/box_time_and_date.php:127
514
+ msgid "Exclude"
515
+ msgstr "Exclure"
516
+
517
+ #: public/admin/box_time_and_date.php:136
518
+ msgid "Choose a rule for exclusion"
519
+ msgstr "Choisir une règle d'exclusion"
520
+
521
+ #: public/admin/calendar_tasks.php:3
522
+ msgid "Welcome"
523
+ msgstr "Bienvenue"
524
+
525
+ #: public/admin/calendar_tasks.php:4
526
+ msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
+ msgstr "à All-in-One Event Calendar par <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
+
529
+ #: public/admin/calendar_tasks.php:13
530
+ msgid "Post Your Event"
531
+ msgstr "Postez votre événement"
532
+
533
+ #: public/admin/calendar_tasks.php:16
534
+ msgid "Add a new event to the calendar."
535
+ msgstr "Ajouter un nouvel événement au calendrier."
536
+
537
+ #: public/admin/box_eventbrite.php:60
538
+ msgid "Donation Based"
539
+ msgstr "Basé sur les dons"
540
+
541
+ #: public/admin/box_eventbrite.php:68
542
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
543
+ msgstr "Le prix pour le premier ticket de cet événement sera pris dans le champs Prix ci-dessous."
544
+
545
+ #: public/admin/box_eventbrite.php:75
546
+ msgid "Quantity"
547
+ msgstr "Quantité"
548
+
549
+ #: public/admin/box_eventbrite.php:85
550
+ msgid "Include Fee in Price"
551
+ msgstr "Inclure Frais dans le Prix"
552
+
553
+ #: public/admin/box_eventbrite.php:90
554
+ msgid "Add Service Fee on top of price"
555
+ msgstr "Ajouter des frais de Service en haut du prix"
556
+
557
+ #: public/admin/box_eventbrite.php:92
558
+ msgid "Include Service fee in price"
559
+ msgstr "Inclure les frais de service dans le prix"
560
+
561
+ #: public/admin/box_eventbrite.php:98
562
+ msgid "Payment Options"
563
+ msgstr "Options de Paiement"
564
+
565
+ #: public/admin/box_eventbrite.php:105
566
+ msgid "Google Checkout"
567
+ msgstr "Google Checkout"
568
+
569
+ #: public/admin/box_eventbrite.php:107
570
+ msgid "Check"
571
+ msgstr "Vérifier"
572
+
573
+ #: public/admin/box_eventbrite.php:109
574
+ msgid "Cash"
575
+ msgstr "Liquide"
576
+
577
+ #: public/admin/box_eventbrite.php:111
578
+ msgid "Send an Invoice"
579
+ msgstr "Envoyer une Facture"
580
+
581
+ #: public/admin/box_profile_timezone.php:9
582
+ msgid "Your preferred timezone"
583
+ msgstr "Votre fuseau horaire préféré"
584
+
585
+ #: public/admin/box_repeat.php:5
586
+ msgid "Select recurrence pattern:"
587
+ msgstr "Sélectionner le schéma de récurrence :"
588
+
589
+ #: public/admin/box_repeat.php:36
590
+ msgid "Custom"
591
+ msgstr "Personnaliser"
592
+
593
+ #: public/admin/box_repeat.php:72
594
+ msgid "End"
595
+ msgstr "Fin"
596
+
597
+ #: public/admin/box_repeat.php:82
598
+ msgid "Ending after"
599
+ msgstr "Fin après"
600
+
601
+ #: public/admin/box_repeat.php:109
602
+ #: public/admin/plugins/ics/display_feeds.php:90
603
+ msgid "Please wait&#8230;"
604
+ msgstr "Patientez s'il vous plaît&#8230;"
605
+
606
+ #: public/admin/box_repeat.php:111
607
+ msgid "Apply"
608
+ msgstr "Appliquer"
609
+
610
+ #: public/admin/box_repeat.php:116
611
+ #: public/admin/plugins/ics/display_feeds.php:84
612
+ msgid "Cancel"
613
+ msgstr "Annuler"
614
+
615
+ #: public/admin/box_support.php:4
616
+ msgid "Timely"
617
+ msgstr "Timely"
618
+
619
+ #: public/admin/box_support.php:11
620
+ msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
+ msgstr "All-in-One Event Calendar de Timely est une<br />nouvelle manière révolutionnaire de trouver et partager des événements."
622
+
623
+ #: public/admin/box_event_cost.php:228
624
+ msgid "Status:"
625
+ msgstr ""
626
+
627
+ #: public/admin/box_event_cost.php:235
628
+ msgid "Open"
629
+ msgstr ""
630
+
631
+ #: public/admin/box_event_cost.php:239
632
+ msgid "Closed"
633
+ msgstr ""
634
+
635
+ #: public/admin/box_event_cost.php:254
636
+ msgid "Add New Ticket Type"
637
+ msgstr ""
638
+
639
+ #: public/admin/box_event_cost.php:274
640
+ msgid "Tickets URL:"
641
+ msgstr ""
642
+
643
+ #: public/admin/box_event_location.php:6
644
+ msgid "Event location details"
645
+ msgstr "Détails du lieu de l'évènement"
646
+
647
+ #: public/admin/box_event_location.php:19
648
+ msgid "Venue name:"
649
+ msgstr "Nom du lieu :"
650
+
651
+ #: public/admin/box_event_location.php:31
652
+ msgid "Address:"
653
+ msgstr "Adresse :"
654
+
655
+ #: public/admin/box_event_location.php:45
656
+ msgid "Input Coordinates"
657
+ msgstr "Coordonnées"
658
+
659
+ #: public/admin/box_event_location.php:57
660
+ msgid "Latitude:"
661
+ msgstr "Latitude :"
662
+
663
+ #: public/admin/box_event_location.php:69
664
+ msgid "Longitude:"
665
+ msgstr "Longitude :"
666
+
667
+ #: public/admin/box_event_location.php:85
668
+ msgid "Show Map"
669
+ msgstr "Montrer le plan"
670
+
671
+ #: public/admin/box_eventbrite.php:1
672
+ msgid "Eventbrite Ticketing"
673
+ msgstr "Billetterie Eventbrite"
674
+
675
+ #: public/admin/box_eventbrite.php:7
676
+ msgid "Register this event with Eventbrite.com?"
677
+ msgstr "Enregistrer cet événement avec Eventbrite.com ?"
678
+
679
+ #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
+ #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
+ #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
+ msgid "Yes"
683
+ msgstr "Oui"
684
+
685
+ #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
+ #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
+ #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
+ msgid "No"
689
+ msgstr "Non"
690
+
691
+ #: public/admin/box_eventbrite.php:22
692
+ msgid "Set up your first ticket"
693
+ msgstr "Paramétrez votre premier ticket"
694
+
695
+ #: public/admin/box_eventbrite.php:24
696
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
+ msgstr "Pour créer plusieurs tickets par événement, soumettez ce formulaire, puis suivez le lien vers Eventbrite."
698
+
699
+ #: public/admin/box_eventbrite.php:42
700
+ msgid "Description"
701
+ msgstr "Description"
702
+
703
+ #: public/admin/box_eventbrite.php:53
704
+ msgid "Type"
705
+ msgstr "Type"
706
+
707
+ #: public/admin/box_eventbrite.php:58
708
+ msgid "Set Price"
709
+ msgstr "Fixer Prix"
710
+
711
+ #: public/admin/box_event_contact.php:30
712
+ msgid "Phone:"
713
+ msgstr "Téléphone :"
714
+
715
+ #: public/admin/box_event_contact.php:56
716
+ msgid "Website URL:"
717
+ msgstr ""
718
+
719
+ #: public/admin/box_event_cost.php:6
720
+ msgid "Event cost and Tickets"
721
+ msgstr "Prix et Tickets de l'événement"
722
+
723
+ #: public/admin/box_event_cost.php:20
724
+ msgid "Ticket options not available - event imported from external calendar."
725
+ msgstr ""
726
+
727
+ #: public/admin/box_event_cost.php:28
728
+ msgid "Free event"
729
+ msgstr "Événement gratuit"
730
+
731
+ #: public/admin/box_event_cost.php:41
732
+ msgid "External Tickets URL"
733
+ msgstr ""
734
+
735
+ #: public/admin/box_event_cost.php:52
736
+ msgid "Ticketing allows you to sell tickets directly to the users."
737
+ msgstr ""
738
+
739
+ #: public/admin/box_event_cost.php:55
740
+ msgid "Sign Up for Timely Network"
741
+ msgstr ""
742
+
743
+ #: public/admin/box_event_cost.php:80
744
+ msgid "Remove Ticket Type"
745
+ msgstr ""
746
+
747
+ #: public/admin/box_event_cost.php:101
748
+ msgid "Ex.: Regular Ticket"
749
+ msgstr ""
750
+
751
+ #: public/admin/box_event_cost.php:105
752
+ msgid "Description:"
753
+ msgstr "Description:"
754
+
755
+ #: public/admin/box_event_cost.php:111
756
+ msgid "(Optional)"
757
+ msgstr ""
758
+
759
+ #: public/admin/box_event_cost.php:115
760
+ msgid "Price:"
761
+ msgstr ""
762
+
763
+ #: public/admin/box_event_cost.php:124
764
+ msgid "USD"
765
+ msgstr ""
766
+
767
+ #: public/admin/box_event_cost.php:128
768
+ msgid "Limits:"
769
+ msgstr ""
770
+
771
+ #: public/admin/box_event_cost.php:131
772
+ msgid "This fields are required."
773
+ msgstr ""
774
+
775
+ #: public/admin/box_event_cost.php:156
776
+ msgid "Quantity:"
777
+ msgstr ""
778
+
779
+ #: public/admin/box_event_cost.php:180
780
+ msgid "Available:"
781
+ msgstr ""
782
+
783
+ #: public/admin/box_event_cost.php:185
784
+ msgid "Immediately"
785
+ msgstr ""
786
+
787
+ #: public/admin/box_event_cost.php:190
788
+ msgid "From:"
789
+ msgstr ""
790
+
791
+ #: public/admin/box_event_cost.php:207
792
+ msgid "Till:"
793
+ msgstr ""
794
+
795
+ #: public/admin/box_ask_customer_review.php:42
796
+ #: public/admin/box_ask_customer_review.php:75
797
+ msgid "No, thanks"
798
+ msgstr ""
799
+
800
+ #: public/admin/box_ask_customer_review.php:50
801
+ #: public/admin/box_ask_customer_review.php:84
802
+ msgid "Ok, sure!"
803
+ msgstr ""
804
+
805
+ #: public/admin/box_ask_customer_review.php:66
806
+ msgid "Would you mind giving us some feedback?"
807
+ msgstr ""
808
+
809
+ #: public/admin/box_ask_customer_review.php:101
810
+ msgid "Please provide some feedback"
811
+ msgstr ""
812
+
813
+ #: public/admin/box_ask_customer_review.php:108
814
+ msgid "Message:"
815
+ msgstr ""
816
+
817
+ #: public/admin/box_ask_customer_review.php:121
818
+ msgid "Name:"
819
+ msgstr ""
820
+
821
+ #: public/admin/box_ask_customer_review.php:136
822
+ #: public/admin/box_event_contact.php:43
823
+ msgid "E-mail:"
824
+ msgstr "Courriel :"
825
+
826
+ #: public/admin/box_ask_customer_review.php:143
827
+ msgid "E-mail is invalid."
828
+ msgstr ""
829
+
830
+ #: public/admin/box_ask_customer_review.php:154
831
+ msgid "Site URL:"
832
+ msgstr ""
833
+
834
+ #: public/admin/box_ask_customer_review.php:161
835
+ msgid "Site URL is invalid."
836
+ msgstr ""
837
+
838
+ #: public/admin/box_ask_customer_review.php:173
839
+ msgid "Thank you for being our customer,"
840
+ msgstr ""
841
+
842
+ #: public/admin/box_ask_customer_review.php:174
843
+ msgid "Aristotel Dascal, VP of Product, Time.ly"
844
+ msgstr ""
845
+
846
+ #: public/admin/box_ask_customer_review.php:180
847
+ msgid "Sending..."
848
+ msgstr ""
849
+
850
+ #: public/admin/box_ask_customer_review.php:181
851
+ msgid "Send Message"
852
+ msgstr ""
853
+
854
+ #: public/admin/box_event_children.php:12
855
+ msgid "Base recurrence event"
856
+ msgstr "Événement de récurrence de base"
857
+
858
+ #: public/admin/box_event_children.php:14
859
+ msgid "Modified recurrence events"
860
+ msgstr "Événements de récurrence modifiée"
861
+
862
+ #: public/admin/box_event_children.php:22
863
+ msgid "Edit parent:"
864
+ msgstr "Modifier parent :"
865
+
866
+ #: public/admin/box_event_children.php:27
867
+ msgid "Modified Events"
868
+ msgstr "Évènements Modifiés"
869
+
870
+ #: public/admin/box_event_children.php:31
871
+ msgid "Edit:"
872
+ msgstr "Modifier :"
873
+
874
+ #: public/admin/box_event_contact.php:6
875
+ msgid "Organizer contact info"
876
+ msgstr "Informations de l'organisateur"
877
+
878
+ #: public/admin/box_event_contact.php:17
879
+ msgid "Contact name:"
880
+ msgstr "Nom de contact :"
881
+
882
+ #: lib/theme/loader.php:325
883
+ msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
+ msgstr "Nous n'avons pas trouvé le bon chargeur pour les noms de fichier avec l'extension '%s'."
885
+
886
+ #: lib/theme/loader.php:631
887
+ msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
+ msgstr "Votre thème de calendrier a été basculé vers Vortex à cause d'un problème de rendu. Pour plus d'informations, veuillez activer le mode debug en ajoutant cette ligne à votre wordpress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
889
+
890
+ #: lib/theme/search.php:253
891
+ msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
+ msgstr "Impossible de déplacer vos anciens thèmes depuis <code>wp-content/themes-ai1ec</code> vers <code>wp-content/themes-ai1ec-obsolete</code> car votre dossier <code>wp-content</code> ne dispose pas des droits en écriture. Veuillez s'il vous plaît supprimer à la main vos anciens thèmes du dossier <code>wp-content/themes-ai1ec</code>."
893
+
894
+ #: lib/theme/search.php:264
895
+ msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
+ msgstr "Impossible de déplacer vos anciens thèmes depuis <code>wp-content/themes-ai1ec/%s</code> vers <code>wp-content/themes-ai1ec-obsolete/%s</code>. Veuillez s'il vous plaît supprimer à la main vos anciens thèmes du dossier <code>wp-content/themes-ai1ec/%s</code>."
897
+
898
+ #: lib/twig/environment.php:115
899
+ msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
+ msgstr "Le calendrier est temporairement désactivé à cause d'un problème de rendu. Veuillez <a href=\"javascript:location.reload();\">recharger la page</a>."
901
+
902
+ #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
+ msgid "Title:"
904
+ msgstr "Titre :"
905
+
906
+ #: public/admin/agenda-widget-form.php:12
907
+ msgid "Number of events to show:"
908
+ msgstr "Nombre d'événements à afficher :"
909
+
910
+ #: public/admin/agenda-widget-form.php:21
911
+ msgid "Number of days to show:"
912
+ msgstr "Nombre de jours à afficher :"
913
+
914
+ #: public/admin/agenda-widget-form.php:26
915
+ msgid "Limit to:"
916
+ msgstr "Limiter à :"
917
+
918
+ #: public/admin/agenda-widget-form.php:30
919
+ msgid "Events with these <strong>Categories</strong>"
920
+ msgstr "Événements dans ces <strong>Catégories</strong>"
921
+
922
+ #: public/admin/agenda-widget-form.php:39
923
+ msgid "No categories found."
924
+ msgstr "Aucune catégorie trouvée."
925
+
926
+ #: public/admin/agenda-widget-form.php:46
927
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
+ msgstr "<strong>Ou</strong> les événements avec ces <strong>Mots-clés</strong>"
929
+
930
+ #: public/admin/agenda-widget-form.php:55
931
+ msgid "No tags found."
932
+ msgstr "Aucun mot-clé trouvé."
933
+
934
+ #: public/admin/agenda-widget-form.php:62
935
+ msgid "Show <strong>View Calendar</strong> button"
936
+ msgstr "Afficher le bouton <strong>Voir Calendrier</strong>"
937
+
938
+ #: public/admin/agenda-widget-form.php:65
939
+ msgid "Show <strong>Subscribe</strong> buttons"
940
+ msgstr "Afficher les boutons <strong>Souscrire</strong>"
941
+
942
+ #: public/admin/agenda-widget-form.php:68
943
+ msgid "Hide this widget on calendar page"
944
+ msgstr "Cacher ce widget sur la page calendrier"
945
+
946
+ #: public/admin/box_ask_customer_review.php:5
947
+ msgid "Enjoying All-in-One Event Calendar?"
948
+ msgstr ""
949
+
950
+ #: public/admin/box_ask_customer_review.php:13
951
+ msgid "Not really"
952
+ msgstr ""
953
+
954
+ #: public/admin/box_ask_customer_review.php:20
955
+ msgid "Yes!"
956
+ msgstr ""
957
+
958
+ #: public/admin/box_ask_customer_review.php:33
959
+ msgid "How about a rating on the Wordpress?"
960
+ msgstr ""
961
+
962
+ #: lib/recurrence/rule.php:397
963
+ msgid "Every %d weeks"
964
+ msgstr "Toutes les %d semaines"
965
+
966
+ #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
+ msgid "Monthly"
968
+ msgstr "Mensuel"
969
+
970
+ #: lib/recurrence/rule.php:409
971
+ msgid "Every other month"
972
+ msgstr "Tous les autres mois"
973
+
974
+ #: lib/recurrence/rule.php:412
975
+ msgid "Every %d months"
976
+ msgstr "Tous les %d mois"
977
+
978
+ #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
+ msgid "Yearly"
980
+ msgstr "Annuel"
981
+
982
+ #: lib/recurrence/rule.php:424
983
+ msgid "Every other year"
984
+ msgstr "Toutes les autres années"
985
+
986
+ #: lib/recurrence/rule.php:427
987
+ msgid "Every %d years"
988
+ msgstr "Tous les %d ans"
989
+
990
+ #: lib/recurrence/rule.php:465
991
+ msgid "until %s"
992
+ msgstr "jusqu'à %s"
993
+
994
+ #: lib/recurrence/rule.php:475
995
+ msgid "for %d occurrences"
996
+ msgstr "pour %d occurences"
997
+
998
+ #: lib/recurrence/rule.php:479
999
+ msgid "forever"
1000
+ msgstr "pour toujours"
1001
+
1002
+ #: lib/robots/helper.php:71
1003
+ msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
+ msgstr "<strong>ERREUR:</strong> Il y a eu une erreur de connexion au serveur, vérifiez que les réglages sont corrects. "
1005
+
1006
+ #: lib/robots/helper.php:105
1007
+ msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
+ msgstr "<strong>ERREUR:</strong> Il y a eu une erreur en stockant le fichier <strong>robots.txt</strong> sur le serveur, le fichier n'a pas pu être écrit."
1009
+
1010
+ #: lib/theme/list.php:152
1011
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
+ msgstr "Vous n'avez qu'un seul thème d'activé pour ce site. Visitez l’administration pour <a href=\"%1$s\">activer</a> ou <a href=\"%2$s\">installer</a> plus de thèmes."
1013
+
1014
+ #: lib/theme/list.php:164
1015
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
+ msgstr "Vous avez un seul thème d'activé pour ce site. Visitez l'administration pour <a href=\"%1$s\">activer</a> plus de thèmes."
1017
+
1018
+ #: lib/theme/list.php:179
1019
+ msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
+ msgstr "Vous avez un seul thème d'installé. Vous pouvez choisir d'autres thèmes gratuits sur le répertoire de thèmes de Timely: cliquez simplement sur <a href=\"%s\">Installer Thèmes</a> ci-dessous."
1021
+
1022
+ #: lib/theme/list.php:190
1023
+ msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
+ msgstr "Seul le thème actif est disponible pour vous. Contactez le <em>%s</em> administrateur pour ajouter plus de thèmes."
1025
+
1026
+ #: lib/theme/list.php:257
1027
+ msgid "Activate &#8220;%s&#8221;"
1028
+ msgstr "Activer &#8220;%s&#8221;"
1029
+
1030
+ #: lib/theme/list.php:264
1031
+ msgid "Activate"
1032
+ msgstr "Activer"
1033
+
1034
+ #. translators: 1: theme title, 2: theme version, 3: theme author
1035
+ #: lib/theme/list.php:281 public/admin/themes.php:25
1036
+ msgid "%1$s %2$s by %3$s"
1037
+ msgstr "%1$s %2$s par %3$s"
1038
+
1039
+ #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
+ #. title, 5: parent_theme
1041
+ #: lib/theme/list.php:293
1042
+ msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
+ msgstr "Les fichiers de gabarit sont situés dans <code>%2$s</code>. La feuille de style est située dans <code>%3$s</code>. <strong>%4$s</strong> utilise les gabarits de <strong>%5$s</strong>. Les changements fait sur ce gabarit affecteront les deux thèmes."
1044
+
1045
+ #: lib/theme/list.php:308
1046
+ msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
+ msgstr "Tous les fichiers de ce thème sont situés dans <code>%2$s</code>."
1048
+
1049
+ #: lib/post/custom-type.php:36
1050
+ msgid "Parent Event"
1051
+ msgstr "Événement Parent"
1052
+
1053
+ #: lib/post/custom-type.php:55
1054
+ msgid "event"
1055
+ msgstr "event"
1056
+
1057
+ #: lib/post/custom-type.php:85
1058
+ msgctxt "Event categories taxonomy"
1059
+ msgid "Categories"
1060
+ msgstr "Catégories"
1061
+
1062
+ #: lib/post/custom-type.php:86
1063
+ msgctxt "Event categories taxonomy (singular)"
1064
+ msgid "Category"
1065
+ msgstr "Catégorie"
1066
+
1067
+ #: lib/post/custom-type.php:87
1068
+ msgctxt "Event categories menu item"
1069
+ msgid "Organize"
1070
+ msgstr "Organiser"
1071
+
1072
+ #: lib/post/custom-type.php:94
1073
+ msgctxt "Event tags taxonomy"
1074
+ msgid "Tags"
1075
+ msgstr "Mots-clés"
1076
+
1077
+ #: lib/post/custom-type.php:95
1078
+ msgctxt "Event tags taxonomy (singular)"
1079
+ msgid "Tag"
1080
+ msgstr "Mot-clé"
1081
+
1082
+ #: lib/post/custom-type.php:102
1083
+ msgctxt "Event feeds taxonomy"
1084
+ msgid "Event Feeds"
1085
+ msgstr "Flux d'événements"
1086
+
1087
+ #: lib/post/custom-type.php:103
1088
+ msgctxt "Event feed taxonomy (singular)"
1089
+ msgid "Event Feed"
1090
+ msgstr "Flux Évènement"
1091
+
1092
+ #: lib/post/custom-type.php:285
1093
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
+ msgstr "Tous les événements <span class=\"update-plugins count-%d\" title=\"%d Événements en attente\"><span class=\"update-count\">%d</span></span>"
1095
+
1096
+ #: lib/post/custom-type.php:296
1097
+ msgid "All Events"
1098
+ msgstr "Tous les événements"
1099
+
1100
+ #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
+ #: lib/recurrence/rule.php:260
1102
+ msgctxt "Recurrence editor - weekly tab"
1103
+ msgid "on"
1104
+ msgstr "le"
1105
+
1106
+ #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
+ #: lib/recurrence/rule.php:326
1108
+ msgid "and"
1109
+ msgstr "et"
1110
+
1111
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
+ #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
+ msgctxt "Recurrence editor - monthly tab"
1114
+ msgid "on"
1115
+ msgstr "en"
1116
+
1117
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
+ #: lib/recurrence/rule.php:286
1119
+ msgid "of the month"
1120
+ msgstr "du mois"
1121
+
1122
+ #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
+ #: lib/recurrence/rule.php:336
1124
+ msgctxt "Recurrence editor - yearly tab"
1125
+ msgid "on"
1126
+ msgstr "en"
1127
+
1128
+ #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
+ #: public/admin/cron_freq.php:9
1130
+ msgid "Daily"
1131
+ msgstr "Quotidiennement"
1132
+
1133
+ #: lib/recurrence/rule.php:379
1134
+ msgid "Every other day"
1135
+ msgstr "Tous les autres jours"
1136
+
1137
+ #: lib/recurrence/rule.php:382
1138
+ msgid "Every %d days"
1139
+ msgstr "Tous les %d jours"
1140
+
1141
+ #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
+ msgid "Weekly"
1143
+ msgstr "Hebdomadaire"
1144
+
1145
+ #: lib/recurrence/rule.php:394
1146
+ msgid "Every other week"
1147
+ msgstr "Toutes les autres semaines"
1148
+
1149
+ #: lib/less/variable/font.php:64
1150
+ msgid "Custom..."
1151
+ msgstr "Personnalisé..."
1152
+
1153
+ #: lib/less/variable/font.php:112
1154
+ msgid "Enter custom font(s)"
1155
+ msgstr "Entrer une(des) police(s) personnalisée(s)"
1156
+
1157
+ #: lib/less/variable/size.php:26
1158
+ msgid "Length"
1159
+ msgstr "Longueur"
1160
+
1161
+ #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
+ msgid "All-in-One Event Calendar"
1163
+ msgstr "All-in-One Event Calendar"
1164
+
1165
+ #: lib/notification/admin.php:182
1166
+ msgid "Got it – dismiss this"
1167
+ msgstr "J'ai compris - passer ça"
1168
+
1169
+ #: lib/post/custom-type.php:26
1170
+ msgctxt "Custom post type name"
1171
+ msgid "Events"
1172
+ msgstr "Événements"
1173
+
1174
+ #: lib/post/custom-type.php:27
1175
+ msgctxt "Custom post type name (singular)"
1176
+ msgid "Event"
1177
+ msgstr "Événement"
1178
+
1179
+ #: lib/post/custom-type.php:28
1180
+ msgid "Add New"
1181
+ msgstr "Ajouter Nouveau"
1182
+
1183
+ #: lib/post/custom-type.php:29
1184
+ msgid "Add New Event"
1185
+ msgstr "Ajouter un Nouvel Événement"
1186
+
1187
+ #: lib/post/custom-type.php:30
1188
+ msgid "Edit Event"
1189
+ msgstr "Modifier Événement"
1190
+
1191
+ #: lib/post/custom-type.php:31
1192
+ msgid "New Event"
1193
+ msgstr "Nouvel Événement"
1194
+
1195
+ #: lib/post/custom-type.php:32
1196
+ msgid "View Event"
1197
+ msgstr "Voir Évènement"
1198
+
1199
+ #: lib/post/custom-type.php:33
1200
+ msgid "Search Events"
1201
+ msgstr "Rechercher Événements"
1202
+
1203
+ #: lib/post/custom-type.php:34
1204
+ msgid "No Events found"
1205
+ msgstr "Aucun événement trouvé"
1206
+
1207
+ #: lib/post/custom-type.php:35
1208
+ msgid "No Events found in Trash"
1209
+ msgstr "Aucun évènement trouvé dans la Corbeille"
1210
+
1211
+ #: lib/html/element/setting/html.php:62
1212
+ msgid "Filter by post ID:"
1213
+ msgstr "Filtrer selon l'identifiant de l'article :"
1214
+
1215
+ #: lib/html/element/setting/html.php:63
1216
+ msgid "Filter by post IDs (separate IDs by comma):"
1217
+ msgstr "Filtrer selon les ids d'article (ids séparés par des virgules) :"
1218
+
1219
+ #: lib/html/element/setting/html.php:64
1220
+ msgid "Limit number of events per page:"
1221
+ msgstr "Limiter le nombre d'événements par page:"
1222
+
1223
+ #: lib/html/element/setting/html.php:65
1224
+ msgid "Warning:"
1225
+ msgstr "Avertissement :"
1226
+
1227
+ #: lib/html/element/setting/html.php:66
1228
+ msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
+ msgstr "Il n'est pour l'instant pas possible d'inclure plus d'un calendrier par page. N'essayez pas d'inclure le calendrier via un shortcode dans une page qui affiche déjà le calendrier."
1230
+
1231
+ #: lib/import-export/ics.php:831
1232
+ msgid "Tickets: "
1233
+ msgstr ""
1234
+
1235
+ #: lib/html/element/setting/html.php:41
1236
+ msgid "Day view:"
1237
+ msgstr "Vue Journalière :"
1238
+
1239
+ #: lib/html/element/setting/html.php:42
1240
+ msgid "Agenda view:"
1241
+ msgstr "Vue Agenda :"
1242
+
1243
+ #: lib/html/element/setting/html.php:43
1244
+ msgid "Some Other view:"
1245
+ msgstr "Une autre vue :"
1246
+
1247
+ #: lib/html/element/setting/html.php:44
1248
+ msgid "Default view as per settings:"
1249
+ msgstr "Vue par défaut (spécifiée dans les options) :"
1250
+
1251
+ #: lib/html/element/setting/html.php:45
1252
+ msgid "General form:"
1253
+ msgstr "Formulaire général :"
1254
+
1255
+ #: lib/html/element/setting/html.php:46
1256
+ msgid "Optional."
1257
+ msgstr "Optionnel."
1258
+
1259
+ #: lib/html/element/setting/html.php:47
1260
+ msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
+ msgstr "Ajouter des options pour afficher un calendrier filtré. (Vous pouvez retrouver les identifiants des catégories ou des tags en inspectant l'URL de la page du calendrier filtré.) "
1262
+
1263
+ #: lib/html/element/setting/html.php:48
1264
+ msgid "Filter by event category name/slug:"
1265
+ msgstr "Filtrer selon le nom/slug des catégories de l’événement :"
1266
+
1267
+ #: lib/html/element/setting/html.php:49
1268
+ msgid "Holidays"
1269
+ msgstr "Vacances"
1270
+
1271
+ #: lib/html/element/setting/html.php:50
1272
+ msgid "Lunar Cycles"
1273
+ msgstr "Cycles lunaires"
1274
+
1275
+ #: lib/html/element/setting/html.php:51
1276
+ msgid "zodiac-date-ranges"
1277
+ msgstr "plages-de-dates-zodiaque"
1278
+
1279
+ #: lib/html/element/setting/html.php:52
1280
+ msgid "Filter by event category names/slugs (separate names by comma):"
1281
+ msgstr "Filtrer selon les nom/slugs des catégories de l'événement (séparés par des virgules) :"
1282
+
1283
+ #: lib/html/element/setting/html.php:53
1284
+ msgid "Filter by event category ID:"
1285
+ msgstr "Filtrer selon l'identifiant de la catégorie de l'événement :"
1286
+
1287
+ #: lib/html/element/setting/html.php:54
1288
+ msgid "Filter by event category IDs (separate IDs by comma):"
1289
+ msgstr "Filtrer selon les ids de catégories de l'événement (séparés par des virgules) :"
1290
+
1291
+ #: lib/html/element/setting/html.php:55
1292
+ msgid "Filter by event tag name/slug:"
1293
+ msgstr "Filtrer selon le nom/slug d'un mot-clé de l'événement :"
1294
+
1295
+ #: lib/html/element/setting/html.php:56
1296
+ msgid "tips-and-tricks"
1297
+ msgstr "trucs et astuces"
1298
+
1299
+ #: lib/html/element/setting/html.php:57
1300
+ msgid "creative writing"
1301
+ msgstr "rédaction"
1302
+
1303
+ #: lib/html/element/setting/html.php:58
1304
+ msgid "performing arts"
1305
+ msgstr "arts de la scène"
1306
+
1307
+ #: lib/html/element/setting/html.php:59
1308
+ msgid "Filter by event tag names/slugs (separate names by comma):"
1309
+ msgstr "Filtrer selon les noms/slugs des mots-clés de l'événement (séparés par des virgules) :"
1310
+
1311
+ #: lib/html/element/setting/html.php:60
1312
+ msgid "Filter by event tag ID:"
1313
+ msgstr "Filtrer selon l'id du mot-clé de l'événement :"
1314
+
1315
+ #: lib/html/element/setting/html.php:61
1316
+ msgid "Filter by event tag IDs (separate IDs by comma):"
1317
+ msgstr "Filtrer selon les ids des mots-clefs de l'événement (ids séparés par des virgules) :"
1318
+
1319
+ #: lib/exception/handler.php:395
1320
+ msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
+ msgstr "Le calendrier All-in-One a été désactivé à cause d'une erreur:"
1322
+
1323
+ #: lib/exception/handler.php:404
1324
+ msgid "Try reactivating plugin"
1325
+ msgstr "Essayer de réactiver le plugin"
1326
+
1327
+ #: lib/exception/handler.php:576
1328
+ msgid "Toggle error details"
1329
+ msgstr "Afficher les détails de l'erreur"
1330
+
1331
+ #: lib/exception/handler.php:577
1332
+ msgid "Error Details:"
1333
+ msgstr "Détails de l'erreur:"
1334
+
1335
+ #: lib/factory/html.php:133
1336
+ msgid "Choose a date using calendar"
1337
+ msgstr "Choisir une date en utilisant le calendrier"
1338
+
1339
+ #: lib/factory/html.php:278
1340
+ msgid "Tags (optional)"
1341
+ msgstr "Mots-clés (optionnel)"
1342
+
1343
+ #: lib/html/element/setting/cache.php:38
1344
+ msgid "Check again"
1345
+ msgstr "Vérifier de nouveau"
1346
+
1347
+ #: lib/html/element/setting/cache.php:39
1348
+ msgid "Templates cache is not writable"
1349
+ msgstr "Le cache des modèles n'est pas accessible en écriture"
1350
+
1351
+ #: lib/html/element/setting/cache.php:40
1352
+ msgid "Templates cache is writable"
1353
+ msgstr "Le cache des modèles est accessible en écriture"
1354
+
1355
+ #: lib/html/element/setting/cache.php:41
1356
+ msgid "Checking..."
1357
+ msgstr "Vérification en cours..."
1358
+
1359
+ #: lib/html/element/setting/cache.php:42
1360
+ msgid "Performance Report"
1361
+ msgstr "Rapport Performance"
1362
+
1363
+ #: lib/html/element/setting/calendar-page-selector.php:70
1364
+ msgid "View"
1365
+ msgstr "Vue"
1366
+
1367
+ #: lib/html/element/setting/calendar-page-selector.php:114
1368
+ msgid "- Auto-Create New Page -"
1369
+ msgstr "- Créer automatiquement une Nouvelle Page -"
1370
+
1371
+ #: lib/html/element/setting/enabled-views.php:22
1372
+ msgid "Enabled"
1373
+ msgstr "Activé"
1374
+
1375
+ #: lib/html/element/setting/enabled-views.php:23
1376
+ msgid "Default"
1377
+ msgstr "Par défaut"
1378
+
1379
+ #: lib/html/element/setting/enabled-views.php:24
1380
+ msgid "Desktop"
1381
+ msgstr "Bureau"
1382
+
1383
+ #: lib/html/element/setting/enabled-views.php:25
1384
+ msgid "Mobile"
1385
+ msgstr "Mobile"
1386
+
1387
+ #: lib/html/element/setting/html.php:37
1388
+ msgid "Embed the calendar using a shortcode"
1389
+ msgstr "Intégrer le calendrier à l'aide d'un shortcode"
1390
+
1391
+ #: lib/html/element/setting/html.php:38
1392
+ msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
+ msgstr "Insérez un de ces shortcodes dans le corps de votre page pour intégrer le calendrier dans n'importe quelle page WordPress :"
1394
+
1395
+ #: lib/html/element/setting/html.php:39
1396
+ msgid "Month view:"
1397
+ msgstr "Vue Mensuelle :"
1398
+
1399
+ #: lib/html/element/setting/html.php:40
1400
+ msgid "Week view:"
1401
+ msgstr "Vue Hebdomadaire :"
1402
+
1403
+ #: lib/css/frontend.php:239
1404
+ msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
+ msgstr "La compilation CSS a échouée car vous ne disposez plus d'assez d'espace mémoire (un minimum de %s est requis). Votre agenda ne va pas s'afficher ou fonctionner correctement sans CSS. Veuillez lire <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">cet article</a> pour apprendre comment augmenter votre limite de mémoire PHP."
1406
+
1407
+ #: lib/css/frontend.php:266
1408
+ msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
+ msgstr "Le fichier LESS a été compilé correctement mais il y a eu une erreur durant la sauvegarde du CSS généré vers la persistance."
1410
+
1411
+ #: lib/css/frontend.php:272
1412
+ msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
+ msgstr "<p><strong>Il y a eu une erreur lors de la compilation CSS.</strong> Le message retourné est: <em>%s</em></p>"
1414
+
1415
+ #: lib/css/frontend.php:300
1416
+ msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
+ msgstr "Les options du thème ont été remises à leur valeur par défaut avec succès. <a href='%s'>Visiter le site</a>"
1418
+
1419
+ #: lib/css/frontend.php:307
1420
+ msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
+ msgstr "Les options du thème ont été mises à jour avec succès. <a href='%s'>Visitez le site</a>"
1422
+
1423
+ #: lib/css/frontend.php:343
1424
+ msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
+ msgstr "Votre CSS est compilé à chaque requête, ce qui ralentit le fonctionnement de votre calendrier. L'erreur suivante est survenue: %s"
1426
+
1427
+ #: lib/database/applicator.php:182
1428
+ msgid "Date columns in table %s have different types."
1429
+ msgstr "Les colonnes de date du tableau %s sont de types différents."
1430
+
1431
+ #: lib/database/exception/database.php:19
1432
+ msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
+ msgstr "La mise à jour de la base de données a échouée. Veuillez vous assurer que l'utilisateur défini dans <em>wp-config.php</em> a les permissions de faire des changements (<strong>ALTER TABLE</strong>) à la base de données."
1434
+
1435
+ #: lib/database/exception/database.php:23
1436
+ msgid "Error encountered: %s"
1437
+ msgstr "Erreurs rencontrées : %s"
1438
+
1439
+ #: lib/date/system.php:202
1440
+ msgid "GMT%+d:%02d"
1441
+ msgstr "GMT%+d:%02d"
1442
+
1443
+ #: lib/date/timezone.php:362
1444
+ msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
+ msgstr "Veuillez sélectionner le fuseau horaire de site dans le menu déroulant %s <em>Fuseau horaire</em>."
1446
+
1447
+ #: lib/date/timezone.php:397
1448
+ msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
+ msgstr "Le fuseau horaire \"UTC%+d\" n'est pas reconnu. Veuillez %suse valid%s nom de fuseau horaire, jusque là les événements seront créés dans le fuseau horaire UTC."
1450
+
1451
+ #: lib/date/timezone.php:421
1452
+ msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
+ msgstr "Le fuseau horaire \"UTC%+d\" sélectionné sera traité comme %s."
1454
+
1455
+ #: lib/date/timezone.php:490
1456
+ msgid "Manual Offset"
1457
+ msgstr "Décalage manuel"
1458
+
1459
+ #: lib/date/timezone.php:493
1460
+ msgid "Choose your timezone"
1461
+ msgstr "Choisissez votre fuseau horaire"
1462
+
1463
+ #: lib/environment/check.php:55
1464
+ msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
+ msgstr "Sélectionnez une option dans la liste déroulante de la <strong>page du calendrier</strong>."
1466
+
1467
+ #: lib/environment/check.php:68
1468
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
+ msgstr "Le plugin est installé, mais n'a pas été configuré. <a href=\"%s\">Cliquez ici pour le faire maintenant &raquo;</a>"
1470
+
1471
+ #: lib/environment/check.php:78
1472
+ msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
+ msgstr "Le plugin est installé, mais n'a pas été configuré. Connectez-vous en tant qu'administrateur pour le mettre en place."
1474
+
1475
+ #: lib/environment/check.php:196
1476
+ msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
+ msgstr "L'add-on <strong>%s</strong> doit être mis à jour sur la dernière version %s pour maintenir la compatibilité avec l'agenda."
1478
+
1479
+ #: lib/environment/check.php:197
1480
+ msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
+ msgstr "Si vous ne visualisez pas les notifications de mises à jour ci-dessous, assurez vous que vous avez correctement <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">renseigné votre clé de licence</a>. Sinon, rendez-vous sur <a href=\"https://time.ly/your-account/\">votre compte</a> pour télécharger la dernière version de cet/ces add-on/s et <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">effectuez la mise à jour manuellement</a>. Veuillez <a href=\"https://time.ly/forums/\">publier sur le forum</a> si vous rencontrez des difficultés. Nous nous ferons un plaisir de vous aider."
1482
+
1483
+ #: lib/exception/handler.php:176
1484
+ msgid "The add-on \"%s\" has been disabled due to an error:"
1485
+ msgstr "L'add-on \"%s\" a été désactivé suite à une erreur:"
1486
+
1487
+ #: lib/calendar-feed/ics.php:367
1488
+ msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
+ msgstr "Voulez-vous conserver les événements importés depuis le calendrier ou les supprimer ?"
1490
+
1491
+ #: lib/calendar-feed/ics.php:373
1492
+ msgid "Removing ICS Feed"
1493
+ msgstr "Supprimer le flux ICS"
1494
+
1495
+ #: lib/calendar-feed/ics.php:376
1496
+ msgid "Keep Events"
1497
+ msgstr "Garder Événements"
1498
+
1499
+ #: lib/calendar-feed/ics.php:379
1500
+ msgid "Remove Events"
1501
+ msgstr "Supprimer Événements"
1502
+
1503
+ #: lib/calendar-feed/ics.php:519
1504
+ msgid "Oh, submission was not accepted."
1505
+ msgstr ""
1506
+
1507
+ #: lib/calendar-feed/ics.php:699
1508
+ msgid "Deleted %d events"
1509
+ msgstr "%d événements supprimés"
1510
+
1511
+ #: lib/calendar-feed/ics.php:735
1512
+ msgid "Feed deleted"
1513
+ msgstr "Flux supprimé"
1514
+
1515
+ #: lib/captcha/provider/nocaptcha.php:31
1516
+ msgid "noCAPTCHA public key:"
1517
+ msgstr "Clé publique noCAPTCHA:"
1518
+
1519
+ #: lib/captcha/provider/nocaptcha.php:47
1520
+ msgid "noCAPTCHA private key:"
1521
+ msgstr "Clé privée noCAPTCHA:"
1522
+
1523
+ #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
+ msgid "Please try verifying you are human again."
1525
+ msgstr "Veuillez certifier que vous êtes un humain une nouvelle fois."
1526
+
1527
+ #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
+ msgid "There was an error reading the human verification data. Please try again."
1529
+ msgstr "Une erreur est survenue lors de la certification que vous êtes un humain. Veuillez recommencer."
1530
+
1531
+ #: lib/captcha/provider/recaptcha.php:32
1532
+ msgid "reCAPTCHA public key:"
1533
+ msgstr "Clé publique reCAPTCHA:"
1534
+
1535
+ #: lib/captcha/provider/recaptcha.php:48
1536
+ msgid "reCAPTCHA private key:"
1537
+ msgstr "Clé privée reCAPTCHA:"
1538
+
1539
+ #: lib/captcha/provider/recaptcha.php:66
1540
+ msgid "Human verification"
1541
+ msgstr "Vérification que vous êtes un humain"
1542
+
1543
+ #: lib/captcha/provider/recaptcha.php:67
1544
+ msgid "Loading reCAPTCHA..."
1545
+ msgstr "Chargement du re-CAPTCHA..."
1546
+
1547
+ #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
+ #: lib/clone/renderer-helper.php:45
1549
+ msgid "Clone"
1550
+ msgstr "Cloner"
1551
+
1552
+ #: lib/clone/renderer-helper.php:44
1553
+ msgid "Make new copy of event"
1554
+ msgstr "Faire une nouvelle copie de l'événement"
1555
+
1556
+ #: lib/clone/renderer-helper.php:47
1557
+ msgid "Copy to a new draft"
1558
+ msgstr "Copier vers un nouveau brouillon"
1559
+
1560
+ #: lib/clone/renderer-helper.php:48
1561
+ msgid "Clone to Draft"
1562
+ msgstr "Cloner vers Brouillon"
1563
+
1564
+ #: lib/command/clone.php:173
1565
+ msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
+ msgstr "<p>L'événement <strong>%s</strong> a été cloné avec succès. <a href=\"%s\">Modifier l'événement cloné</a></p>"
1567
+
1568
+ #: lib/compatibility/check.php:101
1569
+ msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
+ msgstr "Vous avez activé le rendu client et vous utilisez un thème agenda personnalisé. Si votre thème ne supporte pas le rendu client, votre agenda peut ne pas fonctionner correctement."
1571
+
1572
+ #: app/view/event/single.php:123
1573
+ msgid "Tickets:"
1574
+ msgstr ""
1575
+
1576
+ #: app/view/event/single.php:124
1577
+ msgid "Free"
1578
+ msgstr "Gratuit"
1579
+
1580
+ #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
+ msgid "Buy Tickets"
1582
+ msgstr "Acheter des tickets"
1583
+
1584
+ #: app/view/event/single.php:150
1585
+ msgid "Edit this occurrence (%s)"
1586
+ msgstr "Modifier cette occurrence (%s)"
1587
+
1588
+ #: app/view/event/single.php:195
1589
+ msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
+ msgstr "Cette publication a été copiée depuis le <a href=\"%s\" title=\"Flux iCalendar\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i>flux agenda</a> d'un autre site."
1591
+
1592
+ #: app/view/event/single.php:206
1593
+ msgid "View original"
1594
+ msgstr "Voir l'original"
1595
+
1596
+ #: app/view/event/taxonomy.php:113
1597
+ msgid "Category image"
1598
+ msgstr "Image de catégorie"
1599
+
1600
+ #: app/view/event/ticket.php:24
1601
+ msgid "Register Now"
1602
+ msgstr "S'inscrire maintenant"
1603
+
1604
+ #: app/view/event/ticket.php:82
1605
+ msgid "Event website"
1606
+ msgstr "Site web de l'évènement"
1607
+
1608
+ #: app/view/event/time.php:84 app/view/event/time.php:118
1609
+ msgctxt "Event time separator"
1610
+ msgid " @ "
1611
+ msgstr " @ "
1612
+
1613
+ #: app/view/event/time.php:100
1614
+ msgctxt "Event start/end separator"
1615
+ msgid " – "
1616
+ msgstr " – "
1617
+
1618
+ #: app/view/event/time.php:166
1619
+ msgid ", and "
1620
+ msgstr ", et"
1621
+
1622
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
+ msgid "Excludes: "
1624
+ msgstr ""
1625
+
1626
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
+ msgid "Repeats"
1628
+ msgstr ""
1629
+
1630
+ #: lib/calendar-feed/ics.php:38
1631
+ msgid "ICS"
1632
+ msgstr "ICS"
1633
+
1634
+ #: lib/calendar-feed/ics.php:69
1635
+ msgid "Another import process in progress. Please try again later."
1636
+ msgstr "Un autre processus d'importation est en cours. Merci de réessayer plus tard."
1637
+
1638
+ #: lib/calendar-feed/ics.php:174
1639
+ msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
+ msgstr "Une erreur système bloque le calendrier. Un élément empêche le plugin de fonctionner correctement. Ce message devrait fournir un indice : %s"
1641
+
1642
+ #: lib/calendar-feed/ics.php:181
1643
+ msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
+ msgstr "Le calendrier n'a pas pu être activé. Si votre URL est valide et contient une ressource iCalendar, la résolution d'une erreur temporaire du serveur devrait résoudre ce problème."
1645
+
1646
+ #: lib/calendar-feed/ics.php:195
1647
+ msgid "Imported %s event"
1648
+ msgid_plural "Imported %s events"
1649
+ msgstr[0] "%s événement importé"
1650
+ msgstr[1] "%s événements importés"
1651
+
1652
+ #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
+ msgid "Invalid ICS feed ID"
1654
+ msgstr "Identifiant de flux ICS invalide"
1655
+
1656
+ #: lib/calendar-feed/ics.php:350
1657
+ msgid "Categories (optional)"
1658
+ msgstr "Catégories (optionnel)"
1659
+
1660
+ #: app/view/event/content.php:33 app/view/event/single.php:119
1661
+ msgid "When:"
1662
+ msgstr "Quand :"
1663
+
1664
+ #: app/view/event/content.php:34 app/view/event/single.php:120
1665
+ msgid "Where:"
1666
+ msgstr "Où :"
1667
+
1668
+ #: app/view/event/content.php:125
1669
+ msgid "Calendar"
1670
+ msgstr ""
1671
+
1672
+ #: app/view/event/content.php:126
1673
+ msgid "View all events"
1674
+ msgstr "Voir tous les événements"
1675
+
1676
+ #: app/view/event/location.php:96
1677
+ msgid "Click to view map"
1678
+ msgstr "Cliquer pour voir la carte"
1679
+
1680
+ #: app/view/event/location.php:97
1681
+ msgid "View Full-Size Map"
1682
+ msgstr "Voir la carte en plein-écran"
1683
+
1684
+ #: app/view/event/post.php:29
1685
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1686
+ msgstr "Événement mis à jour. <a href=\"%s\">Voir l'évènement</a>"
1687
+
1688
+ #: app/view/event/post.php:32
1689
+ msgid "Custom field updated."
1690
+ msgstr "Champ personnalisé mis à jour."
1691
+
1692
+ #: app/view/event/post.php:33
1693
+ msgid "Custom field deleted."
1694
+ msgstr "Champ personnalisé supprimé."
1695
+
1696
+ #: app/view/event/post.php:34
1697
+ msgid "Event updated."
1698
+ msgstr "Événement mis à jour."
1699
+
1700
+ #. translators: %s: date and time of the revision
1701
+ #: app/view/event/post.php:38
1702
+ msgid "Event restored to revision from %s"
1703
+ msgstr "Événement restauré à la version %s"
1704
+
1705
+ #: app/view/event/post.php:43
1706
+ msgid "Event published. <a href=\"%s\">View event</a>"
1707
+ msgstr "Événement publié. <a href=\"%s\">Voir événement</a>"
1708
+
1709
+ #: app/view/event/post.php:46
1710
+ msgid "Event saved."
1711
+ msgstr "Événement sauvegardé."
1712
+
1713
+ #: app/view/event/post.php:48
1714
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
+ msgstr "Événement soumis. <a target=\"_blank\" href=\"%s\">Prévisualiser l'événement</a>"
1716
+
1717
+ #: app/view/event/post.php:52
1718
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
+ msgstr "Événement planifié pour:<strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Prévisualiser l'événement</a>"
1720
+
1721
+ #. translators: Publish box date format, see http:php.net/date
1722
+ #: app/view/event/post.php:54
1723
+ msgid "M j, Y @ G:i"
1724
+ msgstr "j M Y @ G:i"
1725
+
1726
+ #: app/view/event/post.php:58
1727
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
+ msgstr "Brouillon d'événement mis à jour. <a target=\"_blank\" href=\"%s\">Prévisualiser l'événement</a>"
1729
+
1730
+ #: app/view/event/single.php:78
1731
+ msgid "Event was created in the %s time zone"
1732
+ msgstr "L'évènement a été créé dans la zone de temps %s"
1733
+
1734
+ #: app/view/event/single.php:114
1735
+ msgid "Add to Calendar"
1736
+ msgstr "Ajouter au Calendrier"
1737
+
1738
+ #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
+ msgid "Cost:"
1740
+ msgstr "Coût :"
1741
+
1742
+ #: app/view/event/single.php:122
1743
+ msgid "Contact:"
1744
+ msgstr "Contact :"
1745
+
1746
+ #: app/view/calendar/view/agenda.php:169
1747
+ msgid "Categories:"
1748
+ msgstr "Catégories :"
1749
+
1750
+ #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
+ #: public/admin/themes.php:29
1752
+ msgid "Tags:"
1753
+ msgstr "Mots-clés :"
1754
+
1755
+ #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
+ #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
+ #: app/view/calendar/widget.php:374
1758
+ msgid "@ %s"
1759
+ msgstr "@ %s"
1760
+
1761
+ #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
+ msgid "g a"
1763
+ msgstr "H"
1764
+
1765
+ #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
+ msgid "Reveal full day"
1767
+ msgstr "Montrer la journée entière"
1768
+
1769
+ #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
+ msgid "All-day"
1771
+ msgstr "Toute la journée"
1772
+
1773
+ #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
+ msgid "Now:"
1775
+ msgstr "Maintenant :"
1776
+
1777
+ #: app/view/calendar/view/week.php:67
1778
+ msgid "Week of %s"
1779
+ msgstr "Semaine du %s"
1780
+
1781
+ #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
+ msgid "Upcoming Events"
1783
+ msgstr "Événements à venir"
1784
+
1785
+ #: app/view/calendar/widget.php:38
1786
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
+ msgstr "All-in-One Event Calendar : Listes des évènements à venir dans la vue Agenda"
1788
+
1789
+ #: app/view/calendar/widget.php:80
1790
+ msgid "Choose how to limit the upcoming events"
1791
+ msgstr "Choisir comment limiter les évènements à venir"
1792
+
1793
+ #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
+ msgid "Events"
1795
+ msgstr "Événements"
1796
+
1797
+ #: app/view/calendar/widget.php:93
1798
+ msgid "Days"
1799
+ msgstr "Jours"
1800
+
1801
+ #: app/view/calendar/widget.php:106
1802
+ msgid "Number of events to show"
1803
+ msgstr "Numéro d'évènements à montrer"
1804
+
1805
+ #: app/view/calendar/widget.php:115
1806
+ msgid "Number of days to show"
1807
+ msgstr "Nombre de jours à montrer"
1808
+
1809
+ #: app/view/calendar/widget.php:124
1810
+ msgid "Show events filtered for the following tags/categories"
1811
+ msgstr "Choisir les évènements filtrés pour les mots clés/catégories suivantes"
1812
+
1813
+ #: app/view/calendar/widget.php:141
1814
+ msgid "Show the subscribe button in the widget"
1815
+ msgstr "Montrer les évènements filtrés pour les mots clés/catégories suivants"
1816
+
1817
+ #: app/view/calendar/widget.php:370
1818
+ msgid "There are no upcoming events."
1819
+ msgstr "Il n'y a aucun événement à venir."
1820
+
1821
+ #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
+ msgid "all-day"
1823
+ msgstr "Journée entière"
1824
+
1825
+ #: app/view/calendar/widget.php:372
1826
+ msgid "View Calendar"
1827
+ msgstr "Voir le calendrier"
1828
+
1829
+ #: app/view/calendar/widget.php:375
1830
+ msgid "Add"
1831
+ msgstr "Ajouter"
1832
+
1833
+ #: app/view/calendar/page.php:260
1834
+ msgid "Subscribe to filtered calendar"
1835
+ msgstr "S'abonner au calendrier filtré"
1836
+
1837
+ #: app/view/calendar/page.php:261
1838
+ msgid "Subscribe"
1839
+ msgstr "S'abonner"
1840
+
1841
+ #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
+ msgid "Get a Timely Calendar"
1843
+ msgstr "Obtenir un calendrier Timely"
1844
+
1845
+ #: app/view/calendar/subscribe-button.php:22
1846
+ msgid "Add to Timely Calendar"
1847
+ msgstr "Ajouter au Calendrier Timely"
1848
+
1849
+ #: app/view/calendar/subscribe-button.php:23
1850
+ msgid "Add to Google"
1851
+ msgstr "Ajouter à Google"
1852
+
1853
+ #: app/view/calendar/subscribe-button.php:24
1854
+ msgid "Add to Outlook"
1855
+ msgstr "Ajouter à Outlook"
1856
+
1857
+ #: app/view/calendar/subscribe-button.php:25
1858
+ msgid "Add to Apple Calendar"
1859
+ msgstr "Ajouter à Apple Calendrier"
1860
+
1861
+ #: app/view/calendar/subscribe-button.php:26
1862
+ msgid "Add to other calendar"
1863
+ msgstr "Ajouter à un autre calendrier"
1864
+
1865
+ #: app/view/calendar/subscribe-button.php:29
1866
+ msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
+ msgstr "Copiez cette URL pour votre propre calendrier Timely ou cliquez pour ajouter à votre calendrier au format texte enrichi"
1868
+
1869
+ #: app/view/calendar/subscribe-button.php:30
1870
+ msgid "Subscribe to this calendar in your Google Calendar"
1871
+ msgstr "S’abonner à ce calendrier dans votre calendrier Google"
1872
+
1873
+ #: app/view/calendar/subscribe-button.php:31
1874
+ msgid "Subscribe to this calendar in MS Outlook"
1875
+ msgstr "S’abonner à ce calendrier dans MS Outlook"
1876
+
1877
+ #: app/view/calendar/subscribe-button.php:32
1878
+ msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
+ msgstr "S’abonner à ce calendrier dans Apple Calendrier/iCal"
1880
+
1881
+ #: app/view/calendar/subscribe-button.php:33
1882
+ msgid "Subscribe to this calendar in another plain-text calendar"
1883
+ msgstr "S'abonner à ce calendrier dans un autre calendrier en texte brut"
1884
+
1885
+ #: app/view/calendar/taxonomy.php:97
1886
+ msgid "Clear category filter"
1887
+ msgstr "Réinitialiser le filtre de catégorie"
1888
+
1889
+ #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
+ #: lib/html/element/setting/tags-categories.php:47
1891
+ msgid "Categories"
1892
+ msgstr "Catégories"
1893
+
1894
+ #: app/view/calendar/taxonomy.php:99
1895
+ msgid "Clear tag filter"
1896
+ msgstr "Réinitialiser le filtre de mots-clefs"
1897
+
1898
+ #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
+ #: lib/html/element/setting/tags-categories.php:39
1900
+ msgid "Tags"
1901
+ msgstr "Mots-clés"
1902
+
1903
+ #: app/view/calendar/view/agenda.php:142
1904
+ msgid "Collapse All"
1905
+ msgstr "Tout réduire"
1906
+
1907
+ #: app/view/calendar/view/agenda.php:143
1908
+ msgid "Expand All"
1909
+ msgstr "Tout ouvrir"
1910
+
1911
+ #: app/view/calendar/view/agenda.php:166
1912
+ msgid "There are no upcoming events to display at this time."
1913
+ msgstr "Il n'y a aucun événement à venir pour le moment."
1914
+
1915
+ #: app/view/calendar/view/agenda.php:168
1916
+ msgid "Read more"
1917
+ msgstr "Lire la suite"
1918
+
1919
+ #: app/view/admin/tickets.php:86
1920
+ msgid "Sales"
1921
+ msgstr ""
1922
+
1923
+ #: app/view/admin/tickets.php:87
1924
+ msgid "How do you want the tickets revenue to be sent to you?"
1925
+ msgstr ""
1926
+
1927
+ #: app/view/admin/tickets.php:88
1928
+ msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
+ msgstr ""
1930
+
1931
+ #: app/view/admin/tickets.php:91
1932
+ msgid "Cheque"
1933
+ msgstr ""
1934
+
1935
+ #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
+ msgid "Paypal"
1937
+ msgstr "Paypal"
1938
+
1939
+ #: app/view/admin/tickets.php:94
1940
+ msgid "Save Changes"
1941
+ msgstr ""
1942
+
1943
+ #: app/view/admin/tickets.php:95
1944
+ msgid "Date"
1945
+ msgstr ""
1946
+
1947
+ #: app/view/admin/tickets.php:96
1948
+ msgid "Event"
1949
+ msgstr ""
1950
+
1951
+ #: app/view/admin/tickets.php:97
1952
+ msgid "Purchaser"
1953
+ msgstr ""
1954
+
1955
+ #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
+ #: public/admin/box_event_cost.php:35
1957
+ msgid "Tickets"
1958
+ msgstr "Tickets"
1959
+
1960
+ #: app/view/admin/tickets.php:101
1961
+ msgid "Total"
1962
+ msgstr ""
1963
+
1964
+ #: app/view/admin/tickets.php:102
1965
+ msgid "Sign Out"
1966
+ msgstr ""
1967
+
1968
+ #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
+ #: app/view/admin/widget-creator.php:47
1970
+ msgid "Widget Creator"
1971
+ msgstr "Générateur de Widget"
1972
+
1973
+ #: app/view/admin/widget-creator.php:74
1974
+ msgctxt "meta box"
1975
+ msgid "Widget Creator"
1976
+ msgstr "Générateur de Widget"
1977
+
1978
+ #: app/view/admin/widget-creator.php:131
1979
+ msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
+ msgstr "Utilisez cet outil pour générer des extraits de code que vous pouvez ajouter à <strong>un site externe</strong> afin d'intégrer de nouveaux calendriers et widgets."
1981
+
1982
+ #: app/view/admin/widget-creator.php:132
1983
+ msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
+ msgstr "<h4>Attention!</h4><p>Ces widgets sont destinés à être affichés sur des <strong>sites externes seulement</strong> et peuvent engendrer des conflits si employés sur un même site Wordpress.</p>"
1985
+
1986
+ #: app/view/admin/widget-creator.php:134
1987
+ msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
+ msgstr "<p>Utilisez <a href=\"%s\"><strong>Apparence</strong> &gt; <strong>Widgets</strong></a> pour ajouter un widget événement à votre site WordPress comme vous le feriez pour n'importe quel autre widget, ou utilisez <a href=\"%s\" target=\"_blank\">shortcodes</a> pour intégrer l'agenda complet.</strong></p>"
1989
+
1990
+ #: app/view/admin/widget-creator.php:140
1991
+ msgid "Paste this code onto your site:"
1992
+ msgstr "Coller ce code dans votre site :"
1993
+
1994
+ #: app/view/admin/widget-creator.php:141
1995
+ msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
+ msgstr "Ce code sera mis à jour pour appliquer les changements dans les paramètres. Changer les paramètres n'affecteront pas les widgets précédents"
1997
+
1998
+ #: app/view/calendar/page.php:54
1999
+ msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
+ msgstr "Il y a eu une erreur durant le chargement du calendrier. Veuillez contacter l'administrateur du site et l'informer de configurer les vues du calendrier."
2001
+
2002
+ #: app/view/calendar/page.php:74
2003
+ msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
+ msgstr "Le calendrier était incapable d'initialiser la vue %s et le paramétrage est réinitialisé. Cocher si vous avez installé la dernière version du calendrier add-ons."
2005
+
2006
+ #: app/view/admin/settings.php:193
2007
+ msgid "Phone Number:"
2008
+ msgstr ""
2009
+
2010
+ #: app/view/admin/settings.php:194
2011
+ msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
+ msgstr ""
2013
+
2014
+ #: app/view/admin/settings.php:197
2015
+ msgid "Sign Up"
2016
+ msgstr ""
2017
+
2018
+ #: app/view/admin/settings.php:198
2019
+ msgid "Sign In"
2020
+ msgstr ""
2021
+
2022
+ #: app/view/admin/settings.php:212
2023
+ msgid "Save Settings"
2024
+ msgstr "Sauvegarder les Paramètres"
2025
+
2026
+ #: app/view/admin/settings.php:219
2027
+ msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
+ msgstr "Si le formulaire ci-dessous ne fonctionne pas, veuillez suivre <a href=\"%s\">ce lien</a>."
2029
+
2030
+ #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
+ msgid "Theme Options"
2032
+ msgstr "Options du Thème"
2033
+
2034
+ #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
+ msgid "Calendar Theme Options"
2036
+ msgstr "Options du Thème de Calendrier"
2037
+
2038
+ #: app/view/admin/theme-options.php:79
2039
+ msgctxt "meta box"
2040
+ msgid "Calendar Theme Options"
2041
+ msgstr "Options du Thème de Calendrier"
2042
+
2043
+ #: app/view/admin/theme-options.php:133
2044
+ msgid "General"
2045
+ msgstr "Général"
2046
+
2047
+ #: app/view/admin/theme-options.php:136
2048
+ msgid "Tables"
2049
+ msgstr "Tableaux"
2050
+
2051
+ #: app/view/admin/theme-options.php:139
2052
+ msgid "Buttons"
2053
+ msgstr "Boutons"
2054
+
2055
+ #: app/view/admin/theme-options.php:142
2056
+ msgid "Forms"
2057
+ msgstr "Formulaires"
2058
+
2059
+ #: app/view/admin/theme-options.php:145
2060
+ msgid "Calendar general"
2061
+ msgstr "Calendrier général"
2062
+
2063
+ #: app/view/admin/theme-options.php:148
2064
+ msgid "Month/week/day view"
2065
+ msgstr "Vue mois/semaine/jour"
2066
+
2067
+ #: app/view/admin/theme-options.php:151
2068
+ msgid "Agenda view"
2069
+ msgstr "Vue Agenda"
2070
+
2071
+ #: app/view/admin/theme-options.php:169
2072
+ msgid "Save Options"
2073
+ msgstr "Sauvegarder les Options"
2074
+
2075
+ #: app/view/admin/theme-options.php:177
2076
+ msgid "Reset to Defaults"
2077
+ msgstr "Remettre par défaut"
2078
+
2079
+ #: app/view/admin/theme-switching.php:31
2080
+ msgid "All-in-One Event Calendar: Themes"
2081
+ msgstr "All-in-One Event Calendar : Thèmes"
2082
+
2083
+ #: app/view/admin/tickets.php:36
2084
+ msgid "Ticketing"
2085
+ msgstr ""
2086
+
2087
+ #: app/view/admin/tickets.php:37
2088
+ msgid "Ticketing<sup>beta</sup>"
2089
+ msgstr ""
2090
+
2091
+ #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
+ msgid "Time.ly Ticketing<sup>beta</sup>"
2093
+ msgstr ""
2094
+
2095
+ #: app/view/admin/settings.php:98
2096
+ msgctxt "meta box"
2097
+ msgid "Timely"
2098
+ msgstr "Timely"
2099
+
2100
+ #: app/view/admin/settings.php:140
2101
+ msgid "Viewing Events"
2102
+ msgstr "Affichage des événements"
2103
+
2104
+ #: app/view/admin/settings.php:143
2105
+ msgid "Adding/Editing Events"
2106
+ msgstr "Ajout/Modification d'événements"
2107
+
2108
+ #: app/view/admin/settings.php:146
2109
+ msgid "Advanced"
2110
+ msgstr "Avancé"
2111
+
2112
+ #: app/view/admin/settings.php:148
2113
+ msgid "Advanced Settings"
2114
+ msgstr "Paramètres Avancés"
2115
+
2116
+ #: app/view/admin/settings.php:149
2117
+ msgid "Shortcodes"
2118
+ msgstr "Shortcodes"
2119
+
2120
+ #: app/view/admin/settings.php:150
2121
+ msgid "Email Templates"
2122
+ msgstr "Modèles de Courriel"
2123
+
2124
+ #: app/view/admin/settings.php:151
2125
+ msgid "External Services"
2126
+ msgstr "Services Externes"
2127
+
2128
+ #: app/view/admin/settings.php:152
2129
+ msgid "Cache Report"
2130
+ msgstr "Rapport de Cache"
2131
+
2132
+ #: app/view/admin/settings.php:171
2133
+ msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
+ msgstr ""
2135
+
2136
+ #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
+ #: public/admin/box_ask_customer_review.php:112
2138
+ #: public/admin/box_ask_customer_review.php:126
2139
+ #: public/admin/box_ask_customer_review.php:140
2140
+ #: public/admin/box_ask_customer_review.php:158
2141
+ #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
+ msgid "This field is required."
2143
+ msgstr ""
2144
+
2145
+ #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
+ msgid "Register"
2147
+ msgstr "Inscription"
2148
+
2149
+ #: app/view/admin/settings.php:184
2150
+ msgid "Sign in"
2151
+ msgstr ""
2152
+
2153
+ #: app/view/admin/settings.php:185
2154
+ msgid "You are successfully signed in to <b>Timely Network</b>."
2155
+ msgstr ""
2156
+
2157
+ #: app/view/admin/settings.php:186
2158
+ msgid "Sign out"
2159
+ msgstr ""
2160
+
2161
+ #: app/view/admin/settings.php:187
2162
+ msgid "Hide form"
2163
+ msgstr ""
2164
+
2165
+ #: app/view/admin/settings.php:188
2166
+ msgid "Show form"
2167
+ msgstr ""
2168
+
2169
+ #: app/view/admin/settings.php:189
2170
+ msgid "Full Name:"
2171
+ msgstr ""
2172
+
2173
+ #: app/view/admin/settings.php:190
2174
+ msgid "Email:"
2175
+ msgstr "Email:"
2176
+
2177
+ #: app/view/admin/settings.php:191
2178
+ msgid "Password:"
2179
+ msgstr ""
2180
+
2181
+ #: app/view/admin/settings.php:192
2182
+ msgid "Confirm Password:"
2183
+ msgstr ""
2184
+
2185
+ #: app/view/admin/get-repeat-box.php:483
2186
+ msgid "fourth"
2187
+ msgstr "quatrième"
2188
+
2189
+ #: app/view/admin/get-repeat-box.php:495
2190
+ msgid "Sunday"
2191
+ msgstr "Dimanche"
2192
+
2193
+ #: app/view/admin/get-repeat-box.php:496
2194
+ msgid "Monday"
2195
+ msgstr "Lundi"
2196
+
2197
+ #: app/view/admin/get-repeat-box.php:497
2198
+ msgid "Tuesday"
2199
+ msgstr "Mardi"
2200
+
2201
+ #: app/view/admin/get-repeat-box.php:498
2202
+ msgid "Wednesday"
2203
+ msgstr "Mercredi"
2204
+
2205
+ #: app/view/admin/get-repeat-box.php:499
2206
+ msgid "Thursday"
2207
+ msgstr "Jeudi"
2208
+
2209
+ #: app/view/admin/get-repeat-box.php:500
2210
+ msgid "Friday"
2211
+ msgstr "Vendredi"
2212
+
2213
+ #: app/view/admin/get-repeat-box.php:501
2214
+ msgid "Saturday"
2215
+ msgstr "Samedi"
2216
+
2217
+ #: app/view/admin/get-repeat-box.php:503
2218
+ msgid "day"
2219
+ msgstr "jour"
2220
+
2221
+ #: app/view/admin/get-repeat-box.php:504
2222
+ msgid "weekday"
2223
+ msgstr "jour de la semaine"
2224
+
2225
+ #: app/view/admin/get-repeat-box.php:505
2226
+ msgid "weekend day"
2227
+ msgstr "jour de fin de semaine"
2228
+
2229
+ #: app/view/admin/get-repeat-box.php:571
2230
+ msgid "year(s)"
2231
+ msgstr "année(s)"
2232
+
2233
+ #: app/view/admin/nav.php:22
2234
+ msgid "<a href=\"%s\">Settings</a>"
2235
+ msgstr "<a href=\"%s\">Paramètres</a>"
2236
+
2237
+ #: app/view/admin/nav.php:28
2238
+ msgid "<a href=\"%s\">Check for updates</a>"
2239
+ msgstr ""
2240
+
2241
+ #: app/view/admin/organize.php:100
2242
+ msgid "Organize Events"
2243
+ msgstr "Organiser les événements"
2244
+
2245
+ #: app/view/admin/settings.php:30
2246
+ msgid "All-in-One Event Calendar: Settings"
2247
+ msgstr "All-in-One Event Calendar : Paramètres"
2248
+
2249
+ #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
+ #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
+ msgid "Settings"
2252
+ msgstr "Paramètres"
2253
+
2254
+ #: app/view/admin/settings.php:89
2255
+ msgctxt "meta box"
2256
+ msgid "General Settings"
2257
+ msgstr "Paramètres Généraux"
2258
+
2259
+ #: app/view/admin/get-repeat-box.php:480
2260
+ msgid "first"
2261
+ msgstr "premier"
2262
+
2263
+ #: app/view/admin/get-repeat-box.php:481
2264
+ msgid "second"
2265
+ msgstr "deuxième"
2266
+
2267
+ #: app/view/admin/get-repeat-box.php:482
2268
+ msgid "third"
2269
+ msgstr "troisième"
2270
+
2271
+ #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
+ msgid "Import Feeds"
2273
+ msgstr ""
2274
+
2275
+ #: app/view/admin/calendar-feeds.php:48
2276
+ msgctxt "meta box"
2277
+ msgid "Feed Subscriptions"
2278
+ msgstr "Souscriptions Flux"
2279
+
2280
+ #: app/view/admin/calendar-feeds.php:65
2281
+ msgid "All-in-One Event Calendar: Import Feeds"
2282
+ msgstr ""
2283
+
2284
+ #: app/view/admin/event-category.php:30
2285
+ msgid "Color"
2286
+ msgstr "Couleur"
2287
+
2288
+ #: app/view/admin/event-category.php:32
2289
+ msgid "Image"
2290
+ msgstr "Image"
2291
+
2292
+ #: app/view/admin/event-category.php:155
2293
+ msgid "Category Color"
2294
+ msgstr "Couleur Catégorie"
2295
+
2296
+ #: app/view/admin/event-category.php:156
2297
+ msgid "Events in this category will be identified by this color"
2298
+ msgstr "Les événements de cette catégorie seront identifiés par cette couleur"
2299
+
2300
+ #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
+ msgid "Category Image"
2302
+ msgstr "Image Catégorie"
2303
+
2304
+ #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
+ msgid "Add Image"
2306
+ msgstr "Ajouter Image"
2307
+
2308
+ #: app/view/admin/event-category.php:195
2309
+ msgid "Remove Image"
2310
+ msgstr "Supprimer Image"
2311
+
2312
+ #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
+ msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
+ msgstr "Assigner une image optionnelle à la catégorie. Taille recommandée: carrée, minimum 400&times;400 pixels."
2315
+
2316
+ #: app/view/admin/get-repeat-box.php:94
2317
+ msgid "times"
2318
+ msgstr "fois"
2319
+
2320
+ #: app/view/admin/get-repeat-box.php:164
2321
+ msgid "Recurrence rule cannot be empty."
2322
+ msgstr "La règle de récurrence ne peut être vide."
2323
+
2324
+ #: app/view/admin/get-repeat-box.php:182
2325
+ msgid "Recurrence rule was not provided."
2326
+ msgstr "La règle de récurrence n'a pas été fournie."
2327
+
2328
+ #: app/view/admin/get-repeat-box.php:209
2329
+ msgid "Never"
2330
+ msgstr "Jamais"
2331
+
2332
+ #: app/view/admin/get-repeat-box.php:210
2333
+ msgid "After"
2334
+ msgstr "Après"
2335
+
2336
+ #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
+ msgid "On date"
2338
+ msgstr "A la date"
2339
+
2340
+ #: app/view/admin/get-repeat-box.php:247
2341
+ msgid "day(s)"
2342
+ msgstr "jour(s)"
2343
+
2344
+ #: app/view/admin/get-repeat-box.php:330
2345
+ msgid "week(s)"
2346
+ msgstr "semaine(s)"
2347
+
2348
+ #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
+ #: lib/recurrence/rule.php:298
2350
+ msgid "last"
2351
+ msgstr "dernier"
2352
+
2353
+ #: app/view/admin/get-repeat-box.php:426
2354
+ msgid "month(s)"
2355
+ msgstr "mois"
2356
+
2357
+ #: app/model/settings.php:929
2358
+ msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
+ msgstr "<strong>Lier le CSS</strong> dans la section d'<code>&lt;entête (head)&gt;</code> quand le cache de fichier est indisponible."
2360
+
2361
+ #: app/model/settings.php:932
2362
+ msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
+ msgstr "Utiliser cette option si le cache de fichier est indisponible et que vous préférez montrer le CSS en tant que lien plutôt qu'en affichage inline."
2364
+
2365
+ #: app/model/settings.php:944
2366
+ msgid "Current <strong>robots.txt</strong> on this site"
2367
+ msgstr "<strong>robots.txt</strong> actuel sur ce site"
2368
+
2369
+ #: app/model/settings.php:948
2370
+ msgid ""
2371
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
+ "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
+ "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
+ "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
+ "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
+ msgstr ""
2377
+ "L'exclusion Robot standard, aussi appelé Robots Exclusion Protocol or\n"
2378
+ "→\t→\t→\t→\t→\t→\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2379
+ "→\t→\t→\t→\t→\t→\tprotocol, est une convention pour les robots d'indexation et autres robots du web\n"
2380
+ "→\t→\t→\t→\t→\t→\td'accès à tout ou partie d'un site web public.\n"
2381
+ "→\t→\t→\t→\t→\t→\tVous pouvez le changer manuellement en éditant le fichier <code>robots.txt</code> à votre répertoire racine Wordpress."
2382
+
2383
+ #: app/model/settings.php:965
2384
+ msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2385
+ msgstr "<strong>Publier, promouvoir et partager mes événements</strong> publiques sur le réseau de Timely (<a href=\"%s\" target=\"_blank\">En savoir plus &#187;</a>)"
2386
+
2387
+ #: app/model/settings.php:988
2388
+ msgid "Templates cache improves site performance"
2389
+ msgstr "Le cache de gabarits améliore les performances du site"
2390
+
2391
+ #: app/model/settings.php:1001
2392
+ msgid "Display events in <strong>calendar time zone</strong>"
2393
+ msgstr ""
2394
+
2395
+ #: app/model/settings.php:1004
2396
+ msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
+ msgstr ""
2398
+
2399
+ #: app/view/admin/add-new-event.php:26
2400
+ msgid "Event Details"
2401
+ msgstr "Détails de l'Événement"
2402
+
2403
+ #: app/view/admin/add-new-event.php:423
2404
+ msgid "Set banner image"
2405
+ msgstr "Choisir l'image de bannière"
2406
+
2407
+ #: app/view/admin/add-new-event.php:424
2408
+ msgid "Remove banner image"
2409
+ msgstr "Supprimer l'image de bannière"
2410
+
2411
+ #: app/view/admin/add-ons.php:68
2412
+ msgid "Add-ons for All In One Event Calendar"
2413
+ msgstr "Add-ons pour All in One Event Calendar"
2414
+
2415
+ #: app/view/admin/add-ons.php:71
2416
+ msgid "Browse All Extensions"
2417
+ msgstr "Lister toutes les extensions"
2418
+
2419
+ #: app/view/admin/add-ons.php:74
2420
+ msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
+ msgstr "Ces add-ons étendent la fonctionnalité de tout le calendrier All-in-One Evènement"
2422
+
2423
+ #: app/view/admin/add-ons.php:77
2424
+ msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
+ msgstr "C'était une erreur de récupération de la liste des extensions du serveur. Essayer plus tard s'il vous plait."
2426
+
2427
+ #: app/view/admin/all-events.php:16
2428
+ msgid "Author"
2429
+ msgstr "Auteur"
2430
+
2431
+ #: app/view/admin/all-events.php:17
2432
+ msgid "Post Date"
2433
+ msgstr "Date Article"
2434
+
2435
+ #: app/view/admin/all-events.php:18
2436
+ msgid "Event date/time"
2437
+ msgstr "Date/heure de l'événement"
2438
+
2439
+ #: app/view/admin/all-events.php:22
2440
+ msgid "Ticket Types"
2441
+ msgstr ""
2442
+
2443
+ #: app/view/admin/all-events.php:134
2444
+ msgid "Show All "
2445
+ msgstr "Afficher tous"
2446
+
2447
+ #: app/view/admin/all-events.php:147
2448
+ msgid "Show All Authors"
2449
+ msgstr ""
2450
+
2451
+ #: app/model/settings.php:746
2452
+ msgid "Strict compatibility content filtering"
2453
+ msgstr "Filtrage strict de la compatibilité du contenu"
2454
+
2455
+ #: app/model/settings.php:758
2456
+ msgid " <strong>Hide featured image</strong> from event details page"
2457
+ msgstr " <strong>Cacher l'image à la une</strong> de la page détaillée d'événement"
2458
+
2459
+ #: app/model/settings.php:761
2460
+ msgid "Select this option if your theme already displays each post's featured image."
2461
+ msgstr "Sélectionnez cette option si votre thème affiche déjà les images à la une de chaque article."
2462
+
2463
+ #: app/model/settings.php:772
2464
+ msgid "Input dates in this format"
2465
+ msgstr "Dates dans ce format"
2466
+
2467
+ #: app/model/settings.php:777
2468
+ msgid "Default (d/m/yyyy)"
2469
+ msgstr "Défaut (d/m/yyyy)"
2470
+
2471
+ #: app/model/settings.php:781
2472
+ msgid "US (m/d/yyyy)"
2473
+ msgstr "US (m/d/yyyy)"
2474
+
2475
+ #: app/model/settings.php:785
2476
+ msgid "ISO 8601 (yyyy-m-d)"
2477
+ msgstr "ISO 8601 (yyyy-m-d)"
2478
+
2479
+ #: app/model/settings.php:789
2480
+ msgid "Dotted (m.d.yyyy)"
2481
+ msgstr "Point (m.d.yyyy)"
2482
+
2483
+ #: app/model/settings.php:801
2484
+ msgid " Use <strong>24h time</strong> in time pickers"
2485
+ msgstr "Utiliser le <strong>format 24h</strong>"
2486
+
2487
+ #: app/model/settings.php:812
2488
+ msgid "<strong>Disable address autocomplete</strong> function"
2489
+ msgstr "<strong>Désactiver la fonction d’auto-complétion d'adresse</strong>"
2490
+
2491
+ #: app/model/settings.php:823
2492
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2493
+ msgstr "Utiliser la <strong>région</strong> configurée (locale Wordpress) pour influencer la fonction d’auto-complétion d'adresse"
2494
+
2495
+ #: app/model/settings.php:839
2496
+ msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2497
+ msgstr " Afficher le bouton <strong>Postez vos événements</strong> en dessous du calendrier aux utilisateurs ayant les droits"
2498
+
2499
+ #: app/model/settings.php:842
2500
+ msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2501
+ msgstr "Installez l'extension <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> pour utiliser le formulaire public <strong>Postez votre Événement</strong>."
2502
+
2503
+ #: app/model/settings.php:863
2504
+ msgid "Move calendar into this DOM element"
2505
+ msgstr "Bouger le calendrier dans cet élement DOM"
2506
+
2507
+ #: app/model/settings.php:865
2508
+ msgid ""
2509
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2510
+ "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2511
+ "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2512
+ "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2513
+ "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2514
+ "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2515
+ "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2516
+ "\t\t\t\t\t\tby the calendar."
2517
+ msgstr ""
2518
+ "Optionnel. Utiliser ce raccourci JavaScript pour placer le\n"
2519
+ "→\t→\t→\t→\t→\t→\tcalendrier comme élément DOM autre que l'habituel contenu de page\n"
2520
+ "→\t→\t→\t→\t→\t→\tsi vous n'êtes pas autorisé à créer un gabarit approprié de page\n"
2521
+ "→\t→\t→\t→\t→\t→\t pour la page calendrier. Pour l'utiliser, entrer un\n"
2522
+ "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2523
+ "→\t→\t→\t→\t→\t→\tsélecteur jQuery</a> qui évalue un élément unique DOM.\n"
2524
+ "→\t→\t→\t→\t→\t→\tToutes balises dans la cible seront remplacées\n"
2525
+ "→\t→\t→\t→\t→\t→\tpar le calendrier."
2526
+
2527
+ #: app/model/settings.php:884
2528
+ msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2529
+ msgstr "<strong>Passer la vérification <tt>in_the_loop()</tt></strong> qui protège contre les événements multiples de calendrier"
2530
+
2531
+ #: app/model/settings.php:887
2532
+ msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2533
+ msgstr "Essayez d'activer cette option si le calendrier n'apparait pas sur la page calendrier. Cela est nécessaire pour compatibilité avec un petit nombre de thèmes utilisant <tt>the_content()</tt> depuis l'extérieure de la boucle. Laissez désactivé sinon."
2534
+
2535
+ #: app/model/settings.php:899
2536
+ msgid "Disable <strong>gzip</strong> compression."
2537
+ msgstr "Désactiver la compression <strong>gzip</strong>."
2538
+
2539
+ #: app/model/settings.php:902
2540
+ msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2541
+ msgstr "Utiliser cette option si le calendrier n'est pas adaptatif <a href=\"http://support.time.ly/disable-gzip-compression/\">En savoir plus</a> concernant le problème (A partir de la version 2.1, gzip est désactivé par défaut pour une compatibilité maximale)."
2542
+
2543
+ #: app/model/settings.php:914
2544
+ msgid "Use frontend rendering."
2545
+ msgstr "Visualisation frontend."
2546
+
2547
+ #: app/model/settings.php:917
2548
+ msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
+ msgstr "Effectuer le rendu des vues calendrier sur le client plutôt que le serveur; cela peut améliorer les performances."
2550
+
2551
+ #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
+ msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
+ msgstr "Pour effacer, maintenez &#8984;/<abbr class=\"initialism\">CTRL</abbr> enfoncé et cliquez sur la sélection."
2554
+
2555
+ #: app/model/settings.php:508
2556
+ msgid "Default calendar start date (optional)"
2557
+ msgstr "Date de départ du calendrier par défaut (optionnel)"
2558
+
2559
+ #: app/model/settings.php:519
2560
+ msgid "Agenda pages show at most"
2561
+ msgstr "Pages d'agenda affichées au minimum"
2562
+
2563
+ #: app/model/settings.php:532
2564
+ msgid "Week/Day view starts at"
2565
+ msgstr "Les vues Jour et Semaine commencent à"
2566
+
2567
+ #: app/model/settings.php:545
2568
+ msgid "Week/Day view ends at"
2569
+ msgstr "Les vues Jour et Semaine se terminent à"
2570
+
2571
+ #: app/model/settings.php:558
2572
+ msgid "<strong>Word-wrap event stubs</strong> in Month view"
2573
+ msgstr "<strong>Découper le talon d'événement</strong> dans la vue Mois"
2574
+
2575
+ #: app/model/settings.php:561
2576
+ msgid "Only applies to events that span a single day."
2577
+ msgstr "Appliqué uniquement aux événements de journée entière."
2578
+
2579
+ #: app/model/settings.php:573
2580
+ msgid ""
2581
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2582
+ "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2583
+ "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2584
+ "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2585
+ "\t\t\t\t\t\tfrom last day shown</strong>"
2586
+ msgstr "Dans <span class=\"ai1ec-tooltip-toggle\" data-original-title=\"Cela inclue la vue Agenda, le widget Événements à venir, et certaines vues étendues.\"> les vues Agenda</span>, <strong>incluant tous les événements des derniers jours</strong>"
2587
+
2588
+ #: app/model/settings.php:589
2589
+ msgid "Keep all events <strong>expanded</strong> in Agenda view"
2590
+ msgstr "Garder tous les événements <strong>agrandis</strong> dans la vue Agenda"
2591
+
2592
+ #: app/model/settings.php:601
2593
+ msgid "<strong>Show year</strong> in calendar date labels"
2594
+ msgstr "<strong>Afficher l'année</strong> dans les dates du calendrier"
2595
+
2596
+ #: app/model/settings.php:613
2597
+ msgid "<strong>Show location in event titles</strong> in calendar views"
2598
+ msgstr "<strong>Afficher le lieu dans les titres d'évènement</strong> dans les vues calendrier"
2599
+
2600
+ #: app/model/settings.php:625
2601
+ msgid "<strong>Exclude</strong> events from search results"
2602
+ msgstr "<strong>Exclure</strong> les évènements des résultats de recherche"
2603
+
2604
+ #: app/model/settings.php:637
2605
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2606
+ msgstr "Cacher les boutons <strong>Souscrire</strong>/<strong>Ajouter au Calendrier</strong> dans les vues calendrier et événement "
2607
+
2608
+ #: app/model/settings.php:649
2609
+ msgid "Hide <strong>Get a Timely Calendar</strong> button"
2610
+ msgstr "Cacher le bouton <strong>Obtenir un calendrier Timely</strong>"
2611
+
2612
+ #: app/model/settings.php:661
2613
+ msgid " Hide <strong>Google Maps</strong> until clicked"
2614
+ msgstr "Cacher <strong>Cartes Google</strong> jusqu'à cliqué"
2615
+
2616
+ #: app/model/settings.php:673
2617
+ msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2618
+ msgstr " <strong>Figer le menu de filtres</strong> en haut la fenêtre lorsqu'il défile hors de l'écran."
2619
+
2620
+ #: app/model/settings.php:676
2621
+ msgid "Only applies to first visible calendar found on the page."
2622
+ msgstr "Appliquer seulement le premier calendrier visible trouvé sur la page"
2623
+
2624
+ #: app/model/settings.php:688
2625
+ msgid "Offset affixed filter bar vertically by"
2626
+ msgstr "Décaler verticalement la barre de filtre figée de"
2627
+
2628
+ #: app/model/settings.php:703
2629
+ msgid "Wide screens only (&#8805; 1200px)"
2630
+ msgstr "Écrans larges seulement (&#8805; 1200px)"
2631
+
2632
+ #: app/model/settings.php:718
2633
+ msgid "Tablets only (< 980px)"
2634
+ msgstr "Tablettes seulement (&lt; 980px)"
2635
+
2636
+ #: app/model/settings.php:733
2637
+ msgid "Phones only (< 768px)"
2638
+ msgstr "Téléphones seulement (&lt; 768px)"
2639
+
2640
+ #: app/model/api.php:456
2641
+ msgid "Not available"
2642
+ msgstr ""
2643
+
2644
+ #: app/model/api.php:659
2645
+ msgid "%s.<br/>Detail: %s."
2646
+ msgstr ""
2647
+
2648
+ #: app/model/api.php:664
2649
+ msgid "API URL: %s.<br/>Detail: %s - %s"
2650
+ msgstr ""
2651
+
2652
+ #: app/model/api.php:672
2653
+ msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2654
+ msgstr ""
2655
+
2656
+ #: app/model/api.php:679
2657
+ msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2658
+ msgstr ""
2659
+
2660
+ #: app/model/event/parent.php:186
2661
+ msgid "Edit &#8220;%s&#8221;"
2662
+ msgstr "Modifier &#8220;%s&#8221;"
2663
+
2664
+ #: app/model/event/parent.php:193
2665
+ msgid "Base Event"
2666
+ msgstr "Événement de base"
2667
+
2668
+ #: app/model/review.php:169
2669
+ msgid "Feedback provided by user"
2670
+ msgstr ""
2671
+
2672
+ #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2673
+ msgid "Name"
2674
+ msgstr "Nom"
2675
+
2676
+ #: app/model/review.php:173
2677
+ msgid "E-mail"
2678
+ msgstr ""
2679
+
2680
+ #: app/model/review.php:175
2681
+ msgid "Site URL"
2682
+ msgstr ""
2683
+
2684
+ #: app/model/review.php:177
2685
+ msgid "Message"
2686
+ msgstr ""
2687
+
2688
+ #: app/model/settings.php:401
2689
+ #: lib/html/element/setting/calendar-page-selector.php:50
2690
+ msgid "Calendar page"
2691
+ msgstr "Page du calendrier"
2692
+
2693
+ #: app/model/settings.php:411
2694
+ msgid "Week starts on"
2695
+ msgstr "La semaine commence le"
2696
+
2697
+ #: app/model/settings.php:424
2698
+ msgid "Available views"
2699
+ msgstr "Vues disponibles"
2700
+
2701
+ #: app/model/settings.php:432
2702
+ msgid "Agenda"
2703
+ msgid_plural "Agenda"
2704
+ msgstr[0] "Agenda"
2705
+ msgstr[1] "Agendas"
2706
+
2707
+ #: app/model/settings.php:443
2708
+ msgid "Day"
2709
+ msgid_plural "Day"
2710
+ msgstr[0] "Jour"
2711
+ msgstr[1] "Jours"
2712
+
2713
+ #: app/model/settings.php:454
2714
+ msgid "Month"
2715
+ msgid_plural "Month"
2716
+ msgstr[0] "Mois"
2717
+ msgstr[1] "Mois"
2718
+
2719
+ #: app/model/settings.php:465
2720
+ msgid "Week"
2721
+ msgid_plural "Week"
2722
+ msgstr[0] "Semaine"
2723
+ msgstr[1] "Semaines"
2724
+
2725
+ #: app/model/settings.php:479
2726
+ msgid "Timezone"
2727
+ msgstr "Fuseau horaire"
2728
+
2729
+ #: app/model/settings.php:492
2730
+ msgid "Preselected calendar filters"
2731
+ msgstr "Filtres présélectionnés de calendrier"
2732
+
2733
+ #: app/controller/javascript.php:509
2734
+ msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2735
+ msgstr "Une panne est survenue pendant la recherche de l'évènement. <br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2736
+
2737
+ #: app/controller/javascript.php:516
2738
+ msgid "The end date can't be earlier than the start date."
2739
+ msgstr "La date de fin ne peut pas être avant la date de début."
2740
+
2741
+ #: app/controller/javascript.php:517
2742
+ msgid "For week and day view, you must select an interval of at least 6 hours."
2743
+ msgstr "Pour la vue hebdomadaire et quotidienne, vous devez sélectionner un intervalle d'au moins 6 heures."
2744
+
2745
+ #: app/model/api.php:40
2746
+ msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2747
+ msgstr ""
2748
+
2749
+ #: app/model/api.php:41
2750
+ msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2751
+ msgstr ""
2752
+
2753
+ #: app/model/api.php:42
2754
+ msgid "We were unable to Sign you Up for Time.ly Ticketing"
2755
+ msgstr ""
2756
+
2757
+ #: app/model/api.php:43
2758
+ msgid "We were unable to Sign you In for Time.ly Ticketing"
2759
+ msgstr ""
2760
+
2761
+ #: app/model/api.php:44
2762
+ msgid "We were unable to create the Event on Time.ly Ticketing"
2763
+ msgstr ""
2764
+
2765
+ #: app/model/api.php:45
2766
+ msgid "We were unable to update the Event on Time.ly Ticketing"
2767
+ msgstr ""
2768
+
2769
+ #: app/model/api.php:46
2770
+ msgid "The event has the option Tickets selected but any ticket was added."
2771
+ msgstr ""
2772
+
2773
+ #: app/model/api.php:47
2774
+ msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2775
+ msgstr ""
2776
+
2777
+ #: app/model/api.php:48
2778
+ msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2779
+ msgstr ""
2780
+
2781
+ #: app/model/api.php:49
2782
+ msgid "Payment preferences were not saved."
2783
+ msgstr ""
2784
+
2785
+ #: app/model/api.php:50
2786
+ msgid "Payment preferences were saved."
2787
+ msgstr ""
2788
+
2789
+ #: app/model/api.php:51
2790
+ msgid "Event not found inside the database."
2791
+ msgstr ""
2792
+
2793
+ #: app/model/api.php:52
2794
+ msgid "We were unable to get the Sales information from Time.ly Ticketing"
2795
+ msgstr ""
2796
+
2797
+ #: app/model/api.php:446
2798
+ msgid "Past Event"
2799
+ msgstr ""
2800
+
2801
+ #: app/model/api.php:448
2802
+ msgid "Event closed"
2803
+ msgstr ""
2804
+
2805
+ #: app/model/api.php:450
2806
+ msgid "Not available yet"
2807
+ msgstr ""
2808
+
2809
+ #: app/model/api.php:452
2810
+ msgid "Sale closed"
2811
+ msgstr ""
2812
+
2813
+ #: app/model/api.php:454
2814
+ msgid "Sold out"
2815
+ msgstr ""
2816
+
2817
+ #: app/controller/javascript.php:484
2818
+ msgid "Report"
2819
+ msgstr ""
2820
+
2821
+ #: app/controller/javascript.php:485
2822
+ msgid "Sale dates"
2823
+ msgstr ""
2824
+
2825
+ #: app/controller/javascript.php:486
2826
+ msgid "Limits"
2827
+ msgstr ""
2828
+
2829
+ #: app/controller/javascript.php:487
2830
+ msgid "Actions"
2831
+ msgstr ""
2832
+
2833
+ #: app/controller/javascript.php:488
2834
+ msgid "Sold:"
2835
+ msgstr ""
2836
+
2837
+ #: app/controller/javascript.php:489
2838
+ msgid "Left:"
2839
+ msgstr ""
2840
+
2841
+ #: app/controller/javascript.php:490
2842
+ msgid "Start:"
2843
+ msgstr ""
2844
+
2845
+ #: app/controller/javascript.php:491
2846
+ msgid "End:"
2847
+ msgstr ""
2848
+
2849
+ #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2850
+ msgid "Min:"
2851
+ msgstr ""
2852
+
2853
+ #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2854
+ msgid "Max:"
2855
+ msgstr ""
2856
+
2857
+ #: app/controller/javascript.php:494
2858
+ msgid "Attendees"
2859
+ msgstr ""
2860
+
2861
+ #: app/controller/javascript.php:495
2862
+ msgid "Hide Attendees"
2863
+ msgstr ""
2864
+
2865
+ #: app/controller/javascript.php:496
2866
+ msgid "Attendees List"
2867
+ msgstr ""
2868
+
2869
+ #: app/controller/javascript.php:497
2870
+ msgid "Guest Name"
2871
+ msgstr ""
2872
+
2873
+ #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2874
+ msgid "Status"
2875
+ msgstr ""
2876
+
2877
+ #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2878
+ #: app/view/event/ticket.php:71
2879
+ msgid "Email"
2880
+ msgstr "Courriel"
2881
+
2882
+ #: app/controller/javascript.php:500
2883
+ msgid "No attendees for this ticket type."
2884
+ msgstr ""
2885
+
2886
+ #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2887
+ #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2888
+ msgid "Edit"
2889
+ msgstr "Éditer"
2890
+
2891
+ #: app/controller/javascript.php:502
2892
+ msgid "Code"
2893
+ msgstr ""
2894
+
2895
+ #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2896
+ msgid "Unlimited"
2897
+ msgstr ""
2898
+
2899
+ #: app/controller/javascript.php:506
2900
+ msgid "Your message has been sent. Thank you for your feedback."
2901
+ msgstr ""
2902
+
2903
+ #: app/controller/javascript.php:507
2904
+ msgid "Your message has not been sent. Please try again or contact us."
2905
+ msgstr ""
2906
+
2907
+ #: app/controller/javascript.php:405
2908
+ msgid "Please enter a valid iCalendar URL."
2909
+ msgstr "Veuillez entrer une URL iCalendar valide."
2910
+
2911
+ #: app/controller/javascript.php:408
2912
+ msgid "Please enter a valid email address."
2913
+ msgstr "Veuillez entrer une adresse courriel valide."
2914
+
2915
+ #: app/controller/javascript.php:410
2916
+ msgid "Choose Image"
2917
+ msgstr "Choisir Image"
2918
+
2919
+ #: app/controller/javascript.php:413
2920
+ msgid "The value you have entered is not a valid CSS length."
2921
+ msgstr "La valeur que vous avez entrée n'est pas une longueur valide CSS."
2922
+
2923
+ #: app/controller/javascript.php:416
2924
+ msgid "Are you sure you want to reset your theme options to their default values?"
2925
+ msgstr "Êtes-vous sûr(e) de vouloir remettre vos options de thème aux valeurs par défaut ?"
2926
+
2927
+ #: app/controller/javascript.php:419
2928
+ msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2929
+ msgstr "Veuillez entrer une latitude valide. Une latitude valide est comprise entre +90 et -90."
2930
+
2931
+ #: app/controller/javascript.php:422
2932
+ msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2933
+ msgstr "Veuillez entrer une longitude valide. Une longitude valide est comprise entre +180 et -180."
2934
+
2935
+ #: app/controller/javascript.php:425
2936
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2937
+ msgstr "Lorsque \"Coordonnées\" est coché, \"Latitude\" est un champs requis."
2938
+
2939
+ #: app/controller/javascript.php:428
2940
+ msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2941
+ msgstr "Lorsque \"Coordonnées\" est coché, \"Longitude\" est un champs requis. "
2942
+
2943
+ #: app/controller/javascript.php:431
2944
+ msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2945
+ msgstr ""
2946
+
2947
+ #: app/controller/javascript.php:434
2948
+ msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2949
+ msgstr "L'URL que vous avez entrée dans <b>Tarifs de l'événement et tickets</b> &gt; <b>Acheter des tickets URL</b> semble invalide."
2950
+
2951
+ #: app/controller/javascript.php:437
2952
+ msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2953
+ msgstr "Souvenez-vous que les URLs doivent commencer par \"http://\" ou \"https://\"."
2954
+
2955
+ #: app/controller/javascript.php:440
2956
+ msgid "Loading&hellip;"
2957
+ msgstr "Chargement&hellip;"
2958
+
2959
+ #: app/controller/javascript.php:443
2960
+ msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2961
+ msgstr ""
2962
+
2963
+ #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2964
+ msgid "Preview:"
2965
+ msgstr "Aperçu : "
2966
+
2967
+ #: app/controller/javascript.php:474
2968
+ msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2969
+ msgstr "Charger l'aperçu&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2970
+
2971
+ #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2972
+ msgid "Ticketing Details"
2973
+ msgstr ""
2974
+
2975
+ #: app/controller/javascript.php:480
2976
+ msgid "Hide Ticketing Details"
2977
+ msgstr ""
2978
+
2979
+ #: app/controller/javascript.php:481
2980
+ msgid "Loading tickets details..."
2981
+ msgstr ""
2982
+
2983
+ #: app/controller/javascript.php:482
2984
+ msgid "Type and price"
2985
+ msgstr ""
2986
+
2987
+ #: app/controller/javascript.php:483
2988
+ msgid "Info"
2989
+ msgstr ""
2990
+
2991
+ #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2992
+ #: app/view/admin/add-ons.php:27
2993
+ msgid "Add-ons"
2994
+ msgstr "Modules additionnels"
2995
+
2996
+ #: app/controller/front.php:343
2997
+ msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
2998
+ msgstr "Votre thème de calendrier actif n'a pas pu être correctement initialisé. Le thème par défaut a été activé à la place. Veuillez visiter %s et essayer de réactiver votre thème manuellement."
2999
+
3000
+ #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3001
+ #: app/view/admin/theme-switching.php:55
3002
+ msgid "Calendar Themes"
3003
+ msgstr "Thèmes Calendrier"
3004
+
3005
+ #: app/controller/front.php:990
3006
+ msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3007
+ msgstr "Votre base de données est corrompue. La mise à jour précédente a échouée. Veuillez restaurer les tables All-in-One Event Calendar depuis une sauvegarde et réessayer. <br>Les erreurs suivantes ont été trouvées:<br>%s"
3008
+
3009
+ #: app/controller/javascript-widget.php:48
3010
+ msgid "You must choose the Calendar page before using the Super Widget"
3011
+ msgstr "Vous devez choisir la page Calendrier avant d'utiliser le Super Widget"
3012
+
3013
+ #: app/controller/javascript.php:402
3014
+ msgid "This feed is already being imported."
3015
+ msgstr "Ce flux a déjà été importé."
language/all-in-one-event-calendar-gl_ES.mo ADDED
Binary file
language/all-in-one-event-calendar-gl_ES.po ADDED
@@ -0,0 +1,2998 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of 2.3 in Galician
2
+ # This file is distributed under the same license as the 2.3 package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: +0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
+ "Project-Id-Version: 2.3\n"
12
+
13
+ #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
+ #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
+ msgid "Event background"
16
+ msgstr ""
17
+
18
+ #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
+ #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
+ msgid "Event time background"
21
+ msgstr ""
22
+
23
+ #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
+ #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
+ msgid "Event text"
26
+ msgstr ""
27
+
28
+ #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
+ #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
+ msgid "Month view date background"
31
+ msgstr ""
32
+
33
+ #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
+ #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
+ msgid "Week/day view now marker"
36
+ msgstr ""
37
+
38
+ #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
+ #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
+ msgid "Date label accent color"
41
+ msgstr ""
42
+
43
+ #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
+ #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
+ msgid "Date label background"
46
+ msgstr ""
47
+
48
+ #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
+ #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
+ msgid "Date background"
51
+ msgstr ""
52
+
53
+ #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
+ #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
+ msgid "Today background"
56
+ msgstr ""
57
+
58
+ #. Plugin Name of the plugin/theme
59
+ msgid "All-in-One Event Calendar by Time.ly"
60
+ msgstr ""
61
+
62
+ #. Description of the plugin/theme
63
+ msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
+ msgstr ""
65
+
66
+ #. Author of the plugin/theme
67
+ msgid "Time.ly Network Inc."
68
+ msgstr ""
69
+
70
+ #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
+ #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
+ msgid "List item background (active/hover)"
73
+ msgstr ""
74
+
75
+ #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
+ #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
+ msgid "Input field placeholder text"
78
+ msgstr ""
79
+
80
+ #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
+ #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
+ msgid "Today color"
83
+ msgstr ""
84
+
85
+ #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
+ #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
+ msgid "All-day badge color"
88
+ msgstr ""
89
+
90
+ #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
+ #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
+ msgid "Event image shadow"
93
+ msgstr ""
94
+
95
+ #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
+ #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
+ msgid "Event default color"
98
+ msgstr ""
99
+
100
+ #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
+ #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
+ msgid "Event default color (hover)"
103
+ msgstr ""
104
+
105
+ #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
+ #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
+ msgid "All-day/multi-day event stub text"
108
+ msgstr ""
109
+
110
+ #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
+ #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
+ msgid "All-day/multi-day event stub text shadow"
113
+ msgstr ""
114
+
115
+ #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
+ #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
+ msgid "Event border"
118
+ msgstr ""
119
+
120
+ #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
+ #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
+ msgid "Button text"
123
+ msgstr ""
124
+
125
+ #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
+ #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
+ msgid "Input field text"
128
+ msgstr ""
129
+
130
+ #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
+ #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
+ msgid "Input field background"
133
+ msgstr ""
134
+
135
+ #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
+ #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
+ msgid "Input field border"
138
+ msgstr ""
139
+
140
+ #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
+ #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
+ msgid "Input field border (focus)"
143
+ msgstr ""
144
+
145
+ #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
+ #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
+ msgid "Input field background (disabled)"
148
+ msgstr ""
149
+
150
+ #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
+ #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
+ msgid "Field label"
153
+ msgstr ""
154
+
155
+ #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
+ #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
+ msgid "Dropdown list background"
158
+ msgstr ""
159
+
160
+ #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
+ #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
+ msgid "Dropdown list border"
163
+ msgstr ""
164
+
165
+ #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
+ #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
+ msgid "List item text"
168
+ msgstr ""
169
+
170
+ #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
+ #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
+ msgid "List item text (active/hover)"
173
+ msgstr ""
174
+
175
+ #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
+ msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
+ msgstr ""
178
+
179
+ #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
+ msgid "Theme deleted."
181
+ msgstr ""
182
+
183
+ #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
+ msgid "Manage Themes"
185
+ msgstr ""
186
+
187
+ #: public/admin/themes-install.php:40
188
+ msgctxt "theme"
189
+ msgid "Install Themes"
190
+ msgstr ""
191
+
192
+ #: public/admin/themes-updated.php:5
193
+ msgid "Update Calendar Themes"
194
+ msgstr ""
195
+
196
+ #: public/admin/themes-updated.php:15
197
+ msgid "All-in-One Event Calendar Settings »"
198
+ msgstr ""
199
+
200
+ #: public/admin/themes.php:18
201
+ msgid "Current Calendar Theme"
202
+ msgstr ""
203
+
204
+ #: public/admin/themes.php:21
205
+ msgid "Current theme preview"
206
+ msgstr ""
207
+
208
+ #: public/admin/themes.php:47
209
+ msgid "Available Calendar Themes"
210
+ msgstr ""
211
+
212
+ #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
+ #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
+ msgid "Body background"
215
+ msgstr ""
216
+
217
+ #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
+ #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
+ msgid "Text color"
220
+ msgstr ""
221
+
222
+ #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
+ #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
+ msgid "Text emboss"
225
+ msgstr ""
226
+
227
+ #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
+ #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
+ msgid "Link"
230
+ msgstr ""
231
+
232
+ #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
+ #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
+ msgid "Link (hover)"
235
+ msgstr ""
236
+
237
+ #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
+ #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
+ msgid "Base font"
240
+ msgstr ""
241
+
242
+ #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
+ #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
+ msgid "Base font size"
245
+ msgstr ""
246
+
247
+ #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
+ #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
+ msgid "Table background"
250
+ msgstr ""
251
+
252
+ #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
+ #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
+ msgid "Table header background"
255
+ msgstr ""
256
+
257
+ #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
+ #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
+ msgid "Table header text"
260
+ msgstr ""
261
+
262
+ #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
+ #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
+ msgid "Primary brand color"
265
+ msgstr ""
266
+
267
+ #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
+ #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
+ msgid "Button background"
270
+ msgstr ""
271
+
272
+ #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
+ #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
+ msgid "Button border"
275
+ msgstr ""
276
+
277
+ #: public/admin/feed_row.php:104
278
+ msgid "Refreshing&#8230;"
279
+ msgstr ""
280
+
281
+ #: public/admin/feed_row.php:106
282
+ msgid "Refresh"
283
+ msgstr ""
284
+
285
+ #: public/admin/feed_row.php:119
286
+ msgid "Removing&#8230;"
287
+ msgstr ""
288
+
289
+ #: public/admin/feed_row.php:121
290
+ msgid "Remove"
291
+ msgstr ""
292
+
293
+ #: public/admin/import.php:6
294
+ msgid "Successfully imported events:"
295
+ msgstr ""
296
+
297
+ #: public/admin/plugins/ics/display_feeds.php:2
298
+ msgid ""
299
+ "Configure which other calendars your own calendar subscribes to.\n"
300
+ " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
+ " Enter the feed URL(s) below and the events from those feeds will be\n"
302
+ " imported periodically."
303
+ msgstr ""
304
+
305
+ #: public/admin/plugins/ics/display_feeds.php:14
306
+ msgid "Check for new events"
307
+ msgstr ""
308
+
309
+ #: public/admin/plugins/ics/display_feeds.php:45
310
+ msgid "Allow comments on imported events"
311
+ msgstr ""
312
+
313
+ #: public/admin/plugins/ics/display_feeds.php:52
314
+ msgid "Show map on imported events"
315
+ msgstr ""
316
+
317
+ #: public/admin/plugins/ics/display_feeds.php:59
318
+ msgid "Import any tags/categories provided by feed, in addition those selected above"
319
+ msgstr ""
320
+
321
+ #: public/admin/plugins/ics/display_feeds.php:93
322
+ msgid "Add new subscription"
323
+ msgstr ""
324
+
325
+ #: public/admin/plugins/ics/display_feeds.php:96
326
+ msgid "Update subscription"
327
+ msgstr ""
328
+
329
+ #: public/admin/row_custom.php:3
330
+ msgid "Custom dates:"
331
+ msgstr ""
332
+
333
+ #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
334
+ #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
335
+ #: public/admin/row_yearly.php:3
336
+ msgid "Every"
337
+ msgstr ""
338
+
339
+ #: public/admin/row_monthly.php:16
340
+ msgid "On day of the month"
341
+ msgstr ""
342
+
343
+ #: public/admin/row_monthly.php:23
344
+ msgid "On day of the week"
345
+ msgstr ""
346
+
347
+ #: public/admin/row_weekly.php:12
348
+ msgctxt "Recurrence editor - weekly tab"
349
+ msgid "On"
350
+ msgstr ""
351
+
352
+ #: public/admin/row_yearly.php:12
353
+ msgctxt "Recurrence editor - yearly tab"
354
+ msgid "In"
355
+ msgstr ""
356
+
357
+ #: public/admin/settings.php:19
358
+ msgid "Update Settings"
359
+ msgstr ""
360
+
361
+ #: public/admin/themes-install.php:4
362
+ msgid "The active theme is broken. Reverting to the default theme."
363
+ msgstr ""
364
+
365
+ #: public/admin/themes-install.php:13
366
+ msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
367
+ msgstr ""
368
+
369
+ #: public/admin/calendar_tasks.php:24
370
+ msgid "Manage Events"
371
+ msgstr ""
372
+
373
+ #: public/admin/calendar_tasks.php:27
374
+ msgid "View and edit all your events."
375
+ msgstr ""
376
+
377
+ #: public/admin/calendar_tasks.php:39
378
+ msgid "Manage Event Categories"
379
+ msgstr ""
380
+
381
+ #: public/admin/calendar_tasks.php:42
382
+ msgid "Organize and color-code your events."
383
+ msgstr ""
384
+
385
+ #: public/admin/calendar_tasks.php:50
386
+ msgid "Choose Your Theme"
387
+ msgstr ""
388
+
389
+ #: public/admin/calendar_tasks.php:53
390
+ msgid "Change the look and feel."
391
+ msgstr ""
392
+
393
+ #: public/admin/calendar_tasks.php:63
394
+ msgid "Manage Calendar Feeds"
395
+ msgstr ""
396
+
397
+ #: public/admin/calendar_tasks.php:66
398
+ msgid "Subscribe to other calendars."
399
+ msgstr ""
400
+
401
+ #: public/admin/calendar_tasks.php:74
402
+ msgid "Edit Calendar Settings"
403
+ msgstr ""
404
+
405
+ #: public/admin/calendar_tasks.php:77
406
+ msgid "Make this calendar your own."
407
+ msgstr ""
408
+
409
+ #: public/admin/cron_freq.php:3
410
+ msgid "Hourly"
411
+ msgstr ""
412
+
413
+ #: public/admin/cron_freq.php:6
414
+ msgid "Twice Daily"
415
+ msgstr ""
416
+
417
+ #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
418
+ msgid "iCalendar/.ics Feed URL:"
419
+ msgstr ""
420
+
421
+ #: public/admin/feed_row.php:24
422
+ msgid "Event categories:"
423
+ msgstr ""
424
+
425
+ #: public/admin/feed_row.php:31
426
+ msgid "Tag with"
427
+ msgstr ""
428
+
429
+ #: public/admin/feed_row.php:40
430
+ msgid "Allow comments"
431
+ msgstr ""
432
+
433
+ #: public/admin/feed_row.php:51
434
+ msgid "Show map"
435
+ msgstr ""
436
+
437
+ #: public/admin/feed_row.php:63
438
+ msgid "Keep original events categories and tags"
439
+ msgstr ""
440
+
441
+ #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
442
+ msgid "On refresh, preserve previously imported events that are missing from the feed"
443
+ msgstr ""
444
+
445
+ #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
446
+ msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
447
+ msgstr ""
448
+
449
+ #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
450
+ msgid "Assign default time zone to events in UTC"
451
+ msgstr ""
452
+
453
+ #: public/admin/box_support.php:19
454
+ msgid "Get Add-ons"
455
+ msgstr ""
456
+
457
+ #: public/admin/box_support.php:27
458
+ msgid "Support"
459
+ msgstr ""
460
+
461
+ #: public/admin/box_support.php:35
462
+ msgid "Timely Events"
463
+ msgstr ""
464
+
465
+ #: public/admin/box_support.php:43
466
+ msgid "Timely News"
467
+ msgstr ""
468
+
469
+ #: public/admin/box_support.php:47
470
+ msgid "view all news"
471
+ msgstr ""
472
+
473
+ #: public/admin/box_support.php:95
474
+ msgid "Follow @_Timely"
475
+ msgstr ""
476
+
477
+ #: public/admin/box_time_and_date.php:6
478
+ msgid "Event date and time"
479
+ msgstr ""
480
+
481
+ #: public/admin/box_time_and_date.php:26
482
+ msgid "All-day event"
483
+ msgstr ""
484
+
485
+ #: public/admin/box_time_and_date.php:35
486
+ msgid "No end time"
487
+ msgstr ""
488
+
489
+ #: public/admin/box_time_and_date.php:42
490
+ msgid "Start date / time"
491
+ msgstr ""
492
+
493
+ #: public/admin/box_time_and_date.php:59
494
+ msgid "End date / time"
495
+ msgstr ""
496
+
497
+ #: public/admin/box_time_and_date.php:76
498
+ msgid "Time zone"
499
+ msgstr ""
500
+
501
+ #: public/admin/box_time_and_date.php:81
502
+ msgid "Choose your time zone"
503
+ msgstr ""
504
+
505
+ #: public/admin/box_time_and_date.php:108
506
+ msgid "Repeat"
507
+ msgstr ""
508
+
509
+ #: public/admin/box_time_and_date.php:127
510
+ msgid "Exclude"
511
+ msgstr ""
512
+
513
+ #: public/admin/box_time_and_date.php:136
514
+ msgid "Choose a rule for exclusion"
515
+ msgstr ""
516
+
517
+ #: public/admin/calendar_tasks.php:3
518
+ msgid "Welcome"
519
+ msgstr ""
520
+
521
+ #: public/admin/calendar_tasks.php:4
522
+ msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
523
+ msgstr ""
524
+
525
+ #: public/admin/calendar_tasks.php:13
526
+ msgid "Post Your Event"
527
+ msgstr ""
528
+
529
+ #: public/admin/calendar_tasks.php:16
530
+ msgid "Add a new event to the calendar."
531
+ msgstr ""
532
+
533
+ #: public/admin/box_eventbrite.php:60
534
+ msgid "Donation Based"
535
+ msgstr ""
536
+
537
+ #: public/admin/box_eventbrite.php:68
538
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
539
+ msgstr ""
540
+
541
+ #: public/admin/box_eventbrite.php:75
542
+ msgid "Quantity"
543
+ msgstr ""
544
+
545
+ #: public/admin/box_eventbrite.php:85
546
+ msgid "Include Fee in Price"
547
+ msgstr ""
548
+
549
+ #: public/admin/box_eventbrite.php:90
550
+ msgid "Add Service Fee on top of price"
551
+ msgstr ""
552
+
553
+ #: public/admin/box_eventbrite.php:92
554
+ msgid "Include Service fee in price"
555
+ msgstr ""
556
+
557
+ #: public/admin/box_eventbrite.php:98
558
+ msgid "Payment Options"
559
+ msgstr ""
560
+
561
+ #: public/admin/box_eventbrite.php:105
562
+ msgid "Google Checkout"
563
+ msgstr ""
564
+
565
+ #: public/admin/box_eventbrite.php:107
566
+ msgid "Check"
567
+ msgstr ""
568
+
569
+ #: public/admin/box_eventbrite.php:109
570
+ msgid "Cash"
571
+ msgstr ""
572
+
573
+ #: public/admin/box_eventbrite.php:111
574
+ msgid "Send an Invoice"
575
+ msgstr ""
576
+
577
+ #: public/admin/box_profile_timezone.php:9
578
+ msgid "Your preferred timezone"
579
+ msgstr ""
580
+
581
+ #: public/admin/box_repeat.php:5
582
+ msgid "Select recurrence pattern:"
583
+ msgstr ""
584
+
585
+ #: public/admin/box_repeat.php:36
586
+ msgid "Custom"
587
+ msgstr ""
588
+
589
+ #: public/admin/box_repeat.php:72
590
+ msgid "End"
591
+ msgstr ""
592
+
593
+ #: public/admin/box_repeat.php:82
594
+ msgid "Ending after"
595
+ msgstr ""
596
+
597
+ #: public/admin/box_repeat.php:109
598
+ #: public/admin/plugins/ics/display_feeds.php:90
599
+ msgid "Please wait&#8230;"
600
+ msgstr ""
601
+
602
+ #: public/admin/box_repeat.php:111
603
+ msgid "Apply"
604
+ msgstr ""
605
+
606
+ #: public/admin/box_repeat.php:116
607
+ #: public/admin/plugins/ics/display_feeds.php:84
608
+ msgid "Cancel"
609
+ msgstr ""
610
+
611
+ #: public/admin/box_support.php:4
612
+ msgid "Timely"
613
+ msgstr ""
614
+
615
+ #: public/admin/box_support.php:11
616
+ msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
617
+ msgstr ""
618
+
619
+ #: public/admin/box_event_cost.php:228
620
+ msgid "Status:"
621
+ msgstr ""
622
+
623
+ #: public/admin/box_event_cost.php:235
624
+ msgid "Open"
625
+ msgstr ""
626
+
627
+ #: public/admin/box_event_cost.php:239
628
+ msgid "Closed"
629
+ msgstr ""
630
+
631
+ #: public/admin/box_event_cost.php:254
632
+ msgid "Add New Ticket Type"
633
+ msgstr ""
634
+
635
+ #: public/admin/box_event_cost.php:274
636
+ msgid "Tickets URL:"
637
+ msgstr ""
638
+
639
+ #: public/admin/box_event_location.php:6
640
+ msgid "Event location details"
641
+ msgstr ""
642
+
643
+ #: public/admin/box_event_location.php:19
644
+ msgid "Venue name:"
645
+ msgstr ""
646
+
647
+ #: public/admin/box_event_location.php:31
648
+ msgid "Address:"
649
+ msgstr ""
650
+
651
+ #: public/admin/box_event_location.php:45
652
+ msgid "Input Coordinates"
653
+ msgstr ""
654
+
655
+ #: public/admin/box_event_location.php:57
656
+ msgid "Latitude:"
657
+ msgstr ""
658
+
659
+ #: public/admin/box_event_location.php:69
660
+ msgid "Longitude:"
661
+ msgstr ""
662
+
663
+ #: public/admin/box_event_location.php:85
664
+ msgid "Show Map"
665
+ msgstr ""
666
+
667
+ #: public/admin/box_eventbrite.php:1
668
+ msgid "Eventbrite Ticketing"
669
+ msgstr ""
670
+
671
+ #: public/admin/box_eventbrite.php:7
672
+ msgid "Register this event with Eventbrite.com?"
673
+ msgstr ""
674
+
675
+ #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
676
+ #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
677
+ #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
678
+ msgid "Yes"
679
+ msgstr ""
680
+
681
+ #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
682
+ #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
683
+ #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
684
+ msgid "No"
685
+ msgstr ""
686
+
687
+ #: public/admin/box_eventbrite.php:22
688
+ msgid "Set up your first ticket"
689
+ msgstr ""
690
+
691
+ #: public/admin/box_eventbrite.php:24
692
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
693
+ msgstr ""
694
+
695
+ #: public/admin/box_eventbrite.php:42
696
+ msgid "Description"
697
+ msgstr ""
698
+
699
+ #: public/admin/box_eventbrite.php:53
700
+ msgid "Type"
701
+ msgstr ""
702
+
703
+ #: public/admin/box_eventbrite.php:58
704
+ msgid "Set Price"
705
+ msgstr ""
706
+
707
+ #: public/admin/box_event_contact.php:30
708
+ msgid "Phone:"
709
+ msgstr ""
710
+
711
+ #: public/admin/box_event_contact.php:56
712
+ msgid "Website URL:"
713
+ msgstr ""
714
+
715
+ #: public/admin/box_event_cost.php:6
716
+ msgid "Event cost and Tickets"
717
+ msgstr ""
718
+
719
+ #: public/admin/box_event_cost.php:20
720
+ msgid "Ticket options not available - event imported from external calendar."
721
+ msgstr ""
722
+
723
+ #: public/admin/box_event_cost.php:28
724
+ msgid "Free event"
725
+ msgstr ""
726
+
727
+ #: public/admin/box_event_cost.php:41
728
+ msgid "External Tickets URL"
729
+ msgstr ""
730
+
731
+ #: public/admin/box_event_cost.php:52
732
+ msgid "Ticketing allows you to sell tickets directly to the users."
733
+ msgstr ""
734
+
735
+ #: public/admin/box_event_cost.php:55
736
+ msgid "Sign Up for Timely Network"
737
+ msgstr ""
738
+
739
+ #: public/admin/box_event_cost.php:80
740
+ msgid "Remove Ticket Type"
741
+ msgstr ""
742
+
743
+ #: public/admin/box_event_cost.php:101
744
+ msgid "Ex.: Regular Ticket"
745
+ msgstr ""
746
+
747
+ #: public/admin/box_event_cost.php:105
748
+ msgid "Description:"
749
+ msgstr ""
750
+
751
+ #: public/admin/box_event_cost.php:111
752
+ msgid "(Optional)"
753
+ msgstr ""
754
+
755
+ #: public/admin/box_event_cost.php:115
756
+ msgid "Price:"
757
+ msgstr ""
758
+
759
+ #: public/admin/box_event_cost.php:124
760
+ msgid "USD"
761
+ msgstr ""
762
+
763
+ #: public/admin/box_event_cost.php:128
764
+ msgid "Limits:"
765
+ msgstr ""
766
+
767
+ #: public/admin/box_event_cost.php:131
768
+ msgid "This fields are required."
769
+ msgstr ""
770
+
771
+ #: public/admin/box_event_cost.php:156
772
+ msgid "Quantity:"
773
+ msgstr ""
774
+
775
+ #: public/admin/box_event_cost.php:180
776
+ msgid "Available:"
777
+ msgstr ""
778
+
779
+ #: public/admin/box_event_cost.php:185
780
+ msgid "Immediately"
781
+ msgstr ""
782
+
783
+ #: public/admin/box_event_cost.php:190
784
+ msgid "From:"
785
+ msgstr ""
786
+
787
+ #: public/admin/box_event_cost.php:207
788
+ msgid "Till:"
789
+ msgstr ""
790
+
791
+ #: public/admin/box_ask_customer_review.php:42
792
+ #: public/admin/box_ask_customer_review.php:75
793
+ msgid "No, thanks"
794
+ msgstr ""
795
+
796
+ #: public/admin/box_ask_customer_review.php:50
797
+ #: public/admin/box_ask_customer_review.php:84
798
+ msgid "Ok, sure!"
799
+ msgstr ""
800
+
801
+ #: public/admin/box_ask_customer_review.php:66
802
+ msgid "Would you mind giving us some feedback?"
803
+ msgstr ""
804
+
805
+ #: public/admin/box_ask_customer_review.php:101
806
+ msgid "Please provide some feedback"
807
+ msgstr ""
808
+
809
+ #: public/admin/box_ask_customer_review.php:108
810
+ msgid "Message:"
811
+ msgstr ""
812
+
813
+ #: public/admin/box_ask_customer_review.php:121
814
+ msgid "Name:"
815
+ msgstr ""
816
+
817
+ #: public/admin/box_ask_customer_review.php:136
818
+ #: public/admin/box_event_contact.php:43
819
+ msgid "E-mail:"
820
+ msgstr ""
821
+
822
+ #: public/admin/box_ask_customer_review.php:143
823
+ msgid "E-mail is invalid."
824
+ msgstr ""
825
+
826
+ #: public/admin/box_ask_customer_review.php:154
827
+ msgid "Site URL:"
828
+ msgstr ""
829
+
830
+ #: public/admin/box_ask_customer_review.php:161
831
+ msgid "Site URL is invalid."
832
+ msgstr ""
833
+
834
+ #: public/admin/box_ask_customer_review.php:173
835
+ msgid "Thank you for being our customer,"
836
+ msgstr ""
837
+
838
+ #: public/admin/box_ask_customer_review.php:174
839
+ msgid "Aristotel Dascal, VP of Product, Time.ly"
840
+ msgstr ""
841
+
842
+ #: public/admin/box_ask_customer_review.php:180
843
+ msgid "Sending..."
844
+ msgstr ""
845
+
846
+ #: public/admin/box_ask_customer_review.php:181
847
+ msgid "Send Message"
848
+ msgstr ""
849
+
850
+ #: public/admin/box_event_children.php:12
851
+ msgid "Base recurrence event"
852
+ msgstr ""
853
+
854
+ #: public/admin/box_event_children.php:14
855
+ msgid "Modified recurrence events"
856
+ msgstr ""
857
+
858
+ #: public/admin/box_event_children.php:22
859
+ msgid "Edit parent:"
860
+ msgstr ""
861
+
862
+ #: public/admin/box_event_children.php:27
863
+ msgid "Modified Events"
864
+ msgstr ""
865
+
866
+ #: public/admin/box_event_children.php:31
867
+ msgid "Edit:"
868
+ msgstr ""
869
+
870
+ #: public/admin/box_event_contact.php:6
871
+ msgid "Organizer contact info"
872
+ msgstr ""
873
+
874
+ #: public/admin/box_event_contact.php:17
875
+ msgid "Contact name:"
876
+ msgstr ""
877
+
878
+ #: lib/theme/loader.php:325
879
+ msgid "We couldn't find a suitable loader for filename with extension '%s'"
880
+ msgstr ""
881
+
882
+ #: lib/theme/loader.php:631
883
+ msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
884
+ msgstr ""
885
+
886
+ #: lib/theme/search.php:253
887
+ msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
888
+ msgstr ""
889
+
890
+ #: lib/theme/search.php:264
891
+ msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
892
+ msgstr ""
893
+
894
+ #: lib/twig/environment.php:115
895
+ msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
896
+ msgstr ""
897
+
898
+ #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
899
+ msgid "Title:"
900
+ msgstr ""
901
+
902
+ #: public/admin/agenda-widget-form.php:12
903
+ msgid "Number of events to show:"
904
+ msgstr ""
905
+
906
+ #: public/admin/agenda-widget-form.php:21
907
+ msgid "Number of days to show:"
908
+ msgstr ""
909
+
910
+ #: public/admin/agenda-widget-form.php:26
911
+ msgid "Limit to:"
912
+ msgstr ""
913
+
914
+ #: public/admin/agenda-widget-form.php:30
915
+ msgid "Events with these <strong>Categories</strong>"
916
+ msgstr ""
917
+
918
+ #: public/admin/agenda-widget-form.php:39
919
+ msgid "No categories found."
920
+ msgstr ""
921
+
922
+ #: public/admin/agenda-widget-form.php:46
923
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
924
+ msgstr ""
925
+
926
+ #: public/admin/agenda-widget-form.php:55
927
+ msgid "No tags found."
928
+ msgstr ""
929
+
930
+ #: public/admin/agenda-widget-form.php:62
931
+ msgid "Show <strong>View Calendar</strong> button"
932
+ msgstr ""
933
+
934
+ #: public/admin/agenda-widget-form.php:65
935
+ msgid "Show <strong>Subscribe</strong> buttons"
936
+ msgstr ""
937
+
938
+ #: public/admin/agenda-widget-form.php:68
939
+ msgid "Hide this widget on calendar page"
940
+ msgstr ""
941
+
942
+ #: public/admin/box_ask_customer_review.php:5
943
+ msgid "Enjoying All-in-One Event Calendar?"
944
+ msgstr ""
945
+
946
+ #: public/admin/box_ask_customer_review.php:13
947
+ msgid "Not really"
948
+ msgstr ""
949
+
950
+ #: public/admin/box_ask_customer_review.php:20
951
+ msgid "Yes!"
952
+ msgstr ""
953
+
954
+ #: public/admin/box_ask_customer_review.php:33
955
+ msgid "How about a rating on the Wordpress?"
956
+ msgstr ""
957
+
958
+ #: lib/recurrence/rule.php:397
959
+ msgid "Every %d weeks"
960
+ msgstr ""
961
+
962
+ #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
963
+ msgid "Monthly"
964
+ msgstr ""
965
+
966
+ #: lib/recurrence/rule.php:409
967
+ msgid "Every other month"
968
+ msgstr ""
969
+
970
+ #: lib/recurrence/rule.php:412
971
+ msgid "Every %d months"
972
+ msgstr ""
973
+
974
+ #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
975
+ msgid "Yearly"
976
+ msgstr ""
977
+
978
+ #: lib/recurrence/rule.php:424
979
+ msgid "Every other year"
980
+ msgstr ""
981
+
982
+ #: lib/recurrence/rule.php:427
983
+ msgid "Every %d years"
984
+ msgstr ""
985
+
986
+ #: lib/recurrence/rule.php:465
987
+ msgid "until %s"
988
+ msgstr ""
989
+
990
+ #: lib/recurrence/rule.php:475
991
+ msgid "for %d occurrences"
992
+ msgstr ""
993
+
994
+ #: lib/recurrence/rule.php:479
995
+ msgid "forever"
996
+ msgstr ""
997
+
998
+ #: lib/robots/helper.php:71
999
+ msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1000
+ msgstr ""
1001
+
1002
+ #: lib/robots/helper.php:105
1003
+ msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1004
+ msgstr ""
1005
+
1006
+ #: lib/theme/list.php:152
1007
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1008
+ msgstr ""
1009
+
1010
+ #: lib/theme/list.php:164
1011
+ msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1012
+ msgstr ""
1013
+
1014
+ #: lib/theme/list.php:179
1015
+ msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1016
+ msgstr ""
1017
+
1018
+ #: lib/theme/list.php:190
1019
+ msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1020
+ msgstr ""
1021
+
1022
+ #: lib/theme/list.php:257
1023
+ msgid "Activate &#8220;%s&#8221;"
1024
+ msgstr ""
1025
+
1026
+ #: lib/theme/list.php:264
1027
+ msgid "Activate"
1028
+ msgstr ""
1029
+
1030
+ #. translators: 1: theme title, 2: theme version, 3: theme author
1031
+ #: lib/theme/list.php:281 public/admin/themes.php:25
1032
+ msgid "%1$s %2$s by %3$s"
1033
+ msgstr ""
1034
+
1035
+ #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1036
+ #. title, 5: parent_theme
1037
+ #: lib/theme/list.php:293
1038
+ msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1039
+ msgstr ""
1040
+
1041
+ #: lib/theme/list.php:308
1042
+ msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1043
+ msgstr ""
1044
+
1045
+ #: lib/post/custom-type.php:36
1046
+ msgid "Parent Event"
1047
+ msgstr ""
1048
+
1049
+ #: lib/post/custom-type.php:55
1050
+ msgid "event"
1051
+ msgstr ""
1052
+
1053
+ #: lib/post/custom-type.php:85
1054
+ msgctxt "Event categories taxonomy"
1055
+ msgid "Categories"
1056
+ msgstr ""
1057
+
1058
+ #: lib/post/custom-type.php:86
1059
+ msgctxt "Event categories taxonomy (singular)"
1060
+ msgid "Category"
1061
+ msgstr ""
1062
+
1063
+ #: lib/post/custom-type.php:87
1064
+ msgctxt "Event categories menu item"
1065
+ msgid "Organize"
1066
+ msgstr ""
1067
+
1068
+ #: lib/post/custom-type.php:94
1069
+ msgctxt "Event tags taxonomy"
1070
+ msgid "Tags"
1071
+ msgstr ""
1072
+
1073
+ #: lib/post/custom-type.php:95
1074
+ msgctxt "Event tags taxonomy (singular)"
1075
+ msgid "Tag"
1076
+ msgstr ""
1077
+
1078
+ #: lib/post/custom-type.php:102
1079
+ msgctxt "Event feeds taxonomy"
1080
+ msgid "Event Feeds"
1081
+ msgstr ""
1082
+
1083
+ #: lib/post/custom-type.php:103
1084
+ msgctxt "Event feed taxonomy (singular)"
1085
+ msgid "Event Feed"
1086
+ msgstr ""
1087
+
1088
+ #: lib/post/custom-type.php:285
1089
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1090
+ msgstr ""
1091
+
1092
+ #: lib/post/custom-type.php:296
1093
+ msgid "All Events"
1094
+ msgstr ""
1095
+
1096
+ #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1097
+ #: lib/recurrence/rule.php:260
1098
+ msgctxt "Recurrence editor - weekly tab"
1099
+ msgid "on"
1100
+ msgstr ""
1101
+
1102
+ #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1103
+ #: lib/recurrence/rule.php:326
1104
+ msgid "and"
1105
+ msgstr ""
1106
+
1107
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1108
+ #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1109
+ msgctxt "Recurrence editor - monthly tab"
1110
+ msgid "on"
1111
+ msgstr ""
1112
+
1113
+ #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1114
+ #: lib/recurrence/rule.php:286
1115
+ msgid "of the month"
1116
+ msgstr ""
1117
+
1118
+ #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1119
+ #: lib/recurrence/rule.php:336
1120
+ msgctxt "Recurrence editor - yearly tab"
1121
+ msgid "on"
1122
+ msgstr ""
1123
+
1124
+ #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1125
+ #: public/admin/cron_freq.php:9
1126
+ msgid "Daily"
1127
+ msgstr ""
1128
+
1129
+ #: lib/recurrence/rule.php:379
1130
+ msgid "Every other day"
1131
+ msgstr ""
1132
+
1133
+ #: lib/recurrence/rule.php:382
1134
+ msgid "Every %d days"
1135
+ msgstr ""
1136
+
1137
+ #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1138
+ msgid "Weekly"
1139
+ msgstr ""
1140
+
1141
+ #: lib/recurrence/rule.php:394
1142
+ msgid "Every other week"
1143
+ msgstr ""
1144
+
1145
+ #: lib/less/variable/font.php:64
1146
+ msgid "Custom..."
1147
+ msgstr ""
1148
+
1149
+ #: lib/less/variable/font.php:112
1150
+ msgid "Enter custom font(s)"
1151
+ msgstr ""
1152
+
1153
+ #: lib/less/variable/size.php:26
1154
+ msgid "Length"
1155
+ msgstr ""
1156
+
1157
+ #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1158
+ msgid "All-in-One Event Calendar"
1159
+ msgstr ""
1160
+
1161
+ #: lib/notification/admin.php:182
1162
+ msgid "Got it – dismiss this"
1163
+ msgstr ""
1164
+
1165
+ #: lib/post/custom-type.php:26
1166
+ msgctxt "Custom post type name"
1167
+ msgid "Events"
1168
+ msgstr ""
1169
+
1170
+ #: lib/post/custom-type.php:27
1171
+ msgctxt "Custom post type name (singular)"
1172
+ msgid "Event"
1173
+ msgstr ""
1174
+
1175
+ #: lib/post/custom-type.php:28
1176
+ msgid "Add New"
1177
+ msgstr ""
1178
+
1179
+ #: lib/post/custom-type.php:29
1180
+ msgid "Add New Event"
1181
+ msgstr ""
1182
+
1183
+ #: lib/post/custom-type.php:30
1184
+ msgid "Edit Event"
1185
+ msgstr ""
1186
+
1187
+ #: lib/post/custom-type.php:31
1188
+ msgid "New Event"
1189
+ msgstr ""
1190
+
1191
+ #: lib/post/custom-type.php:32
1192
+ msgid "View Event"
1193
+ msgstr ""
1194
+
1195
+ #: lib/post/custom-type.php:33
1196
+ msgid "Search Events"
1197
+ msgstr ""
1198
+
1199
+ #: lib/post/custom-type.php:34
1200
+ msgid "No Events found"
1201
+ msgstr ""
1202
+
1203
+ #: lib/post/custom-type.php:35
1204
+ msgid "No Events found in Trash"
1205
+ msgstr ""
1206
+
1207
+ #: lib/html/element/setting/html.php:62
1208
+ msgid "Filter by post ID:"
1209
+ msgstr ""
1210
+
1211
+ #: lib/html/element/setting/html.php:63
1212
+ msgid "Filter by post IDs (separate IDs by comma):"
1213
+ msgstr ""
1214
+
1215
+ #: lib/html/element/setting/html.php:64
1216
+ msgid "Limit number of events per page:"
1217
+ msgstr ""
1218
+
1219
+ #: lib/html/element/setting/html.php:65
1220
+ msgid "Warning:"
1221
+ msgstr ""
1222
+
1223
+ #: lib/html/element/setting/html.php:66
1224
+ msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1225
+ msgstr ""
1226
+
1227
+ #: lib/import-export/ics.php:831
1228
+ msgid "Tickets: "
1229
+ msgstr ""
1230
+
1231
+ #: lib/html/element/setting/html.php:41
1232
+ msgid "Day view:"
1233
+ msgstr ""
1234
+
1235
+ #: lib/html/element/setting/html.php:42
1236
+ msgid "Agenda view:"
1237
+ msgstr ""
1238
+
1239
+ #: lib/html/element/setting/html.php:43
1240
+ msgid "Some Other view:"
1241
+ msgstr ""
1242
+
1243
+ #: lib/html/element/setting/html.php:44
1244
+ msgid "Default view as per settings:"
1245
+ msgstr ""
1246
+
1247
+ #: lib/html/element/setting/html.php:45
1248
+ msgid "General form:"
1249
+ msgstr ""
1250
+
1251
+ #: lib/html/element/setting/html.php:46
1252
+ msgid "Optional."
1253
+ msgstr ""
1254
+
1255
+ #: lib/html/element/setting/html.php:47
1256
+ msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1257
+ msgstr ""
1258
+
1259
+ #: lib/html/element/setting/html.php:48
1260
+ msgid "Filter by event category name/slug:"
1261
+ msgstr ""
1262
+
1263
+ #: lib/html/element/setting/html.php:49
1264
+ msgid "Holidays"
1265
+ msgstr ""
1266
+
1267
+ #: lib/html/element/setting/html.php:50
1268
+ msgid "Lunar Cycles"
1269
+ msgstr ""
1270
+
1271
+ #: lib/html/element/setting/html.php:51
1272
+ msgid "zodiac-date-ranges"
1273
+ msgstr ""
1274
+
1275
+ #: lib/html/element/setting/html.php:52
1276
+ msgid "Filter by event category names/slugs (separate names by comma):"
1277
+ msgstr ""
1278
+
1279
+ #: lib/html/element/setting/html.php:53
1280
+ msgid "Filter by event category ID:"
1281
+ msgstr ""
1282
+
1283
+ #: lib/html/element/setting/html.php:54
1284
+ msgid "Filter by event category IDs (separate IDs by comma):"
1285
+ msgstr ""
1286
+
1287
+ #: lib/html/element/setting/html.php:55
1288
+ msgid "Filter by event tag name/slug:"
1289
+ msgstr ""
1290
+
1291
+ #: lib/html/element/setting/html.php:56
1292
+ msgid "tips-and-tricks"
1293
+ msgstr ""
1294
+
1295
+ #: lib/html/element/setting/html.php:57
1296
+ msgid "creative writing"
1297
+ msgstr ""
1298
+
1299
+ #: lib/html/element/setting/html.php:58
1300
+ msgid "performing arts"
1301
+ msgstr ""
1302
+
1303
+ #: lib/html/element/setting/html.php:59
1304
+ msgid "Filter by event tag names/slugs (separate names by comma):"
1305
+ msgstr ""
1306
+
1307
+ #: lib/html/element/setting/html.php:60
1308
+ msgid "Filter by event tag ID:"
1309
+ msgstr ""
1310
+
1311
+ #: lib/html/element/setting/html.php:61
1312
+ msgid "Filter by event tag IDs (separate IDs by comma):"
1313
+ msgstr ""
1314
+
1315
+ #: lib/exception/handler.php:395
1316
+ msgid "All-in-One Event Calendar has been disabled due to an error:"
1317
+ msgstr ""
1318
+
1319
+ #: lib/exception/handler.php:404
1320
+ msgid "Try reactivating plugin"
1321
+ msgstr ""
1322
+
1323
+ #: lib/exception/handler.php:576
1324
+ msgid "Toggle error details"
1325
+ msgstr ""
1326
+
1327
+ #: lib/exception/handler.php:577
1328
+ msgid "Error Details:"
1329
+ msgstr ""
1330
+
1331
+ #: lib/factory/html.php:133
1332
+ msgid "Choose a date using calendar"
1333
+ msgstr ""
1334
+
1335
+ #: lib/factory/html.php:278
1336
+ msgid "Tags (optional)"
1337
+ msgstr ""
1338
+
1339
+ #: lib/html/element/setting/cache.php:38
1340
+ msgid "Check again"
1341
+ msgstr ""
1342
+
1343
+ #: lib/html/element/setting/cache.php:39
1344
+ msgid "Templates cache is not writable"
1345
+ msgstr ""
1346
+
1347
+ #: lib/html/element/setting/cache.php:40
1348
+ msgid "Templates cache is writable"
1349
+ msgstr ""
1350
+
1351
+ #: lib/html/element/setting/cache.php:41
1352
+ msgid "Checking..."
1353
+ msgstr ""
1354
+
1355
+ #: lib/html/element/setting/cache.php:42
1356
+ msgid "Performance Report"
1357
+ msgstr ""
1358
+
1359
+ #: lib/html/element/setting/calendar-page-selector.php:70
1360
+ msgid "View"
1361
+ msgstr ""
1362
+
1363
+ #: lib/html/element/setting/calendar-page-selector.php:114
1364
+ msgid "- Auto-Create New Page -"
1365
+ msgstr ""
1366
+
1367
+ #: lib/html/element/setting/enabled-views.php:22
1368
+ msgid "Enabled"
1369
+ msgstr ""
1370
+
1371
+ #: lib/html/element/setting/enabled-views.php:23
1372
+ msgid "Default"
1373
+ msgstr ""
1374
+
1375
+ #: lib/html/element/setting/enabled-views.php:24
1376
+ msgid "Desktop"
1377
+ msgstr ""
1378
+
1379
+ #: lib/html/element/setting/enabled-views.php:25
1380
+ msgid "Mobile"
1381
+ msgstr ""
1382
+
1383
+ #: lib/html/element/setting/html.php:37
1384
+ msgid "Embed the calendar using a shortcode"
1385
+ msgstr ""
1386
+
1387
+ #: lib/html/element/setting/html.php:38
1388
+ msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1389
+ msgstr ""
1390
+
1391
+ #: lib/html/element/setting/html.php:39
1392
+ msgid "Month view:"
1393
+ msgstr ""
1394
+
1395
+ #: lib/html/element/setting/html.php:40
1396
+ msgid "Week view:"
1397
+ msgstr ""
1398
+
1399
+ #: lib/css/frontend.php:239
1400
+ msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1401
+ msgstr ""
1402
+
1403
+ #: lib/css/frontend.php:266
1404
+ msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1405
+ msgstr ""
1406
+
1407
+ #: lib/css/frontend.php:272
1408
+ msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1409
+ msgstr ""
1410
+
1411
+ #: lib/css/frontend.php:300
1412
+ msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1413
+ msgstr ""
1414
+
1415
+ #: lib/css/frontend.php:307
1416
+ msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1417
+ msgstr ""
1418
+
1419
+ #: lib/css/frontend.php:343
1420
+ msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1421
+ msgstr ""
1422
+
1423
+ #: lib/database/applicator.php:182
1424
+ msgid "Date columns in table %s have different types."
1425
+ msgstr ""
1426
+
1427
+ #: lib/database/exception/database.php:19
1428
+ msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1429
+ msgstr ""
1430
+
1431
+ #: lib/database/exception/database.php:23
1432
+ msgid "Error encountered: %s"
1433
+ msgstr ""
1434
+
1435
+ #: lib/date/system.php:202
1436
+ msgid "GMT%+d:%02d"
1437
+ msgstr ""
1438
+
1439
+ #: lib/date/timezone.php:362
1440
+ msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1441
+ msgstr ""
1442
+
1443
+ #: lib/date/timezone.php:397
1444
+ msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1445
+ msgstr ""
1446
+
1447
+ #: lib/date/timezone.php:421
1448
+ msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1449
+ msgstr ""
1450
+
1451
+ #: lib/date/timezone.php:490
1452
+ msgid "Manual Offset"
1453
+ msgstr ""
1454
+
1455
+ #: lib/date/timezone.php:493
1456
+ msgid "Choose your timezone"
1457
+ msgstr ""
1458
+
1459
+ #: lib/environment/check.php:55
1460
+ msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1461
+ msgstr ""
1462
+
1463
+ #: lib/environment/check.php:68
1464
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1465
+ msgstr ""
1466
+
1467
+ #: lib/environment/check.php:78
1468
+ msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1469
+ msgstr ""
1470
+
1471
+ #: lib/environment/check.php:196
1472
+ msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1473
+ msgstr ""
1474
+
1475
+ #: lib/environment/check.php:197
1476
+ msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1477
+ msgstr ""
1478
+
1479
+ #: lib/exception/handler.php:176
1480
+ msgid "The add-on \"%s\" has been disabled due to an error:"
1481
+ msgstr ""
1482
+
1483
+ #: lib/calendar-feed/ics.php:367
1484
+ msgid "Do you want to keep the events imported from the calendar or remove them?"
1485
+ msgstr ""
1486
+
1487
+ #: lib/calendar-feed/ics.php:373
1488
+ msgid "Removing ICS Feed"
1489
+ msgstr ""
1490
+
1491
+ #: lib/calendar-feed/ics.php:376
1492
+ msgid "Keep Events"
1493
+ msgstr ""
1494
+
1495
+ #: lib/calendar-feed/ics.php:379
1496
+ msgid "Remove Events"
1497
+ msgstr ""
1498
+
1499
+ #: lib/calendar-feed/ics.php:519
1500
+ msgid "Oh, submission was not accepted."
1501
+ msgstr ""
1502
+
1503
+ #: lib/calendar-feed/ics.php:699
1504
+ msgid "Deleted %d events"
1505
+ msgstr ""
1506
+
1507
+ #: lib/calendar-feed/ics.php:735
1508
+ msgid "Feed deleted"
1509
+ msgstr ""
1510
+
1511
+ #: lib/captcha/provider/nocaptcha.php:31
1512
+ msgid "noCAPTCHA public key:"
1513
+ msgstr ""
1514
+
1515
+ #: lib/captcha/provider/nocaptcha.php:47
1516
+ msgid "noCAPTCHA private key:"
1517
+ msgstr ""
1518
+
1519
+ #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1520
+ msgid "Please try verifying you are human again."
1521
+ msgstr ""
1522
+
1523
+ #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1524
+ msgid "There was an error reading the human verification data. Please try again."
1525
+ msgstr ""
1526
+
1527
+ #: lib/captcha/provider/recaptcha.php:32
1528
+ msgid "reCAPTCHA public key:"
1529
+ msgstr ""
1530
+
1531
+ #: lib/captcha/provider/recaptcha.php:48
1532
+ msgid "reCAPTCHA private key:"
1533
+ msgstr ""
1534
+
1535
+ #: lib/captcha/provider/recaptcha.php:66
1536
+ msgid "Human verification"
1537
+ msgstr ""
1538
+
1539
+ #: lib/captcha/provider/recaptcha.php:67
1540
+ msgid "Loading reCAPTCHA..."
1541
+ msgstr ""
1542
+
1543
+ #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1544
+ #: lib/clone/renderer-helper.php:45
1545
+ msgid "Clone"
1546
+ msgstr ""
1547
+
1548
+ #: lib/clone/renderer-helper.php:44
1549
+ msgid "Make new copy of event"
1550
+ msgstr ""
1551
+
1552
+ #: lib/clone/renderer-helper.php:47
1553
+ msgid "Copy to a new draft"
1554
+ msgstr ""
1555
+
1556
+ #: lib/clone/renderer-helper.php:48
1557
+ msgid "Clone to Draft"
1558
+ msgstr ""
1559
+
1560
+ #: lib/command/clone.php:173
1561
+ msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1562
+ msgstr ""
1563
+
1564
+ #: lib/compatibility/check.php:101
1565
+ msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1566
+ msgstr ""
1567
+
1568
+ #: app/view/event/single.php:123
1569
+ msgid "Tickets:"
1570
+ msgstr ""
1571
+
1572
+ #: app/view/event/single.php:124
1573
+ msgid "Free"
1574
+ msgstr ""
1575
+
1576
+ #: app/view/event/single.php:127 app/view/event/ticket.php:38
1577
+ msgid "Buy Tickets"
1578
+ msgstr ""
1579
+
1580
+ #: app/view/event/single.php:150
1581
+ msgid "Edit this occurrence (%s)"
1582
+ msgstr ""
1583
+
1584
+ #: app/view/event/single.php:195
1585
+ msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1586
+ msgstr ""
1587
+
1588
+ #: app/view/event/single.php:206
1589
+ msgid "View original"
1590
+ msgstr ""
1591
+
1592
+ #: app/view/event/taxonomy.php:113
1593
+ msgid "Category image"
1594
+ msgstr ""
1595
+
1596
+ #: app/view/event/ticket.php:24
1597
+ msgid "Register Now"
1598
+ msgstr ""
1599
+
1600
+ #: app/view/event/ticket.php:82
1601
+ msgid "Event website"
1602
+ msgstr ""
1603
+
1604
+ #: app/view/event/time.php:84 app/view/event/time.php:118
1605
+ msgctxt "Event time separator"
1606
+ msgid " @ "
1607
+ msgstr ""
1608
+
1609
+ #: app/view/event/time.php:100
1610
+ msgctxt "Event start/end separator"
1611
+ msgid " – "
1612
+ msgstr ""
1613
+
1614
+ #: app/view/event/time.php:166
1615
+ msgid ", and "
1616
+ msgstr ""
1617
+
1618
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1619
+ msgid "Excludes: "
1620
+ msgstr ""
1621
+
1622
+ #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1623
+ msgid "Repeats"
1624
+ msgstr ""
1625
+
1626
+ #: lib/calendar-feed/ics.php:38
1627
+ msgid "ICS"
1628
+ msgstr ""
1629
+
1630
+ #: lib/calendar-feed/ics.php:69
1631
+ msgid "Another import process in progress. Please try again later."
1632
+ msgstr ""
1633
+
1634
+ #: lib/calendar-feed/ics.php:174
1635
+ msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1636
+ msgstr ""
1637
+
1638
+ #: lib/calendar-feed/ics.php:181
1639
+ msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1640
+ msgstr ""
1641
+
1642
+ #: lib/calendar-feed/ics.php:195
1643
+ msgid "Imported %s event"
1644
+ msgid_plural "Imported %s events"
1645
+ msgstr[0] ""
1646
+ msgstr[1] ""
1647
+
1648
+ #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1649
+ msgid "Invalid ICS feed ID"
1650
+ msgstr ""
1651
+
1652
+ #: lib/calendar-feed/ics.php:350
1653
+ msgid "Categories (optional)"
1654
+ msgstr ""
1655
+
1656
+ #: app/view/event/content.php:33 app/view/event/single.php:119
1657
+ msgid "When:"
1658
+ msgstr ""
1659
+
1660
+ #: app/view/event/content.php:34 app/view/event/single.php:120
1661
+ msgid "Where:"
1662
+ msgstr ""
1663
+
1664
+ #: app/view/event/content.php:125
1665
+ msgid "Calendar"
1666
+ msgstr ""
1667
+
1668
+ #: app/view/event/content.php:126
1669
+ msgid "View all events"
1670
+ msgstr ""
1671
+
1672
+ #: app/view/event/location.php:96
1673
+ msgid "Click to view map"
1674
+ msgstr ""
1675
+
1676
+ #: app/view/event/location.php:97
1677
+ msgid "View Full-Size Map"
1678
+ msgstr ""
1679
+
1680
+ #: app/view/event/post.php:29
1681
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1682
+ msgstr ""
1683
+
1684
+ #: app/view/event/post.php:32
1685
+ msgid "Custom field updated."
1686
+ msgstr ""
1687
+
1688
+ #: app/view/event/post.php:33
1689
+ msgid "Custom field deleted."
1690
+ msgstr ""
1691
+
1692
+ #: app/view/event/post.php:34
1693
+ msgid "Event updated."
1694
+ msgstr ""
1695
+
1696
+ #. translators: %s: date and time of the revision
1697
+ #: app/view/event/post.php:38
1698
+ msgid "Event restored to revision from %s"
1699
+ msgstr ""
1700
+
1701
+ #: app/view/event/post.php:43
1702
+ msgid "Event published. <a href=\"%s\">View event</a>"
1703
+ msgstr ""
1704
+
1705
+ #: app/view/event/post.php:46
1706
+ msgid "Event saved."
1707
+ msgstr ""
1708
+
1709
+ #: app/view/event/post.php:48
1710
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1711
+ msgstr ""
1712
+
1713
+ #: app/view/event/post.php:52
1714
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1715
+ msgstr ""
1716
+
1717
+ #. translators: Publish box date format, see http:php.net/date
1718
+ #: app/view/event/post.php:54
1719
+ msgid "M j, Y @ G:i"
1720
+ msgstr ""
1721
+
1722
+ #: app/view/event/post.php:58
1723
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1724
+ msgstr ""
1725
+
1726
+ #: app/view/event/single.php:78
1727
+ msgid "Event was created in the %s time zone"
1728
+ msgstr ""
1729
+
1730
+ #: app/view/event/single.php:114
1731
+ msgid "Add to Calendar"
1732
+ msgstr ""
1733
+
1734
+ #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1735
+ msgid "Cost:"
1736
+ msgstr ""
1737
+
1738
+ #: app/view/event/single.php:122
1739
+ msgid "Contact:"
1740
+ msgstr ""
1741
+
1742
+ #: app/view/calendar/view/agenda.php:169
1743
+ msgid "Categories:"
1744
+ msgstr ""
1745
+
1746
+ #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1747
+ #: public/admin/themes.php:29
1748
+ msgid "Tags:"
1749
+ msgstr ""
1750
+
1751
+ #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1752
+ #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1753
+ #: app/view/calendar/widget.php:374
1754
+ msgid "@ %s"
1755
+ msgstr ""
1756
+
1757
+ #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1758
+ msgid "g a"
1759
+ msgstr ""
1760
+
1761
+ #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1762
+ msgid "Reveal full day"
1763
+ msgstr ""
1764
+
1765
+ #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1766
+ msgid "All-day"
1767
+ msgstr ""
1768
+
1769
+ #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1770
+ msgid "Now:"
1771
+ msgstr ""
1772
+
1773
+ #: app/view/calendar/view/week.php:67
1774
+ msgid "Week of %s"
1775
+ msgstr ""
1776
+
1777
+ #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1778
+ msgid "Upcoming Events"
1779
+ msgstr ""
1780
+
1781
+ #: app/view/calendar/widget.php:38
1782
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1783
+ msgstr ""
1784
+
1785
+ #: app/view/calendar/widget.php:80
1786
+ msgid "Choose how to limit the upcoming events"
1787
+ msgstr ""
1788
+
1789
+ #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1790
+ msgid "Events"
1791
+ msgstr ""
1792
+
1793
+ #: app/view/calendar/widget.php:93
1794
+ msgid "Days"
1795
+ msgstr ""
1796
+
1797
+ #: app/view/calendar/widget.php:106
1798
+ msgid "Number of events to show"
1799
+ msgstr ""
1800
+
1801
+ #: app/view/calendar/widget.php:115
1802
+ msgid "Number of days to show"
1803
+ msgstr ""
1804
+
1805
+ #: app/view/calendar/widget.php:124
1806
+ msgid "Show events filtered for the following tags/categories"
1807
+ msgstr ""
1808
+
1809
+ #: app/view/calendar/widget.php:141
1810
+ msgid "Show the subscribe button in the widget"
1811
+ msgstr ""
1812
+
1813
+ #: app/view/calendar/widget.php:370
1814
+ msgid "There are no upcoming events."
1815
+ msgstr ""
1816
+
1817
+ #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1818
+ msgid "all-day"
1819
+ msgstr ""
1820
+
1821
+ #: app/view/calendar/widget.php:372
1822
+ msgid "View Calendar"
1823
+ msgstr ""
1824
+
1825
+ #: app/view/calendar/widget.php:375
1826
+ msgid "Add"
1827
+ msgstr ""
1828
+
1829
+ #: app/view/calendar/page.php:260
1830
+ msgid "Subscribe to filtered calendar"
1831
+ msgstr ""
1832
+
1833
+ #: app/view/calendar/page.php:261
1834
+ msgid "Subscribe"
1835
+ msgstr ""
1836
+
1837
+ #: app/view/calendar/page.php:262 app/view/event/single.php:118
1838
+ msgid "Get a Timely Calendar"
1839
+ msgstr ""
1840
+
1841
+ #: app/view/calendar/subscribe-button.php:22
1842
+ msgid "Add to Timely Calendar"
1843
+ msgstr ""
1844
+
1845
+ #: app/view/calendar/subscribe-button.php:23
1846
+ msgid "Add to Google"
1847
+ msgstr ""
1848
+
1849
+ #: app/view/calendar/subscribe-button.php:24
1850
+ msgid "Add to Outlook"
1851
+ msgstr ""
1852
+
1853
+ #: app/view/calendar/subscribe-button.php:25
1854
+ msgid "Add to Apple Calendar"
1855
+ msgstr ""
1856
+
1857
+ #: app/view/calendar/subscribe-button.php:26
1858
+ msgid "Add to other calendar"
1859
+ msgstr ""
1860
+
1861
+ #: app/view/calendar/subscribe-button.php:29
1862
+ msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1863
+ msgstr ""
1864
+
1865
+ #: app/view/calendar/subscribe-button.php:30
1866
+ msgid "Subscribe to this calendar in your Google Calendar"
1867
+ msgstr ""
1868
+
1869
+ #: app/view/calendar/subscribe-button.php:31
1870
+ msgid "Subscribe to this calendar in MS Outlook"
1871
+ msgstr ""
1872
+
1873
+ #: app/view/calendar/subscribe-button.php:32
1874
+ msgid "Subscribe to this calendar in Apple Calendar/iCal"
1875
+ msgstr ""
1876
+
1877
+ #: app/view/calendar/subscribe-button.php:33
1878
+ msgid "Subscribe to this calendar in another plain-text calendar"
1879
+ msgstr ""
1880
+
1881
+ #: app/view/calendar/taxonomy.php:97
1882
+ msgid "Clear category filter"
1883
+ msgstr ""
1884
+
1885
+ #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1886
+ #: lib/html/element/setting/tags-categories.php:47
1887
+ msgid "Categories"
1888
+ msgstr ""
1889
+
1890
+ #: app/view/calendar/taxonomy.php:99
1891
+ msgid "Clear tag filter"
1892
+ msgstr ""
1893
+
1894
+ #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1895
+ #: lib/html/element/setting/tags-categories.php:39
1896
+ msgid "Tags"
1897
+ msgstr ""
1898
+
1899
+ #: app/view/calendar/view/agenda.php:142
1900
+ msgid "Collapse All"
1901
+ msgstr ""
1902
+
1903
+ #: app/view/calendar/view/agenda.php:143
1904
+ msgid "Expand All"
1905
+ msgstr ""
1906
+
1907
+ #: app/view/calendar/view/agenda.php:166
1908
+ msgid "There are no upcoming events to display at this time."
1909
+ msgstr ""
1910
+
1911
+ #: app/view/calendar/view/agenda.php:168
1912
+ msgid "Read more"
1913
+ msgstr ""
1914
+
1915
+ #: app/view/admin/tickets.php:86
1916
+ msgid "Sales"
1917
+ msgstr ""
1918
+
1919
+ #: app/view/admin/tickets.php:87
1920
+ msgid "How do you want the tickets revenue to be sent to you?"
1921
+ msgstr ""
1922
+
1923
+ #: app/view/admin/tickets.php:88
1924
+ msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1925
+ msgstr ""
1926
+
1927
+ #: app/view/admin/tickets.php:91
1928
+ msgid "Cheque"
1929
+ msgstr ""
1930
+
1931
+ #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1932
+ msgid "Paypal"
1933
+ msgstr ""
1934
+
1935
+ #: app/view/admin/tickets.php:94
1936
+ msgid "Save Changes"
1937
+ msgstr ""
1938
+
1939
+ #: app/view/admin/tickets.php:95
1940
+ msgid "Date"
1941
+ msgstr ""
1942
+
1943
+ #: app/view/admin/tickets.php:96
1944
+ msgid "Event"
1945
+ msgstr ""
1946
+
1947
+ #: app/view/admin/tickets.php:97
1948
+ msgid "Purchaser"
1949
+ msgstr ""
1950
+
1951
+ #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1952
+ #: public/admin/box_event_cost.php:35
1953
+ msgid "Tickets"
1954
+ msgstr ""
1955
+
1956
+ #: app/view/admin/tickets.php:101
1957
+ msgid "Total"
1958
+ msgstr ""
1959
+
1960
+ #: app/view/admin/tickets.php:102
1961
+ msgid "Sign Out"
1962
+ msgstr ""
1963
+
1964
+ #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1965
+ #: app/view/admin/widget-creator.php:47
1966
+ msgid "Widget Creator"
1967
+ msgstr ""
1968
+
1969
+ #: app/view/admin/widget-creator.php:74
1970
+ msgctxt "meta box"
1971
+ msgid "Widget Creator"
1972
+ msgstr ""
1973
+
1974
+ #: app/view/admin/widget-creator.php:131
1975
+ msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1976
+ msgstr ""
1977
+
1978
+ #: app/view/admin/widget-creator.php:132
1979
+ msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1980
+ msgstr ""
1981
+
1982
+ #: app/view/admin/widget-creator.php:134
1983
+ msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1984
+ msgstr ""
1985
+
1986
+ #: app/view/admin/widget-creator.php:140
1987
+ msgid "Paste this code onto your site:"
1988
+ msgstr ""
1989
+
1990
+ #: app/view/admin/widget-creator.php:141
1991
+ msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1992
+ msgstr ""
1993
+
1994
+ #: app/view/calendar/page.php:54
1995
+ msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
1996
+ msgstr ""
1997
+
1998
+ #: app/view/calendar/page.php:74
1999
+ msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2000
+ msgstr ""
2001
+
2002
+ #: app/view/admin/settings.php:193
2003
+ msgid "Phone Number:"
2004
+ msgstr ""
2005
+
2006
+ #: app/view/admin/settings.php:194
2007
+ msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2008
+ msgstr ""
2009
+
2010
+ #: app/view/admin/settings.php:197
2011
+ msgid "Sign Up"
2012
+ msgstr ""
2013
+
2014
+ #: app/view/admin/settings.php:198
2015
+ msgid "Sign In"
2016
+ msgstr ""
2017
+
2018
+ #: app/view/admin/settings.php:212
2019
+ msgid "Save Settings"
2020
+ msgstr ""
2021
+
2022
+ #: app/view/admin/settings.php:219
2023
+ msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2024
+ msgstr ""
2025
+
2026
+ #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2027
+ msgid "Theme Options"
2028
+ msgstr ""
2029
+
2030
+ #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2031
+ msgid "Calendar Theme Options"
2032
+ msgstr ""
2033
+
2034
+ #: app/view/admin/theme-options.php:79
2035
+ msgctxt "meta box"
2036
+ msgid "Calendar Theme Options"
2037
+ msgstr ""
2038
+
2039
+ #: app/view/admin/theme-options.php:133
2040
+ msgid "General"
2041
+ msgstr ""
2042
+
2043
+ #: app/view/admin/theme-options.php:136
2044
+ msgid "Tables"
2045
+ msgstr ""
2046
+
2047
+ #: app/view/admin/theme-options.php:139
2048
+ msgid "Buttons"
2049
+ msgstr ""
2050
+
2051
+ #: app/view/admin/theme-options.php:142
2052
+ msgid "Forms"
2053
+ msgstr ""
2054
+
2055
+ #: app/view/admin/theme-options.php:145
2056
+ msgid "Calendar general"
2057
+ msgstr ""
2058
+
2059
+ #: app/view/admin/theme-options.php:148
2060
+ msgid "Month/week/day view"
2061
+ msgstr ""
2062
+
2063
+ #: app/view/admin/theme-options.php:151
2064
+ msgid "Agenda view"
2065
+ msgstr ""
2066
+
2067
+ #: app/view/admin/theme-options.php:169
2068
+ msgid "Save Options"
2069
+ msgstr ""
2070
+
2071
+ #: app/view/admin/theme-options.php:177
2072
+ msgid "Reset to Defaults"
2073
+ msgstr ""
2074
+
2075
+ #: app/view/admin/theme-switching.php:31
2076
+ msgid "All-in-One Event Calendar: Themes"
2077
+ msgstr ""
2078
+
2079
+ #: app/view/admin/tickets.php:36
2080
+ msgid "Ticketing"
2081
+ msgstr ""
2082
+
2083
+ #: app/view/admin/tickets.php:37
2084
+ msgid "Ticketing<sup>beta</sup>"
2085
+ msgstr ""
2086
+
2087
+ #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2088
+ msgid "Time.ly Ticketing<sup>beta</sup>"
2089
+ msgstr ""
2090
+
2091
+ #: app/view/admin/settings.php:98
2092
+ msgctxt "meta box"
2093
+ msgid "Timely"
2094
+ msgstr ""
2095
+
2096
+ #: app/view/admin/settings.php:140
2097
+ msgid "Viewing Events"
2098
+ msgstr ""
2099
+
2100
+ #: app/view/admin/settings.php:143
2101
+ msgid "Adding/Editing Events"
2102
+ msgstr ""
2103
+
2104
+ #: app/view/admin/settings.php:146
2105
+ msgid "Advanced"
2106
+ msgstr ""
2107
+
2108
+ #: app/view/admin/settings.php:148
2109
+ msgid "Advanced Settings"
2110
+ msgstr ""
2111
+
2112
+ #: app/view/admin/settings.php:149
2113
+ msgid "Shortcodes"
2114
+ msgstr ""
2115
+
2116
+ #: app/view/admin/settings.php:150
2117
+ msgid "Email Templates"
2118
+ msgstr ""
2119
+
2120
+ #: app/view/admin/settings.php:151
2121
+ msgid "External Services"
2122
+ msgstr ""
2123
+
2124
+ #: app/view/admin/settings.php:152
2125
+ msgid "Cache Report"
2126
+ msgstr ""
2127
+
2128
+ #: app/view/admin/settings.php:171
2129
+ msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2130
+ msgstr ""
2131
+
2132
+ #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2133
+ #: public/admin/box_ask_customer_review.php:112
2134
+ #: public/admin/box_ask_customer_review.php:126
2135
+ #: public/admin/box_ask_customer_review.php:140
2136
+ #: public/admin/box_ask_customer_review.php:158
2137
+ #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2138
+ msgid "This field is required."
2139
+ msgstr ""
2140
+
2141
+ #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2142
+ msgid "Register"
2143
+ msgstr ""
2144
+
2145
+ #: app/view/admin/settings.php:184
2146
+ msgid "Sign in"
2147
+ msgstr ""
2148
+
2149
+ #: app/view/admin/settings.php:185
2150
+ msgid "You are successfully signed in to <b>Timely Network</b>."
2151
+ msgstr ""
2152
+
2153
+ #: app/view/admin/settings.php:186
2154
+ msgid "Sign out"
2155
+ msgstr ""
2156
+
2157
+ #: app/view/admin/settings.php:187
2158
+ msgid "Hide form"
2159
+ msgstr ""
2160
+
2161
+ #: app/view/admin/settings.php:188
2162
+ msgid "Show form"
2163
+ msgstr ""
2164
+
2165
+ #: app/view/admin/settings.php:189
2166
+ msgid "Full Name:"
2167
+ msgstr ""
2168
+
2169
+ #: app/view/admin/settings.php:190
2170
+ msgid "Email:"
2171
+ msgstr ""
2172
+
2173
+ #: app/view/admin/settings.php:191
2174
+ msgid "Password:"
2175
+ msgstr ""
2176
+
2177
+ #: app/view/admin/settings.php:192
2178
+ msgid "Confirm Password:"
2179
+ msgstr ""
2180
+
2181
+ #: app/view/admin/get-repeat-box.php:483
2182
+ msgid "fourth"
2183
+ msgstr ""
2184
+
2185
+ #: app/view/admin/get-repeat-box.php:495
2186
+ msgid "Sunday"
2187
+ msgstr ""
2188
+
2189
+ #: app/view/admin/get-repeat-box.php:496
2190
+ msgid "Monday"
2191
+ msgstr ""
2192
+
2193
+ #: app/view/admin/get-repeat-box.php:497
2194
+ msgid "Tuesday"
2195
+ msgstr ""
2196
+
2197
+ #: app/view/admin/get-repeat-box.php:498
2198
+ msgid "Wednesday"
2199
+ msgstr ""
2200
+
2201
+ #: app/view/admin/get-repeat-box.php:499
2202
+ msgid "Thursday"
2203
+ msgstr ""
2204
+
2205
+ #: app/view/admin/get-repeat-box.php:500
2206
+ msgid "Friday"
2207
+ msgstr ""
2208
+
2209
+ #: app/view/admin/get-repeat-box.php:501
2210
+ msgid "Saturday"
2211
+ msgstr ""
2212
+
2213
+ #: app/view/admin/get-repeat-box.php:503
2214
+ msgid "day"
2215
+ msgstr ""
2216
+
2217
+ #: app/view/admin/get-repeat-box.php:504
2218
+ msgid "weekday"
2219
+ msgstr ""
2220
+
2221
+ #: app/view/admin/get-repeat-box.php:505
2222
+ msgid "weekend day"
2223
+ msgstr ""
2224
+
2225
+ #: app/view/admin/get-repeat-box.php:571
2226
+ msgid "year(s)"
2227
+ msgstr ""
2228
+
2229
+ #: app/view/admin/nav.php:22
2230
+ msgid "<a href=\"%s\">Settings</a>"
2231
+ msgstr ""
2232
+
2233
+ #: app/view/admin/nav.php:28
2234
+ msgid "<a href=\"%s\">Check for updates</a>"
2235
+ msgstr ""
2236
+
2237
+ #: app/view/admin/organize.php:100
2238
+ msgid "Organize Events"
2239
+ msgstr ""
2240
+
2241
+ #: app/view/admin/settings.php:30
2242
+ msgid "All-in-One Event Calendar: Settings"
2243
+ msgstr ""
2244
+
2245
+ #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2246
+ #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2247
+ msgid "Settings"
2248
+ msgstr ""
2249
+
2250
+ #: app/view/admin/settings.php:89
2251
+ msgctxt "meta box"
2252
+ msgid "General Settings"
2253
+ msgstr ""
2254
+
2255
+ #: app/view/admin/get-repeat-box.php:480
2256
+ msgid "first"
2257
+ msgstr ""
2258
+
2259
+ #: app/view/admin/get-repeat-box.php:481
2260
+ msgid "second"
2261
+ msgstr ""
2262
+
2263
+ #: app/view/admin/get-repeat-box.php:482
2264
+ msgid "third"
2265
+ msgstr ""
2266
+
2267
+ #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2268
+ msgid "Import Feeds"
2269
+ msgstr ""
2270
+
2271
+ #: app/view/admin/calendar-feeds.php:48
2272
+ msgctxt "meta box"
2273
+ msgid "Feed Subscriptions"
2274
+ msgstr ""
2275
+
2276
+ #: app/view/admin/calendar-feeds.php:65
2277
+ msgid "All-in-One Event Calendar: Import Feeds"
2278
+ msgstr ""
2279
+
2280
+ #: app/view/admin/event-category.php:30
2281
+ msgid "Color"
2282
+ msgstr ""
2283
+
2284
+ #: app/view/admin/event-category.php:32
2285
+ msgid "Image"
2286
+ msgstr ""
2287
+
2288
+ #: app/view/admin/event-category.php:155
2289
+ msgid "Category Color"
2290
+ msgstr ""
2291
+
2292
+ #: app/view/admin/event-category.php:156
2293
+ msgid "Events in this category will be identified by this color"
2294
+ msgstr ""
2295
+
2296
+ #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2297
+ msgid "Category Image"
2298
+ msgstr ""
2299
+
2300
+ #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2301
+ msgid "Add Image"
2302
+ msgstr ""
2303
+
2304
+ #: app/view/admin/event-category.php:195
2305
+ msgid "Remove Image"
2306
+ msgstr ""
2307
+
2308
+ #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2309
+ msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2310
+ msgstr ""
2311
+
2312
+ #: app/view/admin/get-repeat-box.php:94
2313
+ msgid "times"
2314
+ msgstr ""
2315
+
2316
+ #: app/view/admin/get-repeat-box.php:164
2317
+ msgid "Recurrence rule cannot be empty."
2318
+ msgstr ""
2319
+
2320
+ #: app/view/admin/get-repeat-box.php:182
2321
+ msgid "Recurrence rule was not provided."
2322
+ msgstr ""
2323
+
2324
+ #: app/view/admin/get-repeat-box.php:209
2325
+ msgid "Never"
2326
+ msgstr ""
2327
+
2328
+ #: app/view/admin/get-repeat-box.php:210
2329
+ msgid "After"
2330
+ msgstr ""
2331
+
2332
+ #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2333
+ msgid "On date"
2334
+ msgstr ""
2335
+
2336
+ #: app/view/admin/get-repeat-box.php:247
2337
+ msgid "day(s)"
2338
+ msgstr ""
2339
+
2340
+ #: app/view/admin/get-repeat-box.php:330
2341
+ msgid "week(s)"
2342
+ msgstr ""
2343
+
2344
+ #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2345
+ #: lib/recurrence/rule.php:298
2346
+ msgid "last"
2347
+ msgstr ""
2348
+
2349
+ #: app/view/admin/get-repeat-box.php:426
2350
+ msgid "month(s)"
2351
+ msgstr ""
2352
+
2353
+ #: app/model/settings.php:929
2354
+ msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2355
+ msgstr ""
2356
+
2357
+ #: app/model/settings.php:932
2358
+ msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2359
+ msgstr ""
2360
+
2361
+ #: app/model/settings.php:944
2362
+ msgid "Current <strong>robots.txt</strong> on this site"
2363
+ msgstr ""
2364
+
2365
+ #: app/model/settings.php:948
2366
+ msgid ""
2367
+ "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2368
+ "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2369
+ "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2370
+ "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2371
+ "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2372
+ msgstr ""
2373
+
2374
+ #: app/model/settings.php:965
2375
+ msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2376
+ msgstr ""
2377
+
2378
+ #: app/model/settings.php:988
2379
+ msgid "Templates cache improves site performance"
2380
+ msgstr ""
2381
+
2382
+ #: app/model/settings.php:1001
2383
+ msgid "Display events in <strong>calendar time zone</strong>"
2384
+ msgstr ""
2385
+
2386
+ #: app/model/settings.php:1004
2387
+ msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2388
+ msgstr ""
2389
+
2390
+ #: app/view/admin/add-new-event.php:26
2391
+ msgid "Event Details"
2392
+ msgstr ""
2393
+
2394
+ #: app/view/admin/add-new-event.php:423
2395
+ msgid "Set banner image"
2396
+ msgstr ""
2397
+
2398
+ #: app/view/admin/add-new-event.php:424
2399
+ msgid "Remove banner image"
2400
+ msgstr ""
2401
+
2402
+ #: app/view/admin/add-ons.php:68
2403
+ msgid "Add-ons for All In One Event Calendar"
2404
+ msgstr ""
2405
+
2406
+ #: app/view/admin/add-ons.php:71
2407
+ msgid "Browse All Extensions"
2408
+ msgstr ""
2409
+
2410
+ #: app/view/admin/add-ons.php:74
2411
+ msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2412
+ msgstr ""
2413
+
2414
+ #: app/view/admin/add-ons.php:77
2415
+ msgid "There was an error retrieving the extensions list from the server. Please try again later."
2416
+ msgstr ""
2417
+
2418
+ #: app/view/admin/all-events.php:16
2419
+ msgid "Author"
2420
+ msgstr ""
2421
+
2422
+ #: app/view/admin/all-events.php:17
2423
+ msgid "Post Date"
2424
+ msgstr ""
2425
+
2426
+ #: app/view/admin/all-events.php:18
2427
+ msgid "Event date/time"
2428
+ msgstr ""
2429
+
2430
+ #: app/view/admin/all-events.php:22
2431
+ msgid "Ticket Types"
2432
+ msgstr ""
2433
+
2434
+ #: app/view/admin/all-events.php:134
2435
+ msgid "Show All "
2436
+ msgstr ""
2437
+
2438
+ #: app/view/admin/all-events.php:147
2439
+ msgid "Show All Authors"
2440
+ msgstr ""
2441
+
2442
+ #: app/model/settings.php:746
2443
+ msgid "Strict compatibility content filtering"
2444
+ msgstr ""
2445
+
2446
+ #: app/model/settings.php:758
2447
+ msgid " <strong>Hide featured image</strong> from event details page"
2448
+ msgstr ""
2449
+
2450
+ #: app/model/settings.php:761
2451
+ msgid "Select this option if your theme already displays each post's featured image."
2452
+ msgstr ""
2453
+
2454
+ #: app/model/settings.php:772
2455
+ msgid "Input dates in this format"
2456
+ msgstr ""
2457
+
2458
+ #: app/model/settings.php:777
2459
+ msgid "Default (d/m/yyyy)"
2460
+ msgstr ""
2461
+
2462
+ #: app/model/settings.php:781
2463
+ msgid "US (m/d/yyyy)"
2464
+ msgstr ""
2465
+
2466
+ #: app/model/settings.php:785
2467
+ msgid "ISO 8601 (yyyy-m-d)"
2468
+ msgstr ""
2469
+
2470
+ #: app/model/settings.php:789
2471
+ msgid "Dotted (m.d.yyyy)"
2472
+ msgstr ""
2473
+
2474
+ #: app/model/settings.php:801
2475
+ msgid " Use <strong>24h time</strong> in time pickers"
2476
+ msgstr ""
2477
+
2478
+ #: app/model/settings.php:812
2479
+ msgid "<strong>Disable address autocomplete</strong> function"
2480
+ msgstr ""
2481
+
2482
+ #: app/model/settings.php:823
2483
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2484
+ msgstr ""
2485
+
2486
+ #: app/model/settings.php:839
2487
+ msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2488
+ msgstr ""
2489
+
2490
+ #: app/model/settings.php:842
2491
+ msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2492
+ msgstr ""
2493
+
2494
+ #: app/model/settings.php:863
2495
+ msgid "Move calendar into this DOM element"
2496
+ msgstr ""
2497
+
2498
+ #: app/model/settings.php:865
2499
+ msgid ""
2500
+ "Optional. Use this JavaScript-based shortcut to place the\n"
2501
+ "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2502
+ "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2503
+ "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2504
+ "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2505
+ "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2506
+ "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2507
+ "\t\t\t\t\t\tby the calendar."
2508
+ msgstr ""
2509
+
2510
+ #: app/model/settings.php:884
2511
+ msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2512
+ msgstr ""
2513
+
2514
+ #: app/model/settings.php:887
2515
+ msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2516
+ msgstr ""
2517
+
2518
+ #: app/model/settings.php:899
2519
+ msgid "Disable <strong>gzip</strong> compression."
2520
+ msgstr ""
2521
+
2522
+ #: app/model/settings.php:902
2523
+ msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2524
+ msgstr ""
2525
+
2526
+ #: app/model/settings.php:914
2527
+ msgid "Use frontend rendering."
2528
+ msgstr ""
2529
+
2530
+ #: app/model/settings.php:917
2531
+ msgid "Renders calendar views on the client rather than the server; can improve performance."
2532
+ msgstr ""
2533
+
2534
+ #: app/model/settings.php:493 app/view/calendar/widget.php:128
2535
+ msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2536
+ msgstr ""
2537
+
2538
+ #: app/model/settings.php:508
2539
+ msgid "Default calendar start date (optional)"
2540
+ msgstr ""
2541
+
2542
+ #: app/model/settings.php:519
2543
+ msgid "Agenda pages show at most"
2544
+ msgstr ""
2545
+
2546
+ #: app/model/settings.php:532
2547
+ msgid "Week/Day view starts at"
2548
+ msgstr ""
2549
+
2550
+ #: app/model/settings.php:545
2551
+ msgid "Week/Day view ends at"
2552
+ msgstr ""
2553
+
2554
+ #: app/model/settings.php:558
2555
+ msgid "<strong>Word-wrap event stubs</strong> in Month view"
2556
+ msgstr ""
2557
+
2558
+ #: app/model/settings.php:561
2559
+ msgid "Only applies to events that span a single day."
2560
+ msgstr ""
2561
+
2562
+ #: app/model/settings.php:573
2563
+ msgid ""
2564
+ "In <span class=\"ai1ec-tooltip-toggle\"\n"
2565
+ "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2566
+ "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2567
+ "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2568
+ "\t\t\t\t\t\tfrom last day shown</strong>"
2569
+ msgstr ""
2570
+
2571
+ #: app/model/settings.php:589
2572
+ msgid "Keep all events <strong>expanded</strong> in Agenda view"
2573
+ msgstr ""
2574
+
2575
+ #: app/model/settings.php:601
2576
+ msgid "<strong>Show year</strong> in calendar date labels"
2577
+ msgstr ""
2578
+
2579
+ #: app/model/settings.php:613
2580
+ msgid "<strong>Show location in event titles</strong> in calendar views"
2581
+ msgstr ""
2582
+
2583
+ #: app/model/settings.php:625
2584
+ msgid "<strong>Exclude</strong> events from search results"
2585
+ msgstr ""
2586
+
2587
+ #: app/model/settings.php:637
2588
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2589
+ msgstr ""
2590
+
2591
+ #: app/model/settings.php:649
2592
+ msgid "Hide <strong>Get a Timely Calendar</strong> button"
2593
+ msgstr ""
2594
+
2595
+ #: app/model/settings.php:661
2596
+ msgid " Hide <strong>Google Maps</strong> until clicked"
2597
+ msgstr ""
2598
+
2599
+ #: app/model/settings.php:673
2600
+ msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2601
+ msgstr ""
2602
+
2603
+ #: app/model/settings.php:676
2604
+ msgid "Only applies to first visible calendar found on the page."
2605
+ msgstr ""
2606
+
2607
+ #: app/model/settings.php:688
2608
+ msgid "Offset affixed filter bar vertically by"
2609
+ msgstr ""
2610
+
2611
+ #: app/model/settings.php:703
2612
+ msgid "Wide screens only (&#8805; 1200px)"
2613
+ msgstr ""
2614
+
2615
+ #: app/model/settings.php:718
2616
+ msgid "Tablets only (< 980px)"
2617
+ msgstr ""
2618
+
2619
+ #: app/model/settings.php:733
2620
+ msgid "Phones only (< 768px)"
2621
+ msgstr ""
2622
+
2623
+ #: app/model/api.php:456
2624
+ msgid "Not available"
2625
+ msgstr ""
2626
+
2627
+ #: app/model/api.php:659
2628
+ msgid "%s.<br/>Detail: %s."
2629
+ msgstr ""
2630
+
2631
+ #: app/model/api.php:664
2632
+ msgid "API URL: %s.<br/>Detail: %s - %s"
2633
+ msgstr ""
2634
+
2635
+ #: app/model/api.php:672
2636
+ msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2637
+ msgstr ""
2638
+
2639
+ #: app/model/api.php:679
2640
+ msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2641
+ msgstr ""
2642
+
2643
+ #: app/model/event/parent.php:186
2644
+ msgid "Edit &#8220;%s&#8221;"
2645
+ msgstr ""
2646
+
2647
+ #: app/model/event/parent.php:193
2648
+ msgid "Base Event"
2649
+ msgstr ""
2650
+
2651
+ #: app/model/review.php:169
2652
+ msgid "Feedback provided by user"
2653
+ msgstr ""
2654
+
2655
+ #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2656
+ msgid "Name"
2657
+ msgstr ""
2658
+
2659
+ #: app/model/review.php:173
2660
+ msgid "E-mail"
2661
+ msgstr ""
2662
+
2663
+ #: app/model/review.php:175
2664
+ msgid "Site URL"
2665
+ msgstr ""
2666
+
2667
+ #: app/model/review.php:177
2668
+ msgid "Message"
2669
+ msgstr ""
2670
+
2671
+ #: app/model/settings.php:401
2672
+ #: lib/html/element/setting/calendar-page-selector.php:50
2673
+ msgid "Calendar page"
2674
+ msgstr ""
2675
+
2676
+ #: app/model/settings.php:411
2677
+ msgid "Week starts on"
2678
+ msgstr ""
2679
+
2680
+ #: app/model/settings.php:424
2681
+ msgid "Available views"
2682
+ msgstr ""
2683
+
2684
+ #: app/