The Events Calendar - Version 4.6.7

Version Description

Download this release

Release Info

Developer bordoni
Plugin Icon The Events Calendar
Version 4.6.7
Comparing to
See all releases

Code changes from version 4.6.6 to 4.6.7

common/readme.txt CHANGED
@@ -2,6 +2,10 @@
2
 
3
  == Changelog ==
4
 
 
 
 
 
5
  = [4.7.2] 2017-11-21 =
6
 
7
  * Feature - Added Template class which adds a few layers of filtering to any template file included
2
 
3
  == Changelog ==
4
 
5
+ = [4.7.3] TBD =
6
+
7
+ * Tweak - Tweaked Tribe Datepicker to prevent conflicts with third-party styles [94161]
8
+
9
  = [4.7.2] 2017-11-21 =
10
 
11
  * Feature - Added Template class which adds a few layers of filtering to any template file included
common/src/Tribe/Container.php CHANGED
@@ -248,7 +248,7 @@ if ( ! function_exists( 'tribe_register_provider' ) ) {
248
  * bound to `$classOrInterface` and return the value of a call to `$method` method with the call arguments.
249
  *
250
  * @since 4.7
251
- * @since TBD Included the $argsN params
252
  *
253
  * @param string $slug A class or interface fully qualified name or a string slug.
254
  * @param string $method The method that should be called on the resolved implementation with the
@@ -281,7 +281,7 @@ if ( ! function_exists( 'tribe_register_provider' ) ) {
281
  *
282
  * add_filter( 'admin_title', tribe_callback_return( __( 'Ready to work.' ) ) );
283
  *
284
- * @since TBD
285
  *
286
  * @param mixed $value The value to be returned
287
  *
248
  * bound to `$classOrInterface` and return the value of a call to `$method` method with the call arguments.
249
  *
250
  * @since 4.7
251
+ * @since 4.6.2 Included the $argsN params
252
  *
253
  * @param string $slug A class or interface fully qualified name or a string slug.
254
  * @param string $method The method that should be called on the resolved implementation with the
281
  *
282
  * add_filter( 'admin_title', tribe_callback_return( __( 'Ready to work.' ) ) );
283
  *
284
+ * @since 4.6.2
285
  *
286
  * @param mixed $value The value to be returned
287
  *
common/src/Tribe/Cost_Utils.php CHANGED
@@ -104,7 +104,10 @@ class Tribe__Cost_Utils {
104
  * return int|float|string
105
  */
106
  public function maybe_replace_cost_with_free( $cost ) {
107
- if ( '0' === (string) $cost ) {
 
 
 
108
  return esc_html__( 'Free', 'the-events-calendar' );
109
  }
110
 
104
  * return int|float|string
105
  */
106
  public function maybe_replace_cost_with_free( $cost ) {
107
+
108
+ $cost_with_period = $this->convert_decimal_separator( $cost );
109
+
110
+ if ( '0.00' === number_format( $cost_with_period, 2, '.', ',' ) ) {
111
  return esc_html__( 'Free', 'the-events-calendar' );
112
  }
113
 
common/src/Tribe/Main.php CHANGED
@@ -17,7 +17,7 @@ class Tribe__Main {
17
  const OPTIONNAME = 'tribe_events_calendar_options';
18
  const OPTIONNAMENETWORK = 'tribe_events_calendar_network_options';
19
 
20
- const VERSION = '4.7.2';
21
 
22
  const FEED_URL = 'https://theeventscalendar.com/feed/';
23
 
17
  const OPTIONNAME = 'tribe_events_calendar_options';
18
  const OPTIONNAMENETWORK = 'tribe_events_calendar_network_options';
19
 
20
+ const VERSION = '4.7.3';
21
 
22
  const FEED_URL = 'https://theeventscalendar.com/feed/';
23
 
common/src/Tribe/Template.php CHANGED
@@ -3,7 +3,7 @@ class Tribe__Template {
3
  /**
4
  * The folders into we will look for the template
5
  *
6
- * @since TBD
7
  *
8
  * @var array
9
  */
@@ -12,7 +12,7 @@ class Tribe__Template {
12
  /**
13
  * The origin class for the plugin where the template lives
14
  *
15
- * @since TBD
16
  *
17
  * @var object
18
  */
@@ -21,7 +21,7 @@ class Tribe__Template {
21
  /**
22
  * The local context for templates, muteable on every self::template() call
23
  *
24
- * @since TBD
25
  *
26
  * @var array
27
  */
@@ -30,7 +30,7 @@ class Tribe__Template {
30
  /**
31
  * The global context for this instance of templates
32
  *
33
- * @since TBD
34
  *
35
  * @var array
36
  */
@@ -39,7 +39,7 @@ class Tribe__Template {
39
  /**
40
  * Allow chaing if class will extract data from the local context
41
  *
42
- * @since TBD
43
  *
44
  * @var boolean
45
  */
@@ -48,7 +48,7 @@ class Tribe__Template {
48
  /**
49
  * Base template for where to look for template
50
  *
51
- * @since TBD
52
  *
53
  * @var array
54
  */
@@ -57,7 +57,7 @@ class Tribe__Template {
57
  /**
58
  * Configures the class origin plugin path
59
  *
60
- * @since TBD
61
  *
62
  * @param object|string $origin The base origin for the templates
63
  *
@@ -92,7 +92,7 @@ class Tribe__Template {
92
  /**
93
  * Configures the class with the base folder in relation to the Origin
94
  *
95
- * @since TBD
96
  *
97
  * @param array|string $folder Which folder we are going to look for templates
98
  *
@@ -118,7 +118,7 @@ class Tribe__Template {
118
  /**
119
  * Configures the class global context
120
  *
121
- * @since TBD
122
  *
123
  * @param array $context Default global Context
124
  *
@@ -134,7 +134,7 @@ class Tribe__Template {
134
  /**
135
  * Configures if the class will extract context for template
136
  *
137
- * @since TBD
138
  *
139
  * @param bool $value Should we extract context for templates
140
  *
@@ -150,7 +150,7 @@ class Tribe__Template {
150
  /**
151
  * Gets the base path for this Instance of Templates
152
  *
153
- * @since TBD
154
  *
155
  * @return string
156
  */
@@ -174,7 +174,7 @@ class Tribe__Template {
174
  * Sets a Index inside of the global or local context
175
  * Final to prevent extending the class when the `get` already exists on the child class
176
  *
177
- * @since TBD
178
  *
179
  * @see Tribe__Utils__Array::set
180
  *
@@ -196,7 +196,7 @@ class Tribe__Template {
196
  * Allows filtering the the getting of Context variables, also short circuiting
197
  * Following the same strucuture as WP Core
198
  *
199
- * @since TBD
200
  *
201
  * @param mixed $value The value that will be filtered
202
  * @param array $index Specify each nested index in order.
@@ -217,7 +217,7 @@ class Tribe__Template {
217
  * Sets a Index inside of the global or local context
218
  * Final to prevent extending the class when the `set` already exists on the child class
219
  *
220
- * @since TBD
221
  *
222
  * @see Tribe__Utils__Array::set
223
  *
@@ -240,7 +240,7 @@ class Tribe__Template {
240
  /**
241
  * Merges local and global context, and saves it locally
242
  *
243
- * @since TBD
244
  *
245
  * @param array $context Local Context array of data
246
  * @param string $file Complete path to include the PHP File
@@ -260,7 +260,7 @@ class Tribe__Template {
260
  /**
261
  * Allows filtering the Local context
262
  *
263
- * @since TBD
264
  *
265
  * @param array $context Local Context array of data
266
  * @param string $file Complete path to include the PHP File
@@ -275,7 +275,7 @@ class Tribe__Template {
275
  /**
276
  * A very simple method to include a Aggregator Template, allowing filtering and additions using hooks.
277
  *
278
- * @since TBD
279
  *
280
  * @param string $name Which file we are talking about including
281
  * @param array $context Any context data you need to expose to this file
@@ -301,7 +301,7 @@ class Tribe__Template {
301
  /**
302
  * A more Specific Filter that will include the template name
303
  *
304
- * @since TBD
305
  *
306
  * @param string $file Complete path to include the PHP File
307
  * @param array $name Template name
@@ -322,7 +322,7 @@ class Tribe__Template {
322
  /**
323
  * Fires an Action before including the template file
324
  *
325
- * @since TBD
326
  *
327
  * @param string $file Complete path to include the PHP File
328
  * @param array $name Template name
@@ -351,7 +351,7 @@ class Tribe__Template {
351
  /**
352
  * Fires an Action After including the template file
353
  *
354
- * @since TBD
355
  *
356
  * @param string $file Complete path to include the PHP File
357
  * @param array $name Template name
@@ -365,7 +365,7 @@ class Tribe__Template {
365
  /**
366
  * Allow users to filter the final HTML
367
  *
368
- * @since TBD
369
  *
370
  * @param string $html The final HTML
371
  * @param string $file Complete path to include the PHP File
3
  /**
4
  * The folders into we will look for the template
5
  *
6
+ * @since 4.6.2
7
  *
8
  * @var array
9
  */
12
  /**
13
  * The origin class for the plugin where the template lives
14
  *
15
+ * @since 4.6.2
16
  *
17
  * @var object
18
  */
21
  /**
22
  * The local context for templates, muteable on every self::template() call
23
  *
24
+ * @since 4.6.2
25
  *
26
  * @var array
27
  */
30
  /**
31
  * The global context for this instance of templates
32
  *
33
+ * @since 4.6.2
34
  *
35
  * @var array
36
  */
39
  /**
40
  * Allow chaing if class will extract data from the local context
41
  *
42
+ * @since 4.6.2
43
  *
44
  * @var boolean
45
  */
48
  /**
49
  * Base template for where to look for template
50
  *
51
+ * @since 4.6.2
52
  *
53
  * @var array
54
  */
57
  /**
58
  * Configures the class origin plugin path
59
  *
60
+ * @since 4.6.2
61
  *
62
  * @param object|string $origin The base origin for the templates
63
  *
92
  /**
93
  * Configures the class with the base folder in relation to the Origin
94
  *
95
+ * @since 4.6.2
96
  *
97
  * @param array|string $folder Which folder we are going to look for templates
98
  *
118
  /**
119
  * Configures the class global context
120
  *
121
+ * @since 4.6.2
122
  *
123
  * @param array $context Default global Context
124
  *
134
  /**
135
  * Configures if the class will extract context for template
136
  *
137
+ * @since 4.6.2
138
  *
139
  * @param bool $value Should we extract context for templates
140
  *
150
  /**
151
  * Gets the base path for this Instance of Templates
152
  *
153
+ * @since 4.6.2
154
  *
155
  * @return string
156
  */
174
  * Sets a Index inside of the global or local context
175
  * Final to prevent extending the class when the `get` already exists on the child class
176
  *
177
+ * @since 4.6.2
178
  *
179
  * @see Tribe__Utils__Array::set
180
  *
196
  * Allows filtering the the getting of Context variables, also short circuiting
197
  * Following the same strucuture as WP Core
198
  *
199
+ * @since 4.6.2
200
  *
201
  * @param mixed $value The value that will be filtered
202
  * @param array $index Specify each nested index in order.
217
  * Sets a Index inside of the global or local context
218
  * Final to prevent extending the class when the `set` already exists on the child class
219
  *
220
+ * @since 4.6.2
221
  *
222
  * @see Tribe__Utils__Array::set
223
  *
240
  /**
241
  * Merges local and global context, and saves it locally
242
  *
243
+ * @since 4.6.2
244
  *
245
  * @param array $context Local Context array of data
246
  * @param string $file Complete path to include the PHP File
260
  /**
261
  * Allows filtering the Local context
262
  *
263
+ * @since 4.6.2
264
  *
265
  * @param array $context Local Context array of data
266
  * @param string $file Complete path to include the PHP File
275
  /**
276
  * A very simple method to include a Aggregator Template, allowing filtering and additions using hooks.
277
  *
278
+ * @since 4.6.2
279
  *
280
  * @param string $name Which file we are talking about including
281
  * @param array $context Any context data you need to expose to this file
301
  /**
302
  * A more Specific Filter that will include the template name
303
  *
304
+ * @since 4.6.2
305
  *
306
  * @param string $file Complete path to include the PHP File
307
  * @param array $name Template name
322
  /**
323
  * Fires an Action before including the template file
324
  *
325
+ * @since 4.6.2
326
  *
327
  * @param string $file Complete path to include the PHP File
328
  * @param array $name Template name
351
  /**
352
  * Fires an Action After including the template file
353
  *
354
+ * @since 4.6.2
355
  *
356
  * @param string $file Complete path to include the PHP File
357
  * @param array $name Template name
365
  /**
366
  * Allow users to filter the final HTML
367
  *
368
+ * @since 4.6.2
369
  *
370
  * @param string $html The final HTML
371
  * @param string $file Complete path to include the PHP File
common/src/Tribe/Utils/Callback.php CHANGED
@@ -5,7 +5,7 @@ class Tribe__Utils__Callback {
5
  /**
6
  * Where we store all the Callbacks to allow removing of hooks
7
  *
8
- * @since TBD
9
  *
10
  * @var array
11
  */
@@ -14,7 +14,7 @@ class Tribe__Utils__Callback {
14
  /**
15
  * The Prefix we use for the Overloading replacement
16
  *
17
- * @since TBD
18
  *
19
  * @var string
20
  */
@@ -27,7 +27,7 @@ class Tribe__Utils__Callback {
27
  * The lambda function suitable to use as a callback; when called the function will build the implementation
28
  * bound to `$classOrInterface` and return the value of a call to `$method` method with the call arguments.
29
  *
30
- * @since TBD
31
  *
32
  * @param string $slug A class or interface fully qualified name or a string slug.
33
  * @param string $method The method that should be called on the resolved implementation with the
@@ -68,7 +68,7 @@ class Tribe__Utils__Callback {
68
  /**
69
  * Returns the Value passed as a simple Routing method for tribe_callback_return
70
  *
71
- * @since TBD
72
  *
73
  * @param mixed $value Value to be Routed
74
  *
@@ -82,7 +82,7 @@ class Tribe__Utils__Callback {
82
  * Calls the Lambda function provided by Di52 to allow passing of Params without having to create more
83
  * methods into classes for simple callbacks that will only have a pre-determined value.
84
  *
85
- * @since TBD
86
  *
87
  * @param string $slug A class or interface fully qualified name or a string slug.
88
  * @param string $method The method that should be called on the resolved implementation with the
5
  /**
6
  * Where we store all the Callbacks to allow removing of hooks
7
  *
8
+ * @since 4.6.2
9
  *
10
  * @var array
11
  */
14
  /**
15
  * The Prefix we use for the Overloading replacement
16
  *
17
+ * @since 4.6.2
18
  *
19
  * @var string
20
  */
27
  * The lambda function suitable to use as a callback; when called the function will build the implementation
28
  * bound to `$classOrInterface` and return the value of a call to `$method` method with the call arguments.
29
  *
30
+ * @since 4.6.2
31
  *
32
  * @param string $slug A class or interface fully qualified name or a string slug.
33
  * @param string $method The method that should be called on the resolved implementation with the
68
  /**
69
  * Returns the Value passed as a simple Routing method for tribe_callback_return
70
  *
71
+ * @since 4.6.2
72
  *
73
  * @param mixed $value Value to be Routed
74
  *
82
  * Calls the Lambda function provided by Di52 to allow passing of Params without having to create more
83
  * methods into classes for simple callbacks that will only have a pre-determined value.
84
  *
85
+ * @since 4.6.2
86
  *
87
  * @param string $slug A class or interface fully qualified name or a string slug.
88
  * @param string $method The method that should be called on the resolved implementation with the
common/src/functions/template-tags/general.php CHANGED
@@ -601,3 +601,40 @@ function tribe_assets( $origin, $assets, $action = null, $arguments = array() )
601
 
602
  return $registered;
603
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
601
 
602
  return $registered;
603
  }
604
+
605
+ if ( ! function_exists( 'tribe_doing_frontend' ) ) {
606
+ /**
607
+ * Registers truthy or falsy callbacks on the filters used to detect if
608
+ * any frontend operation is being done for logged in users or not.
609
+ *
610
+ * @since TBd
611
+ *
612
+ * @param bool $doing_frontend Whether what is being done happens in the
613
+ * context of the frontend or not.
614
+ */
615
+ function tribe_doing_frontend( $doing_frontend ) {
616
+ $callback = $doing_frontend ? '__return_true' : '__return_false';
617
+
618
+ add_filter( 'tribe_doing_frontend', $callback );
619
+ }
620
+ }
621
+
622
+ if ( ! function_exists( 'tribe_is_frontend' ) ) {
623
+ /**
624
+ * Whether we are currently performing a frontend operation or not.
625
+ *
626
+ * @since 4.6.2
627
+ *
628
+ * @return bool
629
+ */
630
+ function tribe_is_frontend() {
631
+ /**
632
+ * Whether we are currently performing a frontend operation or not.
633
+ *
634
+ * @since 4.6.2
635
+ *
636
+ * @param bool $is_frontend
637
+ */
638
+ return (bool) apply_filters( 'tribe_doing_frontend', false );
639
+ }
640
+ }
common/src/resources/css/datepicker.css CHANGED
@@ -35,7 +35,7 @@
35
  /* Icons
36
  ----------------------------------*/
37
 
38
- .tribe-ui-datepicker .ui-icon {
39
  display: inline-block;
40
  vertical-align: middle;
41
  margin-top: -4px;
@@ -44,6 +44,7 @@
44
  text-indent: -99999px;
45
  overflow: hidden;
46
  background-repeat: no-repeat;
 
47
  }
48
 
49
  .tribe-ui-datepicker .ui-widget-icon-block {
@@ -78,6 +79,9 @@
78
  margin-bottom: 1rem;
79
  position: relative;
80
  padding: 0;
 
 
 
81
  }
82
 
83
  .tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev,
@@ -86,6 +90,8 @@
86
  top: 50%;
87
  -webkit-transform: translateY(-50%);
88
  transform: translateY(-50%);
 
 
89
  }
90
 
91
  .tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev:before {
@@ -111,6 +117,8 @@
111
  .tribe-ui-datepicker .ui-datepicker-prev-hover,
112
  .tribe-ui-datepicker .ui-datepicker-next-hover {
113
  color: darken(#b1b1b1, 10%);
 
 
114
  }
115
 
116
  .tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev {
@@ -268,6 +276,7 @@
268
  .tribe-ui-datepicker.ui-widget {
269
  font-size: 19.2px;
270
  font-size: 1.2rem;
 
271
  }
272
 
273
  .tribe-ui-datepicker.ui-widget .ui-widget {
@@ -301,6 +310,9 @@ works properly when clicked or hovered */
301
  html .tribe-ui-datepicker .ui-button.ui-state-disabled:hover,
302
  html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
303
  color: #23282d;
 
 
 
304
  }
305
 
306
  .tribe-ui-datepicker .ui-state-default a,
@@ -323,6 +335,8 @@ html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
323
  .tribe-ui-datepicker .ui-button:hover,
324
  .tribe-ui-datepicker .ui-button:focus {
325
  color: #000;
 
 
326
  }
327
 
328
  .tribe-ui-datepicker .ui-state-hover a,
@@ -337,6 +351,8 @@ html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
337
  .tribe-ui-datepicker a.ui-button:focus {
338
  color: #b1b1b1;
339
  text-decoration: none;
 
 
340
  }
341
 
342
  .tribe-ui-datepicker .ui-visual-focus {
@@ -374,6 +390,8 @@ html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
374
  .tribe-ui-datepicker .ui-widget-header .ui-state-highlight {
375
  background: #ffffff;
376
  color: #363636;
 
 
377
  }
378
 
379
  .tribe-ui-datepicker .ui-state-checked {
35
  /* Icons
36
  ----------------------------------*/
37
 
38
+ .tribe-ui-datepicker.ui-datepicker .ui-datepicker-group span.ui-icon {
39
  display: inline-block;
40
  vertical-align: middle;
41
  margin-top: -4px;
44
  text-indent: -99999px;
45
  overflow: hidden;
46
  background-repeat: no-repeat;
47
+ background-image: none;
48
  }
49
 
50
  .tribe-ui-datepicker .ui-widget-icon-block {
79
  margin-bottom: 1rem;
80
  position: relative;
81
  padding: 0;
82
+ border: 0;
83
+ background-color: transparent;
84
+ background-image: none;
85
  }
86
 
87
  .tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev,
90
  top: 50%;
91
  -webkit-transform: translateY(-50%);
92
  transform: translateY(-50%);
93
+ line-height: 1.8em;
94
+ text-align: center;
95
  }
96
 
97
  .tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev:before {
117
  .tribe-ui-datepicker .ui-datepicker-prev-hover,
118
  .tribe-ui-datepicker .ui-datepicker-next-hover {
119
  color: darken(#b1b1b1, 10%);
120
+ border: 0;
121
+ background: none;
122
  }
123
 
124
  .tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev {
276
  .tribe-ui-datepicker.ui-widget {
277
  font-size: 19.2px;
278
  font-size: 1.2rem;
279
+ font-family: inherit;
280
  }
281
 
282
  .tribe-ui-datepicker.ui-widget .ui-widget {
310
  html .tribe-ui-datepicker .ui-button.ui-state-disabled:hover,
311
  html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
312
  color: #23282d;
313
+ border: 0;
314
+ background-color: transparent;
315
+ background-image: none;
316
  }
317
 
318
  .tribe-ui-datepicker .ui-state-default a,
335
  .tribe-ui-datepicker .ui-button:hover,
336
  .tribe-ui-datepicker .ui-button:focus {
337
  color: #000;
338
+ border: 0;
339
+ background: none;
340
  }
341
 
342
  .tribe-ui-datepicker .ui-state-hover a,
351
  .tribe-ui-datepicker a.ui-button:focus {
352
  color: #b1b1b1;
353
  text-decoration: none;
354
+ background-color: none;
355
+ background-image: none;
356
  }
357
 
358
  .tribe-ui-datepicker .ui-visual-focus {
390
  .tribe-ui-datepicker .ui-widget-header .ui-state-highlight {
391
  background: #ffffff;
392
  color: #363636;
393
+ border: 0;
394
+ background-image: none;
395
  }
396
 
397
  .tribe-ui-datepicker .ui-state-checked {
common/src/resources/css/datepicker.min.css CHANGED
@@ -1 +1 @@
1
- .tribe-ui-datepicker.ui-datepicker body,.tribe-ui-datepicker.ui-datepicker button,.tribe-ui-datepicker.ui-datepicker input,.tribe-ui-datepicker.ui-datepicker select,.tribe-ui-datepicker.ui-datepicker textarea{font-family:Verdana,Helvetica Neue,Helvetica,Arial,sans-serif}.tribe-ui-datepicker.ui-datepicker table{border:none}.tribe-ui-datepicker .ui-datepicker-month{font-weight:700}.tribe-ui-datepicker .ui-state-disabled{cursor:default!important;pointer-events:none}.tribe-ui-datepicker .ui-icon{display:inline-block;vertical-align:middle;margin-top:-4px;margin-top:-.25rem;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.tribe-ui-datepicker .ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.tribe-ui-datepicker.ui-datepicker{background:#fff;box-shadow:1px 1px 5px rgba(0,0,0,.5);width:17em;padding:1em;display:none}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-header{margin-bottom:16px;margin-bottom:1rem;position:relative;padding:0}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-next,.tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev:before{color:#b1b1b1;content:"\2190";cursor:pointer}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev:hover:before{color:#000}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-next:before{color:#b1b1b1;content:"\2192";cursor:pointer}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-next:hover:before{color:#000}.tribe-ui-datepicker .ui-datepicker-next-hover,.tribe-ui-datepicker .ui-datepicker-prev-hover{color:darken(#b1b1b1,10%)}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev{left:1px}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-next{right:1px}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev-hover{left:1px}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-next-hover{right:1px}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8;text-align:center}.tribe-ui-datepicker select.ui-datepicker-month,.tribe-ui-datepicker select.ui-datepicker-year{border:none;box-shadow:0 1px 0 rgba(0,0,0,.1);margin-right:1px;width:72px;width:4.5rem}.tribe-ui-datepicker.ui-datepicker table{width:100%;font-size:14.4px;font-size:.9rem;border-collapse:collapse;margin:0 0 6.4px;margin:0 0 .4rem}.tribe-ui-datepicker.ui-datepicker th{color:#b1b1b1;padding:11.2px 4.8px;padding:.7rem .3rem;text-align:center;border:0}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-calendar td{border:1px solid #ddd;padding:1px}.tribe-ui-datepicker.ui-datepicker td.ui-datepicker-unselectable{border:none}.tribe-ui-datepicker.ui-datepicker a.ui-state-active{background:#0085ba;color:#fff}.tribe-ui-datepicker.ui-datepicker td a,.tribe-ui-datepicker.ui-datepicker td span{display:block;padding:8px 3.2px;padding:.5rem .2rem;text-align:center;text-decoration:none}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:11.2px 0 0;margin:.7rem 0 0;padding:0 3.2px;padding:0 .2rem;border-left:0;border-right:0;border-bottom:0}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:8px 3.2px 6.4px;margin:.5rem .2rem .4rem;cursor:pointer;padding:3.2px 9.6px 4.8px;padding:.2rem .6rem .3rem;width:auto;overflow:visible}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left;background:#fff;border:1px solid #b1b1b1}.tribe-ui-datepicker.ui-datepicker button.ui-datepicker-close{background:linear-gradient(354deg,#0a55a0,#1288eb);border:1px solid #0085ba;color:#fff!important;font-weight:400}.tribe-ui-datepicker.ui-datepicker.ui-datepicker-multi{width:auto}.tribe-ui-datepicker.ui-datepicker-multi .ui-datepicker-group{float:left}.tribe-ui-datepicker.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto 6.4px;margin:0 auto .4rem}.tribe-ui-datepicker.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.tribe-ui-datepicker.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.tribe-ui-datepicker.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.tribe-ui-datepicker.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.tribe-ui-datepicker.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.tribe-ui-datepicker.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.tribe-ui-datepicker .ui-datepicker-row-break{clear:both;width:100%;font-size:0}.tribe-ui-datepicker.ui-widget{font-size:19.2px;font-size:1.2rem}.tribe-ui-datepicker.ui-widget .ui-widget,.tribe-ui-datepicker.ui-widget button,.tribe-ui-datepicker.ui-widget input,.tribe-ui-datepicker.ui-widget select,.tribe-ui-datepicker.ui-widget textarea{font-size:16px;font-size:1rem}.tribe-ui-datepicker .ui-button,.tribe-ui-datepicker .ui-state-default,.tribe-ui-datepicker.ui-widget-content .ui-state-default,.tribe-ui-datepicker.ui-widget-content a,.tribe-ui-datepicker .ui-widget-header .ui-state-default,.tribe-ui-datepicker .ui-widget-header a,html .tribe-ui-datepicker .ui-button.ui-state-disabled:active,html .tribe-ui-datepicker .ui-button.ui-state-disabled:hover{color:#23282d}.tribe-ui-datepicker .ui-button,.tribe-ui-datepicker .ui-state-default a,.tribe-ui-datepicker .ui-state-default a:link,.tribe-ui-datepicker .ui-state-default a:visited,.tribe-ui-datepicker a.ui-button,.tribe-ui-datepicker a:link.ui-button,.tribe-ui-datepicker a:visited.ui-button{color:#23282d;text-decoration:none}.tribe-ui-datepicker .ui-button:focus,.tribe-ui-datepicker .ui-button:hover,.tribe-ui-datepicker .ui-state-focus,.tribe-ui-datepicker .ui-state-hover,.tribe-ui-datepicker .ui-widget-content .ui-state-focus,.tribe-ui-datepicker .ui-widget-content .ui-state-hover,.tribe-ui-datepicker .ui-widget-header .ui-state-focus,.tribe-ui-datepicker .ui-widget-header .ui-state-hover{color:#000}.tribe-ui-datepicker .ui-state-focus a,.tribe-ui-datepicker .ui-state-focus a:hover,.tribe-ui-datepicker .ui-state-focus a:link,.tribe-ui-datepicker .ui-state-focus a:visited,.tribe-ui-datepicker .ui-state-hover a,.tribe-ui-datepicker .ui-state-hover a:hover,.tribe-ui-datepicker .ui-state-hover a:link,.tribe-ui-datepicker .ui-state-hover a:visited,.tribe-ui-datepicker a.ui-button:focus,.tribe-ui-datepicker a.ui-button:hover{color:#b1b1b1;text-decoration:none}.tribe-ui-datepicker .ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.tribe-ui-datepicker .ui-button.ui-state-active:hover,.tribe-ui-datepicker .ui-button:active,.tribe-ui-datepicker .ui-state-active,.tribe-ui-datepicker .ui-widget-content .ui-state-active,.tribe-ui-datepicker .ui-widget-header .ui-state-active,.tribe-ui-datepicker a.ui-button:active{background:linear-gradient(354deg,#0a55a0,#1288eb);color:#fff}.tribe-ui-datepicker .ui-icon-background,.tribe-ui-datepicker .ui-state-active .ui-icon-background{border:#ddd;background-color:#1c94c4}.tribe-ui-datepicker .ui-state-active a,.tribe-ui-datepicker .ui-state-active a:link,.tribe-ui-datepicker .ui-state-active a:visited{color:#23282d;text-decoration:none}.tribe-ui-datepicker .ui-state-highlight,.tribe-ui-datepicker.ui-widget-content .ui-state-highlight,.tribe-ui-datepicker .ui-widget-header .ui-state-highlight{background:#fff;color:#363636}.tribe-ui-datepicker .ui-state-checked{background:#fff}.tribe-ui-datepicker .ui-state-highlight a,.tribe-ui-datepicker.ui-widget-content .ui-state-highlight a,.tribe-ui-datepicker .ui-widget-header .ui-state-highlight a{color:#363636}.tribe-ui-datepicker .ui-state-error,.tribe-ui-datepicker.ui-widget-content .ui-state-error,.tribe-ui-datepicker .ui-widget-header .ui-state-error{background:#b81900;color:#fff}.tribe-ui-datepicker .ui-state-error-text,.tribe-ui-datepicker .ui-state-error a,.tribe-ui-datepicker.ui-widget-content .ui-state-error-text,.tribe-ui-datepicker.ui-widget-content .ui-state-error a,.tribe-ui-datepicker .ui-widget-header .ui-state-error-text,.tribe-ui-datepicker .ui-widget-header .ui-state-error a{color:#fff}.tribe-ui-datepicker .ui-priority-secondary,.tribe-ui-datepicker.ui-widget-content .ui-priority-secondary,.tribe-ui-datepicker .ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.tribe-ui-datepicker .ui-state-disabled,.tribe-ui-datepicker.ui-widget-content .ui-state-disabled,.tribe-ui-datepicker .ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.tribe-ui-datepicker .ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.tribe-ui-datepicker .ui-corner-all,.tribe-ui-datepicker .ui-corner-left,.tribe-ui-datepicker .ui-corner-tl,.tribe-ui-datepicker .ui-corner-top{border-top-left-radius:4px}.tribe-ui-datepicker .ui-corner-all,.tribe-ui-datepicker .ui-corner-right,.tribe-ui-datepicker .ui-corner-top,.tribe-ui-datepicker .ui-corner-tr{border-top-right-radius:4px}.tribe-ui-datepicker .ui-corner-all,.tribe-ui-datepicker .ui-corner-bl,.tribe-ui-datepicker .ui-corner-bottom,.tribe-ui-datepicker .ui-corner-left{border-bottom-left-radius:4px}.tribe-ui-datepicker .ui-corner-all,.tribe-ui-datepicker .ui-corner-bottom,.tribe-ui-datepicker .ui-corner-br,.tribe-ui-datepicker .ui-corner-right{border-bottom-right-radius:4px}.tribe-ui-datepicker .ui-widget-overlay{background:#666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;opacity:.5;filter:Alpha(Opacity=50)}.tribe-ui-datepicker .ui-widget-shadow{box-shadow:-5px -5px 5px #000}.tribe-ui-datepicker .ui-helper-hidden{display:none}.tribe-ui-datepicker .ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tribe-ui-datepicker .ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.tribe-ui-datepicker .ui-helper-clearfix:after,.tribe-ui-datepicker .ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.tribe-ui-datepicker .ui-helper-clearfix:after{clear:both}.tribe-ui-datepicker .ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.tribe-ui-datepicker .ui-front{z-index:100}.tribe-ui-datepicker.ui-datepicker-rtl{direction:rtl}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-group{float:right}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}
1
+ .tribe-ui-datepicker.ui-datepicker body,.tribe-ui-datepicker.ui-datepicker button,.tribe-ui-datepicker.ui-datepicker input,.tribe-ui-datepicker.ui-datepicker select,.tribe-ui-datepicker.ui-datepicker textarea{font-family:Verdana,Helvetica Neue,Helvetica,Arial,sans-serif}.tribe-ui-datepicker.ui-datepicker table{border:none}.tribe-ui-datepicker .ui-datepicker-month{font-weight:700}.tribe-ui-datepicker .ui-state-disabled{cursor:default!important;pointer-events:none}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-group span.ui-icon{display:inline-block;vertical-align:middle;margin-top:-4px;margin-top:-.25rem;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;background-image:none}.tribe-ui-datepicker .ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.tribe-ui-datepicker.ui-datepicker{background:#fff;box-shadow:1px 1px 5px rgba(0,0,0,.5);width:17em;padding:1em;display:none}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-header{margin-bottom:16px;margin-bottom:1rem;position:relative;padding:0;border:0;background-color:transparent;background-image:none}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-next,.tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);line-height:1.8em;text-align:center}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev:before{color:#b1b1b1;content:"\2190";cursor:pointer}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev:hover:before{color:#000}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-next:before{color:#b1b1b1;content:"\2192";cursor:pointer}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-next:hover:before{color:#000}.tribe-ui-datepicker .ui-datepicker-next-hover,.tribe-ui-datepicker .ui-datepicker-prev-hover{color:darken(#b1b1b1,10%);border:0;background:none}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev{left:1px}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-next{right:1px}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev-hover{left:1px}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-next-hover{right:1px}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8;text-align:center}.tribe-ui-datepicker select.ui-datepicker-month,.tribe-ui-datepicker select.ui-datepicker-year{border:none;box-shadow:0 1px 0 rgba(0,0,0,.1);margin-right:1px;width:72px;width:4.5rem}.tribe-ui-datepicker.ui-datepicker table{width:100%;font-size:14.4px;font-size:.9rem;border-collapse:collapse;margin:0 0 6.4px;margin:0 0 .4rem}.tribe-ui-datepicker.ui-datepicker th{color:#b1b1b1;padding:11.2px 4.8px;padding:.7rem .3rem;text-align:center;border:0}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-calendar td{border:1px solid #ddd;padding:1px}.tribe-ui-datepicker.ui-datepicker td.ui-datepicker-unselectable{border:none}.tribe-ui-datepicker.ui-datepicker a.ui-state-active{background:#0085ba;color:#fff}.tribe-ui-datepicker.ui-datepicker td a,.tribe-ui-datepicker.ui-datepicker td span{display:block;padding:8px 3.2px;padding:.5rem .2rem;text-align:center;text-decoration:none}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:11.2px 0 0;margin:.7rem 0 0;padding:0 3.2px;padding:0 .2rem;border-left:0;border-right:0;border-bottom:0}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:8px 3.2px 6.4px;margin:.5rem .2rem .4rem;cursor:pointer;padding:3.2px 9.6px 4.8px;padding:.2rem .6rem .3rem;width:auto;overflow:visible}.tribe-ui-datepicker.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left;background:#fff;border:1px solid #b1b1b1}.tribe-ui-datepicker.ui-datepicker button.ui-datepicker-close{background:linear-gradient(354deg,#0a55a0,#1288eb);border:1px solid #0085ba;color:#fff!important;font-weight:400}.tribe-ui-datepicker.ui-datepicker.ui-datepicker-multi{width:auto}.tribe-ui-datepicker.ui-datepicker-multi .ui-datepicker-group{float:left}.tribe-ui-datepicker.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto 6.4px;margin:0 auto .4rem}.tribe-ui-datepicker.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.tribe-ui-datepicker.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.tribe-ui-datepicker.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.tribe-ui-datepicker.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.tribe-ui-datepicker.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.tribe-ui-datepicker.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.tribe-ui-datepicker .ui-datepicker-row-break{clear:both;width:100%;font-size:0}.tribe-ui-datepicker.ui-widget{font-size:19.2px;font-size:1.2rem;font-family:inherit}.tribe-ui-datepicker.ui-widget .ui-widget,.tribe-ui-datepicker.ui-widget button,.tribe-ui-datepicker.ui-widget input,.tribe-ui-datepicker.ui-widget select,.tribe-ui-datepicker.ui-widget textarea{font-size:16px;font-size:1rem}.tribe-ui-datepicker.ui-widget-content a,.tribe-ui-datepicker .ui-widget-header a{color:#23282d}.tribe-ui-datepicker .ui-button,.tribe-ui-datepicker .ui-state-default,.tribe-ui-datepicker.ui-widget-content .ui-state-default,.tribe-ui-datepicker .ui-widget-header .ui-state-default,html .tribe-ui-datepicker .ui-button.ui-state-disabled:active,html .tribe-ui-datepicker .ui-button.ui-state-disabled:hover{color:#23282d;border:0;background-color:transparent;background-image:none}.tribe-ui-datepicker .ui-button,.tribe-ui-datepicker .ui-state-default a,.tribe-ui-datepicker .ui-state-default a:link,.tribe-ui-datepicker .ui-state-default a:visited,.tribe-ui-datepicker a.ui-button,.tribe-ui-datepicker a:link.ui-button,.tribe-ui-datepicker a:visited.ui-button{color:#23282d;text-decoration:none}.tribe-ui-datepicker .ui-button:focus,.tribe-ui-datepicker .ui-button:hover,.tribe-ui-datepicker .ui-state-focus,.tribe-ui-datepicker .ui-state-hover,.tribe-ui-datepicker .ui-widget-content .ui-state-focus,.tribe-ui-datepicker .ui-widget-content .ui-state-hover,.tribe-ui-datepicker .ui-widget-header .ui-state-focus,.tribe-ui-datepicker .ui-widget-header .ui-state-hover{color:#000;border:0;background:none}.tribe-ui-datepicker .ui-state-focus a,.tribe-ui-datepicker .ui-state-focus a:hover,.tribe-ui-datepicker .ui-state-focus a:link,.tribe-ui-datepicker .ui-state-focus a:visited,.tribe-ui-datepicker .ui-state-hover a,.tribe-ui-datepicker .ui-state-hover a:hover,.tribe-ui-datepicker .ui-state-hover a:link,.tribe-ui-datepicker .ui-state-hover a:visited,.tribe-ui-datepicker a.ui-button:focus,.tribe-ui-datepicker a.ui-button:hover{color:#b1b1b1;text-decoration:none;background-color:none;background-image:none}.tribe-ui-datepicker .ui-visual-focus{box-shadow:0 0 3px 1px #5e9ed6}.tribe-ui-datepicker .ui-button.ui-state-active:hover,.tribe-ui-datepicker .ui-button:active,.tribe-ui-datepicker .ui-state-active,.tribe-ui-datepicker .ui-widget-content .ui-state-active,.tribe-ui-datepicker .ui-widget-header .ui-state-active,.tribe-ui-datepicker a.ui-button:active{background:linear-gradient(354deg,#0a55a0,#1288eb);color:#fff}.tribe-ui-datepicker .ui-icon-background,.tribe-ui-datepicker .ui-state-active .ui-icon-background{border:#ddd;background-color:#1c94c4}.tribe-ui-datepicker .ui-state-active a,.tribe-ui-datepicker .ui-state-active a:link,.tribe-ui-datepicker .ui-state-active a:visited{color:#23282d;text-decoration:none}.tribe-ui-datepicker .ui-state-highlight,.tribe-ui-datepicker.ui-widget-content .ui-state-highlight,.tribe-ui-datepicker .ui-widget-header .ui-state-highlight{background:#fff;color:#363636;border:0;background-image:none}.tribe-ui-datepicker .ui-state-checked{background:#fff}.tribe-ui-datepicker .ui-state-highlight a,.tribe-ui-datepicker.ui-widget-content .ui-state-highlight a,.tribe-ui-datepicker .ui-widget-header .ui-state-highlight a{color:#363636}.tribe-ui-datepicker .ui-state-error,.tribe-ui-datepicker.ui-widget-content .ui-state-error,.tribe-ui-datepicker .ui-widget-header .ui-state-error{background:#b81900;color:#fff}.tribe-ui-datepicker .ui-state-error-text,.tribe-ui-datepicker .ui-state-error a,.tribe-ui-datepicker.ui-widget-content .ui-state-error-text,.tribe-ui-datepicker.ui-widget-content .ui-state-error a,.tribe-ui-datepicker .ui-widget-header .ui-state-error-text,.tribe-ui-datepicker .ui-widget-header .ui-state-error a{color:#fff}.tribe-ui-datepicker .ui-priority-secondary,.tribe-ui-datepicker.ui-widget-content .ui-priority-secondary,.tribe-ui-datepicker .ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.tribe-ui-datepicker .ui-state-disabled,.tribe-ui-datepicker.ui-widget-content .ui-state-disabled,.tribe-ui-datepicker .ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.tribe-ui-datepicker .ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.tribe-ui-datepicker .ui-corner-all,.tribe-ui-datepicker .ui-corner-left,.tribe-ui-datepicker .ui-corner-tl,.tribe-ui-datepicker .ui-corner-top{border-top-left-radius:4px}.tribe-ui-datepicker .ui-corner-all,.tribe-ui-datepicker .ui-corner-right,.tribe-ui-datepicker .ui-corner-top,.tribe-ui-datepicker .ui-corner-tr{border-top-right-radius:4px}.tribe-ui-datepicker .ui-corner-all,.tribe-ui-datepicker .ui-corner-bl,.tribe-ui-datepicker .ui-corner-bottom,.tribe-ui-datepicker .ui-corner-left{border-bottom-left-radius:4px}.tribe-ui-datepicker .ui-corner-all,.tribe-ui-datepicker .ui-corner-bottom,.tribe-ui-datepicker .ui-corner-br,.tribe-ui-datepicker .ui-corner-right{border-bottom-right-radius:4px}.tribe-ui-datepicker .ui-widget-overlay{background:#666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;opacity:.5;filter:Alpha(Opacity=50)}.tribe-ui-datepicker .ui-widget-shadow{box-shadow:-5px -5px 5px #000}.tribe-ui-datepicker .ui-helper-hidden{display:none}.tribe-ui-datepicker .ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tribe-ui-datepicker .ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.tribe-ui-datepicker .ui-helper-clearfix:after,.tribe-ui-datepicker .ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.tribe-ui-datepicker .ui-helper-clearfix:after{clear:both}.tribe-ui-datepicker .ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.tribe-ui-datepicker .ui-front{z-index:100}.tribe-ui-datepicker.ui-datepicker-rtl{direction:rtl}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-group{float:right}.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.tribe-ui-datepicker.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}
common/src/resources/js/tribe-common.js CHANGED
@@ -1,10 +1,32 @@
1
  // Run some magic to allow a better handling of class names for jQuery.hasClass type of methods
2
  String.prototype.className = function () {
 
 
 
 
 
 
 
 
 
 
 
3
  return this.replace( '.', '' );
4
  };
5
 
6
  // Add a method to convert ID/Classes into JS easy/safe variable
7
  String.prototype.varName = function () {
 
 
 
 
 
 
 
 
 
 
 
8
  return this.replace( '-', '_' );
9
  };
10
 
1
  // Run some magic to allow a better handling of class names for jQuery.hasClass type of methods
2
  String.prototype.className = function () {
3
+ // Prevent Non Strings to be included
4
+ if (
5
+ (
6
+ 'string' !== typeof this
7
+ && ! this instanceof String
8
+ )
9
+ || 'function' !== typeof this.replace
10
+ ) {
11
+ return this;
12
+ }
13
+
14
  return this.replace( '.', '' );
15
  };
16
 
17
  // Add a method to convert ID/Classes into JS easy/safe variable
18
  String.prototype.varName = function () {
19
+ // Prevent Non Strings to be included
20
+ if (
21
+ (
22
+ 'string' !== typeof this
23
+ && ! this instanceof String
24
+ )
25
+ || 'function' !== typeof this.replace
26
+ ) {
27
+ return this;
28
+ }
29
+
30
  return this.replace( '-', '_' );
31
  };
32
 
common/src/resources/js/tribe-common.min.js CHANGED
@@ -1 +1 @@
1
- String.prototype.className=function(){return this.replace(".","")},String.prototype.varName=function(){return this.replace("-","_")};var tribe=tribe||{},tribe_auto_sysinfo=tribe_auto_sysinfo||{};tribe_auto_sysinfo.ajax={event:{}},function(t,n){"use strict";n.init=function(){this.init_ajax(),this.init_copy(),n.navigate_to_id()},n.init_copy=function(){if("undefined"!=typeof tribe_system_info){var n=new Clipboard(".system-info-copy-btn"),i='<span class="dashicons dashicons-clipboard license-btn"></span>',e=tribe_system_info.clipboard_btn_text;t(".system-info-copy-btn").click(function(t){t.preventDefault()}),n.on("success",function(t){t.clearSelection(),t.trigger.innerHTML=i+'<span class="optin-success">'+tribe_system_info.clipboard_copied_text+"<span>",window.setTimeout(function(){t.trigger.innerHTML=i+e},5e3)}),n.on("error",function(t){t.trigger.innerHTML=i+'<span class="optin-fail">'+tribe_system_info.clipboard_fail_text+"<span>",window.setTimeout(function(){t.trigger.innerHTML=i+e},5e3)})}},n.init_ajax=function(){"undefined"!=typeof tribe_system_info&&(this.$system_info_opt_in=t(document.getElementById("tribe_auto_sysinfo_opt_in")),this.$system_info_opt_in_msg=t(".tribe-sysinfo-optin-msg"),this.$system_info_opt_in.change(function(){this.checked?n.event.ajax("generate"):n.event.ajax("remove")}))},n.event.ajax=function(i){var e={action:"tribe_toggle_sysinfo_optin",confirm:tribe_system_info.sysinfo_optin_nonce,generate_key:i};t.post(ajaxurl,e,function(i){i.success?n.$system_info_opt_in_msg.html("<p class='optin-success'>"+i.data+"</p>"):(n.$system_info_opt_in_msg.html("<p class='optin-fail'>"+i.data.message+" Code:"+i.data.code+" Status:"+i.data.data.status+"</p>"),t("#tribe_auto_sysinfo_opt_in").prop("checked",!1))})},n.navigate_to_id=function(){t(document).ready(n.maybe_navigate_to_id_on_doc_ready),t(document).on("click",".tribe_events_page_tribe-common",n.maybe_navigate_to_id_after_click)},n.maybe_navigate_to_id_on_doc_ready=function(){var t=n.get_url_fragment(window.location.href);t.length&&n.adjust_scroll_position(t)},n.maybe_navigate_to_id_after_click=function(i){var e=t(i.target).attr("href");if("undefined"!=typeof e){var o=n.get_url_fragment(e);o&&n.adjust_scroll_position(o)}},n.adjust_scroll_position=function(n){if(t("#wpadminbar").length){var i=t("#"+n).position();i&&setTimeout(function(){window.scroll(window.scrollX,i.top)})}},n.get_url_fragment=function(t){var n=t.match(/#([a-z0-9_-]+)$/i);return null===n?"":n[1]},t(function(){n.init()})}(jQuery,tribe_auto_sysinfo.ajax);
1
+ String.prototype.className=function(){return"string"!=typeof this&&!this instanceof String||"function"!=typeof this.replace?this:this.replace(".","")},String.prototype.varName=function(){return"string"!=typeof this&&!this instanceof String||"function"!=typeof this.replace?this:this.replace("-","_")};var tribe=tribe||{},tribe_auto_sysinfo=tribe_auto_sysinfo||{};tribe_auto_sysinfo.ajax={event:{}},function(t,i){"use strict";i.init=function(){this.init_ajax(),this.init_copy(),i.navigate_to_id()},i.init_copy=function(){if("undefined"!=typeof tribe_system_info){var i=new Clipboard(".system-info-copy-btn"),n='<span class="dashicons dashicons-clipboard license-btn"></span>',e=tribe_system_info.clipboard_btn_text;t(".system-info-copy-btn").click(function(t){t.preventDefault()}),i.on("success",function(t){t.clearSelection(),t.trigger.innerHTML=n+'<span class="optin-success">'+tribe_system_info.clipboard_copied_text+"<span>",window.setTimeout(function(){t.trigger.innerHTML=n+e},5e3)}),i.on("error",function(t){t.trigger.innerHTML=n+'<span class="optin-fail">'+tribe_system_info.clipboard_fail_text+"<span>",window.setTimeout(function(){t.trigger.innerHTML=n+e},5e3)})}},i.init_ajax=function(){"undefined"!=typeof tribe_system_info&&(this.$system_info_opt_in=t(document.getElementById("tribe_auto_sysinfo_opt_in")),this.$system_info_opt_in_msg=t(".tribe-sysinfo-optin-msg"),this.$system_info_opt_in.change(function(){this.checked?i.event.ajax("generate"):i.event.ajax("remove")}))},i.event.ajax=function(n){var e={action:"tribe_toggle_sysinfo_optin",confirm:tribe_system_info.sysinfo_optin_nonce,generate_key:n};t.post(ajaxurl,e,function(n){n.success?i.$system_info_opt_in_msg.html("<p class='optin-success'>"+n.data+"</p>"):(i.$system_info_opt_in_msg.html("<p class='optin-fail'>"+n.data.message+" Code:"+n.data.code+" Status:"+n.data.data.status+"</p>"),t("#tribe_auto_sysinfo_opt_in").prop("checked",!1))})},i.navigate_to_id=function(){t(document).ready(i.maybe_navigate_to_id_on_doc_ready),t(document).on("click",".tribe_events_page_tribe-common",i.maybe_navigate_to_id_after_click)},i.maybe_navigate_to_id_on_doc_ready=function(){var t=i.get_url_fragment(window.location.href);t.length&&i.adjust_scroll_position(t)},i.maybe_navigate_to_id_after_click=function(n){var e=t(n.target).attr("href");if("undefined"!=typeof e){var o=i.get_url_fragment(e);o&&i.adjust_scroll_position(o)}},i.adjust_scroll_position=function(i){if(t("#wpadminbar").length){var n=t("#"+i).position();n&&setTimeout(function(){window.scroll(window.scrollX,n.top)})}},i.get_url_fragment=function(t){var i=t.match(/#([a-z0-9_-]+)$/i);return null===i?"":i[1]},t(function(){i.init()})}(jQuery,tribe_auto_sysinfo.ajax);
common/src/resources/postcss/datepicker.pcss CHANGED
@@ -26,14 +26,17 @@
26
 
27
  /* Icons
28
  ----------------------------------*/
29
- .tribe-ui-datepicker .ui-icon {
30
- display: inline-block;
31
- vertical-align: middle;
32
- margin-top: -.25rem;
33
- position: relative;
34
- text-indent: -99999px;
35
- overflow: hidden;
36
- background-repeat: no-repeat;
 
 
 
37
  }
38
 
39
  .tribe-ui-datepicker .ui-widget-icon-block {
@@ -66,6 +69,9 @@
66
  margin-bottom: 1rem;
67
  position: relative;
68
  padding: 0;
 
 
 
69
  }
70
 
71
  .tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev,
@@ -73,6 +79,8 @@
73
  position: absolute;
74
  top: 50%;
75
  transform: translateY(-50%);
 
 
76
  }
77
 
78
  .tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev {
@@ -106,6 +114,8 @@
106
  .tribe-ui-datepicker .ui-datepicker-prev-hover,
107
  .tribe-ui-datepicker .ui-datepicker-next-hover {
108
  color: darken(#b1b1b1, 10%);
 
 
109
  }
110
 
111
  .tribe-ui-datepicker.ui-datepicker {
@@ -165,7 +175,7 @@
165
  td.ui-datepicker-unselectable {
166
  border: none;
167
  }
168
-
169
  a.ui-state-active {
170
  background: #0085ba;
171
  color: #fff;
@@ -187,7 +197,7 @@
187
  border-right: 0;
188
  border-bottom: 0;
189
  }
190
-
191
  .ui-datepicker-buttonpane button {
192
  float: right;
193
  margin: .5rem .2rem .4rem;
@@ -196,13 +206,13 @@
196
  width: auto;
197
  overflow: visible;
198
  }
199
-
200
  .ui-datepicker-buttonpane button.ui-datepicker-current {
201
  float: left;
202
  background: #fff;
203
  border: 1px solid #b1b1b1;
204
  }
205
-
206
  button.ui-datepicker-close {
207
  background: linear-gradient(354deg, rgba(10,85,160,1.00) 0%, rgba(18,136,235,1.00) 100%);
208
  border: 1px solid #0085ba;
@@ -256,6 +266,7 @@
256
  ----------------------------------*/
257
  .tribe-ui-datepicker.ui-widget {
258
  font-size: 1.2rem;
 
259
  }
260
 
261
  .tribe-ui-datepicker.ui-widget .ui-widget {
@@ -286,6 +297,9 @@ works properly when clicked or hovered */
286
  html .tribe-ui-datepicker .ui-button.ui-state-disabled:hover,
287
  html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
288
  color: #23282d;
 
 
 
289
  }
290
 
291
  .tribe-ui-datepicker {
@@ -308,6 +322,8 @@ html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
308
  .ui-button:hover,
309
  .ui-button:focus {
310
  color: #000;
 
 
311
  }
312
  .ui-state-hover a,
313
  .ui-state-hover a:hover,
@@ -321,6 +337,8 @@ html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
321
  a.ui-button:focus {
322
  color: #b1b1b1;
323
  text-decoration: none;
 
 
324
  }
325
 
326
  .ui-visual-focus {
@@ -335,7 +353,7 @@ html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
335
  background: linear-gradient(354deg, rgba(10,85,160,1.00) 0%, rgba(18,136,235,1.00) 100%);
336
  color: #fff;
337
  }
338
-
339
  .ui-icon-background,
340
  .ui-state-active .ui-icon-background {
341
  border: #dddddd;
@@ -356,6 +374,8 @@ html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
356
  .tribe-ui-datepicker .ui-widget-header .ui-state-highlight {
357
  background: #ffffff;
358
  color: #363636;
 
 
359
  }
360
 
361
  .tribe-ui-datepicker .ui-state-checked {
@@ -448,7 +468,7 @@ html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
448
  -webkit-box-shadow: -5px -5px 5px #000000;
449
  box-shadow: -5px -5px 5px #000000;
450
  }
451
-
452
  .ui-helper-hidden {
453
  display: none;
454
  }
@@ -490,7 +510,7 @@ html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
490
  opacity: 0;
491
  filter:Alpha(Opacity=0); /* support: IE8 */
492
  }
493
-
494
  .ui-front {
495
  z-index: 100;
496
  }
@@ -509,30 +529,30 @@ html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
509
  left: 2px;
510
  right: auto;
511
  }
512
-
513
  .ui-datepicker-prev:hover {
514
  right: 1px;
515
  left: auto;
516
  }
517
-
518
  .ui-datepicker-next:hover {
519
  left: 1px;
520
  right: auto;
521
  }
522
-
523
  .ui-datepicker-buttonpane {
524
  clear: right;
525
  }
526
-
527
  .ui-datepicker-buttonpane button {
528
  float: left;
529
  }
530
-
531
  .ui-datepicker-buttonpane button.ui-datepicker-current,
532
  .ui-datepicker-group {
533
  float: right;
534
  }
535
-
536
  .ui-datepicker-group-last .ui-datepicker-header,
537
  .ui-datepicker-group-middle .ui-datepicker-header {
538
  border-right-width: 0;
26
 
27
  /* Icons
28
  ----------------------------------*/
29
+ .tribe-ui-datepicker.ui-datepicker {
30
+ .ui-datepicker-group span.ui-icon {
31
+ display: inline-block;
32
+ vertical-align: middle;
33
+ margin-top: -.25rem;
34
+ position: relative;
35
+ text-indent: -99999px;
36
+ overflow: hidden;
37
+ background-repeat: no-repeat;
38
+ background-image: none;
39
+ }
40
  }
41
 
42
  .tribe-ui-datepicker .ui-widget-icon-block {
69
  margin-bottom: 1rem;
70
  position: relative;
71
  padding: 0;
72
+ border: 0;
73
+ background-color: transparent;
74
+ background-image: none;
75
  }
76
 
77
  .tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev,
79
  position: absolute;
80
  top: 50%;
81
  transform: translateY(-50%);
82
+ line-height: 1.8em;
83
+ text-align: center;
84
  }
85
 
86
  .tribe-ui-datepicker.ui-datepicker .ui-datepicker-prev {
114
  .tribe-ui-datepicker .ui-datepicker-prev-hover,
115
  .tribe-ui-datepicker .ui-datepicker-next-hover {
116
  color: darken(#b1b1b1, 10%);
117
+ border: 0;
118
+ background: none;
119
  }
120
 
121
  .tribe-ui-datepicker.ui-datepicker {
175
  td.ui-datepicker-unselectable {
176
  border: none;
177
  }
178
+
179
  a.ui-state-active {
180
  background: #0085ba;
181
  color: #fff;
197
  border-right: 0;
198
  border-bottom: 0;
199
  }
200
+
201
  .ui-datepicker-buttonpane button {
202
  float: right;
203
  margin: .5rem .2rem .4rem;
206
  width: auto;
207
  overflow: visible;
208
  }
209
+
210
  .ui-datepicker-buttonpane button.ui-datepicker-current {
211
  float: left;
212
  background: #fff;
213
  border: 1px solid #b1b1b1;
214
  }
215
+
216
  button.ui-datepicker-close {
217
  background: linear-gradient(354deg, rgba(10,85,160,1.00) 0%, rgba(18,136,235,1.00) 100%);
218
  border: 1px solid #0085ba;
266
  ----------------------------------*/
267
  .tribe-ui-datepicker.ui-widget {
268
  font-size: 1.2rem;
269
+ font-family: inherit;
270
  }
271
 
272
  .tribe-ui-datepicker.ui-widget .ui-widget {
297
  html .tribe-ui-datepicker .ui-button.ui-state-disabled:hover,
298
  html .tribe-ui-datepicker .ui-button.ui-state-disabled:active {
299
  color: #23282d;
300
+ border: 0;
301
+ background-color: transparent;
302
+ background-image: none;
303
  }
304
 
305
  .tribe-ui-datepicker {
322
  .ui-button:hover,
323
  .ui-button:focus {
324
  color: #000;
325
+ border: 0;
326
+ background: none;
327
  }
328
  .ui-state-hover a,
329
  .ui-state-hover a:hover,
337
  a.ui-button:focus {
338
  color: #b1b1b1;
339
  text-decoration: none;
340
+ background-color: none;
341
+ background-image: none;
342
  }
343
 
344
  .ui-visual-focus {
353
  background: linear-gradient(354deg, rgba(10,85,160,1.00) 0%, rgba(18,136,235,1.00) 100%);
354
  color: #fff;
355
  }
356
+
357
  .ui-icon-background,
358
  .ui-state-active .ui-icon-background {
359
  border: #dddddd;
374
  .tribe-ui-datepicker .ui-widget-header .ui-state-highlight {
375
  background: #ffffff;
376
  color: #363636;
377
+ border: 0;
378
+ background-image: none;
379
  }
380
 
381
  .tribe-ui-datepicker .ui-state-checked {
468
  -webkit-box-shadow: -5px -5px 5px #000000;
469
  box-shadow: -5px -5px 5px #000000;
470
  }
471
+
472
  .ui-helper-hidden {
473
  display: none;
474
  }
510
  opacity: 0;
511
  filter:Alpha(Opacity=0); /* support: IE8 */
512
  }
513
+
514
  .ui-front {
515
  z-index: 100;
516
  }
529
  left: 2px;
530
  right: auto;
531
  }
532
+
533
  .ui-datepicker-prev:hover {
534
  right: 1px;
535
  left: auto;
536
  }
537
+
538
  .ui-datepicker-next:hover {
539
  left: 1px;
540
  right: auto;
541
  }
542
+
543
  .ui-datepicker-buttonpane {
544
  clear: right;
545
  }
546
+
547
  .ui-datepicker-buttonpane button {
548
  float: left;
549
  }
550
+
551
  .ui-datepicker-buttonpane button.ui-datepicker-current,
552
  .ui-datepicker-group {
553
  float: right;
554
  }
555
+
556
  .ui-datepicker-group-last .ui-datepicker-header,
557
  .ui-datepicker-group-middle .ui-datepicker-header {
558
  border-right-width: 0;
common/tribe-common.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Description: An event settings framework for managing shared options
4
- Version: 4.7.2
5
  Author: Modern Tribe, Inc.
6
  Author URI: http://m.tri.be/1x
7
  Text Domain: tribe-common
1
  <?php
2
  /*
3
  Description: An event settings framework for managing shared options
4
+ Version: 4.7.3
5
  Author: Modern Tribe, Inc.
6
  Author URI: http://m.tri.be/1x
7
  Text Domain: tribe-common
lang/the-events-calendar-nl_NL.mo CHANGED
Binary file
lang/the-events-calendar-nl_NL.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-09-25 19:31:35+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -21,7 +21,7 @@ msgstr ""
21
 
22
  #: src/Tribe/Main.php:958
23
  msgid "edit Events settings."
24
- msgstr "Pas evenement-instellingen aan."
25
 
26
  #: src/Tribe/Main.php:949
27
  msgid "Edit the %s slug"
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-11-26 13:42:00+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
21
 
22
  #: src/Tribe/Main.php:958
23
  msgid "edit Events settings."
24
+ msgstr "Bewerk evenement-instellingen."
25
 
26
  #: src/Tribe/Main.php:949
27
  msgid "Edit the %s slug"
lang/the-events-calendar-nn_NO.mo ADDED
Binary file
lang/the-events-calendar-nn_NO.po ADDED
@@ -0,0 +1,7264 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Plugins - The Events Calendar - Stable (latest release) in Norwegian (Nynorsk)
2
+ # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2017-12-04 11:34: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/2.4.0-alpha\n"
11
+ "Language: nn_NO\n"
12
+ "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
+
14
+ #: src/admin-views/create-organizer-fields.php:19
15
+ msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
16
+ msgstr "E-postadressa blir skjult på denne nettstaden for å unngå at den blir hausta av spammarar."
17
+
18
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:32
19
+ msgid "An array containing the lineage of where this venue comes from; this should not change after the venue is created."
20
+ msgstr ""
21
+
22
+ #: src/Tribe/Main.php:958
23
+ msgid "edit Events settings."
24
+ msgstr "Rediger innstillingar for hending"
25
+
26
+ #: src/Tribe/Main.php:949
27
+ msgid "Edit the %s slug"
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Linked_Posts.php:920 src/Tribe/Linked_Posts.php:926
31
+ msgid "Find %1$s %2$s"
32
+ msgstr "Finn %1$s %2$s"
33
+
34
+ #: src/Tribe/Linked_Posts.php:917
35
+ msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
36
+ msgid "an"
37
+ msgstr "ein"
38
+
39
+ #: src/Tribe/Linked_Posts.php:910
40
+ msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
41
+ msgid "a"
42
+ msgstr "ein"
43
+
44
+ #. translators: %s: post title
45
+ #: src/Tribe/Ignored_Events.php:388
46
+ msgid "Hide and Ignore &#8220;%s&#8221;"
47
+ msgstr "Skjul og ignorer &#8220;%s&#8221;"
48
+
49
+ #: common/src/Tribe/Main.php:265
50
+ msgid "Clear Selection."
51
+ msgstr ""
52
+
53
+ #: common/src/Tribe/Main.php:264
54
+ msgid "Select all pages"
55
+ msgstr "Vel alle sider"
56
+
57
+ #: common/src/Tribe/Main.php:263
58
+ msgid "All items on this page were selected. "
59
+ msgstr "Alle element på denne sida vart valt."
60
+
61
+ #: src/admin-views/aggregator/tabs/import-form.php:101
62
+ msgid "Add more sources"
63
+ msgstr "Legg til fleire kjelder"
64
+
65
+ #: src/Tribe/Aggregator/Service.php:530
66
+ msgid "No upcoming Facebook events found."
67
+ msgstr "Ingen komande Facebook-hendingar vart funne."
68
+
69
+ #: src/Tribe/Aggregator/Service.php:179
70
+ msgid "Event Aggregator server has blocked your request. Please try your import again later or contact support to know why."
71
+ msgstr ""
72
+
73
+ #: src/Tribe/Customizer/General_Theme.php:305
74
+ msgid "Featured Highlight Color"
75
+ msgstr "Markeringsfarge på framheva hendingar"
76
+
77
+ #: src/Tribe/Aggregator/Service.php:207
78
+ msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
79
+ msgstr ""
80
+
81
+ #: common/src/Tribe/Plugins_API.php:37
82
+ msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
83
+ msgstr ""
84
+
85
+ #: src/Tribe/Linked_Posts.php:923 src/Tribe/Linked_Posts.php:929
86
+ msgid "Create or Find %s"
87
+ msgstr "Lag eller Finn %s"
88
+
89
+ #: src/Tribe/Integrations/WPML/Defaults.php:117
90
+ msgid "The Events Calendar could not write WPML default config file: please create the file manually."
91
+ msgstr ""
92
+
93
+ #: common/src/Tribe/Plugins_API.php:94
94
+ msgid "Accept user-submitted events on your site! With Community Events, you can accept public submissions or require account sign-on. Settings give you the options to save as a draft or publish automatically, enable categories and tags, and choose whether users can edit/manage their own events or simply submit. Best of all - setup is easy! Just activate, configure the options, and off you go."
95
+ msgstr ""
96
+
97
+ #: common/src/Tribe/Plugins_API.php:60
98
+ msgid "Event Tickets provides a simple way for visitors to RSVP to your events. As a standalone plugin, it enables you to add RSVP functionality to posts or pages. When paired with The Events Calendar, you can add that same RSVP functionality directly to your event listings."
99
+ msgstr ""
100
+
101
+ #: common/src/Tribe/Plugins_API.php:28
102
+ msgid "Create an events calendar and manage it with ease. The Events Calendar plugin provides professional-level quality and features backed by a team you can trust."
103
+ msgstr ""
104
+
105
+ #: common/src/Tribe/PUE/Checker.php:1095
106
+ msgid "There is a new version of %1$s available. %2$s"
107
+ msgstr "Det er ein ny versjon av %1$s tilgjengeleg. %2$s"
108
+
109
+ #: common/src/Tribe/PUE/Checker.php:1084
110
+ msgid "Update now to version %s."
111
+ msgstr "Oppdater no til versjon %s."
112
+
113
+ #: common/src/Tribe/Ajax/Dropdown.php:238
114
+ msgid "The \"%s\" source is invalid and cannot be reached on \"%s\" instance."
115
+ msgstr ""
116
+
117
+ #: common/src/Tribe/Ajax/Dropdown.php:188
118
+ msgid "Empty data set for this dropdown"
119
+ msgstr "Datasettet er tomt for denne nedtrekksmenyen"
120
+
121
+ #: common/src/Tribe/Ajax/Dropdown.php:175
122
+ msgid "Missing data source for this dropdown"
123
+ msgstr "Manglande datakjelde for denne nedtrekksmenyen"
124
+
125
+ #: common/src/Tribe/Ajax/Dropdown.php:38
126
+ msgid "Cannot look for Terms without a taxonomy"
127
+ msgstr ""
128
+
129
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:24
130
+ msgid "The event WordPress post ID"
131
+ msgstr ""
132
+
133
+ #: src/Tribe/Aggregator/Record/Abstract.php:290
134
+ msgid "Something went wrong while inserting the record in the database."
135
+ msgstr "Noko gjekk galt under innsetting av raden i databasen."
136
+
137
+ #: common/src/Tribe/PUE/Notices.php:340
138
+ msgid "You can always check the status of your licenses by logging in to %1$syour account on theeventscalendar.com%2$s."
139
+ msgstr "Du kan alltid sjekke statusen på lisensane dine ved å logge inn på %1$sdin konto på theeventscalendar.com%2$s."
140
+
141
+ #: common/src/Tribe/PUE/Notices.php:225
142
+ msgid "It looks like you're using %1$s, but the license key is invalid. Please download the latest version %2$sfrom your account%3$s."
143
+ msgid_plural "It looks like you're using %1$s, but the license keys are invalid. Please download the latest versions %2$sfrom your account%3$s."
144
+ msgstr[0] "Det ser ut til at du brukar %1$s, men lisensnøkkelen er ugyldig. Vennligst last ned den siste versjonen %2$sfrå din konto%3$s."
145
+ msgstr[1] "Det ser ut til at du brukar %1$s, men lisensnøklane er ugyldige. Vennligst last ned dei siste versjonane %2$sfrå din konto%3$s."
146
+
147
+ #: common/src/Tribe/PUE/Checker.php:976
148
+ msgid "Please refresh the page and try your request again."
149
+ msgstr "Vennligst oppdater sida og prøv førespurnaden din på nytt."
150
+
151
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
152
+ msgid "The image WordPress post ID"
153
+ msgstr ""
154
+
155
+ #: common/src/Tribe/Plugins_API.php:129
156
+ msgid "Take your image widgets to the next level with Image Widget Plus! We've taken the simple functionality of our basic Image Widget and amped it up with several popular feature requests - multiple image support, slideshow, lightbox, and random image - all backed by a full year of premium support."
157
+ msgstr ""
158
+
159
+ #: common/src/Tribe/Plugins_API.php:125
160
+ msgid "Image Widget Plus"
161
+ msgstr ""
162
+
163
+ #: src/admin-views/aggregator/settings.php:460
164
+ msgid "Other URLs"
165
+ msgstr "Andre URL-ar"
166
+
167
+ #: src/admin-views/aggregator/settings.php:411
168
+ msgid "Fetch source event's settings (e.g. Show Google Maps Link or Sticky in Month View) when importing from another site using The Events Calendar."
169
+ msgstr ""
170
+
171
+ #: src/admin-views/aggregator/settings.php:410
172
+ msgid "Import Event Settings"
173
+ msgstr "Importer hendingsinnstillingar"
174
+
175
+ #: src/admin-views/aggregator/settings.php:400
176
+ msgid "When importing from a website that uses The Events Calendar, the REST API will attempt to fetch events this far in the future. That website's hosting resources may impact the success of imports. Selecting a shorter time period may improve results."
177
+ msgstr ""
178
+
179
+ #: src/admin-views/aggregator/origins/url.php:84
180
+ msgid "Enter the url for the calendar, website, or event you would like to import. Event Aggregator will attempt to import events at that location."
181
+ msgstr "Legg inn URL for den kalendaren, nettstaden eller hendinga du ønskjer å importere. Event Aggregator vil forsøke å importere hendingar frå denne lokasjonen."
182
+
183
+ #: src/Tribe/REST/V1/Messages.php:23
184
+ msgid "The 'categories' parameter contains invalid category slugs or IDs"
185
+ msgstr ""
186
+
187
+ #: src/Tribe/REST/V1/Messages.php:14
188
+ msgid "The requested post ID does not exist or is not an event"
189
+ msgstr ""
190
+
191
+ #: src/Tribe/REST/V1/Messages.php:13
192
+ msgid "The event ID is missing from the request"
193
+ msgstr ""
194
+
195
+ #: src/Tribe/REST/V1/Messages.php:15
196
+ msgid "The event does not have a venue assigned"
197
+ msgstr "Hendinga er ikkje tildelt ein lokasjon"
198
+
199
+ #: src/admin-views/aggregator/settings.php:398
200
+ msgid "Import date range"
201
+ msgstr "Importer datointervall"
202
+
203
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:97
204
+ msgid "Returns the data of the event with the specified post ID"
205
+ msgstr ""
206
+
207
+ #: src/Tribe/REST/V1/Messages.php:27
208
+ msgid "The requested post ID does not exist or is not an organizer"
209
+ msgstr ""
210
+
211
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:52
212
+ msgid "The event last modification date in UTC time"
213
+ msgstr ""
214
+
215
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:449
216
+ msgid "Events should start after the specified date"
217
+ msgstr "Hendingar skal starte etter den angitte datoen"
218
+
219
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:457
220
+ msgid "Events should start before the specified date"
221
+ msgstr "Hendingar skal starte før den angitte datoen"
222
+
223
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:109
224
+ msgid "An event with the specified event does not exist."
225
+ msgstr "Ei hending med den angitte hendinga eksiterer ikkje"
226
+
227
+ #: src/Tribe/REST/V1/Endpoints/Swagger_Documentation.php:89
228
+ msgid "The Events Calendar REST API"
229
+ msgstr ""
230
+
231
+ #: src/Tribe/REST/V1/Endpoints/Swagger_Documentation.php:90
232
+ msgid "The Events Calendar REST API allows accessing upcoming events information easily and conveniently."
233
+ msgstr ""
234
+
235
+ #: src/Tribe/REST/V1/Messages.php:16
236
+ msgid "The event does not have an organizer assigned"
237
+ msgstr ""
238
+
239
+ #: src/Tribe/REST/V1/Messages.php:17
240
+ msgid "The requested event is not accessible"
241
+ msgstr "Den etterspurte hendinga er ikkje tilgjengeleg"
242
+
243
+ #: src/Tribe/REST/V1/Messages.php:18
244
+ msgid "The 'page' parameter must be a positive integer greater than 1"
245
+ msgstr "'Side'-parameteret må vere eit positivt tal høgare enn 1 "
246
+
247
+ #: src/Tribe/REST/V1/Messages.php:22
248
+ msgid "The 'search' parameter must be a string"
249
+ msgstr "'Søke'-parameteret må vere ein streng"
250
+
251
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:90
252
+ msgid "the event post ID"
253
+ msgstr ""
254
+
255
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:465
256
+ msgid "Events should contain the specified string in the title or description"
257
+ msgstr "Hendingar skal innehelde den angitte strengen i tittelen eller beskrivinga"
258
+
259
+ #: src/Tribe/REST/V1/Messages.php:24
260
+ msgid "The 'tags' parameter contains invalid tag slugs or IDs"
261
+ msgstr ""
262
+
263
+ #: src/Tribe/REST/V1/Messages.php:25
264
+ msgid "The requested event archive page does not exist"
265
+ msgstr ""
266
+
267
+ #: src/admin-views/aggregator/fields/schedule.php:50
268
+ #: src/admin-views/aggregator/fields/schedule.php:68
269
+ msgid "at approximately"
270
+ msgstr "på omtrent"
271
+
272
+ #: src/admin-views/aggregator/origins/url.php:89
273
+ msgid "Event Aggregator will try to fetch events starting in %s from the current date or the specified date;"
274
+ msgstr ""
275
+
276
+ #: src/admin-views/aggregator/origins/url.php:83
277
+ msgid "example.com/"
278
+ msgstr ""
279
+
280
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:40
281
+ msgid "The event creation date in the site timezone"
282
+ msgstr ""
283
+
284
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:56
285
+ msgid "The URL to the event page"
286
+ msgstr ""
287
+
288
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:64
289
+ msgid "The event name"
290
+ msgstr "Namn på hendinga"
291
+
292
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:68
293
+ msgid "The event long description"
294
+ msgstr "Lang beskrivelse av hendinga"
295
+
296
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:72
297
+ msgid "The event short description"
298
+ msgstr "Kort beskrivelse av hendinga"
299
+
300
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:76
301
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:72
302
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:72
303
+ msgid "The event featured image details if set"
304
+ msgstr ""
305
+
306
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:81
307
+ msgid "Whether or not this event is an all day Event"
308
+ msgstr "Viss eller viss ikkje denne hendinga er ei heildagshending"
309
+
310
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:85
311
+ msgid "The event start date in the event or site timezone"
312
+ msgstr ""
313
+
314
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:89
315
+ msgid "An array of each component of the event start date"
316
+ msgstr ""
317
+
318
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:94
319
+ msgid "The event end date in the event or site timezone"
320
+ msgstr ""
321
+
322
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:98
323
+ msgid "An array of each component of the event end date"
324
+ msgstr ""
325
+
326
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:103
327
+ msgid "The event start date in UTC time"
328
+ msgstr ""
329
+
330
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:107
331
+ msgid "An array of each component of the event start date in UTC time"
332
+ msgstr ""
333
+
334
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:112
335
+ msgid "The event end date in UTC time"
336
+ msgstr ""
337
+
338
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:116
339
+ msgid "An array of each component of the event end date in UTC time"
340
+ msgstr ""
341
+
342
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:125
343
+ msgid "The abbreviated event timezone string"
344
+ msgstr ""
345
+
346
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:129
347
+ msgid "The event cost including the currency symbol"
348
+ msgstr ""
349
+
350
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:133
351
+ msgid "The event cost details"
352
+ msgstr ""
353
+
354
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:138
355
+ msgid "The event website URL"
356
+ msgstr ""
357
+
358
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:142
359
+ msgid "Whether the map should be shown for the event or not"
360
+ msgstr ""
361
+
362
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:146
363
+ msgid "Whether the map link should be shown for the event or not"
364
+ msgstr ""
365
+
366
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:150
367
+ msgid "Whether an event should be hidden from the calendar view or not"
368
+ msgstr ""
369
+
370
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:154
371
+ msgid "Whether an event is sticky in the calendar view or not"
372
+ msgstr ""
373
+
374
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:158
375
+ msgid "Whether the event is featured in the calendar or not"
376
+ msgstr ""
377
+
378
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:162
379
+ msgid "The event categories"
380
+ msgstr "Hendingskategoriar"
381
+
382
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:167
383
+ msgid "The event tags"
384
+ msgstr "Hendings-taggar"
385
+
386
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:172
387
+ msgid "The event venue"
388
+ msgstr "Stad for hendinga"
389
+
390
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:177
391
+ msgid "The event organizers"
392
+ msgstr "Arrangørar"
393
+
394
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:24
395
+ msgid "The organizer WordPress post ID"
396
+ msgstr ""
397
+
398
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:32
399
+ msgid "An Array containing the lineage of where this organizer comes from, this should not change after the organizer is created."
400
+ msgstr ""
401
+
402
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:36
403
+ msgid "The organizer author WordPress post ID"
404
+ msgstr ""
405
+
406
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:40
407
+ msgid "The organizer creation date in the site timezone"
408
+ msgstr ""
409
+
410
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:44
411
+ msgid "The organizer creation date in UTC time"
412
+ msgstr ""
413
+
414
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:48
415
+ msgid "The organizer last modification date in the site timezone"
416
+ msgstr ""
417
+
418
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:56
419
+ msgid "The URL to the organizer page"
420
+ msgstr "URL til arrangørside"
421
+
422
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:60
423
+ msgid "The organizer name"
424
+ msgstr "Namn på arrangør"
425
+
426
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:64
427
+ msgid "The organizer long description"
428
+ msgstr "Lang beskrivelse av arrangør"
429
+
430
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:68
431
+ msgid "The organizer short description"
432
+ msgstr "Kort beskrivelse av arrangør"
433
+
434
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:77
435
+ msgid "The organizer phone number"
436
+ msgstr "Arrangøren sitt telefonnummer"
437
+
438
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:81
439
+ msgid "The organizer website"
440
+ msgstr "Arrangøren si heimeside"
441
+
442
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:85
443
+ msgid "The organizer email address"
444
+ msgstr "Arrangøren si e-postadresse"
445
+
446
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:28
447
+ msgid "The venue ID used to globally identify in Event Aggregator"
448
+ msgstr ""
449
+
450
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:40
451
+ msgid "The venue creation date in the site timezone"
452
+ msgstr ""
453
+
454
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:44
455
+ msgid "The venue creation date in UTC time"
456
+ msgstr ""
457
+
458
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:48
459
+ msgid "The venue last modification date in the site timezone"
460
+ msgstr ""
461
+
462
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:56
463
+ msgid "The URL to the venue page"
464
+ msgstr "URL til sida for lokalet"
465
+
466
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:60
467
+ msgid "The venue name"
468
+ msgstr "Namn på lokalet"
469
+
470
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:68
471
+ msgid "The venue short description"
472
+ msgstr "Kort beskrivelse av lokalet"
473
+
474
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:75
475
+ msgid "Whether the map should be shown for the venue or not"
476
+ msgstr "Om kartet skal visast for lokalet eller ikkje"
477
+
478
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:79
479
+ msgid "Whether the map link should be shown for the venue or not"
480
+ msgstr "Om kartlenka skal visast for lokalet eller ikkje"
481
+
482
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:83
483
+ msgid "The venue address"
484
+ msgstr "Adresse for lokalet"
485
+
486
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:87
487
+ msgid "The venue city"
488
+ msgstr "Kva by/stad ligg lokalet"
489
+
490
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:91
491
+ msgid "The venue country"
492
+ msgstr "Land"
493
+
494
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:107
495
+ msgid "The venue phone number"
496
+ msgstr "Telefonnummer til lokalet"
497
+
498
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:111
499
+ msgid "The venue website URL"
500
+ msgstr "URL til lokalet si heimeside"
501
+
502
+ #: src/Tribe/REST/V1/EA_Messages.php:9
503
+ msgid "Event Aggregator cannot import events from this site."
504
+ msgstr ""
505
+
506
+ #: src/Tribe/REST/V1/EA_Messages.php:11
507
+ msgid "The Events Calendar is API is not providing the site origin correctly."
508
+ msgstr ""
509
+
510
+ #: src/Tribe/REST/V1/EA_Messages.php:14
511
+ msgid "Events could not be imported. The URL provided could be reached and has The Events Calendar REST API enabled, but returned malformed data."
512
+ msgstr ""
513
+
514
+ #: src/Tribe/REST/V1/EA_Messages.php:15
515
+ msgid "Events could not be imported. The URL provided could be reached and has The Events Calendar REST API enabled, but there was an error while fetching the archive control data."
516
+ msgstr ""
517
+
518
+ #: src/Tribe/REST/V1/EA_Messages.php:16
519
+ msgid "Events could not be imported. The URL provided could be reached and has The Events Calendar REST API enabled, but there was an error while fetching the total number of events."
520
+ msgstr ""
521
+
522
+ #: src/Tribe/REST/V1/EA_Messages.php:17
523
+ msgid "Events could not be imported. The URL provided could be reached and has The Events Calendar REST API enabled, but returned malformed data in regard to the total number of events."
524
+ msgstr ""
525
+
526
+ #: src/Tribe/REST/V1/EA_Messages.php:19
527
+ msgid "Events could not be imported. The URL provided could be reached and has The Events Calendar REST API enabled, but returned an empty archive page."
528
+ msgstr ""
529
+
530
+ #: src/Tribe/REST/V1/EA_Messages.php:20
531
+ msgid "Events could not be imported. The URL provided could be reached and has The Events Calendar REST API enabled, but there was an error while fetching the event data."
532
+ msgstr ""
533
+
534
+ #: src/Tribe/REST/V1/EA_Messages.php:22
535
+ msgid "The requested URL does not have any upcoming and published events matching the search criteria."
536
+ msgstr ""
537
+
538
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:433
539
+ msgid "The archive page to return"
540
+ msgstr ""
541
+
542
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:441
543
+ msgid "The number of events to return on each page"
544
+ msgstr ""
545
+
546
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:473
547
+ msgid "Events should be assigned one of the specified categories slugs or IDs"
548
+ msgstr ""
549
+
550
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:481
551
+ msgid "Events should be assigned one of the specified tags slugs or IDs"
552
+ msgstr ""
553
+
554
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:489
555
+ msgid "Returns all the upcoming events matching the search criteria"
556
+ msgstr ""
557
+
558
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:497
559
+ msgid "One or more of the specified query variables has a bad format"
560
+ msgstr ""
561
+
562
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:106
563
+ msgid "The event with the specified ID is not accesible."
564
+ msgstr ""
565
+
566
+ #: src/Tribe/REST/V1/Endpoints/Swagger_Documentation.php:124
567
+ msgid "Returns the documentation for The Events Calendar REST API in Swagger consumable format."
568
+ msgstr ""
569
+
570
+ #: src/Tribe/REST/V1/Messages.php:26
571
+ msgid "The requested post ID does not exist or is not an venue"
572
+ msgstr ""
573
+
574
+ #: src/admin-views/aggregator/fields/schedule.php:3
575
+ msgid "Schedule:"
576
+ msgstr "Timeplan:"
577
+
578
+ #: src/admin-views/aggregator/fields/schedule.php:32
579
+ msgid "Import runs daily at approximately"
580
+ msgstr ""
581
+
582
+ #: src/admin-views/aggregator/fields/schedule.php:38
583
+ msgid "Import runs weekly on"
584
+ msgstr ""
585
+
586
+ #: src/admin-views/aggregator/fields/schedule.php:56
587
+ msgid "Import runs monthly on day"
588
+ msgstr ""
589
+
590
+ #: src/admin-views/aggregator/origins/refine.php:22
591
+ msgid "Use the filters to narrow down which events are fetched from this site."
592
+ msgstr ""
593
+
594
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:44
595
+ msgid "The event creation date in UTC time"
596
+ msgstr ""
597
+
598
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:48
599
+ msgid "The event last modification date in the site timezone"
600
+ msgstr ""
601
+
602
+ #: src/Tribe/REST/V1/EA_Messages.php:39
603
+ msgid "Learn more."
604
+ msgstr "Lær meir."
605
+
606
+ #: src/Tribe/REST/V1/Messages.php:19
607
+ msgid "The 'per_page' parameter must be a positive integer greater than 1"
608
+ msgstr ""
609
+
610
+ #: src/Tribe/REST/V1/Messages.php:20
611
+ msgid "The 'start_date' parameter must be in a supported format"
612
+ msgstr ""
613
+
614
+ #: src/admin-views/aggregator/settings.php:377
615
+ msgid "The default event category for events imported via other URLs"
616
+ msgstr ""
617
+
618
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:60
619
+ msgid "The TEC REST API link to fetch this event"
620
+ msgstr ""
621
+
622
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:121
623
+ msgid "The event timezone string"
624
+ msgstr ""
625
+
626
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:28
627
+ msgid "The organizer ID used to globally identify in Event Aggregator"
628
+ msgstr ""
629
+
630
+ #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:52
631
+ msgid "The organizer last modification date in UTC time"
632
+ msgstr ""
633
+
634
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:36
635
+ msgid "The venue author WordPress post ID"
636
+ msgstr ""
637
+
638
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:52
639
+ msgid "The venue last modification date in UTC time"
640
+ msgstr ""
641
+
642
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:64
643
+ msgid "The venue long description"
644
+ msgstr ""
645
+
646
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:95
647
+ msgid "The venue province"
648
+ msgstr ""
649
+
650
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:99
651
+ msgid "The venue state"
652
+ msgstr ""
653
+
654
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:103
655
+ msgid "The venue ZIP code"
656
+ msgstr ""
657
+
658
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:115
659
+ msgid "The venue state or province"
660
+ msgstr ""
661
+
662
+ #: src/Tribe/REST/V1/EA_Messages.php:10
663
+ msgid "Event Aggregator cannot import events because this site is running an outdated version of The Events Calendar."
664
+ msgstr ""
665
+
666
+ #: src/Tribe/REST/V1/EA_Messages.php:12
667
+ msgid "Events could not be imported. Event Aggregator does not yet support events from that URL. We have noted your request and will review it for support in the future."
668
+ msgstr ""
669
+
670
+ #: src/Tribe/REST/V1/EA_Messages.php:13
671
+ msgid "Events could not be imported. The Events Calendar REST API is disabled on the requested URL."
672
+ msgstr ""
673
+
674
+ #: src/Tribe/REST/V1/EA_Messages.php:18
675
+ msgid "Events could not be imported. The URL provided could be reached and has The Events Calendar REST API enabled, but there was an error while fetching an archive page."
676
+ msgstr ""
677
+
678
+ #: src/Tribe/REST/V1/EA_Messages.php:21
679
+ msgid "Events could not be imported. The URL provided could be reached and has The Events Calendar REST API enabled, but returned empty event data."
680
+ msgstr ""
681
+
682
+ #: src/Tribe/REST/V1/EA_Messages.php:58
683
+ msgid "Try to adjust your import settings and try again."
684
+ msgstr ""
685
+
686
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:500
687
+ msgid "No events match the query or the requested page was not found."
688
+ msgstr ""
689
+
690
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:103
691
+ msgid "The event post ID is missing."
692
+ msgstr ""
693
+
694
+ #: src/Tribe/REST/V1/Messages.php:21
695
+ msgid "The 'end_date' parameter must be in a supported format"
696
+ msgstr ""
697
+
698
+ #: src/admin-views/aggregator/origins/url.php:7
699
+ msgid "One-time imports include currently listed upcoming events, while scheduled imports automatically grab new events and updates from this url on a set schedule."
700
+ msgstr ""
701
+
702
+ #: src/admin-views/aggregator/settings.php:366
703
+ msgid "The default post status for events imported via other URLs"
704
+ msgstr ""
705
+
706
+ #: src/admin-views/aggregator/settings.php:361
707
+ msgid "Other URL Import Settings"
708
+ msgstr ""
709
+
710
+ #: src/admin-views/aggregator/origins/url.php:91
711
+ msgid "you can modify this setting here."
712
+ msgstr ""
713
+
714
+ #: src/Tribe/Aggregator/Service.php:549
715
+ msgid "Events could not be imported. The URL provided could not be reached."
716
+ msgstr ""
717
+
718
+ #: src/Tribe/Aggregator/API/Origins.php:66
719
+ msgid "Other URL (beta)"
720
+ msgstr ""
721
+
722
+ #: src/Tribe/Aggregator/Settings.php:273 src/Tribe/Aggregator/Settings.php:274
723
+ msgid "24 hours"
724
+ msgstr "24 timar"
725
+
726
+ #: src/Tribe/Aggregator/Settings.php:277 src/Tribe/Aggregator/Settings.php:278
727
+ msgid "72 hours"
728
+ msgstr "72 timar"
729
+
730
+ #: src/Tribe/Aggregator/Settings.php:281
731
+ msgid "One week"
732
+ msgstr "Ei veke"
733
+
734
+ #: src/Tribe/Aggregator/Service.php:550
735
+ msgid "The requested source does not have any upcoming and published events matching the search criteria."
736
+ msgstr ""
737
+
738
+ #: src/Tribe/Aggregator/Settings.php:282
739
+ msgid "a week"
740
+ msgstr "Ei veke"
741
+
742
+ #: src/Tribe/Aggregator/Settings.php:285
743
+ msgid "Two weeks"
744
+ msgstr "To veker"
745
+
746
+ #: src/Tribe/Aggregator/Settings.php:286
747
+ msgid "two weeks"
748
+ msgstr "to veker"
749
+
750
+ #: src/Tribe/Aggregator/Settings.php:289
751
+ msgid "Three weeks"
752
+ msgstr "Tre veker"
753
+
754
+ #: src/Tribe/Aggregator/Settings.php:293
755
+ msgid "One month"
756
+ msgstr "Ein månad"
757
+
758
+ #: src/Tribe/Aggregator/Settings.php:294
759
+ msgid "a month"
760
+ msgstr "ein månad"
761
+
762
+ #: src/Tribe/Aggregator/Settings.php:297
763
+ msgid "Two months"
764
+ msgstr "To månader"
765
+
766
+ #: src/Tribe/Aggregator/Settings.php:298
767
+ msgid "two months"
768
+ msgstr "to månader"
769
+
770
+ #: src/Tribe/Aggregator/Settings.php:301
771
+ msgid "Three months"
772
+ msgstr "Tre månader"
773
+
774
+ #: src/Tribe/Aggregator/Settings.php:302
775
+ msgid "three months"
776
+ msgstr "tre månader"
777
+
778
+ #: src/Tribe/Aggregator/Tabs/New.php:363
779
+ msgid "%1$d new event tag was created."
780
+ msgid_plural "%1$d new event tags were created."
781
+ msgstr[0] ""
782
+ msgstr[1] ""
783
+
784
+ #: src/Tribe/Aggregator/Tabs/New.php:367
785
+ msgid "View your event tags"
786
+ msgstr ""
787
+
788
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:28
789
+ msgid "The event ID used to globally identify in Event Aggregator"
790
+ msgstr ""
791
+
792
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:32
793
+ msgid "An Array containing the lineage of where this event comes from, this should not change after the event is created."
794
+ msgstr ""
795
+
796
+ #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:36
797
+ msgid "The event author WordPress post ID"
798
+ msgstr ""
799
+
800
+ #: src/Tribe/Aggregator/Record/Url.php:17
801
+ msgid "Other URL"
802
+ msgstr ""
803
+
804
+ #: src/Tribe/Aggregator/Service.php:528
805
+ msgid "Events could not be imported. The import parameters were invalid."
806
+ msgstr ""
807
+
808
+ #: src/Tribe/Aggregator/Settings.php:290
809
+ msgid "three weeks"
810
+ msgstr "tre veker"
811
+
812
+ #: src/Tribe/Aggregator/Service.php:536
813
+ msgid "Events could not be imported. The URL provided did not have events in the proper format."
814
+ msgstr ""
815
+
816
+ #: src/Tribe/Venue.php:201
817
+ msgctxt "Metabox title"
818
+ msgid "Location"
819
+ msgstr "Stad"
820
+
821
+ #: src/admin-views/aggregator/settings.php:55
822
+ msgid "Import events but preserve local changes to event fields."
823
+ msgstr ""
824
+
825
+ #: common/src/Tribe/PUE/Checker.php:497
826
+ msgid "%1$sBuy a license%2$s for the Event Aggregator service to access additional import features."
827
+ msgstr ""
828
+
829
+ #: src/functions/template-tags/loop.php:171
830
+ msgctxt "day_view"
831
+ msgid "%1$s for %2$s"
832
+ msgstr "%1$s for %2$s"
833
+
834
+ #: src/functions/template-tags/loop.php:162
835
+ msgctxt "month view"
836
+ msgid "%1$s for %2$s"
837
+ msgstr "%1$s for %2$s"
838
+
839
+ #: src/admin-views/tribe-options-display.php:185
840
+ msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
841
+ msgstr ""
842
+
843
+ #: src/Tribe/Main.php:733
844
+ msgctxt "all events slug"
845
+ msgid "all"
846
+ msgstr "alle"
847
+
848
+ #: common/src/Tribe/Validate.php:245
849
+ msgid "%s must be a whole number."
850
+ msgstr "%s må vere eit heilt tal."
851
+
852
+ #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:52
853
+ msgid "The URL to the term archive page"
854
+ msgstr ""
855
+
856
+ #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:48
857
+ msgid "The number of posts associated with the term"
858
+ msgstr ""
859
+
860
+ #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:44
861
+ msgid "The term parent term if any"
862
+ msgstr ""
863
+
864
+ #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:40
865
+ msgid "The term description"
866
+ msgstr ""
867
+
868
+ #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:36
869
+ msgid "The taxonomy the term belongs to"
870
+ msgstr ""
871
+
872
+ #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:32
873
+ msgid "The term slug"
874
+ msgstr ""
875
+
876
+ #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:28
877
+ msgid "The term name"
878
+ msgstr ""
879
+
880
+ #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:24
881
+ msgid "The WordPress term ID"
882
+ msgstr ""
883
+
884
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
885
+ msgid "The link to the image in the specified size on the site"
886
+ msgstr ""
887
+
888
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:32
889
+ msgid "The image mime-type"
890
+ msgstr ""
891
+
892
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:28
893
+ msgid "The image height in pixels in the specified size"
894
+ msgstr ""
895
+
896
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:24
897
+ msgid "The image width in pixels in the specified size"
898
+ msgstr ""
899
+
900
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
901
+ msgid "The details about each size available for the image"
902
+ msgstr ""
903
+
904
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
905
+ msgid "The image natural height in pixels"
906
+ msgstr ""
907
+
908
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
909
+ msgid "The image natural width in pixels"
910
+ msgstr ""
911
+
912
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
913
+ msgid "The image file extension"
914
+ msgstr ""
915
+
916
+ #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:24
917
+ msgid "The venue WordPress post ID"
918
+ msgstr ""
919
+
920
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
921
+ msgid "The URL to the full size version of the image"
922
+ msgstr ""
923
+
924
+ #: common/src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:44
925
+ msgid "The date seconds"
926
+ msgstr ""
927
+
928
+ #: common/src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:40
929
+ msgid "The date minutes"
930
+ msgstr ""
931
+
932
+ #: common/src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:36
933
+ msgid "The date hour"
934
+ msgstr ""
935
+
936
+ #: common/src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:32
937
+ msgid "The date day"
938
+ msgstr ""
939
+
940
+ #: common/src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:28
941
+ msgid "The date month"
942
+ msgstr ""
943
+
944
+ #: common/src/Tribe/Documentation/Swagger/Date_Details_Definition_Provider.php:24
945
+ msgid "The date year"
946
+ msgstr ""
947
+
948
+ #: common/src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:33
949
+ msgid "A sorted array of all the numeric values for the cost"
950
+ msgstr ""
951
+
952
+ #: common/src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:28
953
+ msgid "The position of the currency symbol in the cost string"
954
+ msgstr ""
955
+
956
+ #: common/src/Tribe/Documentation/Swagger/Cost_Details_Definition_Provider.php:24
957
+ msgid "The cost currency symbol"
958
+ msgstr ""
959
+
960
+ #: src/Tribe/Main.php:4340
961
+ msgid "Keyword"
962
+ msgstr "Nøkkelord"
963
+
964
+ #: src/functions/template-tags/loop.php:130
965
+ msgctxt "featured events title"
966
+ msgid "Featured %s"
967
+ msgstr "Framheva %s"
968
+
969
+ #: src/admin-views/widget-admin-list.php:35
970
+ msgctxt "events list widget setting"
971
+ msgid "Limit to featured events only"
972
+ msgstr "Begrens til kun framheva hendingar"
973
+
974
+ #: src/admin-views/events-meta-box.php:99
975
+ msgctxt "Start Date Time \"to\" End Date Time"
976
+ msgid "to"
977
+ msgstr "til"
978
+
979
+ #: src/admin-views/aggregator/fields/schedule.php:79
980
+ #: src/admin-views/events-meta-box.php:97
981
+ #: src/admin-views/events-meta-box.php:112
982
+ msgid "HH:MM"
983
+ msgstr ""
984
+
985
+ #: src/admin-views/events-meta-box.php:72
986
+ msgid "Start/End:"
987
+ msgstr "Start/Slutt:"
988
+
989
+ #: src/admin-views/event-sidebar-options.php:33
990
+ msgid "Featured events are highlighted on the front end in views, archives, and widgets."
991
+ msgstr "Fremheva hendingar visast framheva på nettstaden på sidene, i arkiv og i widgetar."
992
+
993
+ #: src/admin-views/event-sidebar-options.php:31
994
+ msgid "Feature Event"
995
+ msgstr "Framheva hending"
996
+
997
+ #: src/admin-views/create-venue-fields.php:233
998
+ msgid "Show Google Map Link?"
999
+ msgstr "Vis lenke til Google-kart?"
1000
+
1001
+ #: src/admin-views/create-venue-fields.php:215
1002
+ msgid "Show Google Map?"
1003
+ msgstr "Vis Google-kart?"
1004
+
1005
+ #: src/admin-views/create-venue-fields.php:179
1006
+ msgid "Venue URL"
1007
+ msgstr "URL"
1008
+
1009
+ #: src/admin-views/create-venue-fields.php:151
1010
+ msgid "Venue Zip Code"
1011
+ msgstr "Postnummer"
1012
+
1013
+ #: src/admin-views/create-venue-fields.php:124
1014
+ #: src/admin-views/create-venue-fields.php:130
1015
+ msgid "Venue State"
1016
+ msgstr "Fylke"
1017
+
1018
+ #: src/admin-views/aggregator/settings.php:97
1019
+ msgid "Stop all Event Aggregator imports from running. Existing imported events will not be affected. Imports via CSV file will still be available."
1020
+ msgstr "Avbryt alle hendings-importer. Allereie importerte arrangement blir ikkje påverka. Import via CSV-fil vil fortsatt vere tilgengeleg."
1021
+
1022
+ #: src/admin-views/aggregator/settings.php:96
1023
+ msgid "Disable Event Aggregator imports"
1024
+ msgstr "Slå av hendings-importering"
1025
+
1026
+ #: src/admin-views/aggregator/settings.php:92
1027
+ msgid "Event Aggregator Control"
1028
+ msgstr "Kontroller hendings-importering"
1029
+
1030
+ #: src/Tribe/iCal.php:108
1031
+ msgid "Export Events"
1032
+ msgstr "Eksporter hendingar"
1033
+
1034
+ #: src/Tribe/Main.php:732
1035
+ msgctxt "featured events slug"
1036
+ msgid "featured"
1037
+ msgstr "Framheva"
1038
+
1039
+ #: src/Tribe/Linked_Posts.php:943
1040
+ msgid "Create: <b><%= term %></b>"
1041
+ msgstr "Lag: <b><%=term %></b>"
1042
+
1043
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:279
1044
+ msgid "Delete this"
1045
+ msgstr "Slett dette"
1046
+
1047
+ #: src/Tribe/Event_Tickets/Attendees_Report.php:38
1048
+ msgid "Event Date:"
1049
+ msgstr "Hendingsdato:"
1050
+
1051
+ #: src/Tribe/Customizer/Widget.php:132
1052
+ msgid "Show Featured Event Images"
1053
+ msgstr "Vis framheva hendingar sine bilete"
1054
+
1055
+ #: src/Tribe/Customizer/Widget.php:113
1056
+ msgid "Calendar Date Bar Color"
1057
+ msgstr "Farge på kalendaren si datolinje"
1058
+
1059
+ #: src/Tribe/Customizer/Widget.php:91
1060
+ msgid "Calendar Header Color"
1061
+ msgstr "Farge på kalendaroverskrift"
1062
+
1063
+ #: src/Tribe/Customizer/Widget.php:59
1064
+ msgid "Widgets"
1065
+ msgstr "Widgetar"
1066
+
1067
+ #: src/Tribe/Customizer/Single_Event.php:132
1068
+ msgid "Details Background Color"
1069
+ msgstr "Bakgrunnsfarge på detaljar"
1070
+
1071
+ #: src/Tribe/Customizer/Single_Event.php:110
1072
+ msgid "Post Title Color"
1073
+ msgstr "Farge på innleggsoverskrift"
1074
+
1075
+ #: src/Tribe/Customizer/Single_Event.php:78
1076
+ msgid "Single Event"
1077
+ msgstr "Enkelthending"
1078
+
1079
+ #: src/Tribe/Customizer/Month_Week_View.php:197
1080
+ msgid "Calendar Highlight Color"
1081
+ msgstr "Markeringsfarge i kalendar"
1082
+
1083
+ #: src/Tribe/Customizer/Month_Week_View.php:175
1084
+ msgid "Calendar Table Color"
1085
+ msgstr "Farge på kalendartabell"
1086
+
1087
+ #: src/Tribe/Customizer/Month_Week_View.php:144
1088
+ #: src/Tribe/Customizer/Single_Event.php:79 src/Tribe/Customizer/Widget.php:60
1089
+ msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections"
1090
+ msgstr "Val gjort her overskriver val i \"Generelt tema\"- og \"Globale element\"-seksjonane."
1091
+
1092
+ #: src/Tribe/Customizer/Month_Week_View.php:143
1093
+ msgid "Month View"
1094
+ msgstr "Månadsvisning"
1095
+
1096
+ #: src/Tribe/Customizer/Global_Elements.php:211
1097
+ msgid "Map Pin"
1098
+ msgstr "Kartnål"
1099
+
1100
+ #: src/Tribe/Customizer/Global_Elements.php:189
1101
+ msgid "Button Color"
1102
+ msgstr "Knappefarge"
1103
+
1104
+ #: src/Tribe/Customizer/Global_Elements.php:167
1105
+ msgid "Filter Bar Color"
1106
+ msgstr "Farge på filterlinje"
1107
+
1108
+ #: src/Tribe/Customizer/Global_Elements.php:145
1109
+ msgid "Link Color"
1110
+ msgstr "Linkfarge"
1111
+
1112
+ #: src/Tribe/Customizer/Global_Elements.php:114
1113
+ msgid "Options selected here will override what was selected in the \"General Theme\" section"
1114
+ msgstr "Val gjort her overskriver val gjort i \"Generelt tema\"-seksjonen"
1115
+
1116
+ #: src/Tribe/Customizer/Global_Elements.php:113
1117
+ msgid "Global Elements"
1118
+ msgstr "Globale element"
1119
+
1120
+ #: src/Tribe/Customizer/General_Theme.php:396
1121
+ msgid "Custom"
1122
+ msgstr "Eigendefinert"
1123
+
1124
+ #: src/Tribe/Customizer/General_Theme.php:390
1125
+ msgid "Sunshine"
1126
+ msgstr "Solskinn"
1127
+
1128
+ #: src/Tribe/Customizer/General_Theme.php:384
1129
+ msgid "Skyfall"
1130
+ msgstr "Himmelfall"
1131
+
1132
+ #: src/Tribe/Customizer/General_Theme.php:378
1133
+ msgid "Malachite"
1134
+ msgstr "Malakitt"
1135
+
1136
+ #: src/Tribe/Customizer/General_Theme.php:372
1137
+ msgid "Lagoon"
1138
+ msgstr "Lagune"
1139
+
1140
+ #: src/Tribe/Customizer/General_Theme.php:366
1141
+ msgid "Evergreen"
1142
+ msgstr "Evighetsgrøn"
1143
+
1144
+ #: src/Tribe/Customizer/General_Theme.php:360
1145
+ msgid "Default"
1146
+ msgstr "Standard"
1147
+
1148
+ #: src/Tribe/Customizer/General_Theme.php:354
1149
+ msgid "Deep Sea"
1150
+ msgstr "Djuphav"
1151
+
1152
+ #: src/Tribe/Customizer/General_Theme.php:348
1153
+ msgid "Blue Steel"
1154
+ msgstr "Blå stål"
1155
+
1156
+ #: src/Tribe/Customizer/General_Theme.php:328
1157
+ msgid "If the Featured highlight color is set to Custom, the following color will be used:"
1158
+ msgstr "Viss fargen for framheva hendingar er sett til eigendefinert, vil følgande farge bli brukt:"
1159
+
1160
+ #: src/Tribe/Customizer/General_Theme.php:285
1161
+ msgid "Accent Color"
1162
+ msgstr "Aksentfarge"
1163
+
1164
+ #: src/Tribe/Customizer/General_Theme.php:254
1165
+ msgid "Global configurations for the styling of The Events Calendar"
1166
+ msgstr "Globale innstillingar for stilen på The Events Calendar"
1167
+
1168
+ #: src/Tribe/Customizer/General_Theme.php:253
1169
+ msgid "General Theme"
1170
+ msgstr "Generelt tema"
1171
+
1172
+ #: src/Tribe/Customizer/Day_List_View.php:115
1173
+ msgid "Price Background Color"
1174
+ msgstr "Bakgrunnsfarge for pris"
1175
+
1176
+ #: src/Tribe/Customizer/Day_List_View.php:83
1177
+ msgid "List-style Views"
1178
+ msgstr "Stil på listevisningar"
1179
+
1180
+ #: src/Tribe/Customizer/Day_List_View.php:75
1181
+ msgid "These settings impact all list-style views, including List View and Day View."
1182
+ msgstr "Desse innstillingane påverker alle visningar av lister, inkludert listevisning og dagsvisning."
1183
+
1184
+ #: src/Tribe/Customizer/Day_List_View.php:72
1185
+ msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
1186
+ msgstr "Val gjort her overstyrer val gjort i \"Generelt tema\"- og \"Globale element\"-seksjonane."
1187
+
1188
+ #: src/Tribe/Asset/Dynamic.php:75
1189
+ msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
1190
+ msgstr "Denne hendinga er heildags og startar %%startdatenoyear%% og sluttar %%enddatewithyear%%."
1191
+
1192
+ #: src/Tribe/Asset/Dynamic.php:74
1193
+ msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
1194
+ msgstr "Denne hendinga startar %%starttime%% %%startdatenoyear%% og sluttar %%enddatewithyear%%."
1195
+
1196
+ #: src/Tribe/Asset/Dynamic.php:73
1197
+ msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
1198
+ msgstr "Denne hendinga startar %%starttime%% %%startdatenoyear%% og sluttar %%endtime%% on %%enddatewithyear%%"
1199
+
1200
+ #: src/Tribe/Asset/Dynamic.php:72
1201
+ msgid "This event is all day on %%startdatewithyear%%."
1202
+ msgstr "Hendinga er heile dagen %%startdatewithyear%%."
1203
+
1204
+ #: src/Tribe/Asset/Dynamic.php:71
1205
+ msgid "This event is at %%starttime%% on %%startdatewithyear%%."
1206
+ msgstr "Hendinga er %%starttime%% %%startdatewithyear%%."
1207
+
1208
+ #: src/Tribe/Asset/Dynamic.php:70
1209
+ msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
1210
+ msgstr "Hendinga er frå %%starttime%% til %%endtime%% %%startdatewithyear%%."
1211
+
1212
+ #: src/Tribe/Asset/Dynamic.php:67
1213
+ msgid "Dec"
1214
+ msgstr "Des"
1215
+
1216
+ #: src/Tribe/Asset/Dynamic.php:66
1217
+ msgid "Nov"
1218
+ msgstr "Nov"
1219
+
1220
+ #: src/Tribe/Asset/Dynamic.php:65
1221
+ msgid "Oct"
1222
+ msgstr "Okt"
1223
+
1224
+ #: src/Tribe/Asset/Dynamic.php:64
1225
+ msgid "Sep"
1226
+ msgstr "Sep"
1227
+
1228
+ #: src/Tribe/Asset/Dynamic.php:63
1229
+ msgid "Aug"
1230
+ msgstr "Aug"
1231
+
1232
+ #: src/Tribe/Asset/Dynamic.php:62
1233
+ msgid "Jul"
1234
+ msgstr "Jul"
1235
+
1236
+ #: src/Tribe/Asset/Dynamic.php:61
1237
+ msgid "Jun"
1238
+ msgstr "Jun"
1239
+
1240
+ #: src/Tribe/Asset/Dynamic.php:59
1241
+ msgid "Apr"
1242
+ msgstr "Apr"
1243
+
1244
+ #: src/Tribe/Asset/Dynamic.php:58
1245
+ msgid "Mar"
1246
+ msgstr "Mar"
1247
+
1248
+ #: src/Tribe/Asset/Dynamic.php:57
1249
+ msgid "Feb"
1250
+ msgstr "Feb"
1251
+
1252
+ #: src/Tribe/Asset/Dynamic.php:56
1253
+ msgid "Jan"
1254
+ msgstr "Jan"
1255
+
1256
+ #: src/Tribe/Asset/Dynamic.php:53
1257
+ msgid "December"
1258
+ msgstr "desember"
1259
+
1260
+ #: src/Tribe/Asset/Dynamic.php:52
1261
+ msgid "November"
1262
+ msgstr "november"
1263
+
1264
+ #: src/Tribe/Asset/Dynamic.php:51
1265
+ msgid "October"
1266
+ msgstr "oktober"
1267
+
1268
+ #: src/Tribe/Asset/Dynamic.php:50
1269
+ msgid "September"
1270
+ msgstr "september"
1271
+
1272
+ #: src/Tribe/Asset/Dynamic.php:49
1273
+ msgid "August"
1274
+ msgstr "august"
1275
+
1276
+ #: src/Tribe/Asset/Dynamic.php:48
1277
+ msgid "July"
1278
+ msgstr "juli"
1279
+
1280
+ #: src/Tribe/Asset/Dynamic.php:47
1281
+ msgid "June"
1282
+ msgstr "juni"
1283
+
1284
+ #: src/Tribe/Asset/Dynamic.php:46 src/Tribe/Asset/Dynamic.php:60
1285
+ msgid "May"
1286
+ msgstr "mai"
1287
+
1288
+ #: src/Tribe/Asset/Dynamic.php:45
1289
+ msgid "April"
1290
+ msgstr "april"
1291
+
1292
+ #: src/Tribe/Asset/Dynamic.php:44
1293
+ msgid "March"
1294
+ msgstr "mars"
1295
+
1296
+ #: src/Tribe/Asset/Dynamic.php:43
1297
+ msgid "February"
1298
+ msgstr "februar"
1299
+
1300
+ #: src/Tribe/Asset/Dynamic.php:42
1301
+ msgid "January"
1302
+ msgstr "januar"
1303
+
1304
+ #: src/Tribe/Asset/Dynamic.php:39
1305
+ msgid "Sat"
1306
+ msgstr "Lør"
1307
+
1308
+ #: src/Tribe/Asset/Dynamic.php:38
1309
+ msgid "Fri"
1310
+ msgstr "fre"
1311
+
1312
+ #: src/Tribe/Asset/Dynamic.php:37
1313
+ msgid "Thu"
1314
+ msgstr "Tor"
1315
+
1316
+ #: src/Tribe/Asset/Dynamic.php:36
1317
+ msgid "Wed"
1318
+ msgstr "Ons"
1319
+
1320
+ #: src/Tribe/Asset/Dynamic.php:35
1321
+ msgid "Tue"
1322
+ msgstr "Tys"
1323
+
1324
+ #: src/Tribe/Asset/Dynamic.php:34
1325
+ msgid "Mon"
1326
+ msgstr "Mån"
1327
+
1328
+ #: src/Tribe/Asset/Dynamic.php:33
1329
+ msgid "Sun"
1330
+ msgstr "Søn"
1331
+
1332
+ #: src/Tribe/Asset/Dynamic.php:30
1333
+ msgid "Saturday"
1334
+ msgstr "laurdag"
1335
+
1336
+ #: src/Tribe/Asset/Dynamic.php:29
1337
+ msgid "Friday"
1338
+ msgstr "fredag"
1339
+
1340
+ #: src/Tribe/Asset/Dynamic.php:28
1341
+ msgid "Thursday"
1342
+ msgstr "torsdag"
1343
+
1344
+ #: src/Tribe/Asset/Dynamic.php:27
1345
+ msgid "Wednesday"
1346
+ msgstr "onsdag"
1347
+
1348
+ #: src/Tribe/Asset/Dynamic.php:26
1349
+ msgid "Tuesday"
1350
+ msgstr "tysdag"
1351
+
1352
+ #: src/Tribe/Asset/Dynamic.php:25
1353
+ msgid "Monday"
1354
+ msgstr "måndag"
1355
+
1356
+ #: src/Tribe/Asset/Dynamic.php:24
1357
+ msgid "Sunday"
1358
+ msgstr "søndag"
1359
+
1360
+ #: src/Tribe/Admin/Front_Page_View.php:18
1361
+ msgctxt "Static front page setting"
1362
+ msgid "Main events page"
1363
+ msgstr "Hovudside for hendingar"
1364
+
1365
+ #: common/src/Tribe/Settings.php:269 common/src/Tribe/Settings.php:270
1366
+ msgid "Events Help"
1367
+ msgstr "Hendingshjelp"
1368
+
1369
+ #: common/src/Tribe/PUE/Checker.php:1670
1370
+ msgid "Expired license. Consult your network administrator."
1371
+ msgstr "Utløpt lisens. Kontakt din nettverksadministrator."
1372
+
1373
+ #: common/src/Tribe/PUE/Checker.php:1669
1374
+ msgid "No license entered. Consult your network administrator."
1375
+ msgstr "Ingen lisens oppgitt. Kontakt din nettverksadministrator"
1376
+
1377
+ #: common/src/Tribe/PUE/Checker.php:1668
1378
+ msgid "A valid license has been entered by your network administrator."
1379
+ msgstr "Ein gyldeg lisens har blitt fylt inn av din administrator"
1380
+
1381
+ #: common/src/Tribe/PUE/Checker.php:550
1382
+ msgid "Site License Key"
1383
+ msgstr "Lisensnøkkel for sida"
1384
+
1385
+ #: common/src/Tribe/PUE/Checker.php:539
1386
+ msgid "Check this box if you wish to override the network license key with your own"
1387
+ msgstr "Huk av boksen om du vil overstyre nettverkslisensen med din eigen"
1388
+
1389
+ #: common/src/Tribe/PUE/Checker.php:538
1390
+ msgid "Override network license key"
1391
+ msgstr "Overstyr nettverket sin lisensnøkkel"
1392
+
1393
+ #: common/src/Tribe/PUE/Checker.php:529 common/src/Tribe/PUE/Checker.php:563
1394
+ msgid "License Key Status:"
1395
+ msgstr "Status for lisens:"
1396
+
1397
+ #: common/src/Tribe/Customizer.php:566
1398
+ msgid "Use the following panel of your customizer to change the styling of your Calendar and Event pages."
1399
+ msgstr ""
1400
+
1401
+ #: common/src/admin-views/app-shop.php:31
1402
+ msgid "Installed"
1403
+ msgstr "Installert"
1404
+
1405
+ #: common/src/admin-views/app-shop.php:29
1406
+ msgid "Installed Add-Ons"
1407
+ msgstr "Installerte tillegg"
1408
+
1409
+ #: common/src/Tribe/Extension.php:368
1410
+ msgid "Unable to run Tribe Extensions. Your website host is running PHP 5.2 or older, and has likely disabled or misconfigured debug_backtrace(). You, or your website host, will need to upgrade PHP or properly configure debug_backtrace() for Tribe Extensions to work."
1411
+ msgstr ""
1412
+
1413
+ #: common/src/Tribe/Extension.php:144
1414
+ msgid "Tutorial"
1415
+ msgstr "Opplæring"
1416
+
1417
+ #: common/src/Tribe/Admin/Notice/Plugin_Download.php:92
1418
+ msgctxt "the final separator in a list of two or more items"
1419
+ msgid " and "
1420
+ msgstr "og"
1421
+
1422
+ #: common/src/Tribe/Admin/Notice/Plugin_Download.php:91
1423
+ msgctxt "separator used in a list of items"
1424
+ msgid ", "
1425
+ msgstr ","
1426
+
1427
+ #: common/src/Tribe/Admin/Notice/Plugin_Download.php:75
1428
+ msgid "To begin using %1$s, please install and activate the latest version of %2$s."
1429
+ msgstr ""
1430
+
1431
+ #: src/Tribe/Aggregator/Service.php:567
1432
+ msgid "Unknown service message"
1433
+ msgstr "Ukjend tenestemelding"
1434
+
1435
+ #: src/Tribe/Aggregator/Record/List_Table.php:533
1436
+ msgid "Unknown"
1437
+ msgstr "Ukjend"
1438
+
1439
+ #: src/Tribe/Aggregator/Record/Abstract.php:1060
1440
+ msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
1441
+ msgstr ""
1442
+
1443
+ #: src/admin-views/aggregator/origins/refine.php:5
1444
+ msgid "Location"
1445
+ msgstr "Stad"
1446
+
1447
+ #: src/admin-views/admin-welcome-message.php:26
1448
+ msgid "Stay in touch with The Events Calendar team. We send out periodic updates, key developer notices, and even the occasional discount."
1449
+ msgstr ""
1450
+
1451
+ #: src/admin-views/admin-welcome-message.php:20
1452
+ msgid "Your ratings help us bring The Events Calendar to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
1453
+ msgstr ""
1454
+
1455
+ #: src/views/single-event.php:28
1456
+ msgctxt "%s Events plural label"
1457
+ msgid "All %s"
1458
+ msgstr "Alle %s"
1459
+
1460
+ #: src/io/csv/admin-views/header.php:17
1461
+ msgid "Legacy Events Import"
1462
+ msgstr "Gammal hendingsimportør"
1463
+
1464
+ #: src/admin-views/widget-admin-list.php:41
1465
+ msgid "Generate JSON-LD data"
1466
+ msgstr ""
1467
+
1468
+ #: src/admin-views/tribe-options-addons-api.php:126
1469
+ msgid "Some features and add-ons require you to enter an API key or log into a third-party website so that The Events Calendar can communicate with an outside source."
1470
+ msgstr ""
1471
+
1472
+ #: src/admin-views/tribe-options-addons-api.php:99
1473
+ msgid "%s to view your Meetup API Key"
1474
+ msgstr ""
1475
+
1476
+ #: src/admin-views/tribe-options-addons-api.php:98
1477
+ msgid "Meetup API Key"
1478
+ msgstr ""
1479
+
1480
+ #: src/admin-views/tribe-options-addons-api.php:94
1481
+ msgid "You need a Meetup API Key to import your events from Meetup."
1482
+ msgstr ""
1483
+
1484
+ #: src/admin-views/tribe-options-addons-api.php:82
1485
+ msgid "You need to connect Event Aggregator to Facebook to import your events from Facebook."
1486
+ msgstr ""
1487
+
1488
+ #: src/admin-views/tribe-options-addons-api.php:60
1489
+ msgid "Disconnect"
1490
+ msgstr ""
1491
+
1492
+ #: src/admin-views/tribe-options-addons-api.php:59
1493
+ msgid "Refresh your connection to Facebook"
1494
+ msgstr ""
1495
+
1496
+ #: src/admin-views/tribe-options-addons-api.php:57
1497
+ msgid "Your Event Aggregator Facebook connection will expire %s."
1498
+ msgstr ""
1499
+
1500
+ #: src/admin-views/tribe-options-addons-api.php:55
1501
+ msgid "Your Event Aggregator Facebook connection has expired %s."
1502
+ msgstr ""
1503
+
1504
+ #: src/admin-views/tribe-options-addons-api.php:52
1505
+ msgid "Connect to Facebook"
1506
+ msgstr ""
1507
+
1508
+ #: src/admin-views/tribe-options-addons-api.php:51
1509
+ msgid "You need to connect to Facebook for Event Aggregator to work properly"
1510
+ msgstr ""
1511
+
1512
+ #: src/admin-views/tribe-options-addons-api.php:46
1513
+ msgid "Facebook Token"
1514
+ msgstr ""
1515
+
1516
+ #: src/admin-views/organizer-meta-box.php:45
1517
+ msgid "The e-mail address will be obfuscated on your site to avoid it getting harvested by spammers."
1518
+ msgstr ""
1519
+
1520
+ #: src/admin-views/aggregator/tabs/import-form.php:265
1521
+ msgid "Events will be imported with the timezone defined by the source. If no timezone is specified, events will be assigned your site's default timezone (see %1$sSettings > General%2$s)."
1522
+ msgstr ""
1523
+
1524
+ #: src/admin-views/aggregator/tabs/import-form.php:213
1525
+ msgid "Category:"
1526
+ msgstr "Kategori:"
1527
+
1528
+ #: src/admin-views/aggregator/tabs/import-form.php:201
1529
+ msgid "Status:"
1530
+ msgstr "Status:"
1531
+
1532
+ #: src/admin-views/aggregator/tabs/import-form.php:181
1533
+ #: src/admin-views/aggregator/tabs/import-form.php:193
1534
+ msgid "Start Time"
1535
+ msgstr "Starttid"
1536
+
1537
+ #: src/admin-views/aggregator/tabs/import-form.php:177
1538
+ #: src/admin-views/aggregator/tabs/import-form.php:189
1539
+ msgid "Select All"
1540
+ msgstr "Vel alle"
1541
+
1542
+ #: src/admin-views/aggregator/tabs/import-form.php:167
1543
+ msgid "The following preview does not necessarily contain all of the data from your CSV file. The data displayed below is meant as a guide to help you map your CSV file's columns to the appropriate Event fields."
1544
+ msgstr ""
1545
+
1546
+ #: src/admin-views/aggregator/tabs/import-form.php:161
1547
+ msgid "Column Mapping:"
1548
+ msgstr ""
1549
+
1550
+ #: src/admin-views/aggregator/tabs/import-form.php:158
1551
+ msgid "This is a preview of the type of content you will be getting in during the import based on what is on the calendar now."
1552
+ msgstr ""
1553
+
1554
+ #: src/admin-views/aggregator/tabs/import-form.php:148
1555
+ msgid "When you save this scheduled import, the events above will begin importing."
1556
+ msgstr ""
1557
+
1558
+ #: src/admin-views/aggregator/tabs/import-form.php:146
1559
+ msgid "Select the Event Field that best matches your CSV file column. The contents of that column will then be mapped to the specified event field when the event is created."
1560
+ msgstr ""
1561
+
1562
+ #: src/admin-views/aggregator/tabs/import-form.php:144
1563
+ msgid "These settings will also apply to events imported in the future via this scheduled import."
1564
+ msgstr ""
1565
+
1566
+ #: src/admin-views/aggregator/tabs/import-form.php:143
1567
+ msgid "Choose a status for the event(s) to be imported with and/or define an Event Category to automatically assign. An assigned category will be added to the event in addition to any Event Categories from the import source."
1568
+ msgstr ""
1569
+
1570
+ #: src/admin-views/aggregator/tabs/import-form.php:104
1571
+ msgid "Access more event sources and automatic imports!"
1572
+ msgstr ""
1573
+
1574
+ #: src/admin-views/aggregator/tabs/import-form.php:105
1575
+ msgid "Buy Event Aggregator"
1576
+ msgstr ""
1577
+
1578
+ #: src/admin-views/aggregator/tabs/import-form.php:40
1579
+ msgid "Choose where you are importing from."
1580
+ msgstr ""
1581
+
1582
+ #: src/admin-views/aggregator/tabs/import-form.php:39
1583
+ msgid "Select Origin"
1584
+ msgstr "Vel opphav"
1585
+
1586
+ #: src/admin-views/aggregator/tabs/import-form.php:38
1587
+ msgid "Import Origin:"
1588
+ msgstr "Importer opphav"
1589
+
1590
+ #: src/admin-views/aggregator/tabs/import-form.php:25
1591
+ msgid "No Additional Categories"
1592
+ msgstr "Ingen ytterlegare kategoriar"
1593
+
1594
+ #: src/admin-views/aggregator/status.php:197
1595
+ msgid "Enter your API key"
1596
+ msgstr "Skriv inn API-nøkkelen din"
1597
+
1598
+ #: src/admin-views/aggregator/status.php:195
1599
+ msgid "You have not entered a Meetup API key"
1600
+ msgstr "Du har ikkje lagt inn ein Meetup API-nøkkel"
1601
+
1602
+ #: src/admin-views/aggregator/status.php:191
1603
+ msgid "API key entered"
1604
+ msgstr "API-nøkkel lagt inn"
1605
+
1606
+ #: src/admin-views/aggregator/status.php:176
1607
+ msgid "The service has disabled oAuth. Some types of events may not import."
1608
+ msgstr ""
1609
+
1610
+ #: src/admin-views/aggregator/status.php:175
1611
+ msgid "Limited connectivity with Facebook"
1612
+ msgstr "Begrensa tilkopling til Facebook"
1613
+
1614
+ #: src/admin-views/aggregator/status.php:171
1615
+ msgctxt "link for connecting facebook"
1616
+ msgid "Connect to Facebook"
1617
+ msgstr "Kople til Facebook"
1618
+
1619
+ #: src/admin-views/aggregator/status.php:169
1620
+ msgid "You have not connected Event Aggregator to Facebook"
1621
+ msgstr ""
1622
+
1623
+ #: src/admin-views/aggregator/status.php:156
1624
+ msgid "Third Party Accounts"
1625
+ msgstr "Tredjepartskontoar"
1626
+
1627
+ #: src/admin-views/aggregator/status.php:144
1628
+ msgid "Scheduler Status"
1629
+ msgstr ""
1630
+
1631
+ #: src/admin-views/aggregator/status.php:139
1632
+ msgid "WP Cron enabled"
1633
+ msgstr ""
1634
+
1635
+ #: src/admin-views/aggregator/status.php:137
1636
+ msgid "Scheduled imports may not run reliably"
1637
+ msgstr ""
1638
+
1639
+ #: src/admin-views/aggregator/status.php:136
1640
+ msgid "WP Cron not enabled"
1641
+ msgstr ""
1642
+
1643
+ #: src/admin-views/aggregator/status.php:124
1644
+ msgid "Server Connection"
1645
+ msgstr "Servertilkopling"
1646
+
1647
+ #. translators: %s: Event Aggregator Server URL
1648
+ #: src/admin-views/aggregator/status.php:118
1649
+ msgid "Connected to %s"
1650
+ msgstr "Tilkopla %s"
1651
+
1652
+ #: src/admin-views/aggregator/status.php:112
1653
+ msgid "The server is responding with an error:"
1654
+ msgstr ""
1655
+
1656
+ #: src/admin-views/aggregator/status.php:103
1657
+ msgid "The server is not currently responding"
1658
+ msgstr ""
1659
+
1660
+ #. translators: %s: Event Aggregator Server URL
1661
+ #: src/admin-views/aggregator/status.php:102
1662
+ #: src/admin-views/aggregator/status.php:110
1663
+ msgid "Not connected to %s"
1664
+ msgstr ""
1665
+
1666
+ #: src/admin-views/aggregator/status.php:88
1667
+ msgid "Import Services"
1668
+ msgstr "Importtenester"
1669
+
1670
+ #: src/admin-views/aggregator/status.php:77
1671
+ msgid "Current usage"
1672
+ msgstr ""
1673
+
1674
+ #: src/admin-views/aggregator/status.php:70
1675
+ msgid "%1$d import used out of %2$d available today"
1676
+ msgid_plural "%1$d imports used out of %2$d available today"
1677
+ msgstr[0] ""
1678
+ msgstr[1] ""
1679
+
1680
+ #: src/admin-views/aggregator/status.php:66
1681
+ msgid "You are approaching your daily import limit. You may want to adjust your Scheduled Import frequencies."
1682
+ msgstr ""
1683
+
1684
+ #: src/admin-views/aggregator/status.php:63
1685
+ msgid "You have reached your daily import limit. Scheduled imports will be paused until tomorrow."
1686
+ msgstr ""
1687
+
1688
+ #: src/admin-views/aggregator/status.php:36
1689
+ msgid "Check your license key"
1690
+ msgstr "Sjekk lisensnøkkelen din"
1691
+
1692
+ #: src/admin-views/aggregator/status.php:35
1693
+ msgid "Your license is invalid"
1694
+ msgstr "Lisensen din er ugyldig"
1695
+
1696
+ #: src/admin-views/aggregator/status.php:32
1697
+ msgid "Buy Event Aggregator to access more event sources and automatic imports!"
1698
+ msgstr ""
1699
+
1700
+ #: src/admin-views/aggregator/status.php:30
1701
+ msgid "You do not have a license"
1702
+ msgstr "Du har ikkje ein lisens"
1703
+
1704
+ #: src/admin-views/aggregator/status.php:23
1705
+ msgid "Your license is valid"
1706
+ msgstr "Lisensen din er gyldig"
1707
+
1708
+ #: src/admin-views/aggregator/status.php:14
1709
+ msgid "License &amp; Usage"
1710
+ msgstr ""
1711
+
1712
+ #: src/admin-views/admin-update-message.php:55
1713
+ #: src/admin-views/aggregator/settings.php:481
1714
+ #: src/admin-views/aggregator/settings.php:521
1715
+ msgid "Imports"
1716
+ msgstr "Importar"
1717
+
1718
+ #: src/admin-views/aggregator/settings.php:468
1719
+ msgid "Check out Event Aggregator."
1720
+ msgstr ""
1721
+
1722
+ #: src/admin-views/aggregator/settings.php:467
1723
+ msgid "Use the options below to configure your imports. Looking for more ways to import events from other websites?"
1724
+ msgstr ""
1725
+
1726
+ #: src/admin-views/aggregator/settings.php:453
1727
+ msgid "Global"
1728
+ msgstr "Globalt"
1729
+
1730
+ #: src/admin-views/aggregator/settings.php:452
1731
+ msgid "Update Authority"
1732
+ msgstr ""
1733
+
1734
+ #: src/admin-views/aggregator/settings.php:447
1735
+ msgid "Help page"
1736
+ msgstr "Hjelpeside"
1737
+
1738
+ #: src/admin-views/aggregator/settings.php:443
1739
+ msgid "Use the options below to configure your imports. Global Import Settings apply to all imports, but you can also override the global settings by adjusting the origin-specific options. Check your Event Aggregator Service Status on the %1$s."
1740
+ msgstr ""
1741
+
1742
+ #: src/admin-views/aggregator/settings.php:337
1743
+ msgid "The default event category for events imported via Meetup"
1744
+ msgstr ""
1745
+
1746
+ #: src/admin-views/aggregator/settings.php:326
1747
+ msgid "The default post status for events imported via Meetup"
1748
+ msgstr ""
1749
+
1750
+ #: src/admin-views/aggregator/settings.php:315
1751
+ msgid "To import Meetup events, please be sure to add your Meetup API key on %1$sEvents > Settings > APIs%2$s"
1752
+ msgstr ""
1753
+
1754
+ #: src/admin-views/aggregator/settings.php:310
1755
+ msgid "Meetup Import Settings"
1756
+ msgstr ""
1757
+
1758
+ #: src/admin-views/aggregator/settings.php:286
1759
+ msgid "The default event category for events imported via Google Calendar"
1760
+ msgstr ""
1761
+
1762
+ #: src/admin-views/aggregator/settings.php:275
1763
+ msgid "The default post status for events imported via Google Calendar"
1764
+ msgstr ""
1765
+
1766
+ #: src/admin-views/aggregator/settings.php:270
1767
+ msgid "Google Calendar Import Settings"
1768
+ msgstr ""
1769
+
1770
+ #: src/admin-views/aggregator/settings.php:246
1771
+ msgid "The default event category for events imported via Facebook"
1772
+ msgstr ""
1773
+
1774
+ #: src/admin-views/aggregator/settings.php:235
1775
+ msgid "The default post status for events imported via Facebook"
1776
+ msgstr ""
1777
+
1778
+ #: src/admin-views/aggregator/settings.php:230
1779
+ msgid "Facebook Import Settings"
1780
+ msgstr ""
1781
+
1782
+ #: src/admin-views/aggregator/settings.php:206
1783
+ msgid "The default event category for events imported via .ics files"
1784
+ msgstr ""
1785
+
1786
+ #: src/admin-views/aggregator/settings.php:195
1787
+ msgid "The default post status for events imported via .ics files"
1788
+ msgstr ""
1789
+
1790
+ #: src/admin-views/aggregator/settings.php:190
1791
+ msgid "ICS File Import Settings"
1792
+ msgstr ""
1793
+
1794
+ #: src/admin-views/aggregator/settings.php:166
1795
+ msgid "The default event category for events imported via iCalendar"
1796
+ msgstr ""
1797
+
1798
+ #: src/admin-views/aggregator/settings.php:155
1799
+ msgid "The default post status for events imported via iCalendar"
1800
+ msgstr ""
1801
+
1802
+ #: src/admin-views/aggregator/settings.php:150
1803
+ msgid "iCalendar Import Settings"
1804
+ msgstr ""
1805
+
1806
+ #: src/admin-views/aggregator/settings.php:137
1807
+ #: src/admin-views/aggregator/settings.php:177
1808
+ #: src/admin-views/aggregator/settings.php:217
1809
+ #: src/admin-views/aggregator/settings.php:257
1810
+ #: src/admin-views/aggregator/settings.php:297
1811
+ #: src/admin-views/aggregator/settings.php:348
1812
+ #: src/admin-views/aggregator/settings.php:388
1813
+ msgid "Show Google Map by default on imported event and venues"
1814
+ msgstr ""
1815
+
1816
+ #: src/admin-views/aggregator/settings.php:136
1817
+ #: src/admin-views/aggregator/settings.php:176
1818
+ #: src/admin-views/aggregator/settings.php:216
1819
+ #: src/admin-views/aggregator/settings.php:256
1820
+ #: src/admin-views/aggregator/settings.php:296
1821
+ #: src/admin-views/aggregator/settings.php:347
1822
+ #: src/admin-views/aggregator/settings.php:387
1823
+ msgid "Show Google Map"
1824
+ msgstr ""
1825
+
1826
+ #: src/admin-views/aggregator/settings.php:126
1827
+ msgid "The default event category for events"
1828
+ msgstr ""
1829
+
1830
+ #: src/admin-views/aggregator/settings.php:115
1831
+ msgid "The default post status for events"
1832
+ msgstr ""
1833
+
1834
+ #: src/admin-views/aggregator/settings.php:110
1835
+ msgid "Global Import Settings"
1836
+ msgstr ""
1837
+
1838
+ #: src/admin-views/aggregator/settings.php:79
1839
+ msgid "The default event category for events imported via CSV"
1840
+ msgstr ""
1841
+
1842
+ #: src/admin-views/aggregator/settings.php:78
1843
+ #: src/admin-views/aggregator/settings.php:125
1844
+ #: src/admin-views/aggregator/settings.php:165
1845
+ #: src/admin-views/aggregator/settings.php:205
1846
+ #: src/admin-views/aggregator/settings.php:245
1847
+ #: src/admin-views/aggregator/settings.php:285
1848
+ #: src/admin-views/aggregator/settings.php:336
1849
+ #: src/admin-views/aggregator/settings.php:376
1850
+ msgid "Default Event Category"
1851
+ msgstr ""
1852
+
1853
+ #: src/admin-views/aggregator/settings.php:68
1854
+ msgid "The default post status for events imported via CSV"
1855
+ msgstr ""
1856
+
1857
+ #: src/admin-views/aggregator/settings.php:67
1858
+ #: src/admin-views/aggregator/settings.php:114
1859
+ #: src/admin-views/aggregator/settings.php:154
1860
+ #: src/admin-views/aggregator/settings.php:194
1861
+ #: src/admin-views/aggregator/settings.php:234
1862
+ #: src/admin-views/aggregator/settings.php:274
1863
+ #: src/admin-views/aggregator/settings.php:325
1864
+ #: src/admin-views/aggregator/settings.php:365
1865
+ msgid "Default Status"
1866
+ msgstr ""
1867
+
1868
+ #: src/admin-views/aggregator/settings.php:54
1869
+ msgid "Do not re-import events. Changes made locally will be preserved."
1870
+ msgstr ""
1871
+
1872
+ #: src/admin-views/aggregator/settings.php:53
1873
+ msgid "Overwrite my event with any changes from the original source."
1874
+ msgstr ""
1875
+
1876
+ #: src/admin-views/aggregator/settings.php:44
1877
+ msgid "You can make changes to imported events via The Events Calendar and see those changes reflected on your site’s calendar. The owner of the original event source (e.g. the iCalendar feed or Facebook group) might also make changes to their event. If you choose to re-import an altered event (manually or via a scheduled import), any changes made at the source or on your calendar will need to be addressed."
1878
+ msgstr ""
1879
+
1880
+ #: src/admin-views/aggregator/settings.php:40
1881
+ #: src/admin-views/aggregator/settings.php:48
1882
+ msgid "Event Update Authority"
1883
+ msgstr ""
1884
+
1885
+ #: src/admin-views/aggregator/settings.php:31
1886
+ msgid "No"
1887
+ msgstr "Nei"
1888
+
1889
+ #: src/admin-views/aggregator/settings.php:18
1890
+ msgid "No default category"
1891
+ msgstr "Ingen standardkategori"
1892
+
1893
+ #: src/admin-views/aggregator/settings.php:7
1894
+ msgid "Use global import settings"
1895
+ msgstr "Bruk globale importinnstillingar"
1896
+
1897
+ #: src/admin-views/aggregator/origins/refine.php:67
1898
+ msgid "Events on or after"
1899
+ msgstr "Hendingar på eller etter"
1900
+
1901
+ #: src/admin-views/aggregator/origins/refine.php:33
1902
+ msgid "Refine:"
1903
+ msgstr ""
1904
+
1905
+ #: src/admin-views/aggregator/origins/refine.php:27
1906
+ msgid "Use the filters to narrow down which events are fetched from this iCalendar feed."
1907
+ msgstr ""
1908
+
1909
+ #: src/admin-views/aggregator/origins/refine.php:18
1910
+ msgid "Use the filters to narrow down which events are fetched from this Google Calendar."
1911
+ msgstr ""
1912
+
1913
+ #: src/admin-views/aggregator/origins/refine.php:14
1914
+ msgid "Use the filters to narrow down which events are fetched from your ICS file."
1915
+ msgstr ""
1916
+
1917
+ #: src/admin-views/aggregator/origins/refine.php:9
1918
+ msgctxt "Radius with abbreviation"
1919
+ msgid "Radius (%s)"
1920
+ msgstr "Radius (%s)"
1921
+
1922
+ #: src/admin-views/aggregator/origins/refine.php:3
1923
+ msgid "Keyword(s)"
1924
+ msgstr "Nøkkelord"
1925
+
1926
+ #: src/admin-views/aggregator/origins/meetup.php:139
1927
+ msgid "Enter the url for a Meetup group, page, or individual. You can also enter the url of a single Meetup event."
1928
+ msgstr ""
1929
+
1930
+ #: src/admin-views/aggregator/origins/meetup.php:138
1931
+ msgid "meetup.com/example"
1932
+ msgstr ""
1933
+
1934
+ #: src/admin-views/aggregator/origins/meetup.php:61
1935
+ msgid "Save"
1936
+ msgstr "Lagre"
1937
+
1938
+ #: src/admin-views/aggregator/origins/meetup.php:59
1939
+ msgid "Meetup API Key:"
1940
+ msgstr ""
1941
+
1942
+ #: src/admin-views/aggregator/origins/meetup.php:47
1943
+ msgid "Your Meetup API key has been saved to %1$sEvents &gt; Settings &gt; APIs%2$s"
1944
+ msgstr ""
1945
+
1946
+ #: src/admin-views/aggregator/origins/meetup.php:32
1947
+ msgid "Enter your Meetup API key to import Meetup events. %1$sClick here to get your Meetup API key%2$s. You only need to do this once, it will be saved under %3$sEvents &gt; Settings &gt; APIs%4$s"
1948
+ msgstr ""
1949
+
1950
+ #: src/admin-views/aggregator/origins/meetup.php:7
1951
+ msgid "One-time imports include all currently listed events, while scheduled imports automatically grab new events and updates from Meetup on a set schedule. Single events can be added via a one-time import."
1952
+ msgstr ""
1953
+
1954
+ #: src/admin-views/aggregator/origins/ics.php:10
1955
+ msgid "Upload an ICS File"
1956
+ msgstr ""
1957
+
1958
+ #: src/admin-views/aggregator/origins/ics.php:7
1959
+ msgid "Select your ICS file from the WordPress media library. You may need to first upload the file from your computer to the library."
1960
+ msgstr ""
1961
+
1962
+ #: src/admin-views/aggregator/origins/ics.php:6
1963
+ msgid "Choose File"
1964
+ msgstr "Vel fil"
1965
+
1966
+ #: src/admin-views/aggregator/origins/ical.php:84
1967
+ msgid "Enter the url for the iCalendar feed you wish to import, e.g. https://central.wordcamp.org/calendar.ics"
1968
+ msgstr ""
1969
+
1970
+ #: src/admin-views/aggregator/origins/ical.php:83
1971
+ msgid "example.com/url.ics"
1972
+ msgstr ""
1973
+
1974
+ #: src/admin-views/aggregator/origins/gcal.php:89
1975
+ msgid "Copy the provided url into this field to import the events into your WordPress site."
1976
+ msgstr ""
1977
+
1978
+ #: src/admin-views/aggregator/origins/gcal.php:88
1979
+ msgid "Scroll down to Calendar Address and click the iCal button (note: if your calendar is private, you'll need to click the iCal button next to the Private Address header instead)."
1980
+ msgstr ""
1981
+
1982
+ #: src/admin-views/aggregator/origins/gcal.php:87
1983
+ msgid "Go to Settings &gt; Calendars and select the calendar you wish to import."
1984
+ msgstr ""
1985
+
1986
+ #: src/admin-views/aggregator/origins/gcal.php:85
1987
+ msgid "You can find the url you need in your Google Calendar settings."
1988
+ msgstr ""
1989
+
1990
+ #: src/admin-views/aggregator/origins/gcal.php:83
1991
+ msgid "Enter the url for the Google Calendar feed you wish to import."
1992
+ msgstr ""
1993
+
1994
+ #: src/admin-views/aggregator/origins/gcal.php:82
1995
+ msgid "https://calendar.google.com/calendar/ical/example/basic.ics"
1996
+ msgstr ""
1997
+
1998
+ #: src/admin-views/aggregator/origins/gcal.php:7
1999
+ #: src/admin-views/aggregator/origins/ical.php:7
2000
+ msgid "One-time imports include all events in the current feed, while scheduled imports automatically grab new events and updates from the feed on a set schedule."
2001
+ msgstr ""
2002
+
2003
+ #: src/admin-views/aggregator/origins/facebook.php:111
2004
+ msgid "Enter the url for a Facebook group or page. You can also enter the url of a single Facebook event."
2005
+ msgstr ""
2006
+
2007
+ #: src/admin-views/aggregator/origins/facebook.php:110
2008
+ msgid "facebook.com/example"
2009
+ msgstr ""
2010
+
2011
+ #: src/admin-views/aggregator/origins/facebook.php:63
2012
+ #: src/admin-views/aggregator/origins/gcal.php:36
2013
+ #: src/admin-views/aggregator/origins/ical.php:36
2014
+ #: src/admin-views/aggregator/origins/meetup.php:91
2015
+ #: src/admin-views/aggregator/origins/url.php:36
2016
+ msgid "One-Time Import"
2017
+ msgstr "Eingongs-import"
2018
+
2019
+ #: src/admin-views/aggregator/origins/facebook.php:52
2020
+ #: src/admin-views/aggregator/origins/facebook.php:64
2021
+ #: src/admin-views/aggregator/origins/gcal.php:25
2022
+ #: src/admin-views/aggregator/origins/gcal.php:37
2023
+ #: src/admin-views/aggregator/origins/ical.php:25
2024
+ #: src/admin-views/aggregator/origins/ical.php:37
2025
+ #: src/admin-views/aggregator/origins/meetup.php:80
2026
+ #: src/admin-views/aggregator/origins/meetup.php:92
2027
+ #: src/admin-views/aggregator/origins/url.php:25
2028
+ #: src/admin-views/aggregator/origins/url.php:37
2029
+ msgid "Scheduled Import"
2030
+ msgstr "Planlagt import"
2031
+
2032
+ #: src/admin-views/aggregator/origins/facebook.php:39
2033
+ msgid "Log into Facebook"
2034
+ msgstr ""
2035
+
2036
+ #: src/admin-views/aggregator/origins/facebook.php:33
2037
+ msgid "Please log in to enable event imports from Facebook."
2038
+ msgstr ""
2039
+
2040
+ #: src/admin-views/aggregator/origins/facebook.php:12
2041
+ #: src/admin-views/aggregator/origins/gcal.php:12
2042
+ #: src/admin-views/aggregator/origins/ical.php:12
2043
+ #: src/admin-views/aggregator/origins/meetup.php:12
2044
+ #: src/admin-views/aggregator/origins/url.php:12
2045
+ msgid "Select how often you would like events to be automatically imported."
2046
+ msgstr ""
2047
+
2048
+ #: src/admin-views/aggregator/origins/facebook.php:11
2049
+ #: src/admin-views/aggregator/origins/gcal.php:11
2050
+ #: src/admin-views/aggregator/origins/ical.php:11
2051
+ #: src/admin-views/aggregator/origins/meetup.php:11
2052
+ #: src/admin-views/aggregator/origins/url.php:11
2053
+ msgid "Select Frequency"
2054
+ msgstr "Vel frekvens"
2055
+
2056
+ #: src/admin-views/aggregator/origins/facebook.php:7
2057
+ msgid "One-time imports include all currently listed events, while scheduled imports automatically grab new events and updates from Facebook on a set schedule. Single events can be added via a one-time import."
2058
+ msgstr ""
2059
+
2060
+ #: src/admin-views/aggregator/origins/facebook.php:6
2061
+ #: src/admin-views/aggregator/origins/gcal.php:6
2062
+ #: src/admin-views/aggregator/origins/ical.php:6
2063
+ #: src/admin-views/aggregator/origins/meetup.php:6
2064
+ #: src/admin-views/aggregator/origins/url.php:6
2065
+ msgid "Select Import Type"
2066
+ msgstr "Vel importtype"
2067
+
2068
+ #: src/admin-views/aggregator/origins/eventbrite.php:23
2069
+ msgid "Enter an Eventbrite event URL, e.g. https://www.eventbrite.com/e/example-12345"
2070
+ msgstr ""
2071
+
2072
+ #: src/admin-views/aggregator/origins/csv.php:76
2073
+ #: src/admin-views/aggregator/origins/facebook.php:132
2074
+ #: src/admin-views/aggregator/origins/gcal.php:114
2075
+ #: src/admin-views/aggregator/origins/ical.php:108
2076
+ #: src/admin-views/aggregator/origins/ics.php:51
2077
+ #: src/admin-views/aggregator/origins/meetup.php:160
2078
+ #: src/admin-views/aggregator/origins/url.php:119
2079
+ msgid "Preview"
2080
+ msgstr "Førehandsvis"
2081
+
2082
+ #: src/admin-views/aggregator/origins/csv.php:68
2083
+ #: src/admin-views/aggregator/origins/ics.php:35
2084
+ msgid "No file chosen"
2085
+ msgstr "Inga fil valt"
2086
+
2087
+ #: src/admin-views/aggregator/origins/csv.php:43
2088
+ msgid "Upload a CSV File"
2089
+ msgstr "Last opp ei CSV-fil"
2090
+
2091
+ #: src/admin-views/aggregator/origins/csv.php:42
2092
+ #: src/admin-views/aggregator/origins/ics.php:9
2093
+ msgid "Upload"
2094
+ msgstr "Last opp"
2095
+
2096
+ #: src/admin-views/aggregator/origins/csv.php:41
2097
+ msgid "Select your .CSV file from the WordPress media library. You may need to first upload the file from your computer to the library."
2098
+ msgstr ""
2099
+
2100
+ #: src/admin-views/aggregator/origins/csv.php:40
2101
+ msgid "Choose a CSV file"
2102
+ msgstr "Vel ei CSV-fil"
2103
+
2104
+ #: src/admin-views/aggregator/origins/csv.php:39
2105
+ #: src/admin-views/aggregator/origins/ics.php:5
2106
+ msgid "Choose File:"
2107
+ msgstr "Vel fil:"
2108
+
2109
+ #: src/admin-views/aggregator/origins/csv.php:8
2110
+ msgid "For the best results, import venue and organizer files before importing event files."
2111
+ msgstr "For dei beste resultata, importer lokale- og arrangør-filer før du importerer hendelsesfiler."
2112
+
2113
+ #: src/admin-views/aggregator/origins/csv.php:6
2114
+ msgid "Specify the type of content you wish to import, e.g. events."
2115
+ msgstr "Spesifiser kva type innhald du ønskjer å importere. f.eks. hendingar"
2116
+
2117
+ #: src/admin-views/aggregator/origins/csv.php:5
2118
+ msgid "Select Content Type"
2119
+ msgstr "Vel innhaldstype"
2120
+
2121
+ #: src/admin-views/aggregator/origins/csv.php:4
2122
+ msgid "Content Type:"
2123
+ msgstr "Innhaldstype:"
2124
+
2125
+ #: src/admin-views/aggregator/meta-box.php:45
2126
+ msgid "Change Event Update Authority"
2127
+ msgstr ""
2128
+
2129
+ #: src/admin-views/aggregator/meta-box.php:36
2130
+ msgid "This event will not be re-imported and changes made locally will be preserved."
2131
+ msgstr ""
2132
+
2133
+ #: src/admin-views/aggregator/meta-box.php:29
2134
+ msgid "If this event is re-imported, event fields that have not been changed locally will be overwritten with any changes from the source."
2135
+ msgstr ""
2136
+
2137
+ #: src/admin-views/aggregator/meta-box.php:23
2138
+ msgid "If this event is re-imported, event fields will be overwritten with any changes from the source."
2139
+ msgstr ""
2140
+
2141
+ #: src/admin-views/aggregator/meta-box.php:9
2142
+ msgid "Last Import:"
2143
+ msgstr ""
2144
+
2145
+ #: src/admin-views/admin-welcome-message.php:29
2146
+ msgid "News and Announcements"
2147
+ msgstr ""
2148
+
2149
+ #: src/admin-views/admin-welcome-message.php:28
2150
+ msgid "Developer News"
2151
+ msgstr ""
2152
+
2153
+ #: src/admin-views/admin-welcome-message.php:21
2154
+ msgid "Rate us today!"
2155
+ msgstr ""
2156
+
2157
+ #: src/admin-views/aggregator/origins/eventbrite.php:22
2158
+ msgid "Eventbrite URL"
2159
+ msgstr ""
2160
+
2161
+ #: src/admin-views/admin-welcome-message.php:19
2162
+ msgid "We Need Your Help"
2163
+ msgstr ""
2164
+
2165
+ #: src/Tribe/Utils/Radius.php:55
2166
+ msgctxt "Abbreviation for the kilometers unit of measure"
2167
+ msgid "km"
2168
+ msgstr "km"
2169
+
2170
+ #: src/Tribe/Utils/Radius.php:53
2171
+ msgctxt "Abbreviation for the miles unit of measure"
2172
+ msgid "mi"
2173
+ msgstr "mi"
2174
+
2175
+ #: src/Tribe/Main.php:944
2176
+ msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
2177
+ msgstr ""
2178
+
2179
+ #: src/Tribe/Importer/Admin_Page.php:76 src/Tribe/Importer/Admin_Page.php:77
2180
+ msgid "Legacy Import"
2181
+ msgstr ""
2182
+
2183
+ #: src/Tribe/Ignored_Events.php:860
2184
+ msgid "Migration: %d Legacy Ignored Post was migrated successfully. To see the migrated event you will first need to refresh this screen."
2185
+ msgid_plural "Migration: %d Legacy Ignored Posts were migrated successfully. To see the migrated events you will first need to refresh this screen."
2186
+ msgstr[0] ""
2187
+ msgstr[1] ""
2188
+
2189
+ #: src/Tribe/Ignored_Events.php:853
2190
+ msgid "Event %d: %s"
2191
+ msgstr "Hending %d: %s"
2192
+
2193
+ #: src/Tribe/Ignored_Events.php:841
2194
+ msgid "Migration: %d Legacy Ignored Post failed to be migrated."
2195
+ msgid_plural "Migration: %d Legacy Ignored Posts failed to be migrated."
2196
+ msgstr[0] ""
2197
+ msgstr[1] ""
2198
+
2199
+ #: src/Tribe/Ignored_Events.php:829
2200
+ msgid "Migration: %d Legacy Ignored Post was migrated but %d failed. To see the migrated event you will first need to refresh this screen."
2201
+ msgid_plural "Migration: %d Legacy Ignored Posts were migrated but %d failed. To see the migrated events you will first need to refresh this screen."
2202
+ msgstr[0] ""
2203
+ msgstr[1] ""
2204
+
2205
+ #: src/Tribe/Ignored_Events.php:805
2206
+ msgid "There were no Legacy Events to be Migrated, you are ready to rock!"
2207
+ msgstr ""
2208
+
2209
+ #: src/Tribe/Ignored_Events.php:798
2210
+ msgid "You do not have permission to migrate Legacy Ignored Events"
2211
+ msgstr ""
2212
+
2213
+ #: src/Tribe/Ignored_Events.php:791
2214
+ msgid "Error, a unknown bug happened and it was impossible to migrate the Legacy Ignored Events, try again later."
2215
+ msgstr ""
2216
+
2217
+ #: src/Tribe/Ignored_Events.php:711
2218
+ msgid "Ignored <span class=\"count\">(%s)</span>"
2219
+ msgid_plural "Ignored <span class=\"count\">(%s)</span>"
2220
+ msgstr[0] "Ignorert <span class=\"count\">(%s)</span>"
2221
+ msgstr[1] "Ignorerte <span class=\"count\">(%s)</span>"
2222
+
2223
+ #. translators: %s: post title
2224
+ #: src/Tribe/Ignored_Events.php:426
2225
+ msgid "Delete &#8220;%s&#8221; permanently"
2226
+ msgstr "Slett &#8220;%s&#8221; permanent"
2227
+
2228
+ #: src/Tribe/Ignored_Events.php:419
2229
+ msgid "Restore"
2230
+ msgstr "Gjenopprett"
2231
+
2232
+ #. translators: %s: post title
2233
+ #: src/Tribe/Ignored_Events.php:418
2234
+ msgid "Restore &#8220;%s&#8221; from the Ignored"
2235
+ msgstr "Gjenopprett &#8220;%s&#8221; frå Ignorert"
2236
+
2237
+ #: src/Tribe/Ignored_Events.php:333 src/Tribe/Ignored_Events.php:335
2238
+ #: src/admin-views/aggregator/meta-box.php:5
2239
+ msgid "Source:"
2240
+ msgstr "Kjelde:"
2241
+
2242
+ #: src/Tribe/Ignored_Events.php:307
2243
+ msgid "Last Import"
2244
+ msgstr "Siste import"
2245
+
2246
+ #: src/Tribe/Ignored_Events.php:306 src/admin-views/aggregator/meta-box.php:14
2247
+ msgid "The last time this event was imported and/or updated via import."
2248
+ msgstr ""
2249
+
2250
+ #: src/Tribe/Ignored_Events.php:304
2251
+ msgid "Source"
2252
+ msgstr "Kjelde"
2253
+
2254
+ #: src/Tribe/Ignored_Events.php:275
2255
+ msgid "%s post restored."
2256
+ msgid_plural "%s posts restored."
2257
+ msgstr[0] "%s innlegg gjenoppretta."
2258
+ msgstr[1] "%s innlegg gjenoppretta."
2259
+
2260
+ #: src/Tribe/Ignored_Events.php:223 src/Tribe/Ignored_Events.php:267
2261
+ msgid "Error restoring from Ignored Events."
2262
+ msgstr "Feilmelding ved gjenoppretting frå Ignorerte Hendingar"
2263
+
2264
+ #: src/Tribe/Ignored_Events.php:219 src/Tribe/Ignored_Events.php:261
2265
+ msgid "You do not have permission to restore this post."
2266
+ msgstr "Du har ikkje tillatelse til å gjenopprette dette innlegget."
2267
+
2268
+ #: src/Tribe/Ignored_Events.php:165
2269
+ msgid "Migrate Legacy Ignored Events"
2270
+ msgstr ""
2271
+
2272
+ #: src/Tribe/Ignored_Events.php:164
2273
+ msgctxt "link to knowlegebase article"
2274
+ msgid "Read more about Ignored Events."
2275
+ msgstr "Les meir om ignorerte hendingar."
2276
+
2277
+ #: src/Tribe/Ignored_Events.php:163
2278
+ msgid "Event Aggregator includes a new, better system for removing unwanted imported events from your calendar. Click the button below to transition previously deleted events. This process will remove unwanted records from your database and include recent or upcoming trashed events in your Ignored archive."
2279
+ msgstr ""
2280
+
2281
+ #: src/Tribe/Utils/Radius.php:28
2282
+ msgctxt "X (kilometers abbreviation)"
2283
+ msgid "%1$s (km)"
2284
+ msgstr "%1$s (km)"
2285
+
2286
+ #: src/Tribe/Utils/Radius.php:18
2287
+ msgctxt "X (miles abbreviation)"
2288
+ msgid "%1$s (mi)"
2289
+ msgstr "%1$s (mi)"
2290
+
2291
+ #: src/Tribe/Ignored_Events.php:140
2292
+ msgid "Undo"
2293
+ msgstr "Angre"
2294
+
2295
+ #: src/Tribe/Ignored_Events.php:129
2296
+ msgid "and %s post moved to Ignored."
2297
+ msgid_plural "and %s posts moved to Ignored."
2298
+ msgstr[0] "og %s innlegg flytta til Ignorert"
2299
+ msgstr[1] "og %s innlegg flytta til Ignorert"
2300
+
2301
+ #: src/Tribe/Ignored_Events.php:128
2302
+ msgid "%s post moved to the Trash"
2303
+ msgid_plural "%s posts moved to the Trash"
2304
+ msgstr[0] "%s innlegg flytta til papirkorga"
2305
+ msgstr[1] "%s innlegg flytta til papirkorga"
2306
+
2307
+ #: src/Tribe/Ignored_Events.php:125
2308
+ msgid "post moved to Ignored."
2309
+ msgid_plural "posts moved to Ignored."
2310
+ msgstr[0] "innlegg flytta til Ignorert"
2311
+ msgstr[1] "innlegg flytta til Ignorert"
2312
+
2313
+ #: src/Tribe/Ignored_Events.php:44 src/Tribe/Ignored_Events.php:389
2314
+ msgid "Ignored events do not show on the calendar but can be updated with future imports"
2315
+ msgstr "Ignorerte hendingar visast ikkje i kalendaren men kan bli oppdaterte med framtidige importar"
2316
+
2317
+ #: src/Tribe/Ignored_Events.php:43 src/Tribe/Ignored_Events.php:390
2318
+ msgid "Hide & Ignore"
2319
+ msgstr "Skjul og Ignorer"
2320
+
2321
+ #: src/Tribe/Ignored_Events.php:39 src/Tribe/Ignored_Events.php:460
2322
+ #: src/Tribe/Ignored_Events.php:710
2323
+ msgid "Ignored"
2324
+ msgstr "Ignorert"
2325
+
2326
+ #: src/Tribe/Ignored_Events.php:36
2327
+ msgid "Ignored events that are deleted will be removed permanently. They can be recreated via import."
2328
+ msgstr "Ignorerte hendingar som er sletta vil bli fjerna permanent. Dei kan bli gjenoppretta via import."
2329
+
2330
+ #: src/Tribe/Ignored_Events.php:35 src/Tribe/Ignored_Events.php:51
2331
+ #: src/Tribe/Ignored_Events.php:427
2332
+ msgid "Delete Permanently"
2333
+ msgstr "Slett permanent"
2334
+
2335
+ #: src/Tribe/Aggregator.php:414
2336
+ msgid "Renew your Event Aggregator Facebook token"
2337
+ msgstr ""
2338
+
2339
+ #: src/Tribe/Aggregator.php:409
2340
+ msgid "Your Event Aggregator Facebook token will expire %s."
2341
+ msgstr ""
2342
+
2343
+ #: src/Tribe/Aggregator.php:407
2344
+ msgid "Your Event Aggregator Facebook token expired %s."
2345
+ msgstr ""
2346
+
2347
+ #: src/Tribe/Aggregator.php:359
2348
+ msgid "Successfully connected Event Aggregator to Facebook"
2349
+ msgstr ""
2350
+
2351
+ #: src/Tribe/Aggregator.php:329
2352
+ msgid "You must use an integer to reduce the daily import limit"
2353
+ msgstr ""
2354
+
2355
+ #: src/Tribe/Aggregator.php:85
2356
+ msgid "Event Aggregator System Status"
2357
+ msgstr ""
2358
+
2359
+ #: src/Tribe/Aggregator/Tabs/Scheduled.php:368
2360
+ msgid "Enter Event Aggregator License"
2361
+ msgstr ""
2362
+
2363
+ #: src/Tribe/Aggregator/Tabs/Scheduled.php:362
2364
+ msgid "To continue using scheduled imports, please enter a valid Event Aggregator license key under %1$sEvents > Settings > Licenses%2$s."
2365
+ msgstr ""
2366
+
2367
+ #: src/Tribe/Aggregator/Tabs/Scheduled.php:357
2368
+ msgid "All scheduled imports are currently suspended, and no events will be imported."
2369
+ msgstr ""
2370
+
2371
+ #: src/Tribe/Aggregator/Tabs/Scheduled.php:256
2372
+ msgid "Successfully %s %d scheduled import"
2373
+ msgstr ""
2374
+
2375
+ #: src/Tribe/Aggregator/Tabs/Scheduled.php:246
2376
+ msgid "Error: %d scheduled import was not %s."
2377
+ msgstr ""
2378
+
2379
+ #: src/Tribe/Aggregator/Tabs/Scheduled.php:193
2380
+ msgid "deactivated"
2381
+ msgstr "deaktivert"
2382
+
2383
+ #: src/Tribe/Aggregator/Tabs/Scheduled.php:189
2384
+ msgid "reactivated"
2385
+ msgstr "reaktivert"
2386
+
2387
+ #: src/Tribe/Aggregator/Tabs/Scheduled.php:185
2388
+ msgid "delete"
2389
+ msgstr "slett"
2390
+
2391
+ #: src/Tribe/Aggregator/Tabs/Scheduled.php:181
2392
+ msgid "queued"
2393
+ msgstr "lagt i kø"
2394
+
2395
+ #: src/Tribe/Aggregator/Tabs/Scheduled.php:94
2396
+ msgid "Scheduled Imports"
2397
+ msgstr "Planlagte importar"
2398
+
2399
+ #: src/Tribe/Aggregator/Tabs/New.php:554
2400
+ msgid "Renew your Event Aggregator license"
2401
+ msgstr ""
2402
+
2403
+ #: src/Tribe/Aggregator/Tabs/New.php:551
2404
+ msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
2405
+ msgstr ""
2406
+
2407
+ #: src/Tribe/Aggregator/Tabs/New.php:550
2408
+ msgid "Your Event Aggregator license is expired."
2409
+ msgstr ""
2410
+
2411
+ #: src/Tribe/Aggregator/Tabs/New.php:530
2412
+ msgid "Learn More"
2413
+ msgstr "Lær meir"
2414
+
2415
+ #: src/Tribe/Aggregator/Tabs/New.php:525 src/Tribe/Aggregator/Tabs/New.php:532
2416
+ msgid "opens in a new window"
2417
+ msgstr "vert opna i eit nytt vindauge"
2418
+
2419
+ #: src/Tribe/Aggregator/Tabs/New.php:523
2420
+ msgid "Buy It Now"
2421
+ msgstr "Kjøp no"
2422
+
2423
+ #: src/Tribe/Aggregator/Tabs/New.php:520
2424
+ msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
2425
+ msgstr ""
2426
+
2427
+ #: src/Tribe/Aggregator/Tabs/New.php:518
2428
+ msgid "Import Using Event Aggregator"
2429
+ msgstr ""
2430
+
2431
+ #: src/Tribe/Aggregator/Tabs/New.php:439
2432
+ msgid "Unable to save credentials"
2433
+ msgstr ""
2434
+
2435
+ #: src/Tribe/Aggregator/Tabs/New.php:432
2436
+ msgid "Credentials have been saved"
2437
+ msgstr ""
2438
+
2439
+ #: src/Tribe/Aggregator/Tabs/New.php:423
2440
+ msgid "The Meetup API key is required."
2441
+ msgstr ""
2442
+
2443
+ #: src/Tribe/Aggregator/Tabs/New.php:414
2444
+ msgid "Invalid credential save nonce"
2445
+ msgstr ""
2446
+
2447
+ #: src/Tribe/Aggregator/Tabs/New.php:404
2448
+ msgid "Invalid credential save request"
2449
+ msgstr ""
2450
+
2451
+ #: src/Tribe/Aggregator/Tabs/New.php:393
2452
+ msgid "View your scheduled imports."
2453
+ msgstr "Sjå dine planlagte importar"
2454
+
2455
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2456
+ msgid "The next import is scheduled for %1$s."
2457
+ msgstr "Den neste importen er planlagt for %1$s."
2458
+
2459
+ #: src/Tribe/Aggregator/Tabs/New.php:384
2460
+ msgctxt "separator between date and time"
2461
+ msgid " at "
2462
+ msgstr "klokka"
2463
+
2464
+ #: src/Tribe/Aggregator/Tabs/New.php:380
2465
+ msgid "Your scheduled import was saved and the first import is complete!"
2466
+ msgstr ""
2467
+
2468
+ #: src/Tribe/Aggregator/Tabs/New.php:355
2469
+ msgid "View your event categories"
2470
+ msgstr "Sjå hendingskategoriar"
2471
+
2472
+ #: src/Tribe/Aggregator/Tabs/New.php:351
2473
+ msgid "%1$d new event category was created."
2474
+ msgid_plural "%1$d new event categories were created."
2475
+ msgstr[0] "%1$d ny hendingskategori vart laga."
2476
+ msgstr[1] "%1$d nye hendingskategoriar vart laga."
2477
+
2478
+ #: src/Tribe/Aggregator/Tabs/New.php:342
2479
+ msgid "View your event organizers"
2480
+ msgstr "Sjå dine arrangørar"
2481
+
2482
+ #: src/Tribe/Aggregator/Tabs/New.php:338
2483
+ msgid "%1$d new organizer was imported."
2484
+ msgid_plural "%1$d new organizers were imported."
2485
+ msgstr[0] "%1$d ny arrangør vart importert"
2486
+ msgstr[1] "%1$d nye arrangørar vart importert"
2487
+
2488
+ #: src/Tribe/Aggregator/Tabs/New.php:330
2489
+ msgid "View your event venues"
2490
+ msgstr "Sjå dine lokaler"
2491
+
2492
+ #: src/Tribe/Aggregator/Tabs/New.php:326
2493
+ msgid "%1$d new venue was imported."
2494
+ msgid_plural "%1$d new venues were imported."
2495
+ msgstr[0] "%1$d nytt lokale vart importert"
2496
+ msgstr[1] "%1$d nye lokaler vart importert"
2497
+
2498
+ #: src/Tribe/Aggregator/Tabs/New.php:316
2499
+ msgid "View all %s"
2500
+ msgstr "Sjå alle %s"
2501
+
2502
+ #: src/Tribe/Aggregator/Tabs/New.php:308
2503
+ msgid "No %1$s were imported or updated."
2504
+ msgstr "Ingen %1$s vart importerte eller oppdaterte."
2505
+
2506
+ #: src/Tribe/Aggregator/Tabs/New.php:301
2507
+ msgid "%1$d new image was imported."
2508
+ msgid_plural "%1$d new images were imported."
2509
+ msgstr[0] "%1$d nytt bilete vart importert."
2510
+ msgstr[1] "%1$d nye bilete vart importerte."
2511
+
2512
+ #: src/Tribe/Aggregator/Tabs/New.php:292
2513
+ msgid "%1$d already-imported %2$s was skipped."
2514
+ msgid_plural "%1$d already-imported %2$s were skipped."
2515
+ msgstr[0] ""
2516
+ msgstr[1] ""
2517
+
2518
+ #: src/Tribe/Aggregator/Tabs/New.php:281
2519
+ msgid "%1$d existing %2$s was updated."
2520
+ msgid_plural "%1$d existing %2$s were updated."
2521
+ msgstr[0] ""
2522
+ msgstr[1] ""
2523
+
2524
+ #: src/Tribe/Aggregator/Tabs/New.php:269
2525
+ msgid "%1$d new %2$s was imported."
2526
+ msgid_plural "%1$d new %2$s were imported."
2527
+ msgstr[0] ""
2528
+ msgstr[1] ""
2529
+
2530
+ #: src/Tribe/Aggregator/Tabs/New.php:205
2531
+ msgid "1 import was scheduled."
2532
+ msgstr "1 import vart planlagt."
2533
+
2534
+ #: src/Tribe/Aggregator/Tabs/New.php:81
2535
+ msgid "New Import"
2536
+ msgstr "Ny import"
2537
+
2538
+ #: src/Tribe/Aggregator/Tabs/History.php:93
2539
+ msgid "History"
2540
+ msgstr "Historie"
2541
+
2542
+ #: src/Tribe/Aggregator/Tabs/History.php:55
2543
+ #: src/Tribe/Aggregator/Tabs/Scheduled.php:57
2544
+ msgid "Records per page"
2545
+ msgstr "Rader per side"
2546
+
2547
+ #: src/Tribe/Aggregator/Tabs/Favorite.php:37
2548
+ msgid "Favorite Imports"
2549
+ msgstr "Favoritt-importar"
2550
+
2551
+ #: src/Tribe/Aggregator/Tabs/Edit.php:143
2552
+ msgid "Your Scheduled Import has been updated!"
2553
+ msgstr "Din planlagte import har blitt oppdatert!"
2554
+
2555
+ #: src/Tribe/Aggregator/Tabs/Edit.php:137
2556
+ msgid "View All Scheduled Imports"
2557
+ msgstr "Sjå alle planlagte importar"
2558
+
2559
+ #: src/Tribe/Aggregator/Tabs/Edit.php:131
2560
+ msgid "Scheduled import was successfully updated."
2561
+ msgstr "Den planlagte importen vart oppdatert."
2562
+
2563
+ #: src/Tribe/Aggregator/Tabs/Edit.php:52
2564
+ msgid "Edit Import"
2565
+ msgstr "Endre import"
2566
+
2567
+ #: src/Tribe/Aggregator/Tabs/Abstract.php:145
2568
+ msgid "Please provide a Meetup URL when importing from Meetup."
2569
+ msgstr ""
2570
+
2571
+ #: src/Tribe/Aggregator/Tabs/Abstract.php:140
2572
+ msgid "Please provide a Facebook URL when importing from Facebook."
2573
+ msgstr ""
2574
+
2575
+ #: src/Tribe/Aggregator/Tabs/Abstract.php:189
2576
+ msgid "Please provide the URL that you wish to import."
2577
+ msgstr ""
2578
+
2579
+ #: src/Tribe/Aggregator/Tabs/Abstract.php:135
2580
+ msgid "Please provide the file that you wish to import."
2581
+ msgstr ""
2582
+
2583
+ #: src/Tribe/Aggregator/Tabs/Abstract.php:59
2584
+ msgid "There was a problem processing your import. Please try again."
2585
+ msgstr ""
2586
+
2587
+ #: src/Tribe/Aggregator/Service.php:170
2588
+ msgid "Connection timed out while transferring the feed. If you are dealing with large feeds you may need to customize the tribe_aggregator_connection_timeout filter."
2589
+ msgstr ""
2590
+
2591
+ #: src/Tribe/Aggregator/Service.php:548
2592
+ msgid "Import queued"
2593
+ msgstr "Import lagt i kø"
2594
+
2595
+ #: src/Tribe/Aggregator/Service.php:547
2596
+ msgid "Import is complete"
2597
+ msgstr "Import er fullført"
2598
+
2599
+ #: src/Tribe/Aggregator/Service.php:546
2600
+ msgid "Successfully loaded import origins"
2601
+ msgstr ""
2602
+
2603
+ #: src/Tribe/Aggregator/Service.php:545
2604
+ msgid "Successfully fetched Facebook Token"
2605
+ msgstr ""
2606
+
2607
+ #: src/Tribe/Aggregator/Service.php:544
2608
+ msgid "Import created"
2609
+ msgstr "Import laga"
2610
+
2611
+ #: src/Tribe/Aggregator/Service.php:543
2612
+ msgid "Success"
2613
+ msgstr "Suksess"
2614
+
2615
+ #: src/Tribe/Aggregator/Service.php:542
2616
+ msgid "The import will be starting soon."
2617
+ msgstr "Importen vil starte snart."
2618
+
2619
+ #: src/Tribe/Aggregator/Service.php:541
2620
+ msgid "The import is in progress."
2621
+ msgstr "Importen er i framgang."
2622
+
2623
+ #: src/Tribe/Aggregator/Service.php:539
2624
+ msgid "Event Aggregator cannot reach Meetup.com because you exceeded the request limit for your Meetup API key."
2625
+ msgstr ""
2626
+
2627
+ #: src/Tribe/Aggregator/Service.php:538
2628
+ msgid "Your Meetup API key is invalid."
2629
+ msgstr ""
2630
+
2631
+ #: src/Tribe/Aggregator/Service.php:537
2632
+ msgid "The file provided could not be opened. Please confirm that it is a properly formatted .ics file."
2633
+ msgstr ""
2634
+
2635
+ #: src/Tribe/Aggregator/Service.php:535
2636
+ msgid "The import failed for an unknown reason. Please try again. If the problem persists, please contact support."
2637
+ msgstr ""
2638
+
2639
+ #: src/Tribe/Aggregator/Service.php:534
2640
+ msgid "The image associated with your event is not accessible with your API key."
2641
+ msgstr ""
2642
+
2643
+ #: src/Tribe/Aggregator/Service.php:533
2644
+ msgid "The image associated with your event could not be imported."
2645
+ msgstr ""
2646
+
2647
+ #: src/Tribe/Aggregator/Service.php:532
2648
+ msgid "The URL provided failed to load."
2649
+ msgstr ""
2650
+
2651
+ #: src/Tribe/Aggregator/Service.php:531
2652
+ msgid "The URL provided could not be reached."
2653
+ msgstr ""
2654
+
2655
+ #: src/Tribe/Aggregator/Service.php:529
2656
+ msgid "Events cannot be imported because Facebook has returned an error. This could mean that the event ID does not exist, the event or source is marked as Private, or the event or source has been otherwise restricted by Facebook. You can <a href=\"https://theeventscalendar.com/knowledgebase/import-errors/\" target=\"_blank\">read more about Facebook restrictions in our knowledgebase</a>."
2657
+ msgstr ""
2658
+
2659
+ #: src/Tribe/Aggregator/Service.php:527
2660
+ msgid "Sorry, but something went wrong. Please try again."
2661
+ msgstr ""
2662
+
2663
+ #: src/Tribe/Aggregator/Records.php:257
2664
+ msgctxt "event aggregator status"
2665
+ msgid "Draft <span class=\"count\">(%s)</span>"
2666
+ msgid_plural "Draft <span class=\"count\">(%s)</span>"
2667
+ msgstr[0] "Utkast <span class=\"count\">(%s)</span>"
2668
+ msgstr[1] "Utkast <span class=\"count\">(%s)</span>"
2669
+
2670
+ #: src/Tribe/Aggregator/Records.php:256
2671
+ msgctxt "event aggregator status"
2672
+ msgid "Draft"
2673
+ msgstr "Utkast"
2674
+
2675
+ #: src/Tribe/Aggregator/Records.php:247
2676
+ msgctxt "event aggregator status"
2677
+ msgid "Pending <span class=\"count\">(%s)</span>"
2678
+ msgid_plural "Pending <span class=\"count\">(%s)</span>"
2679
+ msgstr[0] "Avventande <span class=\"count\">(%s)</span>"
2680
+ msgstr[1] "Avventande <span class=\"count\">(%s)</span>"
2681
+
2682
+ #: src/Tribe/Aggregator/Records.php:246
2683
+ msgctxt "event aggregator status"
2684
+ msgid "Pending"
2685
+ msgstr "Avventar"
2686
+
2687
+ #: src/Tribe/Aggregator/Records.php:237
2688
+ msgctxt "event aggregator status"
2689
+ msgid "Schedule <span class=\"count\">(%s)</span>"
2690
+ msgid_plural "Schedule <span class=\"count\">(%s)</span>"
2691
+ msgstr[0] "Planlagt <span class=\"count\">(%s)</span>"
2692
+ msgstr[1] "Planlagte <span class=\"count\">(%s)</span>"
2693
+
2694
+ #: src/Tribe/Aggregator/Records.php:236
2695
+ msgctxt "event aggregator status"
2696
+ msgid "Schedule"
2697
+ msgstr "Planlegg"
2698
+
2699
+ #: src/Tribe/Aggregator/Records.php:227
2700
+ msgctxt "event aggregator status"
2701
+ msgid "Failed <span class=\"count\">(%s)</span>"
2702
+ msgid_plural "Failed <span class=\"count\">(%s)</span>"
2703
+ msgstr[0] "Feila <span class=\"count\">(%s)</span>"
2704
+ msgstr[1] "Feila <span class=\"count\">(%s)</span>"
2705
+
2706
+ #: src/Tribe/Aggregator/Records.php:226
2707
+ msgctxt "event aggregator status"
2708
+ msgid "Failed"
2709
+ msgstr "Feila"
2710
+
2711
+ #: src/Tribe/Aggregator/Records.php:217
2712
+ msgctxt "event aggregator status"
2713
+ msgid "Imported <span class=\"count\">(%s)</span>"
2714
+ msgid_plural "Imported <span class=\"count\">(%s)</span>"
2715
+ msgstr[0] "Importert <span class=\"count\">(%s)</span>"
2716
+ msgstr[1] "Importerte <span class=\"count\">(%s)</span>"
2717
+
2718
+ #: src/Tribe/Aggregator/Records.php:216
2719
+ msgctxt "event aggregator status"
2720
+ msgid "Imported"
2721
+ msgstr "Importert"
2722
+
2723
+ #: src/Tribe/Aggregator/Records.php:179
2724
+ msgid "No Aggregator Records found in Trash."
2725
+ msgstr ""
2726
+
2727
+ #: src/Tribe/Aggregator/Records.php:178
2728
+ msgid "No Aggregator Records found."
2729
+ msgstr ""
2730
+
2731
+ #: src/Tribe/Aggregator/Records.php:177
2732
+ msgid "Parent Aggregator Record:"
2733
+ msgstr ""
2734
+
2735
+ #: src/Tribe/Aggregator/Records.php:176
2736
+ msgid "Search Aggregator Records"
2737
+ msgstr ""
2738
+
2739
+ #: src/Tribe/Aggregator/Records.php:175
2740
+ msgid "All Aggregator Records"
2741
+ msgstr ""
2742
+
2743
+ #: src/Tribe/Aggregator/Records.php:174
2744
+ msgid "View Aggregator Record"
2745
+ msgstr ""
2746
+
2747
+ #: src/Tribe/Aggregator/Records.php:173
2748
+ msgid "Edit Aggregator Record"
2749
+ msgstr ""
2750
+
2751
+ #: src/Tribe/Aggregator/Records.php:172
2752
+ msgid "New Aggregator Record"
2753
+ msgstr ""
2754
+
2755
+ #: src/Tribe/Aggregator/Records.php:171
2756
+ msgid "Add New Aggregator Record"
2757
+ msgstr ""
2758
+
2759
+ #: src/Tribe/Aggregator/Records.php:170
2760
+ msgctxt "record"
2761
+ msgid "Add New"
2762
+ msgstr "Legg til ny"
2763
+
2764
+ #: src/Tribe/Aggregator/Records.php:169
2765
+ msgctxt "add new on admin bar"
2766
+ msgid "Aggregator Record"
2767
+ msgstr "Aggregator-element"
2768
+
2769
+ #: src/Tribe/Aggregator/Records.php:168
2770
+ msgctxt "admin menu"
2771
+ msgid "Aggregator Records"
2772
+ msgstr "Aggregator-element"
2773
+
2774
+ #: src/Tribe/Aggregator/Records.php:167
2775
+ msgctxt "post type singular name"
2776
+ msgid "Aggregator Record"
2777
+ msgstr "Aggregator-element"
2778
+
2779
+ #: src/Tribe/Aggregator/Records.php:166
2780
+ msgctxt "post type general name"
2781
+ msgid "Aggregator Records"
2782
+ msgstr "Aggregator-element"
2783
+
2784
+ #: src/Tribe/Aggregator/Records.php:149
2785
+ msgid "Events Aggregator Record"
2786
+ msgstr ""
2787
+
2788
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:176
2789
+ msgid "Unable to continue inserting data. Please reload this page to continue/try again."
2790
+ msgstr ""
2791
+
2792
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:95
2793
+ msgid "Skipped:"
2794
+ msgstr "Hoppa over:"
2795
+
2796
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:94
2797
+ msgid "Updated:"
2798
+ msgstr "Oppdatert:"
2799
+
2800
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:93
2801
+ msgid "Created:"
2802
+ msgstr "Laga:"
2803
+
2804
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:89
2805
+ msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
2806
+ msgstr ""
2807
+
2808
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
2809
+ msgid "Could not process queue for Import Record %1$d: %2$s"
2810
+ msgstr ""
2811
+
2812
+ #: src/Tribe/Aggregator/Record/List_Table.php:637
2813
+ msgid "Select %s"
2814
+ msgstr "Vel %s"
2815
+
2816
+ #: src/Tribe/Aggregator/Record/List_Table.php:602
2817
+ #: src/Tribe/Aggregator/Record/List_Table.php:611
2818
+ #: src/Tribe/Aggregator/Record/List_Table.php:619
2819
+ msgid "updated"
2820
+ msgstr "oppdatert"
2821
+
2822
+ #: src/Tribe/Aggregator/Record/List_Table.php:600
2823
+ #: src/Tribe/Aggregator/Record/List_Table.php:608
2824
+ #: src/Tribe/Aggregator/Record/List_Table.php:616
2825
+ msgid "new"
2826
+ msgstr "nytt"
2827
+
2828
+ #: src/Tribe/Aggregator/Record/List_Table.php:597
2829
+ msgid "Latest Import:"
2830
+ msgstr "Siste import:"
2831
+
2832
+ #: src/Tribe/Aggregator/Record/List_Table.php:595
2833
+ msgid "all time"
2834
+ msgstr "Alltid"
2835
+
2836
+ #: src/Tribe/Aggregator/Record/List_Table.php:569
2837
+ msgid "One Time"
2838
+ msgstr "Ein gong"
2839
+
2840
+ #: src/Tribe/Aggregator/Record/List_Table.php:566
2841
+ msgid "Invalid Frequency"
2842
+ msgstr "Ugyldig frekvens"
2843
+
2844
+ #: src/Tribe/Aggregator/Record/List_Table.php:550 src/Tribe/Aggregator.php:397
2845
+ #: src/Tribe/Ignored_Events.php:349
2846
+ #: src/admin-views/tribe-options-addons-api.php:36
2847
+ msgctxt "in human readable time"
2848
+ msgid "in about %s"
2849
+ msgstr "om omtrent %s"
2850
+
2851
+ #: src/Tribe/Aggregator/Record/List_Table.php:548 src/Tribe/Aggregator.php:395
2852
+ #: src/Tribe/Ignored_Events.php:347
2853
+ #: src/admin-views/tribe-options-addons-api.php:34
2854
+ msgctxt "human readable time ago"
2855
+ msgid "about %s ago"
2856
+ msgstr "omtrent %s sidan"
2857
+
2858
+ #: src/Tribe/Aggregator/Record/List_Table.php:506
2859
+ msgid "Radius:"
2860
+ msgstr "Radius:"
2861
+
2862
+ #: src/Tribe/Aggregator/Record/List_Table.php:489
2863
+ msgid "Keywords:"
2864
+ msgstr "Nøkkelord:"
2865
+
2866
+ #: src/Tribe/Aggregator/Record/List_Table.php:476
2867
+ #: src/Tribe/Ignored_Events.php:329
2868
+ msgctxt "record via origin"
2869
+ msgid "via "
2870
+ msgstr "via"
2871
+
2872
+ #: src/Tribe/Aggregator/Record/List_Table.php:433
2873
+ msgid "Import preview"
2874
+ msgstr "Førehandsvisning import"
2875
+
2876
+ #: src/Tribe/Aggregator/Record/List_Table.php:429
2877
+ msgid "Import pending"
2878
+ msgstr ""
2879
+
2880
+ #: src/Tribe/Aggregator/Record/List_Table.php:425
2881
+ msgid "Import schedule"
2882
+ msgstr ""
2883
+
2884
+ #: src/Tribe/Aggregator/Record/List_Table.php:413
2885
+ msgid "Import failed"
2886
+ msgstr "Import feila"
2887
+
2888
+ #: src/Tribe/Aggregator/Record/List_Table.php:409
2889
+ msgid "Import completed"
2890
+ msgstr "Import fullført"
2891
+
2892
+ #: src/Tribe/Aggregator/Record/List_Table.php:379
2893
+ msgid "Run Import"
2894
+ msgstr "Køyr import"
2895
+
2896
+ #: src/Tribe/Aggregator/Record/List_Table.php:378
2897
+ msgid "Start an import from this source now, regardless of schedule."
2898
+ msgstr ""
2899
+
2900
+ #: src/Tribe/Aggregator/Record/List_Table.php:333
2901
+ msgctxt "column name"
2902
+ msgid "# Imported"
2903
+ msgstr "# importert"
2904
+
2905
+ #: src/Tribe/Aggregator/Record/List_Table.php:330
2906
+ msgctxt "column name"
2907
+ msgid "When"
2908
+ msgstr "Når"
2909
+
2910
+ #: src/Tribe/Aggregator/Record/List_Table.php:329
2911
+ msgctxt "column name"
2912
+ msgid "Type"
2913
+ msgstr "Type"
2914
+
2915
+ #: src/Tribe/Aggregator/Record/List_Table.php:324
2916
+ msgctxt "column name"
2917
+ msgid "Last Import"
2918
+ msgstr "Siste import"
2919
+
2920
+ #: src/Tribe/Aggregator/Record/List_Table.php:323
2921
+ msgctxt "column name"
2922
+ msgid "Frequency"
2923
+ msgstr "Frekvens"
2924
+
2925
+ #: src/Tribe/Aggregator/Record/List_Table.php:322
2926
+ #: src/Tribe/Aggregator/Record/List_Table.php:328
2927
+ msgctxt "column name"
2928
+ msgid "Source"
2929
+ msgstr "Kjelde"
2930
+
2931
+ #: src/Tribe/Aggregator/Record/List_Table.php:277
2932
+ msgctxt "records"
2933
+ msgid "All <span class=\"count\">(%s)</span>"
2934
+ msgid_plural "All <span class=\"count\">(%s)</span>"
2935
+ msgstr[0] "Alle <span class=\"count\">(%s)</span>"
2936
+ msgstr[1] "Alle <span class=\"count\">(%s)</span>"
2937
+
2938
+ #: src/Tribe/Aggregator/Record/List_Table.php:244
2939
+ msgid "Apply"
2940
+ msgstr "Legg til"
2941
+
2942
+ #: src/Tribe/Aggregator/Record/List_Table.php:228
2943
+ #: src/Tribe/Aggregator/Record/List_Table.php:229
2944
+ msgid "Bulk Actions"
2945
+ msgstr "Massehandlingar"
2946
+
2947
+ #: src/Tribe/Aggregator/Record/List_Table.php:181
2948
+ msgid "Filter"
2949
+ msgstr "Filtrer"
2950
+
2951
+ #: src/Tribe/Aggregator/Record/List_Table.php:163
2952
+ #: src/Tribe/Aggregator/Record/List_Table.php:164
2953
+ msgid "Filter By Frequency"
2954
+ msgstr "Filtrer etter frekvens"
2955
+
2956
+ #: src/Tribe/Aggregator/Record/List_Table.php:144
2957
+ #: src/Tribe/Aggregator/Record/List_Table.php:145
2958
+ msgid "Filter By Origin"
2959
+ msgstr "Filtrer etter opphav"
2960
+
2961
+ #: src/Tribe/Aggregator/Record/ICS.php:33
2962
+ msgid "ICS"
2963
+ msgstr ""
2964
+
2965
+ #: src/Tribe/Aggregator/Record/Eventbrite.php:14
2966
+ msgid "Eventbrite"
2967
+ msgstr ""
2968
+
2969
+ #: src/Tribe/Aggregator/Record/Abstract.php:1002
2970
+ msgid "Deleted Attachment: %d"
2971
+ msgstr ""
2972
+
2973
+ #: src/Tribe/Aggregator/Record/Abstract.php:424
2974
+ msgid "Record: "
2975
+ msgstr "Rad:"
2976
+
2977
+ #: src/Tribe/Aggregator/Page.php:405
2978
+ msgid "Manage Active Plugins"
2979
+ msgstr "Administrer aktive utvidelsar"
2980
+
2981
+ #: src/Tribe/Aggregator/Page.php:392
2982
+ msgid "It looks like you are using our legacy plugin, %1$s, along with our new Event Aggregator service. Event Aggregator includes all the features of the legacy plugin plus enhanced functionality. For best results, please deactivate %1$s."
2983
+ msgid_plural "It looks like you are using our legacy plugins, %1$s and %2$s, along with our new Event Aggregator service. Event Aggregator includes all the features of the legacy plugins plus enhanced functionality. For best results, please deactivate %1$s and %2$s."
2984
+ msgstr[0] ""
2985
+ msgstr[1] ""
2986
+
2987
+ #: src/Tribe/Aggregator/Page.php:98
2988
+ msgid "Your preview is taking a bit longer than expected, but it <i>is</i> still being generated."
2989
+ msgstr ""
2990
+
2991
+ #: src/Tribe/Aggregator/Page.php:97
2992
+ msgid "If all goes according to plan, you will have your preview in a few moments."
2993
+ msgstr ""
2994
+
2995
+ #: src/Tribe/Aggregator/Page.php:96
2996
+ msgid "Please continue to wait while your preview is generated."
2997
+ msgstr ""
2998
+
2999
+ #: src/Tribe/Aggregator/Page.php:95
3000
+ msgid "Please wait while your preview is fetched."
3001
+ msgstr ""
3002
+
3003
+ #: src/Tribe/Aggregator/Page.php:93
3004
+ msgid "Hide Filters"
3005
+ msgstr "Skjul filtreringar"
3006
+
3007
+ #: src/Tribe/Aggregator/Page.php:92
3008
+ #: src/Tribe/Aggregator/Record/List_Table.php:485
3009
+ msgid "View Filters"
3010
+ msgstr "Sjå filtreringar"
3011
+
3012
+ #: src/Tribe/Aggregator/Page.php:91
3013
+ msgid "Removing this scheduled import will stop automatic imports from the source. No events will be deleted."
3014
+ msgstr ""
3015
+
3016
+ #: src/Tribe/Aggregator/Page.php:90
3017
+ msgid "Your preview doesn't have any records to import."
3018
+ msgstr ""
3019
+
3020
+ #: src/Tribe/Aggregator/Page.php:89
3021
+ msgid "Your import must include at least one event"
3022
+ msgstr ""
3023
+
3024
+ #: src/Tribe/Aggregator/Page.php:87
3025
+ msgid "Save Scheduled Import"
3026
+ msgstr ""
3027
+
3028
+ #: src/Tribe/Aggregator/Page.php:86
3029
+ msgid "Import Checked (%d)"
3030
+ msgstr ""
3031
+
3032
+ #: src/Tribe/Aggregator/Page.php:85
3033
+ msgid "Import All"
3034
+ msgstr "Importer alle"
3035
+
3036
+ #: src/Tribe/Aggregator/Page.php:84
3037
+ msgid "Import All (%d)"
3038
+ msgstr "Importer alle (%d)"
3039
+
3040
+ #: src/Tribe/Aggregator/Page.php:83
3041
+ msgid "There was an error fetching the results from your import:"
3042
+ msgstr ""
3043
+
3044
+ #: src/Tribe/Aggregator/Page.php:82
3045
+ msgid "The preview is taking longer than expected. Please try again in a moment."
3046
+ msgstr ""
3047
+
3048
+ #: src/Tribe/Aggregator/Page.php:81
3049
+ msgctxt "Meridian: pm"
3050
+ msgid "PM"
3051
+ msgstr "PM"
3052
+
3053
+ #: src/Tribe/Aggregator/Page.php:80
3054
+ msgctxt "Meridian: am"
3055
+ msgid "AM"
3056
+ msgstr "AM"
3057
+
3058
+ #: src/Tribe/Aggregator/Migrate.php:435
3059
+ msgid "Success! The settings from iCal Importer have been migrated to Event Aggregator. You can view your migrated imports on the Scheduled Imports tab."
3060
+ msgstr ""
3061
+
3062
+ #: src/Tribe/Aggregator/Migrate.php:379
3063
+ msgid "We did not find any iCal Importer settings to migrate."
3064
+ msgstr ""
3065
+
3066
+ #: src/Tribe/Aggregator/Migrate.php:372
3067
+ msgid "You do not have permission to migrate iCal Importer settings to Event Aggregator"
3068
+ msgstr ""
3069
+
3070
+ #: src/Tribe/Aggregator/Migrate.php:365
3071
+ msgid "Error: we were not able to migrate your iCal Importer settings to Event Aggregator. Please try again later."
3072
+ msgstr ""
3073
+
3074
+ #: src/Tribe/Aggregator/Migrate.php:348
3075
+ msgid "Success! The settings from Facebook Events have been migrated to Event Aggregator. You can view your migrated imports on the Scheduled Imports tab."
3076
+ msgstr ""
3077
+
3078
+ #: src/Tribe/Aggregator/Migrate.php:294
3079
+ msgid "We did not find any Facebook Events settings to migrate."
3080
+ msgstr ""
3081
+
3082
+ #: src/Tribe/Aggregator/Migrate.php:287
3083
+ msgid "You do not have permission to migrate Facebook Events settings to Event Aggregator"
3084
+ msgstr ""
3085
+
3086
+ #: src/Tribe/Aggregator/Migrate.php:280
3087
+ msgid "Error: we were not able to migrate your Facebook Events settings to Event Aggregator. Please try again later."
3088
+ msgstr ""
3089
+
3090
+ #: src/Tribe/Aggregator/Migrate.php:80
3091
+ msgid "Migrate iCal Importer settings"
3092
+ msgstr ""
3093
+
3094
+ #: src/Tribe/Aggregator/Migrate.php:76
3095
+ msgid "Migrate Facebook Events settings"
3096
+ msgstr ""
3097
+
3098
+ #: src/Tribe/Aggregator/Migrate.php:73
3099
+ msgid "Thanks for activating Event Aggregator! It looks like you have some settings and imports configured on our legacy importer plugins. To complete your transition, we need to transfer those options to our new system."
3100
+ msgstr ""
3101
+
3102
+ #: src/Tribe/Aggregator/Meta_Box.php:38
3103
+ msgid "Imported Event"
3104
+ msgstr "Importert hending"
3105
+
3106
+ #: src/Tribe/Aggregator/Errors.php:72
3107
+ msgid "The records you were attempting to import were still not available when this queue was processed. Please try again."
3108
+ msgstr ""
3109
+
3110
+ #: src/Tribe/Aggregator/Errors.php:71
3111
+ msgid "Unable to save scheduled import. Please try again."
3112
+ msgstr ""
3113
+
3114
+ #: src/Tribe/Aggregator/Errors.php:70
3115
+ msgid "Unable to save scheduled import instance. Please try again."
3116
+ msgstr ""
3117
+
3118
+ #: src/Tribe/Aggregator/Errors.php:69
3119
+ msgid "Import records must be finalized before posts can be inserted."
3120
+ msgstr ""
3121
+
3122
+ #: src/Tribe/Aggregator/Errors.php:68
3123
+ msgid "The CSV file cannot be found. You may need to re-upload the file."
3124
+ msgstr ""
3125
+
3126
+ #: src/Tribe/Aggregator/Errors.php:67
3127
+ msgid "You must map columns from the CSV file to specific fields in order to perform a CSV import."
3128
+ msgstr ""
3129
+
3130
+ #: src/Tribe/Aggregator/Errors.php:65 src/Tribe/Aggregator/Service.php:187
3131
+ #: src/Tribe/Aggregator/Service.php:194
3132
+ msgid "There may be an issue with the Event Aggregator server. Please try your import again later."
3133
+ msgstr ""
3134
+
3135
+ #: src/Tribe/Aggregator/Errors.php:64
3136
+ msgid "You must enter an Event Aggregator license key in Events > Settings > Licenses before using this service."
3137
+ msgstr ""
3138
+
3139
+ #: src/Tribe/Aggregator/Errors.php:63
3140
+ msgid "Unable to get a post of the correct type."
3141
+ msgstr ""
3142
+
3143
+ #: src/Tribe/Aggregator/Errors.php:62
3144
+ msgid "The import record is missing the origin."
3145
+ msgstr ""
3146
+
3147
+ #: src/Tribe/Aggregator/Errors.php:61
3148
+ msgid "Unable to find a matching post."
3149
+ msgstr ""
3150
+
3151
+ #: src/Tribe/Aggregator/Errors.php:60
3152
+ msgid "An invalid frequency was used when trying to create this scheduled import."
3153
+ msgstr ""
3154
+
3155
+ #: src/Tribe/Aggregator/Errors.php:59
3156
+ msgid "Unable to attach an image to the event"
3157
+ msgstr ""
3158
+
3159
+ #: src/Tribe/Aggregator/Errors.php:58
3160
+ msgid "Unable to find an import record with the ID of %s."
3161
+ msgstr ""
3162
+
3163
+ #: src/Tribe/Aggregator/Errors.php:57
3164
+ msgid "We received an invalid Facebook Token from the Service."
3165
+ msgstr ""
3166
+
3167
+ #: src/Tribe/Aggregator/Errors.php:56
3168
+ msgid "The Event Aggregator API responded with bad data. Please <a href=\"https://theeventscalendar.com/support/post/\" target=\"_blank\">contact support</a>."
3169
+ msgstr ""
3170
+
3171
+ #: src/Tribe/Aggregator/Errors.php:55
3172
+ msgid "Unable to find an event with the ID of %s."
3173
+ msgstr ""
3174
+
3175
+ #: src/Tribe/Aggregator/Errors.php:54
3176
+ msgid "Only scheduled import records can be edited."
3177
+ msgstr ""
3178
+
3179
+ #: src/Tribe/Aggregator/Errors.php:53
3180
+ msgid "Invalid data provided for CSV import."
3181
+ msgstr ""
3182
+
3183
+ #: src/Tribe/Aggregator/Errors.php:52
3184
+ msgid "You must provide a valid CSV file to perform a CSV import."
3185
+ msgstr ""
3186
+
3187
+ #: src/Tribe/Aggregator/Errors.php:51
3188
+ msgid "An invalid import type was used when trying to create this import record."
3189
+ msgstr ""
3190
+
3191
+ #: src/Tribe/Aggregator/Errors.php:49
3192
+ msgid "During scheduled import, the limit of HTTP requests was reached and the import was rescheduled."
3193
+ msgstr ""
3194
+
3195
+ #: src/Tribe/Aggregator/Errors.php:48
3196
+ msgid "You do not have permission to delete this record."
3197
+ msgstr ""
3198
+
3199
+ #: src/Tribe/Aggregator/Errors.php:47
3200
+ msgid "You cannot delete a history record (ID: \"%d\"). "
3201
+ msgstr ""
3202
+
3203
+ #: src/Tribe/Aggregator/Errors.php:46 src/Tribe/Aggregator/Service.php:540
3204
+ msgid "The daily limit of %d import requests to the Event Aggregator service has been reached. Please try again later."
3205
+ msgstr ""
3206
+
3207
+ #: src/Tribe/Aggregator/Errors.php:45
3208
+ msgid "The image associated with your event could not be attached to the event."
3209
+ msgstr ""
3210
+
3211
+ #: src/Tribe/Aggregator/Cron.php:192
3212
+ msgctxt "aggregator schedule frequency"
3213
+ msgid "Every 15 minutes"
3214
+ msgstr "Kvart 15. minutt"
3215
+
3216
+ #: src/Tribe/Aggregator/Cron.php:118
3217
+ msgctxt "aggregator schedule frequency"
3218
+ msgid "Monthly"
3219
+ msgstr "Månadleg"
3220
+
3221
+ #: src/Tribe/Aggregator/Cron.php:113
3222
+ msgctxt "aggregator schedule frequency"
3223
+ msgid "Weekly"
3224
+ msgstr "Vekentleg"
3225
+
3226
+ #: src/Tribe/Aggregator/Cron.php:108
3227
+ msgctxt "aggregator schedule frequency"
3228
+ msgid "Daily"
3229
+ msgstr "Dagleg"
3230
+
3231
+ #: src/Tribe/Aggregator/Cron.php:103
3232
+ msgctxt "aggregator schedule frequency"
3233
+ msgid "Hourly"
3234
+ msgstr "Kvar time"
3235
+
3236
+ #: src/Tribe/Aggregator/Cron.php:98
3237
+ msgctxt "aggregator schedule frequency"
3238
+ msgid "Every 30 Minutes"
3239
+ msgstr "Kvart 30. minutt"
3240
+
3241
+ #: src/Tribe/Aggregator/Cron.php:93
3242
+ msgctxt "aggregator schedule frequency"
3243
+ msgid "On Demand"
3244
+ msgstr "På førespurnad"
3245
+
3246
+ #: src/Tribe/Aggregator/API/Origins.php:60
3247
+ #: src/Tribe/Aggregator/Record/Meetup.php:29
3248
+ #: src/admin-views/aggregator/settings.php:459
3249
+ #: src/admin-views/aggregator/status.php:203
3250
+ #: src/admin-views/tribe-options-addons-api.php:90
3251
+ msgid "Meetup"
3252
+ msgstr ""
3253
+
3254
+ #: src/Tribe/Aggregator/API/Origins.php:54
3255
+ #: src/admin-views/aggregator/settings.php:456
3256
+ msgid "ICS File"
3257
+ msgstr ""
3258
+
3259
+ #: src/Tribe/Aggregator/API/Origins.php:48
3260
+ #: src/Tribe/Aggregator/Record/iCal.php:14
3261
+ #: src/admin-views/aggregator/settings.php:455
3262
+ msgid "iCalendar"
3263
+ msgstr ""
3264
+
3265
+ #: src/Tribe/Aggregator/API/Origins.php:31
3266
+ #: src/Tribe/Aggregator/Admin_Bar.php:88 src/Tribe/Aggregator/Service.php:604
3267
+ msgid "CSV File"
3268
+ msgstr ""
3269
+
3270
+ #: src/Tribe/Admin_List.php:330
3271
+ msgctxt "%s Event count in admin list"
3272
+ msgid "All %s"
3273
+ msgstr "Alle %s"
3274
+
3275
+ #: common/src/admin-views/tribe-options-licenses.php:30
3276
+ msgid "Not seeing an update but expecting one? In WordPress, go to %1$sDashboard > Updates%2$s and click \"Check Again\"."
3277
+ msgstr ""
3278
+
3279
+ #: common/src/admin-views/tribe-options-licenses.php:25
3280
+ msgid "If you're seeing a red message telling you that your key isn't valid or is out of installs, visit %1$s to manage your installs or renew / upgrade your license."
3281
+ msgstr ""
3282
+
3283
+ #: common/src/admin-views/tribe-options-licenses.php:22
3284
+ msgid "Each paid add-on has its own unique license key. Simply paste the key into its appropriate field below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message."
3285
+ msgstr ""
3286
+
3287
+ #: common/src/admin-views/tribe-options-licenses.php:15
3288
+ msgid "The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. %3$sFind your license keys at %2$s%4$s."
3289
+ msgstr ""
3290
+
3291
+ #: common/src/admin-views/tribe-options-licenses.php:11
3292
+ #: common/src/admin-views/tribe-options-licenses.php:16
3293
+ msgid " (opens in new window)"
3294
+ msgstr ""
3295
+
3296
+ #: common/src/admin-views/tribe-options-help.php:48
3297
+ msgid "Event Log"
3298
+ msgstr "Hendingslogg"
3299
+
3300
+ #: common/src/admin-views/tribe-options-help.php:35
3301
+ msgid "The details of your calendar plugin and settings is often needed for you or our staff to help troubleshoot an issue. Please opt-in below to automatically share your system information with our support team. This will allow us to assist you faster if you post in our forums."
3302
+ msgstr ""
3303
+
3304
+ #: common/src/admin-views/app-shop.php:26
3305
+ msgid "Buy This Add-On"
3306
+ msgstr ""
3307
+
3308
+ #: common/src/admin-views/app-shop.php:5
3309
+ msgid "Browse All Add-Ons"
3310
+ msgstr ""
3311
+
3312
+ #: common/src/admin-views/app-shop.php:4
3313
+ msgid "Events Add-Ons"
3314
+ msgstr ""
3315
+
3316
+ #: common/src/Tribe/View_Helpers.php:96
3317
+ msgid "C&ocirc;te d'Ivoire"
3318
+ msgstr ""
3319
+
3320
+ #: common/src/Tribe/Support.php:356
3321
+ msgid "Unique System Info Key Generated"
3322
+ msgstr ""
3323
+
3324
+ #: common/src/Tribe/Support.php:342 common/src/Tribe/Support.php:368
3325
+ msgid "Permission Error"
3326
+ msgstr ""
3327
+
3328
+ #: common/src/Tribe/Support.php:309 common/src/Tribe/Support.php:314
3329
+ msgid "Invalid Key"
3330
+ msgstr "Ugyldig nøkkel"
3331
+
3332
+ #: common/src/Tribe/Support.php:290
3333
+ msgid "Your system information will only be used by the Modern Tribe support team. All information is stored securely. We do not share this information with any third parties."
3334
+ msgstr ""
3335
+
3336
+ #: common/src/Tribe/Support.php:289
3337
+ msgid "Yes, automatically share my system information with the Modern Tribe support team"
3338
+ msgstr ""
3339
+
3340
+ #: common/src/Tribe/PUE/Notices.php:383
3341
+ msgctxt "formatted plugin list"
3342
+ msgid "%1$s and %2$s"
3343
+ msgstr "%1$s og %2$s"
3344
+
3345
+ #: common/src/Tribe/PUE/Notices.php:302
3346
+ msgid "You have a license key for %1$s but the key is out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your license, or purchase a new one."
3347
+ msgid_plural "You have license keys for %1$s but your keys are out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your licenses, or purchase new ones."
3348
+ msgstr[0] ""
3349
+ msgstr[1] ""
3350
+
3351
+ #: common/src/Tribe/PUE/Notices.php:270
3352
+ msgid "There is an update available for %1$s but your license has expired. %2$sVisit the Events Calendar website to renew your license.%3$s"
3353
+ msgid_plural "Updates are available for %1$s but your license keys have expired. %2$sVisit the Events Calendar website to renew your licenses.%3$s"
3354
+ msgstr[0] ""
3355
+ msgstr[1] ""
3356
+
3357
+ #: common/src/Tribe/PUE/Checker.php:1054
3358
+ msgid "There is an update for %s. %sRenew your license%s to get access to bug fixes, security updates, and new features."
3359
+ msgstr ""
3360
+
3361
+ #: common/src/Tribe/PUE/Checker.php:997
3362
+ msgid "There is an update for %s. You'll need to %scheck your license%s to have access to updates, downloads, and support."
3363
+ msgstr ""
3364
+
3365
+ #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
3366
+ #: src/Tribe/Aggregator/Record/Abstract.php:1017
3367
+ msgid " (opens in a new window)"
3368
+ msgstr "(vert opna i eit nytt vindauge)"
3369
+
3370
+ #: common/src/Tribe/PUE/Checker.php:959 common/src/Tribe/PUE/Notices.php:283
3371
+ msgid "Renew Your License Now"
3372
+ msgstr "Forny lisensen din no"
3373
+
3374
+ #: common/src/Tribe/Main.php:275
3375
+ msgid ": Selected 1 row"
3376
+ msgstr ": valt ei rad"
3377
+
3378
+ #: common/src/Tribe/Main.php:274
3379
+ msgid ": Selected %d rows"
3380
+ msgstr ": valt %d rader"
3381
+
3382
+ #: common/src/Tribe/Main.php:269
3383
+ msgid "Previous"
3384
+ msgstr "Tidlegare"
3385
+
3386
+ #: common/src/Tribe/Main.php:267
3387
+ msgid "All"
3388
+ msgstr "Alt"
3389
+
3390
+ #: common/src/Tribe/Main.php:262
3391
+ msgid "Search:"
3392
+ msgstr "Søk:"
3393
+
3394
+ #: common/src/Tribe/Main.php:261
3395
+ msgid "No matching records found"
3396
+ msgstr "Ingen tilsvarande resultat funne"
3397
+
3398
+ #: common/src/Tribe/Main.php:260
3399
+ msgid "(filtered from _MAX_ total entries)"
3400
+ msgstr ""
3401
+
3402
+ #: common/src/Tribe/Main.php:259
3403
+ msgid "Showing 0 to 0 of 0 entries"
3404
+ msgstr ""
3405
+
3406
+ #: common/src/Tribe/Main.php:258
3407
+ msgid "Showing _START_ to _END_ of _TOTAL_ entries"
3408
+ msgstr ""
3409
+
3410
+ #: common/src/Tribe/Main.php:257
3411
+ msgid "No data available in table"
3412
+ msgstr ""
3413
+
3414
+ #: common/src/Tribe/Main.php:256
3415
+ msgid "Show _MENU_ entries"
3416
+ msgstr "Vis _MENY_ oppføringar"
3417
+
3418
+ #: common/src/Tribe/Main.php:254
3419
+ msgid ": activate to sort column descending"
3420
+ msgstr ": aktiver til å sortere kolonne nedadgåande"
3421
+
3422
+ #: common/src/Tribe/Main.php:253
3423
+ msgid ": activate to sort column ascending"
3424
+ msgstr ": aktiver til å sortere kolonne stigande"
3425
+
3426
+ #: common/src/Tribe/Main.php:245
3427
+ msgid "Press \"Cmd + C\" to copy"
3428
+ msgstr "Hold inne \"Cmd +C\" for å kopiere"
3429
+
3430
+ #: common/src/Tribe/Main.php:244
3431
+ msgid "System info copied"
3432
+ msgstr "Systeminfo kopiert"
3433
+
3434
+ #: common/src/Tribe/Main.php:243
3435
+ #: common/src/admin-views/tribe-options-help.php:43
3436
+ msgid "Copy to clipboard"
3437
+ msgstr "Kopier til utklippstavle"
3438
+
3439
+ #: common/src/Tribe/Error.php:38
3440
+ msgid "An Unknown error occurred"
3441
+ msgstr "Det har skjedd ein ukjend feil"
3442
+
3443
+ #: common/src/Tribe/Admin/Help_Page.php:219 common/src/Tribe/Plugins_API.php:34
3444
+ #: src/Tribe/Aggregator/API/Origins.php:230 src/Tribe/Aggregator.php:225
3445
+ msgid "Event Aggregator"
3446
+ msgstr ""
3447
+
3448
+ #: common/src/Tribe/Support.php:163
3449
+ msgid "English"
3450
+ msgstr "Engelsk"
3451
+
3452
+ #: src/admin-views/aggregator/origins/eventbrite.php:3
3453
+ msgid "Eventbrite Event"
3454
+ msgstr ""
3455
+
3456
+ #: src/admin-views/aggregator/origins/eventbrite.php:4
3457
+ msgid "Select from your existing Eventbrite events"
3458
+ msgstr ""
3459
+
3460
+ #: src/Tribe/Aggregator/Page.php:383
3461
+ msgid "iCal Importer"
3462
+ msgstr ""
3463
+
3464
+ #: common/src/Tribe/Plugins_API.php:116
3465
+ msgid "The Eventbrite Tickets add-on allows you to create & sell tickets through The Events Calendar using the power of %1$sEventbrite%2$s. Whether you’re creating your ticket on the WordPress dashboard or importing the details of an already-existing event from %1$sEventbrite.com%2$s, this add-on brings the power of the Eventbrite API to your calendar."
3466
+ msgstr ""
3467
+
3468
+ #: common/src/Tribe/Plugins_API.php:71
3469
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Shopp, WP eCommerce, or Easy Digital Downloads. Use it on your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your events listings."
3470
+ msgstr ""
3471
+
3472
+ #: common/src/Tribe/Plugins_API.php:105
3473
+ msgctxt "Names of required plugins for Community Tickets"
3474
+ msgid "Event Tickets Plus and Community Events"
3475
+ msgstr "Event Tickets Plus og Community Events"
3476
+
3477
+ #: common/src/Tribe/Plugins_API.php:104
3478
+ msgid "Enable Community Events organizers to offer tickets to their events. You can set flexible payment and fee options. They can even check-in attendees to their events! All of this managed from the front-end of your site without ever needing to grant access to your admin"
3479
+ msgstr ""
3480
+
3481
+ #: common/src/Tribe/Plugins_API.php:48
3482
+ msgid "The Events Calendar PRO is a paid Add-On to our open source WordPress plugin %1$sThe Events Calendar%2$s. PRO offers a whole host of calendar features including recurring events, custom event attributes, saved venues and organizers, venue pages, advanced event admin and lots more."
3483
+ msgstr ""
3484
+
3485
+ #: common/src/Tribe/Plugins_API.php:84
3486
+ msgid "It is awesome that your calendar is <em>THE PLACE</em> to get hooked up with prime choice ways to spend time. You have more events than Jabba the Hutt has rolls. Too bad visitors are hiring a personal assistant to go through all the choices. Ever wish you could just filter the calendar to only show events in walking distance, on a weekend, that are free? BOOM. Now you can. Introducing… the Filter Bar."
3487
+ msgstr ""
3488
+
3489
+ #: common/src/Tribe/Admin/Help_Page.php:227 common/src/Tribe/Plugins_API.php:80
3490
+ msgid "Filter Bar"
3491
+ msgstr "Filterfelt"
3492
+
3493
+ #: common/src/Tribe/Credits.php:64
3494
+ msgid "Rate %1$sEvent Tickets%2$s %3$s"
3495
+ msgstr ""
3496
+
3497
+ #: common/src/Tribe/Credits.php:55
3498
+ msgid "Rate %1$sThe Events Calendar%2$s %3$s"
3499
+ msgstr ""
3500
+
3501
+ #: src/Tribe/Organizer.php:164
3502
+ msgid "organizer"
3503
+ msgstr "arrangør"
3504
+
3505
+ #: src/Tribe/Venue.php:161
3506
+ msgid "venues"
3507
+ msgstr "lokaler"
3508
+
3509
+ #: src/Tribe/Venue.php:152
3510
+ msgid "venue"
3511
+ msgstr "lokale"
3512
+
3513
+ #: src/io/csv/admin-views/result.php:33
3514
+ msgid "Rows numbers with encoding changes: %s"
3515
+ msgstr ""
3516
+
3517
+ #: src/io/csv/admin-views/result.php:21
3518
+ msgid "Encoding Changes: %d"
3519
+ msgstr ""
3520
+
3521
+ #: src/functions/template-tags/venue.php:716
3522
+ msgctxt "Address separator"
3523
+ msgid ", "
3524
+ msgstr ", "
3525
+
3526
+ #: src/admin-views/tribe-options-addons-api.php:122
3527
+ #: src/admin-views/tribe-options-addons-api.php:162
3528
+ msgid "APIs"
3529
+ msgstr ""
3530
+
3531
+ #: src/Tribe/Importer/Options.php:183
3532
+ msgid "Do Not Encode Contents"
3533
+ msgstr ""
3534
+
3535
+ #: src/Tribe/Importer/Options.php:182
3536
+ msgid "Encode contents"
3537
+ msgstr ""
3538
+
3539
+ #: src/Tribe/Importer/Column_Mapper.php:124
3540
+ msgid "Organizer Description"
3541
+ msgstr ""
3542
+
3543
+ #: src/Tribe/Importer/Column_Mapper.php:101
3544
+ msgid "Venue Description"
3545
+ msgstr ""
3546
+
3547
+ #: src/Tribe/Importer/Column_Mapper.php:87
3548
+ msgid "Event Allow Trackbacks and Pingbacks"
3549
+ msgstr ""
3550
+
3551
+ #: src/Tribe/Importer/Column_Mapper.php:86
3552
+ msgid "Event Allow Comments"
3553
+ msgstr ""
3554
+
3555
+ #: src/Tribe/Importer/Column_Mapper.php:76
3556
+ msgid "Event Organizer Name(s) or ID(s)"
3557
+ msgstr ""
3558
+
3559
+ #: src/Tribe/Importer/Column_Mapper.php:74
3560
+ msgid "Event Sticky in Month View"
3561
+ msgstr ""
3562
+
3563
+ #: src/Tribe/Importer/Column_Mapper.php:73
3564
+ msgid "Hide Event From Event Listings"
3565
+ msgstr ""
3566
+
3567
+ #: src/Tribe/Importer/Column_Mapper.php:71
3568
+ msgid "Event Timezone"
3569
+ msgstr ""
3570
+
3571
+ #: src/Tribe/Importer/Column_Mapper.php:66
3572
+ msgid "Event Excerpt"
3573
+ msgstr ""
3574
+
3575
+ #: src/Tribe/Importer/Admin_Page.php:103
3576
+ msgid "Default encoding for imported csv file"
3577
+ msgstr ""
3578
+
3579
+ #: src/Tribe/Google/Maps_API_Key.php:59
3580
+ #: src/admin-views/tribe-options-addons-api.php:99
3581
+ msgid "Click here"
3582
+ msgstr "Klikk her"
3583
+
3584
+ #: src/Tribe/Google/Maps_API_Key.php:58
3585
+ msgid "<p>%s to create your Google Maps API key."
3586
+ msgstr ""
3587
+
3588
+ #: src/Tribe/Google/Maps_API_Key.php:51 src/Tribe/Google/Maps_API_Key.php:57
3589
+ msgid "Google Maps API key"
3590
+ msgstr ""
3591
+
3592
+ #: src/Tribe/Google/Maps_API_Key.php:50
3593
+ msgid "We highly recommend that you specify a valid %s for The Events Calendar to use. Doing this will help prevent problems with maps, especially for sites that receive a lot of traffic."
3594
+ msgstr ""
3595
+
3596
+ #: src/Tribe/Google/Maps_API_Key.php:45
3597
+ msgid "Google Maps API"
3598
+ msgstr ""
3599
+
3600
+ #: common/src/admin-views/event-log.php:117
3601
+ msgid "Download log"
3602
+ msgstr ""
3603
+
3604
+ #: common/src/admin-views/event-log.php:100
3605
+ msgid "The selected log file is empty or has not been generated yet."
3606
+ msgstr ""
3607
+
3608
+ #: common/src/admin-views/event-log.php:43
3609
+ msgid "Method"
3610
+ msgstr "Metode"
3611
+
3612
+ #: common/src/admin-views/event-log.php:21
3613
+ msgid "Logging level"
3614
+ msgstr ""
3615
+
3616
+ #: common/src/Tribe/Validate.php:183
3617
+ msgid "%s must contain numbers, letters, dashes and undescores only"
3618
+ msgstr ""
3619
+
3620
+ #: common/src/Tribe/Log.php:371
3621
+ msgid "Full debug (all events)"
3622
+ msgstr ""
3623
+
3624
+ #: common/src/Tribe/Log.php:370
3625
+ msgid "Warnings and errors"
3626
+ msgstr ""
3627
+
3628
+ #: common/src/Tribe/Log.php:369
3629
+ msgid "Only errors"
3630
+ msgstr ""
3631
+
3632
+ #: common/src/Tribe/Log.php:368
3633
+ msgid "Disabled"
3634
+ msgstr "Deaktivert"
3635
+
3636
+ #: common/src/Tribe/Log.php:269
3637
+ msgid "Cannot set %s as the current logging engine"
3638
+ msgstr ""
3639
+
3640
+ #: common/src/Tribe/Log/Null_Logger.php:26
3641
+ msgid "Null logger (will log nothing)"
3642
+ msgstr ""
3643
+
3644
+ #: common/src/Tribe/Log/File_Logger.php:128
3645
+ msgid "Default (uses temporary files)"
3646
+ msgstr "Standard (brukar midlertidige filer)"
3647
+
3648
+ #: common/src/Tribe/Log/Admin.php:148
3649
+ msgctxt "log engines"
3650
+ msgid "None currently available"
3651
+ msgstr "Ingen tilgjengelege for augenblinken"
3652
+
3653
+ #: common/src/Tribe/Log/Admin.php:133
3654
+ msgctxt "log selector"
3655
+ msgid "None currently available"
3656
+ msgstr "Ingen tilgjengelege for augneblinken"
3657
+
3658
+ #: common/src/admin-views/tribe-options-help.php:45
3659
+ msgid "Recent Template Changes"
3660
+ msgstr ""
3661
+
3662
+ #: common/src/Tribe/Support/Template_Checker_Report.php:115
3663
+ msgid "Information about recent template changes and potentially impacted template overrides is provided below."
3664
+ msgstr ""
3665
+
3666
+ #: common/src/Tribe/Support/Template_Checker_Report.php:113
3667
+ msgid "No notable template changes detected."
3668
+ msgstr ""
3669
+
3670
+ #: common/src/Tribe/Support/Template_Checker_Report.php:97
3671
+ msgid "based on %s version"
3672
+ msgstr ""
3673
+
3674
+ #: common/src/Tribe/Support/Template_Checker_Report.php:96
3675
+ msgid "version data missing from override"
3676
+ msgstr ""
3677
+
3678
+ #: common/src/Tribe/Support/Template_Checker_Report.php:92
3679
+ msgid "Existing theme overrides that may need revision:"
3680
+ msgstr ""
3681
+
3682
+ #: common/src/Tribe/Support/Template_Checker_Report.php:82
3683
+ msgid "Templates introduced or updated with this release (%s):"
3684
+ msgstr ""
3685
+
3686
+ #: common/src/Tribe/Support/Template_Checker_Report.php:78
3687
+ msgid "No notable changes detected"
3688
+ msgstr ""
3689
+
3690
+ #: src/Tribe/Main.php:2653
3691
+ msgid " (View Full %1$s Description Here: %2$s)"
3692
+ msgstr ""
3693
+
3694
+ #: src/Tribe/Importer/Column_Mapper.php:128
3695
+ msgid "Organizer Featured Image"
3696
+ msgstr ""
3697
+
3698
+ #: src/Tribe/Importer/Column_Mapper.php:110
3699
+ msgid "Venue Featured Image"
3700
+ msgstr ""
3701
+
3702
+ #: src/Tribe/Importer/Column_Mapper.php:85
3703
+ msgid "Event Featured Image"
3704
+ msgstr ""
3705
+
3706
+ #: src/Tribe/Event_Tickets/Attendees_Report.php:50
3707
+ msgid "Edit Venue"
3708
+ msgstr "Rediger stad"
3709
+
3710
+ #: src/views/list/nav.php:34
3711
+ msgid "Next %s"
3712
+ msgstr "Neste %s"
3713
+
3714
+ #: src/views/list/nav.php:26
3715
+ msgid "Previous %s"
3716
+ msgstr "Tidlegare %s"
3717
+
3718
+ #: src/io/csv/admin-views/result.php:26
3719
+ msgid "%1$s%2$s%3$sInserted:%4$s A new item was inserted successfully. %5$s%2$s%3$sUpdated:%4$s An item was found with the same name and/or start date. The existing item was updated with the new value from the file.%5$s%2$s%3$sSkipped:%4$s A row was found in the CSV file that could not be imported. Please see below for the invalid rows.%5$s%6$s"
3720
+ msgstr ""
3721
+
3722
+ #: src/io/csv/admin-views/import.php:59
3723
+ msgid "Upload a properly formatted, UTF-8 encoded CSV file. Not sure if your file is UTF-8 encoded? Make sure to specify the character encoding when you save the file, or pass it through a %sconversion tool%s."
3724
+ msgstr ""
3725
+
3726
+ #: src/io/csv/admin-views/import.php:36
3727
+ msgid "Questions? %sWatch the video%s."
3728
+ msgstr ""
3729
+
3730
+ #: src/io/csv/admin-views/general.php:12
3731
+ msgid "The settings below will impact events imported from files and other websites. Be sure to save your changes before starting to import events."
3732
+ msgstr ""
3733
+
3734
+ #: src/functions/template-tags/day.php:108
3735
+ msgid "Next Day"
3736
+ msgstr "Neste dag"
3737
+
3738
+ #: src/functions/template-tags/day.php:106
3739
+ msgid "Previous Day"
3740
+ msgstr "Førre dag"
3741
+
3742
+ #: src/admin-views/venue-meta-box.php:270
3743
+ msgid "%s Name already exists"
3744
+ msgstr "%s Namnet eksisterer allereie"
3745
+
3746
+ #: src/admin-views/venue-meta-box.php:265
3747
+ msgid "%s Name can not be empty"
3748
+ msgstr "%s Namnet kan ikkje vere tomt"
3749
+
3750
+ #: src/admin-views/admin-update-message.php:32
3751
+ msgid "Keep the Core Plugin %sFREE%s!"
3752
+ msgstr ""
3753
+
3754
+ #: src/Tribe/Template_Factory.php:295
3755
+ msgid "No results were found for %1$s in or near %2$s."
3756
+ msgstr ""
3757
+
3758
+ #: src/Tribe/Template_Factory.php:293
3759
+ msgid "There were no results found for %s."
3760
+ msgstr ""
3761
+
3762
+ #: src/Tribe/Template/Month.php:412
3763
+ msgid "There were no results found for %s this month. Try searching next month."
3764
+ msgstr ""
3765
+
3766
+ #: src/Tribe/Template/Day.php:147
3767
+ msgid "No %1$s scheduled for %2$s. Please try another day."
3768
+ msgstr "Ingen %1$s planlagt for %2$s. Vennligst prøv ein annan dag."
3769
+
3770
+ #: src/Tribe/Main.php:4161
3771
+ msgid "Check out the %savailable add-ons%s."
3772
+ msgstr ""
3773
+
3774
+ #: src/Tribe/Main.php:1870
3775
+ msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
3776
+ msgstr ""
3777
+
3778
+ #: src/Tribe/Main.php:1801 src/Tribe/Main.php:1821
3779
+ msgid "%1$s scheduled for: %2$s."
3780
+ msgstr ""
3781
+
3782
+ #: src/Tribe/Main.php:1782
3783
+ msgid "%1$s draft updated. %2$sPreview %3$s"
3784
+ msgstr ""
3785
+
3786
+ #: src/Tribe/Main.php:1773
3787
+ msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
3788
+ msgstr ""
3789
+
3790
+ #: src/Tribe/Main.php:1767
3791
+ msgid "%1$s submitted. %2$sPreview %3$s"
3792
+ msgstr ""
3793
+
3794
+ #: src/Tribe/Main.php:1761
3795
+ msgid "Event published. %1$sView %2$s"
3796
+ msgstr "Hending publisert. %1$sSjå %2$s"
3797
+
3798
+ #: src/Tribe/Main.php:1750
3799
+ msgid "%1$s updated. %2$sView %1$s%3$s"
3800
+ msgstr ""
3801
+
3802
+ #: src/Tribe/Main.php:1433
3803
+ msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
3804
+ msgstr ""
3805
+
3806
+ #: src/Tribe/Main.php:1073
3807
+ msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
3808
+ msgstr ""
3809
+
3810
+ #: src/Tribe/Main.php:1072
3811
+ msgid "post a thread"
3812
+ msgstr ""
3813
+
3814
+ #: src/Tribe/Main.php:1068
3815
+ msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
3816
+ msgstr ""
3817
+
3818
+ #: src/Tribe/Main.php:1064
3819
+ msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
3820
+ msgstr ""
3821
+
3822
+ #: src/Tribe/Main.php:1063
3823
+ msgid "open-source forum on WordPress.org"
3824
+ msgstr ""
3825
+
3826
+ #: src/Tribe/Main.php:1059
3827
+ msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
3828
+ msgstr ""
3829
+
3830
+ #: src/Tribe/Main.php:1058 src/Tribe/Main.php:1066
3831
+ msgid "premium support on our website"
3832
+ msgstr ""
3833
+
3834
+ #: src/Tribe/Main.php:1056
3835
+ msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
3836
+ msgstr ""
3837
+
3838
+ #: src/Tribe/Main.php:1055
3839
+ msgid "Events Tickets"
3840
+ msgstr "Billettar til hendinga"
3841
+
3842
+ #: src/Tribe/Main.php:1040
3843
+ msgid "Customizing the Events plugins"
3844
+ msgstr ""
3845
+
3846
+ #: src/Tribe/Main.php:1040
3847
+ msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
3848
+ msgstr ""
3849
+
3850
+ #: src/Tribe/Main.php:1038
3851
+ msgid "Troubleshooting common problems"
3852
+ msgstr ""
3853
+
3854
+ #: src/Tribe/Main.php:1038
3855
+ msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
3856
+ msgstr ""
3857
+
3858
+ #: src/Tribe/Main.php:1036
3859
+ msgid "Using stylesheets and page templates"
3860
+ msgstr ""
3861
+
3862
+ #: src/Tribe/Main.php:1036
3863
+ msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
3864
+ msgstr ""
3865
+
3866
+ #: src/Tribe/Main.php:1034
3867
+ msgid "Themer’s Guide"
3868
+ msgstr ""
3869
+
3870
+ #: src/Tribe/Main.php:1034
3871
+ msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
3872
+ msgstr ""
3873
+
3874
+ #: src/Tribe/Main.php:1032
3875
+ msgid "Features overview"
3876
+ msgstr ""
3877
+
3878
+ #: src/Tribe/Main.php:1032
3879
+ msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
3880
+ msgstr ""
3881
+
3882
+ #: src/Tribe/Main.php:1030
3883
+ msgid "Settings overview"
3884
+ msgstr ""
3885
+
3886
+ #: src/Tribe/Main.php:1030
3887
+ msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
3888
+ msgstr ""
3889
+
3890
+ #: src/Tribe/Main.php:1027
3891
+ msgid "Support for The Events Calendar"
3892
+ msgstr ""
3893
+
3894
+ #: src/Tribe/Main.php:1016
3895
+ msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
3896
+ msgstr ""
3897
+
3898
+ #: src/Tribe/Main.php:1014
3899
+ msgid "New User Primer"
3900
+ msgstr ""
3901
+
3902
+ #: src/Tribe/Importer/Admin_Page.php:249 src/Tribe/Importer/Options.php:24
3903
+ #: src/Tribe/Importer/Options.php:84
3904
+ msgid "This Filter has been deprecated, to comply with WordPress Standards we are now using Underscores (_) instead of Dashes (-). From: \"%s\" To: \"%s\""
3905
+ msgstr ""
3906
+
3907
+ #: src/Tribe/Importer/Admin_Page.php:138
3908
+ msgid "This Action has been deprecated, to comply with WordPress Standards we are now using Underscores (_) instead of Dashes (-). From: \"%s\" To: \"%s\""
3909
+ msgstr ""
3910
+
3911
+ #: src/Tribe/Importer/Admin_Page.php:96
3912
+ msgid "Default status to use for imported events"
3913
+ msgstr ""
3914
+
3915
+ #: src/Tribe/Importer/Admin_Page.php:88
3916
+ #: src/admin-views/aggregator/settings.php:63
3917
+ msgid "CSV Import Settings"
3918
+ msgstr ""
3919
+
3920
+ #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
3921
+ msgid "Clear"
3922
+ msgstr "Tøm"
3923
+
3924
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:256
3925
+ msgid "Add another %s"
3926
+ msgstr "Legg til ein til %s"
3927
+
3928
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:168
3929
+ msgid "Create New %s"
3930
+ msgstr "Lag ny %s"
3931
+
3932
+ #: src/Tribe/Organizer.php:319
3933
+ msgid "Unnamed %s"
3934
+ msgstr ""
3935
+
3936
+ #: common/src/admin-views/tribe-options-licenses.php:47
3937
+ msgid "Only license fields for %1$snetwork activated%2$s plugins will be listed on this screen. "
3938
+ msgstr ""
3939
+
3940
+ #: common/src/admin-views/tribe-options-help.php:31
3941
+ msgid "Read more about our support policy"
3942
+ msgstr ""
3943
+
3944
+ #: common/src/admin-views/tribe-options-help.php:30
3945
+ msgid "Please note that all hands-on support is provided via the forums. You can email or tweet at us… ​but we will probably point you back to the forums 😄"
3946
+ msgstr ""
3947
+
3948
+ #: common/src/admin-views/tribe-options-help.php:26
3949
+ msgid "Search our support forum"
3950
+ msgstr ""
3951
+
3952
+ #: common/src/admin-views/tribe-options-help.php:26
3953
+ msgid "%s. There are very few issues we haven’t seen and it’s likely another user has already asked your question and gotten an answer from our support staff. While posting to the forums is open only to paid customers, they are open for anyone to search and review."
3954
+ msgstr ""
3955
+
3956
+ #: common/src/admin-views/tribe-options-help.php:25
3957
+ msgid "Test for a theme or plugin conflict"
3958
+ msgstr ""
3959
+
3960
+ #: common/src/admin-views/tribe-options-help.php:25
3961
+ msgid "%s. Testing for an existing conflict is the best start for in-depth troubleshooting. We will often ask you to follow these steps when opening a new thread, so doing this ahead of time will be super helpful."
3962
+ msgstr ""
3963
+
3964
+ #: common/src/admin-views/tribe-options-help.php:24
3965
+ msgid "Check our Knowledgebase"
3966
+ msgstr ""
3967
+
3968
+ #: common/src/admin-views/tribe-options-help.php:24
3969
+ msgid "%s. All of the common (and not-so-common) answers to questions we see are here. It’s often the fastest path to finding an answer!"
3970
+ msgstr ""
3971
+
3972
+ #: common/src/admin-views/tribe-options-help.php:20
3973
+ msgid "While the resources above help solve a majority of the issues we see, there are times you might be looking for extra support. If you need assistance using our plugins and would like us to take a look, please follow these steps:"
3974
+ msgstr ""
3975
+
3976
+ #: common/src/admin-views/tribe-options-help.php:19
3977
+ msgid "Getting More Help"
3978
+ msgstr ""
3979
+
3980
+ #: common/src/admin-views/tribe-options-help.php:16
3981
+ msgid "list of available functions"
3982
+ msgstr ""
3983
+
3984
+ #: common/src/admin-views/tribe-options-help.php:16
3985
+ msgid "<strong>Want to dive deeper?</strong> Check out our %s for developers."
3986
+ msgstr ""
3987
+
3988
+ #: common/src/admin-views/tribe-options-help.php:15
3989
+ msgid "Knowledgebase"
3990
+ msgstr ""
3991
+
3992
+ #: common/src/admin-views/tribe-options-help.php:15
3993
+ msgid "Our website’s %s is a great place to find tips and tricks for using and customizing our plugins."
3994
+ msgstr ""
3995
+
3996
+ #: common/src/admin-views/tribe-options-help.php:14
3997
+ msgid "Getting Support"
3998
+ msgstr ""
3999
+
4000
+ #: common/src/admin-views/tribe-options-help.php:11
4001
+ msgid "Thanks you for using %s! All of us at Modern Tribe sincerely appreciate your support and we’re excited to see you using our plugins."
4002
+ msgstr ""
4003
+
4004
+ #: common/src/admin-views/tribe-options-general.php:15
4005
+ msgid "Optimize your site's event listings with %1$sThe Events Calendar%2$s, our free calendar plugin. Looking for additional functionality including recurring events, user-submission, advanced ticket sales and more? Check out our %3$spremium add-ons%4$s."
4006
+ msgstr ""
4007
+
4008
+ #: common/src/admin-views/tribe-options-general.php:10
4009
+ msgid "Thank you for using Event Tickets! All of us at Modern Tribe sincerely appreciate your support and we're excited to see you using our plugins. Check out our handy %1$sNew User Primer%2$s to get started."
4010
+ msgstr ""
4011
+
4012
+ #: src/admin-views/tribe-options-display.php:68
4013
+ msgid "Enter the format to use for displaying dates with the year. Used when displaying a date in a future year."
4014
+ msgstr ""
4015
+
4016
+ #: common/src/Tribe/PUE/Checker.php:932
4017
+ msgid "Thanks for setting up a valid key. It will expire on %s"
4018
+ msgstr ""
4019
+
4020
+ #: common/src/Tribe/Admin/Help_Page.php:860
4021
+ msgid "Visit the Add-on Page"
4022
+ msgstr ""
4023
+
4024
+ #: common/src/Tribe/Admin/Help_Page.php:855
4025
+ msgid "Plugin Inactive"
4026
+ msgstr ""
4027
+
4028
+ #: common/src/Tribe/Admin/Help_Page.php:853
4029
+ msgid "Plugin Active"
4030
+ msgstr ""
4031
+
4032
+ #: common/src/Tribe/Admin/Help_Page.php:828
4033
+ msgid "Rating:"
4034
+ msgstr ""
4035
+
4036
+ #: common/src/Tribe/Admin/Help_Page.php:825
4037
+ msgid "Active Users:"
4038
+ msgstr "Aktive brukarar:"
4039
+
4040
+ #: common/src/Tribe/Admin/Help_Page.php:802
4041
+ msgid "Install Plugin"
4042
+ msgstr ""
4043
+
4044
+ #: common/src/Tribe/Admin/Help_Page.php:802
4045
+ msgid "Install %s"
4046
+ msgstr "Installer %s"
4047
+
4048
+ #: common/src/Tribe/Admin/Help_Page.php:786
4049
+ msgid "Upgrade Plugin"
4050
+ msgstr "Oppgrader innstikk"
4051
+
4052
+ #: common/src/Tribe/Admin/Help_Page.php:778
4053
+ msgid "Activate Plugin"
4054
+ msgstr "Slå på innstikket"
4055
+
4056
+ #: common/src/Tribe/Admin/Help_Page.php:778
4057
+ msgid "Activate %s"
4058
+ msgstr "Aktiver %s"
4059
+
4060
+ #: common/src/Tribe/Admin/Help_Page.php:244
4061
+ #: common/src/Tribe/Plugins_API.php:100
4062
+ msgid "Community Tickets"
4063
+ msgstr ""
4064
+
4065
+ #: common/src/Tribe/Admin/Help_Page.php:235 common/src/Tribe/Plugins_API.php:66
4066
+ msgid "Event Tickets Plus"
4067
+ msgstr ""
4068
+
4069
+ #: src/Tribe/Aggregator/Page.php:379
4070
+ msgid "Facebook Events"
4071
+ msgstr ""
4072
+
4073
+ #: common/src/Tribe/Admin/Help_Page.php:203
4074
+ #: common/src/Tribe/Plugins_API.php:111
4075
+ msgid "Eventbrite Tickets"
4076
+ msgstr ""
4077
+
4078
+ #: common/src/Tribe/Admin/Help_Page.php:170
4079
+ msgid " and "
4080
+ msgstr " og "
4081
+
4082
+ #: common/src/Tribe/Admin/Help_Page.php:95
4083
+ msgid "Turbo charge your posts admin for any custom post type with sortable filters and columns, and auto-registration of metaboxes."
4084
+ msgstr ""
4085
+
4086
+ #: common/src/Tribe/Admin/Help_Page.php:91
4087
+ msgid "Advanced Post Manager"
4088
+ msgstr ""
4089
+
4090
+ #: common/src/Tribe/Admin/Help_Page.php:79
4091
+ msgid "Events Tickets is a carefully crafted, extensible plugin that lets you easily sell tickets for your events."
4092
+ msgstr ""
4093
+
4094
+ #: common/src/Tribe/Admin/Help_Page.php:75 common/src/Tribe/Plugins_API.php:57
4095
+ msgid "Event Tickets"
4096
+ msgstr ""
4097
+
4098
+ #: common/src/Tribe/Admin/Help_Page.php:63
4099
+ msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events."
4100
+ msgstr ""
4101
+
4102
+ #: src/views/month/single-day.php:42
4103
+ msgid "View %1$s %2$s"
4104
+ msgid_plural "View All %1$s %2$s"
4105
+ msgstr[0] "Sjå %1$s %2$s"
4106
+ msgstr[1] "Sjå alle %1$s %2$s"
4107
+
4108
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:54
4109
+ msgid "Completed!"
4110
+ msgstr "Fullført!"
4111
+
4112
+ #: src/Tribe/Organizer.php:178
4113
+ msgid "organizers"
4114
+ msgstr "arrangørar"
4115
+
4116
+ #: src/admin-views/aggregator/origins/gcal.php:117
4117
+ #: src/admin-views/aggregator/origins/ical.php:111
4118
+ #: src/admin-views/aggregator/origins/ics.php:54
4119
+ #: src/admin-views/aggregator/origins/url.php:122
4120
+ #: src/admin-views/aggregator/tabs/import-form.php:233
4121
+ msgid "Cancel"
4122
+ msgstr "Avbryt"
4123
+
4124
+ #: common/src/Tribe/Validate.php:211
4125
+ msgid "%s must be a positive number or percent."
4126
+ msgstr "%s må vere eit positivt nummer eller prosent."
4127
+
4128
+ #: src/Tribe/Main.php:961
4129
+ msgid "%1$s or %2$s"
4130
+ msgstr "%1$s eller %2$s"
4131
+
4132
+ #. Author URI of the plugin/theme
4133
+ msgid "http://m.tri.be/1x"
4134
+ msgstr ""
4135
+
4136
+ #. Author of the plugin/theme
4137
+ msgid "Modern Tribe, Inc."
4138
+ msgstr ""
4139
+
4140
+ #. Description of the plugin/theme
4141
+ msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome."
4142
+ msgstr ""
4143
+
4144
+ #: src/views/widgets/list-widget.php:101
4145
+ msgid "There are no upcoming %s at this time."
4146
+ msgstr "Det er ingen komande %s på dette tidspunktet."
4147
+
4148
+ #: src/views/widgets/list-widget.php:95
4149
+ msgid "View All %s"
4150
+ msgstr "Sjå alle %s"
4151
+
4152
+ #: src/views/single-event.php:46 src/views/single-event.php:79
4153
+ msgid "%s Navigation"
4154
+ msgstr "%s Navigasjon"
4155
+
4156
+ #: src/views/month/nav.php:19
4157
+ msgid "Calendar Month Navigation"
4158
+ msgstr "Månadsvisning"
4159
+
4160
+ #: src/views/modules/meta/details.php:142
4161
+ msgid "%s Tags:"
4162
+ msgstr "%s Taggar:"
4163
+
4164
+ #: src/views/modules/bar.php:42
4165
+ msgid "View As"
4166
+ msgstr "Sjå som"
4167
+
4168
+ #: src/views/modules/bar.php:41
4169
+ msgid "Event Views Navigation"
4170
+ msgstr ""
4171
+
4172
+ #: src/views/modules/bar.php:34 src/views/modules/bar.php:65
4173
+ msgid "Find %s"
4174
+ msgstr "Finn %s"
4175
+
4176
+ #: src/views/list/nav.php:20
4177
+ msgid "%s List Navigation"
4178
+ msgstr "%s Listevisning"
4179
+
4180
+ #: src/views/day/single-event.php:78 src/views/day/single-featured.php:67
4181
+ #: src/views/list/single-event.php:92 src/views/list/single-featured.php:78
4182
+ msgid "Find out more"
4183
+ msgstr "Finn ut meir"
4184
+
4185
+ #: src/views/day/nav.php:17
4186
+ msgid "Day Navigation"
4187
+ msgstr "Dagsvisning"
4188
+
4189
+ #: src/io/csv/admin-views/result.php:29
4190
+ msgid "Skipped row numbers: %s"
4191
+ msgstr ""
4192
+
4193
+ #: src/io/csv/admin-views/result.php:25
4194
+ msgid "The import statistics above have the following meaning:"
4195
+ msgstr ""
4196
+
4197
+ #: src/io/csv/admin-views/result.php:20
4198
+ msgid "Skipped: %d"
4199
+ msgstr "Hoppa over: %d"
4200
+
4201
+ #: src/io/csv/admin-views/result.php:19
4202
+ msgid "Updated: %d"
4203
+ msgstr "Oppdatert: %d"
4204
+
4205
+ #: src/io/csv/admin-views/result.php:18
4206
+ msgid "Inserted: %d"
4207
+ msgstr "Satt inn %d"
4208
+
4209
+ #: src/Tribe/Aggregator/Tabs/New.php:378 src/io/csv/admin-views/result.php:16
4210
+ msgid "Import complete!"
4211
+ msgstr "Import fullført!"
4212
+
4213
+ #: src/io/csv/admin-views/result.php:14
4214
+ msgid "Import Result"
4215
+ msgstr "Importresultat"
4216
+
4217
+ #: src/io/csv/admin-views/import.php:78
4218
+ msgid "Import CSV File"
4219
+ msgstr ""
4220
+
4221
+ #: src/io/csv/admin-views/import.php:67
4222
+ msgid "This file has column names in the first row"
4223
+ msgstr ""
4224
+
4225
+ #: src/io/csv/admin-views/import.php:55
4226
+ msgid "CSV File:"
4227
+ msgstr ""
4228
+
4229
+ #: src/admin-views/aggregator/origins/facebook.php:5
4230
+ #: src/admin-views/aggregator/origins/gcal.php:5
4231
+ #: src/admin-views/aggregator/origins/ical.php:5
4232
+ #: src/admin-views/aggregator/origins/meetup.php:5
4233
+ #: src/admin-views/aggregator/origins/url.php:5
4234
+ #: src/io/csv/admin-views/import.php:43
4235
+ msgid "Import Type:"
4236
+ msgstr ""
4237
+
4238
+ #: src/io/csv/admin-views/import.php:31
4239
+ msgid "One column in your CSV should have the Event title. Another should have the Event start date. All other fields are optional."
4240
+ msgstr ""
4241
+
4242
+ #: src/io/csv/admin-views/import.php:28
4243
+ msgid "After importing your Organizers and Venues, import your Events:"
4244
+ msgstr ""
4245
+
4246
+ #: src/io/csv/admin-views/import.php:26 src/io/csv/admin-views/import.php:32
4247
+ msgid "After you upload your file, you'll have the opportunity to indicate how the columns in your CSV map to fields in The Events Calendar."
4248
+ msgstr ""
4249
+
4250
+ #: src/io/csv/admin-views/import.php:25
4251
+ msgid "One column in your CSV should have the Organizer/Venue name. All other fields are optional."
4252
+ msgstr ""
4253
+
4254
+ #: src/io/csv/admin-views/import.php:24 src/io/csv/admin-views/import.php:30
4255
+ msgid "Upload a CSV file with one record on each line. The first line may contain column names (check the box below)."
4256
+ msgstr ""
4257
+
4258
+ #: src/io/csv/admin-views/import.php:23
4259
+ msgid "Select the appropriate import type."
4260
+ msgstr ""
4261
+
4262
+ #: src/io/csv/admin-views/import.php:21
4263
+ msgid "To import organizers or venues:"
4264
+ msgstr ""
4265
+
4266
+ #: src/io/csv/admin-views/import.php:20
4267
+ msgid "If your events have Organizers or Venues, please import those first."
4268
+ msgstr ""
4269
+
4270
+ #: src/io/csv/admin-views/import.php:17
4271
+ msgid "Import Instructions"
4272
+ msgstr ""
4273
+
4274
+ #: src/Tribe/Aggregator/Page.php:255
4275
+ msgid "Events Import"
4276
+ msgstr ""
4277
+
4278
+ #: src/io/csv/admin-views/general.php:54
4279
+ msgid "Save Settings"
4280
+ msgstr ""
4281
+
4282
+ #: src/Tribe/Importer/Options.php:135
4283
+ msgid "Draft"
4284
+ msgstr ""
4285
+
4286
+ #: src/Tribe/Importer/Options.php:134
4287
+ msgid "Pending"
4288
+ msgstr ""
4289
+
4290
+ #: src/Tribe/Importer/Options.php:133
4291
+ msgid "Published"
4292
+ msgstr ""
4293
+
4294
+ #: src/Tribe/Importer/Admin_Page.php:237
4295
+ msgid "Import Settings"
4296
+ msgstr ""
4297
+
4298
+ #: src/io/csv/admin-views/general.php:10
4299
+ msgid "Instructions"
4300
+ msgstr ""
4301
+
4302
+ #: src/io/csv/admin-views/columns.php:44
4303
+ msgid "Perform Import"
4304
+ msgstr ""
4305
+
4306
+ #: src/io/csv/admin-views/columns.php:33
4307
+ msgid "Event Fields"
4308
+ msgstr ""
4309
+
4310
+ #: src/io/csv/admin-views/columns.php:32
4311
+ msgid "Column Headings"
4312
+ msgstr ""
4313
+
4314
+ #: src/io/csv/admin-views/columns.php:27
4315
+ msgid "Columns have been mapped based on your last import. Please ensure the selected fields match the columns in your CSV file."
4316
+ msgstr ""
4317
+
4318
+ #: src/io/csv/admin-views/columns.php:22
4319
+ msgid "Column Mapping: %s"
4320
+ msgstr ""
4321
+
4322
+ #: src/functions/template-tags/options.php:29
4323
+ msgid "You %1$scannot%2$s use the same slug as above. The above should ideally be plural, and this singular.%3$sYour single Event URL is like: %4$s"
4324
+ msgstr ""
4325
+
4326
+ #: src/functions/template-tags/options.php:20
4327
+ msgid "Your current Events URL is %s"
4328
+ msgstr ""
4329
+
4330
+ #: src/functions/template-tags/loop.php:157
4331
+ msgid "Past %s"
4332
+ msgstr ""
4333
+
4334
+ #: src/functions/template-tags/loop.php:155
4335
+ msgid "%1$s for %2$s - %3$s"
4336
+ msgstr ""
4337
+
4338
+ #: src/functions/template-tags/loop.php:140
4339
+ msgid "Upcoming %s"
4340
+ msgstr ""
4341
+
4342
+ #: src/functions/template-tags/google-map.php:47
4343
+ msgid "+ Google Map"
4344
+ msgstr ""
4345
+
4346
+ #: src/functions/template-tags/google-map.php:46
4347
+ msgid "Click to view a Google Map"
4348
+ msgstr ""
4349
+
4350
+ #: src/functions/template-tags/general.php:1273
4351
+ msgid "Calendar powered by %sThe Events Calendar%s"
4352
+ msgstr ""
4353
+
4354
+ #: src/functions/template-tags/general.php:1153
4355
+ msgid "%s for"
4356
+ msgstr ""
4357
+
4358
+ #: src/functions/template-tags/general.php:1152
4359
+ msgid "Find out more »"
4360
+ msgstr ""
4361
+
4362
+ #: src/functions/template-tags/general.php:557
4363
+ msgid "Loading %s"
4364
+ msgstr ""
4365
+
4366
+ #: src/functions/template-tags/general.php:445
4367
+ msgid "Tags:"
4368
+ msgstr ""
4369
+
4370
+ #. translators: %s is the singular translation of "Event"
4371
+ #: src/functions/template-tags/general.php:406
4372
+ msgctxt "category list label"
4373
+ msgid "%s Category"
4374
+ msgid_plural "%s Categories"
4375
+ msgstr[0] "Kategori for %s"
4376
+ msgstr[1] "Kategoriar for %s"
4377
+
4378
+ #: src/functions/template-tags/deprecated.php:1299
4379
+ msgid "Category"
4380
+ msgstr "Kategori"
4381
+
4382
+ #: src/functions/template-tags/day.php:112
4383
+ msgid "Tomorrow"
4384
+ msgstr "I morgon"
4385
+
4386
+ #: src/functions/template-tags/day.php:110
4387
+ msgid "Yesterday"
4388
+ msgstr "I går"
4389
+
4390
+ #: src/functions/template-tags/date.php:82
4391
+ msgid "The function needs to be passed an $event or used in the loop."
4392
+ msgstr ""
4393
+
4394
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:169
4395
+ msgid "%s:"
4396
+ msgstr "%s:"
4397
+
4398
+ #: src/admin-views/aggregator/meta-box.php:2
4399
+ msgid "Origin:"
4400
+ msgstr "Opphav:"
4401
+
4402
+ #: src/views/modules/meta/details.php:55
4403
+ msgid "Details"
4404
+ msgstr "Detaljar:"
4405
+
4406
+ #: src/admin-views/widget-admin-list.php:31
4407
+ msgid "Show widget only if there are upcoming events:"
4408
+ msgstr ""
4409
+
4410
+ #: src/admin-views/widget-admin-list.php:18
4411
+ msgid "Show:"
4412
+ msgstr "Vis:"
4413
+
4414
+ #: src/admin-views/widget-admin-list.php:13
4415
+ msgid "Title:"
4416
+ msgstr "Tittel:"
4417
+
4418
+ #: src/admin-views/create-venue-fields.php:224
4419
+ #: src/admin-views/create-venue-fields.php:261
4420
+ #: src/admin-views/venue-meta-box.php:200
4421
+ #: src/admin-views/venue-meta-box.php:236
4422
+ msgid "Show Google Maps Link:"
4423
+ msgstr ""
4424
+
4425
+ #: src/admin-views/create-venue-fields.php:206
4426
+ #: src/admin-views/create-venue-fields.php:244
4427
+ #: src/admin-views/venue-meta-box.php:183
4428
+ #: src/admin-views/venue-meta-box.php:219
4429
+ msgid "Show Google Map:"
4430
+ msgstr ""
4431
+
4432
+ #: src/admin-views/create-venue-fields.php:142
4433
+ #: src/admin-views/venue-meta-box.php:134
4434
+ msgid "Postal Code:"
4435
+ msgstr "Postnummer:"
4436
+
4437
+ #: src/admin-views/create-venue-fields.php:132
4438
+ #: src/admin-views/venue-meta-box.php:120
4439
+ msgid "Select a State:"
4440
+ msgstr "Vel eit fylke:"
4441
+
4442
+ #: src/admin-views/create-venue-fields.php:122
4443
+ #: src/admin-views/venue-meta-box.php:103
4444
+ msgid "State or Province:"
4445
+ msgstr "Fylke eller provins:"
4446
+
4447
+ #: src/admin-views/create-venue-fields.php:79
4448
+ #: src/admin-views/venue-meta-box.php:62
4449
+ msgid "Country:"
4450
+ msgstr "Land:"
4451
+
4452
+ #: src/admin-views/create-venue-fields.php:66
4453
+ #: src/admin-views/venue-meta-box.php:50
4454
+ msgid "City:"
4455
+ msgstr "By:"
4456
+
4457
+ #: src/admin-views/tribe-options-timezones.php:49
4458
+ msgid "Appends the timezone to the end of event scheduling information &ndash; this can be useful when you have events in numerous different timezones."
4459
+ msgstr ""
4460
+
4461
+ #: src/admin-views/tribe-options-timezones.php:48
4462
+ msgid "Show timezone"
4463
+ msgstr "Vis tidssone"
4464
+
4465
+ #: src/admin-views/tribe-options-timezones.php:43
4466
+ msgid "Use the sitewide timezone everywhere"
4467
+ msgstr ""
4468
+
4469
+ #: src/admin-views/tribe-options-timezones.php:42
4470
+ msgid "Use the local timezones for each event"
4471
+ msgstr ""
4472
+
4473
+ #: src/admin-views/tribe-options-timezones.php:38
4474
+ msgid "Timezone mode"
4475
+ msgstr "Tidssonemodus"
4476
+
4477
+ #: src/admin-views/tribe-options-timezones.php:30
4478
+ msgid "Timezone Settings"
4479
+ msgstr ""
4480
+
4481
+ #: src/admin-views/tribe-options-timezones.php:10
4482
+ msgid "Click this button to update your database and take advantage of additional timezone capabilities. Please <a href=\"%s\" target=\"_blank\">configure WordPress</a> to use the correct timezone before clicking this button!"
4483
+ msgstr ""
4484
+
4485
+ #: src/admin-views/tribe-options-timezones.php:9
4486
+ msgid "Update Timezone Data"
4487
+ msgstr ""
4488
+
4489
+ #: src/admin-views/tribe-options-timezones.php:7
4490
+ msgid "Enable timezone support"
4491
+ msgstr ""
4492
+
4493
+ #: common/src/admin-views/tribe-options-network.php:27
4494
+ msgid "Hide the following settings tabs on every site:"
4495
+ msgstr ""
4496
+
4497
+ #: common/src/admin-views/tribe-options-network.php:19
4498
+ msgid "This is where all of the global network settings for Modern Tribe's The Events Calendar can be modified."
4499
+ msgstr ""
4500
+
4501
+ #: common/src/admin-views/tribe-options-network.php:15
4502
+ msgid "Network Settings"
4503
+ msgstr ""
4504
+
4505
+ #: common/src/admin-views/tribe-options-licenses.php:38
4506
+ msgid "%1$s Using our plugins in a multisite network? %2$s Please note that your license key will be applied to the entire network, not just this site."
4507
+ msgstr ""
4508
+
4509
+ #: common/src/admin-views/tribe-options-help.php:67
4510
+ msgid "News and Tutorials"
4511
+ msgstr ""
4512
+
4513
+ #: common/src/Tribe/Admin/Help_Page.php:847
4514
+ msgid "Premium Add-Ons"
4515
+ msgstr ""
4516
+
4517
+ #: common/src/Tribe/Admin/Help_Page.php:823
4518
+ msgid "WordPress "
4519
+ msgstr ""
4520
+
4521
+ #: common/src/Tribe/Admin/Help_Page.php:822
4522
+ #: common/src/admin-views/app-shop.php:78
4523
+ msgid "Requires:"
4524
+ msgstr ""
4525
+
4526
+ #: common/src/Tribe/Admin/Help_Page.php:819
4527
+ msgid "Latest Version:"
4528
+ msgstr ""
4529
+
4530
+ #: common/src/admin-views/tribe-options-help.php:73
4531
+ msgid "More..."
4532
+ msgstr ""
4533
+
4534
+ #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
4535
+ #: src/Tribe/Main.php:1067
4536
+ msgid "Events Calendar PRO"
4537
+ msgstr ""
4538
+
4539
+ #: common/src/Tribe/Admin/Help_Page.php:413
4540
+ #: common/src/Tribe/Admin/Help_Page.php:788
4541
+ msgid "You are up to date!"
4542
+ msgstr ""
4543
+
4544
+ #: common/src/Tribe/Admin/Help_Page.php:413
4545
+ msgid "You need to upgrade!"
4546
+ msgstr ""
4547
+
4548
+ #: common/src/Tribe/Admin/Help_Page.php:405
4549
+ msgctxt "not available"
4550
+ msgid "n/a"
4551
+ msgstr "n/a"
4552
+
4553
+ #: common/src/admin-views/tribe-options-general.php:64
4554
+ msgid "Debug Bar Plugin"
4555
+ msgstr ""
4556
+
4557
+ #: common/src/admin-views/tribe-options-general.php:64
4558
+ msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
4559
+ msgstr ""
4560
+
4561
+ #: common/src/admin-views/tribe-options-general.php:58
4562
+ msgid "Debug mode"
4563
+ msgstr ""
4564
+
4565
+ #: src/admin-views/tribe-options-general.php:169
4566
+ msgid "View the page that displayed when you updated the plugin."
4567
+ msgstr ""
4568
+
4569
+ #: src/admin-views/tribe-options-general.php:168
4570
+ #: src/admin-views/tribe-options-general.php:169
4571
+ msgid "View Update Page"
4572
+ msgstr ""
4573
+
4574
+ #: src/admin-views/tribe-options-general.php:162
4575
+ msgid "View the page that displayed when you initially installed the plugin."
4576
+ msgstr ""
4577
+
4578
+ #: src/admin-views/tribe-options-general.php:161
4579
+ #: src/admin-views/tribe-options-general.php:162
4580
+ msgid "View Welcome Page"
4581
+ msgstr ""
4582
+
4583
+ #: src/admin-views/tribe-options-general.php:143
4584
+ msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
4585
+ msgstr ""
4586
+
4587
+ #: src/admin-views/tribe-options-general.php:143
4588
+ msgid "Duplicate Venues &amp; Organizers"
4589
+ msgstr ""
4590
+
4591
+ #: src/admin-views/tribe-options-general.php:148
4592
+ msgid "Miscellaneous Settings"
4593
+ msgstr ""
4594
+
4595
+ #: src/admin-views/tribe-options-general.php:194
4596
+ msgid "0 = zoomed out; 21 = zoomed in."
4597
+ msgstr ""
4598
+
4599
+ #: src/admin-views/tribe-options-general.php:193
4600
+ msgid "Google Maps default zoom level"
4601
+ msgstr ""
4602
+
4603
+ #: src/admin-views/tribe-options-general.php:186
4604
+ msgid "Check to enable maps for events and venues."
4605
+ msgstr ""
4606
+
4607
+ #: src/admin-views/tribe-options-general.php:185
4608
+ msgid "Enable Google Maps"
4609
+ msgstr ""
4610
+
4611
+ #: src/admin-views/tribe-options-general.php:181
4612
+ msgid "Map Settings"
4613
+ msgstr ""
4614
+
4615
+ #: src/admin-views/tribe-options-general.php:137
4616
+ msgid "The currency symbol normally precedes the value. Enabling this option positions the symbol after the value."
4617
+ msgstr ""
4618
+
4619
+ #: src/admin-views/tribe-options-general.php:136
4620
+ msgid "Currency symbol follows value"
4621
+ msgstr ""
4622
+
4623
+ #: src/admin-views/tribe-options-general.php:129
4624
+ msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
4625
+ msgstr ""
4626
+
4627
+ #: src/admin-views/tribe-options-general.php:128
4628
+ msgid "Default currency symbol"
4629
+ msgstr ""
4630
+
4631
+ #: src/admin-views/tribe-options-general.php:123
4632
+ msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
4633
+ msgstr ""
4634
+
4635
+ #: src/admin-views/tribe-options-general.php:102
4636
+ msgid "End of day cutoff"
4637
+ msgstr ""
4638
+
4639
+ #: src/admin-views/tribe-options-general.php:97
4640
+ msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
4641
+ msgstr ""
4642
+
4643
+ #: src/admin-views/tribe-options-general.php:90
4644
+ msgid "Single event URL slug"
4645
+ msgstr ""
4646
+
4647
+ #: src/admin-views/tribe-options-general.php:85
4648
+ #: src/functions/template-tags/options.php:39
4649
+ msgid "Here is the iCal feed URL for your events:"
4650
+ msgstr ""
4651
+
4652
+ #: src/admin-views/tribe-options-general.php:80
4653
+ msgid "Your current events URL is: %s"
4654
+ msgstr ""
4655
+
4656
+ #: src/admin-views/tribe-options-general.php:80
4657
+ #: src/functions/template-tags/options.php:20
4658
+ msgid "The slug used for building the events URL."
4659
+ msgstr ""
4660
+
4661
+ #: src/admin-views/tribe-options-general.php:68
4662
+ msgid "You cannot edit the slug for your events page as you do not have pretty permalinks enabled. The current URL for your events page is <a href=\"%1$s\">%2$s</a>. In order to edit the slug here, <a href=\"%3$soptions-permalink.php\">enable pretty permalinks</a>."
4663
+ msgstr ""
4664
+
4665
+ #: src/admin-views/tribe-options-general.php:67
4666
+ #: src/admin-views/tribe-options-general.php:73
4667
+ msgid "Events URL slug"
4668
+ msgstr ""
4669
+
4670
+ #: src/admin-views/tribe-options-general.php:61
4671
+ msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
4672
+ msgstr ""
4673
+
4674
+ #: src/admin-views/tribe-options-general.php:60
4675
+ msgid "Include events in main blog loop"
4676
+ msgstr ""
4677
+
4678
+ #: src/admin-views/tribe-options-general.php:54
4679
+ msgid "Enable comments on event pages."
4680
+ msgstr ""
4681
+
4682
+ #: src/admin-views/tribe-options-general.php:53
4683
+ msgid "Show comments"
4684
+ msgstr ""
4685
+
4686
+ #: src/admin-views/tribe-options-general.php:45
4687
+ msgid "Enable live ajax for datepicker on front end (User submit not required)."
4688
+ msgstr ""
4689
+
4690
+ #: src/admin-views/tribe-options-general.php:45
4691
+ msgid "This option is disabled when \"Disable the Event Search Bar\" is checked on the Display settings tab."
4692
+ msgstr ""
4693
+
4694
+ #: src/admin-views/tribe-options-general.php:44
4695
+ msgid "Use Javascript to control date filtering"
4696
+ msgstr ""
4697
+
4698
+ #: src/admin-views/tribe-options-general.php:37
4699
+ msgid "Number of events to show per page"
4700
+ msgstr ""
4701
+
4702
+ #: src/admin-views/tribe-options-general.php:33
4703
+ msgid "General Settings"
4704
+ msgstr "Generelle innstillingar"
4705
+
4706
+ #: common/src/admin-views/tribe-options-general.php:40
4707
+ msgid "Show The Events Calendar link"
4708
+ msgstr ""
4709
+
4710
+ #: common/src/admin-views/tribe-options-general.php:35
4711
+ msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text only link at the bottom of your calendar pointing to The Events Calendar project."
4712
+ msgstr ""
4713
+
4714
+ #: common/src/admin-views/tribe-options-general.php:30
4715
+ #: common/src/admin-views/tribe-options-general.php:35
4716
+ msgid "See an example of the link"
4717
+ msgstr ""
4718
+
4719
+ #: common/src/admin-views/tribe-options-general.php:30
4720
+ msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
4721
+ msgstr ""
4722
+
4723
+ #: common/src/admin-views/tribe-options-general.php:25
4724
+ msgid "We hope our plugin is helping you out."
4725
+ msgstr ""
4726
+
4727
+ #: common/src/admin-views/tribe-options-general.php:20
4728
+ msgid "Check out the available add-ons"
4729
+ msgstr ""
4730
+
4731
+ #: common/src/admin-views/tribe-options-general.php:20
4732
+ msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
4733
+ msgstr ""
4734
+
4735
+ #: src/admin-views/tribe-options-general.php:22
4736
+ msgid "Right here"
4737
+ msgstr "Akkurat her"
4738
+
4739
+ #: src/admin-views/tribe-options-general.php:22
4740
+ msgid "Where's my calendar?"
4741
+ msgstr "Kvar er kalendaren min?"
4742
+
4743
+ #: src/admin-views/tribe-options-general.php:17
4744
+ msgid "Finding your calendar."
4745
+ msgstr "Finn kalendaren din."
4746
+
4747
+ #: src/admin-views/tribe-options-general.php:12
4748
+ msgid "Finding & extending your calendar."
4749
+ msgstr "Finn og utvid kalendaren din."
4750
+
4751
+ #: src/admin-views/tribe-options-display.php:217
4752
+ msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
4753
+ msgstr ""
4754
+
4755
+ #: src/admin-views/tribe-options-display.php:216
4756
+ msgid "Add HTML after event content"
4757
+ msgstr ""
4758
+
4759
+ #: src/admin-views/tribe-options-display.php:211
4760
+ msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
4761
+ msgstr ""
4762
+
4763
+ #: src/admin-views/tribe-options-display.php:210
4764
+ msgid "Add HTML before event content"
4765
+ msgstr ""
4766
+
4767
+ #: src/admin-views/tribe-options-display.php:206
4768
+ msgid "Advanced Template Settings"
4769
+ msgstr ""
4770
+
4771
+ #: common/src/admin-views/tribe-options-display.php:31
4772
+ msgid "Select the date format to use in datepickers"
4773
+ msgstr ""
4774
+
4775
+ #: common/src/admin-views/tribe-options-display.php:30
4776
+ msgid "Datepicker Date Format"
4777
+ msgstr ""
4778
+
4779
+ #: src/admin-views/tribe-options-display.php:114
4780
+ msgid "Enter the separator that will be used between the start and end time of an event."
4781
+ msgstr ""
4782
+
4783
+ #: src/admin-views/tribe-options-display.php:113
4784
+ msgid "Time range separator"
4785
+ msgstr ""
4786
+
4787
+ #: src/admin-views/tribe-options-display.php:76
4788
+ msgid "Enter the separator that will be placed between the date and time, when both are shown."
4789
+ msgstr ""
4790
+
4791
+ #: src/admin-views/tribe-options-display.php:75
4792
+ msgid "Date time separator"
4793
+ msgstr ""
4794
+
4795
+ #: src/admin-views/tribe-options-display.php:99
4796
+ msgid "Enter the format to use for dates that show a month and year only. Used on month view."
4797
+ msgstr ""
4798
+
4799
+ #: src/admin-views/tribe-options-display.php:98
4800
+ msgid "Month and year format"
4801
+ msgstr ""
4802
+
4803
+ #: src/admin-views/tribe-options-display.php:91
4804
+ msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
4805
+ msgstr ""
4806
+
4807
+ #: src/admin-views/tribe-options-display.php:90
4808
+ msgid "Date without year"
4809
+ msgstr "Dato utan år"
4810
+
4811
+ #: src/admin-views/tribe-options-display.php:67
4812
+ msgid "Date with year"
4813
+ msgstr "Dato med år"
4814
+
4815
+ #: common/src/admin-views/tribe-options-display.php:26
4816
+ msgid "<p>The following three fields accept the date format options available to the php date() function. <a href=\"http://codex.wordpress.org/Formatting_Date_and_Time\" target=\"_blank\">Learn how to make your own date format here</a>.</p>"
4817
+ msgstr ""
4818
+
4819
+ #: common/src/admin-views/tribe-options-display.php:22
4820
+ msgid "Date Format Settings"
4821
+ msgstr ""
4822
+
4823
+ #: src/admin-views/tribe-options-display.php:193
4824
+ msgid "Check this to cache your month view HTML in transients, which can help improve calendar speed on sites with many events. <a href=\"%s\">Read more</a>."
4825
+ msgstr ""
4826
+
4827
+ #: src/admin-views/tribe-options-display.php:192
4828
+ msgid "Enable the Month View Cache"
4829
+ msgstr ""
4830
+
4831
+ #: src/admin-views/tribe-options-display.php:184
4832
+ msgid "Month view events per day"
4833
+ msgstr ""
4834
+
4835
+ #: src/admin-views/tribe-options-display.php:178
4836
+ msgid "Check this to use the classic header."
4837
+ msgstr ""
4838
+
4839
+ #: src/admin-views/tribe-options-display.php:177
4840
+ msgid "Disable the Event Search Bar"
4841
+ msgstr ""
4842
+
4843
+ #: src/admin-views/tribe-options-display.php:169
4844
+ msgid "Default view"
4845
+ msgstr ""
4846
+
4847
+ #: src/admin-views/tribe-options-display.php:162
4848
+ msgid "You must select at least one view."
4849
+ msgstr ""
4850
+
4851
+ #: src/admin-views/tribe-options-display.php:161
4852
+ msgid "Enable event views"
4853
+ msgstr ""
4854
+
4855
+ #: src/admin-views/tribe-options-display.php:153
4856
+ msgid "Choose a page template to control the appearance of your calendar and event content."
4857
+ msgstr ""
4858
+
4859
+ #: src/admin-views/tribe-options-display.php:152
4860
+ msgid "Events template"
4861
+ msgstr ""
4862
+
4863
+ #: src/admin-views/tribe-options-display.php:145
4864
+ msgid "A fully designed and styled theme for your events pages."
4865
+ msgstr ""
4866
+
4867
+ #: src/admin-views/tribe-options-display.php:143
4868
+ msgid "Tribe Events Styles"
4869
+ msgstr ""
4870
+
4871
+ #: src/admin-views/tribe-options-display.php:141
4872
+ msgid "More detailed styling, tries to grab styles from your theme."
4873
+ msgstr ""
4874
+
4875
+ #: src/admin-views/tribe-options-display.php:139
4876
+ msgid "Full Styles"
4877
+ msgstr ""
4878
+
4879
+ #: src/admin-views/tribe-options-display.php:137
4880
+ msgid "Only includes enough css to achieve complex layouts like calendar and week view."
4881
+ msgstr ""
4882
+
4883
+ #: src/admin-views/tribe-options-display.php:135
4884
+ msgid "Skeleton Styles"
4885
+ msgstr ""
4886
+
4887
+ #: src/admin-views/tribe-options-display.php:132
4888
+ msgid "Default stylesheet used for events templates"
4889
+ msgstr ""
4890
+
4891
+ #: src/admin-views/tribe-options-display.php:128
4892
+ msgid "Basic Template Settings"
4893
+ msgstr ""
4894
+
4895
+ #: src/admin-views/tribe-options-display.php:49
4896
+ msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme.</p><p>There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
4897
+ msgstr ""
4898
+
4899
+ #: src/admin-views/tribe-options-display.php:44
4900
+ msgid "Display Settings"
4901
+ msgstr "Visningsinnstillinger"
4902
+
4903
+ #: src/admin-views/tribe-options-display.php:7
4904
+ msgid "Default Page Template"
4905
+ msgstr ""
4906
+
4907
+ #: src/admin-views/tribe-options-display.php:6
4908
+ msgid "Default Events Template"
4909
+ msgstr ""
4910
+
4911
+ #: common/src/admin-views/event-log.php:65
4912
+ msgid "View"
4913
+ msgstr "Sjå"
4914
+
4915
+ #: src/Tribe/Aggregator/Record/List_Table.php:366
4916
+ msgid "Edit"
4917
+ msgstr "Rediger"
4918
+
4919
+ #: src/admin-views/aggregator/origins/eventbrite.php:19
4920
+ msgid "or"
4921
+ msgstr "eller"
4922
+
4923
+ #: src/admin-views/create-venue-fields.php:53
4924
+ #: src/admin-views/venue-meta-box.php:38
4925
+ msgid "Address:"
4926
+ msgstr "Adresse:"
4927
+
4928
+ #: src/admin-views/linked-post-meta-box.php:49
4929
+ #: src/admin-views/organizer-meta-box.php:75
4930
+ msgid "%s Name Already Exists"
4931
+ msgstr "%s namn eksisterer allereie"
4932
+
4933
+ #: src/admin-views/create-organizer-fields.php:15
4934
+ #: src/admin-views/organizer-meta-box.php:43
4935
+ #: src/views/modules/meta/organizer.php:54
4936
+ msgid "Email:"
4937
+ msgstr "Epost:"
4938
+
4939
+ #: src/admin-views/create-organizer-fields.php:8
4940
+ #: src/admin-views/create-venue-fields.php:170
4941
+ #: src/admin-views/organizer-meta-box.php:37
4942
+ #: src/admin-views/venue-meta-box.php:160
4943
+ #: src/views/modules/meta/details.php:148
4944
+ #: src/views/modules/meta/organizer.php:65 src/views/modules/meta/venue.php:45
4945
+ msgid "Website:"
4946
+ msgstr ""
4947
+
4948
+ #: src/admin-views/create-organizer-fields.php:2
4949
+ #: src/admin-views/create-venue-fields.php:156
4950
+ #: src/admin-views/organizer-meta-box.php:31
4951
+ #: src/admin-views/venue-meta-box.php:147
4952
+ #: src/views/modules/meta/organizer.php:43 src/views/modules/meta/venue.php:40
4953
+ msgid "Phone:"
4954
+ msgstr "Telefon:"
4955
+
4956
+ #: src/admin-views/linked-post-meta-box.php:18
4957
+ #: src/admin-views/organizer-meta-box.php:24
4958
+ #: src/admin-views/venue-meta-box.php:25
4959
+ msgid "%s Name:"
4960
+ msgstr "%s Namn:"
4961
+
4962
+ #: src/admin-views/events-meta-box.php:256
4963
+ msgid "Enter a 0 for %s that are free or leave blank to hide the field."
4964
+ msgstr ""
4965
+
4966
+ #: src/admin-views/events-meta-box.php:248
4967
+ #: src/views/modules/meta/details.php:123
4968
+ msgid "Cost:"
4969
+ msgstr "Kostnad:"
4970
+
4971
+ #: src/admin-views/events-meta-box.php:243
4972
+ msgctxt "Currency symbol position"
4973
+ msgid "After cost"
4974
+ msgstr "Etter kostnad"
4975
+
4976
+ #: src/admin-views/events-meta-box.php:240
4977
+ msgctxt "Currency symbol position"
4978
+ msgid "Before cost"
4979
+ msgstr "Før kostnad"
4980
+
4981
+ #: src/admin-views/events-meta-box.php:212
4982
+ msgid "Currency Symbol:"
4983
+ msgstr "Valutasymbol:"
4984
+
4985
+ #: src/admin-views/events-meta-box.php:209
4986
+ msgid "%s Cost"
4987
+ msgstr "%s Kostnad"
4988
+
4989
+ #: src/admin-views/aggregator/origins/facebook.php:109
4990
+ #: src/admin-views/aggregator/origins/gcal.php:81
4991
+ #: src/admin-views/aggregator/origins/ical.php:82
4992
+ #: src/admin-views/aggregator/origins/meetup.php:137
4993
+ #: src/admin-views/aggregator/origins/url.php:82
4994
+ #: src/admin-views/events-meta-box.php:178
4995
+ msgid "URL:"
4996
+ msgstr "URL:"
4997
+
4998
+ #: src/admin-views/events-meta-box.php:175
4999
+ msgid "%s Website"
5000
+ msgstr "%s Nettstad"
5001
+
5002
+ #: src/Tribe/Aggregator/Record/List_Table.php:502
5003
+ msgid "Location:"
5004
+ msgstr "Stad:"
5005
+
5006
+ #: src/admin-views/events-meta-box.php:129
5007
+ msgid "Timezone:"
5008
+ msgstr "Tidssone:"
5009
+
5010
+ #: src/admin-views/events-meta-box.php:83
5011
+ #: src/admin-views/events-meta-box.php:122
5012
+ msgid "YYYY-MM-DD"
5013
+ msgstr ""
5014
+
5015
+ #: src/admin-views/events-meta-box.php:69
5016
+ msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
5017
+ msgstr ""
5018
+
5019
+ #: src/admin-views/events-meta-box.php:52
5020
+ msgid "Time &amp; Date"
5021
+ msgstr "Tid &amp; Dato"
5022
+
5023
+ #: src/admin-views/event-sidebar-options.php:25
5024
+ msgid "When events are sticky in month view, they'll display first in the list of events shown within a given day block."
5025
+ msgstr ""
5026
+
5027
+ #: src/admin-views/event-sidebar-options.php:23
5028
+ msgid "Sticky in Month View"
5029
+ msgstr ""
5030
+
5031
+ #: src/admin-views/event-sidebar-options.php:16
5032
+ msgid "Hide From %s Listings"
5033
+ msgstr ""
5034
+
5035
+ #: src/admin-views/admin-welcome-message.php:54
5036
+ msgid "Product Releases, Tutorials and Community Activity"
5037
+ msgstr ""
5038
+
5039
+ #: src/admin-views/admin-welcome-message.php:51
5040
+ msgid "Get the Skinny on the Latest Updates"
5041
+ msgstr ""
5042
+
5043
+ #: src/admin-views/admin-welcome-message.php:50
5044
+ msgid "Release Notes"
5045
+ msgstr ""
5046
+
5047
+ #: src/admin-views/admin-welcome-message.php:47
5048
+ msgid "FAQs, Documentation, Tutorials and Forums"
5049
+ msgstr ""
5050
+
5051
+ #: src/admin-views/admin-welcome-message.php:46
5052
+ msgid "Support Resources"
5053
+ msgstr ""
5054
+
5055
+ #: src/admin-views/admin-welcome-message.php:44
5056
+ msgid "Addons for Community, Tickets, Filters, Facebook and more."
5057
+ msgstr ""
5058
+
5059
+ #: src/admin-views/admin-welcome-message.php:43
5060
+ msgid "Looking for More Features?"
5061
+ msgstr ""
5062
+
5063
+ #: src/admin-views/admin-welcome-message.php:41
5064
+ msgid "Check out the New User Primer &amp; Tutorials"
5065
+ msgstr ""
5066
+
5067
+ #: src/admin-views/admin-welcome-message.php:40
5068
+ msgid "Getting Started"
5069
+ msgstr ""
5070
+
5071
+ #: src/admin-views/admin-welcome-message.php:25
5072
+ msgid "Newsletter Signup"
5073
+ msgstr ""
5074
+
5075
+ #: src/admin-views/admin-update-message.php:58
5076
+ #: src/admin-views/admin-welcome-message.php:53
5077
+ msgid "News For Events Users"
5078
+ msgstr ""
5079
+
5080
+ #: src/Tribe/Aggregator/API/Origins.php:36
5081
+ #: src/Tribe/Aggregator/Record/Facebook.php:46
5082
+ #: src/admin-views/aggregator/settings.php:457
5083
+ #: src/admin-views/aggregator/status.php:181
5084
+ #: src/admin-views/tribe-options-addons-api.php:78
5085
+ msgid "Facebook"
5086
+ msgstr "Facebook"
5087
+
5088
+ #: src/admin-views/admin-update-message.php:54
5089
+ msgid "Filters"
5090
+ msgstr "Filtrer"
5091
+
5092
+ #: common/src/Tribe/Admin/Help_Page.php:211 common/src/Tribe/Plugins_API.php:90
5093
+ #: src/admin-views/admin-update-message.php:53
5094
+ msgid "Community Events"
5095
+ msgstr ""
5096
+
5097
+ #: src/admin-views/admin-update-message.php:51
5098
+ msgid "Pro"
5099
+ msgstr ""
5100
+
5101
+ #: src/admin-views/admin-update-message.php:49
5102
+ msgid "Looking for Something Special?"
5103
+ msgstr ""
5104
+
5105
+ #: src/admin-views/admin-update-message.php:43
5106
+ #: src/admin-views/admin-welcome-message.php:31
5107
+ msgid "Sign Up"
5108
+ msgstr ""
5109
+
5110
+ #: src/admin-views/admin-update-message.php:38
5111
+ msgid "We send out discounts to our core users via our newsletter."
5112
+ msgstr ""
5113
+
5114
+ #: src/admin-views/admin-update-message.php:37
5115
+ msgid "PSST... Want a Discount?"
5116
+ msgstr ""
5117
+
5118
+ #: src/admin-views/admin-update-message.php:34
5119
+ #: src/admin-views/admin-welcome-message.php:22
5120
+ msgid "Rate It"
5121
+ msgstr ""
5122
+
5123
+ #: src/admin-views/admin-update-message.php:33
5124
+ msgid "Every time you rate %s5 stars%s, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
5125
+ msgstr ""
5126
+
5127
+ #: src/admin-views/admin-update-message.php:9
5128
+ #: src/admin-views/admin-welcome-message.php:11
5129
+ msgid "You are running Version %s and deserve a hug :-)"
5130
+ msgstr ""
5131
+
5132
+ #: src/Tribe/iCal.php:109
5133
+ msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
5134
+ msgstr ""
5135
+
5136
+ #: src/Tribe/iCal.php:80
5137
+ msgid "iCal Export"
5138
+ msgstr ""
5139
+
5140
+ #: src/Tribe/iCal.php:80
5141
+ msgid "Download .ics file"
5142
+ msgstr ""
5143
+
5144
+ #: src/Tribe/Aggregator/API/Origins.php:42
5145
+ #: src/Tribe/Aggregator/Record/gCal.php:14 src/Tribe/iCal.php:79
5146
+ #: src/admin-views/aggregator/settings.php:458
5147
+ msgid "Google Calendar"
5148
+ msgstr ""
5149
+
5150
+ #: src/Tribe/iCal.php:79
5151
+ msgid "Add to Google Calendar"
5152
+ msgstr ""
5153
+
5154
+ #: src/Tribe/iCal.php:33
5155
+ msgid "%1$s %2$s iCal Feed"
5156
+ msgstr ""
5157
+
5158
+ #: src/Tribe/iCal.php:32
5159
+ msgctxt "feed link"
5160
+ msgid "&raquo;"
5161
+ msgstr ""
5162
+
5163
+ #: common/src/Tribe/View_Helpers.php:372
5164
+ msgid "Wyoming"
5165
+ msgstr ""
5166
+
5167
+ #: common/src/Tribe/View_Helpers.php:371
5168
+ msgid "Wisconsin"
5169
+ msgstr ""
5170
+
5171
+ #: common/src/Tribe/View_Helpers.php:370
5172
+ msgid "West Virginia"
5173
+ msgstr ""
5174
+
5175
+ #: common/src/Tribe/View_Helpers.php:369
5176
+ msgid "Washington"
5177
+ msgstr ""
5178
+
5179
+ #: common/src/Tribe/View_Helpers.php:368
5180
+ msgid "Virginia"
5181
+ msgstr ""
5182
+
5183
+ #: common/src/Tribe/View_Helpers.php:367
5184
+ msgid "Vermont"
5185
+ msgstr ""
5186
+
5187
+ #: common/src/Tribe/View_Helpers.php:366
5188
+ msgid "Utah"
5189
+ msgstr ""
5190
+
5191
+ #: common/src/Tribe/View_Helpers.php:365
5192
+ msgid "Texas"
5193
+ msgstr ""
5194
+
5195
+ #: common/src/Tribe/View_Helpers.php:364
5196
+ msgid "Tennessee"
5197
+ msgstr ""
5198
+
5199
+ #: common/src/Tribe/View_Helpers.php:363
5200
+ msgid "South Dakota"
5201
+ msgstr ""
5202
+
5203
+ #: common/src/Tribe/View_Helpers.php:362
5204
+ msgid "South Carolina"
5205
+ msgstr ""
5206
+
5207
+ #: common/src/Tribe/View_Helpers.php:361
5208
+ msgid "Rhode Island"
5209
+ msgstr ""
5210
+
5211
+ #: common/src/Tribe/View_Helpers.php:360
5212
+ msgid "Pennsylvania"
5213
+ msgstr ""
5214
+
5215
+ #: common/src/Tribe/View_Helpers.php:359
5216
+ msgid "Oregon"
5217
+ msgstr ""
5218
+
5219
+ #: common/src/Tribe/View_Helpers.php:358
5220
+ msgid "Oklahoma"
5221
+ msgstr ""
5222
+
5223
+ #: common/src/Tribe/View_Helpers.php:357
5224
+ msgid "Ohio"
5225
+ msgstr ""
5226
+
5227
+ #: common/src/Tribe/View_Helpers.php:356
5228
+ msgid "North Dakota"
5229
+ msgstr ""
5230
+
5231
+ #: common/src/Tribe/View_Helpers.php:355
5232
+ msgid "North Carolina"
5233
+ msgstr ""
5234
+
5235
+ #: common/src/Tribe/View_Helpers.php:354
5236
+ msgid "New York"
5237
+ msgstr ""
5238
+
5239
+ #: common/src/Tribe/View_Helpers.php:353
5240
+ msgid "New Mexico"
5241
+ msgstr ""
5242
+
5243
+ #: common/src/Tribe/View_Helpers.php:352
5244
+ msgid "New Jersey"
5245
+ msgstr ""
5246
+
5247
+ #: common/src/Tribe/View_Helpers.php:351
5248
+ msgid "New Hampshire"
5249
+ msgstr ""
5250
+
5251
+ #: common/src/Tribe/View_Helpers.php:350
5252
+ msgid "Nevada"
5253
+ msgstr ""
5254
+
5255
+ #: common/src/Tribe/View_Helpers.php:349
5256
+ msgid "Nebraska"
5257
+ msgstr ""
5258
+
5259
+ #: common/src/Tribe/View_Helpers.php:348
5260
+ msgid "Montana"
5261
+ msgstr ""
5262
+
5263
+ #: common/src/Tribe/View_Helpers.php:347
5264
+ msgid "Missouri"
5265
+ msgstr ""
5266
+
5267
+ #: common/src/Tribe/View_Helpers.php:346
5268
+ msgid "Mississippi"
5269
+ msgstr ""
5270
+
5271
+ #: common/src/Tribe/View_Helpers.php:345
5272
+ msgid "Minnesota"
5273
+ msgstr ""
5274
+
5275
+ #: common/src/Tribe/View_Helpers.php:344
5276
+ msgid "Michigan"
5277
+ msgstr ""
5278
+
5279
+ #: common/src/Tribe/View_Helpers.php:343
5280
+ msgid "Massachusetts"
5281
+ msgstr ""
5282
+
5283
+ #: common/src/Tribe/View_Helpers.php:342
5284
+ msgid "Maryland"
5285
+ msgstr ""
5286
+
5287
+ #: common/src/Tribe/View_Helpers.php:341
5288
+ msgid "Maine"
5289
+ msgstr ""
5290
+
5291
+ #: common/src/Tribe/View_Helpers.php:340
5292
+ msgid "Louisiana"
5293
+ msgstr ""
5294
+
5295
+ #: common/src/Tribe/View_Helpers.php:339
5296
+ msgid "Kentucky"
5297
+ msgstr ""
5298
+
5299
+ #: common/src/Tribe/View_Helpers.php:338
5300
+ msgid "Kansas"
5301
+ msgstr ""
5302
+
5303
+ #: common/src/Tribe/View_Helpers.php:337
5304
+ msgid "Iowa"
5305
+ msgstr ""
5306
+
5307
+ #: common/src/Tribe/View_Helpers.php:336
5308
+ msgid "Indiana"
5309
+ msgstr ""
5310
+
5311
+ #: common/src/Tribe/View_Helpers.php:335
5312
+ msgid "Illinois"
5313
+ msgstr ""
5314
+
5315
+ #: common/src/Tribe/View_Helpers.php:334
5316
+ msgid "Idaho"
5317
+ msgstr ""
5318
+
5319
+ #: common/src/Tribe/View_Helpers.php:333
5320
+ msgid "Hawaii"
5321
+ msgstr ""
5322
+
5323
+ #: common/src/Tribe/View_Helpers.php:331
5324
+ msgid "Florida"
5325
+ msgstr ""
5326
+
5327
+ #: common/src/Tribe/View_Helpers.php:330
5328
+ msgid "District of Columbia"
5329
+ msgstr ""
5330
+
5331
+ #: common/src/Tribe/View_Helpers.php:329
5332
+ msgid "Delaware"
5333
+ msgstr ""
5334
+
5335
+ #: common/src/Tribe/View_Helpers.php:328
5336
+ msgid "Connecticut"
5337
+ msgstr ""
5338
+
5339
+ #: common/src/Tribe/View_Helpers.php:327
5340
+ msgid "Colorado"
5341
+ msgstr ""
5342
+
5343
+ #: common/src/Tribe/View_Helpers.php:326
5344
+ msgid "California"
5345
+ msgstr ""
5346
+
5347
+ #: common/src/Tribe/View_Helpers.php:325
5348
+ msgid "Arkansas"
5349
+ msgstr ""
5350
+
5351
+ #: common/src/Tribe/View_Helpers.php:324
5352
+ msgid "Arizona"
5353
+ msgstr ""
5354
+
5355
+ #: common/src/Tribe/View_Helpers.php:323
5356
+ msgid "Alaska"
5357
+ msgstr ""
5358
+
5359
+ #: common/src/Tribe/View_Helpers.php:322
5360
+ msgid "Alabama"
5361
+ msgstr ""
5362
+
5363
+ #: common/src/Tribe/View_Helpers.php:282
5364
+ msgid "Zimbabwe"
5365
+ msgstr ""
5366
+
5367
+ #: common/src/Tribe/View_Helpers.php:281
5368
+ msgid "Zambia"
5369
+ msgstr ""
5370
+
5371
+ #: common/src/Tribe/View_Helpers.php:280
5372
+ msgid "Yemen"
5373
+ msgstr ""
5374
+
5375
+ #: common/src/Tribe/View_Helpers.php:279
5376
+ msgid "Western Sahara"
5377
+ msgstr ""
5378
+
5379
+ #: common/src/Tribe/View_Helpers.php:278
5380
+ msgid "Wallis And Futuna Islands"
5381
+ msgstr ""
5382
+
5383
+ #: common/src/Tribe/View_Helpers.php:277
5384
+ msgid "Virgin Islands (U.S.)"
5385
+ msgstr ""
5386
+
5387
+ #: common/src/Tribe/View_Helpers.php:276
5388
+ msgid "Virgin Islands (British)"
5389
+ msgstr ""
5390
+
5391
+ #: common/src/Tribe/View_Helpers.php:275
5392
+ msgid "Viet Nam"
5393
+ msgstr ""
5394
+
5395
+ #: common/src/Tribe/View_Helpers.php:274
5396
+ msgid "Venezuela"
5397
+ msgstr ""
5398
+
5399
+ #: common/src/Tribe/View_Helpers.php:273
5400
+ msgid "Vanuatu"
5401
+ msgstr ""
5402
+
5403
+ #: common/src/Tribe/View_Helpers.php:272
5404
+ msgid "Uzbekistan"
5405
+ msgstr ""
5406
+
5407
+ #: common/src/Tribe/View_Helpers.php:271
5408
+ msgid "Uruguay"
5409
+ msgstr ""
5410
+
5411
+ #: common/src/Tribe/View_Helpers.php:270
5412
+ msgid "United States Minor Outlying Islands"
5413
+ msgstr ""
5414
+
5415
+ #: common/src/Tribe/View_Helpers.php:269
5416
+ msgid "United Kingdom"
5417
+ msgstr ""
5418
+
5419
+ #: common/src/Tribe/View_Helpers.php:268
5420
+ msgid "United Arab Emirates"
5421
+ msgstr ""
5422
+
5423
+ #: common/src/Tribe/View_Helpers.php:267
5424
+ msgid "Ukraine"
5425
+ msgstr ""
5426
+
5427
+ #: common/src/Tribe/View_Helpers.php:266
5428
+ msgid "Uganda"
5429
+ msgstr ""
5430
+
5431
+ #: common/src/Tribe/View_Helpers.php:265
5432
+ msgid "Tuvalu"
5433
+ msgstr ""
5434
+
5435
+ #: common/src/Tribe/View_Helpers.php:264
5436
+ msgid "Turks And Caicos Islands"
5437
+ msgstr ""
5438
+
5439
+ #: common/src/Tribe/View_Helpers.php:263
5440
+ msgid "Turkmenistan"
5441
+ msgstr ""
5442
+
5443
+ #: common/src/Tribe/View_Helpers.php:262
5444
+ msgid "Turkey"
5445
+ msgstr ""
5446
+
5447
+ #: common/src/Tribe/View_Helpers.php:261
5448
+ msgid "Tunisia"
5449
+ msgstr ""
5450
+
5451
+ #: common/src/Tribe/View_Helpers.php:260
5452
+ msgid "Trinidad And Tobago"
5453
+ msgstr ""
5454
+
5455
+ #: common/src/Tribe/View_Helpers.php:259
5456
+ msgid "Tonga"
5457
+ msgstr ""
5458
+
5459
+ #: common/src/Tribe/View_Helpers.php:258
5460
+ msgid "Tokelau"
5461
+ msgstr ""
5462
+
5463
+ #: common/src/Tribe/View_Helpers.php:257
5464
+ msgid "Togo"
5465
+ msgstr ""
5466
+
5467
+ #: common/src/Tribe/View_Helpers.php:256
5468
+ msgid "Thailand"
5469
+ msgstr ""
5470
+
5471
+ #: common/src/Tribe/View_Helpers.php:255
5472
+ msgid "Tanzania, United Republic Of"
5473
+ msgstr ""
5474
+
5475
+ #: common/src/Tribe/View_Helpers.php:254
5476
+ msgid "Tajikistan"
5477
+ msgstr ""
5478
+
5479
+ #: common/src/Tribe/View_Helpers.php:253
5480
+ msgid "Taiwan"
5481
+ msgstr ""
5482
+
5483
+ #: common/src/Tribe/View_Helpers.php:252
5484
+ msgid "Syrian Arab Republic"
5485
+ msgstr ""
5486
+
5487
+ #: common/src/Tribe/View_Helpers.php:251
5488
+ msgid "Switzerland"
5489
+ msgstr ""
5490
+
5491
+ #: common/src/Tribe/View_Helpers.php:250
5492
+ msgid "Sweden"
5493
+ msgstr ""
5494
+
5495
+ #: common/src/Tribe/View_Helpers.php:249
5496
+ msgid "Swaziland"
5497
+ msgstr ""
5498
+
5499
+ #: common/src/Tribe/View_Helpers.php:248
5500
+ msgid "Svalbard And Jan Mayen Islands"
5501
+ msgstr ""
5502
+
5503
+ #: common/src/Tribe/View_Helpers.php:247
5504
+ msgid "Suriname"
5505
+ msgstr ""
5506
+
5507
+ #: common/src/Tribe/View_Helpers.php:246
5508
+ msgid "Sudan"
5509
+ msgstr ""
5510
+
5511
+ #: common/src/Tribe/View_Helpers.php:245
5512
+ msgid "St. Pierre And Miquelon"
5513
+ msgstr ""
5514
+
5515
+ #: common/src/Tribe/View_Helpers.php:244
5516
+ msgid "St. Helena"
5517
+ msgstr ""
5518
+
5519
+ #: common/src/Tribe/View_Helpers.php:243
5520
+ msgid "Sri Lanka"
5521
+ msgstr ""
5522
+
5523
+ #: common/src/Tribe/View_Helpers.php:242
5524
+ msgid "Spain"
5525
+ msgstr ""
5526
+
5527
+ #: common/src/Tribe/View_Helpers.php:241
5528
+ msgid "South Georgia, South Sandwich Islands"
5529
+ msgstr ""
5530
+
5531
+ #: common/src/Tribe/View_Helpers.php:240
5532
+ msgid "South Africa"
5533
+ msgstr ""
5534
+
5535
+ #: common/src/Tribe/View_Helpers.php:239
5536
+ msgid "Somalia"
5537
+ msgstr ""
5538
+
5539
+ #: common/src/Tribe/View_Helpers.php:238
5540
+ msgid "Solomon Islands"
5541
+ msgstr ""
5542
+
5543
+ #: common/src/Tribe/View_Helpers.php:237
5544
+ msgid "Slovenia"
5545
+ msgstr ""
5546
+
5547
+ #: common/src/Tribe/View_Helpers.php:236
5548
+ msgid "Slovakia (Slovak Republic)"
5549
+ msgstr ""
5550
+
5551
+ #: common/src/Tribe/View_Helpers.php:235
5552
+ msgid "Singapore"
5553
+ msgstr ""
5554
+
5555
+ #: common/src/Tribe/View_Helpers.php:234
5556
+ msgid "Sierra Leone"
5557
+ msgstr ""
5558
+
5559
+ #: common/src/Tribe/View_Helpers.php:233
5560
+ msgid "Seychelles"
5561
+ msgstr ""
5562
+
5563
+ #: common/src/Tribe/View_Helpers.php:232
5564
+ msgid "Serbia"
5565
+ msgstr ""
5566
+
5567
+ #: common/src/Tribe/View_Helpers.php:231
5568
+ msgid "Senegal"
5569
+ msgstr ""
5570
+
5571
+ #: common/src/Tribe/View_Helpers.php:230
5572
+ msgid "Saudi Arabia"
5573
+ msgstr ""
5574
+
5575
+ #: common/src/Tribe/View_Helpers.php:229
5576
+ msgid "Sao Tome And Principe"
5577
+ msgstr ""
5578
+
5579
+ #: common/src/Tribe/View_Helpers.php:228
5580
+ msgid "San Marino"
5581
+ msgstr ""
5582
+
5583
+ #: common/src/Tribe/View_Helpers.php:227
5584
+ msgid "Samoa"
5585
+ msgstr ""
5586
+
5587
+ #: common/src/Tribe/View_Helpers.php:226
5588
+ msgid "Saint Vincent And The Grenadines"
5589
+ msgstr ""
5590
+
5591
+ #: common/src/Tribe/View_Helpers.php:225
5592
+ msgid "Saint Lucia"
5593
+ msgstr ""
5594
+
5595
+ #: common/src/Tribe/View_Helpers.php:224
5596
+ msgid "Saint Kitts And Nevis"
5597
+ msgstr ""
5598
+
5599
+ #: common/src/Tribe/View_Helpers.php:223
5600
+ msgid "Rwanda"
5601
+ msgstr ""
5602
+
5603
+ #: common/src/Tribe/View_Helpers.php:222
5604
+ msgid "Russian Federation"
5605
+ msgstr ""
5606
+
5607
+ #: common/src/Tribe/View_Helpers.php:221
5608
+ msgid "Romania"
5609
+ msgstr ""
5610
+
5611
+ #: common/src/Tribe/View_Helpers.php:220
5612
+ msgid "Reunion"
5613
+ msgstr ""
5614
+
5615
+ #: common/src/Tribe/View_Helpers.php:219
5616
+ msgid "Qatar"
5617
+ msgstr ""
5618
+
5619
+ #: common/src/Tribe/View_Helpers.php:218
5620
+ msgid "Puerto Rico"
5621
+ msgstr ""
5622
+
5623
+ #: common/src/Tribe/View_Helpers.php:217
5624
+ msgid "Portugal"
5625
+ msgstr ""
5626
+
5627
+ #: common/src/Tribe/View_Helpers.php:216
5628
+ msgid "Poland"
5629
+ msgstr ""
5630
+
5631
+ #: common/src/Tribe/View_Helpers.php:215
5632
+ msgid "Pitcairn"
5633
+ msgstr ""
5634
+
5635
+ #: common/src/Tribe/View_Helpers.php:214
5636
+ msgid "Philippines"
5637
+ msgstr ""
5638
+
5639
+ #: common/src/Tribe/View_Helpers.php:213
5640
+ msgid "Peru"
5641
+ msgstr ""
5642
+
5643
+ #: common/src/Tribe/View_Helpers.php:212
5644
+ msgid "Paraguay"
5645
+ msgstr ""
5646
+
5647
+ #: common/src/Tribe/View_Helpers.php:211
5648
+ msgid "Papua New Guinea"
5649
+ msgstr ""
5650
+
5651
+ #: common/src/Tribe/View_Helpers.php:210
5652
+ msgid "Panama"
5653
+ msgstr ""
5654
+
5655
+ #: common/src/Tribe/View_Helpers.php:209
5656
+ msgid "Palau"
5657
+ msgstr ""
5658
+
5659
+ #: common/src/Tribe/View_Helpers.php:208
5660
+ msgid "Pakistan"
5661
+ msgstr ""
5662
+
5663
+ #: common/src/Tribe/View_Helpers.php:207
5664
+ msgid "Oman"
5665
+ msgstr ""
5666
+
5667
+ #: common/src/Tribe/View_Helpers.php:206
5668
+ msgid "Norway"
5669
+ msgstr "Noreg"
5670
+
5671
+ #: common/src/Tribe/View_Helpers.php:205
5672
+ msgid "Northern Mariana Islands"
5673
+ msgstr ""
5674
+
5675
+ #: common/src/Tribe/View_Helpers.php:204
5676
+ msgid "Norfolk Island"
5677
+ msgstr ""
5678
+
5679
+ #: common/src/Tribe/View_Helpers.php:203
5680
+ msgid "Niue"
5681
+ msgstr ""
5682
+
5683
+ #: common/src/Tribe/View_Helpers.php:202
5684
+ msgid "Nigeria"
5685
+ msgstr ""
5686
+
5687
+ #: common/src/Tribe/View_Helpers.php:201
5688
+ msgid "Niger"
5689
+ msgstr ""
5690
+
5691
+ #: common/src/Tribe/View_Helpers.php:200
5692
+ msgid "Nicaragua"
5693
+ msgstr ""
5694
+
5695
+ #: common/src/Tribe/View_Helpers.php:199
5696
+ msgid "New Zealand"
5697
+ msgstr ""
5698
+
5699
+ #: common/src/Tribe/View_Helpers.php:198
5700
+ msgid "New Caledonia"
5701
+ msgstr ""
5702
+
5703
+ #: common/src/Tribe/View_Helpers.php:197
5704
+ msgid "Netherlands Antilles"
5705
+ msgstr ""
5706
+
5707
+ #: common/src/Tribe/View_Helpers.php:196
5708
+ msgid "Netherlands"
5709
+ msgstr ""
5710
+
5711
+ #: common/src/Tribe/View_Helpers.php:195
5712
+ msgid "Nepal"
5713
+ msgstr ""
5714
+
5715
+ #: common/src/Tribe/View_Helpers.php:194
5716
+ msgid "Nauru"
5717
+ msgstr ""
5718
+
5719
+ #: common/src/Tribe/View_Helpers.php:193
5720
+ msgid "Namibia"
5721
+ msgstr ""
5722
+
5723
+ #: common/src/Tribe/View_Helpers.php:192
5724
+ msgid "Myanmar"
5725
+ msgstr ""
5726
+
5727
+ #: common/src/Tribe/View_Helpers.php:191
5728
+ msgid "Mozambique"
5729
+ msgstr ""
5730
+
5731
+ #: common/src/Tribe/View_Helpers.php:190
5732
+ msgid "Morocco"
5733
+ msgstr ""
5734
+
5735
+ #: common/src/Tribe/View_Helpers.php:189
5736
+ msgid "Montserrat"
5737
+ msgstr ""
5738
+
5739
+ #: common/src/Tribe/View_Helpers.php:188
5740
+ msgid "Montenegro"
5741
+ msgstr ""
5742
+
5743
+ #: common/src/Tribe/View_Helpers.php:187
5744
+ msgid "Mongolia"
5745
+ msgstr ""
5746
+
5747
+ #: common/src/Tribe/View_Helpers.php:186
5748
+ msgid "Monaco"
5749
+ msgstr ""
5750
+
5751
+ #: common/src/Tribe/View_Helpers.php:185
5752
+ msgid "Moldova, Republic Of"
5753
+ msgstr ""
5754
+
5755
+ #: common/src/Tribe/View_Helpers.php:184
5756
+ msgid "Micronesia, Federated States Of"
5757
+ msgstr ""
5758
+
5759
+ #: common/src/Tribe/View_Helpers.php:183
5760
+ msgid "Mexico"
5761
+ msgstr ""
5762
+
5763
+ #: common/src/Tribe/View_Helpers.php:182
5764
+ msgid "Mayotte"
5765
+ msgstr ""
5766
+
5767
+ #: common/src/Tribe/View_Helpers.php:181
5768
+ msgid "Mauritius"
5769
+ msgstr ""
5770
+
5771
+ #: common/src/Tribe/View_Helpers.php:180
5772
+ msgid "Mauritania"
5773
+ msgstr ""
5774
+
5775
+ #: common/src/Tribe/View_Helpers.php:179
5776
+ msgid "Martinique"
5777
+ msgstr ""
5778
+
5779
+ #: common/src/Tribe/View_Helpers.php:178
5780
+ msgid "Marshall Islands"
5781
+ msgstr ""
5782
+
5783
+ #: common/src/Tribe/View_Helpers.php:177
5784
+ msgid "Malta"
5785
+ msgstr ""
5786
+
5787
+ #: common/src/Tribe/View_Helpers.php:176
5788
+ msgid "Mali"
5789
+ msgstr ""
5790
+
5791
+ #: common/src/Tribe/View_Helpers.php:175
5792
+ msgid "Maldives"
5793
+ msgstr ""
5794
+
5795
+ #: common/src/Tribe/View_Helpers.php:174
5796
+ msgid "Malaysia"
5797
+ msgstr ""
5798
+
5799
+ #: common/src/Tribe/View_Helpers.php:173
5800
+ msgid "Malawi"
5801
+ msgstr ""
5802
+
5803
+ #: common/src/Tribe/View_Helpers.php:172
5804
+ msgid "Madagascar"
5805
+ msgstr ""
5806
+
5807
+ #: common/src/Tribe/View_Helpers.php:171
5808
+ msgid "Macedonia"
5809
+ msgstr ""
5810
+
5811
+ #: common/src/Tribe/View_Helpers.php:170
5812
+ msgid "Macau"
5813
+ msgstr ""
5814
+
5815
+ #: common/src/Tribe/View_Helpers.php:169
5816
+ msgid "Luxembourg"
5817
+ msgstr ""
5818
+
5819
+ #: common/src/Tribe/View_Helpers.php:168
5820
+ msgid "Lithuania"
5821
+ msgstr ""
5822
+
5823
+ #: common/src/Tribe/View_Helpers.php:167
5824
+ msgid "Liechtenstein"
5825
+ msgstr ""
5826
+
5827
+ #: common/src/Tribe/View_Helpers.php:166
5828
+ msgid "Libya"
5829
+ msgstr ""
5830
+
5831
+ #: common/src/Tribe/View_Helpers.php:165
5832
+ msgid "Liberia"
5833
+ msgstr ""
5834
+
5835
+ #: common/src/Tribe/View_Helpers.php:164
5836
+ msgid "Lesotho"
5837
+ msgstr ""
5838
+
5839
+ #: common/src/Tribe/View_Helpers.php:163
5840
+ msgid "Lebanon"
5841
+ msgstr ""
5842
+
5843
+ #: common/src/Tribe/View_Helpers.php:162
5844
+ msgid "Latvia"
5845
+ msgstr ""
5846
+
5847
+ #: common/src/Tribe/View_Helpers.php:161
5848
+ msgid "Lao People's Democratic Republic"
5849
+ msgstr ""
5850
+
5851
+ #: common/src/Tribe/View_Helpers.php:160
5852
+ msgid "Kyrgyzstan"
5853
+ msgstr ""
5854
+
5855
+ #: common/src/Tribe/View_Helpers.php:159
5856
+ msgid "Kuwait"
5857
+ msgstr ""
5858
+
5859
+ #: common/src/Tribe/View_Helpers.php:158
5860
+ msgid "Korea, Republic Of"
5861
+ msgstr ""
5862
+
5863
+ #: common/src/Tribe/View_Helpers.php:157
5864
+ msgid "Korea, Democratic People's Republic Of"
5865
+ msgstr ""
5866
+
5867
+ #: common/src/Tribe/View_Helpers.php:156
5868
+ msgid "Kiribati"
5869
+ msgstr ""
5870
+
5871
+ #: common/src/Tribe/View_Helpers.php:155
5872
+ msgid "Kenya"
5873
+ msgstr ""
5874
+
5875
+ #: common/src/Tribe/View_Helpers.php:154
5876
+ msgid "Kazakhstan"
5877
+ msgstr ""
5878
+
5879
+ #: common/src/Tribe/View_Helpers.php:153
5880
+ msgid "Jordan"
5881
+ msgstr ""
5882
+
5883
+ #: common/src/Tribe/View_Helpers.php:152
5884
+ msgid "Japan"
5885
+ msgstr ""
5886
+
5887
+ #: common/src/Tribe/View_Helpers.php:151
5888
+ msgid "Jamaica"
5889
+ msgstr ""
5890
+
5891
+ #: common/src/Tribe/View_Helpers.php:150
5892
+ msgid "Italy"
5893
+ msgstr ""
5894
+
5895
+ #: common/src/Tribe/View_Helpers.php:149
5896
+ msgid "Israel"
5897
+ msgstr ""
5898
+
5899
+ #: common/src/Tribe/View_Helpers.php:148
5900
+ msgid "Ireland"
5901
+ msgstr ""
5902
+
5903
+ #: common/src/Tribe/View_Helpers.php:147
5904
+ msgid "Iraq"
5905
+ msgstr ""
5906
+
5907
+ #: common/src/Tribe/View_Helpers.php:146
5908
+ msgid "Iran (Islamic Republic Of)"
5909
+ msgstr ""
5910
+
5911
+ #: common/src/Tribe/View_Helpers.php:145
5912
+ msgid "Indonesia"
5913
+ msgstr ""
5914
+
5915
+ #: common/src/Tribe/View_Helpers.php:144
5916
+ msgid "India"
5917
+ msgstr ""
5918
+
5919
+ #: common/src/Tribe/View_Helpers.php:143
5920
+ msgid "Iceland"
5921
+ msgstr ""
5922
+
5923
+ #: common/src/Tribe/View_Helpers.php:142
5924
+ msgid "Hungary"
5925
+ msgstr ""
5926
+
5927
+ #: common/src/Tribe/View_Helpers.php:141
5928
+ msgid "Hong Kong"
5929
+ msgstr ""
5930
+
5931
+ #: common/src/Tribe/View_Helpers.php:140
5932
+ msgid "Honduras"
5933
+ msgstr ""
5934
+
5935
+ #: common/src/Tribe/View_Helpers.php:139
5936
+ msgid "Holy See (Vatican City State)"
5937
+ msgstr ""
5938
+
5939
+ #: common/src/Tribe/View_Helpers.php:138
5940
+ msgid "Heard And Mc Donald Islands"
5941
+ msgstr ""
5942
+
5943
+ #: common/src/Tribe/View_Helpers.php:137
5944
+ msgid "Haiti"
5945
+ msgstr ""
5946
+
5947
+ #: common/src/Tribe/View_Helpers.php:136
5948
+ msgid "Guyana"
5949
+ msgstr ""
5950
+
5951
+ #: common/src/Tribe/View_Helpers.php:135
5952
+ msgid "Guinea-Bissau"
5953
+ msgstr ""
5954
+
5955
+ #: common/src/Tribe/View_Helpers.php:134
5956
+ msgid "Guinea"
5957
+ msgstr ""
5958
+
5959
+ #: common/src/Tribe/View_Helpers.php:133
5960
+ msgid "Guatemala"
5961
+ msgstr ""
5962
+
5963
+ #: common/src/Tribe/View_Helpers.php:132
5964
+ msgid "Guam"
5965
+ msgstr ""
5966
+
5967
+ #: common/src/Tribe/View_Helpers.php:131
5968
+ msgid "Guadeloupe"
5969
+ msgstr ""
5970
+
5971
+ #: common/src/Tribe/View_Helpers.php:130
5972
+ msgid "Grenada"
5973
+ msgstr ""
5974
+
5975
+ #: common/src/Tribe/View_Helpers.php:129
5976
+ msgid "Greenland"
5977
+ msgstr ""
5978
+
5979
+ #: common/src/Tribe/View_Helpers.php:128
5980
+ msgid "Greece"
5981
+ msgstr ""
5982
+
5983
+ #: common/src/Tribe/View_Helpers.php:127
5984
+ msgid "Gibraltar"
5985
+ msgstr ""
5986
+
5987
+ #: common/src/Tribe/View_Helpers.php:126
5988
+ msgid "Ghana"
5989
+ msgstr ""
5990
+
5991
+ #: common/src/Tribe/View_Helpers.php:125
5992
+ msgid "Germany"
5993
+ msgstr ""
5994
+
5995
+ #: common/src/Tribe/View_Helpers.php:124 common/src/Tribe/View_Helpers.php:332
5996
+ msgid "Georgia"
5997
+ msgstr ""
5998
+
5999
+ #: common/src/Tribe/View_Helpers.php:123
6000
+ msgid "Gambia"
6001
+ msgstr ""
6002
+
6003
+ #: common/src/Tribe/View_Helpers.php:122
6004
+ msgid "Gabon"
6005
+ msgstr ""
6006
+
6007
+ #: common/src/Tribe/View_Helpers.php:121
6008
+ msgid "French Southern Territories"
6009
+ msgstr ""
6010
+
6011
+ #: common/src/Tribe/View_Helpers.php:120
6012
+ msgid "French Polynesia"
6013
+ msgstr ""
6014
+
6015
+ #: common/src/Tribe/View_Helpers.php:119
6016
+ msgid "French Guiana"
6017
+ msgstr ""
6018
+
6019
+ #: common/src/Tribe/View_Helpers.php:118
6020
+ msgid "France, Metropolitan"
6021
+ msgstr ""
6022
+
6023
+ #: common/src/Tribe/View_Helpers.php:117
6024
+ msgid "France"
6025
+ msgstr ""
6026
+
6027
+ #: common/src/Tribe/View_Helpers.php:116
6028
+ msgid "Finland"
6029
+ msgstr ""
6030
+
6031
+ #: common/src/Tribe/View_Helpers.php:115
6032
+ msgid "Fiji"
6033
+ msgstr ""
6034
+
6035
+ #: common/src/Tribe/View_Helpers.php:114
6036
+ msgid "Faroe Islands"
6037
+ msgstr ""
6038
+
6039
+ #: common/src/Tribe/View_Helpers.php:113
6040
+ msgid "Falkland Islands (Malvinas)"
6041
+ msgstr ""
6042
+
6043
+ #: common/src/Tribe/View_Helpers.php:112
6044
+ msgid "Ethiopia"
6045
+ msgstr ""
6046
+
6047
+ #: common/src/Tribe/View_Helpers.php:111
6048
+ msgid "Estonia"
6049
+ msgstr ""
6050
+
6051
+ #: common/src/Tribe/View_Helpers.php:110
6052
+ msgid "Eritrea"
6053
+ msgstr ""
6054
+
6055
+ #: common/src/Tribe/View_Helpers.php:109
6056
+ msgid "Equatorial Guinea"
6057
+ msgstr ""
6058
+
6059
+ #: common/src/Tribe/View_Helpers.php:108
6060
+ msgid "El Salvador"
6061
+ msgstr ""
6062
+
6063
+ #: common/src/Tribe/View_Helpers.php:107
6064
+ msgid "Egypt"
6065
+ msgstr ""
6066
+
6067
+ #: common/src/Tribe/View_Helpers.php:106
6068
+ msgid "Ecuador"
6069
+ msgstr ""
6070
+
6071
+ #: common/src/Tribe/View_Helpers.php:105
6072
+ msgid "East Timor"
6073
+ msgstr ""
6074
+
6075
+ #: common/src/Tribe/View_Helpers.php:104
6076
+ msgid "Dominican Republic"
6077
+ msgstr ""
6078
+
6079
+ #: common/src/Tribe/View_Helpers.php:103
6080
+ msgid "Dominica"
6081
+ msgstr ""
6082
+
6083
+ #: common/src/Tribe/View_Helpers.php:102
6084
+ msgid "Djibouti"
6085
+ msgstr ""
6086
+
6087
+ #: common/src/Tribe/View_Helpers.php:101
6088
+ msgid "Denmark"
6089
+ msgstr ""
6090
+
6091
+ #: common/src/Tribe/View_Helpers.php:100
6092
+ msgid "Czech Republic"
6093
+ msgstr ""
6094
+
6095
+ #: common/src/Tribe/View_Helpers.php:99
6096
+ msgid "Cyprus"
6097
+ msgstr ""
6098
+
6099
+ #: common/src/Tribe/View_Helpers.php:98
6100
+ msgid "Cuba"
6101
+ msgstr ""
6102
+
6103
+ #: common/src/Tribe/View_Helpers.php:97
6104
+ msgid "Croatia (Local Name: Hrvatska)"
6105
+ msgstr ""
6106
+
6107
+ #: common/src/Tribe/View_Helpers.php:95
6108
+ msgid "Costa Rica"
6109
+ msgstr ""
6110
+
6111
+ #: common/src/Tribe/View_Helpers.php:94
6112
+ msgid "Cook Islands"
6113
+ msgstr ""
6114
+
6115
+ #: common/src/Tribe/View_Helpers.php:93
6116
+ msgid "Congo, The Democratic Republic Of The"
6117
+ msgstr ""
6118
+
6119
+ #: common/src/Tribe/View_Helpers.php:92
6120
+ msgid "Congo"
6121
+ msgstr ""
6122
+
6123
+ #: common/src/Tribe/View_Helpers.php:91
6124
+ msgid "Comoros"
6125
+ msgstr ""
6126
+
6127
+ #: common/src/Tribe/View_Helpers.php:90
6128
+ msgid "Colombia"
6129
+ msgstr ""
6130
+
6131
+ #: common/src/Tribe/View_Helpers.php:89
6132
+ msgid "Cocos (Keeling) Islands"
6133
+ msgstr ""
6134
+
6135
+ #: common/src/Tribe/View_Helpers.php:88
6136
+ msgid "Christmas Island"
6137
+ msgstr ""
6138
+
6139
+ #: common/src/Tribe/View_Helpers.php:87
6140
+ msgid "China"
6141
+ msgstr ""
6142
+
6143
+ #: common/src/Tribe/View_Helpers.php:86
6144
+ msgid "Chile"
6145
+ msgstr ""
6146
+
6147
+ #: common/src/Tribe/View_Helpers.php:85
6148
+ msgid "Chad"
6149
+ msgstr ""
6150
+
6151
+ #: common/src/Tribe/View_Helpers.php:84
6152
+ msgid "Central African Republic"
6153
+ msgstr ""
6154
+
6155
+ #: common/src/Tribe/View_Helpers.php:83
6156
+ msgid "Cayman Islands"
6157
+ msgstr ""
6158
+
6159
+ #: common/src/Tribe/View_Helpers.php:82
6160
+ msgid "Cape Verde"
6161
+ msgstr ""
6162
+
6163
+ #: common/src/Tribe/View_Helpers.php:81
6164
+ msgid "Canada"
6165
+ msgstr ""
6166
+
6167
+ #: common/src/Tribe/View_Helpers.php:80
6168
+ msgid "Cameroon"
6169
+ msgstr ""
6170
+
6171
+ #: common/src/Tribe/View_Helpers.php:79
6172
+ msgid "Cambodia"
6173
+ msgstr ""
6174
+
6175
+ #: common/src/Tribe/View_Helpers.php:78
6176
+ msgid "Burundi"
6177
+ msgstr ""
6178
+
6179
+ #: common/src/Tribe/View_Helpers.php:77
6180
+ msgid "Burkina Faso"
6181
+ msgstr ""
6182
+
6183
+ #: common/src/Tribe/View_Helpers.php:76
6184
+ msgid "Bulgaria"
6185
+ msgstr ""
6186
+
6187
+ #: common/src/Tribe/View_Helpers.php:75
6188
+ msgid "Brunei Darussalam"
6189
+ msgstr ""
6190
+
6191
+ #: common/src/Tribe/View_Helpers.php:74
6192
+ msgid "British Indian Ocean Territory"
6193
+ msgstr ""
6194
+
6195
+ #: common/src/Tribe/View_Helpers.php:73
6196
+ msgid "Brazil"
6197
+ msgstr ""
6198
+
6199
+ #: common/src/Tribe/View_Helpers.php:72
6200
+ msgid "Bouvet Island"
6201
+ msgstr ""
6202
+
6203
+ #: common/src/Tribe/View_Helpers.php:71
6204
+ msgid "Botswana"
6205
+ msgstr ""
6206
+
6207
+ #: common/src/Tribe/View_Helpers.php:70
6208
+ msgid "Bosnia And Herzegowina"
6209
+ msgstr ""
6210
+
6211
+ #: common/src/Tribe/View_Helpers.php:69
6212
+ msgid "Bolivia"
6213
+ msgstr ""
6214
+
6215
+ #: common/src/Tribe/View_Helpers.php:68
6216
+ msgid "Bhutan"
6217
+ msgstr ""
6218
+
6219
+ #: common/src/Tribe/View_Helpers.php:67
6220
+ msgid "Bermuda"
6221
+ msgstr ""
6222
+
6223
+ #: common/src/Tribe/View_Helpers.php:66
6224
+ msgid "Benin"
6225
+ msgstr ""
6226
+
6227
+ #: common/src/Tribe/View_Helpers.php:65
6228
+ msgid "Belize"
6229
+ msgstr ""
6230
+
6231
+ #: common/src/Tribe/View_Helpers.php:64
6232
+ msgid "Belgium"
6233
+ msgstr ""
6234
+
6235
+ #: common/src/Tribe/View_Helpers.php:63
6236
+ msgid "Belarus"
6237
+ msgstr ""
6238
+
6239
+ #: common/src/Tribe/View_Helpers.php:62
6240
+ msgid "Barbados"
6241
+ msgstr ""
6242
+
6243
+ #: common/src/Tribe/View_Helpers.php:61
6244
+ msgid "Bangladesh"
6245
+ msgstr ""
6246
+
6247
+ #: common/src/Tribe/View_Helpers.php:60
6248
+ msgid "Bahrain"
6249
+ msgstr ""
6250
+
6251
+ #: common/src/Tribe/View_Helpers.php:59
6252
+ msgid "Bahamas"
6253
+ msgstr ""
6254
+
6255
+ #: common/src/Tribe/View_Helpers.php:58
6256
+ msgid "Azerbaijan"
6257
+ msgstr ""
6258
+
6259
+ #: common/src/Tribe/View_Helpers.php:57
6260
+ msgid "Austria"
6261
+ msgstr ""
6262
+
6263
+ #: common/src/Tribe/View_Helpers.php:56
6264
+ msgid "Australia"
6265
+ msgstr ""
6266
+
6267
+ #: common/src/Tribe/View_Helpers.php:55
6268
+ msgid "Aruba"
6269
+ msgstr ""
6270
+
6271
+ #: common/src/Tribe/View_Helpers.php:54
6272
+ msgid "Armenia"
6273
+ msgstr ""
6274
+
6275
+ #: common/src/Tribe/View_Helpers.php:53
6276
+ msgid "Argentina"
6277
+ msgstr ""
6278
+
6279
+ #: common/src/Tribe/View_Helpers.php:52
6280
+ msgid "Antigua And Barbuda"
6281
+ msgstr ""
6282
+
6283
+ #: common/src/Tribe/View_Helpers.php:51
6284
+ msgid "Antarctica"
6285
+ msgstr ""
6286
+
6287
+ #: common/src/Tribe/View_Helpers.php:50
6288
+ msgid "Anguilla"
6289
+ msgstr ""
6290
+
6291
+ #: common/src/Tribe/View_Helpers.php:49
6292
+ msgid "Angola"
6293
+ msgstr ""
6294
+
6295
+ #: common/src/Tribe/View_Helpers.php:48
6296
+ msgid "Andorra"
6297
+ msgstr ""
6298
+
6299
+ #: common/src/Tribe/View_Helpers.php:47
6300
+ msgid "American Samoa"
6301
+ msgstr ""
6302
+
6303
+ #: common/src/Tribe/View_Helpers.php:46
6304
+ msgid "Algeria"
6305
+ msgstr ""
6306
+
6307
+ #: common/src/Tribe/View_Helpers.php:45
6308
+ msgid "Albania"
6309
+ msgstr ""
6310
+
6311
+ #: common/src/Tribe/View_Helpers.php:44
6312
+ msgid "Afghanistan"
6313
+ msgstr ""
6314
+
6315
+ #: common/src/Tribe/View_Helpers.php:291
6316
+ msgid "Select a Country:"
6317
+ msgstr "Vel eit land:"
6318
+
6319
+ #: common/src/Tribe/Validate.php:499
6320
+ msgid "Country List must be formatted as one country per line in the following format: <br>US, United States <br> UK, United Kingdom."
6321
+ msgstr ""
6322
+
6323
+ #: common/src/Tribe/Validate.php:483
6324
+ msgid "%s must be a phone number."
6325
+ msgstr ""
6326
+
6327
+ #: common/src/Tribe/Validate.php:469
6328
+ msgid "%s must consist of 5 numbers."
6329
+ msgstr ""
6330
+
6331
+ #: common/src/Tribe/Validate.php:455
6332
+ msgid "%s must consist of letters, spaces, apostrophes, and dashes."
6333
+ msgstr ""
6334
+
6335
+ #: common/src/Tribe/Validate.php:439
6336
+ msgid "%s must consist of letters, numbers, dashes, apostrophes, and spaces only."
6337
+ msgstr ""
6338
+
6339
+ #: common/src/Tribe/Validate.php:423
6340
+ msgid "%s must be a number between 0 and 21."
6341
+ msgstr ""
6342
+
6343
+ #: common/src/Tribe/Validate.php:369
6344
+ msgid "%s must be a number or percentage."
6345
+ msgstr ""
6346
+
6347
+ #: common/src/Tribe/Validate.php:353
6348
+ msgid "%s cannot be a duplicate"
6349
+ msgstr ""
6350
+
6351
+ #: common/src/Tribe/Validate.php:351
6352
+ msgid "%s cannot be the same as %s."
6353
+ msgstr ""
6354
+
6355
+ #: common/src/Tribe/Validate.php:344
6356
+ msgid "Comparison validation failed because no comparison value was provided, for field %s"
6357
+ msgstr ""
6358
+
6359
+ #: common/src/Tribe/Validate.php:291 common/src/Tribe/Validate.php:308
6360
+ #: common/src/Tribe/Validate.php:330
6361
+ msgid "%s must have a value that's part of its options."
6362
+ msgstr ""
6363
+
6364
+ #: common/src/Tribe/Validate.php:275
6365
+ msgid "%s must be a valid absolute URL."
6366
+ msgstr ""
6367
+
6368
+ #: common/src/Tribe/Validate.php:260
6369
+ msgid "%s must be a valid slug (numbers, letters, dashes, and underscores)."
6370
+ msgstr ""
6371
+
6372
+ #: common/src/Tribe/Validate.php:197 common/src/Tribe/Validate.php:225
6373
+ msgid "%s must be a positive number."
6374
+ msgstr ""
6375
+
6376
+ #: common/src/Tribe/Validate.php:167
6377
+ msgid "%s must contain numbers, letters and dots only"
6378
+ msgstr ""
6379
+
6380
+ #: common/src/Tribe/Validate.php:135 common/src/Tribe/Validate.php:151
6381
+ msgid "%s must contain numbers and letters only"
6382
+ msgstr ""
6383
+
6384
+ #: common/src/Tribe/Validate.php:112
6385
+ msgctxt "non-existant function name passed for field validation"
6386
+ msgid "with function name:"
6387
+ msgstr ""
6388
+
6389
+ #: common/src/Tribe/Validate.php:111
6390
+ msgid "Non-existant field validation function passed"
6391
+ msgstr ""
6392
+
6393
+ #: common/src/Tribe/Validate.php:77 common/src/Tribe/Validate.php:112
6394
+ #: common/src/Tribe/Validate.php:118
6395
+ msgid "Field ID:"
6396
+ msgstr ""
6397
+
6398
+ #: common/src/Tribe/Validate.php:76 common/src/Tribe/Validate.php:117
6399
+ msgid "Invalid or incomplete field passed"
6400
+ msgstr ""
6401
+
6402
+ #: src/admin-views/aggregator/settings.php:32
6403
+ msgid "Yes"
6404
+ msgstr "Ja"
6405
+
6406
+ #: src/admin-views/admin-update-message.php:52
6407
+ msgid "Tickets"
6408
+ msgstr "Billettar"
6409
+
6410
+ #: src/Tribe/Aggregator/Record/List_Table.php:387
6411
+ msgid "Delete"
6412
+ msgstr "Slett"
6413
+
6414
+ #: src/admin-views/admin-welcome-message.php:30
6415
+ msgid "Email"
6416
+ msgstr "E-post"
6417
+
6418
+ #: src/Tribe/Templates.php:664
6419
+ msgid "Template overrides should be moved to the correct subdirectory: tribe_get_template_part('%s')"
6420
+ msgstr ""
6421
+
6422
+ #: src/Tribe/Templates.php:620
6423
+ msgid "Template overrides should be moved to the correct subdirectory: %s"
6424
+ msgstr ""
6425
+
6426
+ #: src/Tribe/Template_Factory.php:301
6427
+ msgid "No previous %s "
6428
+ msgstr "Ingen tidlegare %s"
6429
+
6430
+ #: src/Tribe/Template_Factory.php:299 src/Tribe/Template_Factory.php:304
6431
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
6432
+ msgstr ""
6433
+
6434
+ #: src/Tribe/Template_Factory.php:297
6435
+ msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
6436
+ msgstr ""
6437
+
6438
+ #: src/Tribe/Template/Embed.php:59 src/Tribe/Template/Single_Event.php:119
6439
+ msgid "This %s has passed."
6440
+ msgstr "Denne %s er over. "
6441
+
6442
+ #: src/Tribe/Template/Month.php:908
6443
+ msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
6444
+ msgstr ""
6445
+
6446
+ #: src/Tribe/Template/Month.php:418 src/Tribe/Template_Factory.php:306
6447
+ msgid "There were no results found."
6448
+ msgstr "Fann ingen resultat."
6449
+
6450
+ #: src/Tribe/Template/Month.php:416
6451
+ msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
6452
+ msgstr ""
6453
+
6454
+ #: src/Tribe/Template/Day.php:145
6455
+ msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
6456
+ msgstr ""
6457
+
6458
+ #: src/Tribe/Template/Day.php:111 src/Tribe/Template/Day.php:127
6459
+ msgid "Ongoing"
6460
+ msgstr "Pågåande"
6461
+
6462
+ #: src/Tribe/Aggregator/Page.php:79 src/Tribe/Template/Day.php:108
6463
+ #: src/Tribe/Template/Day.php:124
6464
+ msgid "All Day"
6465
+ msgstr "Heile dagen"
6466
+
6467
+ #: common/src/Tribe/Support.php:190
6468
+ msgid "Rewrite rules were purged on load of this help page. Chances are there is a rewrite rule flush occurring in a plugin or theme!"
6469
+ msgstr ""
6470
+
6471
+ #: common/src/Tribe/Support.php:179 common/src/Tribe/Support.php:180
6472
+ msgid "Unknown or not set"
6473
+ msgstr ""
6474
+
6475
+ #: common/src/admin-views/tribe-options-help.php:34
6476
+ msgid "System Information"
6477
+ msgstr ""
6478
+
6479
+ #: common/src/Tribe/Settings_Tab.php:222
6480
+ msgid "There are no fields setup for this tab yet."
6481
+ msgstr ""
6482
+
6483
+ #: common/src/Tribe/Settings.php:598
6484
+ msgid "The above setting was not saved. Other settings were successfully saved."
6485
+ msgid_plural "The above settings were not saved. Other settings were successfully saved."
6486
+ msgstr[0] ""
6487
+ msgstr[1] ""
6488
+
6489
+ #: common/src/Tribe/Settings.php:597
6490
+ msgid "None of your settings were saved. Please try again."
6491
+ msgstr ""
6492
+
6493
+ #: common/src/Tribe/Settings.php:587
6494
+ msgid "Your form had the following errors:"
6495
+ msgstr ""
6496
+
6497
+ #: common/src/Tribe/Settings.php:420
6498
+ msgid "The request wasn't sent from this tab."
6499
+ msgstr ""
6500
+
6501
+ #: common/src/Tribe/Settings.php:414
6502
+ msgid "The request was sent insecurely."
6503
+ msgstr ""
6504
+
6505
+ #: common/src/Tribe/Settings.php:408
6506
+ msgid "You don't have permission to do that."
6507
+ msgstr ""
6508
+
6509
+ #: common/src/Tribe/Settings.php:360 src/Tribe/Aggregator/Page.php:88
6510
+ msgid "Save Changes"
6511
+ msgstr "Lagre endringar"
6512
+
6513
+ #: common/src/Tribe/Settings.php:352
6514
+ msgid "You've requested a non-existent tab."
6515
+ msgstr ""
6516
+
6517
+ #: common/src/Tribe/Settings.php:338
6518
+ msgid "%s Settings"
6519
+ msgstr "%s Innstillingar"
6520
+
6521
+ #: common/src/Tribe/Settings.php:241 common/src/Tribe/Settings.php:261
6522
+ msgid "Events Settings"
6523
+ msgstr ""
6524
+
6525
+ #: common/src/Tribe/PUE/Checker.php:888
6526
+ msgid "Hmmm... something's wrong with this validator. Please contact %ssupport%s."
6527
+ msgstr ""
6528
+
6529
+ #: common/src/Tribe/PUE/Checker.php:927
6530
+ msgid "Valid Key! Expires on %s"
6531
+ msgstr ""
6532
+
6533
+ #: common/src/Tribe/PUE/Checker.php:907
6534
+ msgid "Sorry, key validation server is not available."
6535
+ msgstr ""
6536
+
6537
+ #: common/src/Tribe/PUE/Checker.php:901
6538
+ msgid "unknown date"
6539
+ msgstr "ukjend dato"
6540
+
6541
+ #: common/src/Tribe/PUE/Checker.php:650
6542
+ msgid "License key(s) updated."
6543
+ msgstr "Lisensnøklar oppdatert"
6544
+
6545
+ #: common/src/Tribe/PUE/Checker.php:494
6546
+ msgid "A valid license key is required for support and updates"
6547
+ msgstr "Ein gyldig lisensnøkkel krevst for support og oppdateringar"
6548
+
6549
+ #: common/src/Tribe/PUE/Checker.php:509 common/src/Tribe/PUE/Checker.php:520
6550
+ #: src/admin-views/aggregator/status.php:41
6551
+ msgid "License Key"
6552
+ msgstr "Lisensnøkkel"
6553
+
6554
+ #: src/Tribe/Options_Exception.php:19 src/Tribe/Post_Exception.php:22
6555
+ msgid "Error"
6556
+ msgstr "Feil"
6557
+
6558
+ #: src/Tribe/Main.php:4444
6559
+ msgid "Once Every 30 Mins"
6560
+ msgstr "Ein gong kvart 30. minutt"
6561
+
6562
+ #: src/Tribe/Main.php:4371
6563
+ msgid "Day Of"
6564
+ msgstr "Dagen"
6565
+
6566
+ #: src/Tribe/Main.php:4369
6567
+ msgid "%s From"
6568
+ msgstr "%s Frå"
6569
+
6570
+ #: src/Tribe/Main.php:4367
6571
+ msgid "%s In"
6572
+ msgstr "%s i"
6573
+
6574
+ #: src/Tribe/Main.php:4364 src/Tribe/Main.php:4380
6575
+ #: src/admin-views/aggregator/origins/refine.php:7
6576
+ msgid "Date"
6577
+ msgstr "Dato"
6578
+
6579
+ #: src/Tribe/Main.php:4339
6580
+ msgid "Search"
6581
+ msgstr "Søk"
6582
+
6583
+ #: src/Tribe/Main.php:4314 src/admin-views/aggregator/fields/schedule.php:44
6584
+ #: src/admin-views/aggregator/fields/schedule.php:62
6585
+ msgid "Day"
6586
+ msgstr "Dag"
6587
+
6588
+ #: src/Tribe/Main.php:4297
6589
+ msgid "Month"
6590
+ msgstr "Månad"
6591
+
6592
+ #: src/Tribe/Main.php:4279
6593
+ msgid "List"
6594
+ msgstr "Liste"
6595
+
6596
+ #: src/Tribe/Main.php:4263
6597
+ msgid "Calendar"
6598
+ msgstr "Kalendar"
6599
+
6600
+ #: common/src/Tribe/Settings.php:242
6601
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4262
6602
+ msgid "Settings"
6603
+ msgstr "Innstillingar"
6604
+
6605
+ #: src/Tribe/Aggregator/Record/CSV.php:74 src/Tribe/Importer/Admin_Page.php:238
6606
+ #: src/admin-views/aggregator/settings.php:454
6607
+ msgid "CSV"
6608
+ msgstr "CSV"
6609
+
6610
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:53
6611
+ msgid "Add %s"
6612
+ msgstr "Legg til %s"
6613
+
6614
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4213
6615
+ msgid "View Calendar"
6616
+ msgstr "Sjå kalendar"
6617
+
6618
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:18
6619
+ msgid "%s"
6620
+ msgstr "%s"
6621
+
6622
+ #: src/Tribe/Main.php:4160
6623
+ msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
6624
+ msgstr ""
6625
+
6626
+ #: src/Tribe/Main.php:4155
6627
+ msgid "Additional Functionality"
6628
+ msgstr "Tilleggsfunksjonalitet"
6629
+
6630
+ #: src/Tribe/Main.php:4110
6631
+ msgid "News from Modern Tribe"
6632
+ msgstr ""
6633
+
6634
+ #: src/Tribe/Main.php:4090
6635
+ msgid "View All Add-Ons"
6636
+ msgstr ""
6637
+
6638
+ #: src/Tribe/Main.php:4087
6639
+ msgid "Support"
6640
+ msgstr "Brukarstøtte"
6641
+
6642
+ #: src/Tribe/Main.php:3738 src/Tribe/Main.php:3749
6643
+ msgid "%s Information"
6644
+ msgstr "%s Informasjon"
6645
+
6646
+ #: src/Tribe/Main.php:3731
6647
+ msgid "%s Options"
6648
+ msgstr "%s Alternativ"
6649
+
6650
+ #: src/Tribe/Main.php:3661 src/Tribe/Main.php:3696
6651
+ #: src/functions/template-tags/day.php:157
6652
+ #: src/functions/template-tags/day.php:178
6653
+ msgid "Date out of range."
6654
+ msgstr ""
6655
+
6656
+ #: src/Tribe/Main.php:2278
6657
+ msgid "all"
6658
+ msgstr "alle"
6659
+
6660
+ #: src/Tribe/Main.php:2277 src/functions/template-tags/general.php:91
6661
+ msgid "events"
6662
+ msgstr "hendingar"
6663
+
6664
+ #: src/Tribe/Main.php:2276 src/functions/template-tags/general.php:69
6665
+ msgid "event"
6666
+ msgstr "hending"
6667
+
6668
+ #: src/Tribe/Main.php:2275
6669
+ msgid "page"
6670
+ msgstr "side"
6671
+
6672
+ #: common/src/Tribe/Settings_Manager.php:219
6673
+ msgid "Network"
6674
+ msgstr "Nettverk"
6675
+
6676
+ #: common/src/Tribe/Main.php:287
6677
+ msgid "Done"
6678
+ msgstr "Ferdig"
6679
+
6680
+ #: common/src/Tribe/Main.php:286 src/Tribe/Asset/Bootstrap_Datepicker.php:27
6681
+ #: src/functions/template-tags/day.php:104
6682
+ msgid "Today"
6683
+ msgstr "I dag"
6684
+
6685
+ #: common/src/Tribe/Main.php:285
6686
+ msgid "Prev"
6687
+ msgstr "Førre"
6688
+
6689
+ #: common/src/Tribe/Main.php:268 common/src/Tribe/Main.php:284
6690
+ msgid "Next"
6691
+ msgstr "Neste"
6692
+
6693
+ #: src/Tribe/Linked_Posts.php:949
6694
+ msgid "No saved %s exists."
6695
+ msgstr "Ingen lagra %s eksisterer."
6696
+
6697
+ #: src/Tribe/Linked_Posts.php:773
6698
+ msgid "Available %s"
6699
+ msgstr "Tilgjengelege %s"
6700
+
6701
+ #: src/Tribe/Linked_Posts.php:769
6702
+ msgid "My %s"
6703
+ msgstr "Mine %s"
6704
+
6705
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1826
6706
+ msgid "%s draft updated."
6707
+ msgstr "%s utkast oppdatert."
6708
+
6709
+ #: src/Tribe/Main.php:1799 src/Tribe/Main.php:1819
6710
+ msgid "%s submitted."
6711
+ msgstr "%s sendt inn."
6712
+
6713
+ #: src/Tribe/Main.php:1797 src/Tribe/Main.php:1817
6714
+ msgid "%s published."
6715
+ msgstr "%s publisert."
6716
+
6717
+ #. translators: %s: date and time of the revision
6718
+ #: src/Tribe/Main.php:1816
6719
+ msgid "%s restored to revision from %s"
6720
+ msgstr ""
6721
+
6722
+ #. translators: Publish box date format, see http://php.net/date
6723
+ #: src/Tribe/Main.php:1776 src/Tribe/Main.php:1804 src/Tribe/Main.php:1824
6724
+ msgid "M j, Y @ G:i"
6725
+ msgstr ""
6726
+
6727
+ #: src/Tribe/Main.php:1765 src/Tribe/Main.php:1798 src/Tribe/Main.php:1818
6728
+ msgid "%s saved."
6729
+ msgstr "%s lagra."
6730
+
6731
+ #. translators: %s: date and time of the revision
6732
+ #: src/Tribe/Main.php:1759 src/Tribe/Main.php:1796
6733
+ msgid "%1$s restored to revision from %2$s"
6734
+ msgstr ""
6735
+
6736
+ #: src/Tribe/Main.php:1757 src/Tribe/Main.php:1791 src/Tribe/Main.php:1794
6737
+ #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1814
6738
+ msgid "%s updated."
6739
+ msgstr "%s oppdatert."
6740
+
6741
+ #: src/Tribe/Main.php:1756 src/Tribe/Main.php:1793 src/Tribe/Main.php:1813
6742
+ msgid "Custom field deleted."
6743
+ msgstr ""
6744
+
6745
+ #: src/Tribe/Main.php:1755 src/Tribe/Main.php:1792 src/Tribe/Main.php:1812
6746
+ msgid "Custom field updated."
6747
+ msgstr ""
6748
+
6749
+ #: src/Tribe/Main.php:1733
6750
+ msgid "New %s Category Name"
6751
+ msgstr "Nytt %s kategorinamn"
6752
+
6753
+ #: src/Tribe/Main.php:1732
6754
+ msgid "Add New %s Category"
6755
+ msgstr "Legg til ny %s kategori"
6756
+
6757
+ #: src/Tribe/Main.php:1731
6758
+ msgid "Update %s Category"
6759
+ msgstr "Oppdater %s kategori"
6760
+
6761
+ #: src/Tribe/Main.php:1730
6762
+ msgid "Edit %s Category"
6763
+ msgstr "Endre %s kategori"
6764
+
6765
+ #: src/Tribe/Main.php:1729
6766
+ msgid "Parent %s Category:"
6767
+ msgstr "Foreldre %s kategori:"
6768
+
6769
+ #: src/Tribe/Main.php:1728
6770
+ msgid "Parent %s Category"
6771
+ msgstr "Foreldre %s kategori"
6772
+
6773
+ #: src/Tribe/Main.php:1727
6774
+ msgid "All %s Categories"
6775
+ msgstr "Alle %s kategoriar"
6776
+
6777
+ #: src/Tribe/Main.php:1726
6778
+ msgid "Search %s Categories"
6779
+ msgstr "Søk %s kategoriar"
6780
+
6781
+ #: src/Tribe/Main.php:1725
6782
+ msgid "%s Category"
6783
+ msgstr "%s kategori"
6784
+
6785
+ #: src/Tribe/Main.php:1715 src/Tribe/Organizer.php:78 src/Tribe/Venue.php:84
6786
+ msgid "No %s found in Trash"
6787
+ msgstr "Ingen %s funne i papirkorga"
6788
+
6789
+ #: src/Tribe/Main.php:1714 src/Tribe/Organizer.php:77 src/Tribe/Venue.php:83
6790
+ msgid "No %s found"
6791
+ msgstr "Ingen %s funne"
6792
+
6793
+ #: src/Tribe/Main.php:1713 src/Tribe/Organizer.php:76 src/Tribe/Venue.php:82
6794
+ msgid "Search %s"
6795
+ msgstr "Søk %s"
6796
+
6797
+ #: src/Tribe/Main.php:1712 src/Tribe/Organizer.php:75 src/Tribe/Venue.php:81
6798
+ msgid "View %s"
6799
+ msgstr "Sjå %s"
6800
+
6801
+ #: src/Tribe/Main.php:1711 src/Tribe/Organizer.php:74 src/Tribe/Venue.php:80
6802
+ msgid "New %s"
6803
+ msgstr "Nye %s"
6804
+
6805
+ #: src/Tribe/Main.php:1709 src/Tribe/Main.php:1840 src/Tribe/Main.php:1841
6806
+ #: src/Tribe/Organizer.php:72 src/Tribe/Venue.php:78
6807
+ msgid "Add New %s"
6808
+ msgstr "Legg til nye %s"
6809
+
6810
+ #: src/Tribe/Main.php:1708 src/Tribe/Organizer.php:71 src/Tribe/Venue.php:77
6811
+ msgid "Add New"
6812
+ msgstr "Legg til ny"
6813
+
6814
+ #: src/Tribe/Main.php:1675 src/Tribe/Main.php:2273
6815
+ msgid "tag"
6816
+ msgstr "tag"
6817
+
6818
+ #: src/Tribe/Main.php:1661 src/Tribe/Main.php:2274
6819
+ msgid "category"
6820
+ msgstr "kategori"
6821
+
6822
+ #: src/Tribe/Main.php:1421
6823
+ msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
6824
+ msgstr ""
6825
+
6826
+ #: src/Tribe/Main.php:1418
6827
+ msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
6828
+ msgstr ""
6829
+
6830
+ #: common/src/Tribe/Settings_Manager.php:253
6831
+ #: common/src/admin-views/tribe-options-licenses.php:66
6832
+ msgid "Licenses"
6833
+ msgstr "Lisensar"
6834
+
6835
+ #: common/src/Tribe/Settings_Manager.php:279
6836
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:104
6837
+ msgid "Help"
6838
+ msgstr "Hjelp"
6839
+
6840
+ #: common/src/Tribe/Settings_Manager.php:55
6841
+ msgid "Display"
6842
+ msgstr "Vis"
6843
+
6844
+ #: src/Tribe/Main.php:1267
6845
+ msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
6846
+ msgstr ""
6847
+
6848
+ #: src/Tribe/Main.php:1255
6849
+ msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
6850
+ msgstr ""
6851
+
6852
+ #: src/Tribe/Main.php:756
6853
+ msgid "Initializing Tribe Events on %s"
6854
+ msgstr ""
6855
+
6856
+ #: src/Tribe/Main.php:731
6857
+ msgid "today"
6858
+ msgstr "i dag"
6859
+
6860
+ #: src/Tribe/Main.php:730
6861
+ msgid "day"
6862
+ msgstr "dag"
6863
+
6864
+ #: src/Tribe/Main.php:729
6865
+ msgid "past"
6866
+ msgstr "tidlegare"
6867
+
6868
+ #: src/Tribe/Main.php:728
6869
+ msgid "upcoming"
6870
+ msgstr "komande"
6871
+
6872
+ #: src/Tribe/Main.php:727
6873
+ msgid "list"
6874
+ msgstr "liste"
6875
+
6876
+ #: src/Tribe/Main.php:726
6877
+ msgid "month"
6878
+ msgstr "månad"
6879
+
6880
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.5.12.3)
6881
+ #. #-#-#-#-#
6882
+ #. Plugin Name of the plugin/theme
6883
+ #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:565
6884
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:719
6885
+ #: src/Tribe/Main.php:1054
6886
+ msgid "The Events Calendar"
6887
+ msgstr "The Events Calendar"
6888
+
6889
+ #: src/Tribe/Main.php:1124 src/admin-views/aggregator/tabs/import-form.php:183
6890
+ #: src/admin-views/aggregator/tabs/import-form.php:195
6891
+ #: src/functions/template-tags/general.php:58
6892
+ msgid "Event"
6893
+ msgstr "Hending"
6894
+
6895
+ #: common/src/Tribe/Settings.php:165 common/src/Tribe/Settings.php:229
6896
+ #: common/src/Tribe/Settings.php:230 src/Tribe/Importer/Admin_Page.php:206
6897
+ #: src/Tribe/Main.php:1116 src/functions/template-tags/general.php:80
6898
+ msgid "Events"
6899
+ msgstr "Hendingar"
6900
+
6901
+ #: src/Tribe/Organizer.php:137 src/functions/template-tags/organizer.php:75
6902
+ msgid "Organizer"
6903
+ msgstr "Arrangør"
6904
+
6905
+ #: src/Tribe/Importer/Admin_Page.php:205 src/Tribe/Organizer.php:151
6906
+ #: src/functions/template-tags/organizer.php:86
6907
+ msgid "Organizers"
6908
+ msgstr "Arrangørar"
6909
+
6910
+ #: src/Tribe/Venue.php:135 src/functions/template-tags/venue.php:57
6911
+ msgid "Venue"
6912
+ msgstr "Lokale"
6913
+
6914
+ #: src/Tribe/Importer/Admin_Page.php:204 src/Tribe/Venue.php:144
6915
+ #: src/functions/template-tags/venue.php:76
6916
+ msgid "Venues"
6917
+ msgstr "Lokaler"
6918
+
6919
+ #: src/Tribe/List_Widget.php:219
6920
+ msgid "Upcoming Events"
6921
+ msgstr "Komande hendingar"
6922
+
6923
+ #: src/Tribe/List_Widget.php:38
6924
+ msgid "Events List"
6925
+ msgstr "Hendingsliste"
6926
+
6927
+ #: src/Tribe/List_Widget.php:30
6928
+ msgid "A widget that displays upcoming events."
6929
+ msgstr ""
6930
+
6931
+ #: common/src/Tribe/Settings.php:620 src/Tribe/Importer/Options.php:54
6932
+ msgid "Settings saved."
6933
+ msgstr "Innstillingar lagra."
6934
+
6935
+ #: src/Tribe/Importer/File_Uploader.php:36
6936
+ msgid "Could not save %s."
6937
+ msgstr "Kunne ikkje lagre %s."
6938
+
6939
+ #: src/Tribe/Importer/File_Uploader.php:28
6940
+ msgid "Temporary file not found. Could not save %s."
6941
+ msgstr ""
6942
+
6943
+ #: src/Tribe/Importer/File_Importer.php:213
6944
+ msgid "%s (post ID %d) created."
6945
+ msgstr ""
6946
+
6947
+ #: src/Tribe/Importer/File_Importer.php:208
6948
+ msgid "%s (post ID %d) updated."
6949
+ msgstr ""
6950
+
6951
+ #: src/Tribe/Importer/File_Importer.php:197
6952
+ msgid "Failed to import record in row %d."
6953
+ msgstr ""
6954
+
6955
+ #: src/Tribe/Importer/File_Importer.php:334
6956
+ msgid "Missing required fields in row %d."
6957
+ msgstr ""
6958
+
6959
+ #: src/Tribe/Importer/File_Importer.php:62
6960
+ msgid "No importer defined for %s"
6961
+ msgstr ""
6962
+
6963
+ #: src/Tribe/Importer/Column_Mapper.php:127
6964
+ msgid "Organizer Phone"
6965
+ msgstr ""
6966
+
6967
+ #: src/Tribe/Importer/Column_Mapper.php:126
6968
+ msgid "Organizer Website"
6969
+ msgstr ""
6970
+
6971
+ #: src/Tribe/Importer/Column_Mapper.php:125
6972
+ msgid "Organizer Email"
6973
+ msgstr ""
6974
+
6975
+ #: src/Tribe/Importer/Column_Mapper.php:123
6976
+ msgid "Organizer Name"
6977
+ msgstr ""
6978
+
6979
+ #: src/Tribe/Importer/Column_Mapper.php:109
6980
+ msgid "Venue Website"
6981
+ msgstr ""
6982
+
6983
+ #: src/Tribe/Importer/Column_Mapper.php:108
6984
+ #: src/admin-views/create-venue-fields.php:165
6985
+ msgid "Venue Phone"
6986
+ msgstr ""
6987
+
6988
+ #: src/Tribe/Importer/Column_Mapper.php:107
6989
+ msgid "Venue Zip"
6990
+ msgstr ""
6991
+
6992
+ #: src/Tribe/Importer/Column_Mapper.php:106
6993
+ msgid "Venue State/Province"
6994
+ msgstr ""
6995
+
6996
+ #: src/Tribe/Importer/Column_Mapper.php:105
6997
+ #: src/admin-views/create-venue-fields.php:74
6998
+ msgid "Venue City"
6999
+ msgstr ""
7000
+
7001
+ #: src/Tribe/Importer/Column_Mapper.php:104
7002
+ msgid "Venue Address 2"
7003
+ msgstr ""
7004
+
7005
+ #: src/Tribe/Importer/Column_Mapper.php:103
7006
+ #: src/admin-views/create-venue-fields.php:61
7007
+ msgid "Venue Address"
7008
+ msgstr ""
7009
+
7010
+ #: src/Tribe/Importer/Column_Mapper.php:102
7011
+ #: src/admin-views/create-venue-fields.php:99
7012
+ msgid "Venue Country"
7013
+ msgstr ""
7014
+
7015
+ #: src/Tribe/Importer/Column_Mapper.php:100
7016
+ msgid "Venue Name"
7017
+ msgstr ""
7018
+
7019
+ #: src/Tribe/Importer/Column_Mapper.php:84
7020
+ msgid "Event Website"
7021
+ msgstr ""
7022
+
7023
+ #: src/Tribe/Importer/Column_Mapper.php:83
7024
+ msgid "Event Tags"
7025
+ msgstr ""
7026
+
7027
+ #: src/Tribe/Importer/Column_Mapper.php:82
7028
+ msgid "Event Category"
7029
+ msgstr ""
7030
+
7031
+ #: src/Tribe/Importer/Column_Mapper.php:81
7032
+ msgid "Event Currency Position"
7033
+ msgstr ""
7034
+
7035
+ #: src/Tribe/Importer/Column_Mapper.php:80
7036
+ msgid "Event Currency Symbol"
7037
+ msgstr ""
7038
+
7039
+ #: src/Tribe/Importer/Column_Mapper.php:79
7040
+ msgid "Event Cost"
7041
+ msgstr ""
7042
+
7043
+ #: src/Tribe/Importer/Column_Mapper.php:78
7044
+ msgid "Event Show Map"
7045
+ msgstr ""
7046
+
7047
+ #: src/Tribe/Importer/Column_Mapper.php:77
7048
+ msgid "Event Show Map Link"
7049
+ msgstr ""
7050
+
7051
+ #: src/Tribe/Importer/Column_Mapper.php:75
7052
+ msgid "Event Venue Name"
7053
+ msgstr ""
7054
+
7055
+ #: src/Tribe/Importer/Column_Mapper.php:72
7056
+ #: src/admin-views/events-meta-box.php:144
7057
+ msgid "All Day Event"
7058
+ msgstr ""
7059
+
7060
+ #: src/Tribe/Importer/Column_Mapper.php:70
7061
+ msgid "Event End Time"
7062
+ msgstr "Hending Sluttid"
7063
+
7064
+ #: src/Tribe/Importer/Column_Mapper.php:69
7065
+ msgid "Event End Date"
7066
+ msgstr "Hending Sluttdato"
7067
+
7068
+ #: src/Tribe/Importer/Column_Mapper.php:68
7069
+ msgid "Event Start Time"
7070
+ msgstr "Hending Starttid"
7071
+
7072
+ #: src/Tribe/Importer/Column_Mapper.php:67
7073
+ msgid "Event Start Date"
7074
+ msgstr "Hending Startdato"
7075
+
7076
+ #: src/Tribe/Importer/Column_Mapper.php:65
7077
+ msgid "Event Description"
7078
+ msgstr "Hendingsbeskrivelse"
7079
+
7080
+ #: src/Tribe/Importer/Column_Mapper.php:64
7081
+ msgid "Event Name"
7082
+ msgstr "Namn på hending"
7083
+
7084
+ #: src/Tribe/Importer/Column_Mapper.php:45
7085
+ msgid "Do Not Import"
7086
+ msgstr "Ikkje importer"
7087
+
7088
+ #: src/Tribe/Aggregator/Record/CSV.php:190
7089
+ #: src/Tribe/Importer/Admin_Page.php:357
7090
+ msgid "The following fields are required for a successful import:"
7091
+ msgstr "Dei følgande felta er naudsynte for ein suksessfull import"
7092
+
7093
+ #: src/Tribe/Importer/Admin_Page.php:316
7094
+ msgid "We were unable to process your request. Please try again."
7095
+ msgstr ""
7096
+
7097
+ #: common/src/Tribe/Settings_Manager.php:54
7098
+ msgid "General"
7099
+ msgstr "Generelt"
7100
+
7101
+ #: src/Tribe/Importer/Admin_Page.php:164 src/Tribe/Importer/Admin_Page.php:350
7102
+ msgid "The file went away. Please try again."
7103
+ msgstr "Fila forsvann. Vennligst prøv igjen."
7104
+
7105
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:73
7106
+ #: src/Tribe/Aggregator/Page.php:246
7107
+ #: src/admin-views/aggregator/tabs/import-form.php:230
7108
+ msgid "Import"
7109
+ msgstr "Importer"
7110
+
7111
+ #: common/src/Tribe/Field.php:615
7112
+ msgid "No select options specified"
7113
+ msgstr ""
7114
+
7115
+ #: common/src/Tribe/Field.php:558
7116
+ msgid "No checkbox options specified"
7117
+ msgstr ""
7118
+
7119
+ #: common/src/Tribe/Field.php:522
7120
+ msgid "No radio options specified"
7121
+ msgstr ""
7122
+
7123
+ #: common/src/Tribe/Field.php:227
7124
+ msgid "Invalid field type specified"
7125
+ msgstr ""
7126
+
7127
+ #: common/src/Tribe/Credits.php:31
7128
+ msgid "This calendar is powered by The Events Calendar."
7129
+ msgstr ""
7130
+
7131
+ #: common/src/Tribe/Cost_Utils.php:108
7132
+ msgid "Free"
7133
+ msgstr "Gratis"
7134
+
7135
+ #: src/Tribe/Cost_Utils.php:113
7136
+ msgctxt "Cost range separator"
7137
+ msgid " - "
7138
+ msgstr "-"
7139
+
7140
+ #: common/src/Tribe/App_Shop.php:50 common/src/Tribe/App_Shop.php:51
7141
+ #: common/src/Tribe/App_Shop.php:72
7142
+ msgid "Event Add-Ons"
7143
+ msgstr ""
7144
+
7145
+ #: src/Tribe/Amalgamator.php:253 src/admin-views/tribe-options-general.php:143
7146
+ msgid "Merge Duplicates"
7147
+ msgstr ""
7148
+
7149
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:111
7150
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:122
7151
+ #: src/views/modules/meta/details.php:48
7152
+ msgid "Time:"
7153
+ msgstr "Tid:"
7154
+
7155
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:68
7156
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:100
7157
+ #: src/views/modules/meta/details.php:80 src/views/modules/meta/details.php:105
7158
+ msgid "Date:"
7159
+ msgstr "Dato"
7160
+
7161
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:57
7162
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:89
7163
+ #: src/views/modules/meta/details.php:70 src/views/modules/meta/details.php:95
7164
+ msgid "End:"
7165
+ msgstr "Slutt:"
7166
+
7167
+ #: src/Tribe/Aggregator/Record/List_Table.php:498
7168
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
7169
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
7170
+ #: src/views/modules/meta/details.php:65 src/views/modules/meta/details.php:90
7171
+ msgid "Start:"
7172
+ msgstr "Start:"
7173
+
7174
+ #: src/Tribe/Admin_List.php:253
7175
+ #: src/admin-views/aggregator/tabs/import-form.php:182
7176
+ #: src/admin-views/aggregator/tabs/import-form.php:194
7177
+ msgid "End Date"
7178
+ msgstr "Sluttdato"
7179
+
7180
+ #: src/Tribe/Admin_List.php:252
7181
+ #: src/admin-views/aggregator/tabs/import-form.php:180
7182
+ #: src/admin-views/aggregator/tabs/import-form.php:192
7183
+ msgid "Start Date"
7184
+ msgstr "Startdato"
7185
+
7186
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1724
7187
+ msgid "%s Categories"
7188
+ msgstr "%s Kategoriar"
7189
+
7190
+ #: src/Tribe/Admin/Timezone_Updater.php:105
7191
+ msgid "A problem stopped the timezone update process from completing. Please refresh and try again."
7192
+ msgstr ""
7193
+
7194
+ #: src/Tribe/Admin/Timezone_Updater.php:87
7195
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
7196
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:98
7197
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:201
7198
+ msgid "%d%% complete"
7199
+ msgstr ""
7200
+
7201
+ #: src/Tribe/Admin/Timezone_Updater.php:78
7202
+ msgid "Update complete: timezone data has been added to all events in the database."
7203
+ msgstr ""
7204
+
7205
+ #: src/Tribe/Admin/Timezone_Updater.php:77
7206
+ msgid "Please wait while timezone data is added to your events."
7207
+ msgstr ""
7208
+
7209
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:62
7210
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:208 src/Tribe/Main.php:1710
7211
+ #: src/Tribe/Main.php:4700 src/Tribe/Main.php:4747 src/Tribe/Organizer.php:73
7212
+ #: src/Tribe/Venue.php:79
7213
+ msgid "Edit %s"
7214
+ msgstr "Endre %s"
7215
+
7216
+ #: src/Tribe/Main.php:4684 src/Tribe/Main.php:4741
7217
+ msgid "Use Saved %s:"
7218
+ msgstr "Bruk lagra %s:"
7219
+
7220
+ #: src/Tribe/Main.php:953
7221
+ msgid " ask the site administrator set a different Events URL slug."
7222
+ msgstr ""
7223
+
7224
+ #: src/Tribe/Main.php:947
7225
+ msgid "Ask the site administrator to edit the %s slug"
7226
+ msgstr ""
7227
+
7228
+ #: src/deprecated/Tribe__Events__Activation_Page.php:215
7229
+ msgid "Thanks for Updating The Events Calendar"
7230
+ msgstr ""
7231
+
7232
+ #: src/Tribe/Main.php:812 src/Tribe/Main.php:814
7233
+ #: src/deprecated/Tribe__Events__Activation_Page.php:195
7234
+ msgid "Welcome to The Events Calendar"
7235
+ msgstr ""
7236
+
7237
+ #: common/src/Tribe/Admin/Activation_Page.php:85
7238
+ #: src/deprecated/Tribe__Events__Activation_Page.php:49
7239
+ msgid "Return to WordPress Updates"
7240
+ msgstr ""
7241
+
7242
+ #: common/src/Tribe/Admin/Activation_Page.php:85
7243
+ #: src/deprecated/Tribe__Events__Activation_Page.php:49
7244
+ msgid "Go to WordPress Updates page"
7245
+ msgstr ""
7246
+
7247
+ #: common/src/Tribe/Admin/Activation_Page.php:77
7248
+ #: src/deprecated/Tribe__Events__Activation_Page.php:41
7249
+ msgid "Return to Plugins page"
7250
+ msgstr "Gå tilbake til Utvidelser"
7251
+
7252
+ #: common/src/Tribe/Admin/Activation_Page.php:77
7253
+ #: src/deprecated/Tribe__Events__Activation_Page.php:41
7254
+ msgid "Go to plugins page"
7255
+ msgstr "Gå til Utvidelser"
7256
+
7257
+ #: common/src/Tribe/View_Helpers.php:43 src/Tribe/Venue.php:274
7258
+ #: src/functions/template-tags/venue.php:379
7259
+ msgid "United States"
7260
+ msgstr "USA"
7261
+
7262
+ #: src/Tribe/Venue.php:315
7263
+ msgid "Unnamed Venue"
7264
+ msgstr "Stad ikkje namngitt"
lang/the-events-calendar-pt_PT.mo CHANGED
Binary file
lang/the-events-calendar-pt_PT.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-10-01 00:05:22+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -2227,12 +2227,12 @@ msgstr "Eliminar &#8220;%s&#8221; permanentemente"
2227
 
2228
  #: src/Tribe/Ignored_Events.php:419
2229
  msgid "Restore"
2230
- msgstr "Restaurar"
2231
 
2232
  #. translators: %s: post title
2233
  #: src/Tribe/Ignored_Events.php:418
2234
  msgid "Restore &#8220;%s&#8221; from the Ignored"
2235
- msgstr "Restaurar &#8220;%s&#8221; dos ignorados"
2236
 
2237
  #: src/Tribe/Ignored_Events.php:333 src/Tribe/Ignored_Events.php:335
2238
  #: src/admin-views/aggregator/meta-box.php:5
@@ -2254,16 +2254,16 @@ msgstr "Origem"
2254
  #: src/Tribe/Ignored_Events.php:275
2255
  msgid "%s post restored."
2256
  msgid_plural "%s posts restored."
2257
- msgstr[0] "%s conteúdo restaurado."
2258
- msgstr[1] "%s conteúdos restaurados."
2259
 
2260
  #: src/Tribe/Ignored_Events.php:223 src/Tribe/Ignored_Events.php:267
2261
  msgid "Error restoring from Ignored Events."
2262
- msgstr "Ocorreu um erro ao restaurar dos eventos ignorados."
2263
 
2264
  #: src/Tribe/Ignored_Events.php:219 src/Tribe/Ignored_Events.php:261
2265
  msgid "You do not have permission to restore this post."
2266
- msgstr "Não tem permissão para restaurar este conteúdo."
2267
 
2268
  #: src/Tribe/Ignored_Events.php:165
2269
  msgid "Migrate Legacy Ignored Events"
@@ -6717,7 +6717,7 @@ msgstr "%s publicado."
6717
  #. translators: %s: date and time of the revision
6718
  #: src/Tribe/Main.php:1816
6719
  msgid "%s restored to revision from %s"
6720
- msgstr "%s restaurado para revisão de %s"
6721
 
6722
  #. translators: Publish box date format, see http://php.net/date
6723
  #: src/Tribe/Main.php:1776 src/Tribe/Main.php:1804 src/Tribe/Main.php:1824
@@ -6731,7 +6731,7 @@ msgstr "%s guardado."
6731
  #. translators: %s: date and time of the revision
6732
  #: src/Tribe/Main.php:1759 src/Tribe/Main.php:1796
6733
  msgid "%1$s restored to revision from %2$s"
6734
- msgstr "%1$s restaurado para revisão de %2$s"
6735
 
6736
  #: src/Tribe/Main.php:1757 src/Tribe/Main.php:1791 src/Tribe/Main.php:1794
6737
  #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1814
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-12-05 22:40:01+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
2227
 
2228
  #: src/Tribe/Ignored_Events.php:419
2229
  msgid "Restore"
2230
+ msgstr "Repor"
2231
 
2232
  #. translators: %s: post title
2233
  #: src/Tribe/Ignored_Events.php:418
2234
  msgid "Restore &#8220;%s&#8221; from the Ignored"
2235
+ msgstr "Repor &#8220;%s&#8221; a partir dos ignorados"
2236
 
2237
  #: src/Tribe/Ignored_Events.php:333 src/Tribe/Ignored_Events.php:335
2238
  #: src/admin-views/aggregator/meta-box.php:5
2254
  #: src/Tribe/Ignored_Events.php:275
2255
  msgid "%s post restored."
2256
  msgid_plural "%s posts restored."
2257
+ msgstr[0] "%s conteúdo reposto."
2258
+ msgstr[1] "%s conteúdos repostos."
2259
 
2260
  #: src/Tribe/Ignored_Events.php:223 src/Tribe/Ignored_Events.php:267
2261
  msgid "Error restoring from Ignored Events."
2262
+ msgstr "Ocorreu um erro ao repor a partir dos eventos ignorados."
2263
 
2264
  #: src/Tribe/Ignored_Events.php:219 src/Tribe/Ignored_Events.php:261
2265
  msgid "You do not have permission to restore this post."
2266
+ msgstr "Não tem permissão para repor este conteúdo."
2267
 
2268
  #: src/Tribe/Ignored_Events.php:165
2269
  msgid "Migrate Legacy Ignored Events"
6717
  #. translators: %s: date and time of the revision
6718
  #: src/Tribe/Main.php:1816
6719
  msgid "%s restored to revision from %s"
6720
+ msgstr "%s reposto para revisão de %s"
6721
 
6722
  #. translators: Publish box date format, see http://php.net/date
6723
  #: src/Tribe/Main.php:1776 src/Tribe/Main.php:1804 src/Tribe/Main.php:1824
6731
  #. translators: %s: date and time of the revision
6732
  #: src/Tribe/Main.php:1759 src/Tribe/Main.php:1796
6733
  msgid "%1$s restored to revision from %2$s"
6734
+ msgstr "%1$s reposto para revisão de %2$s"
6735
 
6736
  #: src/Tribe/Main.php:1757 src/Tribe/Main.php:1791 src/Tribe/Main.php:1794
6737
  #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1814
lang/the-events-calendar-ro_RO.mo CHANGED
Binary file
lang/the-events-calendar-ro_RO.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-11-12 11:27:46+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -171,7 +171,7 @@ msgstr ""
171
 
172
  #: src/admin-views/aggregator/settings.php:410
173
  msgid "Import Event Settings"
174
- msgstr ""
175
 
176
  #: src/admin-views/aggregator/settings.php:400
177
  msgid "When importing from a website that uses The Events Calendar, the REST API will attempt to fetch events this far in the future. That website's hosting resources may impact the success of imports. Selecting a shorter time period may improve results."
@@ -7156,7 +7156,7 @@ msgstr "Tipul de câmp este incorect specificat"
7156
 
7157
  #: common/src/Tribe/Credits.php:31
7158
  msgid "This calendar is powered by The Events Calendar."
7159
- msgstr ""
7160
 
7161
  #: common/src/Tribe/Cost_Utils.php:108
7162
  msgid "Free"
@@ -7257,12 +7257,12 @@ msgstr ""
7257
 
7258
  #: src/deprecated/Tribe__Events__Activation_Page.php:215
7259
  msgid "Thanks for Updating The Events Calendar"
7260
- msgstr ""
7261
 
7262
  #: src/Tribe/Main.php:812 src/Tribe/Main.php:814
7263
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
7264
  msgid "Welcome to The Events Calendar"
7265
- msgstr ""
7266
 
7267
  #: common/src/Tribe/Admin/Activation_Page.php:85
7268
  #: src/deprecated/Tribe__Events__Activation_Page.php:49
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-12-05 23:14:08+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
171
 
172
  #: src/admin-views/aggregator/settings.php:410
173
  msgid "Import Event Settings"
174
+ msgstr "Importă setări eveniment "
175
 
176
  #: src/admin-views/aggregator/settings.php:400
177
  msgid "When importing from a website that uses The Events Calendar, the REST API will attempt to fetch events this far in the future. That website's hosting resources may impact the success of imports. Selecting a shorter time period may improve results."
7156
 
7157
  #: common/src/Tribe/Credits.php:31
7158
  msgid "This calendar is powered by The Events Calendar."
7159
+ msgstr "Acest calendar este propulsat de The Events Calendar."
7160
 
7161
  #: common/src/Tribe/Cost_Utils.php:108
7162
  msgid "Free"
7257
 
7258
  #: src/deprecated/Tribe__Events__Activation_Page.php:215
7259
  msgid "Thanks for Updating The Events Calendar"
7260
+ msgstr "Îți mulțumim pentru actualizarea The Events Calendar"
7261
 
7262
  #: src/Tribe/Main.php:812 src/Tribe/Main.php:814
7263
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
7264
  msgid "Welcome to The Events Calendar"
7265
+ msgstr "Bine ai venit la The Events Calendar"
7266
 
7267
  #: common/src/Tribe/Admin/Activation_Page.php:85
7268
  #: src/deprecated/Tribe__Events__Activation_Page.php:49
readme.txt CHANGED
@@ -4,8 +4,8 @@ Contributors: ModernTribe, borkweb, aguseo, barry.hughes, bordoni, brianjessee,
4
  Tags: events, calendar, event, venue, organizer, dates, date, google maps, conference, workshop, concert, meeting, seminar, summit, class, modern tribe, tribe, widget
5
  Donate link: http://m.tri.be/29
6
  Requires at least: 4.5
7
- Stable tag: 4.6.6
8
- Tested up to: 4.9
9
  Requires PHP: 5.2.4
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -308,12 +308,20 @@ The plugin is made with love by [Modern Tribe Inc](http://m.tri.be/2s).
308
 
309
  == Changelog ==
310
 
 
 
 
 
 
 
 
 
311
  = [4.6.6] 2017-11-21 =
312
 
313
  * Feature - Added Template class which adds a few layers of filtering to any template file included
314
- * Tweak - Add clear warnings and errors to prevent and limit the import of iCalendar sources missing required fields [93600]
315
  * Tweak - Included `tribe_callback_return` for static returns for Hooks
316
- * Tweak - Improve Aggregator notices including error data on the responses [87326]
317
  * Language - 4 new strings added, 79 updated, 0 fuzzied, and 0 obsoleted
318
 
319
  = [4.6.5] 2017-11-16 =
4
  Tags: events, calendar, event, venue, organizer, dates, date, google maps, conference, workshop, concert, meeting, seminar, summit, class, modern tribe, tribe, widget
5
  Donate link: http://m.tri.be/29
6
  Requires at least: 4.5
7
+ Stable tag: 4.6.7
8
+ Tested up to: 4.9.1
9
  Requires PHP: 5.2.4
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
308
 
309
  == Changelog ==
310
 
311
+ = [4.6.7] 2017-12-07 =
312
+
313
+ * Fix - Fixed an issue where EA imports might not correctly create venues for iCalendar imports (thanks @starweb and others for highlighting this issue) [94323]
314
+ * Fix - Fixed an issue where Month View wouldn't render correctly in X Theme with the "Events template" option set to "Default Page Template" [92554]
315
+ * Fix - Fixed a WPML incompatibility issue where language could be switched to the wrong one (thanks @dgwatkins) [94732]
316
+ * Tweak - Added the `tribe_events_x_theme_force_full_content()` filter to let users disable X Theme compatibility code [92554]
317
+ * Language - 0 new strings added, 2 updated, 0 fuzzied, and 0 obsoleted
318
+
319
  = [4.6.6] 2017-11-21 =
320
 
321
  * Feature - Added Template class which adds a few layers of filtering to any template file included
322
+ * Tweak - Added clear warnings and errors to prevent and limit the import of iCalendar sources missing required fields [93600]
323
  * Tweak - Included `tribe_callback_return` for static returns for Hooks
324
+ * Tweak - Improved Aggregator notices including error data on the responses [87326]
325
  * Language - 4 new strings added, 79 updated, 0 fuzzied, and 0 obsoleted
326
 
327
  = [4.6.5] 2017-11-16 =
src/Tribe/Aggregator/Record/Abstract.php CHANGED
@@ -1396,7 +1396,7 @@ abstract class Tribe__Events__Aggregator__Record__Abstract {
1396
  if ( ! empty( $event['Venue']['Venue'] ) ) {
1397
  $event['Venue']['Venue'] = trim( $event['Venue']['Venue'] );
1398
 
1399
- if ( ! empty( $item->venue->global_id ) || in_array( $this->origin, array( 'ics', 'csv', 'gcal' ) ) ) {
1400
  // Pre-set for ICS based imports
1401
  $venue = false;
1402
  if ( ! empty( $item->venue->global_id ) ) {
@@ -2214,7 +2214,7 @@ abstract class Tribe__Events__Aggregator__Record__Abstract {
2214
  * Note this is a passive check: if the meta is not set or set to `false` we assume the import
2215
  * should not be queued on EA Service.
2216
  *
2217
- * @since TBD
2218
  *
2219
  * @param bool $should_queue_import If a value is provided here then the `should_queue_import` meta will
2220
  * be set to the boolean representation of that value.
1396
  if ( ! empty( $event['Venue']['Venue'] ) ) {
1397
  $event['Venue']['Venue'] = trim( $event['Venue']['Venue'] );
1398
 
1399
+ if ( ! empty( $item->venue->global_id ) || in_array( $this->origin, array( 'ics', 'csv', 'gcal', 'ical' ) ) ) {
1400
  // Pre-set for ICS based imports
1401
  $venue = false;
1402
  if ( ! empty( $item->venue->global_id ) ) {
2214
  * Note this is a passive check: if the meta is not set or set to `false` we assume the import
2215
  * should not be queued on EA Service.
2216
  *
2217
+ * @since 4.6.2
2218
  *
2219
  * @param bool $should_queue_import If a value is provided here then the `should_queue_import` meta will
2220
  * be set to the boolean representation of that value.
src/Tribe/Aggregator/Record/Facebook.php CHANGED
@@ -20,8 +20,20 @@ class Tribe__Events__Aggregator__Record__Facebook extends Tribe__Events__Aggrega
20
  return parent::queue_import( $args );
21
  }
22
 
 
 
 
 
 
 
 
23
  public static function get_auth_url( $args = array() ) {
24
  $service = tribe( 'events-aggregator.service' );
 
 
 
 
 
25
  $url = $service->api()->domain . 'facebook/' . $service->api()->key;
26
  $defaults = array(
27
  'referral' => urlencode( home_url() ),
20
  return parent::queue_import( $args );
21
  }
22
 
23
+ /**
24
+ * Returns the Facebook authorization token generation URL.
25
+ *
26
+ * @param array $args
27
+ *
28
+ * @return string Either the URL to obtain FB authorization token or an empty string.
29
+ */
30
  public static function get_auth_url( $args = array() ) {
31
  $service = tribe( 'events-aggregator.service' );
32
+
33
+ if ( $service->api() instanceof WP_Error ) {
34
+ return '';
35
+ }
36
+
37
  $url = $service->api()->domain . 'facebook/' . $service->api()->key;
38
  $defaults = array(
39
  'referral' => urlencode( home_url() ),
src/Tribe/Integrations/WPML/Linked_Posts.php CHANGED
@@ -203,7 +203,7 @@ class Tribe__Events__Integrations__WPML__Linked_Posts {
203
 
204
  $posts = $query->have_posts() ? $query->posts : array();
205
 
206
- $sitepress->switch_lang( $sitepress->get_current_language() );
207
 
208
  $not_translated = array_filter( $posts, array( $this, 'is_not_translated' ) );
209
  $assigned = $this->get_linked_post_assigned_to_current( $args );
203
 
204
  $posts = $query->have_posts() ? $query->posts : array();
205
 
206
+ $sitepress->switch_lang( ICL_LANGUAGE_CODE );
207
 
208
  $not_translated = array_filter( $posts, array( $this, 'is_not_translated' ) );
209
  $assigned = $this->get_linked_post_assigned_to_current( $args );
src/Tribe/Integrations/X_Theme/X_Theme.php CHANGED
@@ -30,11 +30,50 @@ class Tribe__Events__Integrations__X_Theme__X_Theme {
30
  * Hooks the filters and actions neede for this integration to work.
31
  */
32
  public function hook() {
33
- if ( function_exists( 'x_force_template_override' ) ) {
34
- add_filter(
35
- 'template_include', array( $this, 'filter_template_include' )
36
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  }
 
 
38
  }
39
 
40
  /**
@@ -46,16 +85,29 @@ class Tribe__Events__Integrations__X_Theme__X_Theme {
46
  * @return string $template
47
  */
48
  public function filter_template_include( $template ) {
49
- /** @var WP_Query $wp_query */
50
- global $wp_query;
51
 
52
- if ( $wp_query->is_main_query()
53
- && empty( $wp_query->tribe_is_multi_posttype )
54
- && ! empty( $wp_query->tribe_is_event_query )
55
- ) {
56
  remove_filter( 'template_include', 'x_force_template_override', 99 );
57
  }
58
 
59
  return $template;
60
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  }
30
  * Hooks the filters and actions neede for this integration to work.
31
  */
32
  public function hook() {
33
+ add_filter( 'template_include', array( $this, 'filter_template_include' ) );
34
+ add_filter( 'x_get_view', array( $this, 'force_full_content' ), 10, 4 );
35
+ }
36
+
37
+ /**
38
+ * Tries to "catch" the loading of X theme content templates that render a highly-filtered
39
+ * excerpt view instead of full content, which often ruins the display of our Month View etc.
40
+ *
41
+ * @since 4.6.2
42
+ * @see x_get_view()
43
+ *
44
+ * @return array $view An array of X-theme view data with the template file and render options.
45
+ */
46
+ public function force_full_content( $view, $directory, $file_base, $file_extension ) {
47
+
48
+ // Let users disable this forceful override behavior if they'd like.
49
+ if ( ! apply_filters( 'tribe_events_x_theme_force_full_content', true ) ) {
50
+ return $view;
51
+ }
52
+
53
+ // Don't proceed if we're not on a main Tribe view or if $view isn't fully fleshed-out.
54
+ if ( ! $this->should_run_tribe_overrides() || ! is_array( $view ) ) {
55
+ return $view;
56
+ }
57
+
58
+ // Don't proceed if we're not dealing with an X-theme view that doesn't have these params.
59
+ if ( ! isset( $view['base'] ) || ! isset( $view['extension'] ) ) {
60
+ return $view;
61
+ }
62
+
63
+ // Only interrupt the normal process if we're dealing with an excerpted "content" template.
64
+ if (
65
+ 'framework/views/global/_content' === $view['base']
66
+ && 'the-excerpt' === $view['extension']
67
+ ) {
68
+ remove_filter( 'x_get_view', array( $this, 'force_full_content' ), 10, 4 );
69
+
70
+ // Grab the global "content" template with full content.
71
+ $view = x_get_view( 'global', '_content', 'the-content' );
72
+
73
+ add_filter( 'x_get_view', array( $this, 'force_full_content' ), 10, 4 );
74
  }
75
+
76
+ return $view;
77
  }
78
 
79
  /**
85
  * @return string $template
86
  */
87
  public function filter_template_include( $template ) {
 
 
88
 
89
+ if ( $this->should_run_tribe_overrides() ) {
 
 
 
90
  remove_filter( 'template_include', 'x_force_template_override', 99 );
91
  }
92
 
93
  return $template;
94
  }
95
+
96
+ /**
97
+ * Checks if we're in a "main" calendar view, like Month View etc., where we want to apply our
98
+ * various integration filters and overrides.
99
+ *
100
+ * @since 4.6.2
101
+ *
102
+ * @return boolean
103
+ */
104
+ public function should_run_tribe_overrides() {
105
+
106
+ /** @var WP_Query $wp_query */
107
+ global $wp_query;
108
+
109
+ return $wp_query->is_main_query()
110
+ && empty( $wp_query->tribe_is_multi_posttype )
111
+ && ! empty( $wp_query->tribe_is_event_query );
112
+ }
113
  }
src/Tribe/Main.php CHANGED
@@ -32,9 +32,9 @@ if ( ! class_exists( 'Tribe__Events__Main' ) ) {
32
  const VENUE_POST_TYPE = 'tribe_venue';
33
  const ORGANIZER_POST_TYPE = 'tribe_organizer';
34
 
35
- const VERSION = '4.6.6';
36
  const MIN_ADDON_VERSION = '4.4';
37
- const MIN_COMMON_VERSION = '4.7.2';
38
 
39
  const WP_PLUGIN_URL = 'https://wordpress.org/extend/plugins/the-events-calendar/';
40
 
32
  const VENUE_POST_TYPE = 'tribe_venue';
33
  const ORGANIZER_POST_TYPE = 'tribe_organizer';
34
 
35
+ const VERSION = '4.6.7';
36
  const MIN_ADDON_VERSION = '4.4';
37
+ const MIN_COMMON_VERSION = '4.7.3';
38
 
39
  const WP_PLUGIN_URL = 'https://wordpress.org/extend/plugins/the-events-calendar/';
40
 
src/resources/css/admin-menu.css CHANGED
@@ -12,17 +12,17 @@
12
  * This has to be loaded on all pages
13
  */
14
 
15
- #wpadminbar .ab-group-container > .ab-submenu {
16
 
17
  padding: 0;
18
  }
19
 
20
- #wpadminbar #wp-admin-bar-tribe-events-group {
21
 
22
  padding-bottom: 0;
23
  }
24
 
25
- #wpadminbar #wp-admin-bar-tribe-events-settings-group {
26
 
27
  padding-top: 0;
28
  }
12
  * This has to be loaded on all pages
13
  */
14
 
15
+ #wpadminbar #wp-admin-bar-tribe-events .ab-group-container > .ab-submenu {
16
 
17
  padding: 0;
18
  }
19
 
20
+ #wpadminbar #wp-admin-bar-tribe-events #wp-admin-bar-tribe-events-group {
21
 
22
  padding-bottom: 0;
23
  }
24
 
25
+ #wpadminbar #wp-admin-bar-tribe-events #wp-admin-bar-tribe-events-settings-group {
26
 
27
  padding-top: 0;
28
  }
src/resources/css/admin-menu.min.css CHANGED
@@ -1 +1 @@
1
- #wpadminbar .ab-group-container>.ab-submenu{padding:0}#wpadminbar #wp-admin-bar-tribe-events-group{padding-bottom:0}#wpadminbar #wp-admin-bar-tribe-events-settings-group{padding-top:0}
1
+ #wpadminbar #wp-admin-bar-tribe-events .ab-group-container>.ab-submenu{padding:0}#wpadminbar #wp-admin-bar-tribe-events #wp-admin-bar-tribe-events-group{padding-bottom:0}#wpadminbar #wp-admin-bar-tribe-events #wp-admin-bar-tribe-events-settings-group{padding-top:0}
src/resources/postcss/admin-menu.pcss CHANGED
@@ -2,7 +2,7 @@
2
  * This has to be loaded on all pages
3
  */
4
 
5
- #wpadminbar {
6
  .ab-group-container > .ab-submenu {
7
  padding: 0;
8
  }
2
  * This has to be loaded on all pages
3
  */
4
 
5
+ #wpadminbar #wp-admin-bar-tribe-events {
6
  .ab-group-container > .ab-submenu {
7
  padding: 0;
8
  }
the-events-calendar.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: The Events Calendar
4
  Description: The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome.
5
- Version: 4.6.6
6
  Author: Modern Tribe, Inc.
7
  Author URI: http://m.tri.be/1x
8
  Text Domain: the-events-calendar
2
  /*
3
  Plugin Name: The Events Calendar
4
  Description: The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome.
5
+ Version: 4.6.7
6
  Author: Modern Tribe, Inc.
7
  Author URI: http://m.tri.be/1x
8
  Text Domain: the-events-calendar