All-in-One Event Calendar - Version 2.3.11

Version Description

Download this release

Release Info

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

Code changes from version 2.3.10 to 2.3.11

Files changed (46) hide show
  1. all-in-one-event-calendar.php +2 -2
  2. app/config/constants.php +2 -2
  3. app/controller/front.php +4 -0
  4. app/model/api/api-abstract.php +299 -0
  5. app/model/api/api-feeds.php +53 -0
  6. app/model/api/api-registration.php +70 -0
  7. app/model/{api.php → api/api-ticketing.php} +139 -378
  8. app/model/event/creating.php +8 -4
  9. app/model/event/trashing.php +3 -3
  10. app/model/settings.php +6 -2
  11. app/view/admin/add-new-event.php +1 -1
  12. app/view/admin/all-events.php +5 -5
  13. app/view/admin/get-repeat-box.php +2 -2
  14. app/view/admin/settings.php +1 -1
  15. app/view/admin/tickets.php +1 -1
  16. app/view/calendar/page.php +12 -11
  17. app/view/calendar/subscribe-button.php +1 -0
  18. app/view/event/avatar.php +49 -0
  19. app/view/event/single.php +36 -3
  20. language/all-in-one-event-calendar-bg.mo +0 -0
  21. language/all-in-one-event-calendar-bg.po +0 -3007
  22. language/all-in-one-event-calendar-cs.mo +0 -0
  23. language/all-in-one-event-calendar-cs.po +0 -3003
  24. language/all-in-one-event-calendar-cs_CZ.mo +0 -0
  25. language/all-in-one-event-calendar-cs_CZ.po +44 -40
  26. language/all-in-one-event-calendar-da.mo +0 -0
  27. language/all-in-one-event-calendar-da.po +0 -3020
  28. language/all-in-one-event-calendar-da_DK.mo +0 -0
  29. language/all-in-one-event-calendar-da_DK.po +135 -135
  30. language/all-in-one-event-calendar-de.mo +0 -0
  31. language/all-in-one-event-calendar-de_CH.mo +0 -0
  32. language/{all-in-one-event-calendar-de.po → all-in-one-event-calendar-de_CH.po} +237 -237
  33. language/all-in-one-event-calendar-de_DE.mo +0 -0
  34. language/all-in-one-event-calendar-de_DE.po +58 -58
  35. language/all-in-one-event-calendar-en-au.mo +0 -0
  36. language/all-in-one-event-calendar-en-au.po +0 -3020
  37. language/all-in-one-event-calendar-en-gb.mo +0 -0
  38. language/all-in-one-event-calendar-en-gb.po +0 -3020
  39. language/all-in-one-event-calendar-es.mo +0 -0
  40. language/all-in-one-event-calendar-es.po +0 -3020
  41. language/all-in-one-event-calendar-fr.mo +0 -0
  42. language/all-in-one-event-calendar-fr.po +0 -3015
  43. language/all-in-one-event-calendar-he.mo +0 -0
  44. language/all-in-one-event-calendar-he.po +0 -3000
  45. language/all-in-one-event-calendar-hu.mo +0 -0
  46. language/all-in-one-event-calendar-hu.po +0 -2528
all-in-one-event-calendar.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
  /**
3
  * Plugin Name: All-in-One Event Calendar by Time.ly
4
- * Plugin URI: http://time.ly/
5
  * Description: A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
6
  * Author: Time.ly Network Inc.
7
  * Author URI: http://time.ly/
8
- * Version: 2.3.10
9
  * Text Domain: all-in-one-event-calendar
10
  * Domain Path: /language
11
  */
1
  <?php
2
  /**
3
  * Plugin Name: All-in-One Event Calendar by Time.ly
4
+ * Plugin URI: http://wordpress.org/plugins/all-in-one-event-calendar/
5
  * Description: A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
6
  * Author: Time.ly Network Inc.
7
  * Author URI: http://time.ly/
8
+ * Version: 2.3.11
9
  * Text Domain: all-in-one-event-calendar
10
  * Domain Path: /language
11
  */
app/config/constants.php CHANGED
@@ -50,7 +50,7 @@ function ai1ec_initiate_constants( $ai1ec_base_dir, $ai1ec_base_url ) {
50
  // = Plugin Version =
51
  // ==================
52
  if ( ! defined( 'AI1EC_VERSION' ) ) {
53
- define( 'AI1EC_VERSION', '2.3.10' );
54
  }
55
 
56
  // ================
@@ -147,7 +147,7 @@ function ai1ec_initiate_constants( $ai1ec_base_dir, $ai1ec_base_url ) {
147
  if ( ! defined( 'AI1EC_TWIG_CACHE_PATH' ) ) {
148
  define(
149
  'AI1EC_TWIG_CACHE_PATH',
150
- AI1EC_CACHE_PATH . DIRECTORY_SEPARATOR . 'twig' .
151
  DIRECTORY_SEPARATOR
152
  );
153
  }
50
  // = Plugin Version =
51
  // ==================
52
  if ( ! defined( 'AI1EC_VERSION' ) ) {
53
+ define( 'AI1EC_VERSION', '2.3.11' );
54
  }
55
 
56
  // ================
147
  if ( ! defined( 'AI1EC_TWIG_CACHE_PATH' ) ) {
148
  define(
149
  'AI1EC_TWIG_CACHE_PATH',
150
+ AI1EC_CACHE_PATH . 'twig' .
151
  DIRECTORY_SEPARATOR
152
  );
153
  }
app/controller/front.php CHANGED
@@ -880,6 +880,10 @@ class Ai1ec_Front_Controller {
880
  'send_headers',
881
  array( 'request.redirect', 'handle_categories_and_tags' )
882
  );
 
 
 
 
883
  }
884
  }
885
  /**
880
  'send_headers',
881
  array( 'request.redirect', 'handle_categories_and_tags' )
882
  );
883
+ $dispatcher->register_action(
884
+ 'wp_head',
885
+ array( 'view.event.single', 'add_meta_tags' )
886
+ );
887
  }
888
  }
889
  /**
app/model/api/api-abstract.php ADDED
@@ -0,0 +1,299 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Common class for Timely API communication.
5
+ *
6
+ * @author Time.ly Network, Inc.
7
+ * @since 2.4
8
+ * @package Ai1EC
9
+ * @subpackage Ai1EC.Model
10
+ */
11
+ abstract class Ai1ec_Api_Abstract extends Ai1ec_App {
12
+
13
+ const DEFAULT_TIMEOUT = 30; //30 seconds (Wordpress default is 5)
14
+
15
+ protected $_settings;
16
+
17
+ /**
18
+ * Post construction routine.
19
+ *
20
+ * Override this method to perform post-construction tasks.
21
+ *
22
+ * @return void Return from this method is ignored.
23
+ */
24
+ protected function _initialize() {
25
+ $this->_settings = $this->_registry->get( 'model.settings' );
26
+ }
27
+
28
+ /**
29
+ * Get the header array with authorization token
30
+ */
31
+ protected function _get_headers( $custom_headers = null ) {
32
+ $headers = array(
33
+ 'content-type' => 'application/json'
34
+ );
35
+ $headers['Authorization'] = 'Basic ' . $this->_settings->get( 'ticketing_token' );
36
+ if ( null !== $custom_headers ) {
37
+ foreach ( $custom_headers as $key => $value ) {
38
+ if ( null === $value ) {
39
+ unset( $headers[$key] );
40
+ } else {
41
+ $headers[$key] = $value;
42
+ }
43
+ }
44
+ }
45
+ return $headers;
46
+ }
47
+
48
+ /**
49
+ * Create a standarized message to return
50
+ * 1) If the API respond with http code 400 and with a JSON body, so, we will consider the API message to append in the base message.
51
+ * 2) If the API does not responde with http code 400 or does not have a valid a JSON body, we will show the API URL and the http message error.
52
+ */
53
+ protected function _transform_error_message( $base_message, $response, $url, $ask_for_reload = false ) {
54
+ $http_response_code = wp_remote_retrieve_response_code( $response );
55
+ $api_error = $this->get_api_error_msg( $response );
56
+ $result = null;
57
+ if ( false === ai1ec_is_blank( $api_error ) ) {
58
+ $result = sprintf(
59
+ __( '%s.<br/>Detail: %s.', AI1EC_PLUGIN_NAME ),
60
+ $base_message, $api_error
61
+ );
62
+ } else {
63
+ $error_message = sprintf(
64
+ __( 'API URL: %s.<br/>Detail: %s - %s', AI1EC_PLUGIN_NAME ),
65
+ $url,
66
+ wp_remote_retrieve_response_code( $response ),
67
+ wp_remote_retrieve_response_message( $response )
68
+ );
69
+ $mailto = '<a href="mailto:labs@time.ly" target="_top">labs@time.ly</a>';
70
+ if ( true === $ask_for_reload ) {
71
+ $result = sprintf(
72
+ __( '%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s.', AI1EC_PLUGIN_NAME ),
73
+ $base_message,
74
+ $mailto,
75
+ $error_message
76
+ );
77
+ } else {
78
+ $result = sprintf(
79
+ __( '%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s.', AI1EC_PLUGIN_NAME ),
80
+ $base_message,
81
+ $mailto,
82
+ $error_message
83
+ );
84
+ }
85
+ }
86
+ $result = trim( $result );
87
+ $result = str_replace( '..', '.', $result );
88
+ $result = str_replace( '.,', '.', $result );
89
+ return $result;
90
+ }
91
+
92
+
93
+ /**
94
+ * Search for the API message error
95
+ */
96
+ public function get_api_error_msg( $response ) {
97
+ if ( isset( $response ) && false === is_wp_error( $response ) ) {
98
+ $response_body = json_decode( $response['body'], true );
99
+ if ( json_last_error() === JSON_ERROR_NONE &&
100
+ isset( $response_body ) &&
101
+ isset( $response_body['errors'] ) ) {
102
+ $errors = $response_body['errors'];
103
+ if ( false === is_array( $errors )) {
104
+ $errors = array( $errors );
105
+ }
106
+ $messages = null;
107
+ foreach ($errors as $key => $value) {
108
+ if ( false === ai1ec_is_blank( $value ) ) {
109
+ if ( is_array( $value ) ) {
110
+ $value = implode ( ', ', $value );
111
+ }
112
+ $messages[] = $value;
113
+ }
114
+ }
115
+ if ( null !== $messages && false === empty( $messages ) ) {
116
+ return implode ( ', ', $messages);
117
+ }
118
+ }
119
+ }
120
+ return null;
121
+ }
122
+
123
+ /**
124
+ * Get the ticket calendar from settings, if the calendar does not exists in
125
+ * settings, then we will try to find on the API
126
+ * @return string JSON.
127
+ */
128
+ protected function _get_ticket_calendar() {
129
+ $ticketing_calendar_id = $this->_settings->get( 'ticketing_calendar_id' );
130
+ if ( isset( $ticketing_calendar_id ) && 0 < $ticketing_calendar_id ) {
131
+ return $ticketing_calendar_id;
132
+ } else {
133
+ //if the calendar is not saved on settings it should exists on API
134
+ $ticketing_calendar_id = $this->_find_user_calendar();
135
+ if ( 0 < $ticketing_calendar_id ) {
136
+ $this->_settings->set( 'ticketing_calendar_id', $ticketing_calendar_id );
137
+ return $ticketing_calendar_id;
138
+ } else {
139
+ //if the calendar should not exist on API, we will created
140
+ $ticketing_calendar_id = $this->_create_calendar();
141
+ if ( 0 < $ticketing_calendar_id ) {
142
+ $this->_settings->set( 'ticketing_calendar_id', $ticketing_calendar_id );
143
+ } else {
144
+ return 0;
145
+ }
146
+ }
147
+ }
148
+ }
149
+
150
+ /**
151
+ * Find the existent calendar when the user is signing in
152
+ */
153
+ protected function _find_user_calendar() {
154
+ $body = array(
155
+ 'title' => get_bloginfo( 'name' )
156
+ );
157
+ $response = $this->request_api( 'GET', AI1EC_API_URL . 'calendars',
158
+ json_encode( $body )
159
+ );
160
+ if ( $this->is_response_success( $response ) ) {
161
+ if ( is_array( $response->body ) ) {
162
+ return $response->body[0]->id;
163
+ } else {
164
+ return $response->body->id;
165
+ }
166
+ } else {
167
+ return 0;
168
+ }
169
+ }
170
+
171
+ /**
172
+ * Create a calendar when the user is signup
173
+ */
174
+ protected function _create_calendar() {
175
+ $body = array(
176
+ 'title' => get_bloginfo( 'name' ),
177
+ 'url' => ai1ec_site_url(),
178
+ 'timezone' => $this->_settings->get( 'timezone_string' )
179
+ );
180
+ $response = $this->request_api( 'POST', AI1EC_API_URL . 'calendars',
181
+ json_encode( $body )
182
+ );
183
+ if ( $this->is_response_success( $response ) ) {
184
+ return $response->body->id;
185
+ } else {
186
+ return 0;
187
+ }
188
+ }
189
+
190
+ /**
191
+ * Check if the current WP instance is signed into the API
192
+ */
193
+ public function is_signed() {
194
+ return true === $this->_settings->get( 'ticketing_enabled' );
195
+ }
196
+
197
+ /**
198
+ * Get the last message return by Signup or Signup process
199
+ */
200
+ public function get_sign_message() {
201
+ return $this->_settings->get( 'ticketing_message' );
202
+ }
203
+
204
+ /**
205
+ * Clear the last message return by Signup or Signup process
206
+ */
207
+ public function clear_sign_message() {
208
+ return $this->_settings->set( 'ticketing_message', '' );
209
+ }
210
+
211
+ protected function _save_settings( $message, $enabled, $token, $calendar_id ) {
212
+ $this->_settings->set( 'ticketing_message' , $message );
213
+ $this->_settings->set( 'ticketing_enabled' , $enabled );
214
+ $this->_settings->set( 'ticketing_token' , $token );
215
+ $this->_settings->set( 'ticketing_calendar_id', $calendar_id );
216
+ }
217
+
218
+ /**
219
+ * Make the request to the API endpons
220
+ * @param $url The end part of the url to make the request.
221
+ * $body The body to send the message
222
+ * $method POST | GET | PUT, etc
223
+ * or send a customized message to be showed in case of error
224
+ * $decode_response_body TRUE (default) to decode the body response
225
+ * @return stdClass with the the fields:
226
+ * is_error TRUE or FALSE
227
+ * error in case of is_error be true
228
+ * body in case of is_error be false
229
+ */
230
+ protected function request_api( $method, $url, $body = null, $decode_response_body = true, $custom_headers = null ) {
231
+ $request = array(
232
+ 'method' => $method,
233
+ 'headers' => $this->_get_headers( $custom_headers ),
234
+ 'timeout' => self::DEFAULT_TIMEOUT
235
+ );
236
+ if ( ! is_null( $body ) ) {
237
+ $request[ 'body' ] = $body;
238
+ }
239
+ $response = wp_remote_request( $url, $request );
240
+ $result = new stdClass();
241
+ if ( is_wp_error( $response ) ) {
242
+ $result->is_error = true;
243
+ $result->error = $response->get_error_message();
244
+ } else {
245
+ $response_code = wp_remote_retrieve_response_code( $response );
246
+ if ( 200 === $response_code ) {
247
+ if ( true === $decode_response_body ) {
248
+ $result->body = json_decode( $response['body'] );
249
+ if ( JSON_ERROR_NONE === json_last_error() ) {
250
+ $result->is_error = false;
251
+ } else {
252
+ $result->is_error = true;
253
+ $result->raw = $response;
254
+ $result->error = __( 'Error decoding the response', AI1EC_PLUGIN_NAME );
255
+ unset( $result->body );
256
+ }
257
+ } else {
258
+ $result->is_error = false;
259
+ $result->body = $response['body'];
260
+ }
261
+ } else {
262
+ $result->is_error = true;
263
+ $result->error = wp_remote_retrieve_response_message( $response );
264
+ $result->raw = $response;
265
+ $result->url = $url;
266
+ }
267
+ }
268
+ return $result;
269
+ }
270
+
271
+ /**
272
+ * Save an error notification to be showed to the user on WP header of the page
273
+ * @param $response The response got from request_api method.
274
+ * $custom_error_message The custom message to show before the detailed message
275
+ * @return full error message
276
+ */
277
+ protected function save_error_notification( $response, $custom_error_response ) {
278
+ $error_message = $this->_transform_error_message(
279
+ $custom_error_response,
280
+ $response->raw,
281
+ $response->url,
282
+ true
283
+ );
284
+ $response->error_message = $error_message;
285
+ $notification = $this->_registry->get( 'notification.admin' );
286
+ $notification->store( $error_message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
287
+ return $error_message;
288
+ }
289
+
290
+ /**
291
+ * Useful method to check if the response of request_api is a successful message
292
+ */
293
+ public function is_response_success( $response ) {
294
+ return $response != null &&
295
+ isset( $response->is_error ) &&
296
+ false === $response->is_error;
297
+ }
298
+
299
+ }
app/model/api/api-feeds.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Class for Timely API communication related to Discover Events and Feeds.
5
+ *
6
+ * @author Time.ly Network, Inc.
7
+ * @since 2.4
8
+ * @package Ai1EC
9
+ * @subpackage Ai1EC.Model
10
+ */
11
+ class Ai1ec_Api_Feeds extends Ai1ec_Api_Abstract {
12
+
13
+ /**
14
+ * Post construction routine.
15
+ *
16
+ * Override this method to perform post-construction tasks.
17
+ *
18
+ * @return void Return from this method is ignored.
19
+ */
20
+ protected function _initialize() {
21
+ parent::_initialize();
22
+ }
23
+
24
+ /**
25
+ * That's currently a mock for getting a suggested events list.
26
+ * @return object Response body in JSON.
27
+ */
28
+ public function get_suggested_events( $page = 0, $max = 20 ) {
29
+ $calendar_id = $this->_get_ticket_calendar();
30
+ if ( 0 >= $calendar_id ) {
31
+ return null;
32
+ }
33
+ $request = array(
34
+ 'headers' => $this->_get_headers(),
35
+ 'timeout' => parent::DEFAULT_TIMEOUT
36
+ );
37
+ $url = AI1EC_API_URL . "calendars/$calendar_id/discover/events?page=$page&max=$max";
38
+ $response = wp_remote_get( $url, $request );
39
+ $response_code = wp_remote_retrieve_response_code( $response );
40
+ if ( 200 === $response_code ) {
41
+ $result = json_decode( $response['body'] );
42
+ return $result->data;
43
+ } else {
44
+ $error_message = $this->_transform_error_message(
45
+ __( 'We were unable to get the Suggested Events from Time.ly Network', AI1EC_PLUGIN_NAME )
46
+ , $response, $url, true );
47
+ $notification = $this->_registry->get( 'notification.admin' );
48
+ $notification->store( $error_message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
49
+ return array();
50
+ }
51
+ }
52
+
53
+ }
app/model/api/api-registration.php ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Class for Timely API communication for Registration.
5
+ *
6
+ * @author Time.ly Network, Inc.
7
+ * @since 2.4
8
+ * @package Ai1EC
9
+ * @subpackage Ai1EC.Model
10
+ */
11
+ class Ai1ec_Api_Registration extends Ai1ec_Api_Abstract {
12
+
13
+ /**
14
+ * Post construction routine.
15
+ *
16
+ * Override this method to perform post-construction tasks.
17
+ *
18
+ * @return void Return from this method is ignored.
19
+ */
20
+ protected function _initialize() {
21
+ parent::_initialize();
22
+ }
23
+
24
+ /**
25
+ * @return object Response body in JSON.
26
+ */
27
+ public function signin() {
28
+ $body['email'] = $_POST['ai1ec_email'];
29
+ $body['password'] = $_POST['ai1ec_password'];
30
+ $response = $this->request_api( 'POST', AI1EC_API_URL . 'auth/authenticate', json_encode( $body ), true, array( 'Authorization' => null ) );
31
+ if ( $this->is_response_success( $response ) ) {
32
+ $response_body = (array) $response->body;
33
+ $this->_save_settings( $response_body['message'], true, $response_body['auth_token'], $this->_find_user_calendar() );
34
+ } else {
35
+ $error_message = $this->save_error_notification( $response, __( 'We were unable to Sign you In for Time.ly Ticketing', AI1EC_PLUGIN_NAME ) );
36
+ $this->_save_settings( $error_message, false, '', 0 );
37
+ }
38
+ return $response;
39
+ }
40
+
41
+ /**
42
+ * @return object Response body in JSON.
43
+ */
44
+ public function signup() {
45
+ $body['name'] = $_POST['ai1ec_name'];
46
+ $body['email'] = $_POST['ai1ec_email'];
47
+ $body['password'] = $_POST['ai1ec_password'];
48
+ $body['password_confirmation'] = $_POST['ai1ec_password_confirmation'];
49
+ $body['phone'] = $_POST['ai1ec_phone'];
50
+ $body['terms'] = $_POST['ai1ec_terms'];
51
+ $response = $this->request_api( 'POST', AI1EC_API_URL . 'auth/register', json_encode( $body ), true );
52
+ if ( $this->is_response_success( $response ) ) {
53
+ $response_body = (array) $response->body;
54
+ $this->_save_settings( $response_body['Registration'], true, $response_body['auth_token'] , $this->_create_calendar() );
55
+ } else {
56
+ $error_message = $this->save_error_notification( $response, __( 'We were unable to Sign you Up for Time.ly Ticketing', AI1EC_PLUGIN_NAME ) );
57
+ $this->_save_settings( $error_message, false, '', 0 );
58
+ }
59
+ return $response;
60
+ }
61
+
62
+ /**
63
+ * Clean the ticketing settings on WP database only
64
+ */
65
+ public function signout() {
66
+ $this->_save_settings( '', false, '', 0 );
67
+ return array( 'message' => '');
68
+ }
69
+
70
+ }
app/model/{api.php → api/api-ticketing.php} RENAMED
@@ -1,32 +1,21 @@
1
  <?php
2
 
3
  /**
4
- * Class for Timely API communication.
5
  *
6
  * @author Time.ly Network, Inc.
7
  * @since 2.4
8
  * @package Ai1EC
9
  * @subpackage Ai1EC.Model
10
  */
11
- class Ai1ec_Api extends Ai1ec_App {
12
 
13
- const DEFAULT_TIMEOUT = 30; //30 seconds (Wordpress default is 5)
14
  const EVENT_ID_METADATA = '_ai1ec_api_event_id';
15
  const THUMBNAIL_ID_METADATA = '_ai1ec_thumbnail_id';
16
  const ICS_CHECKOUT_URL_METADATA = '_ai1ec_ics_checkout_url';
17
  const ICS_API_URL_METADATA = '_ai1ec_ics_api_url';
18
  const MAX_TICKET_TO_BUY_DEFAULT = 25;
19
 
20
- private $_get_ticket_types_error;
21
- private $_get_tickets_error;
22
- private $_sign_up_error;
23
- private $_sign_in_error;
24
- private $_update_event_error;
25
- private $_missing_tickets_error;
26
- private $_get_purchaes_error;
27
-
28
- private $_settings;
29
-
30
  /**
31
  * Post construction routine.
32
  *
@@ -35,36 +24,12 @@ class Ai1ec_Api extends Ai1ec_App {
35
  * @return void Return from this method is ignored.
36
  */
37
  protected function _initialize() {
38
- $this->_settings = $this->_registry->get( 'model.settings' );
39
-
40
- $this->_get_ticket_types_error = __( 'We were unable to get the Tickets Details from Time.ly Ticketing' , AI1EC_PLUGIN_NAME );
41
- $this->_get_tickets_error = __( 'We were unable to get the Tickets Attendees from Time.ly Ticketing' , AI1EC_PLUGIN_NAME );
42
- $this->_sign_up_error = __( 'We were unable to Sign you Up for Time.ly Ticketing' , AI1EC_PLUGIN_NAME );
43
- $this->_sign_in_error = __( 'We were unable to Sign you In for Time.ly Ticketing' , AI1EC_PLUGIN_NAME );
44
- $this->_create_event_error = __( 'We were unable to create the Event on Time.ly Ticketing' , AI1EC_PLUGIN_NAME );
45
- $this->_update_event_error = __( 'We were unable to update the Event on Time.ly Ticketing' , AI1EC_PLUGIN_NAME );
46
- $this->_missing_tickets_error = __( 'The event has the option Tickets selected but any ticket was added.' , AI1EC_PLUGIN_NAME );
47
- $this->_tickets_removed_error = __( 'We were unable to remove the Tickets from Time.ly Ticketing' , AI1EC_PLUGIN_NAME );
48
- $this->_tickets_imported_error = __( 'This Event was replicated from another site. Any changes on Tickets were discarded.', AI1EC_PLUGIN_NAME );
49
- $this->_save_pref_error = __( 'Payment preferences were not saved.' , AI1EC_PLUGIN_NAME );
50
- $this->_save_pref_success = __( 'Payment preferences were saved.' , AI1EC_PLUGIN_NAME );
51
- $this->_event_not_found_error = __( 'Event not found inside the database.' , AI1EC_PLUGIN_NAME );
52
- $this->_get_purchases_error = __( 'We were unable to get the Sales information from Time.ly Ticketing' , AI1EC_PLUGIN_NAME );
53
  }
54
 
55
  /**
56
- * Get the header array with authorization token
57
  */
58
- protected function _get_headers( $with_authorizaton = true ) {
59
- $headers = array(
60
- 'content-type' => 'application/json'
61
- );
62
- if ( true === $with_authorizaton ) {
63
- $headers['Authorization'] = 'Basic ' . $this->_settings->get( 'ticketing_token' );
64
- }
65
- return $headers;
66
- }
67
-
68
  private function _count_valid_tickets( $post_ticket_types ) {
69
  if (false === isset( $post_ticket_types ) || 0 === count( $post_ticket_types ) ) {
70
  return 0;
@@ -80,42 +45,77 @@ class Ai1ec_Api extends Ai1ec_App {
80
  }
81
 
82
  /**
83
- * Create or update a Ticket Event on API server
84
- * @return object Response body in JSON.
 
85
  */
86
- public function store_event( Ai1ec_Event $event, WP_Post $post ) {
87
-
 
 
 
 
 
 
 
88
  if ( isset( $_POST['ai1ec_tickets_loading_error'] ) ) {
89
  //do not update tickets because is unsafe. There was a problem to load the tickets,
90
  //the customer received the same message when the event was loaded.
91
  $notification = $this->_registry->get( 'notification.admin' );
92
  $notification->store( $_POST['ai1ec_tickets_loading_error'], 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
93
- return null;
94
  }
95
  if ( $this->is_ticket_event_imported( $event->get( 'post_id' ) ) ) {
96
  //prevent changes on Ticket Events that were imported
 
97
  $notification = $this->_registry->get( 'notification.admin' );
98
- $notification->store( $this->_tickets_imported_error, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
99
- return null;
100
- } else if ( false === ai1ec_is_blank( $event->get( 'ical_feed_url' ) ) ) {
 
 
 
 
 
 
101
  //prevent ticket creating inside Regular Events that were imported
 
102
  $notification = $this->_registry->get( 'notification.admin' );
103
- $notification->store( $this->_tickets_imported_error, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
104
- return null;
 
 
 
 
 
 
105
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  $api_event_id = get_post_meta(
107
  $event->get( 'post_id' ),
108
  self::EVENT_ID_METADATA,
109
  true
110
  );
111
  $is_new = ! $api_event_id;
112
- if ( 0 === $this->_count_valid_tickets( $_POST['ai1ec_tickets'] ) ) {
113
- $message = $this->_missing_tickets_error;
114
- $notification = $this->_registry->get( 'notification.admin' );
115
- $notification->store( $message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
116
- return null;
117
- }
118
- $headers = $this->_get_headers();
119
  $fields = array( 'visibility' => $_POST['visibility'] );
120
  $body_data = $this->_parse_event_fields_to_api_structure(
121
  $event,
@@ -123,9 +123,9 @@ class Ai1ec_Api extends Ai1ec_App {
123
  $_POST['ai1ec_tickets'],
124
  $fields
125
  );
126
- $url = AI1EC_API_URL . 'events';
127
  if ( $api_event_id ) {
128
- $url = $url . '/' . $api_event_id;
129
  }
130
 
131
  //get the thumbnail id saved previously
@@ -138,12 +138,14 @@ class Ai1ec_Api extends Ai1ec_App {
138
  if ( false === isset( $post_thumbnail_id ) ) {
139
  $post_thumbnail_id = 0;
140
  }
141
- $update_image = ( $event_thumbnail_id !== $post_thumbnail_id );
142
- $payload = '';
 
 
143
  if ( true === $update_image && 0 < $post_thumbnail_id ) {
144
- $boundary = wp_generate_password( 24 );
145
- $headers['content-type'] = 'multipart/form-data; boundary=' . $boundary;
146
- $body_data['update_image'] = '1';
147
  foreach ($body_data as $key => $value) {
148
  if ( is_array( $value ) ) {
149
  $index = 0;
@@ -181,18 +183,13 @@ class Ai1ec_Api extends Ai1ec_App {
181
  $body_data['update_image'] = (true === $update_image) ? '1' : '0';
182
  $payload = json_encode( $body_data );
183
  }
184
- $request = array(
185
- 'method' => 'POST',
186
- 'headers' => $headers,
187
- 'body' => $payload,
188
- 'timeout' => self::DEFAULT_TIMEOUT
189
- );
190
- $response = wp_remote_request( $url, $request );
191
- $response_code = wp_remote_retrieve_response_code( $response );
192
- if ( 200 === $response_code ) {
193
- $response_json = json_decode( $response['body'] );
194
- if ( $is_new && isset( $response_json->id ) ) {
195
- update_post_meta( $event->get( 'post_id' ), self::EVENT_ID_METADATA, $response_json->id );
196
  }
197
  if ( $post_thumbnail_id > 0 ) {
198
  update_post_meta( $event->get( 'post_id' ), self::THUMBNAIL_ID_METADATA, $post_thumbnail_id );
@@ -203,13 +200,11 @@ class Ai1ec_Api extends Ai1ec_App {
203
  } else {
204
  $error_message = '';
205
  if ( $is_new ) {
206
- $error_message = $this->_transform_error_message( $this->_create_event_error, $response, $url, false );
207
  } else {
208
- $error_message = $this->_transform_error_message( $this->_update_event_error, $response, $url, false );
209
  }
210
- $notification = $this->_registry->get( 'notification.admin' );
211
- $notification->store( $error_message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
212
- return false;
213
  }
214
  }
215
 
@@ -221,7 +216,6 @@ class Ai1ec_Api extends Ai1ec_App {
221
  if ( 0 >= $calendar_id ) {
222
  return null;
223
  }
224
- $url = AI1EC_API_URL . 'calendars/' . $calendar_id . '/payment' ;
225
  $settings = array(
226
  'payment_method' => $_POST['ai1ec_payment_method'],
227
  'paypal_email' => $_POST['ai1ec_paypal_email'],
@@ -233,26 +227,28 @@ class Ai1ec_Api extends Ai1ec_App {
233
  'country' => $_POST['ai1ec_country'],
234
  'postcode' => $_POST['ai1ec_postcode']
235
  );
236
- $headers = $this->_get_headers();
237
- $headers['content-type'] = 'application/x-www-form-urlencoded';
238
- $request = array(
239
- 'method' => 'PUT',
240
- 'headers' => $headers,
241
- 'body' => $settings,
242
- 'timeout' => self::DEFAULT_TIMEOUT
243
  );
244
- $response = wp_remote_request( $url, $request );
245
- $response_code = wp_remote_retrieve_response_code( $response );
246
- $notification = $this->_registry->get('notification.admin');
247
- if ( 200 !== $response_code ) {
248
- $error_message = $this->_transform_error_message( $this->_save_pref_error, $response, AI1EC_API_URL );
249
- $notification->store( $error_message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
 
 
 
 
 
 
 
 
250
  return false;
251
- }else{
252
- $notification->store( $this->_save_pref_success, 'updated', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
253
  }
254
- $response_json = json_decode( $response['body'] );
255
- return $response_json;
256
  }
257
 
258
  /**
@@ -261,19 +257,15 @@ class Ai1ec_Api extends Ai1ec_App {
261
  public function get_payment_preferences() {
262
  $calendar_id = $this->_get_ticket_calendar();
263
  $settings = null;
264
- if( ! empty( $calendar_id ) ) {
265
- $request = array(
266
- 'method' => 'GET',
267
- 'headers' => $this->_get_headers(),
268
- 'timeout' => self::DEFAULT_TIMEOUT
269
- );
270
- $response = wp_remote_request( AI1EC_API_URL."calendars/$calendar_id/payment", $request );
271
- $response_code = wp_remote_retrieve_response_code( $response );
272
- if ( 200 === $response_code ) {
273
- $settings = json_decode( $response['body'] );
274
  }
275
  }
276
-
277
  if ( is_null( $settings ) ) {
278
  return (object) array('payment_method'=>'cheque', 'paypal_email'=> '', 'first_name'=>'', 'last_name'=>'', 'street'=> '', 'city'=> '', 'state'=> '', 'postcode'=> '', 'country'=> '');
279
  } else {
@@ -328,7 +320,7 @@ class Ai1ec_Api extends Ai1ec_App {
328
  }
329
 
330
  if ( null !== $api_fields_values && is_array( $api_fields_values )) {
331
- foreach ($api_fields_values as $key => $value) {
332
  $body[$key] = $api_fields_values[$key];
333
  if ( 'visibility' === $key ) {
334
  if ( 0 === strcasecmp( 'private', $value ) ) {
@@ -465,31 +457,28 @@ class Ai1ec_Api extends Ai1ec_App {
465
  public function get_ticket_types( $post_id ) {
466
  $api_event_id = get_post_meta(
467
  $post_id,
468
- Ai1ec_Api::EVENT_ID_METADATA,
469
  true
470
  );
471
  if ( ! $api_event_id ) {
472
  return json_encode( array( 'data' => array() ) );
473
  }
474
- $request = array(
475
- 'headers' => $this->_get_headers(),
476
- 'timeout' => self::DEFAULT_TIMEOUT
477
- );
478
- $url = $this->get_api_url( $post_id ) . 'events/' . $api_event_id . '/ticket_types';
479
- $response = wp_remote_get( $url, $request );
480
- $response_code = wp_remote_retrieve_response_code( $response );
481
- if ( 200 === $response_code ) {
482
- $result = json_decode( $response['body'] );
483
- if ( isset( $result->ticket_types ) ) {
484
- foreach ( $result->ticket_types as $ticket_api ) {
485
  $this->_unparse_tickets_type_from_api_structure( $ticket_api );
486
  }
487
- return json_encode( array( 'data' => $result->ticket_types ) );
488
  } else {
489
  return json_encode( array( 'data' => array() ) );
490
  }
491
  } else {
492
- $error_message = $this->_transform_error_message( $this->_get_ticket_types_error, $response, $url, true );
 
 
 
 
493
  return json_encode( array( 'data' => array(), 'error' => $error_message ) );
494
  }
495
  }
@@ -500,7 +489,7 @@ class Ai1ec_Api extends Ai1ec_App {
500
  public function get_tickets( $post_id ) {
501
  $api_event_id = get_post_meta(
502
  $post_id,
503
- Ai1ec_Api::EVENT_ID_METADATA,
504
  true
505
  );
506
  if ( ! $api_event_id ) {
@@ -508,7 +497,7 @@ class Ai1ec_Api extends Ai1ec_App {
508
  }
509
  $request = array(
510
  'headers' => $this->_get_headers(),
511
- 'timeout' => self::DEFAULT_TIMEOUT
512
  );
513
  $url = $this->get_api_url( $post_id ) . 'events/' . $api_event_id . '/tickets';
514
  $response = wp_remote_get( $url, $request );
@@ -516,7 +505,11 @@ class Ai1ec_Api extends Ai1ec_App {
516
  if ( 200 === $response_code ) {
517
  return $response['body'];
518
  } else {
519
- $error_message = $this->_transform_error_message( $this->_get_tickets_error, $response, $url, true );
 
 
 
 
520
  return json_encode( array( 'data' => array(), 'error' => $error_message ) );
521
  }
522
  }
@@ -531,7 +524,7 @@ class Ai1ec_Api extends Ai1ec_App {
531
  public function get_purchases() {
532
  $request = array(
533
  'headers' => $this->_get_headers(),
534
- 'timeout' => self::DEFAULT_TIMEOUT
535
  );
536
  $url = AI1EC_API_URL . 'calendars/' . $this->_get_ticket_calendar() . '/sales';
537
  $response = wp_remote_get( $url, $request );
@@ -539,13 +532,18 @@ class Ai1ec_Api extends Ai1ec_App {
539
  if ( 200 === $response_code ) {
540
  $result = json_decode( $response['body'] );
541
  if ( isset( $result->orders ) ) {
542
- usort( $result->orders, array( "Ai1ec_Api", "_order_comparator" ) );
543
  return $result->orders;
544
  } else {
545
  return array();
546
  }
547
  } else {
548
- $error_message = $this->_transform_error_message( $this->_get_purchases_error, $response, $url, true );
 
 
 
 
 
549
  $notification = $this->_registry->get( 'notification.admin' );
550
  $notification->store( $error_message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
551
  return array();
@@ -556,7 +554,7 @@ class Ai1ec_Api extends Ai1ec_App {
556
  //if the event is imported, the ICS added the api url on metadata information
557
  $api_url = get_post_meta(
558
  $post_id,
559
- Ai1ec_Api::ICS_API_URL_METADATA,
560
  true
561
  );
562
  return (false === ai1ec_is_blank ( $api_url ));
@@ -566,7 +564,7 @@ class Ai1ec_Api extends Ai1ec_App {
566
  //if the event is imported, the ICS added the api url on metadata informatino
567
  $api_url = get_post_meta(
568
  $post_id,
569
- Ai1ec_Api::ICS_API_URL_METADATA,
570
  true
571
  );
572
  if ( ai1ec_is_blank ( $api_url ) ) {
@@ -576,150 +574,6 @@ class Ai1ec_Api extends Ai1ec_App {
576
  }
577
  }
578
 
579
- /**
580
- * Clean the ticketing settings on WP database only
581
- */
582
- public function signout() {
583
- $this->_save_settings( '', false, '', 0 );
584
- return array( 'message' => '');
585
- }
586
-
587
- private function _save_settings( $message, $enabled, $token, $calendar_id ) {
588
- $this->_settings->set( 'ticketing_message' , $message );
589
- $this->_settings->set( 'ticketing_enabled' , $enabled );
590
- $this->_settings->set( 'ticketing_token' , $token );
591
- $this->_settings->set( 'ticketing_calendar_id', $calendar_id );
592
- }
593
-
594
- /**
595
- * @return object Response body in JSON.
596
- */
597
- public function signin() {
598
- $body['email'] = $_POST['ai1ec_email'];
599
- $body['password'] = $_POST['ai1ec_password'];
600
- $request = array(
601
- 'headers' => $this->_get_headers( false ),
602
- 'body' => json_encode( $body ),
603
- 'timeout' => self::DEFAULT_TIMEOUT
604
- );
605
- $url = AI1EC_API_URL . 'auth/authenticate';
606
- $response = wp_remote_post( $url, $request );
607
- $response_code = wp_remote_retrieve_response_code( $response );
608
- if ( 200 === $response_code ) {
609
- $response_body = json_decode( $response['body'], true );
610
- $this->_save_settings( $response_body['message'], true, $response_body['auth_token'], $this->_find_user_calendar() );
611
- } else {
612
- $error_message = $this->_transform_error_message( $this->_sign_in_error, $response, AI1EC_API_URL );
613
- $this->_save_settings( $error_message, false, '', 0 );
614
- $notification = $this->_registry->get( 'notification.admin' );
615
- $notification->store( $error_message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
616
- }
617
- }
618
-
619
- /**
620
- * @return object Response body in JSON.
621
- */
622
- public function signup() {
623
- $body['name'] = $_POST['ai1ec_name'];
624
- $body['email'] = $_POST['ai1ec_email'];
625
- $body['password'] = $_POST['ai1ec_password'];
626
- $body['password_confirmation'] = $_POST['ai1ec_password_confirmation'];
627
- $body['phone'] = $_POST['ai1ec_phone'];
628
- $body['terms'] = $_POST['ai1ec_terms'];
629
- $request = array(
630
- 'headers' => $this->_get_headers( false ),
631
- 'body' => json_encode( $body ),
632
- 'timeout' => self::DEFAULT_TIMEOUT
633
- );
634
- $url = AI1EC_API_URL . 'auth/register';
635
- $response = wp_remote_post( $url, $request );
636
- $response_code = wp_remote_retrieve_response_code( $response );
637
- if ( 200 === $response_code ) {
638
- $response_body = json_decode( $response['body'], true );
639
- $this->_save_settings( $response_body['Registration'], true, $response_body['auth_token'] , $this->_create_calendar() );
640
- } else {
641
- $error_message = $this->_transform_error_message( $this->_sign_up_error, $response, AI1EC_API_URL );
642
- $this->_save_settings( $error_message, false, '', 0 );
643
- $notification = $this->_registry->get( 'notification.admin' );
644
- $notification->store( $error_message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
645
- }
646
- }
647
-
648
- /**
649
- * Create a standarized message to return
650
- * 1) If the API respond with http code 400 and with a JSON body, so, we will consider the API message to append in the base message.
651
- * 2) If the API does not responde with http code 400 or does not have a valid a JSON body, we will show the API URL and the http message error.
652
- */
653
- protected function _transform_error_message( $base_message, $response, $url, $ask_for_reload = false ) {
654
- $http_response_code = wp_remote_retrieve_response_code( $response );
655
- $api_error = $this->_get_api_error_msg( $response );
656
- $result = null;
657
- if ( false === ai1ec_is_blank( $api_error ) ) {
658
- $result = sprintf(
659
- __( '%s.<br/>Detail: %s.', AI1EC_PLUGIN_NAME ),
660
- $base_message, $api_error
661
- );
662
- } else {
663
- $error_message = sprintf(
664
- __( 'API URL: %s.<br/>Detail: %s - %s', AI1EC_PLUGIN_NAME ),
665
- $url,
666
- wp_remote_retrieve_response_code( $response ),
667
- wp_remote_retrieve_response_message( $response )
668
- );
669
- $mailto = '<a href="mailto:betasupport@time.ly" target="_top">betasupport@time.ly</a>';
670
- if ( true === $ask_for_reload ) {
671
- $result = sprintf(
672
- __( '%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s.', AI1EC_PLUGIN_NAME ),
673
- $base_message,
674
- $mailto,
675
- $error_message
676
- );
677
- } else {
678
- $result = sprintf(
679
- __( '%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s.', AI1EC_PLUGIN_NAME ),
680
- $base_message,
681
- $mailto,
682
- $error_message
683
- );
684
- }
685
- }
686
- $result = trim( $result );
687
- $result = str_replace( '..', '.', $result );
688
- $result = str_replace( '.,', '.', $result );
689
- return $result;
690
- }
691
-
692
-
693
- /**
694
- * Search for the API message error
695
- */
696
- protected function _get_api_error_msg( $response ) {
697
- if ( isset( $response ) && false === is_wp_error( $response ) ) {
698
- $response_body = json_decode( $response['body'], true );
699
- if ( json_last_error() === JSON_ERROR_NONE &&
700
- isset( $response_body ) &&
701
- isset( $response_body['errors'] ) ) {
702
- $errors = $response_body['errors'];
703
- if ( false === is_array( $errors )) {
704
- $errors = array( $errors );
705
- }
706
- $messages = null;
707
- foreach ($errors as $key => $value) {
708
- if ( false === ai1ec_is_blank( $value ) ) {
709
- if ( is_array( $value ) ) {
710
- $value = implode ( ', ', $value );
711
- }
712
- $messages[] = $value;
713
- }
714
- }
715
- if ( null !== $messages && false === empty( $messages ) ) {
716
- return implode ( ', ', $messages);
717
- }
718
- }
719
- }
720
- return null;
721
- }
722
-
723
  /**
724
  * Check if the response that came from the API is the event not found
725
  */
@@ -739,84 +593,6 @@ class Ai1ec_Api extends Ai1ec_App {
739
  return false;
740
  }
741
 
742
-
743
- /**
744
- * Get the ticket calendar from settings, if the calendar does not exists in
745
- * settings, then we will try to find on the API
746
- * @return string JSON.
747
- */
748
- protected function _get_ticket_calendar() {
749
- $ticketing_calendar_id = $this->_settings->get( 'ticketing_calendar_id' );
750
- if ( isset( $ticketing_calendar_id ) && $ticketing_calendar_id > 0) {
751
- return $ticketing_calendar_id;
752
- } else {
753
- //if the calendar is not saved on settings it should exists on API
754
- $ticketing_calendar_id = $this->_find_user_calendar();
755
- if ( $ticketing_calendar_id > 0 ) {
756
- $this->_settings->set( 'ticketing_calendar_id', $ticketing_calendar_id );
757
- return $ticketing_calendar_id;
758
- } else {
759
- //if the calendar should not exist on API, we will created
760
- $ticketing_calendar_id = $this->_create_calendar();
761
- if ( $ticketing_calendar_id > 0 ) {
762
- $this->_settings->set( 'ticketing_calendar_id', $ticketing_calendar_id );
763
- } else {
764
- return 0;
765
- }
766
- }
767
- }
768
- }
769
-
770
- /**
771
- * Find the existent calendar when the user is signing in
772
- */
773
- protected function _find_user_calendar() {
774
- $body = array(
775
- 'title' => get_bloginfo( 'name' )
776
- );
777
- $request = array(
778
- 'headers' => $this->_get_headers(),
779
- 'body' => json_encode( $body ),
780
- 'timeout' => self::DEFAULT_TIMEOUT
781
- );
782
- $response = wp_remote_get( AI1EC_API_URL . 'calendars', $request );
783
- $response_code = wp_remote_retrieve_response_code( $response );
784
- $response_body = json_decode( $response['body'] );
785
- if ( 200 === $response_code ) {
786
- if ( is_array( $response_body ) ) {
787
- return $response_body[0]->id;
788
- } else {
789
- return $response_body->id;
790
- }
791
- } else {
792
- return 0;
793
- }
794
- }
795
-
796
- /**
797
- * Create a calendar when the user is signup
798
- */
799
- protected function _create_calendar() {
800
- $body = array(
801
- 'title' => get_bloginfo( 'name' ),
802
- 'url' => ai1ec_site_url(),
803
- 'timezone' => $this->_settings->get( 'timezone_string' )
804
- );
805
- $request = array(
806
- 'headers' => $this->_get_headers(),
807
- 'body' => json_encode( $body ),
808
- 'timeout' => self::DEFAULT_TIMEOUT
809
- );
810
- $response = wp_remote_post( AI1EC_API_URL . 'calendars', $request );
811
- $response_code = wp_remote_retrieve_response_code( $response );
812
- $response_body = json_decode( $response['body'] );
813
- if ( 200 === $response_code ) {
814
- return $response_body->id;
815
- } else {
816
- return 0;
817
- }
818
- }
819
-
820
  /**
821
  * @return NULL in case of success or an error string in case of error
822
  */
@@ -840,7 +616,7 @@ class Ai1ec_Api extends Ai1ec_App {
840
  $post_id ? $post_id : null
841
  );
842
  } catch ( Ai1ec_Event_Not_Found_Exception $excpt ) {
843
- $message = $this->_event_not_found_error;
844
  $notification = $this->_registry->get( 'notification.admin' );
845
  $notification->store( $message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
846
  return $message;
@@ -857,7 +633,7 @@ class Ai1ec_Api extends Ai1ec_App {
857
  'method' => 'POST',
858
  'headers' => $headers,
859
  'body' => json_encode( $body_data ),
860
- 'timeout' => self::DEFAULT_TIMEOUT
861
  );
862
  $response = wp_remote_request( $url, $request );
863
  $response_code = wp_remote_retrieve_response_code( $response );
@@ -900,7 +676,7 @@ class Ai1ec_Api extends Ai1ec_App {
900
  $request = array(
901
  'method' => 'DELETE',
902
  'headers' => $this->_get_headers(),
903
- 'timeout' => self::DEFAULT_TIMEOUT
904
  );
905
  $url = AI1EC_API_URL . 'events/' . $api_event_id;
906
  $response = wp_remote_request( $url, $request );
@@ -915,7 +691,12 @@ class Ai1ec_Api extends Ai1ec_App {
915
  //move to trash
916
  return null;
917
  }
918
- $message = $this->_transform_error_message( $this->_tickets_removed_error, $response, $url, true );
 
 
 
 
 
919
  $notification = $this->_registry->get( 'notification.admin' );
920
  $notification->store( $message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
921
  return $message;
@@ -936,24 +717,4 @@ class Ai1ec_Api extends Ai1ec_App {
936
  return str_replace( '{event_id}', $api_event_id, $url_checkout );
937
  }
938
 
939
- /**
940
- * Check if the current WP instance is signed into the API
941
- */
942
- public function is_signed() {
943
- return true === $this->_settings->get( 'ticketing_enabled' );
944
- }
945
-
946
- /**
947
- * Get the last message return by Signup or Signup process
948
- */
949
- public function get_sign_message() {
950
- return $this->_settings->get( 'ticketing_message' );
951
- }
952
-
953
- /**
954
- * Clear the last message return by Signup or Signup process
955
- */
956
- public function clear_sign_message() {
957
- return $this->_settings->set( 'ticketing_message', '' );
958
- }
959
  }
1
  <?php
2
 
3
  /**
4
+ * Class for Timely API communication for Ticketing.
5
  *
6
  * @author Time.ly Network, Inc.
7
  * @since 2.4
8
  * @package Ai1EC
9
  * @subpackage Ai1EC.Model
10
  */
11
+ class Ai1ec_Api_Ticketing extends Ai1ec_Api_Abstract {
12
 
 
13
  const EVENT_ID_METADATA = '_ai1ec_api_event_id';
14
  const THUMBNAIL_ID_METADATA = '_ai1ec_thumbnail_id';
15
  const ICS_CHECKOUT_URL_METADATA = '_ai1ec_ics_checkout_url';
16
  const ICS_API_URL_METADATA = '_ai1ec_ics_api_url';
17
  const MAX_TICKET_TO_BUY_DEFAULT = 25;
18
 
 
 
 
 
 
 
 
 
 
 
19
  /**
20
  * Post construction routine.
21
  *
24
  * @return void Return from this method is ignored.
25
  */
26
  protected function _initialize() {
27
+ parent::_initialize();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  }
29
 
30
  /**
31
+ * Count the valid Tickets Types (not removed) included inside the Ticket Event
32
  */
 
 
 
 
 
 
 
 
 
 
33
  private function _count_valid_tickets( $post_ticket_types ) {
34
  if (false === isset( $post_ticket_types ) || 0 === count( $post_ticket_types ) ) {
35
  return 0;
45
  }
46
 
47
  /**
48
+ * Run some validations inside the _POST request to check if the Event
49
+ * submmited is a valid event for Tickets
50
+ * @return NULL in case of success or a Message in case of error
51
  */
52
+ private function _is_valid_post( Ai1ec_Event $event ) {
53
+ if ( ( isset( $_POST['ai1ec_rdate'] ) && ! empty( $_POST['ai1ec_rdate'] ) ) ||
54
+ ( isset( $_POST['ai1ec_repeat'] ) && ! empty( $_POST['ai1ec_repeat'] ) )
55
+ ) {
56
+ $notification = $this->_registry->get( 'notification.admin' );
57
+ $error = __( 'The Repeat option was selected but recurrence is not supported by Event with Tickets.', AI1EC_PLUGIN_NAME );
58
+ $notification->store( $error, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
59
+ return $error;
60
+ }
61
  if ( isset( $_POST['ai1ec_tickets_loading_error'] ) ) {
62
  //do not update tickets because is unsafe. There was a problem to load the tickets,
63
  //the customer received the same message when the event was loaded.
64
  $notification = $this->_registry->get( 'notification.admin' );
65
  $notification->store( $_POST['ai1ec_tickets_loading_error'], 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
66
+ return $_POST['ai1ec_tickets_loading_error'];
67
  }
68
  if ( $this->is_ticket_event_imported( $event->get( 'post_id' ) ) ) {
69
  //prevent changes on Ticket Events that were imported
70
+ $error = __( 'This Event was replicated from another site. Any changes on Tickets were discarded.', AI1EC_PLUGIN_NAME );
71
  $notification = $this->_registry->get( 'notification.admin' );
72
+ $notification->store(
73
+ $error,
74
+ 'error',
75
+ 0,
76
+ array( Ai1ec_Notification_Admin::RCPT_ADMIN ),
77
+ false
78
+ );
79
+ return $error;
80
+ } else if ( false === ai1ec_is_blank( $event->get( 'ical_feed_url' ) ) ) {
81
  //prevent ticket creating inside Regular Events that were imported
82
+ $error = __( 'This Event was replicated from another site. Any changes on Tickets were discarded.', AI1EC_PLUGIN_NAME );
83
  $notification = $this->_registry->get( 'notification.admin' );
84
+ $notification->store(
85
+ $error,
86
+ 'error',
87
+ 0,
88
+ array( Ai1ec_Notification_Admin::RCPT_ADMIN ),
89
+ false
90
+ );
91
+ return $error;
92
  }
93
+ if ( 0 === $this->_count_valid_tickets( $_POST['ai1ec_tickets'] ) ) {
94
+ $message = __( 'The Event has the Cost option Ticket selected but no ticket was added.', AI1EC_PLUGIN_NAME );
95
+ $notification = $this->_registry->get( 'notification.admin' );
96
+ $notification->store( $message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
97
+ return $message;
98
+ }
99
+ return null;
100
+ }
101
+
102
+ /**
103
+ * Create or update a Ticket Event on API server
104
+ * @return object Response body in JSON.
105
+ */
106
+ public function store_event( Ai1ec_Event $event, WP_Post $post ) {
107
+
108
+ $error = $this->_is_valid_post( $event );
109
+ if ( null !== $error ) {
110
+ return $error;
111
+ }
112
+
113
  $api_event_id = get_post_meta(
114
  $event->get( 'post_id' ),
115
  self::EVENT_ID_METADATA,
116
  true
117
  );
118
  $is_new = ! $api_event_id;
 
 
 
 
 
 
 
119
  $fields = array( 'visibility' => $_POST['visibility'] );
120
  $body_data = $this->_parse_event_fields_to_api_structure(
121
  $event,
123
  $_POST['ai1ec_tickets'],
124
  $fields
125
  );
126
+ $url = AI1EC_API_URL . 'events';
127
  if ( $api_event_id ) {
128
+ $url = $url . '/' . $api_event_id;
129
  }
130
 
131
  //get the thumbnail id saved previously
138
  if ( false === isset( $post_thumbnail_id ) ) {
139
  $post_thumbnail_id = 0;
140
  }
141
+ $update_image = ( $event_thumbnail_id !== $post_thumbnail_id );
142
+ $payload = '';
143
+ $custom_headers = null;
144
+
145
  if ( true === $update_image && 0 < $post_thumbnail_id ) {
146
+ $boundary = wp_generate_password( 24 );
147
+ $custom_headers['content-type'] = 'multipart/form-data; boundary=' . $boundary;
148
+ $body_data['update_image'] = '1';
149
  foreach ($body_data as $key => $value) {
150
  if ( is_array( $value ) ) {
151
  $index = 0;
183
  $body_data['update_image'] = (true === $update_image) ? '1' : '0';
184
  $payload = json_encode( $body_data );
185
  }
186
+ $response = $this->request_api( 'POST', $url, $payload,
187
+ true, //true to decode response body
188
+ $custom_headers
189
+ );
190
+ if ( $this->is_response_success( $response ) ) {
191
+ if ( $is_new && isset( $response->body->id ) ) {
192
+ update_post_meta( $event->get( 'post_id' ), self::EVENT_ID_METADATA, $response->body->id );
 
 
 
 
 
193
  }
194
  if ( $post_thumbnail_id > 0 ) {
195
  update_post_meta( $event->get( 'post_id' ), self::THUMBNAIL_ID_METADATA, $post_thumbnail_id );
200
  } else {
201
  $error_message = '';
202
  if ( $is_new ) {
203
+ $error_message = __( 'We were unable to create the Event on Time.ly Ticketing', AI1EC_PLUGIN_NAME );
204
  } else {
205
+ $error_message = __( 'We were unable to update the Event on Time.ly Ticketing', AI1EC_PLUGIN_NAME );
206
  }
207
+ return $this->save_error_notification( $response, $error_message );
 
 
208
  }
209
  }
210
 
216
  if ( 0 >= $calendar_id ) {
217
  return null;
218
  }
 
219
  $settings = array(
220
  'payment_method' => $_POST['ai1ec_payment_method'],
221
  'paypal_email' => $_POST['ai1ec_paypal_email'],
227
  'country' => $_POST['ai1ec_country'],
228
  'postcode' => $_POST['ai1ec_postcode']
229
  );
230
+ $custom_headers['content-type'] = 'application/x-www-form-urlencoded';
231
+ $response = $this->request_api( 'PUT', AI1EC_API_URL . 'calendars/' . $calendar_id . '/payment',
232
+ $settings,
233
+ true, //decode response body
234
+ $custom_headers
 
 
235
  );
236
+ if ( $this->is_response_success( $response ) ) {
237
+ $notification = $this->_registry->get( 'notification.admin' );
238
+ $notification->store(
239
+ __( 'Payment preferences were saved.', AI1EC_PLUGIN_NAME ),
240
+ 'updated',
241
+ 0,
242
+ array( Ai1ec_Notification_Admin::RCPT_ADMIN ),
243
+ false
244
+ );
245
+ return $response->body;
246
+ } else {
247
+ $this->save_error_notification( $response,
248
+ __( 'Payment preferences were not saved.', AI1EC_PLUGIN_NAME )
249
+ );
250
  return false;
 
 
251
  }
 
 
252
  }
253
 
254
  /**
257
  public function get_payment_preferences() {
258
  $calendar_id = $this->_get_ticket_calendar();
259
  $settings = null;
260
+ if ( 0 < $calendar_id ) {
261
+ $response = $this->request_api( 'GET', AI1EC_API_URL . "calendars/$calendar_id/payment",
262
+ null, //no body
263
+ true //decode response body
264
+ );
265
+ if ( $this->is_response_success( $response ) ) {
266
+ $settings = $response->body;
 
 
 
267
  }
268
  }
 
269
  if ( is_null( $settings ) ) {
270
  return (object) array('payment_method'=>'cheque', 'paypal_email'=> '', 'first_name'=>'', 'last_name'=>'', 'street'=> '', 'city'=> '', 'state'=> '', 'postcode'=> '', 'country'=> '');
271
  } else {
320
  }
321
 
322
  if ( null !== $api_fields_values && is_array( $api_fields_values )) {
323
+ foreach ( $api_fields_values as $key => $value ) {
324
  $body[$key] = $api_fields_values[$key];
325
  if ( 'visibility' === $key ) {
326
  if ( 0 === strcasecmp( 'private', $value ) ) {
457
  public function get_ticket_types( $post_id ) {
458
  $api_event_id = get_post_meta(
459
  $post_id,
460
+ self::EVENT_ID_METADATA,
461
  true
462
  );
463
  if ( ! $api_event_id ) {
464
  return json_encode( array( 'data' => array() ) );
465
  }
466
+ $response = $this->request_api( 'GET', $this->get_api_url( $post_id ) . 'events/' . $api_event_id . '/ticket_types', null);
467
+ if ( $this->is_response_success( $response ) ) {
468
+ if ( isset( $response->body->ticket_types ) ) {
469
+ foreach ( $response->body->ticket_types as $ticket_api ) {
 
 
 
 
 
 
 
470
  $this->_unparse_tickets_type_from_api_structure( $ticket_api );
471
  }
472
+ return json_encode( array( 'data' => $response->body->ticket_types ) );
473
  } else {
474
  return json_encode( array( 'data' => array() ) );
475
  }
476
  } else {
477
+ $error_message = $this->_transform_error_message(
478
+ __( 'We were unable to get the Tickets Details from Time.ly Ticketing', AI1EC_PLUGIN_NAME ),
479
+ $response->raw, $response->url,
480
+ true
481
+ );
482
  return json_encode( array( 'data' => array(), 'error' => $error_message ) );
483
  }
484
  }
489
  public function get_tickets( $post_id ) {
490
  $api_event_id = get_post_meta(
491
  $post_id,
492
+ self::EVENT_ID_METADATA,
493
  true
494
  );
495
  if ( ! $api_event_id ) {
497
  }
498
  $request = array(
499
  'headers' => $this->_get_headers(),
500
+ 'timeout' => parent::DEFAULT_TIMEOUT
501
  );
502
  $url = $this->get_api_url( $post_id ) . 'events/' . $api_event_id . '/tickets';
503
  $response = wp_remote_get( $url, $request );
505
  if ( 200 === $response_code ) {
506
  return $response['body'];
507
  } else {
508
+ $error_message = $this->_transform_error_message(
509
+ __( 'We were unable to get the Tickets Attendees from Time.ly Ticketing', AI1EC_PLUGIN_NAME ),
510
+ $response, $url,
511
+ true
512
+ );
513
  return json_encode( array( 'data' => array(), 'error' => $error_message ) );
514
  }
515
  }
524
  public function get_purchases() {
525
  $request = array(
526
  'headers' => $this->_get_headers(),
527
+ 'timeout' => parent::DEFAULT_TIMEOUT
528
  );
529
  $url = AI1EC_API_URL . 'calendars/' . $this->_get_ticket_calendar() . '/sales';
530
  $response = wp_remote_get( $url, $request );
532
  if ( 200 === $response_code ) {
533
  $result = json_decode( $response['body'] );
534
  if ( isset( $result->orders ) ) {
535
+ usort( $result->orders, array( "Ai1ec_Api_Ticketing", "_order_comparator" ) );
536
  return $result->orders;
537
  } else {
538
  return array();
539
  }
540
  } else {
541
+ $error_message = $this->_transform_error_message(
542
+ __( 'We were unable to get the Sales information from Time.ly Ticketing', AI1EC_PLUGIN_NAME ),
543
+ $response,
544
+ $url,
545
+ true
546
+ );
547
  $notification = $this->_registry->get( 'notification.admin' );
548
  $notification->store( $error_message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
549
  return array();
554
  //if the event is imported, the ICS added the api url on metadata information
555
  $api_url = get_post_meta(
556
  $post_id,
557
+ self::ICS_API_URL_METADATA,
558
  true
559
  );
560
  return (false === ai1ec_is_blank ( $api_url ));
564
  //if the event is imported, the ICS added the api url on metadata informatino
565
  $api_url = get_post_meta(
566
  $post_id,
567
+ self::ICS_API_URL_METADATA,
568
  true
569
  );
570
  if ( ai1ec_is_blank ( $api_url ) ) {
574
  }
575
  }
576
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
577
  /**
578
  * Check if the response that came from the API is the event not found
579
  */
593
  return false;
594
  }
595
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
596
  /**
597
  * @return NULL in case of success or an error string in case of error
598
  */
616
  $post_id ? $post_id : null
617
  );
618
  } catch ( Ai1ec_Event_Not_Found_Exception $excpt ) {
619
+ $message = __( 'Event not found inside the database.', AI1EC_PLUGIN_NAME );
620
  $notification = $this->_registry->get( 'notification.admin' );
621
  $notification->store( $message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
622
  return $message;
633
  'method' => 'POST',
634
  'headers' => $headers,
635
  'body' => json_encode( $body_data ),
636
+ 'timeout' => parent::DEFAULT_TIMEOUT
637
  );
638
  $response = wp_remote_request( $url, $request );
639
  $response_code = wp_remote_retrieve_response_code( $response );
676
  $request = array(
677
  'method' => 'DELETE',
678
  'headers' => $this->_get_headers(),
679
+ 'timeout' => parent::DEFAULT_TIMEOUT
680
  );
681
  $url = AI1EC_API_URL . 'events/' . $api_event_id;
682
  $response = wp_remote_request( $url, $request );
691
  //move to trash
692
  return null;
693
  }
694
+ $message = $this->_transform_error_message(
695
+ __( 'We were unable to remove the Tickets from Time.ly Ticketing', AI1EC_PLUGIN_NAME ),
696
+ $response,
697
+ $url,
698
+ true
699
+ );
700
  $notification = $this->_registry->get( 'notification.admin' );
701
  $notification->store( $message, 'error', 0, array( Ai1ec_Notification_Admin::RCPT_ADMIN ), false );
702
  return $message;
717
  return str_replace( '{event_id}', $api_event_id, $url_checkout );
718
  }
719
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
720
  }
app/model/event/creating.php CHANGED
@@ -226,9 +226,12 @@ class Ai1ec_Event_Creating extends Ai1ec_Base {
226
  if ( $update === false ) {
227
  //this method just creates the API event, the update action
228
  //is treated by another hook (pre_update_event inside api )
229
- $api = $this->_registry->get( 'model.api' );
230
  if ( 'tickets' === $cost_type ) {
231
- $api->store_event( $event, $post );
 
 
 
232
  }
233
  }
234
 
@@ -266,7 +269,7 @@ class Ai1ec_Event_Creating extends Ai1ec_Base {
266
  // remove WordPress `magical` slashes - we work around it ourselves
267
  $_POST = stripslashes_deep( $_POST );
268
 
269
- $api = $this->_registry->get( 'model.api' );
270
  $action = $this->current_action();
271
  switch( $action ) {
272
  case 'inline-save': //quick edit from edit page
@@ -326,7 +329,8 @@ class Ai1ec_Event_Creating extends Ai1ec_Base {
326
  $event = $data['event'];
327
  $cost_type = isset( $_REQUEST['ai1ec_cost_type'] ) ? $_REQUEST['ai1ec_cost_type'] : '';
328
  if ( 'tickets' === $cost_type ) {
329
- if ( false === $api->store_event( $event, $post ) ) {
 
330
  wp_redirect( $this->get_sendback_page( $post_id ) );
331
  exit();
332
  }
226
  if ( $update === false ) {
227
  //this method just creates the API event, the update action
228
  //is treated by another hook (pre_update_event inside api )
229
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
230
  if ( 'tickets' === $cost_type ) {
231
+ $result = $api->store_event( $event, $post );
232
+ if ( true !== $result ) {
233
+ $_POST['_ticket_store_event_error'] = $result;
234
+ }
235
  }
236
  }
237
 
269
  // remove WordPress `magical` slashes - we work around it ourselves
270
  $_POST = stripslashes_deep( $_POST );
271
 
272
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
273
  $action = $this->current_action();
274
  switch( $action ) {
275
  case 'inline-save': //quick edit from edit page
329
  $event = $data['event'];
330
  $cost_type = isset( $_REQUEST['ai1ec_cost_type'] ) ? $_REQUEST['ai1ec_cost_type'] : '';
331
  if ( 'tickets' === $cost_type ) {
332
+ $result = $api->store_event( $event, $post );
333
+ if ( true !== $result ) {
334
  wp_redirect( $this->get_sendback_page( $post_id ) );
335
  exit();
336
  }
app/model/event/trashing.php CHANGED
@@ -78,7 +78,7 @@ class Ai1ec_Event_Trashing extends Ai1ec_Base {
78
  * @return bool Success.
79
  */
80
  public function trash_post( $post_id ) {
81
- $api = $this->_registry->get( 'model.api' );
82
  $post = get_post( $post_id );
83
  $restored_status = get_post_meta( $post_id, '_wp_trash_meta_status', true );
84
  $fields = array(
@@ -130,7 +130,7 @@ class Ai1ec_Event_Trashing extends Ai1ec_Base {
130
  * the integration with API fails
131
  */
132
  public function untrash_post ( $post_id ) {
133
- $api = $this->_registry->get( 'model.api' );
134
  $post = get_post( $post_id );
135
  $restored_status = get_post_meta( $post_id, '_wp_trash_meta_status', true );
136
  $fields = array(
@@ -174,7 +174,7 @@ class Ai1ec_Event_Trashing extends Ai1ec_Base {
174
  * the integration with API fails
175
  */
176
  public function before_delete_post( $post_id ) {
177
- $api = $this->_registry->get( 'model.api' );
178
  $message = $api->delete_api_event( $post_id );
179
  if ( null !== $message ) {
180
  if ( defined('DOING_AJAX') && DOING_AJAX ) {
78
  * @return bool Success.
79
  */
80
  public function trash_post( $post_id ) {
81
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
82
  $post = get_post( $post_id );
83
  $restored_status = get_post_meta( $post_id, '_wp_trash_meta_status', true );
84
  $fields = array(
130
  * the integration with API fails
131
  */
132
  public function untrash_post ( $post_id ) {
133
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
134
  $post = get_post( $post_id );
135
  $restored_status = get_post_meta( $post_id, '_wp_trash_meta_status', true );
136
  $fields = array(
174
  * the integration with API fails
175
  */
176
  public function before_delete_post( $post_id ) {
177
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
178
  $message = $api->delete_api_event( $post_id );
179
  if ( null !== $message ) {
180
  if ( defined('DOING_AJAX') && DOING_AJAX ) {
app/model/settings.php CHANGED
@@ -50,6 +50,10 @@ class Ai1ec_Settings extends Ai1ec_App {
50
 
51
  if ( 'deprecated' === $type ) {
52
  unset( $this->_options[$option] );
 
 
 
 
53
  } else if (
54
  ! isset( $this->_options[$option] ) ||
55
  ! isset( $this->_options[$option]['version'] ) ||
@@ -310,7 +314,7 @@ class Ai1ec_Settings extends Ai1ec_App {
310
  ->get( self::WP_OPTION_KEY, array() );
311
  $this->_change_update_status( false );
312
  $test_version = false;
313
- if ( is_array( $values ) ) { // always assign existing values, if any
314
  $this->_options = $values;
315
  if ( isset( $values['calendar_page_id'] ) ) {
316
  $test_version = $values['calendar_page_id']['version'];
@@ -908,7 +912,7 @@ class Ai1ec_Settings extends Ai1ec_App {
908
  'Disable <strong>gzip</strong> compression.'
909
  ),
910
  'help' => Ai1ec_I18n::__(
911
- 'Use this option if calendar is unresponsive. <a href="http://support.time.ly/disable-gzip-compression/">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)'
912
  ),
913
  ),
914
  'default' => true,
50
 
51
  if ( 'deprecated' === $type ) {
52
  unset( $this->_options[$option] );
53
+ } else if ( 'hidden' === $type ) {
54
+ if ( isset( $this->_options[$option] ) && isset( $this->_options[$option]['renderer'] ) ) {
55
+ $this->_options[$option]['renderer'] = null;
56
+ }
57
  } else if (
58
  ! isset( $this->_options[$option] ) ||
59
  ! isset( $this->_options[$option]['version'] ) ||
314
  ->get( self::WP_OPTION_KEY, array() );
315
  $this->_change_update_status( false );
316
  $test_version = false;
317
+ if ( is_array( $values ) ) { // always assign existing values, if any
318
  $this->_options = $values;
319
  if ( isset( $values['calendar_page_id'] ) ) {
320
  $test_version = $values['calendar_page_id']['version'];
912
  'Disable <strong>gzip</strong> compression.'
913
  ),
914
  'help' => Ai1ec_I18n::__(
915
+ 'Use this option if calendar is unresponsive. <a target="_blank" href="http://time.ly/document/user-guide/troubleshooting/disable-gzip-compression/">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)'
916
  ),
917
  ),
918
  'default' => true,
app/view/admin/add-new-event.php CHANGED
@@ -299,7 +299,7 @@ class Ai1ec_View_Add_New_Event extends Ai1ec_Base {
299
  }
300
  }
301
  if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
302
- $api = $this->_registry->get( 'model.api' );
303
  $ticketing = $api->is_signed();
304
  $message = $api->get_sign_message();
305
  $loading_error = null;
299
  }
300
  }
301
  if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
302
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
303
  $ticketing = $api->is_signed();
304
  $message = $api->get_sign_message();
305
  $loading_error = null;
app/view/admin/all-events.php CHANGED
@@ -17,7 +17,7 @@ class Ai1ec_View_Admin_All_Events extends Ai1ec_Base {
17
  $columns['date'] = __( 'Post Date', AI1EC_PLUGIN_NAME );
18
  $columns['ai1ec_event_date'] = __( 'Event date/time', AI1EC_PLUGIN_NAME );
19
  if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
20
- $api = $this->_registry->get( 'model.api' );
21
  if ( $api->is_signed() ) {
22
  $columns['tickets'] = __( 'Ticket Types', AI1EC_PLUGIN_NAME );
23
  }
@@ -72,7 +72,7 @@ class Ai1ec_View_Admin_All_Events extends Ai1ec_Base {
72
  }
73
  }
74
  if ( 'tickets' === $column ) {
75
- $api = $this->_registry->get( 'model.api' );
76
  if ( $api->is_ticket_event_imported( $post_id ) ) {
77
  echo '';
78
  } else {
@@ -80,7 +80,7 @@ class Ai1ec_View_Admin_All_Events extends Ai1ec_Base {
80
  $event = $this->_registry->get( 'model.event', $post_id );
81
  $api_event_id = get_post_meta(
82
  $post_id,
83
- Ai1ec_Api::EVENT_ID_METADATA,
84
  true
85
  );
86
  if ( $api_event_id ) {
@@ -212,7 +212,7 @@ class Ai1ec_View_Admin_All_Events extends Ai1ec_Base {
212
  */
213
  public function show_ticket_details() {
214
  $post_id = $_POST['ai1ec_event_id'];
215
- $api = $this->_registry->get( 'model.api' );
216
  $tickets = $api->get_ticket_types( $post_id );
217
  echo $tickets;
218
  wp_die();
@@ -223,7 +223,7 @@ class Ai1ec_View_Admin_All_Events extends Ai1ec_Base {
223
  */
224
  public function show_attendees() {
225
  $post_id = $_POST['ai1ec_event_id'];
226
- $api = $this->_registry->get( 'model.api' );
227
  $tickets = $api->get_tickets( $post_id );
228
  echo $tickets;
229
  wp_die();
17
  $columns['date'] = __( 'Post Date', AI1EC_PLUGIN_NAME );
18
  $columns['ai1ec_event_date'] = __( 'Event date/time', AI1EC_PLUGIN_NAME );
19
  if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
20
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
21
  if ( $api->is_signed() ) {
22
  $columns['tickets'] = __( 'Ticket Types', AI1EC_PLUGIN_NAME );
23
  }
72
  }
73
  }
74
  if ( 'tickets' === $column ) {
75
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
76
  if ( $api->is_ticket_event_imported( $post_id ) ) {
77
  echo '';
78
  } else {
80
  $event = $this->_registry->get( 'model.event', $post_id );
81
  $api_event_id = get_post_meta(
82
  $post_id,
83
+ Ai1ec_Api_Ticketing::EVENT_ID_METADATA,
84
  true
85
  );
86
  if ( $api_event_id ) {
212
  */
213
  public function show_ticket_details() {
214
  $post_id = $_POST['ai1ec_event_id'];
215
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
216
  $tickets = $api->get_ticket_types( $post_id );
217
  echo $tickets;
218
  wp_die();
223
  */
224
  public function show_attendees() {
225
  $post_id = $_POST['ai1ec_event_id'];
226
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
227
  $tickets = $api->get_tickets( $post_id );
228
  echo $tickets;
229
  wp_die();
app/view/admin/get-repeat-box.php CHANGED
@@ -621,8 +621,8 @@ class Ai1ec_View_Admin_Get_repeat_Box extends Ai1ec_Base {
621
  $dates_as_strings = array();
622
  foreach ( $dates as $date ) {
623
  $date = str_replace( array( 'RDATE=', 'EXDATE=' ), '', $date );
624
- $date = $this->_registry->get( 'date.time', $date );
625
- $dates_as_strings[] = $date->format('m/d/Y');
626
  }
627
  return $dates_as_strings;
628
  }
621
  $dates_as_strings = array();
622
  foreach ( $dates as $date ) {
623
  $date = str_replace( array( 'RDATE=', 'EXDATE=' ), '', $date );
624
+ $date = $this->_registry->get( 'date.time', $date )->set_preferred_timezone( 'UTC' );
625
+ $dates_as_strings[] = $date->format( 'm/d/Y' );
626
  }
627
  return $dates_as_strings;
628
  }
app/view/admin/settings.php CHANGED
@@ -163,7 +163,7 @@ class Ai1ec_View_Admin_Settings extends Ai1ec_View_Admin_Abstract {
163
  $loader = $this->_registry->get( 'theme.loader' );
164
 
165
  if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
166
- $api = $this->_registry->get( 'model.api' );
167
  $api_signed = $api->is_signed();
168
 
169
  $args = array(
163
  $loader = $this->_registry->get( 'theme.loader' );
164
 
165
  if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
166
+ $api = $this->_registry->get( 'model.api.api-registration' );
167
  $api_signed = $api->is_signed();
168
 
169
  $args = array(
app/view/admin/tickets.php CHANGED
@@ -56,7 +56,7 @@ class Ai1ec_View_Tickets extends Ai1ec_View_Admin_Abstract {
56
  */
57
  public function display_page() {
58
 
59
- $api = $this->_registry->get( 'model.api' );
60
  $ticketing_enabled = $api->is_signed();
61
  $ticketing_message = $api->get_sign_message();
62
  $loader = $this->_registry->get( 'theme.loader' );
56
  */
57
  public function display_page() {
58
 
59
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
60
  $ticketing_enabled = $api->is_signed();
61
  $ticketing_message = $api->get_sign_message();
62
  $loader = $this->_registry->get( 'theme.loader' );
app/view/calendar/page.php CHANGED
@@ -477,21 +477,22 @@ class Ai1ec_Calendar_Page extends Ai1ec_Base {
477
  )
478
  )
479
  );
480
- $add_defaults = array(
481
- 'cat_ids' => 'categories',
482
- 'tag_ids' => 'tags',
483
- );
484
- foreach ( $add_defaults as $query => $default ) {
485
- if ( empty( $view_args[$query] ) ) {
486
- $setting = $settings->get( 'default_tags_categories' );
487
- if ( isset( $setting[$default] ) ) {
488
- $view_args[$query] = $setting[$default];
 
 
 
489
  }
490
  }
491
  }
492
 
493
- $type = $request->get( 'request_type' );
494
-
495
  $view_args['data_type'] = $this->return_data_type_for_request_type(
496
  $type
497
  );
477
  )
478
  )
479
  );
480
+ $type = $request->get( 'request_type' );
481
+ if ( 'html' === $type ) {
482
+ $add_defaults = array(
483
+ 'cat_ids' => 'categories',
484
+ 'tag_ids' => 'tags',
485
+ );
486
+ foreach ( $add_defaults as $query => $default ) {
487
+ if ( empty( $view_args[$query] ) ) {
488
+ $setting = $settings->get( 'default_tags_categories' );
489
+ if ( isset( $setting[$default] ) ) {
490
+ $view_args[$query] = $setting[$default];
491
+ }
492
  }
493
  }
494
  }
495
 
 
 
496
  $view_args['data_type'] = $this->return_data_type_for_request_type(
497
  $type
498
  );
app/view/calendar/subscribe-button.php CHANGED
@@ -24,6 +24,7 @@ class Ai1ec_View_Calendar_SubscribeButton {
24
  'outlook' => Ai1ec_I18n::__( 'Add to Outlook' ),
25
  'apple' => Ai1ec_I18n::__( 'Add to Apple Calendar' ),
26
  'plaintext' => Ai1ec_I18n::__( 'Add to other calendar' ),
 
27
  ),
28
  'title' => array(
29
  'timely' => Ai1ec_I18n::__( 'Copy this URL for your own Timely calendar or click to add to your rich-text calendar' ),
24
  'outlook' => Ai1ec_I18n::__( 'Add to Outlook' ),
25
  'apple' => Ai1ec_I18n::__( 'Add to Apple Calendar' ),
26
  'plaintext' => Ai1ec_I18n::__( 'Add to other calendar' ),
27
+ 'xml' => Ai1ec_I18n::__( 'Export to XML' ),
28
  ),
29
  'title' => array(
30
  'timely' => Ai1ec_I18n::__( 'Copy this URL for your own Timely calendar or click to add to your rich-text calendar' ),
app/view/event/avatar.php CHANGED
@@ -177,6 +177,54 @@ class Ai1ec_View_Event_Avatar extends Ai1ec_Base {
177
  );
178
  }
179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
  /**
181
  * Simple regex-parse of post_content for matches of <img src="foo" />; if
182
  * one is found, return its URL.
@@ -347,6 +395,7 @@ class Ai1ec_View_Event_Avatar extends Ai1ec_Base {
347
  'content_img' => 'get_content_img_url',
348
  'category_avatar' => 'get_category_avatar_url',
349
  'default_avatar' => 'get_default_avatar_url',
 
350
  )
351
  );
352
  }
177
  );
178
  }
179
 
180
+ /**
181
+ * Read post meta for featured image and return its URL as a string.
182
+ *
183
+ * @param Ai1ec_Event $event Event object.
184
+ * @param null $size (width, height) array of returned image.
185
+ *
186
+ * @return string|null
187
+ */
188
+ public function get_featured_image_url( Ai1ec_Event $event, &$size = null ) {
189
+ $featured_image = get_post_meta( $event->get( 'post_id' ) , '_featured_image', true );
190
+ if ( empty( $featured_image ) ) {
191
+ return $this->_get_post_attachment_url(
192
+ $event,
193
+ array(
194
+ 'full',
195
+ 'large',
196
+ 'medium'
197
+ ),
198
+ $size
199
+ );
200
+ } else {
201
+ $priority_order = array( 'large', 'full', 'medium', 'thumbnail' );
202
+ $url = null;
203
+ foreach ( $priority_order as $priority ) {
204
+ foreach ( $featured_image as $values_arr ) {
205
+ if ( $values_arr[0] === $priority ) {
206
+ $url = $values_arr[1];
207
+ $size = array( $values_arr[2], $values_arr[3] );
208
+ break;
209
+ }
210
+ }
211
+ if ( null !== $url ) {
212
+ break;
213
+ }
214
+ }
215
+ return $url;
216
+ }
217
+ }
218
+
219
+ /**
220
+ * Remove the avatar url from the event content
221
+ */
222
+ public function remove_avatar_url( $content ) {
223
+ return preg_replace( '/<div[^<>]+class=[\'"]?ai1ec-event-avatar[^<>]*[\'"]?[^<>]+>.+<\/div>[.\s]*/'
224
+ , ''
225
+ , $content );
226
+ }
227
+
228
  /**
229
  * Simple regex-parse of post_content for matches of <img src="foo" />; if
230
  * one is found, return its URL.
395
  'content_img' => 'get_content_img_url',
396
  'category_avatar' => 'get_category_avatar_url',
397
  'default_avatar' => 'get_default_avatar_url',
398
+ 'featured_image' => 'get_featured_image_url'
399
  )
400
  );
401
  }
app/view/event/single.php CHANGED
@@ -155,18 +155,18 @@ class Ai1ec_View_Event_Single extends Ai1ec_Base {
155
  if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
156
  $api_event_id = get_post_meta(
157
  $event->get( 'post_id' ),
158
- Ai1ec_Api::EVENT_ID_METADATA,
159
  true
160
  );
161
  if ( $api_event_id ) {
162
- $api = $this->_registry->get( 'model.api' );
163
  $args['api_event_id'] = $api_event_id;
164
  $checkout_url = null;
165
  if ( false === ai1ec_is_blank( $event->get( 'ical_feed_url' ) ) ) {
166
  //if this ticket event is imported, uses the api and checkout url from the imported information
167
  $checkout_url = get_post_meta(
168
  $event->get( 'post_id' ),
169
- Ai1ec_Api::ICS_CHECKOUT_URL_METADATA,
170
  true
171
  );
172
  }
@@ -186,6 +186,39 @@ class Ai1ec_View_Event_Single extends Ai1ec_Base {
186
  ->get_content();
187
  }
188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  /**
190
  * @param Ai1ec_Event $event
191
  *
155
  if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
156
  $api_event_id = get_post_meta(
157
  $event->get( 'post_id' ),
158
+ Ai1ec_Api_Ticketing::EVENT_ID_METADATA,
159
  true
160
  );
161
  if ( $api_event_id ) {
162
+ $api = $this->_registry->get( 'model.api.api-ticketing' );
163
  $args['api_event_id'] = $api_event_id;
164
  $checkout_url = null;
165
  if ( false === ai1ec_is_blank( $event->get( 'ical_feed_url' ) ) ) {
166
  //if this ticket event is imported, uses the api and checkout url from the imported information
167
  $checkout_url = get_post_meta(
168
  $event->get( 'post_id' ),
169
+ Ai1ec_Api_Ticketing::ICS_CHECKOUT_URL_METADATA,
170
  true
171
  );
172
  }
186
  ->get_content();
187
  }
188
 
189
+ /**
190
+ * Add meta OG tags to the event details page
191
+ */
192
+ public function add_meta_tags() {
193
+ // Add tags only on Event Details page
194
+ $aco = $this->_registry->get( 'acl.aco' );
195
+ if ( ! $aco->is_our_post_type() ) return;
196
+
197
+ // Get Event and process desciption
198
+ $event = $this->_registry->get( 'model.event', get_the_ID() );
199
+ $content = $this->_registry->get( 'view.event.content' );
200
+ $desc = $event->get( 'post' )->post_content;
201
+ $desc = apply_filters( 'the_excerpt', $desc );
202
+ $desc = strip_shortcodes( $desc );
203
+ $desc = str_replace( ']]>', ']]&gt;', $desc );
204
+ $desc = strip_tags( $desc );
205
+ $desc = preg_replace( '/\n+/', ' ', $desc);
206
+ $desc = substr( $desc, 0, 300 );
207
+ $og = array(
208
+ 'url' => get_permalink( $event->get( 'post_id' ) ),
209
+ 'title' => htmlspecialchars(
210
+ $event->get( 'post' )->post_title .
211
+ ' (' . substr( $event->get( 'start' ) , 0, 10 ) . ')'
212
+ ),
213
+ 'type' => 'article',
214
+ 'description' => htmlspecialchars( $desc ),
215
+ 'image' => $content->get_content_img_url( $event )
216
+ );
217
+ foreach ( $og as $key => $val ) {
218
+ echo "<meta property=\"og:$key\" content=\"$val\" />\n";
219
+ }
220
+ }
221
+
222
  /**
223
  * @param Ai1ec_Event $event
224
  *
language/all-in-one-event-calendar-bg.mo DELETED
Binary file
language/all-in-one-event-calendar-bg.po DELETED
@@ -1,3007 +0,0 @@
1
- # Translation of 2.3 in Bulgarian
2
- # This file is distributed under the same license as the 2.3 package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:46:30+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-alpha-1000\n"
11
- "Project-Id-Version: 2.3\n"
12
-
13
- #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
- #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
- msgid "Event background"
16
- msgstr "Фон на събитието"
17
-
18
- #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
- #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
- msgid "Event time background"
21
- msgstr "Фон на времето на събитието"
22
-
23
- #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
- #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
- msgid "Event text"
26
- msgstr "Текст на събитието"
27
-
28
- #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
- #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
- msgid "Month view date background"
31
- msgstr "Фон на датата в месечен изглед"
32
-
33
- #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
- #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
- msgid "Week/day view now marker"
36
- msgstr "Маркер на седмичен/дневен изглед сега"
37
-
38
- #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
- #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
- msgid "Date label accent color"
41
- msgstr "Акцентиращ цвят на етикета на датата"
42
-
43
- #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
- #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
- msgid "Date label background"
46
- msgstr "Фон на етикета на датата"
47
-
48
- #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
- #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
- msgid "Date background"
51
- msgstr "Фон на датата"
52
-
53
- #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
- #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
- msgid "Today background"
56
- msgstr "Фон на Днешния ден"
57
-
58
- #. Plugin Name of the plugin/theme
59
- msgid "All-in-One Event Calendar by Time.ly"
60
- msgstr "All-in-One Event Calendar by Time.ly"
61
-
62
- #. Description of the plugin/theme
63
- msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
- msgstr "Календарна система с изгледи по месец, седмица, ден, график, уиджет Предстоящи събития, цветово-кодирани категории, повторение и импорт/експорт на .ics абонаменти (feeds)."
65
-
66
- #. Author of the plugin/theme
67
- msgid "Time.ly Network Inc."
68
- msgstr "Time.ly Network Inc."
69
-
70
- #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
- #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
- msgid "List item background (active/hover)"
73
- msgstr ""
74
-
75
- #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
- #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
- msgid "Input field placeholder text"
78
- msgstr ""
79
-
80
- #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
- #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
- msgid "Today color"
83
- msgstr ""
84
-
85
- #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
- #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
- msgid "All-day badge color"
88
- msgstr ""
89
-
90
- #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
- #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
- msgid "Event image shadow"
93
- msgstr "Сянка на изображението на събитието"
94
-
95
- #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
- #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
- msgid "Event default color"
98
- msgstr "Стандартен цвят на събитието"
99
-
100
- #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
- #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
- msgid "Event default color (hover)"
103
- msgstr "Стандартен цвят на събитието (мини отгоре)"
104
-
105
- #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
- #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
- msgid "All-day/multi-day event stub text"
108
- msgstr "Текст на тестето от целодневни/многодневни събития"
109
-
110
- #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
- #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
- msgid "All-day/multi-day event stub text shadow"
113
- msgstr "Сянка на тестето от целодневни/многодневни събития"
114
-
115
- #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
- #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
- msgid "Event border"
118
- msgstr "Рамка на събитието"
119
-
120
- #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
- #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
- msgid "Button text"
123
- msgstr "Текст на бутона"
124
-
125
- #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
- #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
- msgid "Input field text"
128
- msgstr "Въведи текст на полето"
129
-
130
- #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
- #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
- msgid "Input field background"
133
- msgstr "Въведи фон на полето"
134
-
135
- #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
- #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
- msgid "Input field border"
138
- msgstr "Въведи рамка на полето"
139
-
140
- #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
- #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
- msgid "Input field border (focus)"
143
- msgstr "Въведи рамка на полето (фокус)"
144
-
145
- #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
- #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
- msgid "Input field background (disabled)"
148
- msgstr "Въведи фон на полето (недостъпно)"
149
-
150
- #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
- #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
- msgid "Field label"
153
- msgstr "Етикет на полето"
154
-
155
- #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
- #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
- msgid "Dropdown list background"
158
- msgstr "Фон на падащия списък"
159
-
160
- #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
- #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
- msgid "Dropdown list border"
163
- msgstr "Рамка на падащия списък"
164
-
165
- #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
- #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
- msgid "List item text"
168
- msgstr ""
169
-
170
- #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
- #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
- msgid "List item text (active/hover)"
173
- msgstr ""
174
-
175
- #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
- msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
- msgstr "Активирана е нова тема. <a href=\"%s\">Посетете сайта</a>"
178
-
179
- #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
- msgid "Theme deleted."
181
- msgstr "Темата е изтрита."
182
-
183
- #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
- msgid "Manage Themes"
185
- msgstr "Управление на теми"
186
-
187
- #: public/admin/themes-install.php:40
188
- msgctxt "theme"
189
- msgid "Install Themes"
190
- msgstr "Инсталация на Теми"
191
-
192
- #: public/admin/themes-updated.php:5
193
- msgid "Update Calendar Themes"
194
- msgstr "Опресни Календарните теми"
195
-
196
- #: public/admin/themes-updated.php:15
197
- msgid "All-in-One Event Calendar Settings »"
198
- msgstr "All-in-One Event Calendar Настройки»"
199
-
200
- #: public/admin/themes.php:18
201
- msgid "Current Calendar Theme"
202
- msgstr "Настояща календарна тема"
203
-
204
- #: public/admin/themes.php:21
205
- msgid "Current theme preview"
206
- msgstr "Преглед на настоящата тема"
207
-
208
- #: public/admin/themes.php:47
209
- msgid "Available Calendar Themes"
210
- msgstr "Налични календарни теми"
211
-
212
- #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
- #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
- msgid "Body background"
215
- msgstr "Фон на тялото"
216
-
217
- #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
- #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
- msgid "Text color"
220
- msgstr "Цвят на текста"
221
-
222
- #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
- #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
- msgid "Text emboss"
225
- msgstr "Релефен текст"
226
-
227
- #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
- #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
- msgid "Link"
230
- msgstr "Линк"
231
-
232
- #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
- #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
- msgid "Link (hover)"
235
- msgstr "Линк (мини отгоре)"
236
-
237
- #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
- #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
- msgid "Base font"
240
- msgstr "Базов шрифт"
241
-
242
- #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
- #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
- msgid "Base font size"
245
- msgstr "Размер на шрифта база"
246
-
247
- #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
- #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
- msgid "Table background"
250
- msgstr "Фон на таблицата"
251
-
252
- #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
- #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
- msgid "Table header background"
255
- msgstr "Фон на хедър на таблицата"
256
-
257
- #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
- #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
- msgid "Table header text"
260
- msgstr "Текст на хедър на таблицата"
261
-
262
- #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
- #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
- msgid "Primary brand color"
265
- msgstr "Основна марка цвят"
266
-
267
- #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
- #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
- msgid "Button background"
270
- msgstr "Фон на бутона"
271
-
272
- #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
- #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
- msgid "Button border"
275
- msgstr "Рамка на категорията"
276
-
277
- #: public/admin/feed_row.php:104
278
- msgid "Refreshing&#8230;"
279
- msgstr "Обновяване"
280
-
281
- #: public/admin/feed_row.php:106
282
- msgid "Refresh"
283
- msgstr "Опресни"
284
-
285
- #: public/admin/feed_row.php:119
286
- msgid "Removing&#8230;"
287
- msgstr ""
288
-
289
- #: public/admin/feed_row.php:121
290
- msgid "Remove"
291
- msgstr "Премахни"
292
-
293
- #: public/admin/import.php:6
294
- msgid "Successfully imported events:"
295
- msgstr "Успешно импортнати събития:"
296
-
297
- #: public/admin/plugins/ics/display_feeds.php:2
298
- msgid ""
299
- "Configure which other calendars your own calendar subscribes to.\n"
300
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
- " Enter the feed URL(s) below and the events from those feeds will be\n"
302
- " imported periodically."
303
- msgstr ""
304
- "Конфигурирайте за кои други календари е абониран твоя календар.\n"
305
- " Можете да добавите всеки календар, които предоставя абонамент чрез iCalendar (.ics).\n"
306
- " Въведете линка на абонамента по-долу и събитията на тези абонаменти ще бъдат импортвани \n"
307
- " периодично.."
308
-
309
- #: public/admin/plugins/ics/display_feeds.php:14
310
- msgid "Check for new events"
311
- msgstr "Натисни за нови събития"
312
-
313
- #: public/admin/plugins/ics/display_feeds.php:45
314
- msgid "Allow comments on imported events"
315
- msgstr "Разрешени са коментари на импортнати събития"
316
-
317
- #: public/admin/plugins/ics/display_feeds.php:52
318
- msgid "Show map on imported events"
319
- msgstr "Покажи карта на импортнантите събития"
320
-
321
- #: public/admin/plugins/ics/display_feeds.php:59
322
- msgid "Import any tags/categories provided by feed, in addition those selected above"
323
- msgstr "Импортване на всички етикети/категории предоставени от абонамента, в допълнение на избраните горе"
324
-
325
- #: public/admin/plugins/ics/display_feeds.php:93
326
- msgid "Add new subscription"
327
- msgstr "Добави нов абонамент"
328
-
329
- #: public/admin/plugins/ics/display_feeds.php:96
330
- msgid "Update subscription"
331
- msgstr ""
332
-
333
- #: public/admin/row_custom.php:3
334
- msgid "Custom dates:"
335
- msgstr ""
336
-
337
- #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
- #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
- #: public/admin/row_yearly.php:3
340
- msgid "Every"
341
- msgstr "Всеки/всяка"
342
-
343
- #: public/admin/row_monthly.php:16
344
- msgid "On day of the month"
345
- msgstr "На ден от месеца"
346
-
347
- #: public/admin/row_monthly.php:23
348
- msgid "On day of the week"
349
- msgstr "На ден от седмицата"
350
-
351
- #: public/admin/row_weekly.php:12
352
- msgctxt "Recurrence editor - weekly tab"
353
- msgid "On"
354
- msgstr "В"
355
-
356
- #: public/admin/row_yearly.php:12
357
- msgctxt "Recurrence editor - yearly tab"
358
- msgid "In"
359
- msgstr "В "
360
-
361
- #: public/admin/settings.php:19
362
- msgid "Update Settings"
363
- msgstr "Опресни настройките"
364
-
365
- #: public/admin/themes-install.php:4
366
- msgid "The active theme is broken. Reverting to the default theme."
367
- msgstr "Тази активна тема е повредена. Връщане към стандартната тема."
368
-
369
- #: public/admin/themes-install.php:13
370
- msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
- msgstr ""
372
-
373
- #: public/admin/calendar_tasks.php:24
374
- msgid "Manage Events"
375
- msgstr "Управление на събитията"
376
-
377
- #: public/admin/calendar_tasks.php:27
378
- msgid "View and edit all your events."
379
- msgstr "Показване и редактиране на всичките събития."
380
-
381
- #: public/admin/calendar_tasks.php:39
382
- msgid "Manage Event Categories"
383
- msgstr "Управление на категориите на събитието"
384
-
385
- #: public/admin/calendar_tasks.php:42
386
- msgid "Organize and color-code your events."
387
- msgstr "Организиране и цветово кодиране на събитията."
388
-
389
- #: public/admin/calendar_tasks.php:50
390
- msgid "Choose Your Theme"
391
- msgstr "Избор на тема"
392
-
393
- #: public/admin/calendar_tasks.php:53
394
- msgid "Change the look and feel."
395
- msgstr "Промяна на външния вид и усещането."
396
-
397
- #: public/admin/calendar_tasks.php:63
398
- msgid "Manage Calendar Feeds"
399
- msgstr "Управление на абонаменти на календара"
400
-
401
- #: public/admin/calendar_tasks.php:66
402
- msgid "Subscribe to other calendars."
403
- msgstr "Абониране за други календари"
404
-
405
- #: public/admin/calendar_tasks.php:74
406
- msgid "Edit Calendar Settings"
407
- msgstr "Редактирай настройките на календара"
408
-
409
- #: public/admin/calendar_tasks.php:77
410
- msgid "Make this calendar your own."
411
- msgstr "Направете този календар Ваш."
412
-
413
- #: public/admin/cron_freq.php:3
414
- msgid "Hourly"
415
- msgstr "На час"
416
-
417
- #: public/admin/cron_freq.php:6
418
- msgid "Twice Daily"
419
- msgstr "Два пъти дневно"
420
-
421
- #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
- msgid "iCalendar/.ics Feed URL:"
423
- msgstr "iCalendar/.ics Feed URL:"
424
-
425
- #: public/admin/feed_row.php:24
426
- msgid "Event categories:"
427
- msgstr "Категории на събитията"
428
-
429
- #: public/admin/feed_row.php:31
430
- msgid "Tag with"
431
- msgstr "Постави етикет"
432
-
433
- #: public/admin/feed_row.php:40
434
- msgid "Allow comments"
435
- msgstr "Позволи коментари"
436
-
437
- #: public/admin/feed_row.php:51
438
- msgid "Show map"
439
- msgstr "Покажи карта"
440
-
441
- #: public/admin/feed_row.php:63
442
- msgid "Keep original events categories and tags"
443
- msgstr "Запази оригиналните категории и етикети на събитията"
444
-
445
- #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
- msgid "On refresh, preserve previously imported events that are missing from the feed"
447
- msgstr ""
448
-
449
- #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
- msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
- msgstr ""
452
-
453
- #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
- msgid "Assign default time zone to events in UTC"
455
- msgstr ""
456
-
457
- #: public/admin/box_support.php:19
458
- msgid "Get Add-ons"
459
- msgstr "Вземи Добавка"
460
-
461
- #: public/admin/box_support.php:27
462
- msgid "Support"
463
- msgstr "Поддръжка"
464
-
465
- #: public/admin/box_support.php:35
466
- msgid "Timely Events"
467
- msgstr "Timely Събития"
468
-
469
- #: public/admin/box_support.php:43
470
- msgid "Timely News"
471
- msgstr "Новини от Timely "
472
-
473
- #: public/admin/box_support.php:47
474
- msgid "view all news"
475
- msgstr "виж всички новини"
476
-
477
- #: public/admin/box_support.php:95
478
- msgid "Follow @_Timely"
479
- msgstr "Следвай @_Timely"
480
-
481
- #: public/admin/box_time_and_date.php:6
482
- msgid "Event date and time"
483
- msgstr "Дата и час на събитието"
484
-
485
- #: public/admin/box_time_and_date.php:26
486
- msgid "All-day event"
487
- msgstr "Целодневно събитие"
488
-
489
- #: public/admin/box_time_and_date.php:35
490
- msgid "No end time"
491
- msgstr "Няма краен час"
492
-
493
- #: public/admin/box_time_and_date.php:42
494
- msgid "Start date / time"
495
- msgstr "Начална дата/час"
496
-
497
- #: public/admin/box_time_and_date.php:59
498
- msgid "End date / time"
499
- msgstr "Крайна дата/час"
500
-
501
- #: public/admin/box_time_and_date.php:76
502
- msgid "Time zone"
503
- msgstr "Времева зона"
504
-
505
- #: public/admin/box_time_and_date.php:81
506
- msgid "Choose your time zone"
507
- msgstr "Избери времева зона"
508
-
509
- #: public/admin/box_time_and_date.php:108
510
- msgid "Repeat"
511
- msgstr "Повтаря се"
512
-
513
- #: public/admin/box_time_and_date.php:127
514
- msgid "Exclude"
515
- msgstr "като се изключи"
516
-
517
- #: public/admin/box_time_and_date.php:136
518
- msgid "Choose a rule for exclusion"
519
- msgstr "Избери правило за изключения"
520
-
521
- #: public/admin/calendar_tasks.php:3
522
- msgid "Welcome"
523
- msgstr "Добре дошли"
524
-
525
- #: public/admin/calendar_tasks.php:4
526
- msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
- msgstr "при All-in-One Event Calendar на <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
-
529
- #: public/admin/calendar_tasks.php:13
530
- msgid "Post Your Event"
531
- msgstr "Публикувай свое събитие"
532
-
533
- #: public/admin/calendar_tasks.php:16
534
- msgid "Add a new event to the calendar."
535
- msgstr "Добави ново събитие към календара"
536
-
537
- #: public/admin/box_eventbrite.php:60
538
- msgid "Donation Based"
539
- msgstr "На базата на дарение"
540
-
541
- #: public/admin/box_eventbrite.php:68
542
- msgid "The price for this event's first ticket will be taken from the Cost field above."
543
- msgstr "Цената на първия билет на това събитие ще бъде взета от полето Цена отгоре."
544
-
545
- #: public/admin/box_eventbrite.php:75
546
- msgid "Quantity"
547
- msgstr "Количество"
548
-
549
- #: public/admin/box_eventbrite.php:85
550
- msgid "Include Fee in Price"
551
- msgstr "Таксата е включена в цената "
552
-
553
- #: public/admin/box_eventbrite.php:90
554
- msgid "Add Service Fee on top of price"
555
- msgstr "Добави такса за обслужване към цената"
556
-
557
- #: public/admin/box_eventbrite.php:92
558
- msgid "Include Service fee in price"
559
- msgstr "Добави такса за обслужване към цената"
560
-
561
- #: public/admin/box_eventbrite.php:98
562
- msgid "Payment Options"
563
- msgstr "Опции за плащане"
564
-
565
- #: public/admin/box_eventbrite.php:105
566
- msgid "Google Checkout"
567
- msgstr "Google Checkout"
568
-
569
- #: public/admin/box_eventbrite.php:107
570
- msgid "Check"
571
- msgstr "Чек"
572
-
573
- #: public/admin/box_eventbrite.php:109
574
- msgid "Cash"
575
- msgstr "В брой"
576
-
577
- #: public/admin/box_eventbrite.php:111
578
- msgid "Send an Invoice"
579
- msgstr "Изпрати фактура"
580
-
581
- #: public/admin/box_profile_timezone.php:9
582
- msgid "Your preferred timezone"
583
- msgstr "Предпочитана часова зона"
584
-
585
- #: public/admin/box_repeat.php:5
586
- msgid "Select recurrence pattern:"
587
- msgstr "Изберете схема на повторение:"
588
-
589
- #: public/admin/box_repeat.php:36
590
- msgid "Custom"
591
- msgstr ""
592
-
593
- #: public/admin/box_repeat.php:72
594
- msgid "End"
595
- msgstr "Приключва на"
596
-
597
- #: public/admin/box_repeat.php:82
598
- msgid "Ending after"
599
- msgstr "Приключва след"
600
-
601
- #: public/admin/box_repeat.php:109
602
- #: public/admin/plugins/ics/display_feeds.php:90
603
- msgid "Please wait&#8230;"
604
- msgstr "Моля изчакайте"
605
-
606
- #: public/admin/box_repeat.php:111
607
- msgid "Apply"
608
- msgstr "Приложи"
609
-
610
- #: public/admin/box_repeat.php:116
611
- #: public/admin/plugins/ics/display_feeds.php:84
612
- msgid "Cancel"
613
- msgstr "Отмени"
614
-
615
- #: public/admin/box_support.php:4
616
- msgid "Timely"
617
- msgstr "Timely"
618
-
619
- #: public/admin/box_support.php:11
620
- msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
- msgstr "Timely’s All-in-One Event Calendar е <br />нов революционен начин да намериш и споделиш събития."
622
-
623
- #: public/admin/box_event_cost.php:228
624
- msgid "Status:"
625
- msgstr ""
626
-
627
- #: public/admin/box_event_cost.php:235
628
- msgid "Open"
629
- msgstr ""
630
-
631
- #: public/admin/box_event_cost.php:239
632
- msgid "Closed"
633
- msgstr ""
634
-
635
- #: public/admin/box_event_cost.php:254
636
- msgid "Add New Ticket Type"
637
- msgstr ""
638
-
639
- #: public/admin/box_event_cost.php:274
640
- msgid "Tickets URL:"
641
- msgstr ""
642
-
643
- #: public/admin/box_event_location.php:6
644
- msgid "Event location details"
645
- msgstr "Подробности за местоположението на събитието"
646
-
647
- #: public/admin/box_event_location.php:19
648
- msgid "Venue name:"
649
- msgstr "Име на местоположението:"
650
-
651
- #: public/admin/box_event_location.php:31
652
- msgid "Address:"
653
- msgstr "Адрес:"
654
-
655
- #: public/admin/box_event_location.php:45
656
- msgid "Input Coordinates"
657
- msgstr "Вкарайте GPS координати"
658
-
659
- #: public/admin/box_event_location.php:57
660
- msgid "Latitude:"
661
- msgstr "Географска ширина:"
662
-
663
- #: public/admin/box_event_location.php:69
664
- msgid "Longitude:"
665
- msgstr "Географска дължина:"
666
-
667
- #: public/admin/box_event_location.php:85
668
- msgid "Show Map"
669
- msgstr ""
670
-
671
- #: public/admin/box_eventbrite.php:1
672
- msgid "Eventbrite Ticketing"
673
- msgstr "Eventbrite Ticketing"
674
-
675
- #: public/admin/box_eventbrite.php:7
676
- msgid "Register this event with Eventbrite.com?"
677
- msgstr "Искате ли да регистрирате това събитие с Eventbrite.com?"
678
-
679
- #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
- #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
- #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
- msgid "Yes"
683
- msgstr "Да"
684
-
685
- #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
- #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
- #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
- msgid "No"
689
- msgstr "Не"
690
-
691
- #: public/admin/box_eventbrite.php:22
692
- msgid "Set up your first ticket"
693
- msgstr "Настройте първия си билет"
694
-
695
- #: public/admin/box_eventbrite.php:24
696
- msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
- msgstr "За да създадете многобройни билети за това събитие, попълнете този формуляр и следвайте линка към Eventbrite."
698
-
699
- #: public/admin/box_eventbrite.php:42
700
- msgid "Description"
701
- msgstr "Описание"
702
-
703
- #: public/admin/box_eventbrite.php:53
704
- msgid "Type"
705
- msgstr "Вид"
706
-
707
- #: public/admin/box_eventbrite.php:58
708
- msgid "Set Price"
709
- msgstr "Зададена цена"
710
-
711
- #: public/admin/box_event_contact.php:30
712
- msgid "Phone:"
713
- msgstr "Телефон:"
714
-
715
- #: public/admin/box_event_contact.php:56
716
- msgid "Website URL:"
717
- msgstr ""
718
-
719
- #: public/admin/box_event_cost.php:6
720
- msgid "Event cost and Tickets"
721
- msgstr "Цена на събитието и Билети"
722
-
723
- #: public/admin/box_event_cost.php:20
724
- msgid "Ticket options not available - event imported from external calendar."
725
- msgstr ""
726
-
727
- #: public/admin/box_event_cost.php:28
728
- msgid "Free event"
729
- msgstr "Безплатно събитие"
730
-
731
- #: public/admin/box_event_cost.php:41
732
- msgid "External Tickets URL"
733
- msgstr ""
734
-
735
- #: public/admin/box_event_cost.php:52
736
- msgid "Ticketing allows you to sell tickets directly to the users."
737
- msgstr ""
738
-
739
- #: public/admin/box_event_cost.php:55
740
- msgid "Sign Up for Timely Network"
741
- msgstr ""
742
-
743
- #: public/admin/box_event_cost.php:80
744
- msgid "Remove Ticket Type"
745
- msgstr ""
746
-
747
- #: public/admin/box_event_cost.php:101
748
- msgid "Ex.: Regular Ticket"
749
- msgstr ""
750
-
751
- #: public/admin/box_event_cost.php:105
752
- msgid "Description:"
753
- msgstr ""
754
-
755
- #: public/admin/box_event_cost.php:111
756
- msgid "(Optional)"
757
- msgstr ""
758
-
759
- #: public/admin/box_event_cost.php:115
760
- msgid "Price:"
761
- msgstr ""
762
-
763
- #: public/admin/box_event_cost.php:124
764
- msgid "USD"
765
- msgstr ""
766
-
767
- #: public/admin/box_event_cost.php:128
768
- msgid "Limits:"
769
- msgstr ""
770
-
771
- #: public/admin/box_event_cost.php:131
772
- msgid "This fields are required."
773
- msgstr ""
774
-
775
- #: public/admin/box_event_cost.php:156
776
- msgid "Quantity:"
777
- msgstr ""
778
-
779
- #: public/admin/box_event_cost.php:180
780
- msgid "Available:"
781
- msgstr ""
782
-
783
- #: public/admin/box_event_cost.php:185
784
- msgid "Immediately"
785
- msgstr ""
786
-
787
- #: public/admin/box_event_cost.php:190
788
- msgid "From:"
789
- msgstr ""
790
-
791
- #: public/admin/box_event_cost.php:207
792
- msgid "Till:"
793
- msgstr ""
794
-
795
- #: public/admin/box_ask_customer_review.php:42
796
- #: public/admin/box_ask_customer_review.php:75
797
- msgid "No, thanks"
798
- msgstr ""
799
-
800
- #: public/admin/box_ask_customer_review.php:50
801
- #: public/admin/box_ask_customer_review.php:84
802
- msgid "Ok, sure!"
803
- msgstr ""
804
-
805
- #: public/admin/box_ask_customer_review.php:66
806
- msgid "Would you mind giving us some feedback?"
807
- msgstr ""
808
-
809
- #: public/admin/box_ask_customer_review.php:101
810
- msgid "Please provide some feedback"
811
- msgstr ""
812
-
813
- #: public/admin/box_ask_customer_review.php:108
814
- msgid "Message:"
815
- msgstr ""
816
-
817
- #: public/admin/box_ask_customer_review.php:121
818
- msgid "Name:"
819
- msgstr ""
820
-
821
- #: public/admin/box_ask_customer_review.php:136
822
- #: public/admin/box_event_contact.php:43
823
- msgid "E-mail:"
824
- msgstr "E-mail:"
825
-
826
- #: public/admin/box_ask_customer_review.php:143
827
- msgid "E-mail is invalid."
828
- msgstr ""
829
-
830
- #: public/admin/box_ask_customer_review.php:154
831
- msgid "Site URL:"
832
- msgstr ""
833
-
834
- #: public/admin/box_ask_customer_review.php:161
835
- msgid "Site URL is invalid."
836
- msgstr ""
837
-
838
- #: public/admin/box_ask_customer_review.php:173
839
- msgid "Thank you for being our customer,"
840
- msgstr ""
841
-
842
- #: public/admin/box_ask_customer_review.php:174
843
- msgid "Aristotel Dascal, VP of Product, Time.ly"
844
- msgstr ""
845
-
846
- #: public/admin/box_ask_customer_review.php:180
847
- msgid "Sending..."
848
- msgstr ""
849
-
850
- #: public/admin/box_ask_customer_review.php:181
851
- msgid "Send Message"
852
- msgstr ""
853
-
854
- #: public/admin/box_event_children.php:12
855
- msgid "Base recurrence event"
856
- msgstr "Повтарящо се събития база"
857
-
858
- #: public/admin/box_event_children.php:14
859
- msgid "Modified recurrence events"
860
- msgstr "Променени повтарящи се събития"
861
-
862
- #: public/admin/box_event_children.php:22
863
- msgid "Edit parent:"
864
- msgstr "Редактирайте събитие родител:"
865
-
866
- #: public/admin/box_event_children.php:27
867
- msgid "Modified Events"
868
- msgstr "Променени събития"
869
-
870
- #: public/admin/box_event_children.php:31
871
- msgid "Edit:"
872
- msgstr "Редакция:"
873
-
874
- #: public/admin/box_event_contact.php:6
875
- msgid "Organizer contact info"
876
- msgstr "Контакти на организатора"
877
-
878
- #: public/admin/box_event_contact.php:17
879
- msgid "Contact name:"
880
- msgstr "За контакт: "
881
-
882
- #: lib/theme/loader.php:325
883
- msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
- msgstr "Не успяхме да намерим подходящ зареждач за файл с разширение '%s'"
885
-
886
- #: lib/theme/loader.php:631
887
- msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
- msgstr ""
889
-
890
- #: lib/theme/search.php:253
891
- msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
- msgstr "Не сме способни да преместим старите core теми от <code>wp-content/themes-ai1ec</code> в <code>wp-content/themes-ai1ec-obsolete</code>, защото във Вашата <code>wp-content</code> папка не може да се пише. Моля, премахнете ръчно старите core теми от <code>wp-content/themes-ai1ec</code>."
893
-
894
- #: lib/theme/search.php:264
895
- msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
- msgstr "Не успяхме да преместим старите core теми от <code>wp-content/themes-ai1ec/%s</code> в <code>wp-content/themes-ai1ec-obsolete/%s</code>. Моля, премахнете ръчно старите core теми от <code>wp-content/themes-ai1ec/%s</code>."
897
-
898
- #: lib/twig/environment.php:115
899
- msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
- msgstr ""
901
-
902
- #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
- msgid "Title:"
904
- msgstr "Заглавие:"
905
-
906
- #: public/admin/agenda-widget-form.php:12
907
- msgid "Number of events to show:"
908
- msgstr "Брой събития за показване:"
909
-
910
- #: public/admin/agenda-widget-form.php:21
911
- msgid "Number of days to show:"
912
- msgstr "Да показва колко дни:"
913
-
914
- #: public/admin/agenda-widget-form.php:26
915
- msgid "Limit to:"
916
- msgstr ""
917
-
918
- #: public/admin/agenda-widget-form.php:30
919
- msgid "Events with these <strong>Categories</strong>"
920
- msgstr "Събития с тези <strong>Категории</strong>"
921
-
922
- #: public/admin/agenda-widget-form.php:39
923
- msgid "No categories found."
924
- msgstr "Няма намерени категории."
925
-
926
- #: public/admin/agenda-widget-form.php:46
927
- msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
- msgstr "<strong>Или</strong> събития с тези <strong>Етикети</strong>"
929
-
930
- #: public/admin/agenda-widget-form.php:55
931
- msgid "No tags found."
932
- msgstr "Няма такива етикети."
933
-
934
- #: public/admin/agenda-widget-form.php:62
935
- msgid "Show <strong>View Calendar</strong> button"
936
- msgstr "Покажи бутон <strong>Виж календар</strong> "
937
-
938
- #: public/admin/agenda-widget-form.php:65
939
- msgid "Show <strong>Subscribe</strong> buttons"
940
- msgstr "Покажи бутон <strong>Абонирай се</strong> "
941
-
942
- #: public/admin/agenda-widget-form.php:68
943
- msgid "Hide this widget on calendar page"
944
- msgstr "Скрий този Widget на страница Календар"
945
-
946
- #: public/admin/box_ask_customer_review.php:5
947
- msgid "Enjoying All-in-One Event Calendar?"
948
- msgstr ""
949
-
950
- #: public/admin/box_ask_customer_review.php:13
951
- msgid "Not really"
952
- msgstr ""
953
-
954
- #: public/admin/box_ask_customer_review.php:20
955
- msgid "Yes!"
956
- msgstr ""
957
-
958
- #: public/admin/box_ask_customer_review.php:33
959
- msgid "How about a rating on the Wordpress?"
960
- msgstr ""
961
-
962
- #: lib/recurrence/rule.php:397
963
- msgid "Every %d weeks"
964
- msgstr "Всяка %d седмциа"
965
-
966
- #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
- msgid "Monthly"
968
- msgstr "Месечно"
969
-
970
- #: lib/recurrence/rule.php:409
971
- msgid "Every other month"
972
- msgstr "През месец"
973
-
974
- #: lib/recurrence/rule.php:412
975
- msgid "Every %d months"
976
- msgstr "Всеки %d месец"
977
-
978
- #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
- msgid "Yearly"
980
- msgstr "Годишно"
981
-
982
- #: lib/recurrence/rule.php:424
983
- msgid "Every other year"
984
- msgstr "През година"
985
-
986
- #: lib/recurrence/rule.php:427
987
- msgid "Every %d years"
988
- msgstr "През %d години"
989
-
990
- #: lib/recurrence/rule.php:465
991
- msgid "until %s"
992
- msgstr "до %s"
993
-
994
- #: lib/recurrence/rule.php:475
995
- msgid "for %d occurrences"
996
- msgstr "за %d повтарящи се събития"
997
-
998
- #: lib/recurrence/rule.php:479
999
- msgid "forever"
1000
- msgstr "завинаги"
1001
-
1002
- #: lib/robots/helper.php:71
1003
- msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
- msgstr "<strong>ERROR:</strong> Има грешка при свързването със сървъра. Моля проверете, дали настройките са правилни."
1005
-
1006
- #: lib/robots/helper.php:105
1007
- msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
- msgstr "<strong>ERROR:</strong> Има грешка при съхраняването на <strong>robots.txt</strong> на сървъра, файлът не мога да бъде написан."
1009
-
1010
- #: lib/theme/list.php:152
1011
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
- msgstr "В момента имате само една активирана тема за този сайт. Посетете Network Admin, за да <a href=\"%1$s\">направите достъпни</a> или <a href=\"%2$s\">инсталирате</a> повече теми."
1013
-
1014
- #: lib/theme/list.php:164
1015
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
- msgstr "В момента имате само една активирана тема за този сайт. Посетете Network Admin, за да <a href=\"%1$s\">направите достъпни</a> повече теми."
1017
-
1018
- #: lib/theme/list.php:179
1019
- msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
- msgstr "В момента имате само една активирана тема за този сайт. Може те да изберем между много безплатни теми в директорията на теми на Timely по всяко време: само натиснете таба по-горе <a href=\"%s\">Инсталирайте теми</a>."
1021
-
1022
- #: lib/theme/list.php:190
1023
- msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
- msgstr "Само активната тема е достъпна. Свържете се с Администратора на <em>%s</em>, за да добавите още теми."
1025
-
1026
- #: lib/theme/list.php:257
1027
- msgid "Activate &#8220;%s&#8221;"
1028
- msgstr "Активирай &#8220;%s&#8221;"
1029
-
1030
- #: lib/theme/list.php:264
1031
- msgid "Activate"
1032
- msgstr "Активирайте"
1033
-
1034
- #. translators: 1: theme title, 2: theme version, 3: theme author
1035
- #: lib/theme/list.php:281 public/admin/themes.php:25
1036
- msgid "%1$s %2$s by %3$s"
1037
- msgstr "%1$s %2$s на %3$s"
1038
-
1039
- #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
- #. title, 5: parent_theme
1041
- #: lib/theme/list.php:293
1042
- msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
- msgstr "Файловете на шаблона се намират в <code>%2$s</code>. Файловете на стилове (stylesheet) се намират в <code>%3$s</code>. <strong>%4$s</strong> използва шаблони от <strong>%5$s</strong>. Промени по тези шаблони ще се отразят и на двете теми."
1044
-
1045
- #: lib/theme/list.php:308
1046
- msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
- msgstr "Всички файлове от тема theme&#8217;s се намират в <code>%2$s</code>."
1048
-
1049
- #: lib/post/custom-type.php:36
1050
- msgid "Parent Event"
1051
- msgstr "Събитие родител"
1052
-
1053
- #: lib/post/custom-type.php:55
1054
- msgid "event"
1055
- msgstr "събитие"
1056
-
1057
- #: lib/post/custom-type.php:85
1058
- msgctxt "Event categories taxonomy"
1059
- msgid "Categories"
1060
- msgstr ""
1061
-
1062
- #: lib/post/custom-type.php:86
1063
- msgctxt "Event categories taxonomy (singular)"
1064
- msgid "Category"
1065
- msgstr ""
1066
-
1067
- #: lib/post/custom-type.php:87
1068
- msgctxt "Event categories menu item"
1069
- msgid "Organize"
1070
- msgstr ""
1071
-
1072
- #: lib/post/custom-type.php:94
1073
- msgctxt "Event tags taxonomy"
1074
- msgid "Tags"
1075
- msgstr ""
1076
-
1077
- #: lib/post/custom-type.php:95
1078
- msgctxt "Event tags taxonomy (singular)"
1079
- msgid "Tag"
1080
- msgstr ""
1081
-
1082
- #: lib/post/custom-type.php:102
1083
- msgctxt "Event feeds taxonomy"
1084
- msgid "Event Feeds"
1085
- msgstr "Абонаменти на събитието"
1086
-
1087
- #: lib/post/custom-type.php:103
1088
- msgctxt "Event feed taxonomy (singular)"
1089
- msgid "Event Feed"
1090
- msgstr "Абонамент (feed) на събитието"
1091
-
1092
- #: lib/post/custom-type.php:285
1093
- msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
- msgstr "Всички събития <span class=\"update-plugins count-%d\" title=\"%d Изчакващи събития\"><span class=\"update-count\">%d</span></span>"
1095
-
1096
- #: lib/post/custom-type.php:296
1097
- msgid "All Events"
1098
- msgstr "Всички събития"
1099
-
1100
- #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
- #: lib/recurrence/rule.php:260
1102
- msgctxt "Recurrence editor - weekly tab"
1103
- msgid "on"
1104
- msgstr "на"
1105
-
1106
- #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
- #: lib/recurrence/rule.php:326
1108
- msgid "and"
1109
- msgstr "и"
1110
-
1111
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
- #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
- msgctxt "Recurrence editor - monthly tab"
1114
- msgid "on"
1115
- msgstr "на"
1116
-
1117
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
- #: lib/recurrence/rule.php:286
1119
- msgid "of the month"
1120
- msgstr "от месеца"
1121
-
1122
- #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
- #: lib/recurrence/rule.php:336
1124
- msgctxt "Recurrence editor - yearly tab"
1125
- msgid "on"
1126
- msgstr "на"
1127
-
1128
- #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
- #: public/admin/cron_freq.php:9
1130
- msgid "Daily"
1131
- msgstr "Ежедневно"
1132
-
1133
- #: lib/recurrence/rule.php:379
1134
- msgid "Every other day"
1135
- msgstr "През ден"
1136
-
1137
- #: lib/recurrence/rule.php:382
1138
- msgid "Every %d days"
1139
- msgstr "Всеки %d дни"
1140
-
1141
- #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
- msgid "Weekly"
1143
- msgstr "Седмично"
1144
-
1145
- #: lib/recurrence/rule.php:394
1146
- msgid "Every other week"
1147
- msgstr "През седмица"
1148
-
1149
- #: lib/less/variable/font.php:64
1150
- msgid "Custom..."
1151
- msgstr "персонализирай..."
1152
-
1153
- #: lib/less/variable/font.php:112
1154
- msgid "Enter custom font(s)"
1155
- msgstr "Въведи персонализиран шрифт(ове)"
1156
-
1157
- #: lib/less/variable/size.php:26
1158
- msgid "Length"
1159
- msgstr "Дължина"
1160
-
1161
- #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
- msgid "All-in-One Event Calendar"
1163
- msgstr "All-in-One Event Calendar"
1164
-
1165
- #: lib/notification/admin.php:182
1166
- msgid "Got it – dismiss this"
1167
- msgstr ""
1168
-
1169
- #: lib/post/custom-type.php:26
1170
- msgctxt "Custom post type name"
1171
- msgid "Events"
1172
- msgstr "Събития"
1173
-
1174
- #: lib/post/custom-type.php:27
1175
- msgctxt "Custom post type name (singular)"
1176
- msgid "Event"
1177
- msgstr "Събитие"
1178
-
1179
- #: lib/post/custom-type.php:28
1180
- msgid "Add New"
1181
- msgstr "Добави ново"
1182
-
1183
- #: lib/post/custom-type.php:29
1184
- msgid "Add New Event"
1185
- msgstr "Добави ново събитие"
1186
-
1187
- #: lib/post/custom-type.php:30
1188
- msgid "Edit Event"
1189
- msgstr "Редактирай събитие"
1190
-
1191
- #: lib/post/custom-type.php:31
1192
- msgid "New Event"
1193
- msgstr "Ново събитие"
1194
-
1195
- #: lib/post/custom-type.php:32
1196
- msgid "View Event"
1197
- msgstr "Покажи събитието"
1198
-
1199
- #: lib/post/custom-type.php:33
1200
- msgid "Search Events"
1201
- msgstr "Търси събития"
1202
-
1203
- #: lib/post/custom-type.php:34
1204
- msgid "No Events found"
1205
- msgstr "Няма намерени събития"
1206
-
1207
- #: lib/post/custom-type.php:35
1208
- msgid "No Events found in Trash"
1209
- msgstr "Няма намерени събития в Кошчето"
1210
-
1211
- #: lib/html/element/setting/html.php:62
1212
- msgid "Filter by post ID:"
1213
- msgstr "Филтрирай по ID на публикацията:"
1214
-
1215
- #: lib/html/element/setting/html.php:63
1216
- msgid "Filter by post IDs (separate IDs by comma):"
1217
- msgstr "Филтрирай по ID на публикацията (разделяйте IDs със запетая)"
1218
-
1219
- #: lib/html/element/setting/html.php:64
1220
- msgid "Limit number of events per page:"
1221
- msgstr "Ограничи броя на събития на страница:"
1222
-
1223
- #: lib/html/element/setting/html.php:65
1224
- msgid "Warning:"
1225
- msgstr "Предупреждение:"
1226
-
1227
- #: lib/html/element/setting/html.php:66
1228
- msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
- msgstr "В момента не поддържаме опцията да се вграждат повече от един календар на една страница. Не се опитвайте да позиционирате втори календар чрез Super Widget на страница, която вече показва календар."
1230
-
1231
- #: lib/import-export/ics.php:831
1232
- msgid "Tickets: "
1233
- msgstr ""
1234
-
1235
- #: lib/html/element/setting/html.php:41
1236
- msgid "Day view:"
1237
- msgstr "Дневен изглед:"
1238
-
1239
- #: lib/html/element/setting/html.php:42
1240
- msgid "Agenda view:"
1241
- msgstr "Изглед График:"
1242
-
1243
- #: lib/html/element/setting/html.php:43
1244
- msgid "Some Other view:"
1245
- msgstr "Друг изглед:"
1246
-
1247
- #: lib/html/element/setting/html.php:44
1248
- msgid "Default view as per settings:"
1249
- msgstr "Стандартен изглед според настройките:"
1250
-
1251
- #: lib/html/element/setting/html.php:45
1252
- msgid "General form:"
1253
- msgstr "Основен формуляр:"
1254
-
1255
- #: lib/html/element/setting/html.php:46
1256
- msgid "Optional."
1257
- msgstr "Не е задължително."
1258
-
1259
- #: lib/html/element/setting/html.php:47
1260
- msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
- msgstr "Добави опции за показване на филтриран календар. (Можете да намерите ID на категориите и етикетите като проверите линка на страницата на филтрирания календар.)"
1262
-
1263
- #: lib/html/element/setting/html.php:48
1264
- msgid "Filter by event category name/slug:"
1265
- msgstr "Филтриране по име на категория на събитието/slug"
1266
-
1267
- #: lib/html/element/setting/html.php:49
1268
- msgid "Holidays"
1269
- msgstr "Празници"
1270
-
1271
- #: lib/html/element/setting/html.php:50
1272
- msgid "Lunar Cycles"
1273
- msgstr "Лунни цикли"
1274
-
1275
- #: lib/html/element/setting/html.php:51
1276
- msgid "zodiac-date-ranges"
1277
- msgstr "zodiac-date-ranges"
1278
-
1279
- #: lib/html/element/setting/html.php:52
1280
- msgid "Filter by event category names/slugs (separate names by comma):"
1281
- msgstr "Филтрирай по категория/slug на събитието (отделени със запетая)"
1282
-
1283
- #: lib/html/element/setting/html.php:53
1284
- msgid "Filter by event category ID:"
1285
- msgstr "Филтрирай по ID на категорията на събитието"
1286
-
1287
- #: lib/html/element/setting/html.php:54
1288
- msgid "Filter by event category IDs (separate IDs by comma):"
1289
- msgstr "Филтрирай по ID на категорията на събитието (отделени със запетая)"
1290
-
1291
- #: lib/html/element/setting/html.php:55
1292
- msgid "Filter by event tag name/slug:"
1293
- msgstr "Филтрирай по етикет/slug на събитието"
1294
-
1295
- #: lib/html/element/setting/html.php:56
1296
- msgid "tips-and-tricks"
1297
- msgstr "съвети-и-трикове"
1298
-
1299
- #: lib/html/element/setting/html.php:57
1300
- msgid "creative writing"
1301
- msgstr "свободно съчинение"
1302
-
1303
- #: lib/html/element/setting/html.php:58
1304
- msgid "performing arts"
1305
- msgstr "сценични изкуства"
1306
-
1307
- #: lib/html/element/setting/html.php:59
1308
- msgid "Filter by event tag names/slugs (separate names by comma):"
1309
- msgstr "Филтрирай по етикет/slug на събитиeто (отделени със запетая):"
1310
-
1311
- #: lib/html/element/setting/html.php:60
1312
- msgid "Filter by event tag ID:"
1313
- msgstr "Филтрирай по ID на етикета на събитието:"
1314
-
1315
- #: lib/html/element/setting/html.php:61
1316
- msgid "Filter by event tag IDs (separate IDs by comma):"
1317
- msgstr "Филтрирай по ID на етикета на събитието (отделени със запетая):"
1318
-
1319
- #: lib/exception/handler.php:395
1320
- msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
- msgstr ""
1322
-
1323
- #: lib/exception/handler.php:404
1324
- msgid "Try reactivating plugin"
1325
- msgstr ""
1326
-
1327
- #: lib/exception/handler.php:576
1328
- msgid "Toggle error details"
1329
- msgstr ""
1330
-
1331
- #: lib/exception/handler.php:577
1332
- msgid "Error Details:"
1333
- msgstr ""
1334
-
1335
- #: lib/factory/html.php:133
1336
- msgid "Choose a date using calendar"
1337
- msgstr "Избери дата използвайки календар"
1338
-
1339
- #: lib/factory/html.php:278
1340
- msgid "Tags (optional)"
1341
- msgstr "Етикети (незадължителни)"
1342
-
1343
- #: lib/html/element/setting/cache.php:38
1344
- msgid "Check again"
1345
- msgstr "Провери отново"
1346
-
1347
- #: lib/html/element/setting/cache.php:39
1348
- msgid "Templates cache is not writable"
1349
- msgstr "Кешът на шаблоните не е подходящ за писане."
1350
-
1351
- #: lib/html/element/setting/cache.php:40
1352
- msgid "Templates cache is writable"
1353
- msgstr "Кешът на шаблоните е подходящ за писане."
1354
-
1355
- #: lib/html/element/setting/cache.php:41
1356
- msgid "Checking..."
1357
- msgstr "Проверка..."
1358
-
1359
- #: lib/html/element/setting/cache.php:42
1360
- msgid "Performance Report"
1361
- msgstr "Доклад по изпълнението"
1362
-
1363
- #: lib/html/element/setting/calendar-page-selector.php:70
1364
- msgid "View"
1365
- msgstr "Изглед"
1366
-
1367
- #: lib/html/element/setting/calendar-page-selector.php:114
1368
- msgid "- Auto-Create New Page -"
1369
- msgstr "-Създай автоматично нова страница-"
1370
-
1371
- #: lib/html/element/setting/enabled-views.php:22
1372
- msgid "Enabled"
1373
- msgstr "Досъпен"
1374
-
1375
- #: lib/html/element/setting/enabled-views.php:23
1376
- msgid "Default"
1377
- msgstr "Стандартен"
1378
-
1379
- #: lib/html/element/setting/enabled-views.php:24
1380
- msgid "Desktop"
1381
- msgstr "Desktop"
1382
-
1383
- #: lib/html/element/setting/enabled-views.php:25
1384
- msgid "Mobile"
1385
- msgstr "Mobile"
1386
-
1387
- #: lib/html/element/setting/html.php:37
1388
- msgid "Embed the calendar using a shortcode"
1389
- msgstr "Вгради календара чрез shortcode"
1390
-
1391
- #: lib/html/element/setting/html.php:38
1392
- msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
- msgstr "Въведете един от тези shortcodes в тялото на вашата страница, за да вградите календара в която и да е друга WordPress страница:"
1394
-
1395
- #: lib/html/element/setting/html.php:39
1396
- msgid "Month view:"
1397
- msgstr "Месечен изглед:"
1398
-
1399
- #: lib/html/element/setting/html.php:40
1400
- msgid "Week view:"
1401
- msgstr "Седмичен изглед:"
1402
-
1403
- #: lib/css/frontend.php:239
1404
- msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
- msgstr ""
1406
-
1407
- #: lib/css/frontend.php:266
1408
- msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
- msgstr "Файлът LESS беше компилиран успешни, но имаше грешка докато запазвахме генерирания CSS."
1410
-
1411
- #: lib/css/frontend.php:272
1412
- msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
- msgstr "<p><strong>Имаше грешка при компилирането на CSS.</strong> Полученото съобщение беше: <em>%s</em></p>"
1414
-
1415
- #: lib/css/frontend.php:300
1416
- msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
- msgstr "Опциите на темата бяха успешно нулирани към стандартните им стойности.<a href='%s'>Посети сайт</a>"
1418
-
1419
- #: lib/css/frontend.php:307
1420
- msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
- msgstr "Опциите на темата бяха успешно опреснени.<a href='%s'>Посети сайт</a>"
1422
-
1423
- #: lib/css/frontend.php:343
1424
- msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
- msgstr "Вашият CSS бива компилиран на всяка заявка, което прави календара бавен. Настъпи следната грешка: %s"
1426
-
1427
- #: lib/database/applicator.php:182
1428
- msgid "Date columns in table %s have different types."
1429
- msgstr "Колоните на датите в таблицата %s са различни видове."
1430
-
1431
- #: lib/database/exception/database.php:19
1432
- msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
- msgstr "Опресняването на базата данни се провали. Моля, уверете се, че потребителя на бази данни, определен в <em>wp-config.php</em> има права да прави промени (<strong>ALTER TABLE</strong>) в на базата данни."
1434
-
1435
- #: lib/database/exception/database.php:23
1436
- msgid "Error encountered: %s"
1437
- msgstr "Има грешка: %s"
1438
-
1439
- #: lib/date/system.php:202
1440
- msgid "GMT%+d:%02d"
1441
- msgstr "GMT%+d:%02d"
1442
-
1443
- #: lib/date/timezone.php:362
1444
- msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
- msgstr "Моля изберете часовата зона в падащото меню %s <em>Timezone</em>."
1446
-
1447
- #: lib/date/timezone.php:397
1448
- msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
- msgstr "Часовата зона \"UTC%+d\" не е разпозната. Моля %suse valid%s име за часова зона, дотогава всички събития ще бъдат поставяне в зона UTC."
1450
-
1451
- #: lib/date/timezone.php:421
1452
- msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
- msgstr "Избраната часова зона \"UTC%+d\" ще бъде възприемана като %s."
1454
-
1455
- #: lib/date/timezone.php:490
1456
- msgid "Manual Offset"
1457
- msgstr "Ръчно отместване (offset)"
1458
-
1459
- #: lib/date/timezone.php:493
1460
- msgid "Choose your timezone"
1461
- msgstr "Избери часова зона"
1462
-
1463
- #: lib/environment/check.php:55
1464
- msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
- msgstr "Изберете опция от падащото меню на <strong>страница Календар</strong>."
1466
-
1467
- #: lib/environment/check.php:68
1468
- msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
- msgstr "Приставката е инсталирана, но не е конфигурирана. <a href=\"%s\">Натиснете тук, за да я конфигурирате сега &raquo;</a>"
1470
-
1471
- #: lib/environment/check.php:78
1472
- msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
- msgstr "Приставката е инсталирана, но не е конфигурирана. Моля, влезте като Администратор, за да конфигурирате."
1474
-
1475
- #: lib/environment/check.php:196
1476
- msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
- msgstr ""
1478
-
1479
- #: lib/environment/check.php:197
1480
- msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
- msgstr ""
1482
-
1483
- #: lib/exception/handler.php:176
1484
- msgid "The add-on \"%s\" has been disabled due to an error:"
1485
- msgstr ""
1486
-
1487
- #: lib/calendar-feed/ics.php:367
1488
- msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
- msgstr "Бихте ли искали да запазите импортнатите събития от календара или да ги премахнете?"
1490
-
1491
- #: lib/calendar-feed/ics.php:373
1492
- msgid "Removing ICS Feed"
1493
- msgstr "Премахва ICS Feed"
1494
-
1495
- #: lib/calendar-feed/ics.php:376
1496
- msgid "Keep Events"
1497
- msgstr "Запази събитията"
1498
-
1499
- #: lib/calendar-feed/ics.php:379
1500
- msgid "Remove Events"
1501
- msgstr "Премахни събитията"
1502
-
1503
- #: lib/calendar-feed/ics.php:519
1504
- msgid "Oh, submission was not accepted."
1505
- msgstr ""
1506
-
1507
- #: lib/calendar-feed/ics.php:699
1508
- msgid "Deleted %d events"
1509
- msgstr "Изтрити са %d събития"
1510
-
1511
- #: lib/calendar-feed/ics.php:735
1512
- msgid "Feed deleted"
1513
- msgstr "Изтрит абонамент (feed)"
1514
-
1515
- #: lib/captcha/provider/nocaptcha.php:31
1516
- msgid "noCAPTCHA public key:"
1517
- msgstr ""
1518
-
1519
- #: lib/captcha/provider/nocaptcha.php:47
1520
- msgid "noCAPTCHA private key:"
1521
- msgstr ""
1522
-
1523
- #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
- msgid "Please try verifying you are human again."
1525
- msgstr ""
1526
-
1527
- #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
- msgid "There was an error reading the human verification data. Please try again."
1529
- msgstr ""
1530
-
1531
- #: lib/captcha/provider/recaptcha.php:32
1532
- msgid "reCAPTCHA public key:"
1533
- msgstr ""
1534
-
1535
- #: lib/captcha/provider/recaptcha.php:48
1536
- msgid "reCAPTCHA private key:"
1537
- msgstr ""
1538
-
1539
- #: lib/captcha/provider/recaptcha.php:66
1540
- msgid "Human verification"
1541
- msgstr ""
1542
-
1543
- #: lib/captcha/provider/recaptcha.php:67
1544
- msgid "Loading reCAPTCHA..."
1545
- msgstr ""
1546
-
1547
- #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
- #: lib/clone/renderer-helper.php:45
1549
- msgid "Clone"
1550
- msgstr "Клонирай"
1551
-
1552
- #: lib/clone/renderer-helper.php:44
1553
- msgid "Make new copy of event"
1554
- msgstr "Направи ново копие на събитието"
1555
-
1556
- #: lib/clone/renderer-helper.php:47
1557
- msgid "Copy to a new draft"
1558
- msgstr "Копирай като нова чернова"
1559
-
1560
- #: lib/clone/renderer-helper.php:48
1561
- msgid "Clone to Draft"
1562
- msgstr "Клонирай като нова чернова"
1563
-
1564
- #: lib/command/clone.php:173
1565
- msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
- msgstr "<p>Събитието <strong>%s</strong> беше успешно клонирано. <a href=\"%s\">Редактирай клонираното събитие</a></p>"
1567
-
1568
- #: lib/compatibility/check.php:101
1569
- msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
- msgstr ""
1571
-
1572
- #: app/view/event/single.php:123
1573
- msgid "Tickets:"
1574
- msgstr ""
1575
-
1576
- #: app/view/event/single.php:124
1577
- msgid "Free"
1578
- msgstr "Безплатно"
1579
-
1580
- #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
- msgid "Buy Tickets"
1582
- msgstr "Купи билети"
1583
-
1584
- #: app/view/event/single.php:150
1585
- msgid "Edit this occurrence (%s)"
1586
- msgstr "Редактирай това повторение (%s)"
1587
-
1588
- #: app/view/event/single.php:195
1589
- msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
- msgstr ""
1591
-
1592
- #: app/view/event/single.php:206
1593
- msgid "View original"
1594
- msgstr ""
1595
-
1596
- #: app/view/event/taxonomy.php:113
1597
- msgid "Category image"
1598
- msgstr "Изображение на категорията"
1599
-
1600
- #: app/view/event/ticket.php:24
1601
- msgid "Register Now"
1602
- msgstr "Регистрирай се Сега"
1603
-
1604
- #: app/view/event/ticket.php:82
1605
- msgid "Event website"
1606
- msgstr "Сайт на събитието"
1607
-
1608
- #: app/view/event/time.php:84 app/view/event/time.php:118
1609
- msgctxt "Event time separator"
1610
- msgid " @ "
1611
- msgstr " @ "
1612
-
1613
- #: app/view/event/time.php:100
1614
- msgctxt "Event start/end separator"
1615
- msgid " – "
1616
- msgstr " – "
1617
-
1618
- #: app/view/event/time.php:166
1619
- msgid ", and "
1620
- msgstr ", и"
1621
-
1622
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
- msgid "Excludes: "
1624
- msgstr ""
1625
-
1626
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
- msgid "Repeats"
1628
- msgstr ""
1629
-
1630
- #: lib/calendar-feed/ics.php:38
1631
- msgid "ICS"
1632
- msgstr ""
1633
-
1634
- #: lib/calendar-feed/ics.php:69
1635
- msgid "Another import process in progress. Please try again later."
1636
- msgstr ""
1637
-
1638
- #: lib/calendar-feed/ics.php:174
1639
- msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
- msgstr "Системна грешка пречи данните на календара да се изтеглят. Нещо пречи на приставката да функционира правилно. Това съобщение трябва да помогне: %s"
1641
-
1642
- #: lib/calendar-feed/ics.php:181
1643
- msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
- msgstr "Данните на календара не могат да се изтеглят. Ако линкът е валиден и съдържа iCalendar източник, вероятно е резултат от временна грешка на сървъра и може да се оправи с времето."
1645
-
1646
- #: lib/calendar-feed/ics.php:195
1647
- msgid "Imported %s event"
1648
- msgid_plural "Imported %s events"
1649
- msgstr[0] ""
1650
- msgstr[1] ""
1651
-
1652
- #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
- msgid "Invalid ICS feed ID"
1654
- msgstr ""
1655
-
1656
- #: lib/calendar-feed/ics.php:350
1657
- msgid "Categories (optional)"
1658
- msgstr ""
1659
-
1660
- #: app/view/event/content.php:33 app/view/event/single.php:119
1661
- msgid "When:"
1662
- msgstr "Кога"
1663
-
1664
- #: app/view/event/content.php:34 app/view/event/single.php:120
1665
- msgid "Where:"
1666
- msgstr "Къде"
1667
-
1668
- #: app/view/event/content.php:125
1669
- msgid "Calendar"
1670
- msgstr ""
1671
-
1672
- #: app/view/event/content.php:126
1673
- msgid "View all events"
1674
- msgstr "Виж всички събития"
1675
-
1676
- #: app/view/event/location.php:96
1677
- msgid "Click to view map"
1678
- msgstr "Натисни, за да видиш карта"
1679
-
1680
- #: app/view/event/location.php:97
1681
- msgid "View Full-Size Map"
1682
- msgstr "Виж карта в голям размер"
1683
-
1684
- #: app/view/event/post.php:29
1685
- msgid "Event updated. <a href=\"%s\">View event</a>"
1686
- msgstr "Събитието е опреснено. <a href=\"%s\">Виж събитието</a>"
1687
-
1688
- #: app/view/event/post.php:32
1689
- msgid "Custom field updated."
1690
- msgstr "Персонализираните полета са опреснени."
1691
-
1692
- #: app/view/event/post.php:33
1693
- msgid "Custom field deleted."
1694
- msgstr "Персонализираните полета са изтрити."
1695
-
1696
- #: app/view/event/post.php:34
1697
- msgid "Event updated."
1698
- msgstr "Събитието е опреснено."
1699
-
1700
- #. translators: %s: date and time of the revision
1701
- #: app/view/event/post.php:38
1702
- msgid "Event restored to revision from %s"
1703
- msgstr "Събитието е възстановено към редакцията от %s"
1704
-
1705
- #: app/view/event/post.php:43
1706
- msgid "Event published. <a href=\"%s\">View event</a>"
1707
- msgstr "Събитието е публикувано. <a href=\"%s\">Виж събитието</a>"
1708
-
1709
- #: app/view/event/post.php:46
1710
- msgid "Event saved."
1711
- msgstr "Събитието е запазено."
1712
-
1713
- #: app/view/event/post.php:48
1714
- msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
- msgstr "Събитието е въведено. <a target=\"_blank\" href=\"%s\">Прегледай събитието</a>"
1716
-
1717
- #: app/view/event/post.php:52
1718
- msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
- msgstr "Събитието е насрочено за: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Прегледай събитието</a>"
1720
-
1721
- #. translators: Publish box date format, see http:php.net/date
1722
- #: app/view/event/post.php:54
1723
- msgid "M j, Y @ G:i"
1724
- msgstr "M j, Y @ G:i"
1725
-
1726
- #: app/view/event/post.php:58
1727
- msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
- msgstr "Черновата на събитието е опреснена. <a target=\"_blank\" href=\"%s\">Прегледай събитието</a>"
1729
-
1730
- #: app/view/event/single.php:78
1731
- msgid "Event was created in the %s time zone"
1732
- msgstr ""
1733
-
1734
- #: app/view/event/single.php:114
1735
- msgid "Add to Calendar"
1736
- msgstr "Добави в календара"
1737
-
1738
- #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
- msgid "Cost:"
1740
- msgstr "Цена: "
1741
-
1742
- #: app/view/event/single.php:122
1743
- msgid "Contact:"
1744
- msgstr "Контакт:"
1745
-
1746
- #: app/view/calendar/view/agenda.php:169
1747
- msgid "Categories:"
1748
- msgstr "Категории:"
1749
-
1750
- #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
- #: public/admin/themes.php:29
1752
- msgid "Tags:"
1753
- msgstr "Етикети:"
1754
-
1755
- #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
- #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
- #: app/view/calendar/widget.php:374
1758
- msgid "@ %s"
1759
- msgstr "@ %s"
1760
-
1761
- #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
- msgid "g a"
1763
- msgstr ""
1764
-
1765
- #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
- msgid "Reveal full day"
1767
- msgstr "Покажи целия ден"
1768
-
1769
- #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
- msgid "All-day"
1771
- msgstr "Цял ден"
1772
-
1773
- #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
- msgid "Now:"
1775
- msgstr "В момента:"
1776
-
1777
- #: app/view/calendar/view/week.php:67
1778
- msgid "Week of %s"
1779
- msgstr "Седмица започваща на %s"
1780
-
1781
- #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
- msgid "Upcoming Events"
1783
- msgstr "Предстоящи събития"
1784
-
1785
- #: app/view/calendar/widget.php:38
1786
- msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
- msgstr "All-in-One Event Calendar: Изрежда предстоящи събития в изглед График"
1788
-
1789
- #: app/view/calendar/widget.php:80
1790
- msgid "Choose how to limit the upcoming events"
1791
- msgstr ""
1792
-
1793
- #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
- msgid "Events"
1795
- msgstr "Събития"
1796
-
1797
- #: app/view/calendar/widget.php:93
1798
- msgid "Days"
1799
- msgstr ""
1800
-
1801
- #: app/view/calendar/widget.php:106
1802
- msgid "Number of events to show"
1803
- msgstr ""
1804
-
1805
- #: app/view/calendar/widget.php:115
1806
- msgid "Number of days to show"
1807
- msgstr ""
1808
-
1809
- #: app/view/calendar/widget.php:124
1810
- msgid "Show events filtered for the following tags/categories"
1811
- msgstr ""
1812
-
1813
- #: app/view/calendar/widget.php:141
1814
- msgid "Show the subscribe button in the widget"
1815
- msgstr ""
1816
-
1817
- #: app/view/calendar/widget.php:370
1818
- msgid "There are no upcoming events."
1819
- msgstr "Няма предстоящи събития"
1820
-
1821
- #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
- msgid "all-day"
1823
- msgstr "цял-ден"
1824
-
1825
- #: app/view/calendar/widget.php:372
1826
- msgid "View Calendar"
1827
- msgstr "Виж календара"
1828
-
1829
- #: app/view/calendar/widget.php:375
1830
- msgid "Add"
1831
- msgstr "Добави"
1832
-
1833
- #: app/view/calendar/page.php:260
1834
- msgid "Subscribe to filtered calendar"
1835
- msgstr "Абонирай се за филтриран календар"
1836
-
1837
- #: app/view/calendar/page.php:261
1838
- msgid "Subscribe"
1839
- msgstr "Абонирай се"
1840
-
1841
- #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
- msgid "Get a Timely Calendar"
1843
- msgstr ""
1844
-
1845
- #: app/view/calendar/subscribe-button.php:22
1846
- msgid "Add to Timely Calendar"
1847
- msgstr "Добави към Timely календар"
1848
-
1849
- #: app/view/calendar/subscribe-button.php:23
1850
- msgid "Add to Google"
1851
- msgstr "Добави към Google календар"
1852
-
1853
- #: app/view/calendar/subscribe-button.php:24
1854
- msgid "Add to Outlook"
1855
- msgstr "Добави към Outlook"
1856
-
1857
- #: app/view/calendar/subscribe-button.php:25
1858
- msgid "Add to Apple Calendar"
1859
- msgstr "Добави към Apple календар"
1860
-
1861
- #: app/view/calendar/subscribe-button.php:26
1862
- msgid "Add to other calendar"
1863
- msgstr "Добави към друг календар"
1864
-
1865
- #: app/view/calendar/subscribe-button.php:29
1866
- msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
- msgstr "Копирайте този линк за Вашия личен Timely календар или кликнете, за да добавите към Вашия rich-text календар"
1868
-
1869
- #: app/view/calendar/subscribe-button.php:30
1870
- msgid "Subscribe to this calendar in your Google Calendar"
1871
- msgstr "Абонирай се за този календар в своя Google каленар"
1872
-
1873
- #: app/view/calendar/subscribe-button.php:31
1874
- msgid "Subscribe to this calendar in MS Outlook"
1875
- msgstr "Абонирай се за този календар в MS Outlook"
1876
-
1877
- #: app/view/calendar/subscribe-button.php:32
1878
- msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
- msgstr "Абонирай се за този календар в Apple Calendar/iCal"
1880
-
1881
- #: app/view/calendar/subscribe-button.php:33
1882
- msgid "Subscribe to this calendar in another plain-text calendar"
1883
- msgstr "Абонирай се за този календар в друг текстов календар"
1884
-
1885
- #: app/view/calendar/taxonomy.php:97
1886
- msgid "Clear category filter"
1887
- msgstr "Изчисти филтър по категория"
1888
-
1889
- #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
- #: lib/html/element/setting/tags-categories.php:47
1891
- msgid "Categories"
1892
- msgstr "Категории"
1893
-
1894
- #: app/view/calendar/taxonomy.php:99
1895
- msgid "Clear tag filter"
1896
- msgstr "Изчисти филтър по етикет"
1897
-
1898
- #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
- #: lib/html/element/setting/tags-categories.php:39
1900
- msgid "Tags"
1901
- msgstr "Етикети"
1902
-
1903
- #: app/view/calendar/view/agenda.php:142
1904
- msgid "Collapse All"
1905
- msgstr "Скрий подробности"
1906
-
1907
- #: app/view/calendar/view/agenda.php:143
1908
- msgid "Expand All"
1909
- msgstr "Покажи подробности"
1910
-
1911
- #: app/view/calendar/view/agenda.php:166
1912
- msgid "There are no upcoming events to display at this time."
1913
- msgstr "Към момента няма предстоящи събития"
1914
-
1915
- #: app/view/calendar/view/agenda.php:168
1916
- msgid "Read more"
1917
- msgstr "Подрбности"
1918
-
1919
- #: app/view/admin/tickets.php:86
1920
- msgid "Sales"
1921
- msgstr ""
1922
-
1923
- #: app/view/admin/tickets.php:87
1924
- msgid "How do you want the tickets revenue to be sent to you?"
1925
- msgstr ""
1926
-
1927
- #: app/view/admin/tickets.php:88
1928
- msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
- msgstr ""
1930
-
1931
- #: app/view/admin/tickets.php:91
1932
- msgid "Cheque"
1933
- msgstr ""
1934
-
1935
- #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
- msgid "Paypal"
1937
- msgstr "Paypal"
1938
-
1939
- #: app/view/admin/tickets.php:94
1940
- msgid "Save Changes"
1941
- msgstr ""
1942
-
1943
- #: app/view/admin/tickets.php:95
1944
- msgid "Date"
1945
- msgstr ""
1946
-
1947
- #: app/view/admin/tickets.php:96
1948
- msgid "Event"
1949
- msgstr ""
1950
-
1951
- #: app/view/admin/tickets.php:97
1952
- msgid "Purchaser"
1953
- msgstr ""
1954
-
1955
- #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
- #: public/admin/box_event_cost.php:35
1957
- msgid "Tickets"
1958
- msgstr "Билети"
1959
-
1960
- #: app/view/admin/tickets.php:101
1961
- msgid "Total"
1962
- msgstr ""
1963
-
1964
- #: app/view/admin/tickets.php:102
1965
- msgid "Sign Out"
1966
- msgstr ""
1967
-
1968
- #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
- #: app/view/admin/widget-creator.php:47
1970
- msgid "Widget Creator"
1971
- msgstr ""
1972
-
1973
- #: app/view/admin/widget-creator.php:74
1974
- msgctxt "meta box"
1975
- msgid "Widget Creator"
1976
- msgstr ""
1977
-
1978
- #: app/view/admin/widget-creator.php:131
1979
- msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
- msgstr ""
1981
-
1982
- #: app/view/admin/widget-creator.php:132
1983
- msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
- msgstr ""
1985
-
1986
- #: app/view/admin/widget-creator.php:134
1987
- msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
- msgstr ""
1989
-
1990
- #: app/view/admin/widget-creator.php:140
1991
- msgid "Paste this code onto your site:"
1992
- msgstr ""
1993
-
1994
- #: app/view/admin/widget-creator.php:141
1995
- msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
- msgstr ""
1997
-
1998
- #: app/view/calendar/page.php:54
1999
- msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
- msgstr "Получи се грешка при зареждането на календара. Свършете се с администратора на сайта и го информирайте да конфигурира изгледите на календара."
2001
-
2002
- #: app/view/calendar/page.php:74
2003
- msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
- msgstr ""
2005
-
2006
- #: app/view/admin/settings.php:193
2007
- msgid "Phone Number:"
2008
- msgstr ""
2009
-
2010
- #: app/view/admin/settings.php:194
2011
- msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
- msgstr ""
2013
-
2014
- #: app/view/admin/settings.php:197
2015
- msgid "Sign Up"
2016
- msgstr ""
2017
-
2018
- #: app/view/admin/settings.php:198
2019
- msgid "Sign In"
2020
- msgstr ""
2021
-
2022
- #: app/view/admin/settings.php:212
2023
- msgid "Save Settings"
2024
- msgstr "Запази настройките"
2025
-
2026
- #: app/view/admin/settings.php:219
2027
- msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
- msgstr "Ако формулярът по-долу не работи, моля натиснете <a href=\"%s\">този линк</a>."
2029
-
2030
- #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
- msgid "Theme Options"
2032
- msgstr "Опции на темата"
2033
-
2034
- #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
- msgid "Calendar Theme Options"
2036
- msgstr "Опции на календарната тема"
2037
-
2038
- #: app/view/admin/theme-options.php:79
2039
- msgctxt "meta box"
2040
- msgid "Calendar Theme Options"
2041
- msgstr "Опции на календарната тема"
2042
-
2043
- #: app/view/admin/theme-options.php:133
2044
- msgid "General"
2045
- msgstr "Основен"
2046
-
2047
- #: app/view/admin/theme-options.php:136
2048
- msgid "Tables"
2049
- msgstr "Таблици"
2050
-
2051
- #: app/view/admin/theme-options.php:139
2052
- msgid "Buttons"
2053
- msgstr "Бутони"
2054
-
2055
- #: app/view/admin/theme-options.php:142
2056
- msgid "Forms"
2057
- msgstr "Формуляри"
2058
-
2059
- #: app/view/admin/theme-options.php:145
2060
- msgid "Calendar general"
2061
- msgstr "Основен календар"
2062
-
2063
- #: app/view/admin/theme-options.php:148
2064
- msgid "Month/week/day view"
2065
- msgstr "Изглед месец/седмица/ден"
2066
-
2067
- #: app/view/admin/theme-options.php:151
2068
- msgid "Agenda view"
2069
- msgstr "Изглед График"
2070
-
2071
- #: app/view/admin/theme-options.php:169
2072
- msgid "Save Options"
2073
- msgstr "Запази Опциите"
2074
-
2075
- #: app/view/admin/theme-options.php:177
2076
- msgid "Reset to Defaults"
2077
- msgstr "Нулиране към стандартни параметри"
2078
-
2079
- #: app/view/admin/theme-switching.php:31
2080
- msgid "All-in-One Event Calendar: Themes"
2081
- msgstr "All-in-One Event Calendar: Теми"
2082
-
2083
- #: app/view/admin/tickets.php:36
2084
- msgid "Ticketing"
2085
- msgstr ""
2086
-
2087
- #: app/view/admin/tickets.php:37
2088
- msgid "Ticketing<sup>beta</sup>"
2089
- msgstr ""
2090
-
2091
- #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
- msgid "Time.ly Ticketing<sup>beta</sup>"
2093
- msgstr ""
2094
-
2095
- #: app/view/admin/settings.php:98
2096
- msgctxt "meta box"
2097
- msgid "Timely"
2098
- msgstr "Timely"
2099
-
2100
- #: app/view/admin/settings.php:140
2101
- msgid "Viewing Events"
2102
- msgstr "Преглед на събитията"
2103
-
2104
- #: app/view/admin/settings.php:143
2105
- msgid "Adding/Editing Events"
2106
- msgstr "Добавяне/Редакция на събития"
2107
-
2108
- #: app/view/admin/settings.php:146
2109
- msgid "Advanced"
2110
- msgstr "Допълнителни (настройки)"
2111
-
2112
- #: app/view/admin/settings.php:148
2113
- msgid "Advanced Settings"
2114
- msgstr "Допълнителни настройки"
2115
-
2116
- #: app/view/admin/settings.php:149
2117
- msgid "Shortcodes"
2118
- msgstr "Shortcodes"
2119
-
2120
- #: app/view/admin/settings.php:150
2121
- msgid "Email Templates"
2122
- msgstr "Шаблони за E-mail"
2123
-
2124
- #: app/view/admin/settings.php:151
2125
- msgid "External Services"
2126
- msgstr "Външни услуги"
2127
-
2128
- #: app/view/admin/settings.php:152
2129
- msgid "Cache Report"
2130
- msgstr "Доклад на кеша"
2131
-
2132
- #: app/view/admin/settings.php:171
2133
- msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
- msgstr ""
2135
-
2136
- #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
- #: public/admin/box_ask_customer_review.php:112
2138
- #: public/admin/box_ask_customer_review.php:126
2139
- #: public/admin/box_ask_customer_review.php:140
2140
- #: public/admin/box_ask_customer_review.php:158
2141
- #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
- msgid "This field is required."
2143
- msgstr ""
2144
-
2145
- #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
- msgid "Register"
2147
- msgstr "Регистрация"
2148
-
2149
- #: app/view/admin/settings.php:184
2150
- msgid "Sign in"
2151
- msgstr ""
2152
-
2153
- #: app/view/admin/settings.php:185
2154
- msgid "You are successfully signed in to <b>Timely Network</b>."
2155
- msgstr ""
2156
-
2157
- #: app/view/admin/settings.php:186
2158
- msgid "Sign out"
2159
- msgstr ""
2160
-
2161
- #: app/view/admin/settings.php:187
2162
- msgid "Hide form"
2163
- msgstr ""
2164
-
2165
- #: app/view/admin/settings.php:188
2166
- msgid "Show form"
2167
- msgstr ""
2168
-
2169
- #: app/view/admin/settings.php:189
2170
- msgid "Full Name:"
2171
- msgstr ""
2172
-
2173
- #: app/view/admin/settings.php:190
2174
- msgid "Email:"
2175
- msgstr ""
2176
-
2177
- #: app/view/admin/settings.php:191
2178
- msgid "Password:"
2179
- msgstr ""
2180
-
2181
- #: app/view/admin/settings.php:192
2182
- msgid "Confirm Password:"
2183
- msgstr ""
2184
-
2185
- #: app/view/admin/get-repeat-box.php:483
2186
- msgid "fourth"
2187
- msgstr "четвърта/и"
2188
-
2189
- #: app/view/admin/get-repeat-box.php:495
2190
- msgid "Sunday"
2191
- msgstr "неделя"
2192
-
2193
- #: app/view/admin/get-repeat-box.php:496
2194
- msgid "Monday"
2195
- msgstr "Понеделник"
2196
-
2197
- #: app/view/admin/get-repeat-box.php:497
2198
- msgid "Tuesday"
2199
- msgstr "Вторник"
2200
-
2201
- #: app/view/admin/get-repeat-box.php:498
2202
- msgid "Wednesday"
2203
- msgstr "Сряда"
2204
-
2205
- #: app/view/admin/get-repeat-box.php:499
2206
- msgid "Thursday"
2207
- msgstr "Четвъртък"
2208
-
2209
- #: app/view/admin/get-repeat-box.php:500
2210
- msgid "Friday"
2211
- msgstr "Петък"
2212
-
2213
- #: app/view/admin/get-repeat-box.php:501
2214
- msgid "Saturday"
2215
- msgstr "Събота"
2216
-
2217
- #: app/view/admin/get-repeat-box.php:503
2218
- msgid "day"
2219
- msgstr "ден"
2220
-
2221
- #: app/view/admin/get-repeat-box.php:504
2222
- msgid "weekday"
2223
- msgstr "делник"
2224
-
2225
- #: app/view/admin/get-repeat-box.php:505
2226
- msgid "weekend day"
2227
- msgstr "събота или неделя"
2228
-
2229
- #: app/view/admin/get-repeat-box.php:571
2230
- msgid "year(s)"
2231
- msgstr "година/и"
2232
-
2233
- #: app/view/admin/nav.php:22
2234
- msgid "<a href=\"%s\">Settings</a>"
2235
- msgstr "<a href=\"%s\">Настройки</a>"
2236
-
2237
- #: app/view/admin/nav.php:28
2238
- msgid "<a href=\"%s\">Check for updates</a>"
2239
- msgstr ""
2240
-
2241
- #: app/view/admin/organize.php:100
2242
- msgid "Organize Events"
2243
- msgstr ""
2244
-
2245
- #: app/view/admin/settings.php:30
2246
- msgid "All-in-One Event Calendar: Settings"
2247
- msgstr "All-in-One Event Calendar: Настройки"
2248
-
2249
- #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
- #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
- msgid "Settings"
2252
- msgstr "Настройки"
2253
-
2254
- #: app/view/admin/settings.php:89
2255
- msgctxt "meta box"
2256
- msgid "General Settings"
2257
- msgstr "Общи настройки"
2258
-
2259
- #: app/view/admin/get-repeat-box.php:480
2260
- msgid "first"
2261
- msgstr "последен/на"
2262
-
2263
- #: app/view/admin/get-repeat-box.php:481
2264
- msgid "second"
2265
- msgstr "втори/а"
2266
-
2267
- #: app/view/admin/get-repeat-box.php:482
2268
- msgid "third"
2269
- msgstr "трети/та"
2270
-
2271
- #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
- msgid "Import Feeds"
2273
- msgstr ""
2274
-
2275
- #: app/view/admin/calendar-feeds.php:48
2276
- msgctxt "meta box"
2277
- msgid "Feed Subscriptions"
2278
- msgstr "Абонаменти (feed subscriptions)"
2279
-
2280
- #: app/view/admin/calendar-feeds.php:65
2281
- msgid "All-in-One Event Calendar: Import Feeds"
2282
- msgstr ""
2283
-
2284
- #: app/view/admin/event-category.php:30
2285
- msgid "Color"
2286
- msgstr "Цвят"
2287
-
2288
- #: app/view/admin/event-category.php:32
2289
- msgid "Image"
2290
- msgstr "Изображение"
2291
-
2292
- #: app/view/admin/event-category.php:155
2293
- msgid "Category Color"
2294
- msgstr "Цвят на категория"
2295
-
2296
- #: app/view/admin/event-category.php:156
2297
- msgid "Events in this category will be identified by this color"
2298
- msgstr "Събитията в тази категория ще бъдат идентифицирани с този цвят"
2299
-
2300
- #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
- msgid "Category Image"
2302
- msgstr "Изображение на категорията"
2303
-
2304
- #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
- msgid "Add Image"
2306
- msgstr "Добави изображение"
2307
-
2308
- #: app/view/admin/event-category.php:195
2309
- msgid "Remove Image"
2310
- msgstr "Премахни изображение"
2311
-
2312
- #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
- msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
- msgstr "Задайте стандартно изображение за категорията. Препоръчителен размер: квадрат, minimum 400&times;400 pixels."
2315
-
2316
- #: app/view/admin/get-repeat-box.php:94
2317
- msgid "times"
2318
- msgstr "пъти"
2319
-
2320
- #: app/view/admin/get-repeat-box.php:164
2321
- msgid "Recurrence rule cannot be empty."
2322
- msgstr "Правилото на повторение не може да отсъства"
2323
-
2324
- #: app/view/admin/get-repeat-box.php:182
2325
- msgid "Recurrence rule was not provided."
2326
- msgstr "Не е представено правило за повторение."
2327
-
2328
- #: app/view/admin/get-repeat-box.php:209
2329
- msgid "Never"
2330
- msgstr "Никога"
2331
-
2332
- #: app/view/admin/get-repeat-box.php:210
2333
- msgid "After"
2334
- msgstr "След"
2335
-
2336
- #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
- msgid "On date"
2338
- msgstr "На дата"
2339
-
2340
- #: app/view/admin/get-repeat-box.php:247
2341
- msgid "day(s)"
2342
- msgstr "ден/дни"
2343
-
2344
- #: app/view/admin/get-repeat-box.php:330
2345
- msgid "week(s)"
2346
- msgstr "Седмица/и"
2347
-
2348
- #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
- #: lib/recurrence/rule.php:298
2350
- msgid "last"
2351
- msgstr "последен/на"
2352
-
2353
- #: app/view/admin/get-repeat-box.php:426
2354
- msgid "month(s)"
2355
- msgstr "месец(и)"
2356
-
2357
- #: app/model/settings.php:929
2358
- msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
- msgstr "<strong>Свържи CSS</strong> в <code>&lt;head&gt;</code> сектор, когато кешът на файла не е наличен."
2360
-
2361
- #: app/model/settings.php:932
2362
- msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
- msgstr "Използвайте тази опция ако кеша на файла не е наличен и предпочитате да поднесете CSS като линк, отколкото да се изведе inline."
2364
-
2365
- #: app/model/settings.php:944
2366
- msgid "Current <strong>robots.txt</strong> on this site"
2367
- msgstr "Същестуващ <strong>robots.txt</strong> на този сайт"
2368
-
2369
- #: app/model/settings.php:948
2370
- msgid ""
2371
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
- "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
- "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
- "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
- "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
- msgstr ""
2377
-
2378
- #: app/model/settings.php:965
2379
- msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2380
- msgstr "Публикувай, промотирай и сподели моите събития"
2381
-
2382
- #: app/model/settings.php:988
2383
- msgid "Templates cache improves site performance"
2384
- msgstr "Кешът на шаблоните подобрява дейността на сайтa"
2385
-
2386
- #: app/model/settings.php:1001
2387
- msgid "Display events in <strong>calendar time zone</strong>"
2388
- msgstr ""
2389
-
2390
- #: app/model/settings.php:1004
2391
- msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2392
- msgstr ""
2393
-
2394
- #: app/view/admin/add-new-event.php:26
2395
- msgid "Event Details"
2396
- msgstr "Подробности за събитието"
2397
-
2398
- #: app/view/admin/add-new-event.php:423
2399
- msgid "Set banner image"
2400
- msgstr ""
2401
-
2402
- #: app/view/admin/add-new-event.php:424
2403
- msgid "Remove banner image"
2404
- msgstr ""
2405
-
2406
- #: app/view/admin/add-ons.php:68
2407
- msgid "Add-ons for All In One Event Calendar"
2408
- msgstr ""
2409
-
2410
- #: app/view/admin/add-ons.php:71
2411
- msgid "Browse All Extensions"
2412
- msgstr ""
2413
-
2414
- #: app/view/admin/add-ons.php:74
2415
- msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2416
- msgstr ""
2417
-
2418
- #: app/view/admin/add-ons.php:77
2419
- msgid "There was an error retrieving the extensions list from the server. Please try again later."
2420
- msgstr ""
2421
-
2422
- #: app/view/admin/all-events.php:16
2423
- msgid "Author"
2424
- msgstr "Автор"
2425
-
2426
- #: app/view/admin/all-events.php:17
2427
- msgid "Post Date"
2428
- msgstr "Дата на публикувация"
2429
-
2430
- #: app/view/admin/all-events.php:18
2431
- msgid "Event date/time"
2432
- msgstr "Дата и час на събитието"
2433
-
2434
- #: app/view/admin/all-events.php:22
2435
- msgid "Ticket Types"
2436
- msgstr ""
2437
-
2438
- #: app/view/admin/all-events.php:134
2439
- msgid "Show All "
2440
- msgstr "Покажи всички"
2441
-
2442
- #: app/view/admin/all-events.php:147
2443
- msgid "Show All Authors"
2444
- msgstr ""
2445
-
2446
- #: app/model/settings.php:746
2447
- msgid "Strict compatibility content filtering"
2448
- msgstr "Строго филтриране на съвместимостта"
2449
-
2450
- #: app/model/settings.php:758
2451
- msgid " <strong>Hide featured image</strong> from event details page"
2452
- msgstr " <strong>Скрий показаното изображение</strong> от страницата с подробностите за събитието"
2453
-
2454
- #: app/model/settings.php:761
2455
- msgid "Select this option if your theme already displays each post's featured image."
2456
- msgstr "Изберете тази опция ако темата вече показва изображението (featured) на всеки пост/публикация."
2457
-
2458
- #: app/model/settings.php:772
2459
- msgid "Input dates in this format"
2460
- msgstr "Въведете датите в този формат"
2461
-
2462
- #: app/model/settings.php:777
2463
- msgid "Default (d/m/yyyy)"
2464
- msgstr "По подразбиране (d/m/yyyy), например 3/12/2014"
2465
-
2466
- #: app/model/settings.php:781
2467
- msgid "US (m/d/yyyy)"
2468
- msgstr "US (m/d/yyyy)"
2469
-
2470
- #: app/model/settings.php:785
2471
- msgid "ISO 8601 (yyyy-m-d)"
2472
- msgstr "ISO 8601 (yyyy-m-d)"
2473
-
2474
- #: app/model/settings.php:789
2475
- msgid "Dotted (m.d.yyyy)"
2476
- msgstr "Dotted (m.d.yyyy)"
2477
-
2478
- #: app/model/settings.php:801
2479
- msgid " Use <strong>24h time</strong> in time pickers"
2480
- msgstr "Използвай <strong>24-часов формат</strong> в представяне на часа"
2481
-
2482
- #: app/model/settings.php:812
2483
- msgid "<strong>Disable address autocomplete</strong> function"
2484
- msgstr "Направете недостъпна <strong>Функция за автоматично довършване на адреса</strong>"
2485
-
2486
- #: app/model/settings.php:823
2487
- msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2488
- msgstr "Използвайте конфигурирания <strong>регион</strong> (WordPress locale), за да предопределите функция за автоматично довършване "
2489
-
2490
- #: app/model/settings.php:839
2491
- msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2492
- msgstr "Покажете стария бутон <strong>Публикувай своето събитие</strong> над календара за привилегировани потребители."
2493
-
2494
- #: app/model/settings.php:842
2495
- msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2496
- msgstr "Инсталирай <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> за <strong>фронт енд формуляра Публикувай своето събитие</strong>."
2497
-
2498
- #: app/model/settings.php:863
2499
- msgid "Move calendar into this DOM element"
2500
- msgstr "Преместване на календара в DOM element"
2501
-
2502
- #: app/model/settings.php:865
2503
- msgid ""
2504
- "Optional. Use this JavaScript-based shortcut to place the\n"
2505
- "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2506
- "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2507
- "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2508
- "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2509
- "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2510
- "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2511
- "\t\t\t\t\t\tby the calendar."
2512
- msgstr ""
2513
-
2514
- #: app/model/settings.php:884
2515
- msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2516
- msgstr "<strong>Прескочи <tt>in_the_loop()</tt> check </strong>, което предпазва от многократни календарни резултати "
2517
-
2518
- #: app/model/settings.php:887
2519
- msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2520
- msgstr "Опитайте се да активирате тази опция ако календарът не не появява на календарната страница. Това е необходимо за съвместимост на малък брой теми, които извикват формуляра <tt>the_content()</tt> извън The Loop. Иначе го оставане недостъпно."
2521
-
2522
- #: app/model/settings.php:899
2523
- msgid "Disable <strong>gzip</strong> compression."
2524
- msgstr "Направи компресията <strong>gzip</strong> недостъпна."
2525
-
2526
- #: app/model/settings.php:902
2527
- msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2528
- msgstr "Използвайте тази опция, само ако календара не е адаптивен. <a href=\"http://support.time.ly/disable-gzip-compression/\">Виж още</a> по този въпрос. (От версия 2.1 нагоре, gzip е недостъпен по подразбиране за максимална съвместимост.)"
2529
-
2530
- #: app/model/settings.php:914
2531
- msgid "Use frontend rendering."
2532
- msgstr ""
2533
-
2534
- #: app/model/settings.php:917
2535
- msgid "Renders calendar views on the client rather than the server; can improve performance."
2536
- msgstr ""
2537
-
2538
- #: app/model/settings.php:493 app/view/calendar/widget.php:128
2539
- msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2540
- msgstr "За да изчистите маркираното, задръжте &#8984;/<abbr class=\"initialism\">CTRL</abbr> и размаркирайте."
2541
-
2542
- #: app/model/settings.php:508
2543
- msgid "Default calendar start date (optional)"
2544
- msgstr "Начална дата на календара по подразбиране (незадължително)"
2545
-
2546
- #: app/model/settings.php:519
2547
- msgid "Agenda pages show at most"
2548
- msgstr "Изгледът График показва най-много"
2549
-
2550
- #: app/model/settings.php:532
2551
- msgid "Week/Day view starts at"
2552
- msgstr "Седмичен/Дневен изглед започва на"
2553
-
2554
- #: app/model/settings.php:545
2555
- msgid "Week/Day view ends at"
2556
- msgstr "Седмичен/Дневен изглед приключва на"
2557
-
2558
- #: app/model/settings.php:558
2559
- msgid "<strong>Word-wrap event stubs</strong> in Month view"
2560
- msgstr "<strong>Пренеси думите в тестето със събития</strong> в Месечен изглед"
2561
-
2562
- #: app/model/settings.php:561
2563
- msgid "Only applies to events that span a single day."
2564
- msgstr "Отнася се само за събития, които обхващат на един ден."
2565
-
2566
- #: app/model/settings.php:573
2567
- msgid ""
2568
- "In <span class=\"ai1ec-tooltip-toggle\"\n"
2569
- "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2570
- "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2571
- "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2572
- "\t\t\t\t\t\tfrom last day shown</strong>"
2573
- msgstr ""
2574
- "В <span class=\"ai1ec-tooltip-toggle\"\n"
2575
- "→\t→\t→\t→\t→\t→\tdata-original-title=\"Включително изглед График,\n"
2576
- "→\t→\t→\t→\t→\t→\tуиджет Предстоящи събития, и някой разширени изгледи.\">\n"
2577
- "→\t→\t→\t→\t→\t→\tИзгледи близки до изглед Градик</span>, <strong>включват всички събития\n"
2578
- "→\t→\t→\t→\t→\t→\tот последния показан ден</strong>"
2579
-
2580
- #: app/model/settings.php:589
2581
- msgid "Keep all events <strong>expanded</strong> in Agenda view"
2582
- msgstr "Показвай всички събития <strong>разгърнати</strong> в изглед График"
2583
-
2584
- #: app/model/settings.php:601
2585
- msgid "<strong>Show year</strong> in calendar date labels"
2586
- msgstr "<strong>Покажи годината</strong> в етикета на календарните дати"
2587
-
2588
- #: app/model/settings.php:613
2589
- msgid "<strong>Show location in event titles</strong> in calendar views"
2590
- msgstr "<strong>Покажи мястото в каретата на събитията</strong> в календарните изгледи"
2591
-
2592
- #: app/model/settings.php:625
2593
- msgid "<strong>Exclude</strong> events from search results"
2594
- msgstr "<strong>Изключи</strong> събитията от резултатите на търсачката"
2595
-
2596
- #: app/model/settings.php:637
2597
- msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2598
- msgstr "Скрий бутоните <strong>Абонамент</strong>/<strong>Добави към календар</strong> в календарен и самостоятелен изглед на събитие"
2599
-
2600
- #: app/model/settings.php:649
2601
- msgid "Hide <strong>Get a Timely Calendar</strong> button"
2602
- msgstr ""
2603
-
2604
- #: app/model/settings.php:661
2605
- msgid " Hide <strong>Google Maps</strong> until clicked"
2606
- msgstr "Скрий <strong>Google Maps</strong> докато не са натиснати"
2607
-
2608
- #: app/model/settings.php:673
2609
- msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2610
- msgstr " <strong>Прикрепи менюто за филтриране</strong> към горния край на прозореца, когато се скрива при превъртане на изгледа"
2611
-
2612
- #: app/model/settings.php:676
2613
- msgid "Only applies to first visible calendar found on the page."
2614
- msgstr ""
2615
-
2616
- #: app/model/settings.php:688
2617
- msgid "Offset affixed filter bar vertically by"
2618
- msgstr "Отмести прикрепената лента на филтъра вертикално с"
2619
-
2620
- #: app/model/settings.php:703
2621
- msgid "Wide screens only (&#8805; 1200px)"
2622
- msgstr "Само за широк екран (&#8805; 1200px)"
2623
-
2624
- #: app/model/settings.php:718
2625
- msgid "Tablets only (< 980px)"
2626
- msgstr "Само за таблети (< 980px)"
2627
-
2628
- #: app/model/settings.php:733
2629
- msgid "Phones only (< 768px)"
2630
- msgstr "Само за телефони (< 768px)"
2631
-
2632
- #: app/model/api.php:456
2633
- msgid "Not available"
2634
- msgstr ""
2635
-
2636
- #: app/model/api.php:659
2637
- msgid "%s.<br/>Detail: %s."
2638
- msgstr ""
2639
-
2640
- #: app/model/api.php:664
2641
- msgid "API URL: %s.<br/>Detail: %s - %s"
2642
- msgstr ""
2643
-
2644
- #: app/model/api.php:672
2645
- msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2646
- msgstr ""
2647
-
2648
- #: app/model/api.php:679
2649
- msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2650
- msgstr ""
2651
-
2652
- #: app/model/event/parent.php:186
2653
- msgid "Edit &#8220;%s&#8221;"
2654
- msgstr "Редакция &#8220;%s&#8221;"
2655
-
2656
- #: app/model/event/parent.php:193
2657
- msgid "Base Event"
2658
- msgstr "Събитие база"
2659
-
2660
- #: app/model/review.php:169
2661
- msgid "Feedback provided by user"
2662
- msgstr ""
2663
-
2664
- #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2665
- msgid "Name"
2666
- msgstr "Име"
2667
-
2668
- #: app/model/review.php:173
2669
- msgid "E-mail"
2670
- msgstr ""
2671
-
2672
- #: app/model/review.php:175
2673
- msgid "Site URL"
2674
- msgstr ""
2675
-
2676
- #: app/model/review.php:177
2677
- msgid "Message"
2678
- msgstr ""
2679
-
2680
- #: app/model/settings.php:401
2681
- #: lib/html/element/setting/calendar-page-selector.php:50
2682
- msgid "Calendar page"
2683
- msgstr "Страница Календар"
2684
-
2685
- #: app/model/settings.php:411
2686
- msgid "Week starts on"
2687
- msgstr "Седмицата започва на"
2688
-
2689
- #: app/model/settings.php:424
2690
- msgid "Available views"
2691
- msgstr "Налични изгледи"
2692
-
2693
- #: app/model/settings.php:432
2694
- msgid "Agenda"
2695
- msgid_plural "Agenda"
2696
- msgstr[0] "График"
2697
- msgstr[1] ""
2698
-
2699
- #: app/model/settings.php:443
2700
- msgid "Day"
2701
- msgid_plural "Day"
2702
- msgstr[0] "Ден"
2703
- msgstr[1] ""
2704
-
2705
- #: app/model/settings.php:454
2706
- msgid "Month"
2707
- msgid_plural "Month"
2708
- msgstr[0] "Месец"
2709
- msgstr[1] ""
2710
-
2711
- #: app/model/settings.php:465
2712
- msgid "Week"
2713
- msgid_plural "Week"
2714
- msgstr[0] "Седмица"
2715
- msgstr[1] ""
2716
-
2717
- #: app/model/settings.php:479
2718
- msgid "Timezone"
2719
- msgstr "Часова зона"
2720
-
2721
- #: app/model/settings.php:492
2722
- msgid "Preselected calendar filters"
2723
- msgstr "Предварително зададени филтри на календара"
2724
-
2725
- #: app/controller/javascript.php:509
2726
- msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2727
- msgstr ""
2728
-
2729
- #: app/controller/javascript.php:516
2730
- msgid "The end date can't be earlier than the start date."
2731
- msgstr ""
2732
-
2733
- #: app/controller/javascript.php:517
2734
- msgid "For week and day view, you must select an interval of at least 6 hours."
2735
- msgstr ""
2736
-
2737
- #: app/model/api.php:40
2738
- msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2739
- msgstr ""
2740
-
2741
- #: app/model/api.php:41
2742
- msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2743
- msgstr ""
2744
-
2745
- #: app/model/api.php:42
2746
- msgid "We were unable to Sign you Up for Time.ly Ticketing"
2747
- msgstr ""
2748
-
2749
- #: app/model/api.php:43
2750
- msgid "We were unable to Sign you In for Time.ly Ticketing"
2751
- msgstr ""
2752
-
2753
- #: app/model/api.php:44
2754
- msgid "We were unable to create the Event on Time.ly Ticketing"
2755
- msgstr ""
2756
-
2757
- #: app/model/api.php:45
2758
- msgid "We were unable to update the Event on Time.ly Ticketing"
2759
- msgstr ""
2760
-
2761
- #: app/model/api.php:46
2762
- msgid "The event has the option Tickets selected but any ticket was added."
2763
- msgstr ""
2764
-
2765
- #: app/model/api.php:47
2766
- msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2767
- msgstr ""
2768
-
2769
- #: app/model/api.php:48
2770
- msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2771
- msgstr ""
2772
-
2773
- #: app/model/api.php:49
2774
- msgid "Payment preferences were not saved."
2775
- msgstr ""
2776
-
2777
- #: app/model/api.php:50
2778
- msgid "Payment preferences were saved."
2779
- msgstr ""
2780
-
2781
- #: app/model/api.php:51
2782
- msgid "Event not found inside the database."
2783
- msgstr ""
2784
-
2785
- #: app/model/api.php:52
2786
- msgid "We were unable to get the Sales information from Time.ly Ticketing"
2787
- msgstr ""
2788
-
2789
- #: app/model/api.php:446
2790
- msgid "Past Event"
2791
- msgstr ""
2792
-
2793
- #: app/model/api.php:448
2794
- msgid "Event closed"
2795
- msgstr ""
2796
-
2797
- #: app/model/api.php:450
2798
- msgid "Not available yet"
2799
- msgstr ""
2800
-
2801
- #: app/model/api.php:452
2802
- msgid "Sale closed"
2803
- msgstr ""
2804
-
2805
- #: app/model/api.php:454
2806
- msgid "Sold out"
2807
- msgstr ""
2808
-
2809
- #: app/controller/javascript.php:484
2810
- msgid "Report"
2811
- msgstr ""
2812
-
2813
- #: app/controller/javascript.php:485
2814
- msgid "Sale dates"
2815
- msgstr ""
2816
-
2817
- #: app/controller/javascript.php:486
2818
- msgid "Limits"
2819
- msgstr ""
2820
-
2821
- #: app/controller/javascript.php:487
2822
- msgid "Actions"
2823
- msgstr ""
2824
-
2825
- #: app/controller/javascript.php:488
2826
- msgid "Sold:"
2827
- msgstr ""
2828
-
2829
- #: app/controller/javascript.php:489
2830
- msgid "Left:"
2831
- msgstr ""
2832
-
2833
- #: app/controller/javascript.php:490
2834
- msgid "Start:"
2835
- msgstr ""
2836
-
2837
- #: app/controller/javascript.php:491
2838
- msgid "End:"
2839
- msgstr ""
2840
-
2841
- #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2842
- msgid "Min:"
2843
- msgstr ""
2844
-
2845
- #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2846
- msgid "Max:"
2847
- msgstr ""
2848
-
2849
- #: app/controller/javascript.php:494
2850
- msgid "Attendees"
2851
- msgstr ""
2852
-
2853
- #: app/controller/javascript.php:495
2854
- msgid "Hide Attendees"
2855
- msgstr ""
2856
-
2857
- #: app/controller/javascript.php:496
2858
- msgid "Attendees List"
2859
- msgstr ""
2860
-
2861
- #: app/controller/javascript.php:497
2862
- msgid "Guest Name"
2863
- msgstr ""
2864
-
2865
- #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2866
- msgid "Status"
2867
- msgstr ""
2868
-
2869
- #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2870
- #: app/view/event/ticket.php:71
2871
- msgid "Email"
2872
- msgstr "E-mail"
2873
-
2874
- #: app/controller/javascript.php:500
2875
- msgid "No attendees for this ticket type."
2876
- msgstr ""
2877
-
2878
- #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2879
- #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2880
- msgid "Edit"
2881
- msgstr "Редакция"
2882
-
2883
- #: app/controller/javascript.php:502
2884
- msgid "Code"
2885
- msgstr ""
2886
-
2887
- #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2888
- msgid "Unlimited"
2889
- msgstr ""
2890
-
2891
- #: app/controller/javascript.php:506
2892
- msgid "Your message has been sent. Thank you for your feedback."
2893
- msgstr ""
2894
-
2895
- #: app/controller/javascript.php:507
2896
- msgid "Your message has not been sent. Please try again or contact us."
2897
- msgstr ""
2898
-
2899
- #: app/controller/javascript.php:405
2900
- msgid "Please enter a valid iCalendar URL."
2901
- msgstr "Моля въведете валиден линк за iCalendar."
2902
-
2903
- #: app/controller/javascript.php:408
2904
- msgid "Please enter a valid email address."
2905
- msgstr "Моля въведете валиден E-mail адрес."
2906
-
2907
- #: app/controller/javascript.php:410
2908
- msgid "Choose Image"
2909
- msgstr "Избери изображение"
2910
-
2911
- #: app/controller/javascript.php:413
2912
- msgid "The value you have entered is not a valid CSS length."
2913
- msgstr "Стойността, която сте въвели, е с невалидна CSS дължина."
2914
-
2915
- #: app/controller/javascript.php:416
2916
- msgid "Are you sure you want to reset your theme options to their default values?"
2917
- msgstr "Сигурни ли сте, че искат да нулирате опциите на темата към стандартните им стойности."
2918
-
2919
- #: app/controller/javascript.php:419
2920
- msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2921
- msgstr "Моля, въведете валидна ширина. Валидна ширина е между +90 и -90."
2922
-
2923
- #: app/controller/javascript.php:422
2924
- msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2925
- msgstr "Моля, въведете валидна дължина. Валидна дължина е между +180 и -180."
2926
-
2927
- #: app/controller/javascript.php:425
2928
- msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2929
- msgstr "Когато полето за отметка \"Вкарай координати\" е селектирано, полето \"Географска ширина\" е задължително."
2930
-
2931
- #: app/controller/javascript.php:428
2932
- msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2933
- msgstr "Когато полето за отметка \"Вкарайте координати\" e тикнат, полето \"Дължина\" е задължително."
2934
-
2935
- #: app/controller/javascript.php:431
2936
- msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2937
- msgstr ""
2938
-
2939
- #: app/controller/javascript.php:434
2940
- msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2941
- msgstr "Линкът, който сте въвели в <b>Деца на събитието и Билети</b> &gt; <b>Линк за закупуване на билети</b> е невалиден."
2942
-
2943
- #: app/controller/javascript.php:437
2944
- msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2945
- msgstr "Напомняне, че линковете започват или с \"http://\" или с \"https://\"."
2946
-
2947
- #: app/controller/javascript.php:440
2948
- msgid "Loading&hellip;"
2949
- msgstr ""
2950
-
2951
- #: app/controller/javascript.php:443
2952
- msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2953
- msgstr ""
2954
-
2955
- #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2956
- msgid "Preview:"
2957
- msgstr ""
2958
-
2959
- #: app/controller/javascript.php:474
2960
- msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2961
- msgstr ""
2962
-
2963
- #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2964
- msgid "Ticketing Details"
2965
- msgstr ""
2966
-
2967
- #: app/controller/javascript.php:480
2968
- msgid "Hide Ticketing Details"
2969
- msgstr ""
2970
-
2971
- #: app/controller/javascript.php:481
2972
- msgid "Loading tickets details..."
2973
- msgstr ""
2974
-
2975
- #: app/controller/javascript.php:482
2976
- msgid "Type and price"
2977
- msgstr ""
2978
-
2979
- #: app/controller/javascript.php:483
2980
- msgid "Info"
2981
- msgstr ""
2982
-
2983
- #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2984
- #: app/view/admin/add-ons.php:27
2985
- msgid "Add-ons"
2986
- msgstr "Добавки"
2987
-
2988
- #: app/controller/front.php:343
2989
- msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
2990
- msgstr "Активната тема на календара не може да се инициализира правилно. Вместо това бе активирана стандартната темата. Моля посетете %s и се опитайте да активирате отново темата, ръчно."
2991
-
2992
- #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
2993
- #: app/view/admin/theme-switching.php:55
2994
- msgid "Calendar Themes"
2995
- msgstr "Теми на календара"
2996
-
2997
- #: app/controller/front.php:990
2998
- msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
2999
- msgstr "Базата данни е дефектна. Най-вероятно се е провалило предходна актуализация. Моля възстановете таблиците на All-in-One Event Calendar от предходен backup и опитайте отново. <br>Бяха намерени следните грешки:<br>%s"
3000
-
3001
- #: app/controller/javascript-widget.php:48
3002
- msgid "You must choose the Calendar page before using the Super Widget"
3003
- msgstr ""
3004
-
3005
- #: app/controller/javascript.php:402
3006
- msgid "This feed is already being imported."
3007
- msgstr "Този абонамент вече се импортва."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/all-in-one-event-calendar-cs.mo DELETED
Binary file
language/all-in-one-event-calendar-cs.po DELETED
@@ -1,3003 +0,0 @@
1
- # Translation of 2.3 in Czech
2
- # This file is distributed under the same license as the 2.3 package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:44:58+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
- "X-Generator: GlotPress/1.0-alpha-1000\n"
11
- "Project-Id-Version: 2.3\n"
12
-
13
- #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
- #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
- msgid "Event background"
16
- msgstr "Pozadí události"
17
-
18
- #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
- #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
- msgid "Event time background"
21
- msgstr "Pozadí času události"
22
-
23
- #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
- #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
- msgid "Event text"
26
- msgstr "Text události"
27
-
28
- #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
- #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
- msgid "Month view date background"
31
- msgstr "Pozadí datumu měsíčního zobrazení"
32
-
33
- #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
- #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
- msgid "Week/day view now marker"
36
- msgstr ""
37
-
38
- #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
- #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
- msgid "Date label accent color"
41
- msgstr "Barva zvýraznění názvu datumu"
42
-
43
- #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
- #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
- msgid "Date label background"
46
- msgstr "Pozadí názvu datumu"
47
-
48
- #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
- #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
- msgid "Date background"
51
- msgstr "Pozadí kalendářního data"
52
-
53
- #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
- #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
- msgid "Today background"
56
- msgstr "Pozadí kalendářního \"dnes\""
57
-
58
- #. Plugin Name of the plugin/theme
59
- msgid "All-in-One Event Calendar by Time.ly"
60
- msgstr "All-in-One Event Calendar od Time.ly"
61
-
62
- #. Description of the plugin/theme
63
- msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
- msgstr "Kalendářní systém s měsíčními, týdenními, denními a agenda pohledy, v brzké budoucnosti s událostními widgety, barevnými kategoriemi, opakovanými událostmi a importem/exportem ics. zdrojů."
65
-
66
- #. Author of the plugin/theme
67
- msgid "Time.ly Network Inc."
68
- msgstr "Time.ly Network Inc."
69
-
70
- #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
- #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
- msgid "List item background (active/hover)"
73
- msgstr ""
74
-
75
- #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
- #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
- msgid "Input field placeholder text"
78
- msgstr ""
79
-
80
- #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
- #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
- msgid "Today color"
83
- msgstr "Dnes barva"
84
-
85
- #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
- #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
- msgid "All-day badge color"
88
- msgstr "Barva označení celodenní události"
89
-
90
- #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
- #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
- msgid "Event image shadow"
93
- msgstr "Stín obrázku události"
94
-
95
- #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
- #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
- msgid "Event default color"
98
- msgstr "Výchozí barva události"
99
-
100
- #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
- #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
- msgid "Event default color (hover)"
103
- msgstr "Výchozí barva události (hover)"
104
-
105
- #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
- #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
- msgid "All-day/multi-day event stub text"
108
- msgstr ""
109
-
110
- #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
- #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
- msgid "All-day/multi-day event stub text shadow"
113
- msgstr ""
114
-
115
- #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
- #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
- msgid "Event border"
118
- msgstr "Ohraničení události"
119
-
120
- #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
- #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
- msgid "Button text"
123
- msgstr "Text tlačítka"
124
-
125
- #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
- #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
- msgid "Input field text"
128
- msgstr "Text vstupního pole"
129
-
130
- #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
- #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
- msgid "Input field background"
133
- msgstr "Pozadí vstupního pole"
134
-
135
- #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
- #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
- msgid "Input field border"
138
- msgstr "Ohraničení vstupního pole"
139
-
140
- #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
- #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
- msgid "Input field border (focus)"
143
- msgstr ""
144
-
145
- #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
- #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
- msgid "Input field background (disabled)"
148
- msgstr ""
149
-
150
- #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
- #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
- msgid "Field label"
153
- msgstr "Název pole"
154
-
155
- #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
- #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
- msgid "Dropdown list background"
158
- msgstr ""
159
-
160
- #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
- #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
- msgid "Dropdown list border"
163
- msgstr "Ohraničení dropdown seznamu"
164
-
165
- #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
- #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
- msgid "List item text"
168
- msgstr ""
169
-
170
- #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
- #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
- msgid "List item text (active/hover)"
173
- msgstr ""
174
-
175
- #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
- msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
- msgstr "Nová šablona aktivována. <a href=\"%s\">Navštívit stránku</a>"
178
-
179
- #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
- msgid "Theme deleted."
181
- msgstr "Šablona smazána."
182
-
183
- #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
- msgid "Manage Themes"
185
- msgstr "Spravovat šablony"
186
-
187
- #: public/admin/themes-install.php:40
188
- msgctxt "theme"
189
- msgid "Install Themes"
190
- msgstr "Instalovat šablony"
191
-
192
- #: public/admin/themes-updated.php:5
193
- msgid "Update Calendar Themes"
194
- msgstr "Aktualizovat šablony kalendáře"
195
-
196
- #: public/admin/themes-updated.php:15
197
- msgid "All-in-One Event Calendar Settings »"
198
- msgstr "Nastavení All-in-One Event Calendar »"
199
-
200
- #: public/admin/themes.php:18
201
- msgid "Current Calendar Theme"
202
- msgstr "Aktuální šablona kalendáře"
203
-
204
- #: public/admin/themes.php:21
205
- msgid "Current theme preview"
206
- msgstr "Náhled aktuální šablony"
207
-
208
- #: public/admin/themes.php:47
209
- msgid "Available Calendar Themes"
210
- msgstr "Dostupné šablony kalendáře"
211
-
212
- #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
- #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
- msgid "Body background"
215
- msgstr "Pozadí těla stránky"
216
-
217
- #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
- #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
- msgid "Text color"
220
- msgstr "Barva textu"
221
-
222
- #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
- #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
- msgid "Text emboss"
225
- msgstr "Stínování textu"
226
-
227
- #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
- #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
- msgid "Link"
230
- msgstr "Link"
231
-
232
- #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
- #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
- msgid "Link (hover)"
235
- msgstr "Odkaz (hover)"
236
-
237
- #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
- #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
- msgid "Base font"
240
- msgstr "Základní písmo"
241
-
242
- #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
- #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
- msgid "Base font size"
245
- msgstr "Velikost základního písma"
246
-
247
- #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
- #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
- msgid "Table background"
250
- msgstr "Pozadí tabulky"
251
-
252
- #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
- #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
- msgid "Table header background"
255
- msgstr "Pozadí hlavičky tabulky"
256
-
257
- #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
- #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
- msgid "Table header text"
260
- msgstr "Text hlavičky tabulky"
261
-
262
- #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
- #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
- msgid "Primary brand color"
265
- msgstr "Primární barva značky"
266
-
267
- #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
- #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
- msgid "Button background"
270
- msgstr "Pozadí tlačítka"
271
-
272
- #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
- #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
- msgid "Button border"
275
- msgstr "Okraj tlačítka"
276
-
277
- #: public/admin/feed_row.php:104
278
- msgid "Refreshing&#8230;"
279
- msgstr "Obnovuji&#8230;"
280
-
281
- #: public/admin/feed_row.php:106
282
- msgid "Refresh"
283
- msgstr "Obnovit"
284
-
285
- #: public/admin/feed_row.php:119
286
- msgid "Removing&#8230;"
287
- msgstr "Ostraňuji&#8230;"
288
-
289
- #: public/admin/feed_row.php:121
290
- msgid "Remove"
291
- msgstr "Odstranit"
292
-
293
- #: public/admin/import.php:6
294
- msgid "Successfully imported events:"
295
- msgstr "Úspěšně naimportované události:"
296
-
297
- #: public/admin/plugins/ics/display_feeds.php:2
298
- msgid ""
299
- "Configure which other calendars your own calendar subscribes to.\n"
300
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
- " Enter the feed URL(s) below and the events from those feeds will be\n"
302
- " imported periodically."
303
- msgstr ""
304
-
305
- #: public/admin/plugins/ics/display_feeds.php:14
306
- msgid "Check for new events"
307
- msgstr "Zkontrolovat nové události"
308
-
309
- #: public/admin/plugins/ics/display_feeds.php:45
310
- msgid "Allow comments on imported events"
311
- msgstr "Povolit komentáře u importovaných událostí"
312
-
313
- #: public/admin/plugins/ics/display_feeds.php:52
314
- msgid "Show map on imported events"
315
- msgstr "Zobrazit mapu v importovaných událostech"
316
-
317
- #: public/admin/plugins/ics/display_feeds.php:59
318
- msgid "Import any tags/categories provided by feed, in addition those selected above"
319
- msgstr ""
320
-
321
- #: public/admin/plugins/ics/display_feeds.php:93
322
- msgid "Add new subscription"
323
- msgstr "Přidat nový odběr"
324
-
325
- #: public/admin/plugins/ics/display_feeds.php:96
326
- msgid "Update subscription"
327
- msgstr ""
328
-
329
- #: public/admin/row_custom.php:3
330
- msgid "Custom dates:"
331
- msgstr "Uživateslké datum:"
332
-
333
- #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
334
- #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
335
- #: public/admin/row_yearly.php:3
336
- msgid "Every"
337
- msgstr "Každý"
338
-
339
- #: public/admin/row_monthly.php:16
340
- msgid "On day of the month"
341
- msgstr "Ve dni měsíce"
342
-
343
- #: public/admin/row_monthly.php:23
344
- msgid "On day of the week"
345
- msgstr "Den v týdnu"
346
-
347
- #: public/admin/row_weekly.php:12
348
- msgctxt "Recurrence editor - weekly tab"
349
- msgid "On"
350
- msgstr "V"
351
-
352
- #: public/admin/row_yearly.php:12
353
- msgctxt "Recurrence editor - yearly tab"
354
- msgid "In"
355
- msgstr "V"
356
-
357
- #: public/admin/settings.php:19
358
- msgid "Update Settings"
359
- msgstr "Aktualizovat nastavení"
360
-
361
- #: public/admin/themes-install.php:4
362
- msgid "The active theme is broken. Reverting to the default theme."
363
- msgstr "Aktivovaná šablona je poškozená. Nastavuji výchozí šablonu."
364
-
365
- #: public/admin/themes-install.php:13
366
- msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
367
- msgstr "Nové téma bylo aktivováno. Toto téma podporuje práci s widgety. Pro nastavení prosím navštivte <a href=\"%s\">widgets settings</a> ."
368
-
369
- #: public/admin/calendar_tasks.php:24
370
- msgid "Manage Events"
371
- msgstr "Spravovat události"
372
-
373
- #: public/admin/calendar_tasks.php:27
374
- msgid "View and edit all your events."
375
- msgstr "Zobrazit a upravit všechny vaše události."
376
-
377
- #: public/admin/calendar_tasks.php:39
378
- msgid "Manage Event Categories"
379
- msgstr "Upravit kategorie událostí"
380
-
381
- #: public/admin/calendar_tasks.php:42
382
- msgid "Organize and color-code your events."
383
- msgstr "Seřadit a označit své události barevným kódem."
384
-
385
- #: public/admin/calendar_tasks.php:50
386
- msgid "Choose Your Theme"
387
- msgstr "Zvolte šablonu"
388
-
389
- #: public/admin/calendar_tasks.php:53
390
- msgid "Change the look and feel."
391
- msgstr "Pondělí"
392
-
393
- #: public/admin/calendar_tasks.php:63
394
- msgid "Manage Calendar Feeds"
395
- msgstr "Spravovat odběry kalendářů"
396
-
397
- #: public/admin/calendar_tasks.php:66
398
- msgid "Subscribe to other calendars."
399
- msgstr "Přihlásit se k odběru dalších kalendářů."
400
-
401
- #: public/admin/calendar_tasks.php:74
402
- msgid "Edit Calendar Settings"
403
- msgstr "Upravit nastavení kalendáře"
404
-
405
- #: public/admin/calendar_tasks.php:77
406
- msgid "Make this calendar your own."
407
- msgstr "Přizpůsobte si kalendář."
408
-
409
- #: public/admin/cron_freq.php:3
410
- msgid "Hourly"
411
- msgstr "Každou hodinu"
412
-
413
- #: public/admin/cron_freq.php:6
414
- msgid "Twice Daily"
415
- msgstr "Dvakrát denně"
416
-
417
- #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
418
- msgid "iCalendar/.ics Feed URL:"
419
- msgstr "Adresa URL iCalendar/.ics odběru:"
420
-
421
- #: public/admin/feed_row.php:24
422
- msgid "Event categories:"
423
- msgstr "Kategorie událostí:"
424
-
425
- #: public/admin/feed_row.php:31
426
- msgid "Tag with"
427
- msgstr "Oštítkovat s"
428
-
429
- #: public/admin/feed_row.php:40
430
- msgid "Allow comments"
431
- msgstr "Povolit komentáře"
432
-
433
- #: public/admin/feed_row.php:51
434
- msgid "Show map"
435
- msgstr "Zobrazit mapu"
436
-
437
- #: public/admin/feed_row.php:63
438
- msgid "Keep original events categories and tags"
439
- msgstr "Zachovat původní kategorie událostí a štítky"
440
-
441
- #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
442
- msgid "On refresh, preserve previously imported events that are missing from the feed"
443
- msgstr ""
444
-
445
- #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
446
- msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
447
- msgstr ""
448
-
449
- #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
450
- msgid "Assign default time zone to events in UTC"
451
- msgstr "Přiřadit výchozí časové pásmo událostem v UTC"
452
-
453
- #: public/admin/box_support.php:19
454
- msgid "Get Add-ons"
455
- msgstr "Získat doplňky"
456
-
457
- #: public/admin/box_support.php:27
458
- msgid "Support"
459
- msgstr "Podpora"
460
-
461
- #: public/admin/box_support.php:35
462
- msgid "Timely Events"
463
- msgstr "Timely události"
464
-
465
- #: public/admin/box_support.php:43
466
- msgid "Timely News"
467
- msgstr "Timely novinky"
468
-
469
- #: public/admin/box_support.php:47
470
- msgid "view all news"
471
- msgstr "zobrazit všechny novinky"
472
-
473
- #: public/admin/box_support.php:95
474
- msgid "Follow @_Timely"
475
- msgstr "Sledovat @_Timely"
476
-
477
- #: public/admin/box_time_and_date.php:6
478
- msgid "Event date and time"
479
- msgstr "Datum a čas události"
480
-
481
- #: public/admin/box_time_and_date.php:26
482
- msgid "All-day event"
483
- msgstr "Celodenní událost"
484
-
485
- #: public/admin/box_time_and_date.php:35
486
- msgid "No end time"
487
- msgstr "Žádný čas konce"
488
-
489
- #: public/admin/box_time_and_date.php:42
490
- msgid "Start date / time"
491
- msgstr "Datum / čas začátku"
492
-
493
- #: public/admin/box_time_and_date.php:59
494
- msgid "End date / time"
495
- msgstr "Datum / čas ukončení"
496
-
497
- #: public/admin/box_time_and_date.php:76
498
- msgid "Time zone"
499
- msgstr "Časové pásmo"
500
-
501
- #: public/admin/box_time_and_date.php:81
502
- msgid "Choose your time zone"
503
- msgstr "Vyberte vaše časové pásmo"
504
-
505
- #: public/admin/box_time_and_date.php:108
506
- msgid "Repeat"
507
- msgstr "Opakovat"
508
-
509
- #: public/admin/box_time_and_date.php:127
510
- msgid "Exclude"
511
- msgstr "Vyloučit"
512
-
513
- #: public/admin/box_time_and_date.php:136
514
- msgid "Choose a rule for exclusion"
515
- msgstr "Vyberte pravidlo pro vyloučení"
516
-
517
- #: public/admin/calendar_tasks.php:3
518
- msgid "Welcome"
519
- msgstr "Vítejte"
520
-
521
- #: public/admin/calendar_tasks.php:4
522
- msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
523
- msgstr ""
524
-
525
- #: public/admin/calendar_tasks.php:13
526
- msgid "Post Your Event"
527
- msgstr "Vložte svou událost"
528
-
529
- #: public/admin/calendar_tasks.php:16
530
- msgid "Add a new event to the calendar."
531
- msgstr "Vložit novou událost do kalendáře."
532
-
533
- #: public/admin/box_eventbrite.php:60
534
- msgid "Donation Based"
535
- msgstr "Dobrovolný příspěvek"
536
-
537
- #: public/admin/box_eventbrite.php:68
538
- msgid "The price for this event's first ticket will be taken from the Cost field above."
539
- msgstr ""
540
-
541
- #: public/admin/box_eventbrite.php:75
542
- msgid "Quantity"
543
- msgstr "Množství"
544
-
545
- #: public/admin/box_eventbrite.php:85
546
- msgid "Include Fee in Price"
547
- msgstr "V ceně je zahrnut poplatek"
548
-
549
- #: public/admin/box_eventbrite.php:90
550
- msgid "Add Service Fee on top of price"
551
- msgstr ""
552
-
553
- #: public/admin/box_eventbrite.php:92
554
- msgid "Include Service fee in price"
555
- msgstr "Zahrnout cenu služby v ceně"
556
-
557
- #: public/admin/box_eventbrite.php:98
558
- msgid "Payment Options"
559
- msgstr "Platební podmínky"
560
-
561
- #: public/admin/box_eventbrite.php:105
562
- msgid "Google Checkout"
563
- msgstr "Google Checkout"
564
-
565
- #: public/admin/box_eventbrite.php:107
566
- msgid "Check"
567
- msgstr "Šekem"
568
-
569
- #: public/admin/box_eventbrite.php:109
570
- msgid "Cash"
571
- msgstr "Hotově"
572
-
573
- #: public/admin/box_eventbrite.php:111
574
- msgid "Send an Invoice"
575
- msgstr "Poslat fakturu"
576
-
577
- #: public/admin/box_profile_timezone.php:9
578
- msgid "Your preferred timezone"
579
- msgstr "Preferované časové pásmo"
580
-
581
- #: public/admin/box_repeat.php:5
582
- msgid "Select recurrence pattern:"
583
- msgstr "Zvolte vzor opakování:"
584
-
585
- #: public/admin/box_repeat.php:36
586
- msgid "Custom"
587
- msgstr "Uživatelské"
588
-
589
- #: public/admin/box_repeat.php:72
590
- msgid "End"
591
- msgstr "Konec"
592
-
593
- #: public/admin/box_repeat.php:82
594
- msgid "Ending after"
595
- msgstr "Končí před"
596
-
597
- #: public/admin/box_repeat.php:109
598
- #: public/admin/plugins/ics/display_feeds.php:90
599
- msgid "Please wait&#8230;"
600
- msgstr "Prosím čekejte&#8230;"
601
-
602
- #: public/admin/box_repeat.php:111
603
- msgid "Apply"
604
- msgstr "Použít"
605
-
606
- #: public/admin/box_repeat.php:116
607
- #: public/admin/plugins/ics/display_feeds.php:84
608
- msgid "Cancel"
609
- msgstr "Zrušit"
610
-
611
- #: public/admin/box_support.php:4
612
- msgid "Timely"
613
- msgstr "Timely"
614
-
615
- #: public/admin/box_support.php:11
616
- msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
617
- msgstr ""
618
-
619
- #: public/admin/box_event_cost.php:228
620
- msgid "Status:"
621
- msgstr ""
622
-
623
- #: public/admin/box_event_cost.php:235
624
- msgid "Open"
625
- msgstr ""
626
-
627
- #: public/admin/box_event_cost.php:239
628
- msgid "Closed"
629
- msgstr ""
630
-
631
- #: public/admin/box_event_cost.php:254
632
- msgid "Add New Ticket Type"
633
- msgstr ""
634
-
635
- #: public/admin/box_event_cost.php:274
636
- msgid "Tickets URL:"
637
- msgstr ""
638
-
639
- #: public/admin/box_event_location.php:6
640
- msgid "Event location details"
641
- msgstr "Podrobnosti umístění události"
642
-
643
- #: public/admin/box_event_location.php:19
644
- msgid "Venue name:"
645
- msgstr "Název místa"
646
-
647
- #: public/admin/box_event_location.php:31
648
- msgid "Address:"
649
- msgstr "Adresa:"
650
-
651
- #: public/admin/box_event_location.php:45
652
- msgid "Input Coordinates"
653
- msgstr "Vložte polohu"
654
-
655
- #: public/admin/box_event_location.php:57
656
- msgid "Latitude:"
657
- msgstr "Zeměpisná šířka:"
658
-
659
- #: public/admin/box_event_location.php:69
660
- msgid "Longitude:"
661
- msgstr "Zeměpisná délka:"
662
-
663
- #: public/admin/box_event_location.php:85
664
- msgid "Show Map"
665
- msgstr "Zobrazit mapu"
666
-
667
- #: public/admin/box_eventbrite.php:1
668
- msgid "Eventbrite Ticketing"
669
- msgstr ""
670
-
671
- #: public/admin/box_eventbrite.php:7
672
- msgid "Register this event with Eventbrite.com?"
673
- msgstr ""
674
-
675
- #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
676
- #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
677
- #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
678
- msgid "Yes"
679
- msgstr "Ano"
680
-
681
- #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
682
- #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
683
- #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
684
- msgid "No"
685
- msgstr "Ne"
686
-
687
- #: public/admin/box_eventbrite.php:22
688
- msgid "Set up your first ticket"
689
- msgstr "Nastavit první vstupenku"
690
-
691
- #: public/admin/box_eventbrite.php:24
692
- msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
693
- msgstr ""
694
-
695
- #: public/admin/box_eventbrite.php:42
696
- msgid "Description"
697
- msgstr "Popis"
698
-
699
- #: public/admin/box_eventbrite.php:53
700
- msgid "Type"
701
- msgstr "Typ"
702
-
703
- #: public/admin/box_eventbrite.php:58
704
- msgid "Set Price"
705
- msgstr "Natavit cenu"
706
-
707
- #: public/admin/box_event_contact.php:30
708
- msgid "Phone:"
709
- msgstr "Telefon:"
710
-
711
- #: public/admin/box_event_contact.php:56
712
- msgid "Website URL:"
713
- msgstr ""
714
-
715
- #: public/admin/box_event_cost.php:6
716
- msgid "Event cost and Tickets"
717
- msgstr "Cena události a vstupenky"
718
-
719
- #: public/admin/box_event_cost.php:20
720
- msgid "Ticket options not available - event imported from external calendar."
721
- msgstr ""
722
-
723
- #: public/admin/box_event_cost.php:28
724
- msgid "Free event"
725
- msgstr "Událost zdarma"
726
-
727
- #: public/admin/box_event_cost.php:41
728
- msgid "External Tickets URL"
729
- msgstr ""
730
-
731
- #: public/admin/box_event_cost.php:52
732
- msgid "Ticketing allows you to sell tickets directly to the users."
733
- msgstr ""
734
-
735
- #: public/admin/box_event_cost.php:55
736
- msgid "Sign Up for Timely Network"
737
- msgstr ""
738
-
739
- #: public/admin/box_event_cost.php:80
740
- msgid "Remove Ticket Type"
741
- msgstr ""
742
-
743
- #: public/admin/box_event_cost.php:101
744
- msgid "Ex.: Regular Ticket"
745
- msgstr ""
746
-
747
- #: public/admin/box_event_cost.php:105
748
- msgid "Description:"
749
- msgstr "Popis:"
750
-
751
- #: public/admin/box_event_cost.php:111
752
- msgid "(Optional)"
753
- msgstr ""
754
-
755
- #: public/admin/box_event_cost.php:115
756
- msgid "Price:"
757
- msgstr ""
758
-
759
- #: public/admin/box_event_cost.php:124
760
- msgid "USD"
761
- msgstr ""
762
-
763
- #: public/admin/box_event_cost.php:128
764
- msgid "Limits:"
765
- msgstr ""
766
-
767
- #: public/admin/box_event_cost.php:131
768
- msgid "This fields are required."
769
- msgstr ""
770
-
771
- #: public/admin/box_event_cost.php:156
772
- msgid "Quantity:"
773
- msgstr ""
774
-
775
- #: public/admin/box_event_cost.php:180
776
- msgid "Available:"
777
- msgstr ""
778
-
779
- #: public/admin/box_event_cost.php:185
780
- msgid "Immediately"
781
- msgstr ""
782
-
783
- #: public/admin/box_event_cost.php:190
784
- msgid "From:"
785
- msgstr ""
786
-
787
- #: public/admin/box_event_cost.php:207
788
- msgid "Till:"
789
- msgstr ""
790
-
791
- #: public/admin/box_ask_customer_review.php:42
792
- #: public/admin/box_ask_customer_review.php:75
793
- msgid "No, thanks"
794
- msgstr ""
795
-
796
- #: public/admin/box_ask_customer_review.php:50
797
- #: public/admin/box_ask_customer_review.php:84
798
- msgid "Ok, sure!"
799
- msgstr ""
800
-
801
- #: public/admin/box_ask_customer_review.php:66
802
- msgid "Would you mind giving us some feedback?"
803
- msgstr ""
804
-
805
- #: public/admin/box_ask_customer_review.php:101
806
- msgid "Please provide some feedback"
807
- msgstr ""
808
-
809
- #: public/admin/box_ask_customer_review.php:108
810
- msgid "Message:"
811
- msgstr ""
812
-
813
- #: public/admin/box_ask_customer_review.php:121
814
- msgid "Name:"
815
- msgstr ""
816
-
817
- #: public/admin/box_ask_customer_review.php:136
818
- #: public/admin/box_event_contact.php:43
819
- msgid "E-mail:"
820
- msgstr "E-mail"
821
-
822
- #: public/admin/box_ask_customer_review.php:143
823
- msgid "E-mail is invalid."
824
- msgstr ""
825
-
826
- #: public/admin/box_ask_customer_review.php:154
827
- msgid "Site URL:"
828
- msgstr ""
829
-
830
- #: public/admin/box_ask_customer_review.php:161
831
- msgid "Site URL is invalid."
832
- msgstr ""
833
-
834
- #: public/admin/box_ask_customer_review.php:173
835
- msgid "Thank you for being our customer,"
836
- msgstr ""
837
-
838
- #: public/admin/box_ask_customer_review.php:174
839
- msgid "Aristotel Dascal, VP of Product, Time.ly"
840
- msgstr ""
841
-
842
- #: public/admin/box_ask_customer_review.php:180
843
- msgid "Sending..."
844
- msgstr ""
845
-
846
- #: public/admin/box_ask_customer_review.php:181
847
- msgid "Send Message"
848
- msgstr ""
849
-
850
- #: public/admin/box_event_children.php:12
851
- msgid "Base recurrence event"
852
- msgstr "Základní opakující se událost"
853
-
854
- #: public/admin/box_event_children.php:14
855
- msgid "Modified recurrence events"
856
- msgstr "Upravená opakující se událost"
857
-
858
- #: public/admin/box_event_children.php:22
859
- msgid "Edit parent:"
860
- msgstr "Upravit rodiče:"
861
-
862
- #: public/admin/box_event_children.php:27
863
- msgid "Modified Events"
864
- msgstr "Upravené události"
865
-
866
- #: public/admin/box_event_children.php:31
867
- msgid "Edit:"
868
- msgstr "Upravit"
869
-
870
- #: public/admin/box_event_contact.php:6
871
- msgid "Organizer contact info"
872
- msgstr "Kontaktní informace organizátora"
873
-
874
- #: public/admin/box_event_contact.php:17
875
- msgid "Contact name:"
876
- msgstr "Kontaktní jméno:"
877
-
878
- #: lib/theme/loader.php:325
879
- msgid "We couldn't find a suitable loader for filename with extension '%s'"
880
- msgstr ""
881
-
882
- #: lib/theme/loader.php:631
883
- msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
884
- msgstr "Téma vybrané pro váš kalendář bylo změněno kvůli problémům při vykreslování. Více informací zíkáte, pokud zapnete \"debug mode\" - stačí pouze přidat následující řádek do vašeho WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
885
-
886
- #: lib/theme/search.php:253
887
- msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
888
- msgstr ""
889
-
890
- #: lib/theme/search.php:264
891
- msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
892
- msgstr ""
893
-
894
- #: lib/twig/environment.php:115
895
- msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
896
- msgstr "Kalendář je dočasně vypnutý kvůli problémům s vykreslováním. Prosím, <a href=\"javascript:location.reload();\">reload the page</a>."
897
-
898
- #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
899
- msgid "Title:"
900
- msgstr "Název:"
901
-
902
- #: public/admin/agenda-widget-form.php:12
903
- msgid "Number of events to show:"
904
- msgstr "Počet událostí k zobrazení:"
905
-
906
- #: public/admin/agenda-widget-form.php:21
907
- msgid "Number of days to show:"
908
- msgstr "Počet dní k zobrazení:"
909
-
910
- #: public/admin/agenda-widget-form.php:26
911
- msgid "Limit to:"
912
- msgstr "Omezeno na:"
913
-
914
- #: public/admin/agenda-widget-form.php:30
915
- msgid "Events with these <strong>Categories</strong>"
916
- msgstr "Události s těmito <strong>kategoriemi</strong>"
917
-
918
- #: public/admin/agenda-widget-form.php:39
919
- msgid "No categories found."
920
- msgstr "Žádná kategorie nenalezena"
921
-
922
- #: public/admin/agenda-widget-form.php:46
923
- msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
924
- msgstr "<strong>Nebo</strong> události s těmito <strong>štítky</strong>"
925
-
926
- #: public/admin/agenda-widget-form.php:55
927
- msgid "No tags found."
928
- msgstr "Žádné štítky nenalezeny"
929
-
930
- #: public/admin/agenda-widget-form.php:62
931
- msgid "Show <strong>View Calendar</strong> button"
932
- msgstr "Zobrazit <strong>Zobrazit kalendář</strong> tlačítko"
933
-
934
- #: public/admin/agenda-widget-form.php:65
935
- msgid "Show <strong>Subscribe</strong> buttons"
936
- msgstr "Zobrazit <strong>Odebírat</strong> tlačítka"
937
-
938
- #: public/admin/agenda-widget-form.php:68
939
- msgid "Hide this widget on calendar page"
940
- msgstr "Skrýt tento widget na stránce kalendáře"
941
-
942
- #: public/admin/box_ask_customer_review.php:5
943
- msgid "Enjoying All-in-One Event Calendar?"
944
- msgstr ""
945
-
946
- #: public/admin/box_ask_customer_review.php:13
947
- msgid "Not really"
948
- msgstr ""
949
-
950
- #: public/admin/box_ask_customer_review.php:20
951
- msgid "Yes!"
952
- msgstr ""
953
-
954
- #: public/admin/box_ask_customer_review.php:33
955
- msgid "How about a rating on the Wordpress?"
956
- msgstr ""
957
-
958
- #: lib/recurrence/rule.php:397
959
- msgid "Every %d weeks"
960
- msgstr "Každé %d týdny"
961
-
962
- #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
963
- msgid "Monthly"
964
- msgstr "Měsíčně"
965
-
966
- #: lib/recurrence/rule.php:409
967
- msgid "Every other month"
968
- msgstr "Každý druhý měsíc"
969
-
970
- #: lib/recurrence/rule.php:412
971
- msgid "Every %d months"
972
- msgstr "Každý %d měsíc"
973
-
974
- #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
975
- msgid "Yearly"
976
- msgstr "Ročně"
977
-
978
- #: lib/recurrence/rule.php:424
979
- msgid "Every other year"
980
- msgstr "Každý druhý rok"
981
-
982
- #: lib/recurrence/rule.php:427
983
- msgid "Every %d years"
984
- msgstr "Každých %d roků"
985
-
986
- #: lib/recurrence/rule.php:465
987
- msgid "until %s"
988
- msgstr "do %s"
989
-
990
- #: lib/recurrence/rule.php:475
991
- msgid "for %d occurrences"
992
- msgstr "%d opakování"
993
-
994
- #: lib/recurrence/rule.php:479
995
- msgid "forever"
996
- msgstr "navždy"
997
-
998
- #: lib/robots/helper.php:71
999
- msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1000
- msgstr "<strong>CHYBA:</strong> Objevila se chyba připojení k serveru. Prosím zkontrolujte, zda nastavení je v pořádku."
1001
-
1002
- #: lib/robots/helper.php:105
1003
- msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1004
- msgstr "<strong>CHYBA:</strong> Při ukládání souboru <strong>robots.txt</strong> na server se objevila chyba, soubor nelze zapsat."
1005
-
1006
- #: lib/theme/list.php:152
1007
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1008
- msgstr ""
1009
-
1010
- #: lib/theme/list.php:164
1011
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1012
- msgstr ""
1013
-
1014
- #: lib/theme/list.php:179
1015
- msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1016
- msgstr ""
1017
-
1018
- #: lib/theme/list.php:190
1019
- msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1020
- msgstr ""
1021
-
1022
- #: lib/theme/list.php:257
1023
- msgid "Activate &#8220;%s&#8221;"
1024
- msgstr "Aktivovat &#8220;%s&#8221;"
1025
-
1026
- #: lib/theme/list.php:264
1027
- msgid "Activate"
1028
- msgstr "Aktivovat"
1029
-
1030
- #. translators: 1: theme title, 2: theme version, 3: theme author
1031
- #: lib/theme/list.php:281 public/admin/themes.php:25
1032
- msgid "%1$s %2$s by %3$s"
1033
- msgstr "%1$s %2$s od %3$s"
1034
-
1035
- #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1036
- #. title, 5: parent_theme
1037
- #: lib/theme/list.php:293
1038
- msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1039
- msgstr ""
1040
-
1041
- #: lib/theme/list.php:308
1042
- msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1043
- msgstr ""
1044
-
1045
- #: lib/post/custom-type.php:36
1046
- msgid "Parent Event"
1047
- msgstr "Rodičovská událost"
1048
-
1049
- #: lib/post/custom-type.php:55
1050
- msgid "event"
1051
- msgstr "udalost"
1052
-
1053
- #: lib/post/custom-type.php:85
1054
- msgctxt "Event categories taxonomy"
1055
- msgid "Categories"
1056
- msgstr "Kategorie"
1057
-
1058
- #: lib/post/custom-type.php:86
1059
- msgctxt "Event categories taxonomy (singular)"
1060
- msgid "Category"
1061
- msgstr "Kategorie"
1062
-
1063
- #: lib/post/custom-type.php:87
1064
- msgctxt "Event categories menu item"
1065
- msgid "Organize"
1066
- msgstr "Uspořádat"
1067
-
1068
- #: lib/post/custom-type.php:94
1069
- msgctxt "Event tags taxonomy"
1070
- msgid "Tags"
1071
- msgstr "Tagy"
1072
-
1073
- #: lib/post/custom-type.php:95
1074
- msgctxt "Event tags taxonomy (singular)"
1075
- msgid "Tag"
1076
- msgstr "Tag"
1077
-
1078
- #: lib/post/custom-type.php:102
1079
- msgctxt "Event feeds taxonomy"
1080
- msgid "Event Feeds"
1081
- msgstr "Zdroj události"
1082
-
1083
- #: lib/post/custom-type.php:103
1084
- msgctxt "Event feed taxonomy (singular)"
1085
- msgid "Event Feed"
1086
- msgstr "Zdroje událostí"
1087
-
1088
- #: lib/post/custom-type.php:285
1089
- msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1090
- msgstr "Všechny události <span class=\"update-plugins count-%d\" title=\"%d Nevyřízené události\"><span class=\"update-count\">%d</span></span>"
1091
-
1092
- #: lib/post/custom-type.php:296
1093
- msgid "All Events"
1094
- msgstr "Všechny události"
1095
-
1096
- #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1097
- #: lib/recurrence/rule.php:260
1098
- msgctxt "Recurrence editor - weekly tab"
1099
- msgid "on"
1100
- msgstr "v"
1101
-
1102
- #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1103
- #: lib/recurrence/rule.php:326
1104
- msgid "and"
1105
- msgstr "a"
1106
-
1107
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1108
- #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1109
- msgctxt "Recurrence editor - monthly tab"
1110
- msgid "on"
1111
- msgstr "v"
1112
-
1113
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1114
- #: lib/recurrence/rule.php:286
1115
- msgid "of the month"
1116
- msgstr "měsíce"
1117
-
1118
- #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1119
- #: lib/recurrence/rule.php:336
1120
- msgctxt "Recurrence editor - yearly tab"
1121
- msgid "on"
1122
- msgstr "v"
1123
-
1124
- #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1125
- #: public/admin/cron_freq.php:9
1126
- msgid "Daily"
1127
- msgstr "Denně"
1128
-
1129
- #: lib/recurrence/rule.php:379
1130
- msgid "Every other day"
1131
- msgstr "Každý druhý den"
1132
-
1133
- #: lib/recurrence/rule.php:382
1134
- msgid "Every %d days"
1135
- msgstr "Každé %d dny"
1136
-
1137
- #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1138
- msgid "Weekly"
1139
- msgstr "Týdně"
1140
-
1141
- #: lib/recurrence/rule.php:394
1142
- msgid "Every other week"
1143
- msgstr "Každý druhý týden"
1144
-
1145
- #: lib/less/variable/font.php:64
1146
- msgid "Custom..."
1147
- msgstr "Vlastní..."
1148
-
1149
- #: lib/less/variable/font.php:112
1150
- msgid "Enter custom font(s)"
1151
- msgstr "Vložte vlastní písma"
1152
-
1153
- #: lib/less/variable/size.php:26
1154
- msgid "Length"
1155
- msgstr "Délka"
1156
-
1157
- #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1158
- msgid "All-in-One Event Calendar"
1159
- msgstr "All-in-One Event Calendar"
1160
-
1161
- #: lib/notification/admin.php:182
1162
- msgid "Got it – dismiss this"
1163
- msgstr "Rozumím"
1164
-
1165
- #: lib/post/custom-type.php:26
1166
- msgctxt "Custom post type name"
1167
- msgid "Events"
1168
- msgstr "Události"
1169
-
1170
- #: lib/post/custom-type.php:27
1171
- msgctxt "Custom post type name (singular)"
1172
- msgid "Event"
1173
- msgstr "Událost"
1174
-
1175
- #: lib/post/custom-type.php:28
1176
- msgid "Add New"
1177
- msgstr "Vložit nové"
1178
-
1179
- #: lib/post/custom-type.php:29
1180
- msgid "Add New Event"
1181
- msgstr "Vložit novou událost"
1182
-
1183
- #: lib/post/custom-type.php:30
1184
- msgid "Edit Event"
1185
- msgstr "Upravit událost"
1186
-
1187
- #: lib/post/custom-type.php:31
1188
- msgid "New Event"
1189
- msgstr "Nová událost"
1190
-
1191
- #: lib/post/custom-type.php:32
1192
- msgid "View Event"
1193
- msgstr "Zobrazit události"
1194
-
1195
- #: lib/post/custom-type.php:33
1196
- msgid "Search Events"
1197
- msgstr "Hledat události"
1198
-
1199
- #: lib/post/custom-type.php:34
1200
- msgid "No Events found"
1201
- msgstr "Žádné události nenalezeny"
1202
-
1203
- #: lib/post/custom-type.php:35
1204
- msgid "No Events found in Trash"
1205
- msgstr "Žádné události v koši"
1206
-
1207
- #: lib/html/element/setting/html.php:62
1208
- msgid "Filter by post ID:"
1209
- msgstr "Filtrovat podle ID příspěvku:"
1210
-
1211
- #: lib/html/element/setting/html.php:63
1212
- msgid "Filter by post IDs (separate IDs by comma):"
1213
- msgstr "Filtrovat podle více ID přispěvků (jednotlivé ID oddělte čárkou):"
1214
-
1215
- #: lib/html/element/setting/html.php:64
1216
- msgid "Limit number of events per page:"
1217
- msgstr "Počet událostí na stranu:"
1218
-
1219
- #: lib/html/element/setting/html.php:65
1220
- msgid "Warning:"
1221
- msgstr "Varování:"
1222
-
1223
- #: lib/html/element/setting/html.php:66
1224
- msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1225
- msgstr "Momentálně není možné vložit více než jeden kalendář na stejnou stránku. Nevkládejte shortkódy k zobrazení kalendáře na stránku, která již nějaký kalendář zobrazuje."
1226
-
1227
- #: lib/import-export/ics.php:831
1228
- msgid "Tickets: "
1229
- msgstr ""
1230
-
1231
- #: lib/html/element/setting/html.php:41
1232
- msgid "Day view:"
1233
- msgstr "Denní zobrazení:"
1234
-
1235
- #: lib/html/element/setting/html.php:42
1236
- msgid "Agenda view:"
1237
- msgstr "Zobrazení agendy:"
1238
-
1239
- #: lib/html/element/setting/html.php:43
1240
- msgid "Some Other view:"
1241
- msgstr "Jiné zobrazení:"
1242
-
1243
- #: lib/html/element/setting/html.php:44
1244
- msgid "Default view as per settings:"
1245
- msgstr "Zvolit jako nastavené výchozí zobrazení:"
1246
-
1247
- #: lib/html/element/setting/html.php:45
1248
- msgid "General form:"
1249
- msgstr "Obecný formulář:"
1250
-
1251
- #: lib/html/element/setting/html.php:46
1252
- msgid "Optional."
1253
- msgstr "Volitelně."
1254
-
1255
- #: lib/html/element/setting/html.php:47
1256
- msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1257
- msgstr "Vložte možnosti k zobrazení filtrovaného kalendáře. (Můžete zjisti kategorii a štítky prozkoumáním URL vašeho filtrovaného kalendáře..)"
1258
-
1259
- #: lib/html/element/setting/html.php:48
1260
- msgid "Filter by event category name/slug:"
1261
- msgstr "Filtrovat podle označení kategorie událostí: "
1262
-
1263
- #: lib/html/element/setting/html.php:49
1264
- msgid "Holidays"
1265
- msgstr "Svátky"
1266
-
1267
- #: lib/html/element/setting/html.php:50
1268
- msgid "Lunar Cycles"
1269
- msgstr "Měsíční cykly"
1270
-
1271
- #: lib/html/element/setting/html.php:51
1272
- msgid "zodiac-date-ranges"
1273
- msgstr "Období zvěrokruhu"
1274
-
1275
- #: lib/html/element/setting/html.php:52
1276
- msgid "Filter by event category names/slugs (separate names by comma):"
1277
- msgstr "Filtrovat podle více označení kategorií událostí (názvy oddělené čárkou):"
1278
-
1279
- #: lib/html/element/setting/html.php:53
1280
- msgid "Filter by event category ID:"
1281
- msgstr "Filtrovat podle ID kategorie událostí:"
1282
-
1283
- #: lib/html/element/setting/html.php:54
1284
- msgid "Filter by event category IDs (separate IDs by comma):"
1285
- msgstr "Filtrovat podle více ID kategorií událostí (jednotlivé ID oddělené čárkou):"
1286
-
1287
- #: lib/html/element/setting/html.php:55
1288
- msgid "Filter by event tag name/slug:"
1289
- msgstr "Filtrovat podle štítku událostí:"
1290
-
1291
- #: lib/html/element/setting/html.php:56
1292
- msgid "tips-and-tricks"
1293
- msgstr "tipy a triky"
1294
-
1295
- #: lib/html/element/setting/html.php:57
1296
- msgid "creative writing"
1297
- msgstr "kreativní psaní"
1298
-
1299
- #: lib/html/element/setting/html.php:58
1300
- msgid "performing arts"
1301
- msgstr "divadelní umění"
1302
-
1303
- #: lib/html/element/setting/html.php:59
1304
- msgid "Filter by event tag names/slugs (separate names by comma):"
1305
- msgstr "Filtrovat podle více štítků událostí (jednotlivé štítky oddělte čárkou):"
1306
-
1307
- #: lib/html/element/setting/html.php:60
1308
- msgid "Filter by event tag ID:"
1309
- msgstr "Filtrovat podle ID štítku události:"
1310
-
1311
- #: lib/html/element/setting/html.php:61
1312
- msgid "Filter by event tag IDs (separate IDs by comma):"
1313
- msgstr "Filtrovat podle více ID štítků událostí (jednotlivé ID oddělte čárkou):"
1314
-
1315
- #: lib/exception/handler.php:395
1316
- msgid "All-in-One Event Calendar has been disabled due to an error:"
1317
- msgstr "All-in-One Event Calendar byl deaktivován kvůli chybě:"
1318
-
1319
- #: lib/exception/handler.php:404
1320
- msgid "Try reactivating plugin"
1321
- msgstr "Zkuste znovu aktivovat doplněk."
1322
-
1323
- #: lib/exception/handler.php:576
1324
- msgid "Toggle error details"
1325
- msgstr "Přepnout na podrobnosti o chybě"
1326
-
1327
- #: lib/exception/handler.php:577
1328
- msgid "Error Details:"
1329
- msgstr "Podrobnosti k chybě:"
1330
-
1331
- #: lib/factory/html.php:133
1332
- msgid "Choose a date using calendar"
1333
- msgstr "Vyberte datum v kalendáři"
1334
-
1335
- #: lib/factory/html.php:278
1336
- msgid "Tags (optional)"
1337
- msgstr "Štítky (volitelně)"
1338
-
1339
- #: lib/html/element/setting/cache.php:38
1340
- msgid "Check again"
1341
- msgstr "Zkontrolovat znovu"
1342
-
1343
- #: lib/html/element/setting/cache.php:39
1344
- msgid "Templates cache is not writable"
1345
- msgstr "Cache šablony není zapisovatelná"
1346
-
1347
- #: lib/html/element/setting/cache.php:40
1348
- msgid "Templates cache is writable"
1349
- msgstr "Cache šablony je zapisovatelná"
1350
-
1351
- #: lib/html/element/setting/cache.php:41
1352
- msgid "Checking..."
1353
- msgstr "Kontroluji ..."
1354
-
1355
- #: lib/html/element/setting/cache.php:42
1356
- msgid "Performance Report"
1357
- msgstr "Zpráva o provozu"
1358
-
1359
- #: lib/html/element/setting/calendar-page-selector.php:70
1360
- msgid "View"
1361
- msgstr "Zobrazit"
1362
-
1363
- #: lib/html/element/setting/calendar-page-selector.php:114
1364
- msgid "- Auto-Create New Page -"
1365
- msgstr "Automaticky vytvořit novou stranu"
1366
-
1367
- #: lib/html/element/setting/enabled-views.php:22
1368
- msgid "Enabled"
1369
- msgstr "Povoleno"
1370
-
1371
- #: lib/html/element/setting/enabled-views.php:23
1372
- msgid "Default"
1373
- msgstr "Výchozí"
1374
-
1375
- #: lib/html/element/setting/enabled-views.php:24
1376
- msgid "Desktop"
1377
- msgstr "Desktop"
1378
-
1379
- #: lib/html/element/setting/enabled-views.php:25
1380
- msgid "Mobile"
1381
- msgstr "Mobil"
1382
-
1383
- #: lib/html/element/setting/html.php:37
1384
- msgid "Embed the calendar using a shortcode"
1385
- msgstr "Umístit kalendář vložením shortkodu."
1386
-
1387
- #: lib/html/element/setting/html.php:38
1388
- msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1389
- msgstr "Vložte jeden z těchto shortkodů do těla stránky pro umístění kalendáře do libovolné WordPress strany:"
1390
-
1391
- #: lib/html/element/setting/html.php:39
1392
- msgid "Month view:"
1393
- msgstr "Měsíční zobrazení:"
1394
-
1395
- #: lib/html/element/setting/html.php:40
1396
- msgid "Week view:"
1397
- msgstr "Týdenní zobrazení:"
1398
-
1399
- #: lib/css/frontend.php:239
1400
- msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1401
- msgstr ""
1402
-
1403
- #: lib/css/frontend.php:266
1404
- msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1405
- msgstr ""
1406
-
1407
- #: lib/css/frontend.php:272
1408
- msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1409
- msgstr "<p><strong>Při kompilaci CSS se objevila chyba.</strong> Komentář zní: <em>%s</em></p>"
1410
-
1411
- #: lib/css/frontend.php:300
1412
- msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1413
- msgstr "Nastavení šablony bylo úspěšně obnoveno do výchozího nastavení. <a href='%s'>Přejít na stránku</a>"
1414
-
1415
- #: lib/css/frontend.php:307
1416
- msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1417
- msgstr "Nastavení šablony bylo úspěšně aktualizováno. <a href='%s'>Přejít na stránku</a>"
1418
-
1419
- #: lib/css/frontend.php:343
1420
- msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1421
- msgstr ""
1422
-
1423
- #: lib/database/applicator.php:182
1424
- msgid "Date columns in table %s have different types."
1425
- msgstr "Sloupce datumu v tabulce %s jsou rozdílných typů."
1426
-
1427
- #: lib/database/exception/database.php:19
1428
- msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1429
- msgstr "Aktualizace databáze selhala. Ujistěte se, prosím, zda má uživatel <em>wp-config.php</em> potřebná práva (<strong>ALTER TABLE</strong>) pro úpravu databáze."
1430
-
1431
- #: lib/database/exception/database.php:23
1432
- msgid "Error encountered: %s"
1433
- msgstr "Došlo k chybě: %s"
1434
-
1435
- #: lib/date/system.php:202
1436
- msgid "GMT%+d:%02d"
1437
- msgstr "GMT%+d:%02d"
1438
-
1439
- #: lib/date/timezone.php:362
1440
- msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1441
- msgstr ""
1442
-
1443
- #: lib/date/timezone.php:397
1444
- msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1445
- msgstr ""
1446
-
1447
- #: lib/date/timezone.php:421
1448
- msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1449
- msgstr "Vybrané časové pásmo \"UTC%+d\" bude upraveno na %s."
1450
-
1451
- #: lib/date/timezone.php:490
1452
- msgid "Manual Offset"
1453
- msgstr "Časový posun ručně:"
1454
-
1455
- #: lib/date/timezone.php:493
1456
- msgid "Choose your timezone"
1457
- msgstr "Vyberte svou časové pásmo"
1458
-
1459
- #: lib/environment/check.php:55
1460
- msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1461
- msgstr "Zvolte možnost na <strong>Stránce kalendáře</strong> dropdown list."
1462
-
1463
- #: lib/environment/check.php:68
1464
- msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1465
- msgstr "Plugin je nainstalován, ale není nastaven. <a href=\"%s\">Klikněte sem pro nastavení &raquo;</a>"
1466
-
1467
- #: lib/environment/check.php:78
1468
- msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1469
- msgstr "Plugin je nainstalován, ale nebyl nastaven. Pro nastavení se, prosím, přihlaštwe jako Administrátor stránek."
1470
-
1471
- #: lib/environment/check.php:196
1472
- msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1473
- msgstr ""
1474
-
1475
- #: lib/environment/check.php:197
1476
- msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1477
- msgstr ""
1478
-
1479
- #: lib/exception/handler.php:176
1480
- msgid "The add-on \"%s\" has been disabled due to an error:"
1481
- msgstr "Rozšíření \"%s\" bylo deaktivováno kvůli chybě:"
1482
-
1483
- #: lib/calendar-feed/ics.php:367
1484
- msgid "Do you want to keep the events imported from the calendar or remove them?"
1485
- msgstr ""
1486
-
1487
- #: lib/calendar-feed/ics.php:373
1488
- msgid "Removing ICS Feed"
1489
- msgstr "Odstranění ICS odběru"
1490
-
1491
- #: lib/calendar-feed/ics.php:376
1492
- msgid "Keep Events"
1493
- msgstr "Zachovat události"
1494
-
1495
- #: lib/calendar-feed/ics.php:379
1496
- msgid "Remove Events"
1497
- msgstr "Odstranit události"
1498
-
1499
- #: lib/calendar-feed/ics.php:519
1500
- msgid "Oh, submission was not accepted."
1501
- msgstr ""
1502
-
1503
- #: lib/calendar-feed/ics.php:699
1504
- msgid "Deleted %d events"
1505
- msgstr "Smazáno %d událostí"
1506
-
1507
- #: lib/calendar-feed/ics.php:735
1508
- msgid "Feed deleted"
1509
- msgstr "Zdroj smazán"
1510
-
1511
- #: lib/captcha/provider/nocaptcha.php:31
1512
- msgid "noCAPTCHA public key:"
1513
- msgstr "noCAPTCHA veřejný klíč:"
1514
-
1515
- #: lib/captcha/provider/nocaptcha.php:47
1516
- msgid "noCAPTCHA private key:"
1517
- msgstr "noCAPTCHA osobní klíč:"
1518
-
1519
- #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1520
- msgid "Please try verifying you are human again."
1521
- msgstr "Prosím ověřte znovu, že jste lidská bytost."
1522
-
1523
- #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1524
- msgid "There was an error reading the human verification data. Please try again."
1525
- msgstr "Ověření vaší lidské podstaty nebylo úspěšné. Prosím, zkuste to znovu."
1526
-
1527
- #: lib/captcha/provider/recaptcha.php:32
1528
- msgid "reCAPTCHA public key:"
1529
- msgstr "reCAPTCHA veřejný klíč:"
1530
-
1531
- #: lib/captcha/provider/recaptcha.php:48
1532
- msgid "reCAPTCHA private key:"
1533
- msgstr "reCAPTCHA osobní klíč:"
1534
-
1535
- #: lib/captcha/provider/recaptcha.php:66
1536
- msgid "Human verification"
1537
- msgstr "Ověření, zda jste lidská bytost."
1538
-
1539
- #: lib/captcha/provider/recaptcha.php:67
1540
- msgid "Loading reCAPTCHA..."
1541
- msgstr "Nahrávám reCAPTCHA..."
1542
-
1543
- #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1544
- #: lib/clone/renderer-helper.php:45
1545
- msgid "Clone"
1546
- msgstr "Klonovat"
1547
-
1548
- #: lib/clone/renderer-helper.php:44
1549
- msgid "Make new copy of event"
1550
- msgstr "Vytvořit novou kopii události"
1551
-
1552
- #: lib/clone/renderer-helper.php:47
1553
- msgid "Copy to a new draft"
1554
- msgstr "Kopírovat do nového konceptu."
1555
-
1556
- #: lib/clone/renderer-helper.php:48
1557
- msgid "Clone to Draft"
1558
- msgstr "Kopírovat do konceptu"
1559
-
1560
- #: lib/command/clone.php:173
1561
- msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1562
- msgstr "<p>Událost <strong>%s</strong> byla úspěšně naklonována. <a href=\"%s\">Upravit klonovanou událost</a></p>"
1563
-
1564
- #: lib/compatibility/check.php:101
1565
- msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1566
- msgstr "Máte zapnutý Frontend Rendering a používáte upravenou kalendářovou šablonu. Pokud vaše šablona nepodporuje Frontend Rendering, váš kalendář nemusí pracovat správně."
1567
-
1568
- #: app/view/event/single.php:123
1569
- msgid "Tickets:"
1570
- msgstr ""
1571
-
1572
- #: app/view/event/single.php:124
1573
- msgid "Free"
1574
- msgstr "Zdarma"
1575
-
1576
- #: app/view/event/single.php:127 app/view/event/ticket.php:38
1577
- msgid "Buy Tickets"
1578
- msgstr "Koupit vstupenky"
1579
-
1580
- #: app/view/event/single.php:150
1581
- msgid "Edit this occurrence (%s)"
1582
- msgstr "Upravit tento výskyt (%s)"
1583
-
1584
- #: app/view/event/single.php:195
1585
- msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1586
- msgstr "Tento příspěvek byl zkopírován z jiného webu <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1587
-
1588
- #: app/view/event/single.php:206
1589
- msgid "View original"
1590
- msgstr "Zobrazit originál"
1591
-
1592
- #: app/view/event/taxonomy.php:113
1593
- msgid "Category image"
1594
- msgstr "Obrázek kategorie"
1595
-
1596
- #: app/view/event/ticket.php:24
1597
- msgid "Register Now"
1598
- msgstr "Registrovat teď"
1599
-
1600
- #: app/view/event/ticket.php:82
1601
- msgid "Event website"
1602
- msgstr "Web události"
1603
-
1604
- #: app/view/event/time.php:84 app/view/event/time.php:118
1605
- msgctxt "Event time separator"
1606
- msgid " @ "
1607
- msgstr " @ "
1608
-
1609
- #: app/view/event/time.php:100
1610
- msgctxt "Event start/end separator"
1611
- msgid " – "
1612
- msgstr " – "
1613
-
1614
- #: app/view/event/time.php:166
1615
- msgid ", and "
1616
- msgstr ", a"
1617
-
1618
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1619
- msgid "Excludes: "
1620
- msgstr ""
1621
-
1622
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1623
- msgid "Repeats"
1624
- msgstr ""
1625
-
1626
- #: lib/calendar-feed/ics.php:38
1627
- msgid "ICS"
1628
- msgstr "ICS"
1629
-
1630
- #: lib/calendar-feed/ics.php:69
1631
- msgid "Another import process in progress. Please try again later."
1632
- msgstr ""
1633
-
1634
- #: lib/calendar-feed/ics.php:174
1635
- msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1636
- msgstr "Kalendáři brání v nahrání dat systémová chyba. Něco se pokazilo a plugin nepracuje správně. Následující zpráva Vám možná napoví více: %s"
1637
-
1638
- #: lib/calendar-feed/ics.php:181
1639
- msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1640
- msgstr ""
1641
-
1642
- #: lib/calendar-feed/ics.php:195
1643
- msgid "Imported %s event"
1644
- msgid_plural "Imported %s events"
1645
- msgstr[0] "Importována %s událost"
1646
- msgstr[1] "Importovány %s události"
1647
- msgstr[2] "Importováno %s událostí"
1648
-
1649
- #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1650
- msgid "Invalid ICS feed ID"
1651
- msgstr ""
1652
-
1653
- #: lib/calendar-feed/ics.php:350
1654
- msgid "Categories (optional)"
1655
- msgstr "Kategorie (volitelně)"
1656
-
1657
- #: app/view/event/content.php:33 app/view/event/single.php:119
1658
- msgid "When:"
1659
- msgstr "Kdy:"
1660
-
1661
- #: app/view/event/content.php:34 app/view/event/single.php:120
1662
- msgid "Where:"
1663
- msgstr "Kde:"
1664
-
1665
- #: app/view/event/content.php:125
1666
- msgid "Calendar"
1667
- msgstr ""
1668
-
1669
- #: app/view/event/content.php:126
1670
- msgid "View all events"
1671
- msgstr "Zobrazit všechny události"
1672
-
1673
- #: app/view/event/location.php:96
1674
- msgid "Click to view map"
1675
- msgstr "Klikněte pro zobrazení mapy."
1676
-
1677
- #: app/view/event/location.php:97
1678
- msgid "View Full-Size Map"
1679
- msgstr "Zobrazit mapu v plné velikosti."
1680
-
1681
- #: app/view/event/post.php:29
1682
- msgid "Event updated. <a href=\"%s\">View event</a>"
1683
- msgstr "Událost aktualizována. <a href=\"%s\">Zobrazit událost</a>"
1684
-
1685
- #: app/view/event/post.php:32
1686
- msgid "Custom field updated."
1687
- msgstr "Vlastní pole aktualizováno."
1688
-
1689
- #: app/view/event/post.php:33
1690
- msgid "Custom field deleted."
1691
- msgstr "Vlastní pole smazáno."
1692
-
1693
- #: app/view/event/post.php:34
1694
- msgid "Event updated."
1695
- msgstr "Událost aktualizována"
1696
-
1697
- #. translators: %s: date and time of the revision
1698
- #: app/view/event/post.php:38
1699
- msgid "Event restored to revision from %s"
1700
- msgstr "Událost obnovena dle stavu k %s"
1701
-
1702
- #: app/view/event/post.php:43
1703
- msgid "Event published. <a href=\"%s\">View event</a>"
1704
- msgstr "Událost zveřejněna. <a href=\"%s\">Zobrazit událost</a>"
1705
-
1706
- #: app/view/event/post.php:46
1707
- msgid "Event saved."
1708
- msgstr "Událost uložena"
1709
-
1710
- #: app/view/event/post.php:48
1711
- msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1712
- msgstr "Událost odeslána. <a target=\"_blank\" href=\"%s\">Náhled události</a>"
1713
-
1714
- #: app/view/event/post.php:52
1715
- msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1716
- msgstr "Událost naplánována pro: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Náhled události</a>"
1717
-
1718
- #. translators: Publish box date format, see http:php.net/date
1719
- #: app/view/event/post.php:54
1720
- msgid "M j, Y @ G:i"
1721
- msgstr ""
1722
-
1723
- #: app/view/event/post.php:58
1724
- msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1725
- msgstr ""
1726
-
1727
- #: app/view/event/single.php:78
1728
- msgid "Event was created in the %s time zone"
1729
- msgstr "Událost byla vytvořena v časovém pásmu %s"
1730
-
1731
- #: app/view/event/single.php:114
1732
- msgid "Add to Calendar"
1733
- msgstr "Přidat do kalendáře"
1734
-
1735
- #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1736
- msgid "Cost:"
1737
- msgstr "Cena:"
1738
-
1739
- #: app/view/event/single.php:122
1740
- msgid "Contact:"
1741
- msgstr "Kontakt:"
1742
-
1743
- #: app/view/calendar/view/agenda.php:169
1744
- msgid "Categories:"
1745
- msgstr "Kategorie"
1746
-
1747
- #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1748
- #: public/admin/themes.php:29
1749
- msgid "Tags:"
1750
- msgstr "Štítky:"
1751
-
1752
- #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1753
- #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1754
- #: app/view/calendar/widget.php:374
1755
- msgid "@ %s"
1756
- msgstr "v %s"
1757
-
1758
- #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1759
- msgid "g a"
1760
- msgstr ""
1761
-
1762
- #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1763
- msgid "Reveal full day"
1764
- msgstr "Ukázat celý den"
1765
-
1766
- #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1767
- msgid "All-day"
1768
- msgstr "Celý den"
1769
-
1770
- #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1771
- msgid "Now:"
1772
- msgstr "Nyní"
1773
-
1774
- #: app/view/calendar/view/week.php:67
1775
- msgid "Week of %s"
1776
- msgstr "Týden %s"
1777
-
1778
- #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1779
- msgid "Upcoming Events"
1780
- msgstr "Nadcházející události"
1781
-
1782
- #: app/view/calendar/widget.php:38
1783
- msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1784
- msgstr "All-in-One Event Calendar: Zobrazí následující události v zobrazení agendy"
1785
-
1786
- #: app/view/calendar/widget.php:80
1787
- msgid "Choose how to limit the upcoming events"
1788
- msgstr "Zvolte, jak omezit následující události"
1789
-
1790
- #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1791
- msgid "Events"
1792
- msgstr "Události"
1793
-
1794
- #: app/view/calendar/widget.php:93
1795
- msgid "Days"
1796
- msgstr "Dnů"
1797
-
1798
- #: app/view/calendar/widget.php:106
1799
- msgid "Number of events to show"
1800
- msgstr "Počet událostí k zobrazení"
1801
-
1802
- #: app/view/calendar/widget.php:115
1803
- msgid "Number of days to show"
1804
- msgstr "Počet dnů k zobrazení"
1805
-
1806
- #: app/view/calendar/widget.php:124
1807
- msgid "Show events filtered for the following tags/categories"
1808
- msgstr ""
1809
-
1810
- #: app/view/calendar/widget.php:141
1811
- msgid "Show the subscribe button in the widget"
1812
- msgstr "Zobrazit ve widgetu tlačítko Odebírat"
1813
-
1814
- #: app/view/calendar/widget.php:370
1815
- msgid "There are no upcoming events."
1816
- msgstr "Nejsou žádné nadcházející události."
1817
-
1818
- #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1819
- msgid "all-day"
1820
- msgstr "celý den"
1821
-
1822
- #: app/view/calendar/widget.php:372
1823
- msgid "View Calendar"
1824
- msgstr "Zobrazit kalendář"
1825
-
1826
- #: app/view/calendar/widget.php:375
1827
- msgid "Add"
1828
- msgstr "Přidat"
1829
-
1830
- #: app/view/calendar/page.php:260
1831
- msgid "Subscribe to filtered calendar"
1832
- msgstr "Přihlásit se do filtrovaného kalendáře"
1833
-
1834
- #: app/view/calendar/page.php:261
1835
- msgid "Subscribe"
1836
- msgstr "Přihlásit se"
1837
-
1838
- #: app/view/calendar/page.php:262 app/view/event/single.php:118
1839
- msgid "Get a Timely Calendar"
1840
- msgstr "Získat Timely Calendar"
1841
-
1842
- #: app/view/calendar/subscribe-button.php:22
1843
- msgid "Add to Timely Calendar"
1844
- msgstr "Vložit do Timely kalendáře"
1845
-
1846
- #: app/view/calendar/subscribe-button.php:23
1847
- msgid "Add to Google"
1848
- msgstr "Vložit do Google"
1849
-
1850
- #: app/view/calendar/subscribe-button.php:24
1851
- msgid "Add to Outlook"
1852
- msgstr "Vložit do Outlooku"
1853
-
1854
- #: app/view/calendar/subscribe-button.php:25
1855
- msgid "Add to Apple Calendar"
1856
- msgstr "Vložit do Apple kalendáře"
1857
-
1858
- #: app/view/calendar/subscribe-button.php:26
1859
- msgid "Add to other calendar"
1860
- msgstr "Vložit do jiného kalendáře"
1861
-
1862
- #: app/view/calendar/subscribe-button.php:29
1863
- msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1864
- msgstr "Kopírovat tuto URL do vlastního Timely kalendáře nebo klikněte pro přidání do vašeho rich-text kalendáře"
1865
-
1866
- #: app/view/calendar/subscribe-button.php:30
1867
- msgid "Subscribe to this calendar in your Google Calendar"
1868
- msgstr "Přihlásit do tohoto kalendáře ve vašem Google kalendáři"
1869
-
1870
- #: app/view/calendar/subscribe-button.php:31
1871
- msgid "Subscribe to this calendar in MS Outlook"
1872
- msgstr "Přihlásit do tohoto kalendáře ve MS Outlooku"
1873
-
1874
- #: app/view/calendar/subscribe-button.php:32
1875
- msgid "Subscribe to this calendar in Apple Calendar/iCal"
1876
- msgstr "Přihlásit do tohoto kalendáře v Apple kalendáři/iCal"
1877
-
1878
- #: app/view/calendar/subscribe-button.php:33
1879
- msgid "Subscribe to this calendar in another plain-text calendar"
1880
- msgstr "Přihlásit do tohoto kalendáře v jiném textovém kalendáři."
1881
-
1882
- #: app/view/calendar/taxonomy.php:97
1883
- msgid "Clear category filter"
1884
- msgstr "Vyčistit filtr kategorií"
1885
-
1886
- #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1887
- #: lib/html/element/setting/tags-categories.php:47
1888
- msgid "Categories"
1889
- msgstr "Kategorie"
1890
-
1891
- #: app/view/calendar/taxonomy.php:99
1892
- msgid "Clear tag filter"
1893
- msgstr "Vyčistit filtr štítků"
1894
-
1895
- #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1896
- #: lib/html/element/setting/tags-categories.php:39
1897
- msgid "Tags"
1898
- msgstr "Štítky"
1899
-
1900
- #: app/view/calendar/view/agenda.php:142
1901
- msgid "Collapse All"
1902
- msgstr "Sbalit vše"
1903
-
1904
- #: app/view/calendar/view/agenda.php:143
1905
- msgid "Expand All"
1906
- msgstr "Rozbalit vše"
1907
-
1908
- #: app/view/calendar/view/agenda.php:166
1909
- msgid "There are no upcoming events to display at this time."
1910
- msgstr "Nyní nejsou žádné nadcházející události k zobrazení."
1911
-
1912
- #: app/view/calendar/view/agenda.php:168
1913
- msgid "Read more"
1914
- msgstr "Číst více"
1915
-
1916
- #: app/view/admin/tickets.php:86
1917
- msgid "Sales"
1918
- msgstr ""
1919
-
1920
- #: app/view/admin/tickets.php:87
1921
- msgid "How do you want the tickets revenue to be sent to you?"
1922
- msgstr ""
1923
-
1924
- #: app/view/admin/tickets.php:88
1925
- msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1926
- msgstr ""
1927
-
1928
- #: app/view/admin/tickets.php:91
1929
- msgid "Cheque"
1930
- msgstr ""
1931
-
1932
- #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1933
- msgid "Paypal"
1934
- msgstr "Paypal"
1935
-
1936
- #: app/view/admin/tickets.php:94
1937
- msgid "Save Changes"
1938
- msgstr ""
1939
-
1940
- #: app/view/admin/tickets.php:95
1941
- msgid "Date"
1942
- msgstr ""
1943
-
1944
- #: app/view/admin/tickets.php:96
1945
- msgid "Event"
1946
- msgstr ""
1947
-
1948
- #: app/view/admin/tickets.php:97
1949
- msgid "Purchaser"
1950
- msgstr ""
1951
-
1952
- #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1953
- #: public/admin/box_event_cost.php:35
1954
- msgid "Tickets"
1955
- msgstr "Vstupenky"
1956
-
1957
- #: app/view/admin/tickets.php:101
1958
- msgid "Total"
1959
- msgstr ""
1960
-
1961
- #: app/view/admin/tickets.php:102
1962
- msgid "Sign Out"
1963
- msgstr ""
1964
-
1965
- #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1966
- #: app/view/admin/widget-creator.php:47
1967
- msgid "Widget Creator"
1968
- msgstr "Vytvoření widgetu"
1969
-
1970
- #: app/view/admin/widget-creator.php:74
1971
- msgctxt "meta box"
1972
- msgid "Widget Creator"
1973
- msgstr "Vytvořit widget"
1974
-
1975
- #: app/view/admin/widget-creator.php:131
1976
- msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1977
- msgstr ""
1978
-
1979
- #: app/view/admin/widget-creator.php:132
1980
- msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1981
- msgstr ""
1982
-
1983
- #: app/view/admin/widget-creator.php:134
1984
- msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1985
- msgstr ""
1986
-
1987
- #: app/view/admin/widget-creator.php:140
1988
- msgid "Paste this code onto your site:"
1989
- msgstr "Vložte tento kód do vašich stránek:"
1990
-
1991
- #: app/view/admin/widget-creator.php:141
1992
- msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1993
- msgstr ""
1994
-
1995
- #: app/view/calendar/page.php:54
1996
- msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
1997
- msgstr ""
1998
-
1999
- #: app/view/calendar/page.php:74
2000
- msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2001
- msgstr ""
2002
-
2003
- #: app/view/admin/settings.php:193
2004
- msgid "Phone Number:"
2005
- msgstr ""
2006
-
2007
- #: app/view/admin/settings.php:194
2008
- msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2009
- msgstr ""
2010
-
2011
- #: app/view/admin/settings.php:197
2012
- msgid "Sign Up"
2013
- msgstr ""
2014
-
2015
- #: app/view/admin/settings.php:198
2016
- msgid "Sign In"
2017
- msgstr ""
2018
-
2019
- #: app/view/admin/settings.php:212
2020
- msgid "Save Settings"
2021
- msgstr "Uložit nastavení"
2022
-
2023
- #: app/view/admin/settings.php:219
2024
- msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2025
- msgstr "Pokud formulář uvedený níže nefunguje, přejděte na <a href=\"%s\">tento odkaz</a>, prosím."
2026
-
2027
- #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2028
- msgid "Theme Options"
2029
- msgstr "Nastavení šablony"
2030
-
2031
- #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2032
- msgid "Calendar Theme Options"
2033
- msgstr "Nastavení šablony kalendáře"
2034
-
2035
- #: app/view/admin/theme-options.php:79
2036
- msgctxt "meta box"
2037
- msgid "Calendar Theme Options"
2038
- msgstr "Nastavení šablony kalendáře"
2039
-
2040
- #: app/view/admin/theme-options.php:133
2041
- msgid "General"
2042
- msgstr "Obecné"
2043
-
2044
- #: app/view/admin/theme-options.php:136
2045
- msgid "Tables"
2046
- msgstr "Tabulky"
2047
-
2048
- #: app/view/admin/theme-options.php:139
2049
- msgid "Buttons"
2050
- msgstr "Tlačítka"
2051
-
2052
- #: app/view/admin/theme-options.php:142
2053
- msgid "Forms"
2054
- msgstr "Formuláře"
2055
-
2056
- #: app/view/admin/theme-options.php:145
2057
- msgid "Calendar general"
2058
- msgstr "Kalendář obecný"
2059
-
2060
- #: app/view/admin/theme-options.php:148
2061
- msgid "Month/week/day view"
2062
- msgstr "Mesíční/týdenní/denní zobrazení"
2063
-
2064
- #: app/view/admin/theme-options.php:151
2065
- msgid "Agenda view"
2066
- msgstr "Zobrazení agendy"
2067
-
2068
- #: app/view/admin/theme-options.php:169
2069
- msgid "Save Options"
2070
- msgstr "Uložit možnosti"
2071
-
2072
- #: app/view/admin/theme-options.php:177
2073
- msgid "Reset to Defaults"
2074
- msgstr "Resetovat na výchozí"
2075
-
2076
- #: app/view/admin/theme-switching.php:31
2077
- msgid "All-in-One Event Calendar: Themes"
2078
- msgstr "All-in-One Event Calendar: Šablony"
2079
-
2080
- #: app/view/admin/tickets.php:36
2081
- msgid "Ticketing"
2082
- msgstr ""
2083
-
2084
- #: app/view/admin/tickets.php:37
2085
- msgid "Ticketing<sup>beta</sup>"
2086
- msgstr ""
2087
-
2088
- #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2089
- msgid "Time.ly Ticketing<sup>beta</sup>"
2090
- msgstr ""
2091
-
2092
- #: app/view/admin/settings.php:98
2093
- msgctxt "meta box"
2094
- msgid "Timely"
2095
- msgstr "Timely"
2096
-
2097
- #: app/view/admin/settings.php:140
2098
- msgid "Viewing Events"
2099
- msgstr "Zobrazení událostí"
2100
-
2101
- #: app/view/admin/settings.php:143
2102
- msgid "Adding/Editing Events"
2103
- msgstr "Přidávání/editace událostí"
2104
-
2105
- #: app/view/admin/settings.php:146
2106
- msgid "Advanced"
2107
- msgstr "Pokročilé"
2108
-
2109
- #: app/view/admin/settings.php:148
2110
- msgid "Advanced Settings"
2111
- msgstr "Pokročilé nastavení"
2112
-
2113
- #: app/view/admin/settings.php:149
2114
- msgid "Shortcodes"
2115
- msgstr "Shortkody"
2116
-
2117
- #: app/view/admin/settings.php:150
2118
- msgid "Email Templates"
2119
- msgstr "Vzory emailů"
2120
-
2121
- #: app/view/admin/settings.php:151
2122
- msgid "External Services"
2123
- msgstr "Externí služby"
2124
-
2125
- #: app/view/admin/settings.php:152
2126
- msgid "Cache Report"
2127
- msgstr ""
2128
-
2129
- #: app/view/admin/settings.php:171
2130
- msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2131
- msgstr ""
2132
-
2133
- #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2134
- #: public/admin/box_ask_customer_review.php:112
2135
- #: public/admin/box_ask_customer_review.php:126
2136
- #: public/admin/box_ask_customer_review.php:140
2137
- #: public/admin/box_ask_customer_review.php:158
2138
- #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2139
- msgid "This field is required."
2140
- msgstr ""
2141
-
2142
- #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2143
- msgid "Register"
2144
- msgstr "Registrovat"
2145
-
2146
- #: app/view/admin/settings.php:184
2147
- msgid "Sign in"
2148
- msgstr ""
2149
-
2150
- #: app/view/admin/settings.php:185
2151
- msgid "You are successfully signed in to <b>Timely Network</b>."
2152
- msgstr ""
2153
-
2154
- #: app/view/admin/settings.php:186
2155
- msgid "Sign out"
2156
- msgstr ""
2157
-
2158
- #: app/view/admin/settings.php:187
2159
- msgid "Hide form"
2160
- msgstr ""
2161
-
2162
- #: app/view/admin/settings.php:188
2163
- msgid "Show form"
2164
- msgstr ""
2165
-
2166
- #: app/view/admin/settings.php:189
2167
- msgid "Full Name:"
2168
- msgstr ""
2169
-
2170
- #: app/view/admin/settings.php:190
2171
- msgid "Email:"
2172
- msgstr "E-mail:"
2173
-
2174
- #: app/view/admin/settings.php:191
2175
- msgid "Password:"
2176
- msgstr ""
2177
-
2178
- #: app/view/admin/settings.php:192
2179
- msgid "Confirm Password:"
2180
- msgstr ""
2181
-
2182
- #: app/view/admin/get-repeat-box.php:483
2183
- msgid "fourth"
2184
- msgstr "čtvrtý"
2185
-
2186
- #: app/view/admin/get-repeat-box.php:495
2187
- msgid "Sunday"
2188
- msgstr "Neděle"
2189
-
2190
- #: app/view/admin/get-repeat-box.php:496
2191
- msgid "Monday"
2192
- msgstr "Pondělí"
2193
-
2194
- #: app/view/admin/get-repeat-box.php:497
2195
- msgid "Tuesday"
2196
- msgstr "Úterý"
2197
-
2198
- #: app/view/admin/get-repeat-box.php:498
2199
- msgid "Wednesday"
2200
- msgstr "Středa"
2201
-
2202
- #: app/view/admin/get-repeat-box.php:499
2203
- msgid "Thursday"
2204
- msgstr "Čtvrtek"
2205
-
2206
- #: app/view/admin/get-repeat-box.php:500
2207
- msgid "Friday"
2208
- msgstr "Pátek"
2209
-
2210
- #: app/view/admin/get-repeat-box.php:501
2211
- msgid "Saturday"
2212
- msgstr "Sobota"
2213
-
2214
- #: app/view/admin/get-repeat-box.php:503
2215
- msgid "day"
2216
- msgstr "den"
2217
-
2218
- #: app/view/admin/get-repeat-box.php:504
2219
- msgid "weekday"
2220
- msgstr "pracovní den"
2221
-
2222
- #: app/view/admin/get-repeat-box.php:505
2223
- msgid "weekend day"
2224
- msgstr "víkendový den"
2225
-
2226
- #: app/view/admin/get-repeat-box.php:571
2227
- msgid "year(s)"
2228
- msgstr "rok(ů)"
2229
-
2230
- #: app/view/admin/nav.php:22
2231
- msgid "<a href=\"%s\">Settings</a>"
2232
- msgstr "<a href=\"%s\">Nastavení</a>"
2233
-
2234
- #: app/view/admin/nav.php:28
2235
- msgid "<a href=\"%s\">Check for updates</a>"
2236
- msgstr ""
2237
-
2238
- #: app/view/admin/organize.php:100
2239
- msgid "Organize Events"
2240
- msgstr "Uspořádat události"
2241
-
2242
- #: app/view/admin/settings.php:30
2243
- msgid "All-in-One Event Calendar: Settings"
2244
- msgstr "All-in-One Event Calendar: Nastavení"
2245
-
2246
- #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2247
- #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2248
- msgid "Settings"
2249
- msgstr "Nastavení"
2250
-
2251
- #: app/view/admin/settings.php:89
2252
- msgctxt "meta box"
2253
- msgid "General Settings"
2254
- msgstr "Obecná nastavení"
2255
-
2256
- #: app/view/admin/get-repeat-box.php:480
2257
- msgid "first"
2258
- msgstr "první"
2259
-
2260
- #: app/view/admin/get-repeat-box.php:481
2261
- msgid "second"
2262
- msgstr "druhý"
2263
-
2264
- #: app/view/admin/get-repeat-box.php:482
2265
- msgid "third"
2266
- msgstr "třetí"
2267
-
2268
- #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2269
- msgid "Import Feeds"
2270
- msgstr ""
2271
-
2272
- #: app/view/admin/calendar-feeds.php:48
2273
- msgctxt "meta box"
2274
- msgid "Feed Subscriptions"
2275
- msgstr ""
2276
-
2277
- #: app/view/admin/calendar-feeds.php:65
2278
- msgid "All-in-One Event Calendar: Import Feeds"
2279
- msgstr ""
2280
-
2281
- #: app/view/admin/event-category.php:30
2282
- msgid "Color"
2283
- msgstr "Barva"
2284
-
2285
- #: app/view/admin/event-category.php:32
2286
- msgid "Image"
2287
- msgstr "Obrázek"
2288
-
2289
- #: app/view/admin/event-category.php:155
2290
- msgid "Category Color"
2291
- msgstr "Barva kategorie"
2292
-
2293
- #: app/view/admin/event-category.php:156
2294
- msgid "Events in this category will be identified by this color"
2295
- msgstr "Události této kategorie budou označeny touto barvou"
2296
-
2297
- #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2298
- msgid "Category Image"
2299
- msgstr "Obrázek kategorie"
2300
-
2301
- #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2302
- msgid "Add Image"
2303
- msgstr "Přidat obrázek"
2304
-
2305
- #: app/view/admin/event-category.php:195
2306
- msgid "Remove Image"
2307
- msgstr "Odstranit obrázek"
2308
-
2309
- #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2310
- msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2311
- msgstr "Přiřaďte volitelný obrázek kategorii. Doporučená velikost: čtvercový formát, min. 400&times;400 pixelů."
2312
-
2313
- #: app/view/admin/get-repeat-box.php:94
2314
- msgid "times"
2315
- msgstr "krát"
2316
-
2317
- #: app/view/admin/get-repeat-box.php:164
2318
- msgid "Recurrence rule cannot be empty."
2319
- msgstr "Pravidlo opakování nemůže být prázdné."
2320
-
2321
- #: app/view/admin/get-repeat-box.php:182
2322
- msgid "Recurrence rule was not provided."
2323
- msgstr "Pravidlo pro opakování nebylo uplatněno."
2324
-
2325
- #: app/view/admin/get-repeat-box.php:209
2326
- msgid "Never"
2327
- msgstr "Níkdy"
2328
-
2329
- #: app/view/admin/get-repeat-box.php:210
2330
- msgid "After"
2331
- msgstr "Po"
2332
-
2333
- #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2334
- msgid "On date"
2335
- msgstr "V termínu"
2336
-
2337
- #: app/view/admin/get-repeat-box.php:247
2338
- msgid "day(s)"
2339
- msgstr "den (dnů)"
2340
-
2341
- #: app/view/admin/get-repeat-box.php:330
2342
- msgid "week(s)"
2343
- msgstr "týden (týdnů)"
2344
-
2345
- #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2346
- #: lib/recurrence/rule.php:298
2347
- msgid "last"
2348
- msgstr "poslední"
2349
-
2350
- #: app/view/admin/get-repeat-box.php:426
2351
- msgid "month(s)"
2352
- msgstr "měsíc(ů)"
2353
-
2354
- #: app/model/settings.php:929
2355
- msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2356
- msgstr ""
2357
-
2358
- #: app/model/settings.php:932
2359
- msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2360
- msgstr ""
2361
-
2362
- #: app/model/settings.php:944
2363
- msgid "Current <strong>robots.txt</strong> on this site"
2364
- msgstr "Aktuální <strong>robots.txt</strong> na těchto stránkách"
2365
-
2366
- #: app/model/settings.php:948
2367
- msgid ""
2368
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2369
- "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2370
- "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2371
- "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2372
- "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2373
- msgstr ""
2374
-
2375
- #: app/model/settings.php:965
2376
- msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2377
- msgstr "<strong>Zveřejnit, propagovat a sdílet mé akce</strong> označené jako veřejné v sítí Timely. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2378
-
2379
- #: app/model/settings.php:988
2380
- msgid "Templates cache improves site performance"
2381
- msgstr ""
2382
-
2383
- #: app/model/settings.php:1001
2384
- msgid "Display events in <strong>calendar time zone</strong>"
2385
- msgstr ""
2386
-
2387
- #: app/model/settings.php:1004
2388
- msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2389
- msgstr ""
2390
-
2391
- #: app/view/admin/add-new-event.php:26
2392
- msgid "Event Details"
2393
- msgstr "Detail události"
2394
-
2395
- #: app/view/admin/add-new-event.php:423
2396
- msgid "Set banner image"
2397
- msgstr "Nastavit obrázek banneru"
2398
-
2399
- #: app/view/admin/add-new-event.php:424
2400
- msgid "Remove banner image"
2401
- msgstr "Odstranit obrázek banneru"
2402
-
2403
- #: app/view/admin/add-ons.php:68
2404
- msgid "Add-ons for All In One Event Calendar"
2405
- msgstr "Doplňky pro All In One Event Calendar"
2406
-
2407
- #: app/view/admin/add-ons.php:71
2408
- msgid "Browse All Extensions"
2409
- msgstr "Procházet všechna rozšíření"
2410
-
2411
- #: app/view/admin/add-ons.php:74
2412
- msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2413
- msgstr "Tyto doplňky rozšiřují funkcionalitu All In One Event Calendar"
2414
-
2415
- #: app/view/admin/add-ons.php:77
2416
- msgid "There was an error retrieving the extensions list from the server. Please try again later."
2417
- msgstr "Vyskytla se chyba při získávání seznamu rozšíření ze serveru. Opakujte akci později."
2418
-
2419
- #: app/view/admin/all-events.php:16
2420
- msgid "Author"
2421
- msgstr "Autor"
2422
-
2423
- #: app/view/admin/all-events.php:17
2424
- msgid "Post Date"
2425
- msgstr "Datum vystavení"
2426
-
2427
- #: app/view/admin/all-events.php:18
2428
- msgid "Event date/time"
2429
- msgstr "Datum/čas události"
2430
-
2431
- #: app/view/admin/all-events.php:22
2432
- msgid "Ticket Types"
2433
- msgstr ""
2434
-
2435
- #: app/view/admin/all-events.php:134
2436
- msgid "Show All "
2437
- msgstr "Ukázat vše"
2438
-
2439
- #: app/view/admin/all-events.php:147
2440
- msgid "Show All Authors"
2441
- msgstr ""
2442
-
2443
- #: app/model/settings.php:746
2444
- msgid "Strict compatibility content filtering"
2445
- msgstr "Filtrace obsahu v režimu striktní kompatibility"
2446
-
2447
- #: app/model/settings.php:758
2448
- msgid " <strong>Hide featured image</strong> from event details page"
2449
- msgstr ""
2450
-
2451
- #: app/model/settings.php:761
2452
- msgid "Select this option if your theme already displays each post's featured image."
2453
- msgstr ""
2454
-
2455
- #: app/model/settings.php:772
2456
- msgid "Input dates in this format"
2457
- msgstr "Vložte datumy v těchto formátech"
2458
-
2459
- #: app/model/settings.php:777
2460
- msgid "Default (d/m/yyyy)"
2461
- msgstr "Výchozí (d/m/yyyy)"
2462
-
2463
- #: app/model/settings.php:781
2464
- msgid "US (m/d/yyyy)"
2465
- msgstr "Americký (m/d/yyyy)"
2466
-
2467
- #: app/model/settings.php:785
2468
- msgid "ISO 8601 (yyyy-m-d)"
2469
- msgstr "ISO 8601 (yyyy-m-d)"
2470
-
2471
- #: app/model/settings.php:789
2472
- msgid "Dotted (m.d.yyyy)"
2473
- msgstr "S tečkami (m.d.yyyy)"
2474
-
2475
- #: app/model/settings.php:801
2476
- msgid " Use <strong>24h time</strong> in time pickers"
2477
- msgstr ""
2478
-
2479
- #: app/model/settings.php:812
2480
- msgid "<strong>Disable address autocomplete</strong> function"
2481
- msgstr "<strong>Zakázat funkci automatické dokončování adres</strong>"
2482
-
2483
- #: app/model/settings.php:823
2484
- msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2485
- msgstr ""
2486
-
2487
- #: app/model/settings.php:839
2488
- msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2489
- msgstr "Zobrazit staré <strong>Vložit událost</strong> tlačítko nad kalendářem pro privilegované uživatele"
2490
-
2491
- #: app/model/settings.php:842
2492
- msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2493
- msgstr ""
2494
-
2495
- #: app/model/settings.php:863
2496
- msgid "Move calendar into this DOM element"
2497
- msgstr ""
2498
-
2499
- #: app/model/settings.php:865
2500
- msgid ""
2501
- "Optional. Use this JavaScript-based shortcut to place the\n"
2502
- "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2503
- "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2504
- "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2505
- "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2506
- "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2507
- "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2508
- "\t\t\t\t\t\tby the calendar."
2509
- msgstr ""
2510
-
2511
- #: app/model/settings.php:884
2512
- msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2513
- msgstr ""
2514
-
2515
- #: app/model/settings.php:887
2516
- msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2517
- msgstr ""
2518
-
2519
- #: app/model/settings.php:899
2520
- msgid "Disable <strong>gzip</strong> compression."
2521
- msgstr "Deaktivovat <strong>gzip</strong> kompresi."
2522
-
2523
- #: app/model/settings.php:902
2524
- msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2525
- msgstr "Použijte tuto volbu pokud se kalendář chová neresponsivně <a href=\"http://support.time.ly/disable-gzip-compression/\">Čti více</a> o tomto problému. (Pro verzi 2.1 a vyšší je gzip zakázán jako výchozí volba pro zachování co největší kompatibility.)"
2526
-
2527
- #: app/model/settings.php:914
2528
- msgid "Use frontend rendering."
2529
- msgstr "Použít před-renderování"
2530
-
2531
- #: app/model/settings.php:917
2532
- msgid "Renders calendar views on the client rather than the server; can improve performance."
2533
- msgstr "Organizovat události"
2534
-
2535
- #: app/model/settings.php:493 app/view/calendar/widget.php:128
2536
- msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2537
- msgstr ""
2538
-
2539
- #: app/model/settings.php:508
2540
- msgid "Default calendar start date (optional)"
2541
- msgstr "Výchozí datum začátku kalendáře (volitelně)"
2542
-
2543
- #: app/model/settings.php:519
2544
- msgid "Agenda pages show at most"
2545
- msgstr "Stránky agendy zobrazí maximálně"
2546
-
2547
- #: app/model/settings.php:532
2548
- msgid "Week/Day view starts at"
2549
- msgstr "Zobrazení týdne/dne začíná v"
2550
-
2551
- #: app/model/settings.php:545
2552
- msgid "Week/Day view ends at"
2553
- msgstr "Zobrazení týdne/dne končí v"
2554
-
2555
- #: app/model/settings.php:558
2556
- msgid "<strong>Word-wrap event stubs</strong> in Month view"
2557
- msgstr ""
2558
-
2559
- #: app/model/settings.php:561
2560
- msgid "Only applies to events that span a single day."
2561
- msgstr "Funguje jen u událostí s rozestupem jeden den."
2562
-
2563
- #: app/model/settings.php:573
2564
- msgid ""
2565
- "In <span class=\"ai1ec-tooltip-toggle\"\n"
2566
- "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2567
- "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2568
- "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2569
- "\t\t\t\t\t\tfrom last day shown</strong>"
2570
- msgstr ""
2571
-
2572
- #: app/model/settings.php:589
2573
- msgid "Keep all events <strong>expanded</strong> in Agenda view"
2574
- msgstr "Zachovat všechny události <strong>rozbalené</strong> v Zobrazení agendy"
2575
-
2576
- #: app/model/settings.php:601
2577
- msgid "<strong>Show year</strong> in calendar date labels"
2578
- msgstr "<strong>Zobrazit rok</strong> v názvech datumů kalendáře"
2579
-
2580
- #: app/model/settings.php:613
2581
- msgid "<strong>Show location in event titles</strong> in calendar views"
2582
- msgstr "<strong>Zobrazit umístění v názvech událostí</strong> v zobrazeních kalendáře"
2583
-
2584
- #: app/model/settings.php:625
2585
- msgid "<strong>Exclude</strong> events from search results"
2586
- msgstr "<strong>Vyloučit</strong> události z výsledků hledání"
2587
-
2588
- #: app/model/settings.php:637
2589
- msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2590
- msgstr ""
2591
-
2592
- #: app/model/settings.php:649
2593
- msgid "Hide <strong>Get a Timely Calendar</strong> button"
2594
- msgstr "Skrýt tlačítko <strong>Získat kalendář Timely</strong> "
2595
-
2596
- #: app/model/settings.php:661
2597
- msgid " Hide <strong>Google Maps</strong> until clicked"
2598
- msgstr " Skrýt <strong>Google Mapy</strong> dokud na ně nekliknete"
2599
-
2600
- #: app/model/settings.php:673
2601
- msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2602
- msgstr ""
2603
-
2604
- #: app/model/settings.php:676
2605
- msgid "Only applies to first visible calendar found on the page."
2606
- msgstr "Aplikováno pouze na první viditelný kalendář nalezený na stránce."
2607
-
2608
- #: app/model/settings.php:688
2609
- msgid "Offset affixed filter bar vertically by"
2610
- msgstr ""
2611
-
2612
- #: app/model/settings.php:703
2613
- msgid "Wide screens only (&#8805; 1200px)"
2614
- msgstr " Pouze pro širokoúhlé obrazovky (&#8805; 1200px)"
2615
-
2616
- #: app/model/settings.php:718
2617
- msgid "Tablets only (< 980px)"
2618
- msgstr "Pouze pro tablety (< 980px)"
2619
-
2620
- #: app/model/settings.php:733
2621
- msgid "Phones only (< 768px)"
2622
- msgstr "Pouze pro telefony (< 768px)"
2623
-
2624
- #: app/model/api.php:456
2625
- msgid "Not available"
2626
- msgstr ""
2627
-
2628
- #: app/model/api.php:659
2629
- msgid "%s.<br/>Detail: %s."
2630
- msgstr ""
2631
-
2632
- #: app/model/api.php:664
2633
- msgid "API URL: %s.<br/>Detail: %s - %s"
2634
- msgstr ""
2635
-
2636
- #: app/model/api.php:672
2637
- msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2638
- msgstr ""
2639
-
2640
- #: app/model/api.php:679
2641
- msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2642
- msgstr ""
2643
-
2644
- #: app/model/event/parent.php:186
2645
- msgid "Edit &#8220;%s&#8221;"
2646
- msgstr ""
2647
-
2648
- #: app/model/event/parent.php:193
2649
- msgid "Base Event"
2650
- msgstr "Základní událost"
2651
-
2652
- #: app/model/review.php:169
2653
- msgid "Feedback provided by user"
2654
- msgstr ""
2655
-
2656
- #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2657
- msgid "Name"
2658
- msgstr "Jméno"
2659
-
2660
- #: app/model/review.php:173
2661
- msgid "E-mail"
2662
- msgstr ""
2663
-
2664
- #: app/model/review.php:175
2665
- msgid "Site URL"
2666
- msgstr ""
2667
-
2668
- #: app/model/review.php:177
2669
- msgid "Message"
2670
- msgstr ""
2671
-
2672
- #: app/model/settings.php:401
2673
- #: lib/html/element/setting/calendar-page-selector.php:50
2674
- msgid "Calendar page"
2675
- msgstr "Strana kalendáře"
2676
-
2677
- #: app/model/settings.php:411
2678
- msgid "Week starts on"
2679
- msgstr "Týden startuje od"
2680
-
2681
- #: app/model/settings.php:424
2682
- msgid "Available views"
2683
- msgstr "Dostupná zobrazení"
2684
-
2685
- #: app/model/settings.php:432
2686
- msgid "Agenda"
2687
- msgid_plural "Agenda"
2688
- msgstr[0] "Agenda"
2689
- msgstr[1] "Agendy"
2690
- msgstr[2] "Agend"
2691
-
2692
- #: app/model/settings.php:443
2693
- msgid "Day"
2694
- msgid_plural "Day"
2695
- msgstr[0] "Den"
2696
- msgstr[1] "Dny"
2697
- msgstr[2] "Dnů"
2698
-
2699
- #: app/model/settings.php:454
2700
- msgid "Month"
2701
- msgid_plural "Month"
2702
- msgstr[0] "Měsíc"
2703
- msgstr[1] "Měsíce"
2704
- msgstr[2] "Měsíců"
2705
-
2706
- #: app/model/settings.php:465
2707
- msgid "Week"
2708
- msgid_plural "Week"
2709
- msgstr[0] "Týden"
2710
- msgstr[1] "Týdny"
2711
- msgstr[2] "Týdnů"
2712
-
2713
- #: app/model/settings.php:479
2714
- msgid "Timezone"
2715
- msgstr "Časové pásmo"
2716
-
2717
- #: app/model/settings.php:492
2718
- msgid "Preselected calendar filters"
2719
- msgstr "Předvybrané filtry kalendáře"
2720
-
2721
- #: app/controller/javascript.php:509
2722
- msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2723
- msgstr "Vyskytla se chyba při získávání událostí.<br>Stav: %STATUS% <br>Chyba: %ERROR%"
2724
-
2725
- #: app/controller/javascript.php:516
2726
- msgid "The end date can't be earlier than the start date."
2727
- msgstr "Událost nemůže skončit dřív než začne. "
2728
-
2729
- #: app/controller/javascript.php:517
2730
- msgid "For week and day view, you must select an interval of at least 6 hours."
2731
- msgstr "Je třeba zvolit alespoň 6ti hodinový interval pro týdenní a denní náhled."
2732
-
2733
- #: app/model/api.php:40
2734
- msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2735
- msgstr ""
2736
-
2737
- #: app/model/api.php:41
2738
- msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2739
- msgstr ""
2740
-
2741
- #: app/model/api.php:42
2742
- msgid "We were unable to Sign you Up for Time.ly Ticketing"
2743
- msgstr ""
2744
-
2745
- #: app/model/api.php:43
2746
- msgid "We were unable to Sign you In for Time.ly Ticketing"
2747
- msgstr ""
2748
-
2749
- #: app/model/api.php:44
2750
- msgid "We were unable to create the Event on Time.ly Ticketing"
2751
- msgstr ""
2752
-
2753
- #: app/model/api.php:45
2754
- msgid "We were unable to update the Event on Time.ly Ticketing"
2755
- msgstr ""
2756
-
2757
- #: app/model/api.php:46
2758
- msgid "The event has the option Tickets selected but any ticket was added."
2759
- msgstr ""
2760
-
2761
- #: app/model/api.php:47
2762
- msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2763
- msgstr ""
2764
-
2765
- #: app/model/api.php:48
2766
- msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2767
- msgstr ""
2768
-
2769
- #: app/model/api.php:49
2770
- msgid "Payment preferences were not saved."
2771
- msgstr ""
2772
-
2773
- #: app/model/api.php:50
2774
- msgid "Payment preferences were saved."
2775
- msgstr ""
2776
-
2777
- #: app/model/api.php:51
2778
- msgid "Event not found inside the database."
2779
- msgstr ""
2780
-
2781
- #: app/model/api.php:52
2782
- msgid "We were unable to get the Sales information from Time.ly Ticketing"
2783
- msgstr ""
2784
-
2785
- #: app/model/api.php:446
2786
- msgid "Past Event"
2787
- msgstr ""
2788
-
2789
- #: app/model/api.php:448
2790
- msgid "Event closed"
2791
- msgstr ""
2792
-
2793
- #: app/model/api.php:450
2794
- msgid "Not available yet"
2795
- msgstr ""
2796
-
2797
- #: app/model/api.php:452
2798
- msgid "Sale closed"
2799
- msgstr ""
2800
-
2801
- #: app/model/api.php:454
2802
- msgid "Sold out"
2803
- msgstr ""
2804
-
2805
- #: app/controller/javascript.php:484
2806
- msgid "Report"
2807
- msgstr ""
2808
-
2809
- #: app/controller/javascript.php:485
2810
- msgid "Sale dates"
2811
- msgstr ""
2812
-
2813
- #: app/controller/javascript.php:486
2814
- msgid "Limits"
2815
- msgstr ""
2816
-
2817
- #: app/controller/javascript.php:487
2818
- msgid "Actions"
2819
- msgstr ""
2820
-
2821
- #: app/controller/javascript.php:488
2822
- msgid "Sold:"
2823
- msgstr ""
2824
-
2825
- #: app/controller/javascript.php:489
2826
- msgid "Left:"
2827
- msgstr ""
2828
-
2829
- #: app/controller/javascript.php:490
2830
- msgid "Start:"
2831
- msgstr ""
2832
-
2833
- #: app/controller/javascript.php:491
2834
- msgid "End:"
2835
- msgstr ""
2836
-
2837
- #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2838
- msgid "Min:"
2839
- msgstr ""
2840
-
2841
- #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2842
- msgid "Max:"
2843
- msgstr ""
2844
-
2845
- #: app/controller/javascript.php:494
2846
- msgid "Attendees"
2847
- msgstr ""
2848
-
2849
- #: app/controller/javascript.php:495
2850
- msgid "Hide Attendees"
2851
- msgstr ""
2852
-
2853
- #: app/controller/javascript.php:496
2854
- msgid "Attendees List"
2855
- msgstr ""
2856
-
2857
- #: app/controller/javascript.php:497
2858
- msgid "Guest Name"
2859
- msgstr ""
2860
-
2861
- #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2862
- msgid "Status"
2863
- msgstr ""
2864
-
2865
- #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2866
- #: app/view/event/ticket.php:71
2867
- msgid "Email"
2868
- msgstr "Email"
2869
-
2870
- #: app/controller/javascript.php:500
2871
- msgid "No attendees for this ticket type."
2872
- msgstr ""
2873
-
2874
- #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2875
- #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2876
- msgid "Edit"
2877
- msgstr "Upravit"
2878
-
2879
- #: app/controller/javascript.php:502
2880
- msgid "Code"
2881
- msgstr ""
2882
-
2883
- #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2884
- msgid "Unlimited"
2885
- msgstr ""
2886
-
2887
- #: app/controller/javascript.php:506
2888
- msgid "Your message has been sent. Thank you for your feedback."
2889
- msgstr ""
2890
-
2891
- #: app/controller/javascript.php:507
2892
- msgid "Your message has not been sent. Please try again or contact us."
2893
- msgstr ""
2894
-
2895
- #: app/controller/javascript.php:405
2896
- msgid "Please enter a valid iCalendar URL."
2897
- msgstr "Zadejte, prosím, platný odkaz URL iKalendáře."
2898
-
2899
- #: app/controller/javascript.php:408
2900
- msgid "Please enter a valid email address."
2901
- msgstr "Prosím vložte platnou emailovou adresu."
2902
-
2903
- #: app/controller/javascript.php:410
2904
- msgid "Choose Image"
2905
- msgstr "Vybrat obrázek"
2906
-
2907
- #: app/controller/javascript.php:413
2908
- msgid "The value you have entered is not a valid CSS length."
2909
- msgstr "Zadaná hodnota není v platném CSS formátu."
2910
-
2911
- #: app/controller/javascript.php:416
2912
- msgid "Are you sure you want to reset your theme options to their default values?"
2913
- msgstr "Jste si jist, že chcete resetovat nastavení šablony do výchozího nastavení?"
2914
-
2915
- #: app/controller/javascript.php:419
2916
- msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2917
- msgstr "Prosím vložte platnou zeměpisnou šířku. Platná hodnota leží mezi +90 a -90."
2918
-
2919
- #: app/controller/javascript.php:422
2920
- msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2921
- msgstr "Prosím vložte platnou zeměpisnou dílku. Platná hodnota leží mezi +180 a -180."
2922
-
2923
- #: app/controller/javascript.php:425
2924
- msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2925
- msgstr ""
2926
-
2927
- #: app/controller/javascript.php:428
2928
- msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2929
- msgstr ""
2930
-
2931
- #: app/controller/javascript.php:431
2932
- msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2933
- msgstr ""
2934
-
2935
- #: app/controller/javascript.php:434
2936
- msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2937
- msgstr "URL vložená do <b>Cena akce a vstupenky</b> &gt; <b>Koupit vstupenku URL</b> se zdá být neplatná."
2938
-
2939
- #: app/controller/javascript.php:437
2940
- msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2941
- msgstr "URL musí začínat buď \"http://\" nebo \"https://\"."
2942
-
2943
- #: app/controller/javascript.php:440
2944
- msgid "Loading&hellip;"
2945
- msgstr ""
2946
-
2947
- #: app/controller/javascript.php:443
2948
- msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2949
- msgstr ""
2950
-
2951
- #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2952
- msgid "Preview:"
2953
- msgstr "Náhled:"
2954
-
2955
- #: app/controller/javascript.php:474
2956
- msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2957
- msgstr "Nahrávám náhled&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2958
-
2959
- #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2960
- msgid "Ticketing Details"
2961
- msgstr ""
2962
-
2963
- #: app/controller/javascript.php:480
2964
- msgid "Hide Ticketing Details"
2965
- msgstr ""
2966
-
2967
- #: app/controller/javascript.php:481
2968
- msgid "Loading tickets details..."
2969
- msgstr ""
2970
-
2971
- #: app/controller/javascript.php:482
2972
- msgid "Type and price"
2973
- msgstr ""
2974
-
2975
- #: app/controller/javascript.php:483
2976
- msgid "Info"
2977
- msgstr ""
2978
-
2979
- #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2980
- #: app/view/admin/add-ons.php:27
2981
- msgid "Add-ons"
2982
- msgstr "Doplňky"
2983
-
2984
- #: app/controller/front.php:343
2985
- msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
2986
- msgstr ""
2987
-
2988
- #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
2989
- #: app/view/admin/theme-switching.php:55
2990
- msgid "Calendar Themes"
2991
- msgstr "Šablony kalendáře"
2992
-
2993
- #: app/controller/front.php:990
2994
- msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
2995
- msgstr ""
2996
-
2997
- #: app/controller/javascript-widget.php:48
2998
- msgid "You must choose the Calendar page before using the Super Widget"
2999
- msgstr "Před použitím Super widgetu musíte vybrat stránku kalendáře"
3000
-
3001
- #: app/controller/javascript.php:402
3002
- msgid "This feed is already being imported."
3003
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/all-in-one-event-calendar-cs_CZ.mo CHANGED
Binary file
language/all-in-one-event-calendar-cs_CZ.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-02-18 05:23:19+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -75,7 +75,7 @@ msgstr "Pozadí seznamu položek (aktivní/po najetí myší)"
75
  #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
  #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
  msgid "Input field placeholder text"
78
- msgstr ""
79
 
80
  #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
  #: public/themes-ai1ec/vortex/less/user_variables.php:161
@@ -140,12 +140,12 @@ msgstr "Ohraničení vstupního pole"
140
  #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
  #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
  msgid "Input field border (focus)"
143
- msgstr ""
144
 
145
  #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
  #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
  msgid "Input field background (disabled)"
148
- msgstr ""
149
 
150
  #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
  #: public/themes-ai1ec/vortex/less/user_variables.php:119
@@ -301,6 +301,10 @@ msgid ""
301
  " Enter the feed URL(s) below and the events from those feeds will be\n"
302
  " imported periodically."
303
  msgstr ""
 
 
 
 
304
 
305
  #: public/admin/plugins/ics/display_feeds.php:14
306
  msgid "Check for new events"
@@ -388,7 +392,7 @@ msgstr "Zvolte šablonu"
388
 
389
  #: public/admin/calendar_tasks.php:53
390
  msgid "Change the look and feel."
391
- msgstr "Pondělí"
392
 
393
  #: public/admin/calendar_tasks.php:63
394
  msgid "Manage Calendar Feeds"
@@ -440,11 +444,11 @@ msgstr "Zachovat původní kategorie událostí a štítky"
440
 
441
  #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
442
  msgid "On refresh, preserve previously imported events that are missing from the feed"
443
- msgstr ""
444
 
445
  #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
446
  msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
447
- msgstr ""
448
 
449
  #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
450
  msgid "Assign default time zone to events in UTC"
@@ -536,7 +540,7 @@ msgstr "Dobrovolný příspěvek"
536
 
537
  #: public/admin/box_eventbrite.php:68
538
  msgid "The price for this event's first ticket will be taken from the Cost field above."
539
- msgstr ""
540
 
541
  #: public/admin/box_eventbrite.php:75
542
  msgid "Quantity"
@@ -564,7 +568,7 @@ msgstr "Google Checkout"
564
 
565
  #: public/admin/box_eventbrite.php:107
566
  msgid "Check"
567
- msgstr "Šekem"
568
 
569
  #: public/admin/box_eventbrite.php:109
570
  msgid "Cash"
@@ -877,7 +881,7 @@ msgstr "Jméno:"
877
 
878
  #: lib/theme/loader.php:325
879
  msgid "We couldn't find a suitable loader for filename with extension '%s'"
880
- msgstr ""
881
 
882
  #: lib/theme/loader.php:631
883
  msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
@@ -885,11 +889,11 @@ msgstr "Téma vybrané pro váš kalendář bylo změněno kvůli problémům p
885
 
886
  #: lib/theme/search.php:253
887
  msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
888
- msgstr ""
889
 
890
  #: lib/theme/search.php:264
891
  msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
892
- msgstr ""
893
 
894
  #: lib/twig/environment.php:115
895
  msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
@@ -1005,19 +1009,19 @@ msgstr "<strong>CHYBA:</strong> Při ukládání souboru <strong>robots.txt</str
1005
 
1006
  #: lib/theme/list.php:152
1007
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1008
- msgstr ""
1009
 
1010
  #: lib/theme/list.php:164
1011
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1012
- msgstr ""
1013
 
1014
  #: lib/theme/list.php:179
1015
  msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1016
- msgstr ""
1017
 
1018
  #: lib/theme/list.php:190
1019
  msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1020
- msgstr ""
1021
 
1022
  #: lib/theme/list.php:257
1023
  msgid "Activate &#8220;%s&#8221;"
@@ -1036,7 +1040,7 @@ msgstr "%1$s %2$s od %3$s"
1036
  #. title, 5: parent_theme
1037
  #: lib/theme/list.php:293
1038
  msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1039
- msgstr ""
1040
 
1041
  #: lib/theme/list.php:308
1042
  msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
@@ -1398,7 +1402,7 @@ msgstr "Týdenní zobrazení:"
1398
 
1399
  #: lib/css/frontend.php:239
1400
  msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1401
- msgstr ""
1402
 
1403
  #: lib/css/frontend.php:266
1404
  msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
@@ -1418,7 +1422,7 @@ msgstr "Nastavení šablony bylo úspěšně aktualizováno. <a href='%s'>Přej
1418
 
1419
  #: lib/css/frontend.php:343
1420
  msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1421
- msgstr ""
1422
 
1423
  #: lib/database/applicator.php:182
1424
  msgid "Date columns in table %s have different types."
@@ -1442,7 +1446,7 @@ msgstr "Vyberte časové pásmo stránek v %s <em>Časové pásmo</em> rozbalova
1442
 
1443
  #: lib/date/timezone.php:397
1444
  msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1445
- msgstr ""
1446
 
1447
  #: lib/date/timezone.php:421
1448
  msgid "Selected timezone \"UTC%+d\" will be treated as %s."
@@ -1470,11 +1474,11 @@ msgstr "Plugin je nainstalován, ale nebyl nastaven. Pro nastavení se, prosím,
1470
 
1471
  #: lib/environment/check.php:196
1472
  msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1473
- msgstr ""
1474
 
1475
  #: lib/environment/check.php:197
1476
  msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1477
- msgstr ""
1478
 
1479
  #: lib/exception/handler.php:176
1480
  msgid "The add-on \"%s\" has been disabled due to an error:"
@@ -1637,7 +1641,7 @@ msgstr "Kalendáři brání v nahrání dat systémová chyba. Něco se pokazilo
1637
 
1638
  #: lib/calendar-feed/ics.php:181
1639
  msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1640
- msgstr ""
1641
 
1642
  #: lib/calendar-feed/ics.php:195
1643
  msgid "Imported %s event"
@@ -1919,7 +1923,7 @@ msgstr "Prodeje"
1919
 
1920
  #: app/view/admin/tickets.php:87
1921
  msgid "How do you want the tickets revenue to be sent to you?"
1922
- msgstr ""
1923
 
1924
  #: app/view/admin/tickets.php:88
1925
  msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
@@ -1994,11 +1998,11 @@ msgstr ""
1994
 
1995
  #: app/view/calendar/page.php:54
1996
  msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
1997
- msgstr ""
1998
 
1999
  #: app/view/calendar/page.php:74
2000
  msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2001
- msgstr ""
2002
 
2003
  #: app/view/admin/settings.php:193
2004
  msgid "Phone Number:"
@@ -2006,7 +2010,7 @@ msgstr "Telefonní číslo:"
2006
 
2007
  #: app/view/admin/settings.php:194
2008
  msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2009
- msgstr ""
2010
 
2011
  #: app/view/admin/settings.php:197
2012
  msgid "Sign Up"
@@ -2454,7 +2458,7 @@ msgstr ""
2454
 
2455
  #: app/model/settings.php:772
2456
  msgid "Input dates in this format"
2457
- msgstr "Vyberte formát datumu"
2458
 
2459
  #: app/model/settings.php:777
2460
  msgid "Default (d/m/yyyy)"
@@ -2490,11 +2494,11 @@ msgstr "Zobrazit staré <strong>Vložit událost</strong> tlačítko nad kalend
2490
 
2491
  #: app/model/settings.php:842
2492
  msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2493
- msgstr ""
2494
 
2495
  #: app/model/settings.php:863
2496
  msgid "Move calendar into this DOM element"
2497
- msgstr ""
2498
 
2499
  #: app/model/settings.php:865
2500
  msgid ""
@@ -2510,11 +2514,11 @@ msgstr ""
2510
 
2511
  #: app/model/settings.php:884
2512
  msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2513
- msgstr ""
2514
 
2515
  #: app/model/settings.php:887
2516
  msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2517
- msgstr ""
2518
 
2519
  #: app/model/settings.php:899
2520
  msgid "Disable <strong>gzip</strong> compression."
@@ -2635,7 +2639,7 @@ msgstr "Odkaz API: %s.<br/>Detail: %s - %s"
2635
 
2636
  #: app/model/api.php:672
2637
  msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2638
- msgstr ""
2639
 
2640
  #: app/model/api.php:679
2641
  msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
@@ -2756,7 +2760,7 @@ msgstr "Nepodařilo se nám aktualizovat událost v Time.ly prodeji vstupenek"
2756
 
2757
  #: app/model/api.php:46
2758
  msgid "The event has the option Tickets selected but any ticket was added."
2759
- msgstr ""
2760
 
2761
  #: app/model/api.php:47
2762
  msgid "We were unable to remove the Tickets from Time.ly Ticketing"
@@ -2764,7 +2768,7 @@ msgstr "Nepodařilo se nám odstranit vstupenky z Time.ly prodeje vstupenek"
2764
 
2765
  #: app/model/api.php:48
2766
  msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2767
- msgstr ""
2768
 
2769
  #: app/model/api.php:49
2770
  msgid "Payment preferences were not saved."
@@ -2922,15 +2926,15 @@ msgstr "Prosím vložte platnou zeměpisnou dílku. Platná hodnota leží mezi
2922
 
2923
  #: app/controller/javascript.php:425
2924
  msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2925
- msgstr ""
2926
 
2927
  #: app/controller/javascript.php:428
2928
  msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2929
- msgstr ""
2930
 
2931
  #: app/controller/javascript.php:431
2932
  msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2933
- msgstr ""
2934
 
2935
  #: app/controller/javascript.php:434
2936
  msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
@@ -2946,7 +2950,7 @@ msgstr "Nahrávám&hellip;"
2946
 
2947
  #: app/controller/javascript.php:443
2948
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2949
- msgstr ""
2950
 
2951
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2952
  msgid "Preview:"
@@ -2983,7 +2987,7 @@ msgstr "Doplňky"
2983
 
2984
  #: app/controller/front.php:343
2985
  msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
2986
- msgstr ""
2987
 
2988
  #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
2989
  #: app/view/admin/theme-switching.php:55
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-29 20:06:07+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
75
  #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
  #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
  msgid "Input field placeholder text"
78
+ msgstr "Zástupný text vstupního pole"
79
 
80
  #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
  #: public/themes-ai1ec/vortex/less/user_variables.php:161
140
  #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
  #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
  msgid "Input field border (focus)"
143
+ msgstr "Okraj vstupního pole (vybraného)"
144
 
145
  #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
  #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
  msgid "Input field background (disabled)"
148
+ msgstr "Pozadí vstupního pole (zakázaného)"
149
 
150
  #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
  #: public/themes-ai1ec/vortex/less/user_variables.php:119
301
  " Enter the feed URL(s) below and the events from those feeds will be\n"
302
  " imported periodically."
303
  msgstr ""
304
+ "Konfigurovat, k jakému dalšímu kalendáři přihlásit svůj vlastní kalendář.\n"
305
+ " Můžete přidat kterýkoliv kalendář, který podporuje iCalendar (.ics) formát.\n"
306
+ " Zadejte níže URL kalendáře a události z něj budou\n"
307
+ " importovány pravidelně."
308
 
309
  #: public/admin/plugins/ics/display_feeds.php:14
310
  msgid "Check for new events"
392
 
393
  #: public/admin/calendar_tasks.php:53
394
  msgid "Change the look and feel."
395
+ msgstr "Změnit vzhled."
396
 
397
  #: public/admin/calendar_tasks.php:63
398
  msgid "Manage Calendar Feeds"
444
 
445
  #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
  msgid "On refresh, preserve previously imported events that are missing from the feed"
447
+ msgstr "Při obnovení zachovat dřívější události, které v importu již chybí"
448
 
449
  #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
  msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
+ msgstr "Odhadnout časovou zónu u událostí, které ji nemají vyplněnou; doporučeno pro Google Calendar."
452
 
453
  #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
  msgid "Assign default time zone to events in UTC"
540
 
541
  #: public/admin/box_eventbrite.php:68
542
  msgid "The price for this event's first ticket will be taken from the Cost field above."
543
+ msgstr "Cena prvního lístku události bude převzata z políčka Cena výše."
544
 
545
  #: public/admin/box_eventbrite.php:75
546
  msgid "Quantity"
568
 
569
  #: public/admin/box_eventbrite.php:107
570
  msgid "Check"
571
+ msgstr "Kontrola"
572
 
573
  #: public/admin/box_eventbrite.php:109
574
  msgid "Cash"
881
 
882
  #: lib/theme/loader.php:325
883
  msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
+ msgstr "Nemohli jsme najít odpovídající program pro soubor s příponou '%s'"
885
 
886
  #: lib/theme/loader.php:631
887
  msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
889
 
890
  #: lib/theme/search.php:253
891
  msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
+ msgstr "Nelze přesunout vaši starou šablonu z <code>wp-content/themes-ai1ec</code> do <code>wp-content/themes-ai1ec-obsolete</code> protože do vašeho <code>wp-content</code> adresáře nejsou nastavena práva pro zápis. Vymažte prosím ručně vaši starou šablonu z <code>wp-content/themes-ai1ec</code>."
893
 
894
  #: lib/theme/search.php:264
895
  msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
+ msgstr "Nepodařilo se přesunout vaši starou šablonu z <code>wp-content/themes-ai1ec/%s</code> do <code>wp-content/themes-ai1ec-obsolete/%s</code>. Vymažte prosím ručně vaši starou šablonu z <code>wp-content/themes-ai1ec/%s</code>."
897
 
898
  #: lib/twig/environment.php:115
899
  msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
1009
 
1010
  #: lib/theme/list.php:152
1011
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
+ msgstr "Máte aktuálně povolenu pouze jednu šablonu pro tuto stránku. Jděte do Network Admin pro <a href=\"%1$s\">povolení</a> nebo <a href=\"%2$s\">instalaci</a> více šablon."
1013
 
1014
  #: lib/theme/list.php:164
1015
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
+ msgstr "Máte aktuálně povolenu pouze jednu šablonu pro tuto stránku. Jděte do Network Admin pro <a href=\"%1$s\">povolení</a> více šablon."
1017
 
1018
  #: lib/theme/list.php:179
1019
  msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
+ msgstr "Máte aktuálně instalovánu pouze jednu šablonu. Můžete kdykoliv vybírat z množství šablon zdarma v adresáři šablon Timely: jen klikněte na <a href=\"%s\">instalovat šablony / Install Themes</a> záložku výše."
1021
 
1022
  #: lib/theme/list.php:190
1023
  msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
+ msgstr "Máte k dispozici pouze aktivní šablonu. Kontaktujte <em>%s</em> administrátora pro přidání více šablon."
1025
 
1026
  #: lib/theme/list.php:257
1027
  msgid "Activate &#8220;%s&#8221;"
1040
  #. title, 5: parent_theme
1041
  #: lib/theme/list.php:293
1042
  msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
+ msgstr "Soubory šablon jsou ukládány do <code>%2$s</code>. Soubory stylů jsou ukládány do <code>%3$s</code>. <strong>%4$s</strong> používá šablony z <strong>%5$s</strong>. Změny provedené do těchto šablon ovlivní oboje."
1044
 
1045
  #: lib/theme/list.php:308
1046
  msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1402
 
1403
  #: lib/css/frontend.php:239
1404
  msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
+ msgstr "Kompilace CSS selhala kvůli nedostatku paměti (potřebné minimum je %s). Váš kalendář nebude zobrazen nebo nebude pracovat korektně bez CSS. Přečtěte si prosím <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">tento článek</a>, abyste se dozvěděli, jak zvýšit limit paměti pro PHP."
1406
 
1407
  #: lib/css/frontend.php:266
1408
  msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1422
 
1423
  #: lib/css/frontend.php:343
1424
  msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
+ msgstr "Vaše CSS je překládáno při každém požadavku, což způsobuje pomalou odezvu vašeho kalendáře. Objevila se následující chyba: %s"
1426
 
1427
  #: lib/database/applicator.php:182
1428
  msgid "Date columns in table %s have different types."
1446
 
1447
  #: lib/date/timezone.php:397
1448
  msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
+ msgstr "Časová zóna \"UTC%+d\" nerozpoznána. Prosím %suse použijte platnou%s časovou zónu, jinak budou události vytvářeny s časovou zónou UTC."
1450
 
1451
  #: lib/date/timezone.php:421
1452
  msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1474
 
1475
  #: lib/environment/check.php:196
1476
  msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
+ msgstr "Doplněk <strong>%s</strong> musí být aktualizován minimálně na verzi %s, aby byla zajištěna kompatibilita s kalendářem."
1478
 
1479
  #: lib/environment/check.php:197
1480
  msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
+ msgstr "Jestliže nevidíte oznámení o aktualizaci níže, přesvědčte se, že jste správně <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">vložili vaše licenční klíče</a>. Případně, přejděte na stránku <a href=\"https://time.ly/your-account/\">vašeho účtu</a> pro stažení poslední verze doplňku/doplňků a <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">proveďte aktualizaci ručně</a>. Prosíme <a href=\"https://time.ly/forums/\">vložte dotaz do fóra</a> pokud máte nějaký problém. Rádi vám pomůžeme."
1482
 
1483
  #: lib/exception/handler.php:176
1484
  msgid "The add-on \"%s\" has been disabled due to an error:"
1641
 
1642
  #: lib/calendar-feed/ics.php:181
1643
  msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
+ msgstr "Data z kalendáře nemohla být načtena. Pokud vaše URL je správné a obsahuje nějaké zdroje iCalendar, tento stav je pravděpodobně způsoben nějakou dočasnou chybou na straně serveru, která bude časem odstraněna."
1645
 
1646
  #: lib/calendar-feed/ics.php:195
1647
  msgid "Imported %s event"
1923
 
1924
  #: app/view/admin/tickets.php:87
1925
  msgid "How do you want the tickets revenue to be sent to you?"
1926
+ msgstr "Jak vám mají být poslány příjmy z prodeje lístků?"
1927
 
1928
  #: app/view/admin/tickets.php:88
1929
  msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1998
 
1999
  #: app/view/calendar/page.php:54
2000
  msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2001
+ msgstr "Objevila se chyba při nahrávání kalendáře. Prosím, kontaktujte administrátora stránek a požádejte ho o konfiguraci pohledů kalendáře."
2002
 
2003
  #: app/view/calendar/page.php:74
2004
  msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2005
+ msgstr "Kalendáři se nepodařilo inicializovat zobrazení %s a vrací se k zobrazení Agenda. Prosím, zkontrolujte, že máte instalovány poslední verze doplňků kalendáře."
2006
 
2007
  #: app/view/admin/settings.php:193
2008
  msgid "Phone Number:"
2010
 
2011
  #: app/view/admin/settings.php:194
2012
  msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2013
+ msgstr "Potvrzuji, že jsem četl, porozuměl a souhlasím s <a href=\"https://ticketing.time.ly/terms\">pravidly a podmínkami</a>."
2014
 
2015
  #: app/view/admin/settings.php:197
2016
  msgid "Sign Up"
2458
 
2459
  #: app/model/settings.php:772
2460
  msgid "Input dates in this format"
2461
+ msgstr "Vložte data v tomto formátu"
2462
 
2463
  #: app/model/settings.php:777
2464
  msgid "Default (d/m/yyyy)"
2494
 
2495
  #: app/model/settings.php:842
2496
  msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2497
+ msgstr "Nainstalujte <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> pro <strong>formulář Vložte svou událost</strong>."
2498
 
2499
  #: app/model/settings.php:863
2500
  msgid "Move calendar into this DOM element"
2501
+ msgstr "Přesunout kalendář do tohoto DOM elementu."
2502
 
2503
  #: app/model/settings.php:865
2504
  msgid ""
2514
 
2515
  #: app/model/settings.php:884
2516
  msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2517
+ msgstr "<strong>Přeskočit kontrolu <tt>in_the_loop()</tt></strong>, která zabraňuje vícenásobnému zobrazování kalendáře"
2518
 
2519
  #: app/model/settings.php:887
2520
  msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2521
+ msgstr "Zkuste povolit tuto možnost, pokud se váš kalendář nezobrazuje na kalendářové stránce. Je to potřeba pro kompatibilitu s malým počtem šablon, které volají <tt>the_content()</tt> z vnějšku Cyklu. V opačném případě nechte zakázané."
2522
 
2523
  #: app/model/settings.php:899
2524
  msgid "Disable <strong>gzip</strong> compression."
2639
 
2640
  #: app/model/api.php:672
2641
  msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2642
+ msgstr "%s. Prosíme, zkuste znovu načíst tuto stránku. Pokud chyba přetrvává, kontaktujte nás na %s. Do vaší zprávy přiložte prosím informaci níže.<br/>%s."
2643
 
2644
  #: app/model/api.php:679
2645
  msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2760
 
2761
  #: app/model/api.php:46
2762
  msgid "The event has the option Tickets selected but any ticket was added."
2763
+ msgstr "Událost má zvolenou možnost lístků, ale žádné lístky nebyly vloženy."
2764
 
2765
  #: app/model/api.php:47
2766
  msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2768
 
2769
  #: app/model/api.php:48
2770
  msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2771
+ msgstr "Tato Událost byla zkopírována z jiné stránky. Veškeré změny lístků budou zahozeny."
2772
 
2773
  #: app/model/api.php:49
2774
  msgid "Payment preferences were not saved."
2926
 
2927
  #: app/controller/javascript.php:425
2928
  msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2929
+ msgstr "Pokud je zaškrtnuto \"Vložte polohu\", pole \"Zeměpisná šířka\" je povinné."
2930
 
2931
  #: app/controller/javascript.php:428
2932
  msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2933
+ msgstr "Pokud je zaškrtnuto \"Vložte polohu\", pole \"Zeměpisná délka\" je povinné."
2934
 
2935
  #: app/controller/javascript.php:431
2936
  msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2937
+ msgstr "URL stránky, kterou jste vložili v <b>kontaktní údaje organizátora</b> &gt; <b>webová stránka</b>, nevypadá korektně."
2938
 
2939
  #: app/controller/javascript.php:434
2940
  msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2950
 
2951
  #: app/controller/javascript.php:443
2952
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2953
+ msgstr "<p class=\"ai1ec_ticketing_required_alert\"><b>Chybí některé údaje, vyžadované pro prodej lístků.</b><br><i>Chybějící nebo špatně vyplněná pole jsou orámována červeně.</i></p>"
2954
 
2955
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2956
  msgid "Preview:"
2987
 
2988
  #: app/controller/front.php:343
2989
  msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
2990
+ msgstr "Vaše aktivní šablona kalendáře nemohla být správně inicializována. Místo ní byla aktivována přednastavená šablona. Prosím jděte na %s a pokuste se znovu aktivovat vaši šablonu ručně."
2991
 
2992
  #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
2993
  #: app/view/admin/theme-switching.php:55
language/all-in-one-event-calendar-da.mo DELETED
Binary file
language/all-in-one-event-calendar-da.po DELETED
@@ -1,3020 +0,0 @@
1
- # Translation of 2.3 in Danish
2
- # This file is distributed under the same license as the 2.3 package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:45:37+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-alpha-1000\n"
11
- "Project-Id-Version: 2.3\n"
12
-
13
- #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
- #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
- msgid "Event background"
16
- msgstr "Begivenhed-baggrund"
17
-
18
- #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
- #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
- msgid "Event time background"
21
- msgstr "Begivenhedstid-baggrund"
22
-
23
- #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
- #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
- msgid "Event text"
26
- msgstr "Begivenhedstekst"
27
-
28
- #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
- #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
- msgid "Month view date background"
31
- msgstr "Månedsvisning dato-baggrund"
32
-
33
- #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
- #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
- msgid "Week/day view now marker"
36
- msgstr "Uge-/dagsvisning nu-markering"
37
-
38
- #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
- #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
- msgid "Date label accent color"
41
- msgstr "Datoetiket fremhævet farve"
42
-
43
- #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
- #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
- msgid "Date label background"
46
- msgstr "Datoetiket baggrund"
47
-
48
- #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
- #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
- msgid "Date background"
51
- msgstr "Dato-baggrund"
52
-
53
- #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
- #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
- msgid "Today background"
56
- msgstr "I dag-baggrund"
57
-
58
- #. Plugin Name of the plugin/theme
59
- msgid "All-in-One Event Calendar by Time.ly"
60
- msgstr "All-in-One Event Calendar af Time.ly"
61
-
62
- #. Description of the plugin/theme
63
- msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
- msgstr "Et kalendersystem med måneds-, uge-​, dags- og begivenhedsvisning, widget til kommende begivenheder, farvekodede kategorier, gentagelse og import/eksport af ICS-feeds."
65
-
66
- #. Author of the plugin/theme
67
- msgid "Time.ly Network Inc."
68
- msgstr "Time.ly Network Inc."
69
-
70
- #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
- #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
- msgid "List item background (active/hover)"
73
- msgstr "Listeemne-baggrund (aktiv/hover)"
74
-
75
- #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
- #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
- msgid "Input field placeholder text"
78
- msgstr "Indtastningsfelt eksempeltekst"
79
-
80
- #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
- #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
- msgid "Today color"
83
- msgstr "'I dag' farve"
84
-
85
- #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
- #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
- msgid "All-day badge color"
88
- msgstr "Heldags mærkatfarve"
89
-
90
- #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
- #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
- msgid "Event image shadow"
93
- msgstr "Begivenhedsbillede-skygge"
94
-
95
- #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
- #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
- msgid "Event default color"
98
- msgstr "Begivenhed standardfarve"
99
-
100
- #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
- #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
- msgid "Event default color (hover)"
103
- msgstr "Begivenhed standardfarve (hover)"
104
-
105
- #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
- #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
- msgid "All-day/multi-day event stub text"
108
- msgstr "Heldags/flerdags-begivenhed stubtekst"
109
-
110
- #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
- #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
- msgid "All-day/multi-day event stub text shadow"
113
- msgstr "Heldags/flerdags-begivenhed stubtekst-skygge"
114
-
115
- #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
- #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
- msgid "Event border"
118
- msgstr "Begivenhed-kant"
119
-
120
- #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
- #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
- msgid "Button text"
123
- msgstr "Knap-tekst"
124
-
125
- #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
- #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
- msgid "Input field text"
128
- msgstr "Tekst i indtastningsfelt"
129
-
130
- #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
- #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
- msgid "Input field background"
133
- msgstr "Indtastningsfelt-baggrund"
134
-
135
- #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
- #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
- msgid "Input field border"
138
- msgstr "Indtastningsfelt-kant"
139
-
140
- #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
- #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
- msgid "Input field border (focus)"
143
- msgstr "Indtastningsfelt-kant (fokus)"
144
-
145
- #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
- #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
- msgid "Input field background (disabled)"
148
- msgstr "Indtastningsfelt-baggrund (deaktiveret)"
149
-
150
- #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
- #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
- msgid "Field label"
153
- msgstr "Feltmærkat"
154
-
155
- #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
- #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
- msgid "Dropdown list background"
158
- msgstr "Dropdown liste-baggrund"
159
-
160
- #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
- #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
- msgid "Dropdown list border"
163
- msgstr "Dropdown liste-kant"
164
-
165
- #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
- #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
- msgid "List item text"
168
- msgstr "Listeemne-tekst"
169
-
170
- #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
- #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
- msgid "List item text (active/hover)"
173
- msgstr "Listeemne-tekst (aktiv/hover)"
174
-
175
- #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
- msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
- msgstr "Nyt tema aktiveret. <a href=\"%s\">Besøg siden</a>"
178
-
179
- #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
- msgid "Theme deleted."
181
- msgstr "Tema slettet."
182
-
183
- #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
- msgid "Manage Themes"
185
- msgstr "Rediger temaer"
186
-
187
- #: public/admin/themes-install.php:40
188
- msgctxt "theme"
189
- msgid "Install Themes"
190
- msgstr "Installer temaer"
191
-
192
- #: public/admin/themes-updated.php:5
193
- msgid "Update Calendar Themes"
194
- msgstr "Opdater kalendertemaer"
195
-
196
- #: public/admin/themes-updated.php:15
197
- msgid "All-in-One Event Calendar Settings »"
198
- msgstr "All-in-One Event Calendar indstillinger »"
199
-
200
- #: public/admin/themes.php:18
201
- msgid "Current Calendar Theme"
202
- msgstr "Aktuelle kalendertema"
203
-
204
- #: public/admin/themes.php:21
205
- msgid "Current theme preview"
206
- msgstr "Forhåndsvisning af aktuelt tema"
207
-
208
- #: public/admin/themes.php:47
209
- msgid "Available Calendar Themes"
210
- msgstr "Tilgængelige kalendertemaer"
211
-
212
- #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
- #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
- msgid "Body background"
215
- msgstr "Body-baggrund"
216
-
217
- #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
- #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
- msgid "Text color"
220
- msgstr "Tekstfarve"
221
-
222
- #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
- #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
- msgid "Text emboss"
225
- msgstr "Fremhævning af tekst"
226
-
227
- #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
- #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
- msgid "Link"
230
- msgstr "Link"
231
-
232
- #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
- #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
- msgid "Link (hover)"
235
- msgstr "Link (hover)"
236
-
237
- #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
- #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
- msgid "Base font"
240
- msgstr "Basis skrifttype"
241
-
242
- #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
- #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
- msgid "Base font size"
245
- msgstr "Basis skrifttypestørrelse"
246
-
247
- #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
- #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
- msgid "Table background"
250
- msgstr "Tabel-baggrund"
251
-
252
- #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
- #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
- msgid "Table header background"
255
- msgstr "Tabel header-baggrund"
256
-
257
- #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
- #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
- msgid "Table header text"
260
- msgstr "Tabel header tekst"
261
-
262
- #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
- #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
- msgid "Primary brand color"
265
- msgstr "Primære farvemærke"
266
-
267
- #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
- #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
- msgid "Button background"
270
- msgstr "Knap-baggrund"
271
-
272
- #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
- #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
- msgid "Button border"
275
- msgstr "Knap-kant"
276
-
277
- #: public/admin/feed_row.php:104
278
- msgid "Refreshing&#8230;"
279
- msgstr "Opdaterer&#8230;"
280
-
281
- #: public/admin/feed_row.php:106
282
- msgid "Refresh"
283
- msgstr "Genindlæs"
284
-
285
- #: public/admin/feed_row.php:119
286
- msgid "Removing&#8230;"
287
- msgstr "Fjerner&#8230;"
288
-
289
- #: public/admin/feed_row.php:121
290
- msgid "Remove"
291
- msgstr "Fjern"
292
-
293
- #: public/admin/import.php:6
294
- msgid "Successfully imported events:"
295
- msgstr "Importerede begivenheder:"
296
-
297
- #: public/admin/plugins/ics/display_feeds.php:2
298
- msgid ""
299
- "Configure which other calendars your own calendar subscribes to.\n"
300
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
- " Enter the feed URL(s) below and the events from those feeds will be\n"
302
- " imported periodically."
303
- msgstr ""
304
- "Konfigurer hvilke andre kalendere du har adgang til.\n"
305
- " Du kan tilføje alle kalendere der lever op til iCalendar (.ics)-formatet.\n"
306
- " Indtast stien til filen herunder og begivenheder fra disse filer\n"
307
- " vil blive hentet periodisk."
308
-
309
- #: public/admin/plugins/ics/display_feeds.php:14
310
- msgid "Check for new events"
311
- msgstr "Kontroller for nye begivenheder"
312
-
313
- #: public/admin/plugins/ics/display_feeds.php:45
314
- msgid "Allow comments on imported events"
315
- msgstr "Tillad kommentarer på importerede begivenheder"
316
-
317
- #: public/admin/plugins/ics/display_feeds.php:52
318
- msgid "Show map on imported events"
319
- msgstr "Vis kort på importerede begivenheder"
320
-
321
- #: public/admin/plugins/ics/display_feeds.php:59
322
- msgid "Import any tags/categories provided by feed, in addition those selected above"
323
- msgstr "Importer hvilke som helst tags/kategorier leveret med feed udover dem som er valgt ovenover"
324
-
325
- #: public/admin/plugins/ics/display_feeds.php:93
326
- msgid "Add new subscription"
327
- msgstr "Tilføj nyt abonnement"
328
-
329
- #: public/admin/plugins/ics/display_feeds.php:96
330
- msgid "Update subscription"
331
- msgstr ""
332
-
333
- #: public/admin/row_custom.php:3
334
- msgid "Custom dates:"
335
- msgstr "Selvvalgte datoer:"
336
-
337
- #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
- #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
- #: public/admin/row_yearly.php:3
340
- msgid "Every"
341
- msgstr "Hver"
342
-
343
- #: public/admin/row_monthly.php:16
344
- msgid "On day of the month"
345
- msgstr "På månedsdagen"
346
-
347
- #: public/admin/row_monthly.php:23
348
- msgid "On day of the week"
349
- msgstr "På ugedagen"
350
-
351
- #: public/admin/row_weekly.php:12
352
- msgctxt "Recurrence editor - weekly tab"
353
- msgid "On"
354
- msgstr "På"
355
-
356
- #: public/admin/row_yearly.php:12
357
- msgctxt "Recurrence editor - yearly tab"
358
- msgid "In"
359
- msgstr "I"
360
-
361
- #: public/admin/settings.php:19
362
- msgid "Update Settings"
363
- msgstr "Opdater indstillinger"
364
-
365
- #: public/admin/themes-install.php:4
366
- msgid "The active theme is broken. Reverting to the default theme."
367
- msgstr "Det aktive tema er fejlbehæftet. Vender tilbage til standardtema."
368
-
369
- #: public/admin/themes-install.php:13
370
- msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
- msgstr "Nyt tema aktiveret. Dette tema understøtter widgets. Gå til <a href=\"%s\">widgetsindstillinger</a> siden for at konfigurere dem."
372
-
373
- #: public/admin/calendar_tasks.php:24
374
- msgid "Manage Events"
375
- msgstr "Administrer begivenheder"
376
-
377
- #: public/admin/calendar_tasks.php:27
378
- msgid "View and edit all your events."
379
- msgstr "Vis og rediger alle dine begivenheder."
380
-
381
- #: public/admin/calendar_tasks.php:39
382
- msgid "Manage Event Categories"
383
- msgstr "Administrer begivenhedskategorier"
384
-
385
- #: public/admin/calendar_tasks.php:42
386
- msgid "Organize and color-code your events."
387
- msgstr "Organiser og farvemarker dine begivenheder."
388
-
389
- #: public/admin/calendar_tasks.php:50
390
- msgid "Choose Your Theme"
391
- msgstr "Vælg et tema"
392
-
393
- #: public/admin/calendar_tasks.php:53
394
- msgid "Change the look and feel."
395
- msgstr "Skift udseende og håndtering."
396
-
397
- #: public/admin/calendar_tasks.php:63
398
- msgid "Manage Calendar Feeds"
399
- msgstr "Administrer kalender-feeds"
400
-
401
- #: public/admin/calendar_tasks.php:66
402
- msgid "Subscribe to other calendars."
403
- msgstr "Abonner på andre kalendere."
404
-
405
- #: public/admin/calendar_tasks.php:74
406
- msgid "Edit Calendar Settings"
407
- msgstr "Rediger kalenderindstillinger "
408
-
409
- #: public/admin/calendar_tasks.php:77
410
- msgid "Make this calendar your own."
411
- msgstr "Personliggør denne kalender."
412
-
413
- #: public/admin/cron_freq.php:3
414
- msgid "Hourly"
415
- msgstr "Hver time"
416
-
417
- #: public/admin/cron_freq.php:6
418
- msgid "Twice Daily"
419
- msgstr "To gange dagligt"
420
-
421
- #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
- msgid "iCalendar/.ics Feed URL:"
423
- msgstr "iCalendar/.ics Feed webadresse(URL):"
424
-
425
- #: public/admin/feed_row.php:24
426
- msgid "Event categories:"
427
- msgstr "Begivenhedskategorier:"
428
-
429
- #: public/admin/feed_row.php:31
430
- msgid "Tag with"
431
- msgstr "Tag (stikord) med"
432
-
433
- #: public/admin/feed_row.php:40
434
- msgid "Allow comments"
435
- msgstr "Tillad kommentarer"
436
-
437
- #: public/admin/feed_row.php:51
438
- msgid "Show map"
439
- msgstr "Vis kort"
440
-
441
- #: public/admin/feed_row.php:63
442
- msgid "Keep original events categories and tags"
443
- msgstr "Bevar originale begivenhedskategorier og -tags"
444
-
445
- #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
- msgid "On refresh, preserve previously imported events that are missing from the feed"
447
- msgstr "Ved genindlæsning: Bevar tidligere importerede begivenheder som mangler i feed "
448
-
449
- #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
- msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
- msgstr "Anslår begivenhedernes tidszonen når disse ikke er spcificeret; anbefalet ved Google kalenderfeeds."
452
-
453
- #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
- msgid "Assign default time zone to events in UTC"
455
- msgstr "Tildel standard tidszone til begivenheder i UTC"
456
-
457
- #: public/admin/box_support.php:19
458
- msgid "Get Add-ons"
459
- msgstr "Hent tilføjelser"
460
-
461
- #: public/admin/box_support.php:27
462
- msgid "Support"
463
- msgstr "Support"
464
-
465
- #: public/admin/box_support.php:35
466
- msgid "Timely Events"
467
- msgstr "Timely begivenheder"
468
-
469
- #: public/admin/box_support.php:43
470
- msgid "Timely News"
471
- msgstr "Timely nyt"
472
-
473
- #: public/admin/box_support.php:47
474
- msgid "view all news"
475
- msgstr "vis alle nyheder"
476
-
477
- #: public/admin/box_support.php:95
478
- msgid "Follow @_Timely"
479
- msgstr "Følg @_Timely"
480
-
481
- #: public/admin/box_time_and_date.php:6
482
- msgid "Event date and time"
483
- msgstr "Dato og tid for begivenhed"
484
-
485
- #: public/admin/box_time_and_date.php:26
486
- msgid "All-day event"
487
- msgstr "Heldagsbegivenhed"
488
-
489
- #: public/admin/box_time_and_date.php:35
490
- msgid "No end time"
491
- msgstr "Ingen sluttid"
492
-
493
- #: public/admin/box_time_and_date.php:42
494
- msgid "Start date / time"
495
- msgstr "Startdato/-tidspunkt"
496
-
497
- #: public/admin/box_time_and_date.php:59
498
- msgid "End date / time"
499
- msgstr "Slutdato/-tidspunkt"
500
-
501
- #: public/admin/box_time_and_date.php:76
502
- msgid "Time zone"
503
- msgstr "Tidszone"
504
-
505
- #: public/admin/box_time_and_date.php:81
506
- msgid "Choose your time zone"
507
- msgstr "Vælg din tidszone"
508
-
509
- #: public/admin/box_time_and_date.php:108
510
- msgid "Repeat"
511
- msgstr "Gentag"
512
-
513
- #: public/admin/box_time_and_date.php:127
514
- msgid "Exclude"
515
- msgstr "Udeluk"
516
-
517
- #: public/admin/box_time_and_date.php:136
518
- msgid "Choose a rule for exclusion"
519
- msgstr "Vælg en regel for udelukkelse"
520
-
521
- #: public/admin/calendar_tasks.php:3
522
- msgid "Welcome"
523
- msgstr "Velkommen"
524
-
525
- #: public/admin/calendar_tasks.php:4
526
- msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
- msgstr "til All-in-One Event Calendar af <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
-
529
- #: public/admin/calendar_tasks.php:13
530
- msgid "Post Your Event"
531
- msgstr "Indsend din begivenhed"
532
-
533
- #: public/admin/calendar_tasks.php:16
534
- msgid "Add a new event to the calendar."
535
- msgstr "Tilføj denne begivenhed i din kalender."
536
-
537
- #: public/admin/box_eventbrite.php:60
538
- msgid "Donation Based"
539
- msgstr "Baseret på bidrag"
540
-
541
- #: public/admin/box_eventbrite.php:68
542
- msgid "The price for this event's first ticket will be taken from the Cost field above."
543
- msgstr "Prisen for denne begivenheds første billet tages fra prisfeltet ovenfor"
544
-
545
- #: public/admin/box_eventbrite.php:75
546
- msgid "Quantity"
547
- msgstr "Antal"
548
-
549
- #: public/admin/box_eventbrite.php:85
550
- msgid "Include Fee in Price"
551
- msgstr "Inkluder gebyret i prisen"
552
-
553
- #: public/admin/box_eventbrite.php:90
554
- msgid "Add Service Fee on top of price"
555
- msgstr "Læg servicegebyr oven i prisen"
556
-
557
- #: public/admin/box_eventbrite.php:92
558
- msgid "Include Service fee in price"
559
- msgstr "Inkludér servicegebyr i prisen"
560
-
561
- #: public/admin/box_eventbrite.php:98
562
- msgid "Payment Options"
563
- msgstr "Betalingsmuligheder"
564
-
565
- #: public/admin/box_eventbrite.php:105
566
- msgid "Google Checkout"
567
- msgstr "Google Checkout"
568
-
569
- #: public/admin/box_eventbrite.php:107
570
- msgid "Check"
571
- msgstr "Check"
572
-
573
- #: public/admin/box_eventbrite.php:109
574
- msgid "Cash"
575
- msgstr "Kontant"
576
-
577
- #: public/admin/box_eventbrite.php:111
578
- msgid "Send an Invoice"
579
- msgstr "Send en regning"
580
-
581
- #: public/admin/box_profile_timezone.php:9
582
- msgid "Your preferred timezone"
583
- msgstr "Din foretrukne tidszone"
584
-
585
- #: public/admin/box_repeat.php:5
586
- msgid "Select recurrence pattern:"
587
- msgstr "Vælg gentagelsesmønster:"
588
-
589
- #: public/admin/box_repeat.php:36
590
- msgid "Custom"
591
- msgstr "Brugerdefineret"
592
-
593
- #: public/admin/box_repeat.php:72
594
- msgid "End"
595
- msgstr "Slutter"
596
-
597
- #: public/admin/box_repeat.php:82
598
- msgid "Ending after"
599
- msgstr "Slutter efter"
600
-
601
- #: public/admin/box_repeat.php:109
602
- #: public/admin/plugins/ics/display_feeds.php:90
603
- msgid "Please wait&#8230;"
604
- msgstr "Vent venligst&#8230;"
605
-
606
- #: public/admin/box_repeat.php:111
607
- msgid "Apply"
608
- msgstr "Tilføj"
609
-
610
- #: public/admin/box_repeat.php:116
611
- #: public/admin/plugins/ics/display_feeds.php:84
612
- msgid "Cancel"
613
- msgstr "Fortryd"
614
-
615
- #: public/admin/box_support.php:4
616
- msgid "Timely"
617
- msgstr "Timely"
618
-
619
- #: public/admin/box_support.php:11
620
- msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
- msgstr "Timelys All-in-One Event Calendar er en <br />revolutionerende ny måde at finde og dele begivenheder på."
622
-
623
- #: public/admin/box_event_cost.php:228
624
- msgid "Status:"
625
- msgstr ""
626
-
627
- #: public/admin/box_event_cost.php:235
628
- msgid "Open"
629
- msgstr ""
630
-
631
- #: public/admin/box_event_cost.php:239
632
- msgid "Closed"
633
- msgstr ""
634
-
635
- #: public/admin/box_event_cost.php:254
636
- msgid "Add New Ticket Type"
637
- msgstr ""
638
-
639
- #: public/admin/box_event_cost.php:274
640
- msgid "Tickets URL:"
641
- msgstr ""
642
-
643
- #: public/admin/box_event_location.php:6
644
- msgid "Event location details"
645
- msgstr "Detaljer om stedet for begivenheden"
646
-
647
- #: public/admin/box_event_location.php:19
648
- msgid "Venue name:"
649
- msgstr "Sted:"
650
-
651
- #: public/admin/box_event_location.php:31
652
- msgid "Address:"
653
- msgstr "Adresse:"
654
-
655
- #: public/admin/box_event_location.php:45
656
- msgid "Input Coordinates"
657
- msgstr "Angiv koordinater"
658
-
659
- #: public/admin/box_event_location.php:57
660
- msgid "Latitude:"
661
- msgstr "Breddegrad:"
662
-
663
- #: public/admin/box_event_location.php:69
664
- msgid "Longitude:"
665
- msgstr "Længdegrad:"
666
-
667
- #: public/admin/box_event_location.php:85
668
- msgid "Show Map"
669
- msgstr "Vis kort"
670
-
671
- #: public/admin/box_eventbrite.php:1
672
- msgid "Eventbrite Ticketing"
673
- msgstr "Eventbrite billetsystem"
674
-
675
- #: public/admin/box_eventbrite.php:7
676
- msgid "Register this event with Eventbrite.com?"
677
- msgstr "Registrer denne begivnehd på Eventbrite.com?"
678
-
679
- #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
- #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
- #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
- msgid "Yes"
683
- msgstr "Ja"
684
-
685
- #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
- #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
- #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
- msgid "No"
689
- msgstr "Nej"
690
-
691
- #: public/admin/box_eventbrite.php:22
692
- msgid "Set up your first ticket"
693
- msgstr "Opret din første billet"
694
-
695
- #: public/admin/box_eventbrite.php:24
696
- msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
- msgstr "For at oprette flere billetter pr. begivenhed, indsend denne formular og følg derefter linket til Eventbrite."
698
-
699
- #: public/admin/box_eventbrite.php:42
700
- msgid "Description"
701
- msgstr "Beskrivelse"
702
-
703
- #: public/admin/box_eventbrite.php:53
704
- msgid "Type"
705
- msgstr "Type"
706
-
707
- #: public/admin/box_eventbrite.php:58
708
- msgid "Set Price"
709
- msgstr "Angiv prisen"
710
-
711
- #: public/admin/box_event_contact.php:30
712
- msgid "Phone:"
713
- msgstr "Telefon:"
714
-
715
- #: public/admin/box_event_contact.php:56
716
- msgid "Website URL:"
717
- msgstr ""
718
-
719
- #: public/admin/box_event_cost.php:6
720
- msgid "Event cost and Tickets"
721
- msgstr "Begivenhedens pris og billetter"
722
-
723
- #: public/admin/box_event_cost.php:20
724
- msgid "Ticket options not available - event imported from external calendar."
725
- msgstr ""
726
-
727
- #: public/admin/box_event_cost.php:28
728
- msgid "Free event"
729
- msgstr "Gratis begivenhed"
730
-
731
- #: public/admin/box_event_cost.php:41
732
- msgid "External Tickets URL"
733
- msgstr ""
734
-
735
- #: public/admin/box_event_cost.php:52
736
- msgid "Ticketing allows you to sell tickets directly to the users."
737
- msgstr ""
738
-
739
- #: public/admin/box_event_cost.php:55
740
- msgid "Sign Up for Timely Network"
741
- msgstr ""
742
-
743
- #: public/admin/box_event_cost.php:80
744
- msgid "Remove Ticket Type"
745
- msgstr ""
746
-
747
- #: public/admin/box_event_cost.php:101
748
- msgid "Ex.: Regular Ticket"
749
- msgstr ""
750
-
751
- #: public/admin/box_event_cost.php:105
752
- msgid "Description:"
753
- msgstr "Beskrivelse:"
754
-
755
- #: public/admin/box_event_cost.php:111
756
- msgid "(Optional)"
757
- msgstr ""
758
-
759
- #: public/admin/box_event_cost.php:115
760
- msgid "Price:"
761
- msgstr ""
762
-
763
- #: public/admin/box_event_cost.php:124
764
- msgid "USD"
765
- msgstr ""
766
-
767
- #: public/admin/box_event_cost.php:128
768
- msgid "Limits:"
769
- msgstr ""
770
-
771
- #: public/admin/box_event_cost.php:131
772
- msgid "This fields are required."
773
- msgstr ""
774
-
775
- #: public/admin/box_event_cost.php:156
776
- msgid "Quantity:"
777
- msgstr ""
778
-
779
- #: public/admin/box_event_cost.php:180
780
- msgid "Available:"
781
- msgstr ""
782
-
783
- #: public/admin/box_event_cost.php:185
784
- msgid "Immediately"
785
- msgstr ""
786
-
787
- #: public/admin/box_event_cost.php:190
788
- msgid "From:"
789
- msgstr ""
790
-
791
- #: public/admin/box_event_cost.php:207
792
- msgid "Till:"
793
- msgstr ""
794
-
795
- #: public/admin/box_ask_customer_review.php:42
796
- #: public/admin/box_ask_customer_review.php:75
797
- msgid "No, thanks"
798
- msgstr ""
799
-
800
- #: public/admin/box_ask_customer_review.php:50
801
- #: public/admin/box_ask_customer_review.php:84
802
- msgid "Ok, sure!"
803
- msgstr ""
804
-
805
- #: public/admin/box_ask_customer_review.php:66
806
- msgid "Would you mind giving us some feedback?"
807
- msgstr ""
808
-
809
- #: public/admin/box_ask_customer_review.php:101
810
- msgid "Please provide some feedback"
811
- msgstr ""
812
-
813
- #: public/admin/box_ask_customer_review.php:108
814
- msgid "Message:"
815
- msgstr ""
816
-
817
- #: public/admin/box_ask_customer_review.php:121
818
- msgid "Name:"
819
- msgstr ""
820
-
821
- #: public/admin/box_ask_customer_review.php:136
822
- #: public/admin/box_event_contact.php:43
823
- msgid "E-mail:"
824
- msgstr "E-mail:"
825
-
826
- #: public/admin/box_ask_customer_review.php:143
827
- msgid "E-mail is invalid."
828
- msgstr ""
829
-
830
- #: public/admin/box_ask_customer_review.php:154
831
- msgid "Site URL:"
832
- msgstr ""
833
-
834
- #: public/admin/box_ask_customer_review.php:161
835
- msgid "Site URL is invalid."
836
- msgstr ""
837
-
838
- #: public/admin/box_ask_customer_review.php:173
839
- msgid "Thank you for being our customer,"
840
- msgstr ""
841
-
842
- #: public/admin/box_ask_customer_review.php:174
843
- msgid "Aristotel Dascal, VP of Product, Time.ly"
844
- msgstr ""
845
-
846
- #: public/admin/box_ask_customer_review.php:180
847
- msgid "Sending..."
848
- msgstr ""
849
-
850
- #: public/admin/box_ask_customer_review.php:181
851
- msgid "Send Message"
852
- msgstr ""
853
-
854
- #: public/admin/box_event_children.php:12
855
- msgid "Base recurrence event"
856
- msgstr "Standard gentagen begivenhed"
857
-
858
- #: public/admin/box_event_children.php:14
859
- msgid "Modified recurrence events"
860
- msgstr "Ændrede gentagne begivenheder"
861
-
862
- #: public/admin/box_event_children.php:22
863
- msgid "Edit parent:"
864
- msgstr "Rediger forælder:"
865
-
866
- #: public/admin/box_event_children.php:27
867
- msgid "Modified Events"
868
- msgstr "Ændrede begivenheder"
869
-
870
- #: public/admin/box_event_children.php:31
871
- msgid "Edit:"
872
- msgstr "Rediger:"
873
-
874
- #: public/admin/box_event_contact.php:6
875
- msgid "Organizer contact info"
876
- msgstr "Arrangørens kontaktinformation"
877
-
878
- #: public/admin/box_event_contact.php:17
879
- msgid "Contact name:"
880
- msgstr "Navn på kontakt:"
881
-
882
- #: lib/theme/loader.php:325
883
- msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
- msgstr "Vi kunne ikke finde en egnet loader til filnavnet med suffikset '%s'"
885
-
886
- #: lib/theme/loader.php:631
887
- msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
- msgstr "Dit kalendertema er skiftet til Vortex på grund af en renderingsfejl. For yderligere information kan du aktivere fejlrettelse (debug mode) ved at tilføje følgende kode i filen <code>wp-config.php</code>: <pre>define( 'AI1EC_DEBUG', true );</pre>"
889
-
890
- #: lib/theme/search.php:253
891
- msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
- msgstr "Det er ikke muligt at flytte dine gamle standardtemaer fra <code>wp-content/themes-ai1ec</code> til <code>wp-content/themes-ai1ec-obsolete</code> fordi din <code>wp-content</code>-mappe ikke er skrivbar. Flyt dine gamle standardtemaer manuelt fra <code>wp-content/themes-ai1ec</code>."
893
-
894
- #: lib/theme/search.php:264
895
- msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
- msgstr "Det lykkedes ikke at flytte dine gamle standardtemaer fra <code>wp-content/themes-ai1ec/%s</code> til <code>wp-content/themes-ai1ec-obsolete/%s</code>. Du kan i stedet flytte dine gamle standardtemaer fra <code>wp-content/themes-ai1ec/%s</code>."
897
-
898
- #: lib/twig/environment.php:115
899
- msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
- msgstr "Kalenderen er midlertidig deaktveret på grund af en renderingsfejl. Prøv at <a href=\"javascript:location.reload();\">genindlæse siden</a>."
901
-
902
- #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
- msgid "Title:"
904
- msgstr "Titel:"
905
-
906
- #: public/admin/agenda-widget-form.php:12
907
- msgid "Number of events to show:"
908
- msgstr "Antal viste begivenheder:"
909
-
910
- #: public/admin/agenda-widget-form.php:21
911
- msgid "Number of days to show:"
912
- msgstr "Antal viste dage:"
913
-
914
- #: public/admin/agenda-widget-form.php:26
915
- msgid "Limit to:"
916
- msgstr "Begræns til:"
917
-
918
- #: public/admin/agenda-widget-form.php:30
919
- msgid "Events with these <strong>Categories</strong>"
920
- msgstr "Begivenheder med disse <strong>Kategorier</strong>"
921
-
922
- #: public/admin/agenda-widget-form.php:39
923
- msgid "No categories found."
924
- msgstr "Ingen kategorier fundet."
925
-
926
- #: public/admin/agenda-widget-form.php:46
927
- msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
- msgstr "<strong>Eller</strong> begivenheder med disse <strong>Tags</strong>"
929
-
930
- #: public/admin/agenda-widget-form.php:55
931
- msgid "No tags found."
932
- msgstr "Ingen tags fundet."
933
-
934
- #: public/admin/agenda-widget-form.php:62
935
- msgid "Show <strong>View Calendar</strong> button"
936
- msgstr "Vis <strong>Vis kalender</strong>-knappen"
937
-
938
- #: public/admin/agenda-widget-form.php:65
939
- msgid "Show <strong>Subscribe</strong> buttons"
940
- msgstr "Vis <strong>Abonner</strong>-knapper"
941
-
942
- #: public/admin/agenda-widget-form.php:68
943
- msgid "Hide this widget on calendar page"
944
- msgstr "Skjul denne widget på kalendersiden"
945
-
946
- #: public/admin/box_ask_customer_review.php:5
947
- msgid "Enjoying All-in-One Event Calendar?"
948
- msgstr ""
949
-
950
- #: public/admin/box_ask_customer_review.php:13
951
- msgid "Not really"
952
- msgstr ""
953
-
954
- #: public/admin/box_ask_customer_review.php:20
955
- msgid "Yes!"
956
- msgstr ""
957
-
958
- #: public/admin/box_ask_customer_review.php:33
959
- msgid "How about a rating on the Wordpress?"
960
- msgstr ""
961
-
962
- #: lib/recurrence/rule.php:397
963
- msgid "Every %d weeks"
964
- msgstr "Hver %d uge"
965
-
966
- #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
- msgid "Monthly"
968
- msgstr "Månedligt"
969
-
970
- #: lib/recurrence/rule.php:409
971
- msgid "Every other month"
972
- msgstr "Hver anden måned"
973
-
974
- #: lib/recurrence/rule.php:412
975
- msgid "Every %d months"
976
- msgstr "Hver %d måned"
977
-
978
- #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
- msgid "Yearly"
980
- msgstr "Årligt"
981
-
982
- #: lib/recurrence/rule.php:424
983
- msgid "Every other year"
984
- msgstr "Hvert andet år"
985
-
986
- #: lib/recurrence/rule.php:427
987
- msgid "Every %d years"
988
- msgstr "Hvert %d år"
989
-
990
- #: lib/recurrence/rule.php:465
991
- msgid "until %s"
992
- msgstr "indtil %s"
993
-
994
- #: lib/recurrence/rule.php:475
995
- msgid "for %d occurrences"
996
- msgstr "i %d forekomster"
997
-
998
- #: lib/recurrence/rule.php:479
999
- msgid "forever"
1000
- msgstr "altid"
1001
-
1002
- #: lib/robots/helper.php:71
1003
- msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
- msgstr "<strong>FEJL:</strong> Der opstod en fejl ved forbindelsen til serveren. Kontroller om indstillingerne er korrekte."
1005
-
1006
- #: lib/robots/helper.php:105
1007
- msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
- msgstr "<strong>FEJL:</strong> Der opstod en fejl ved lagringen af <strong>robots.txt</strong> på serveren. Filen kunne ikke skrives."
1009
-
1010
- #: lib/theme/list.php:152
1011
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
- msgstr "Du kan kun vælge et tema på din side lige nu. Besøg Netværksadministratoren for at <a href=\"%1$s\">aktivere</a> eller <a href=\"%2$s\">installere</a> flere temaer."
1013
-
1014
- #: lib/theme/list.php:164
1015
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
- msgstr "Du kan kun vælge et tema på din side lige nu. Besøg Netværksadministratoren for at <a href=\"%1$s\">aktivere</a> flere temaer."
1017
-
1018
- #: lib/theme/list.php:179
1019
- msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
- msgstr "Du har kun eet tema installeret lige nu. Du kan vælge mellem mange gratis temaer i Timely Temabiblioteket når som helst: Klik på <a href=\"%s\">Installer temaer</a>-fanen ovenover."
1021
-
1022
- #: lib/theme/list.php:190
1023
- msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
- msgstr "Kun det aktive tema er tilgængeligt for dig. Kontakt <em>%s</em> administrator for at tilføje flere temaer."
1025
-
1026
- #: lib/theme/list.php:257
1027
- msgid "Activate &#8220;%s&#8221;"
1028
- msgstr "Aktiver &#8220;%s&#8221;"
1029
-
1030
- #: lib/theme/list.php:264
1031
- msgid "Activate"
1032
- msgstr "Aktiver"
1033
-
1034
- #. translators: 1: theme title, 2: theme version, 3: theme author
1035
- #: lib/theme/list.php:281 public/admin/themes.php:25
1036
- msgid "%1$s %2$s by %3$s"
1037
- msgstr "%1$s %2$s af %3$s"
1038
-
1039
- #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
- #. title, 5: parent_theme
1041
- #: lib/theme/list.php:293
1042
- msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
- msgstr "Skabelonfilerne er placeret i <code>%2$s</code>. Stilark (CSS) filerne er placeret i <code>%3$s</code>. <strong>%4$s</strong> benytter skabeloner fra <strong>%5$s</strong>. Ændringer i skabelonen vil påvirke begge temaer."
1044
-
1045
- #: lib/theme/list.php:308
1046
- msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
- msgstr "Alle dette temas filer er placeret i <code>%2$s</code>."
1048
-
1049
- #: lib/post/custom-type.php:36
1050
- msgid "Parent Event"
1051
- msgstr "Overordnet begivenhed"
1052
-
1053
- #: lib/post/custom-type.php:55
1054
- msgid "event"
1055
- msgstr "begivenhed"
1056
-
1057
- #: lib/post/custom-type.php:85
1058
- msgctxt "Event categories taxonomy"
1059
- msgid "Categories"
1060
- msgstr "Kategorier"
1061
-
1062
- #: lib/post/custom-type.php:86
1063
- msgctxt "Event categories taxonomy (singular)"
1064
- msgid "Category"
1065
- msgstr "Kategori"
1066
-
1067
- #: lib/post/custom-type.php:87
1068
- msgctxt "Event categories menu item"
1069
- msgid "Organize"
1070
- msgstr "Arranger"
1071
-
1072
- #: lib/post/custom-type.php:94
1073
- msgctxt "Event tags taxonomy"
1074
- msgid "Tags"
1075
- msgstr "Tags"
1076
-
1077
- #: lib/post/custom-type.php:95
1078
- msgctxt "Event tags taxonomy (singular)"
1079
- msgid "Tag"
1080
- msgstr "Tag"
1081
-
1082
- #: lib/post/custom-type.php:102
1083
- msgctxt "Event feeds taxonomy"
1084
- msgid "Event Feeds"
1085
- msgstr "Begivenheds-feeds"
1086
-
1087
- #: lib/post/custom-type.php:103
1088
- msgctxt "Event feed taxonomy (singular)"
1089
- msgid "Event Feed"
1090
- msgstr "Begivenheds-feed"
1091
-
1092
- #: lib/post/custom-type.php:285
1093
- msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
- msgstr "Alle begivenheder<span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1095
-
1096
- #: lib/post/custom-type.php:296
1097
- msgid "All Events"
1098
- msgstr "Alle begivenheder"
1099
-
1100
- #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
- #: lib/recurrence/rule.php:260
1102
- msgctxt "Recurrence editor - weekly tab"
1103
- msgid "on"
1104
- msgstr "på"
1105
-
1106
- #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
- #: lib/recurrence/rule.php:326
1108
- msgid "and"
1109
- msgstr "og"
1110
-
1111
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
- #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
- msgctxt "Recurrence editor - monthly tab"
1114
- msgid "on"
1115
- msgstr "på"
1116
-
1117
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
- #: lib/recurrence/rule.php:286
1119
- msgid "of the month"
1120
- msgstr "i måneden"
1121
-
1122
- #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
- #: lib/recurrence/rule.php:336
1124
- msgctxt "Recurrence editor - yearly tab"
1125
- msgid "on"
1126
- msgstr "på"
1127
-
1128
- #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
- #: public/admin/cron_freq.php:9
1130
- msgid "Daily"
1131
- msgstr "Dagligt"
1132
-
1133
- #: lib/recurrence/rule.php:379
1134
- msgid "Every other day"
1135
- msgstr "Hver anden dag"
1136
-
1137
- #: lib/recurrence/rule.php:382
1138
- msgid "Every %d days"
1139
- msgstr "Hver %d dag"
1140
-
1141
- #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
- msgid "Weekly"
1143
- msgstr "Ugentlig"
1144
-
1145
- #: lib/recurrence/rule.php:394
1146
- msgid "Every other week"
1147
- msgstr "Hver anden uge"
1148
-
1149
- #: lib/less/variable/font.php:64
1150
- msgid "Custom..."
1151
- msgstr "Brugerdefineret..."
1152
-
1153
- #: lib/less/variable/font.php:112
1154
- msgid "Enter custom font(s)"
1155
- msgstr "Indsæt brugerdefineret skrifttype(r)"
1156
-
1157
- #: lib/less/variable/size.php:26
1158
- msgid "Length"
1159
- msgstr "Længde"
1160
-
1161
- #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
- msgid "All-in-One Event Calendar"
1163
- msgstr "All-in-One Event Calendar"
1164
-
1165
- #: lib/notification/admin.php:182
1166
- msgid "Got it – dismiss this"
1167
- msgstr "Forstået - fjern dette"
1168
-
1169
- #: lib/post/custom-type.php:26
1170
- msgctxt "Custom post type name"
1171
- msgid "Events"
1172
- msgstr "Begivenheder"
1173
-
1174
- #: lib/post/custom-type.php:27
1175
- msgctxt "Custom post type name (singular)"
1176
- msgid "Event"
1177
- msgstr "Begivenhed"
1178
-
1179
- #: lib/post/custom-type.php:28
1180
- msgid "Add New"
1181
- msgstr "Tilføj ny"
1182
-
1183
- #: lib/post/custom-type.php:29
1184
- msgid "Add New Event"
1185
- msgstr "Tilføj ny begivenhed"
1186
-
1187
- #: lib/post/custom-type.php:30
1188
- msgid "Edit Event"
1189
- msgstr "Redigér begivenhed"
1190
-
1191
- #: lib/post/custom-type.php:31
1192
- msgid "New Event"
1193
- msgstr "Ny begivenhed"
1194
-
1195
- #: lib/post/custom-type.php:32
1196
- msgid "View Event"
1197
- msgstr "Vis begivenhed"
1198
-
1199
- #: lib/post/custom-type.php:33
1200
- msgid "Search Events"
1201
- msgstr "Søg begivenheder"
1202
-
1203
- #: lib/post/custom-type.php:34
1204
- msgid "No Events found"
1205
- msgstr "Ingen begivenheder fundet"
1206
-
1207
- #: lib/post/custom-type.php:35
1208
- msgid "No Events found in Trash"
1209
- msgstr "Ingen begivenheder fundet i papirkurven"
1210
-
1211
- #: lib/html/element/setting/html.php:62
1212
- msgid "Filter by post ID:"
1213
- msgstr "Sorter efter indlægs ID:"
1214
-
1215
- #: lib/html/element/setting/html.php:63
1216
- msgid "Filter by post IDs (separate IDs by comma):"
1217
- msgstr "Sorter efter indlæggets ID´er (adskil ID´er med komma):"
1218
-
1219
- #: lib/html/element/setting/html.php:64
1220
- msgid "Limit number of events per page:"
1221
- msgstr "Begræns antal begivenheder pr. side til:"
1222
-
1223
- #: lib/html/element/setting/html.php:65
1224
- msgid "Warning:"
1225
- msgstr "Advarsel"
1226
-
1227
- #: lib/html/element/setting/html.php:66
1228
- msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
- msgstr "Det er i øjeblikket ikke muligt at indlejre mere end én kalender på den samme side. Forsøg ikke at indlejre kalenderen med genvejskode på en side, som allerede viser kalenderen."
1230
-
1231
- #: lib/import-export/ics.php:831
1232
- msgid "Tickets: "
1233
- msgstr ""
1234
-
1235
- #: lib/html/element/setting/html.php:41
1236
- msgid "Day view:"
1237
- msgstr "Dagsvisning:"
1238
-
1239
- #: lib/html/element/setting/html.php:42
1240
- msgid "Agenda view:"
1241
- msgstr "Listevisning:"
1242
-
1243
- #: lib/html/element/setting/html.php:43
1244
- msgid "Some Other view:"
1245
- msgstr "En anden visning"
1246
-
1247
- #: lib/html/element/setting/html.php:44
1248
- msgid "Default view as per settings:"
1249
- msgstr "Standardvisning ifølge indstilling:"
1250
-
1251
- #: lib/html/element/setting/html.php:45
1252
- msgid "General form:"
1253
- msgstr "Almindelige form:"
1254
-
1255
- #: lib/html/element/setting/html.php:46
1256
- msgid "Optional."
1257
- msgstr "Valgfrit."
1258
-
1259
- #: lib/html/element/setting/html.php:47
1260
- msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
- msgstr "Tilføj mulighed for at vise en sorteret kalender. (Du kan finde kategori- og tag-ID´er ved at kigge i adressefeltet på den sorterede kalender.)"
1262
-
1263
- #: lib/html/element/setting/html.php:48
1264
- msgid "Filter by event category name/slug:"
1265
- msgstr "Sorter efter begivenhedskategoriens navn/slug:"
1266
-
1267
- #: lib/html/element/setting/html.php:49
1268
- msgid "Holidays"
1269
- msgstr "Helligdage"
1270
-
1271
- #: lib/html/element/setting/html.php:50
1272
- msgid "Lunar Cycles"
1273
- msgstr "Månecyklus"
1274
-
1275
- #: lib/html/element/setting/html.php:51
1276
- msgid "zodiac-date-ranges"
1277
- msgstr "Datoområder for stjernetegn"
1278
-
1279
- #: lib/html/element/setting/html.php:52
1280
- msgid "Filter by event category names/slugs (separate names by comma):"
1281
- msgstr "Sorter efter begivenhedens kategorinavne (adskil navne med komma):"
1282
-
1283
- #: lib/html/element/setting/html.php:53
1284
- msgid "Filter by event category ID:"
1285
- msgstr "Sorter efter begivenhedskategoriens ID:"
1286
-
1287
- #: lib/html/element/setting/html.php:54
1288
- msgid "Filter by event category IDs (separate IDs by comma):"
1289
- msgstr "Sorter efter begivenhedskategoriens ID´er (adskil ID´er med komma):"
1290
-
1291
- #: lib/html/element/setting/html.php:55
1292
- msgid "Filter by event tag name/slug:"
1293
- msgstr "Sorter efter begivenhedstag´ets navn/slug:"
1294
-
1295
- #: lib/html/element/setting/html.php:56
1296
- msgid "tips-and-tricks"
1297
- msgstr "tips og tricks"
1298
-
1299
- #: lib/html/element/setting/html.php:57
1300
- msgid "creative writing"
1301
- msgstr "digtning"
1302
-
1303
- #: lib/html/element/setting/html.php:58
1304
- msgid "performing arts"
1305
- msgstr "scenekunst"
1306
-
1307
- #: lib/html/element/setting/html.php:59
1308
- msgid "Filter by event tag names/slugs (separate names by comma):"
1309
- msgstr "Sorter efter begivenhedstag´ets navne/slugs (adskil navne med komma):"
1310
-
1311
- #: lib/html/element/setting/html.php:60
1312
- msgid "Filter by event tag ID:"
1313
- msgstr "Sorter efter begivenhedstag ID:"
1314
-
1315
- #: lib/html/element/setting/html.php:61
1316
- msgid "Filter by event tag IDs (separate IDs by comma):"
1317
- msgstr "Sorter efter begivenhedstag´ets ID´er (adskil ID´er med komma):"
1318
-
1319
- #: lib/exception/handler.php:395
1320
- msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
- msgstr "All-in-One Event Calendar er deaktiveret på grund af en fejl:"
1322
-
1323
- #: lib/exception/handler.php:404
1324
- msgid "Try reactivating plugin"
1325
- msgstr "Prøv at genaktivere plugin"
1326
-
1327
- #: lib/exception/handler.php:576
1328
- msgid "Toggle error details"
1329
- msgstr "Skift mellem detaljer om fejlen"
1330
-
1331
- #: lib/exception/handler.php:577
1332
- msgid "Error Details:"
1333
- msgstr "Detaljer om fejlen:"
1334
-
1335
- #: lib/factory/html.php:133
1336
- msgid "Choose a date using calendar"
1337
- msgstr "Vælg en dato ved hjælp af kalenderen"
1338
-
1339
- #: lib/factory/html.php:278
1340
- msgid "Tags (optional)"
1341
- msgstr "Tags (valgfri)"
1342
-
1343
- #: lib/html/element/setting/cache.php:38
1344
- msgid "Check again"
1345
- msgstr "Tjek igen"
1346
-
1347
- #: lib/html/element/setting/cache.php:39
1348
- msgid "Templates cache is not writable"
1349
- msgstr "Skabelonernes cache er ikke skrivbar"
1350
-
1351
- #: lib/html/element/setting/cache.php:40
1352
- msgid "Templates cache is writable"
1353
- msgstr "Skabelonernes cache er skrivbar"
1354
-
1355
- #: lib/html/element/setting/cache.php:41
1356
- msgid "Checking..."
1357
- msgstr "Tjekker..."
1358
-
1359
- #: lib/html/element/setting/cache.php:42
1360
- msgid "Performance Report"
1361
- msgstr "Rapport om ydeevne"
1362
-
1363
- #: lib/html/element/setting/calendar-page-selector.php:70
1364
- msgid "View"
1365
- msgstr "Vis"
1366
-
1367
- #: lib/html/element/setting/calendar-page-selector.php:114
1368
- msgid "- Auto-Create New Page -"
1369
- msgstr "- Opret automatisk Ny Side -"
1370
-
1371
- #: lib/html/element/setting/enabled-views.php:22
1372
- msgid "Enabled"
1373
- msgstr "Aktiveret"
1374
-
1375
- #: lib/html/element/setting/enabled-views.php:23
1376
- msgid "Default"
1377
- msgstr "Standard"
1378
-
1379
- #: lib/html/element/setting/enabled-views.php:24
1380
- msgid "Desktop"
1381
- msgstr "Stationær"
1382
-
1383
- #: lib/html/element/setting/enabled-views.php:25
1384
- msgid "Mobile"
1385
- msgstr "Mobil"
1386
-
1387
- #: lib/html/element/setting/html.php:37
1388
- msgid "Embed the calendar using a shortcode"
1389
- msgstr "Brug en genvejskode til at indlejre kalenderen"
1390
-
1391
- #: lib/html/element/setting/html.php:38
1392
- msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
- msgstr "Indsæt en af disse genvejskoder i 'body'-delen for at indlejre kalenderen på en hvilken som helst WordPressside"
1394
-
1395
- #: lib/html/element/setting/html.php:39
1396
- msgid "Month view:"
1397
- msgstr "Månedsvisning:"
1398
-
1399
- #: lib/html/element/setting/html.php:40
1400
- msgid "Week view:"
1401
- msgstr "Ugevisning:"
1402
-
1403
- #: lib/css/frontend.php:239
1404
- msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
- msgstr "Dannelsen af CSS fejlede fordi du ikke har tilsktrækkelig fri hukommelse (der behøves minimum %s). Din kalender kan ikke rendere eller fungere ordentligt uden CSS. Læs venligst <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">denne artikel</a> for at lære hvordan man øger PHP hukommelsesgrænsen."
1406
-
1407
- #: lib/css/frontend.php:266
1408
- msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
- msgstr "LESS-filen blev kompileret korrekt, men der opstod en fejl da den genererede CSS-fil skulle gemmes permanent."
1410
-
1411
- #: lib/css/frontend.php:272
1412
- msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
- msgstr "<p><strong>Der opstod en fejl under kompilering af CSS.</strong> Den returnerede besked var: <em>%s</em></p>"
1414
-
1415
- #: lib/css/frontend.php:300
1416
- msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
- msgstr "Temaindstillingerne blev nulstillet til standardværdi. <a href='%s'>Besøg siden</a>"
1418
-
1419
- #: lib/css/frontend.php:307
1420
- msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
- msgstr "Temaindstilliger blev opdateret korrekt. <a href='%s'>Besøg siden</a>"
1422
-
1423
- #: lib/css/frontend.php:343
1424
- msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
- msgstr "Din css bliver kompileret på ny for hvert sidekald hvilket betyder, at din kalender bliver langsom. Følgende fejl opstod: %s"
1426
-
1427
- #: lib/database/applicator.php:182
1428
- msgid "Date columns in table %s have different types."
1429
- msgstr "Datokolonner i tabellen %s har forskellige typer."
1430
-
1431
- #: lib/database/exception/database.php:19
1432
- msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
- msgstr "Opdatering af databasen slog fejl. Du skal sikre dig at databasebrugeren angivet i <em>wp-config.php</em> har tilladelse til at ændre databasen (<strong>ALTER TABLE</strong>)"
1434
-
1435
- #: lib/database/exception/database.php:23
1436
- msgid "Error encountered: %s"
1437
- msgstr "Fundne fejl: %s"
1438
-
1439
- #: lib/date/system.php:202
1440
- msgid "GMT%+d:%02d"
1441
- msgstr "GMT%+d:%02d"
1442
-
1443
- #: lib/date/timezone.php:362
1444
- msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
- msgstr "Vælg hjemmesidens tidszone i %s <em>Tidszone</em> dropdown-menuen."
1446
-
1447
- #: lib/date/timezone.php:397
1448
- msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
- msgstr "Tidszonen \"UTC%+d\" blev ikke genkendt. Benyt venligst et %suse valid%s navn til tidszonen. Indtil da vil begivenheder bleve oprettet i UTC tidszone."
1450
-
1451
- #: lib/date/timezone.php:421
1452
- msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
- msgstr "Den valgte tidszone \"UTC%+d\" vil blive betragtet som %s."
1454
-
1455
- #: lib/date/timezone.php:490
1456
- msgid "Manual Offset"
1457
- msgstr "Manuel tilpasning"
1458
-
1459
- #: lib/date/timezone.php:493
1460
- msgid "Choose your timezone"
1461
- msgstr "Vælg din tidszone"
1462
-
1463
- #: lib/environment/check.php:55
1464
- msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
- msgstr "Vælg en indstilling fra <strong>Kalendersidens</strong> dropdownliste."
1466
-
1467
- #: lib/environment/check.php:68
1468
- msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
- msgstr "Plugin er intalleret men endnu ikke konfigureret. <a href=\"%s\">Klik her for at opsætte det nu &raquo;</a>"
1470
-
1471
- #: lib/environment/check.php:78
1472
- msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
- msgstr "Plugin er installeret men endnu ikke konfigureret. Log ind som administrator for at opsætte det."
1474
-
1475
- #: lib/environment/check.php:196
1476
- msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
- msgstr "Tilføjelsen <strong>%s</strong> skal opdateres til mindst version %s for at opretholde kompatibilitet med den grundlæggende kalender."
1478
-
1479
- #: lib/environment/check.php:197
1480
- msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
- msgstr "Hvis der ikke vises notitser om opdatering herunder, skal du sikre dig at du har angivet <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">rigtige licensnøgler</a>. Alternativt kan du navigere til <a href=\"https://time.ly/your-account/\">din konto</a> for at downloade den seneste version af tilføjelsen og <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">opdatere manuelt</a>. Du kan også <a href=\"https://time.ly/forums/\">spørge i forum</a> hvis du har problemer. Vi vil med glæde hjælpe."
1482
-
1483
- #: lib/exception/handler.php:176
1484
- msgid "The add-on \"%s\" has been disabled due to an error:"
1485
- msgstr "Tilføjelsen \"%s\" er blevet deaktiveret på grund af en fejl:"
1486
-
1487
- #: lib/calendar-feed/ics.php:367
1488
- msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
- msgstr "Ønsker du at beholde de importerede begivenheder fra kalenderen eller at fjerne dem?"
1490
-
1491
- #: lib/calendar-feed/ics.php:373
1492
- msgid "Removing ICS Feed"
1493
- msgstr "Fjerner ICS-feed"
1494
-
1495
- #: lib/calendar-feed/ics.php:376
1496
- msgid "Keep Events"
1497
- msgstr "Behold begivenheder"
1498
-
1499
- #: lib/calendar-feed/ics.php:379
1500
- msgid "Remove Events"
1501
- msgstr "Fjern begivenheder"
1502
-
1503
- #: lib/calendar-feed/ics.php:519
1504
- msgid "Oh, submission was not accepted."
1505
- msgstr ""
1506
-
1507
- #: lib/calendar-feed/ics.php:699
1508
- msgid "Deleted %d events"
1509
- msgstr "Slettede %d begivenheder"
1510
-
1511
- #: lib/calendar-feed/ics.php:735
1512
- msgid "Feed deleted"
1513
- msgstr "Feed slettet"
1514
-
1515
- #: lib/captcha/provider/nocaptcha.php:31
1516
- msgid "noCAPTCHA public key:"
1517
- msgstr "noCAPTCHA offentlig nøgle::"
1518
-
1519
- #: lib/captcha/provider/nocaptcha.php:47
1520
- msgid "noCAPTCHA private key:"
1521
- msgstr "noCAPTCHA privat nøgle:"
1522
-
1523
- #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
- msgid "Please try verifying you are human again."
1525
- msgstr "Bevis venligst endnu engang at du er et menneske."
1526
-
1527
- #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
- msgid "There was an error reading the human verification data. Please try again."
1529
- msgstr "Der opstod en fejl under godkendelse af kontrol for at du er et menneske. Prøv igen."
1530
-
1531
- #: lib/captcha/provider/recaptcha.php:32
1532
- msgid "reCAPTCHA public key:"
1533
- msgstr "reCAPTCHA offentlig nøgle:"
1534
-
1535
- #: lib/captcha/provider/recaptcha.php:48
1536
- msgid "reCAPTCHA private key:"
1537
- msgstr "reCAPTCHA privat nøgle:"
1538
-
1539
- #: lib/captcha/provider/recaptcha.php:66
1540
- msgid "Human verification"
1541
- msgstr "Bevis for at du er et menneske"
1542
-
1543
- #: lib/captcha/provider/recaptcha.php:67
1544
- msgid "Loading reCAPTCHA..."
1545
- msgstr "Indlæser reCAPTCHA..."
1546
-
1547
- #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
- #: lib/clone/renderer-helper.php:45
1549
- msgid "Clone"
1550
- msgstr "Klon"
1551
-
1552
- #: lib/clone/renderer-helper.php:44
1553
- msgid "Make new copy of event"
1554
- msgstr "Lav ny kopi af begivenhed"
1555
-
1556
- #: lib/clone/renderer-helper.php:47
1557
- msgid "Copy to a new draft"
1558
- msgstr "Kopier til ny kladde"
1559
-
1560
- #: lib/clone/renderer-helper.php:48
1561
- msgid "Clone to Draft"
1562
- msgstr "Klon til kladde"
1563
-
1564
- #: lib/command/clone.php:173
1565
- msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
- msgstr "<p>Begivenheden <strong>%s</strong> blev klonet korrekt. <a href=\"%s\">Rediger den klonede begivenhed</a></p>"
1567
-
1568
- #: lib/compatibility/check.php:101
1569
- msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
- msgstr "Du har aktiveret rendering fra frontend og benytter samtidig eget kalendertema. Hvis dit tema ikke understøtter rendering fra frontend, virker kalenderen måske ikke korrekt."
1571
-
1572
- #: app/view/event/single.php:123
1573
- msgid "Tickets:"
1574
- msgstr ""
1575
-
1576
- #: app/view/event/single.php:124
1577
- msgid "Free"
1578
- msgstr "Gratis"
1579
-
1580
- #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
- msgid "Buy Tickets"
1582
- msgstr "Køb billetter"
1583
-
1584
- #: app/view/event/single.php:150
1585
- msgid "Edit this occurrence (%s)"
1586
- msgstr "Rediger denne forekomst (%s)"
1587
-
1588
- #: app/view/event/single.php:195
1589
- msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
- msgstr "Dette indlæg er oprettet som en kopi af en anden hjemmesides <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> kalenderfeed</a>."
1591
-
1592
- #: app/view/event/single.php:206
1593
- msgid "View original"
1594
- msgstr "Vis oprindelige"
1595
-
1596
- #: app/view/event/taxonomy.php:113
1597
- msgid "Category image"
1598
- msgstr "Kategoribillede"
1599
-
1600
- #: app/view/event/ticket.php:24
1601
- msgid "Register Now"
1602
- msgstr "Registrer nu"
1603
-
1604
- #: app/view/event/ticket.php:82
1605
- msgid "Event website"
1606
- msgstr "Begivenhedens webside"
1607
-
1608
- #: app/view/event/time.php:84 app/view/event/time.php:118
1609
- msgctxt "Event time separator"
1610
- msgid " @ "
1611
- msgstr " kl. "
1612
-
1613
- #: app/view/event/time.php:100
1614
- msgctxt "Event start/end separator"
1615
- msgid " – "
1616
- msgstr " – "
1617
-
1618
- #: app/view/event/time.php:166
1619
- msgid ", and "
1620
- msgstr ", og"
1621
-
1622
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
- msgid "Excludes: "
1624
- msgstr ""
1625
-
1626
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
- msgid "Repeats"
1628
- msgstr ""
1629
-
1630
- #: lib/calendar-feed/ics.php:38
1631
- msgid "ICS"
1632
- msgstr "ICS"
1633
-
1634
- #: lib/calendar-feed/ics.php:69
1635
- msgid "Another import process in progress. Please try again later."
1636
- msgstr "En anden importhandling er i gang. Prøv igen senere."
1637
-
1638
- #: lib/calendar-feed/ics.php:174
1639
- msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
- msgstr "En systemfejl har forhindret kalenderen i at hente data. Noget forhindrer plugin i at fungere korrekt. Denne meddelelse burde indeholde et fingerpeg: %s"
1641
-
1642
- #: lib/calendar-feed/ics.php:181
1643
- msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
- msgstr "Kalenderdata kunne ikke hentes. Hvis din webadresse er gyldig og indeholder en iCalendar-ressource, skyldes dette sandsynligvis en midlertidig fejl på serveren og derfor løser sig selv efter lidt tid."
1645
-
1646
- #: lib/calendar-feed/ics.php:195
1647
- msgid "Imported %s event"
1648
- msgid_plural "Imported %s events"
1649
- msgstr[0] "Importerede %s begivenhed"
1650
- msgstr[1] "Importerede %s begivenheder"
1651
-
1652
- #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
- msgid "Invalid ICS feed ID"
1654
- msgstr "Ugyldig ICS feed-ID"
1655
-
1656
- #: lib/calendar-feed/ics.php:350
1657
- msgid "Categories (optional)"
1658
- msgstr "Kategorier (valgfri)"
1659
-
1660
- #: app/view/event/content.php:33 app/view/event/single.php:119
1661
- msgid "When:"
1662
- msgstr "Hvornår:"
1663
-
1664
- #: app/view/event/content.php:34 app/view/event/single.php:120
1665
- msgid "Where:"
1666
- msgstr "Hvor:"
1667
-
1668
- #: app/view/event/content.php:125
1669
- msgid "Calendar"
1670
- msgstr ""
1671
-
1672
- #: app/view/event/content.php:126
1673
- msgid "View all events"
1674
- msgstr "Vis alle begivenheder"
1675
-
1676
- #: app/view/event/location.php:96
1677
- msgid "Click to view map"
1678
- msgstr "Klik for at se kortet"
1679
-
1680
- #: app/view/event/location.php:97
1681
- msgid "View Full-Size Map"
1682
- msgstr "Vis kort på hel side"
1683
-
1684
- #: app/view/event/post.php:29
1685
- msgid "Event updated. <a href=\"%s\">View event</a>"
1686
- msgstr "Begivenhed opdateret. <a href=\"%s\">Vis begivenhed</a>"
1687
-
1688
- #: app/view/event/post.php:32
1689
- msgid "Custom field updated."
1690
- msgstr "Brugerdefineret felt er opdateret."
1691
-
1692
- #: app/view/event/post.php:33
1693
- msgid "Custom field deleted."
1694
- msgstr "Brugerdefineret felt er slettet."
1695
-
1696
- #: app/view/event/post.php:34
1697
- msgid "Event updated."
1698
- msgstr "Begivenhed er opdateret."
1699
-
1700
- #. translators: %s: date and time of the revision
1701
- #: app/view/event/post.php:38
1702
- msgid "Event restored to revision from %s"
1703
- msgstr "Begivenhed gendannet til revision af %s"
1704
-
1705
- #: app/view/event/post.php:43
1706
- msgid "Event published. <a href=\"%s\">View event</a>"
1707
- msgstr "Begivenhed udgivet. <a href=\"%s\">Vis begivenhed</a>"
1708
-
1709
- #: app/view/event/post.php:46
1710
- msgid "Event saved."
1711
- msgstr "Begivenhed gemt."
1712
-
1713
- #: app/view/event/post.php:48
1714
- msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
- msgstr "Begivenhed indsendt. <a target=\"_blank\" href=\"%s\">Forhåndsvisning af begivenhed</a>"
1716
-
1717
- #: app/view/event/post.php:52
1718
- msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
- msgstr "Begivenhed planlagt til: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Forhåndsvisning af begivenhed</a>"
1720
-
1721
- #. translators: Publish box date format, see http:php.net/date
1722
- #: app/view/event/post.php:54
1723
- msgid "M j, Y @ G:i"
1724
- msgstr "j. M Y kl. G:i "
1725
-
1726
- #: app/view/event/post.php:58
1727
- msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
- msgstr "Udkast til begivenhed er opdateret <a target=\"_blank\" href=\"%s\">Forhåndsvisning af begivenhed</a>"
1729
-
1730
- #: app/view/event/single.php:78
1731
- msgid "Event was created in the %s time zone"
1732
- msgstr "Begivenheden blev oprettet i tidszonen %s"
1733
-
1734
- #: app/view/event/single.php:114
1735
- msgid "Add to Calendar"
1736
- msgstr "Tilføj i kalender"
1737
-
1738
- #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
- msgid "Cost:"
1740
- msgstr "Pris:"
1741
-
1742
- #: app/view/event/single.php:122
1743
- msgid "Contact:"
1744
- msgstr "Kontakt:"
1745
-
1746
- #: app/view/calendar/view/agenda.php:169
1747
- msgid "Categories:"
1748
- msgstr "Kategorier:"
1749
-
1750
- #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
- #: public/admin/themes.php:29
1752
- msgid "Tags:"
1753
- msgstr "Tags:"
1754
-
1755
- #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
- #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
- #: app/view/calendar/widget.php:374
1758
- msgid "@ %s"
1759
- msgstr " %s"
1760
-
1761
- #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
- msgid "g a"
1763
- msgstr "g a"
1764
-
1765
- #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
- msgid "Reveal full day"
1767
- msgstr "Vis hele dagen"
1768
-
1769
- #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
- msgid "All-day"
1771
- msgstr "Heldags"
1772
-
1773
- #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
- msgid "Now:"
1775
- msgstr "Nu:"
1776
-
1777
- #: app/view/calendar/view/week.php:67
1778
- msgid "Week of %s"
1779
- msgstr "Ugen fra %s"
1780
-
1781
- #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
- msgid "Upcoming Events"
1783
- msgstr "Kommende begivenheder"
1784
-
1785
- #: app/view/calendar/widget.php:38
1786
- msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
- msgstr "All-in-One Event Calendar: Opstiller kommende begivenheder i listeform"
1788
-
1789
- #: app/view/calendar/widget.php:80
1790
- msgid "Choose how to limit the upcoming events"
1791
- msgstr "Vælg hvordan kommende begivenheder skal begrænses"
1792
-
1793
- #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
- msgid "Events"
1795
- msgstr "Begivenheder"
1796
-
1797
- #: app/view/calendar/widget.php:93
1798
- msgid "Days"
1799
- msgstr "Dage"
1800
-
1801
- #: app/view/calendar/widget.php:106
1802
- msgid "Number of events to show"
1803
- msgstr "Antal viste begivenheder"
1804
-
1805
- #: app/view/calendar/widget.php:115
1806
- msgid "Number of days to show"
1807
- msgstr "Antal viste dage"
1808
-
1809
- #: app/view/calendar/widget.php:124
1810
- msgid "Show events filtered for the following tags/categories"
1811
- msgstr "Vis begivenheder sorteret efter følgende tags/kategorier"
1812
-
1813
- #: app/view/calendar/widget.php:141
1814
- msgid "Show the subscribe button in the widget"
1815
- msgstr "Vis knappen Abonner i sidebaren"
1816
-
1817
- #: app/view/calendar/widget.php:370
1818
- msgid "There are no upcoming events."
1819
- msgstr "Der er ingen kommende begivenheder."
1820
-
1821
- #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
- msgid "all-day"
1823
- msgstr "heldags"
1824
-
1825
- #: app/view/calendar/widget.php:372
1826
- msgid "View Calendar"
1827
- msgstr "Vis kalender"
1828
-
1829
- #: app/view/calendar/widget.php:375
1830
- msgid "Add"
1831
- msgstr "Tilføj"
1832
-
1833
- #: app/view/calendar/page.php:260
1834
- msgid "Subscribe to filtered calendar"
1835
- msgstr "Abonner på den sorterede kalender"
1836
-
1837
- #: app/view/calendar/page.php:261
1838
- msgid "Subscribe"
1839
- msgstr "Abonner"
1840
-
1841
- #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
- msgid "Get a Timely Calendar"
1843
- msgstr "Få en kalender fra Timely"
1844
-
1845
- #: app/view/calendar/subscribe-button.php:22
1846
- msgid "Add to Timely Calendar"
1847
- msgstr "Tilføj i Timely kalender"
1848
-
1849
- #: app/view/calendar/subscribe-button.php:23
1850
- msgid "Add to Google"
1851
- msgstr "Tilføj i Google"
1852
-
1853
- #: app/view/calendar/subscribe-button.php:24
1854
- msgid "Add to Outlook"
1855
- msgstr "Tilføj i Outlook"
1856
-
1857
- #: app/view/calendar/subscribe-button.php:25
1858
- msgid "Add to Apple Calendar"
1859
- msgstr "Tilføj i Apple kalender"
1860
-
1861
- #: app/view/calendar/subscribe-button.php:26
1862
- msgid "Add to other calendar"
1863
- msgstr "Tilføj i anden kalender"
1864
-
1865
- #: app/view/calendar/subscribe-button.php:29
1866
- msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
- msgstr "Kopier denne webadresse (URL) til din egen Timely kalender eller klik for at tilføje i din RTF kalender."
1868
-
1869
- #: app/view/calendar/subscribe-button.php:30
1870
- msgid "Subscribe to this calendar in your Google Calendar"
1871
- msgstr "Abonner på denne kalender i Google kalender"
1872
-
1873
- #: app/view/calendar/subscribe-button.php:31
1874
- msgid "Subscribe to this calendar in MS Outlook"
1875
- msgstr "Abonner på denne kalender i MS Outlook"
1876
-
1877
- #: app/view/calendar/subscribe-button.php:32
1878
- msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
- msgstr "Abonner på denne kalender i Apple kalender/iCal"
1880
-
1881
- #: app/view/calendar/subscribe-button.php:33
1882
- msgid "Subscribe to this calendar in another plain-text calendar"
1883
- msgstr "Abonner på denne kalender i en anden ren-tekst kalender"
1884
-
1885
- #: app/view/calendar/taxonomy.php:97
1886
- msgid "Clear category filter"
1887
- msgstr "Ryd kategorisortering"
1888
-
1889
- #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
- #: lib/html/element/setting/tags-categories.php:47
1891
- msgid "Categories"
1892
- msgstr "Kategorier"
1893
-
1894
- #: app/view/calendar/taxonomy.php:99
1895
- msgid "Clear tag filter"
1896
- msgstr "Ryd tagsortering"
1897
-
1898
- #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
- #: lib/html/element/setting/tags-categories.php:39
1900
- msgid "Tags"
1901
- msgstr "Tags"
1902
-
1903
- #: app/view/calendar/view/agenda.php:142
1904
- msgid "Collapse All"
1905
- msgstr "Fold alle sammen"
1906
-
1907
- #: app/view/calendar/view/agenda.php:143
1908
- msgid "Expand All"
1909
- msgstr "Udvid alle"
1910
-
1911
- #: app/view/calendar/view/agenda.php:166
1912
- msgid "There are no upcoming events to display at this time."
1913
- msgstr "Der er ingen kommende begivenheder på dette tidspunkt."
1914
-
1915
- #: app/view/calendar/view/agenda.php:168
1916
- msgid "Read more"
1917
- msgstr "Læs mere"
1918
-
1919
- #: app/view/admin/tickets.php:86
1920
- msgid "Sales"
1921
- msgstr ""
1922
-
1923
- #: app/view/admin/tickets.php:87
1924
- msgid "How do you want the tickets revenue to be sent to you?"
1925
- msgstr ""
1926
-
1927
- #: app/view/admin/tickets.php:88
1928
- msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
- msgstr ""
1930
-
1931
- #: app/view/admin/tickets.php:91
1932
- msgid "Cheque"
1933
- msgstr ""
1934
-
1935
- #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
- msgid "Paypal"
1937
- msgstr "Paypal"
1938
-
1939
- #: app/view/admin/tickets.php:94
1940
- msgid "Save Changes"
1941
- msgstr ""
1942
-
1943
- #: app/view/admin/tickets.php:95
1944
- msgid "Date"
1945
- msgstr ""
1946
-
1947
- #: app/view/admin/tickets.php:96
1948
- msgid "Event"
1949
- msgstr ""
1950
-
1951
- #: app/view/admin/tickets.php:97
1952
- msgid "Purchaser"
1953
- msgstr ""
1954
-
1955
- #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
- #: public/admin/box_event_cost.php:35
1957
- msgid "Tickets"
1958
- msgstr "Billetter"
1959
-
1960
- #: app/view/admin/tickets.php:101
1961
- msgid "Total"
1962
- msgstr ""
1963
-
1964
- #: app/view/admin/tickets.php:102
1965
- msgid "Sign Out"
1966
- msgstr ""
1967
-
1968
- #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
- #: app/view/admin/widget-creator.php:47
1970
- msgid "Widget Creator"
1971
- msgstr "Widget Creator"
1972
-
1973
- #: app/view/admin/widget-creator.php:74
1974
- msgctxt "meta box"
1975
- msgid "Widget Creator"
1976
- msgstr "Widget Creator"
1977
-
1978
- #: app/view/admin/widget-creator.php:131
1979
- msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
- msgstr "Brug dette værktøj til at generere en kode her, som du kan føje til <strong> en ekstern hjemmeside </strong> for at indlejre nye kalendere og widgets."
1981
-
1982
- #: app/view/admin/widget-creator.php:132
1983
- msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
- msgstr "<h4>Bemærk!</h4><p>Disse widgets er designet til kun at blive indlejret <strong>på eksterne hjemmesider</strong> og kan derfor føre til konflikter, hvis de benyttes indenfor samme WordPress installation.</p>"
1985
-
1986
- #: app/view/admin/widget-creator.php:134
1987
- msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
- msgstr "<p>Benyt <a href=\"%s\"><strong>Udseendee</strong> &gt; <strong>Widgets</strong></a> for at tilføje widgets med begivenheder på din WordPress side, som du ville gøre med en hvilken som helst anden widget, eller benyt <a href=\"%s\" target=\"_blank\">genvejskoder</a> til at indlejre hele kalenderen.</strong></p>"
1989
-
1990
- #: app/view/admin/widget-creator.php:140
1991
- msgid "Paste this code onto your site:"
1992
- msgstr "Indsæt denne kode på din hjemmeside:"
1993
-
1994
- #: app/view/admin/widget-creator.php:141
1995
- msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
- msgstr "Denne kode vil blive opdateret for at afspejle ændringer i indstillingerne. Ændring af indstillinger vil ikke påvirke tidligere indlejrede widgets."
1997
-
1998
- #: app/view/calendar/page.php:54
1999
- msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
- msgstr "Der opstod en fejl med at hente kalenderen. Kontakt venligst sidens administrator, og bed denne om at konfigurere kalendervisninger."
2001
-
2002
- #: app/view/calendar/page.php:74
2003
- msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
- msgstr "Kalenderen kunne ikke oprette %s visning og er gået tilbage til Listevisning. Tjek om du har installeret seneste versioner af kalendertilføjelserne."
2005
-
2006
- #: app/view/admin/settings.php:193
2007
- msgid "Phone Number:"
2008
- msgstr ""
2009
-
2010
- #: app/view/admin/settings.php:194
2011
- msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
- msgstr ""
2013
-
2014
- #: app/view/admin/settings.php:197
2015
- msgid "Sign Up"
2016
- msgstr ""
2017
-
2018
- #: app/view/admin/settings.php:198
2019
- msgid "Sign In"
2020
- msgstr ""
2021
-
2022
- #: app/view/admin/settings.php:212
2023
- msgid "Save Settings"
2024
- msgstr "Gem indstillinger"
2025
-
2026
- #: app/view/admin/settings.php:219
2027
- msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
- msgstr "Hvis formularen nedenunder ikke virker, følg da <a href=\"%s\">dette link</a>."
2029
-
2030
- #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
- msgid "Theme Options"
2032
- msgstr "Temaindstillinger"
2033
-
2034
- #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
- msgid "Calendar Theme Options"
2036
- msgstr "Kalendertema indstillinger"
2037
-
2038
- #: app/view/admin/theme-options.php:79
2039
- msgctxt "meta box"
2040
- msgid "Calendar Theme Options"
2041
- msgstr "Indstillinger for kalendertema"
2042
-
2043
- #: app/view/admin/theme-options.php:133
2044
- msgid "General"
2045
- msgstr "Generelt"
2046
-
2047
- #: app/view/admin/theme-options.php:136
2048
- msgid "Tables"
2049
- msgstr "Tabeller"
2050
-
2051
- #: app/view/admin/theme-options.php:139
2052
- msgid "Buttons"
2053
- msgstr "Knapper"
2054
-
2055
- #: app/view/admin/theme-options.php:142
2056
- msgid "Forms"
2057
- msgstr "Formularer"
2058
-
2059
- #: app/view/admin/theme-options.php:145
2060
- msgid "Calendar general"
2061
- msgstr "Kalender generelt"
2062
-
2063
- #: app/view/admin/theme-options.php:148
2064
- msgid "Month/week/day view"
2065
- msgstr "Måneds-/uge-/dagsvisning"
2066
-
2067
- #: app/view/admin/theme-options.php:151
2068
- msgid "Agenda view"
2069
- msgstr "Listevisning"
2070
-
2071
- #: app/view/admin/theme-options.php:169
2072
- msgid "Save Options"
2073
- msgstr "Gem indstilinger"
2074
-
2075
- #: app/view/admin/theme-options.php:177
2076
- msgid "Reset to Defaults"
2077
- msgstr "Nulstil til standardværdier"
2078
-
2079
- #: app/view/admin/theme-switching.php:31
2080
- msgid "All-in-One Event Calendar: Themes"
2081
- msgstr "All-in-One Event Calendar: Temaer"
2082
-
2083
- #: app/view/admin/tickets.php:36
2084
- msgid "Ticketing"
2085
- msgstr ""
2086
-
2087
- #: app/view/admin/tickets.php:37
2088
- msgid "Ticketing<sup>beta</sup>"
2089
- msgstr ""
2090
-
2091
- #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
- msgid "Time.ly Ticketing<sup>beta</sup>"
2093
- msgstr ""
2094
-
2095
- #: app/view/admin/settings.php:98
2096
- msgctxt "meta box"
2097
- msgid "Timely"
2098
- msgstr "Timely"
2099
-
2100
- #: app/view/admin/settings.php:140
2101
- msgid "Viewing Events"
2102
- msgstr "Se begivenheder"
2103
-
2104
- #: app/view/admin/settings.php:143
2105
- msgid "Adding/Editing Events"
2106
- msgstr "Tilføj/redigér begivenheder"
2107
-
2108
- #: app/view/admin/settings.php:146
2109
- msgid "Advanced"
2110
- msgstr "Avanceret"
2111
-
2112
- #: app/view/admin/settings.php:148
2113
- msgid "Advanced Settings"
2114
- msgstr "Avancerede indstillinger"
2115
-
2116
- #: app/view/admin/settings.php:149
2117
- msgid "Shortcodes"
2118
- msgstr "Genvejskoder"
2119
-
2120
- #: app/view/admin/settings.php:150
2121
- msgid "Email Templates"
2122
- msgstr "E-mailskabeloner"
2123
-
2124
- #: app/view/admin/settings.php:151
2125
- msgid "External Services"
2126
- msgstr "Eksterne tjenester"
2127
-
2128
- #: app/view/admin/settings.php:152
2129
- msgid "Cache Report"
2130
- msgstr "Cache-rapport"
2131
-
2132
- #: app/view/admin/settings.php:171
2133
- msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
- msgstr ""
2135
-
2136
- #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
- #: public/admin/box_ask_customer_review.php:112
2138
- #: public/admin/box_ask_customer_review.php:126
2139
- #: public/admin/box_ask_customer_review.php:140
2140
- #: public/admin/box_ask_customer_review.php:158
2141
- #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
- msgid "This field is required."
2143
- msgstr ""
2144
-
2145
- #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
- msgid "Register"
2147
- msgstr "Registrer"
2148
-
2149
- #: app/view/admin/settings.php:184
2150
- msgid "Sign in"
2151
- msgstr ""
2152
-
2153
- #: app/view/admin/settings.php:185
2154
- msgid "You are successfully signed in to <b>Timely Network</b>."
2155
- msgstr ""
2156
-
2157
- #: app/view/admin/settings.php:186
2158
- msgid "Sign out"
2159
- msgstr ""
2160
-
2161
- #: app/view/admin/settings.php:187
2162
- msgid "Hide form"
2163
- msgstr ""
2164
-
2165
- #: app/view/admin/settings.php:188
2166
- msgid "Show form"
2167
- msgstr ""
2168
-
2169
- #: app/view/admin/settings.php:189
2170
- msgid "Full Name:"
2171
- msgstr ""
2172
-
2173
- #: app/view/admin/settings.php:190
2174
- msgid "Email:"
2175
- msgstr "Email:"
2176
-
2177
- #: app/view/admin/settings.php:191
2178
- msgid "Password:"
2179
- msgstr ""
2180
-
2181
- #: app/view/admin/settings.php:192
2182
- msgid "Confirm Password:"
2183
- msgstr ""
2184
-
2185
- #: app/view/admin/get-repeat-box.php:483
2186
- msgid "fourth"
2187
- msgstr "fjerde"
2188
-
2189
- #: app/view/admin/get-repeat-box.php:495
2190
- msgid "Sunday"
2191
- msgstr "Søndag"
2192
-
2193
- #: app/view/admin/get-repeat-box.php:496
2194
- msgid "Monday"
2195
- msgstr "Mandag"
2196
-
2197
- #: app/view/admin/get-repeat-box.php:497
2198
- msgid "Tuesday"
2199
- msgstr "Tirsdag"
2200
-
2201
- #: app/view/admin/get-repeat-box.php:498
2202
- msgid "Wednesday"
2203
- msgstr "Onsdag"
2204
-
2205
- #: app/view/admin/get-repeat-box.php:499
2206
- msgid "Thursday"
2207
- msgstr "Torsdag"
2208
-
2209
- #: app/view/admin/get-repeat-box.php:500
2210
- msgid "Friday"
2211
- msgstr "Fredag"
2212
-
2213
- #: app/view/admin/get-repeat-box.php:501
2214
- msgid "Saturday"
2215
- msgstr "Lørdag"
2216
-
2217
- #: app/view/admin/get-repeat-box.php:503
2218
- msgid "day"
2219
- msgstr "dag"
2220
-
2221
- #: app/view/admin/get-repeat-box.php:504
2222
- msgid "weekday"
2223
- msgstr "ugedag"
2224
-
2225
- #: app/view/admin/get-repeat-box.php:505
2226
- msgid "weekend day"
2227
- msgstr "dag i weekenden"
2228
-
2229
- #: app/view/admin/get-repeat-box.php:571
2230
- msgid "year(s)"
2231
- msgstr "år"
2232
-
2233
- #: app/view/admin/nav.php:22
2234
- msgid "<a href=\"%s\">Settings</a>"
2235
- msgstr "<a href=\"%s\">Indstillinger</a>"
2236
-
2237
- #: app/view/admin/nav.php:28
2238
- msgid "<a href=\"%s\">Check for updates</a>"
2239
- msgstr ""
2240
-
2241
- #: app/view/admin/organize.php:100
2242
- msgid "Organize Events"
2243
- msgstr "Organiser begivenheder"
2244
-
2245
- #: app/view/admin/settings.php:30
2246
- msgid "All-in-One Event Calendar: Settings"
2247
- msgstr "All-in-One Event Calendar: Indstillinger"
2248
-
2249
- #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
- #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
- msgid "Settings"
2252
- msgstr "Indstillinger"
2253
-
2254
- #: app/view/admin/settings.php:89
2255
- msgctxt "meta box"
2256
- msgid "General Settings"
2257
- msgstr "Generelle indstillinger"
2258
-
2259
- #: app/view/admin/get-repeat-box.php:480
2260
- msgid "first"
2261
- msgstr "første"
2262
-
2263
- #: app/view/admin/get-repeat-box.php:481
2264
- msgid "second"
2265
- msgstr "anden"
2266
-
2267
- #: app/view/admin/get-repeat-box.php:482
2268
- msgid "third"
2269
- msgstr "tredie"
2270
-
2271
- #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
- msgid "Import Feeds"
2273
- msgstr ""
2274
-
2275
- #: app/view/admin/calendar-feeds.php:48
2276
- msgctxt "meta box"
2277
- msgid "Feed Subscriptions"
2278
- msgstr "Feed-abonnementer"
2279
-
2280
- #: app/view/admin/calendar-feeds.php:65
2281
- msgid "All-in-One Event Calendar: Import Feeds"
2282
- msgstr ""
2283
-
2284
- #: app/view/admin/event-category.php:30
2285
- msgid "Color"
2286
- msgstr "Farve"
2287
-
2288
- #: app/view/admin/event-category.php:32
2289
- msgid "Image"
2290
- msgstr "Billede"
2291
-
2292
- #: app/view/admin/event-category.php:155
2293
- msgid "Category Color"
2294
- msgstr "Kategorifarve"
2295
-
2296
- #: app/view/admin/event-category.php:156
2297
- msgid "Events in this category will be identified by this color"
2298
- msgstr "Begivenheder i denne kategori kendes på denne farve"
2299
-
2300
- #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
- msgid "Category Image"
2302
- msgstr "Kategoribillede"
2303
-
2304
- #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
- msgid "Add Image"
2306
- msgstr "Tilføj billede"
2307
-
2308
- #: app/view/admin/event-category.php:195
2309
- msgid "Remove Image"
2310
- msgstr "Fjern billede"
2311
-
2312
- #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
- msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
- msgstr "Tilknyt et valgfrit billede til kategorien. Anbefalet størrelse: kvadrat, minimum 400&times;400 pixels."
2315
-
2316
- #: app/view/admin/get-repeat-box.php:94
2317
- msgid "times"
2318
- msgstr "gange"
2319
-
2320
- #: app/view/admin/get-repeat-box.php:164
2321
- msgid "Recurrence rule cannot be empty."
2322
- msgstr "Regler for gentagelse må ikke være tomt."
2323
-
2324
- #: app/view/admin/get-repeat-box.php:182
2325
- msgid "Recurrence rule was not provided."
2326
- msgstr "Gentagelsesregler blev ikke angivet."
2327
-
2328
- #: app/view/admin/get-repeat-box.php:209
2329
- msgid "Never"
2330
- msgstr "Aldrig"
2331
-
2332
- #: app/view/admin/get-repeat-box.php:210
2333
- msgid "After"
2334
- msgstr "Efter"
2335
-
2336
- #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
- msgid "On date"
2338
- msgstr "På datoen"
2339
-
2340
- #: app/view/admin/get-repeat-box.php:247
2341
- msgid "day(s)"
2342
- msgstr "dag(e)"
2343
-
2344
- #: app/view/admin/get-repeat-box.php:330
2345
- msgid "week(s)"
2346
- msgstr "uge(r)"
2347
-
2348
- #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
- #: lib/recurrence/rule.php:298
2350
- msgid "last"
2351
- msgstr "sidste"
2352
-
2353
- #: app/view/admin/get-repeat-box.php:426
2354
- msgid "month(s)"
2355
- msgstr "måned(er)"
2356
-
2357
- #: app/model/settings.php:929
2358
- msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
- msgstr "<strong>Link til CSS</strong> i <code>&lt;head&gt;</code> delen (html) hvis filcaching ikke er muligt."
2360
-
2361
- #: app/model/settings.php:932
2362
- msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
- msgstr "Benyt denne indstilling hvis filcaching ikke er muligt, og du foretrækker at hente css med et link i stedet for skrevet inline."
2364
-
2365
- #: app/model/settings.php:944
2366
- msgid "Current <strong>robots.txt</strong> on this site"
2367
- msgstr "Nuværende <strong>robots.txt</strong> for denne hjemmeside"
2368
-
2369
- #: app/model/settings.php:948
2370
- msgid ""
2371
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
- "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
- "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
- "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
- "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
- msgstr ""
2377
- "Robot Exclusion Standard, også kendt som Robots Exclusion Protocol eller\n"
2378
- "→\t→\t→\t→\t→\t→\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2379
- "→\t→\t→\t→\t→\t→\tprotokol, er en konvention for samarbejdet med web crawlers og andre typer web robotter\n"
2380
- "→\t→\t→\t→\t→\t→\tom adgang til hele eller dele af en webside der ellers er offentligt tilgængelig.\n"
2381
- "→\t→\t→\t→\t→\t→\tDu kan ændre dette manuelt ved at redigere <code>robots.txt</code> i roden af dit WordPress bibliotek."
2382
-
2383
- #: app/model/settings.php:965
2384
- msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2385
- msgstr "<strong>Udgiv, markedsfør og del mine begivenheder</strong> markeret som offentlige på Timelys netværk. (<a href=\"%s\" target=\"_blank\">Lær mere &#187;</a>)"
2386
-
2387
- #: app/model/settings.php:988
2388
- msgid "Templates cache improves site performance"
2389
- msgstr "Caching af skabeloner forbedrer ydeevnen"
2390
-
2391
- #: app/model/settings.php:1001
2392
- msgid "Display events in <strong>calendar time zone</strong>"
2393
- msgstr ""
2394
-
2395
- #: app/model/settings.php:1004
2396
- msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
- msgstr ""
2398
-
2399
- #: app/view/admin/add-new-event.php:26
2400
- msgid "Event Details"
2401
- msgstr "Begivenhedsdetaljer"
2402
-
2403
- #: app/view/admin/add-new-event.php:423
2404
- msgid "Set banner image"
2405
- msgstr "Indsæt bannerbillede"
2406
-
2407
- #: app/view/admin/add-new-event.php:424
2408
- msgid "Remove banner image"
2409
- msgstr "Fjerne bannerbillede"
2410
-
2411
- #: app/view/admin/add-ons.php:68
2412
- msgid "Add-ons for All In One Event Calendar"
2413
- msgstr "Tilføjelser til All In One Event Calendar"
2414
-
2415
- #: app/view/admin/add-ons.php:71
2416
- msgid "Browse All Extensions"
2417
- msgstr "Gennemse alle udvidelser"
2418
-
2419
- #: app/view/admin/add-ons.php:74
2420
- msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
- msgstr "Disse tilføjelser giver adgang til flere funktioner i All-in-One Event Calendar."
2422
-
2423
- #: app/view/admin/add-ons.php:77
2424
- msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
- msgstr "Der opstod en fejl i modtagelsen af listen med udvidelser fra serveren. Prøv igen senere."
2426
-
2427
- #: app/view/admin/all-events.php:16
2428
- msgid "Author"
2429
- msgstr "Forfatter"
2430
-
2431
- #: app/view/admin/all-events.php:17
2432
- msgid "Post Date"
2433
- msgstr "Udgivelsesdato"
2434
-
2435
- #: app/view/admin/all-events.php:18
2436
- msgid "Event date/time"
2437
- msgstr "Dato/tid for begivenhed"
2438
-
2439
- #: app/view/admin/all-events.php:22
2440
- msgid "Ticket Types"
2441
- msgstr ""
2442
-
2443
- #: app/view/admin/all-events.php:134
2444
- msgid "Show All "
2445
- msgstr "Vis alle "
2446
-
2447
- #: app/view/admin/all-events.php:147
2448
- msgid "Show All Authors"
2449
- msgstr ""
2450
-
2451
- #: app/model/settings.php:746
2452
- msgid "Strict compatibility content filtering"
2453
- msgstr "Kompatibilitetsafhængig indholdssortering "
2454
-
2455
- #: app/model/settings.php:758
2456
- msgid " <strong>Hide featured image</strong> from event details page"
2457
- msgstr "<strong>Skjul indlægsbillede</strong> på siden med detaljer om begivenheden"
2458
-
2459
- #: app/model/settings.php:761
2460
- msgid "Select this option if your theme already displays each post's featured image."
2461
- msgstr "Vælg denne indstilling hvis dit tema allerede viser hvert indlægs billede."
2462
-
2463
- #: app/model/settings.php:772
2464
- msgid "Input dates in this format"
2465
- msgstr "Angiv data i dette format"
2466
-
2467
- #: app/model/settings.php:777
2468
- msgid "Default (d/m/yyyy)"
2469
- msgstr "Standard (d/m/yyyy)"
2470
-
2471
- #: app/model/settings.php:781
2472
- msgid "US (m/d/yyyy)"
2473
- msgstr "US (m/d/yyyy)"
2474
-
2475
- #: app/model/settings.php:785
2476
- msgid "ISO 8601 (yyyy-m-d)"
2477
- msgstr "ISO 8601 (yyyy-m-d)"
2478
-
2479
- #: app/model/settings.php:789
2480
- msgid "Dotted (m.d.yyyy)"
2481
- msgstr "Dotted (m.d.yyyy)"
2482
-
2483
- #: app/model/settings.php:801
2484
- msgid " Use <strong>24h time</strong> in time pickers"
2485
- msgstr "Brug <strong>24 timers-format</strong> i tidsvælgeren"
2486
-
2487
- #: app/model/settings.php:812
2488
- msgid "<strong>Disable address autocomplete</strong> function"
2489
- msgstr "<strong>Slå autoudfyld fra</strong>"
2490
-
2491
- #: app/model/settings.php:823
2492
- msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2493
- msgstr "Benyt den konfigurerede <strong>region</strong> (WordPress-lokalisering) til at påvirke funktionen autofuldførelse af adrresser (fx på dansk vejnavn og nr.)"
2494
-
2495
- #: app/model/settings.php:839
2496
- msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2497
- msgstr "Vis den tidligere <strong>Indsend din begivenhed</strong>-knap over kalenderen for brugere med særlige rettigheder."
2498
-
2499
- #: app/model/settings.php:842
2500
- msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2501
- msgstr "Installer <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> til <strong>Indsend din begivenhedsformular</strong> i frontend."
2502
-
2503
- #: app/model/settings.php:863
2504
- msgid "Move calendar into this DOM element"
2505
- msgstr "Flyt kalenderen til dette DOM-element"
2506
-
2507
- #: app/model/settings.php:865
2508
- msgid ""
2509
- "Optional. Use this JavaScript-based shortcut to place the\n"
2510
- "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2511
- "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2512
- "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2513
- "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2514
- "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2515
- "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2516
- "\t\t\t\t\t\tby the calendar."
2517
- msgstr ""
2518
- "Valgfrit. Benyt denne JavaScript-baserede genvejskode for at placere\n"
2519
- "→\t→\t→\t→\t→\t→\tkalenderen i et DOM-element som ikke er det sædvanlige indholdselement på siden,\n"
2520
- "→\t→\t→\t→\t→\t→\thvis du ikke er i stand til at oprette en passende sideskabelon\n"
2521
- "→\t→\t→\t→\t→\t→\t for kalendersiden. For at gøre dette skal du indsætte en\n"
2522
- "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2523
- "→\t→\t→\t→\t→\t→\tjQuery selector</a>, som peger på et enkelt DOM-element.\n"
2524
- "→\t→\t→\t→\t→\t→\tEnhver eksisterende markering som befinder sig indenfor målet, vil blive erstattet\n"
2525
- "→\t→\t→\t→\t→\t→\taf kalenderen."
2526
-
2527
- #: app/model/settings.php:884
2528
- msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2529
- msgstr "<strong>Ignorer <tt>in_the_loop()</tt>-tjek </strong> som beskytter mod duplikerede visninger af kalenderen"
2530
-
2531
- #: app/model/settings.php:887
2532
- msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2533
- msgstr "Prøv at aktivere denne indstilling hvis din kalender ikke vises på kalendersiden. Den er nødvendig for kompatibilitet med et mindre antal temaer som kalder <tt>the_content()</tt> udenfor The Loop. Ellers lad den være umarkeret."
2534
-
2535
- #: app/model/settings.php:899
2536
- msgid "Disable <strong>gzip</strong> compression."
2537
- msgstr "Deaktiver <strong>gzip</strong>-komprimering."
2538
-
2539
- #: app/model/settings.php:902
2540
- msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2541
- msgstr "Benyt denne indstilling hvis kalenderen ikke svarer. <a href=\"http://support.time.ly/disable-gzip-compression/\">Læs mere</a> om emnet her. (Fra version 2.1 og frem er gzip som standard deaktiveret for maksimal kompatibilitet.)"
2542
-
2543
- #: app/model/settings.php:914
2544
- msgid "Use frontend rendering."
2545
- msgstr "Benyt rendering fra frontend."
2546
-
2547
- #: app/model/settings.php:917
2548
- msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
- msgstr "Opretter kalendervisninger på klientside i stedet for på serveren; det kan forbedre hastigheden."
2550
-
2551
- #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
- msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
- msgstr "For at rydde hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> og klik på det valgte."
2554
-
2555
- #: app/model/settings.php:508
2556
- msgid "Default calendar start date (optional)"
2557
- msgstr "Standard startdato for kalender (valgfri)"
2558
-
2559
- #: app/model/settings.php:519
2560
- msgid "Agenda pages show at most"
2561
- msgstr "Listesider viser højst"
2562
-
2563
- #: app/model/settings.php:532
2564
- msgid "Week/Day view starts at"
2565
- msgstr "Uge- /Dagsvisning begynder på"
2566
-
2567
- #: app/model/settings.php:545
2568
- msgid "Week/Day view ends at"
2569
- msgstr "Uge-/Dagsvisning ender på"
2570
-
2571
- #: app/model/settings.php:558
2572
- msgid "<strong>Word-wrap event stubs</strong> in Month view"
2573
- msgstr "<strong>Orddeling begivenhed stub</strong> i Månedsvisning"
2574
-
2575
- #: app/model/settings.php:561
2576
- msgid "Only applies to events that span a single day."
2577
- msgstr "Gælder kun begivenheder der strækker sig over en enkelt dag."
2578
-
2579
- #: app/model/settings.php:573
2580
- msgid ""
2581
- "In <span class=\"ai1ec-tooltip-toggle\"\n"
2582
- "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2583
- "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2584
- "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2585
- "\t\t\t\t\t\tfrom last day shown</strong>"
2586
- msgstr ""
2587
- "I <span class=\"ai1ec-tooltip-toggle\"\n"
2588
- "→\t→\t→\t→\t→\t→\tdata-original-title=\"Disse inkluderer listevisning,\n"
2589
- "→\t→\t→\t→\t→\t→\tKommende begivenheder-widget og nogle udvidede visninger.\">\n"
2590
- "→\t→\t→\t→\t→\t→\tListevisninger</span>, <strong>inkluder alle begivenheder\n"
2591
- "→\t→\t→\t→\t→\t→\tfra sidst viste dag</strong>"
2592
-
2593
- #: app/model/settings.php:589
2594
- msgid "Keep all events <strong>expanded</strong> in Agenda view"
2595
- msgstr "Hold alle begivenheder <strong>udvidet</strong> i listevisning"
2596
-
2597
- #: app/model/settings.php:601
2598
- msgid "<strong>Show year</strong> in calendar date labels"
2599
- msgstr "<strong>Vis år</strong> i kalenderens datomærkater"
2600
-
2601
- #: app/model/settings.php:613
2602
- msgid "<strong>Show location in event titles</strong> in calendar views"
2603
- msgstr "<strong>Vis sted i titlen</strong> i kalender billedet"
2604
-
2605
- #: app/model/settings.php:625
2606
- msgid "<strong>Exclude</strong> events from search results"
2607
- msgstr "<strong>Udelad</strong> begivenheder fra søgeresultater"
2608
-
2609
- #: app/model/settings.php:637
2610
- msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2611
- msgstr "Skjul <strong>Abonner</strong>/<strong>Tilføj i kalender</strong>-knapper i kalenderen og visning af enkeltbegivenheder"
2612
-
2613
- #: app/model/settings.php:649
2614
- msgid "Hide <strong>Get a Timely Calendar</strong> button"
2615
- msgstr "Skjul <strong>Get a Timely Calendar</strong> knappen"
2616
-
2617
- #: app/model/settings.php:661
2618
- msgid " Hide <strong>Google Maps</strong> until clicked"
2619
- msgstr "Skjul <strong>Google Maps</strong> indtil der klikkes"
2620
-
2621
- #: app/model/settings.php:673
2622
- msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2623
- msgstr "<strong>Fastgør sorteringsmenu</strong> til toppen af vinduet når dette ellers vil forsvinde ved scrolling"
2624
-
2625
- #: app/model/settings.php:676
2626
- msgid "Only applies to first visible calendar found on the page."
2627
- msgstr "Gælder kun den første synlige kalender på siden."
2628
-
2629
- #: app/model/settings.php:688
2630
- msgid "Offset affixed filter bar vertically by"
2631
- msgstr "Forskyd den fastgjorte sorteringslinje lodret med"
2632
-
2633
- #: app/model/settings.php:703
2634
- msgid "Wide screens only (&#8805; 1200px)"
2635
- msgstr "Kun widescreens (&#8805; 1200px)"
2636
-
2637
- #: app/model/settings.php:718
2638
- msgid "Tablets only (< 980px)"
2639
- msgstr "Kun tablets (< 980px)"
2640
-
2641
- #: app/model/settings.php:733
2642
- msgid "Phones only (< 768px)"
2643
- msgstr "Kun telefoner (< 768px)"
2644
-
2645
- #: app/model/api.php:456
2646
- msgid "Not available"
2647
- msgstr ""
2648
-
2649
- #: app/model/api.php:659
2650
- msgid "%s.<br/>Detail: %s."
2651
- msgstr ""
2652
-
2653
- #: app/model/api.php:664
2654
- msgid "API URL: %s.<br/>Detail: %s - %s"
2655
- msgstr ""
2656
-
2657
- #: app/model/api.php:672
2658
- msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2659
- msgstr ""
2660
-
2661
- #: app/model/api.php:679
2662
- msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2663
- msgstr ""
2664
-
2665
- #: app/model/event/parent.php:186
2666
- msgid "Edit &#8220;%s&#8221;"
2667
- msgstr "Rediger &#8220;%s&#8221;"
2668
-
2669
- #: app/model/event/parent.php:193
2670
- msgid "Base Event"
2671
- msgstr "Basis begivenhed"
2672
-
2673
- #: app/model/review.php:169
2674
- msgid "Feedback provided by user"
2675
- msgstr ""
2676
-
2677
- #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2678
- msgid "Name"
2679
- msgstr "Navn"
2680
-
2681
- #: app/model/review.php:173
2682
- msgid "E-mail"
2683
- msgstr ""
2684
-
2685
- #: app/model/review.php:175
2686
- msgid "Site URL"
2687
- msgstr ""
2688
-
2689
- #: app/model/review.php:177
2690
- msgid "Message"
2691
- msgstr ""
2692
-
2693
- #: app/model/settings.php:401
2694
- #: lib/html/element/setting/calendar-page-selector.php:50
2695
- msgid "Calendar page"
2696
- msgstr "Kalenderside"
2697
-
2698
- #: app/model/settings.php:411
2699
- msgid "Week starts on"
2700
- msgstr "Ugen begynder på en"
2701
-
2702
- #: app/model/settings.php:424
2703
- msgid "Available views"
2704
- msgstr "Mulige visninger"
2705
-
2706
- #: app/model/settings.php:432
2707
- msgid "Agenda"
2708
- msgid_plural "Agenda"
2709
- msgstr[0] "Liste"
2710
- msgstr[1] "Lister"
2711
-
2712
- #: app/model/settings.php:443
2713
- msgid "Day"
2714
- msgid_plural "Day"
2715
- msgstr[0] "Dag"
2716
- msgstr[1] "Dage"
2717
-
2718
- #: app/model/settings.php:454
2719
- msgid "Month"
2720
- msgid_plural "Month"
2721
- msgstr[0] "Måned"
2722
- msgstr[1] "Måneder"
2723
-
2724
- #: app/model/settings.php:465
2725
- msgid "Week"
2726
- msgid_plural "Week"
2727
- msgstr[0] "Uge"
2728
- msgstr[1] "Uger"
2729
-
2730
- #: app/model/settings.php:479
2731
- msgid "Timezone"
2732
- msgstr "Tidszone"
2733
-
2734
- #: app/model/settings.php:492
2735
- msgid "Preselected calendar filters"
2736
- msgstr "Forhåndsvalgte kalendersorteringer"
2737
-
2738
- #: app/controller/javascript.php:509
2739
- msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2740
- msgstr "Noget gik galt under opsamling af begivenheder.<br>Status for forespørgslen er: %STATUS% <br>Fejlmeddelelsen var: %ERROR%"
2741
-
2742
- #: app/controller/javascript.php:516
2743
- msgid "The end date can't be earlier than the start date."
2744
- msgstr "Slutdato kan ikke være tidligere end startdato."
2745
-
2746
- #: app/controller/javascript.php:517
2747
- msgid "For week and day view, you must select an interval of at least 6 hours."
2748
- msgstr "Til uge- eller dagvisning skal du vælge et interval på mindst 6 timer."
2749
-
2750
- #: app/model/api.php:40
2751
- msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2752
- msgstr ""
2753
-
2754
- #: app/model/api.php:41
2755
- msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2756
- msgstr ""
2757
-
2758
- #: app/model/api.php:42
2759
- msgid "We were unable to Sign you Up for Time.ly Ticketing"
2760
- msgstr ""
2761
-
2762
- #: app/model/api.php:43
2763
- msgid "We were unable to Sign you In for Time.ly Ticketing"
2764
- msgstr ""
2765
-
2766
- #: app/model/api.php:44
2767
- msgid "We were unable to create the Event on Time.ly Ticketing"
2768
- msgstr ""
2769
-
2770
- #: app/model/api.php:45
2771
- msgid "We were unable to update the Event on Time.ly Ticketing"
2772
- msgstr ""
2773
-
2774
- #: app/model/api.php:46
2775
- msgid "The event has the option Tickets selected but any ticket was added."
2776
- msgstr ""
2777
-
2778
- #: app/model/api.php:47
2779
- msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2780
- msgstr ""
2781
-
2782
- #: app/model/api.php:48
2783
- msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2784
- msgstr ""
2785
-
2786
- #: app/model/api.php:49
2787
- msgid "Payment preferences were not saved."
2788
- msgstr ""
2789
-
2790
- #: app/model/api.php:50
2791
- msgid "Payment preferences were saved."
2792
- msgstr ""
2793
-
2794
- #: app/model/api.php:51
2795
- msgid "Event not found inside the database."
2796
- msgstr ""
2797
-
2798
- #: app/model/api.php:52
2799
- msgid "We were unable to get the Sales information from Time.ly Ticketing"
2800
- msgstr ""
2801
-
2802
- #: app/model/api.php:446
2803
- msgid "Past Event"
2804
- msgstr ""
2805
-
2806
- #: app/model/api.php:448
2807
- msgid "Event closed"
2808
- msgstr ""
2809
-
2810
- #: app/model/api.php:450
2811
- msgid "Not available yet"
2812
- msgstr ""
2813
-
2814
- #: app/model/api.php:452
2815
- msgid "Sale closed"
2816
- msgstr ""
2817
-
2818
- #: app/model/api.php:454
2819
- msgid "Sold out"
2820
- msgstr ""
2821
-
2822
- #: app/controller/javascript.php:484
2823
- msgid "Report"
2824
- msgstr ""
2825
-
2826
- #: app/controller/javascript.php:485
2827
- msgid "Sale dates"
2828
- msgstr ""
2829
-
2830
- #: app/controller/javascript.php:486
2831
- msgid "Limits"
2832
- msgstr ""
2833
-
2834
- #: app/controller/javascript.php:487
2835
- msgid "Actions"
2836
- msgstr ""
2837
-
2838
- #: app/controller/javascript.php:488
2839
- msgid "Sold:"
2840
- msgstr ""
2841
-
2842
- #: app/controller/javascript.php:489
2843
- msgid "Left:"
2844
- msgstr ""
2845
-
2846
- #: app/controller/javascript.php:490
2847
- msgid "Start:"
2848
- msgstr ""
2849
-
2850
- #: app/controller/javascript.php:491
2851
- msgid "End:"
2852
- msgstr ""
2853
-
2854
- #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2855
- msgid "Min:"
2856
- msgstr ""
2857
-
2858
- #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2859
- msgid "Max:"
2860
- msgstr ""
2861
-
2862
- #: app/controller/javascript.php:494
2863
- msgid "Attendees"
2864
- msgstr ""
2865
-
2866
- #: app/controller/javascript.php:495
2867
- msgid "Hide Attendees"
2868
- msgstr ""
2869
-
2870
- #: app/controller/javascript.php:496
2871
- msgid "Attendees List"
2872
- msgstr ""
2873
-
2874
- #: app/controller/javascript.php:497
2875
- msgid "Guest Name"
2876
- msgstr ""
2877
-
2878
- #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2879
- msgid "Status"
2880
- msgstr ""
2881
-
2882
- #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2883
- #: app/view/event/ticket.php:71
2884
- msgid "Email"
2885
- msgstr "E-mail"
2886
-
2887
- #: app/controller/javascript.php:500
2888
- msgid "No attendees for this ticket type."
2889
- msgstr ""
2890
-
2891
- #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2892
- #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2893
- msgid "Edit"
2894
- msgstr "Rediger"
2895
-
2896
- #: app/controller/javascript.php:502
2897
- msgid "Code"
2898
- msgstr ""
2899
-
2900
- #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2901
- msgid "Unlimited"
2902
- msgstr ""
2903
-
2904
- #: app/controller/javascript.php:506
2905
- msgid "Your message has been sent. Thank you for your feedback."
2906
- msgstr ""
2907
-
2908
- #: app/controller/javascript.php:507
2909
- msgid "Your message has not been sent. Please try again or contact us."
2910
- msgstr ""
2911
-
2912
- #: app/controller/javascript.php:405
2913
- msgid "Please enter a valid iCalendar URL."
2914
- msgstr "Indsæt venligst en gældende iCalendar webadresse (URL)."
2915
-
2916
- #: app/controller/javascript.php:408
2917
- msgid "Please enter a valid email address."
2918
- msgstr "Angiv venligst en gyldig e-mailadresse."
2919
-
2920
- #: app/controller/javascript.php:410
2921
- msgid "Choose Image"
2922
- msgstr "Vælg billede"
2923
-
2924
- #: app/controller/javascript.php:413
2925
- msgid "The value you have entered is not a valid CSS length."
2926
- msgstr "Den værdi du har angivet, har ikke en gyldig længde i CSS"
2927
-
2928
- #: app/controller/javascript.php:416
2929
- msgid "Are you sure you want to reset your theme options to their default values?"
2930
- msgstr "Er du sikker på at du vil sætte dine temaindstillinger tilbage til standardværdier?"
2931
-
2932
- #: app/controller/javascript.php:419
2933
- msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2934
- msgstr "Angiv en gyldig længdegrad. En gyldig længdegrad ligger mellem +90 og -90."
2935
-
2936
- #: app/controller/javascript.php:422
2937
- msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2938
- msgstr "Angiv en gyldig breddegrad. En gyldig breddegrad ligger mellem +180 og -180."
2939
-
2940
- #: app/controller/javascript.php:425
2941
- msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2942
- msgstr "Når checkboksen \"Angiv koordinater\" er markeret, er \"længdegrad\" et påkrævet felt."
2943
-
2944
- #: app/controller/javascript.php:428
2945
- msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2946
- msgstr "Når checkboksen \"Angiv koordinater\" er markeret, er \"breddegrad\" et påkrævet felt."
2947
-
2948
- #: app/controller/javascript.php:431
2949
- msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2950
- msgstr ""
2951
-
2952
- #: app/controller/javascript.php:434
2953
- msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2954
- msgstr "Den webadresse du har angivet under <b>Begivenhedens pris og billetter</b> &gt; <b>Køb billetter webadresse</b>, ser ud til at være ugyldig."
2955
-
2956
- #: app/controller/javascript.php:437
2957
- msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2958
- msgstr "Husk at webadresser skal starte med enten \"http://\" eller \"https://\"."
2959
-
2960
- #: app/controller/javascript.php:440
2961
- msgid "Loading&hellip;"
2962
- msgstr "Henter&hellip;"
2963
-
2964
- #: app/controller/javascript.php:443
2965
- msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2966
- msgstr ""
2967
-
2968
- #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
- msgid "Preview:"
2970
- msgstr "Forhåndsvisning:"
2971
-
2972
- #: app/controller/javascript.php:474
2973
- msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2974
- msgstr "Henter forhåndsvisning&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2975
-
2976
- #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2977
- msgid "Ticketing Details"
2978
- msgstr ""
2979
-
2980
- #: app/controller/javascript.php:480
2981
- msgid "Hide Ticketing Details"
2982
- msgstr ""
2983
-
2984
- #: app/controller/javascript.php:481
2985
- msgid "Loading tickets details..."
2986
- msgstr ""
2987
-
2988
- #: app/controller/javascript.php:482
2989
- msgid "Type and price"
2990
- msgstr ""
2991
-
2992
- #: app/controller/javascript.php:483
2993
- msgid "Info"
2994
- msgstr ""
2995
-
2996
- #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2997
- #: app/view/admin/add-ons.php:27
2998
- msgid "Add-ons"
2999
- msgstr "Tilføjelser"
3000
-
3001
- #: app/controller/front.php:343
3002
- msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3003
- msgstr "Dit aktive kalendertema kunne ikke forberedes. Standardtemaet er blevet aktiveret i stedet. Besøg %s for at prøve at genaktivere dit tema manuelt."
3004
-
3005
- #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3006
- #: app/view/admin/theme-switching.php:55
3007
- msgid "Calendar Themes"
3008
- msgstr "Kalendertemaer"
3009
-
3010
- #: app/controller/front.php:990
3011
- msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3012
- msgstr "Det ser ud til at din database er fejlbehæftet. Sikkert fordi tidligere opdateringer er gået galt. Genskab All-In-One Event Calendar-tabeller fra en backup og prøv igen. <br>Følgende fejl blev fundet:<br>%s"
3013
-
3014
- #: app/controller/javascript-widget.php:48
3015
- msgid "You must choose the Calendar page before using the Super Widget"
3016
- msgstr "Du skal vælge kalendersiden før du kan bruge Super Widget"
3017
-
3018
- #: app/controller/javascript.php:402
3019
- msgid "This feed is already being imported."
3020
- msgstr "Dette feed bliver allerede importeret."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/all-in-one-event-calendar-da_DK.mo CHANGED
Binary file
language/all-in-one-event-calendar-da_DK.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:45:37+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -328,7 +328,7 @@ msgstr "Tilføj nyt abonnement"
328
 
329
  #: public/admin/plugins/ics/display_feeds.php:96
330
  msgid "Update subscription"
331
- msgstr ""
332
 
333
  #: public/admin/row_custom.php:3
334
  msgid "Custom dates:"
@@ -622,23 +622,23 @@ msgstr "Timelys All-in-One Event Calendar er en <br />revolutionerende ny måde
622
 
623
  #: public/admin/box_event_cost.php:228
624
  msgid "Status:"
625
- msgstr ""
626
 
627
  #: public/admin/box_event_cost.php:235
628
  msgid "Open"
629
- msgstr ""
630
 
631
  #: public/admin/box_event_cost.php:239
632
  msgid "Closed"
633
- msgstr ""
634
 
635
  #: public/admin/box_event_cost.php:254
636
  msgid "Add New Ticket Type"
637
- msgstr ""
638
 
639
  #: public/admin/box_event_cost.php:274
640
  msgid "Tickets URL:"
641
- msgstr ""
642
 
643
  #: public/admin/box_event_location.php:6
644
  msgid "Event location details"
@@ -714,7 +714,7 @@ msgstr "Telefon:"
714
 
715
  #: public/admin/box_event_contact.php:56
716
  msgid "Website URL:"
717
- msgstr ""
718
 
719
  #: public/admin/box_event_cost.php:6
720
  msgid "Event cost and Tickets"
@@ -722,7 +722,7 @@ msgstr "Begivenhedens pris og billetter"
722
 
723
  #: public/admin/box_event_cost.php:20
724
  msgid "Ticket options not available - event imported from external calendar."
725
- msgstr ""
726
 
727
  #: public/admin/box_event_cost.php:28
728
  msgid "Free event"
@@ -730,23 +730,23 @@ msgstr "Gratis begivenhed"
730
 
731
  #: public/admin/box_event_cost.php:41
732
  msgid "External Tickets URL"
733
- msgstr ""
734
 
735
  #: public/admin/box_event_cost.php:52
736
  msgid "Ticketing allows you to sell tickets directly to the users."
737
- msgstr ""
738
 
739
  #: public/admin/box_event_cost.php:55
740
  msgid "Sign Up for Timely Network"
741
- msgstr ""
742
 
743
  #: public/admin/box_event_cost.php:80
744
  msgid "Remove Ticket Type"
745
- msgstr ""
746
 
747
  #: public/admin/box_event_cost.php:101
748
  msgid "Ex.: Regular Ticket"
749
- msgstr ""
750
 
751
  #: public/admin/box_event_cost.php:105
752
  msgid "Description:"
@@ -754,69 +754,69 @@ msgstr "Beskrivelse:"
754
 
755
  #: public/admin/box_event_cost.php:111
756
  msgid "(Optional)"
757
- msgstr ""
758
 
759
  #: public/admin/box_event_cost.php:115
760
  msgid "Price:"
761
- msgstr ""
762
 
763
  #: public/admin/box_event_cost.php:124
764
  msgid "USD"
765
- msgstr ""
766
 
767
  #: public/admin/box_event_cost.php:128
768
  msgid "Limits:"
769
- msgstr ""
770
 
771
  #: public/admin/box_event_cost.php:131
772
  msgid "This fields are required."
773
- msgstr ""
774
 
775
  #: public/admin/box_event_cost.php:156
776
  msgid "Quantity:"
777
- msgstr ""
778
 
779
  #: public/admin/box_event_cost.php:180
780
  msgid "Available:"
781
- msgstr ""
782
 
783
  #: public/admin/box_event_cost.php:185
784
  msgid "Immediately"
785
- msgstr ""
786
 
787
  #: public/admin/box_event_cost.php:190
788
  msgid "From:"
789
- msgstr ""
790
 
791
  #: public/admin/box_event_cost.php:207
792
  msgid "Till:"
793
- msgstr ""
794
 
795
  #: public/admin/box_ask_customer_review.php:42
796
  #: public/admin/box_ask_customer_review.php:75
797
  msgid "No, thanks"
798
- msgstr ""
799
 
800
  #: public/admin/box_ask_customer_review.php:50
801
  #: public/admin/box_ask_customer_review.php:84
802
  msgid "Ok, sure!"
803
- msgstr ""
804
 
805
  #: public/admin/box_ask_customer_review.php:66
806
  msgid "Would you mind giving us some feedback?"
807
- msgstr ""
808
 
809
  #: public/admin/box_ask_customer_review.php:101
810
  msgid "Please provide some feedback"
811
- msgstr ""
812
 
813
  #: public/admin/box_ask_customer_review.php:108
814
  msgid "Message:"
815
- msgstr ""
816
 
817
  #: public/admin/box_ask_customer_review.php:121
818
  msgid "Name:"
819
- msgstr ""
820
 
821
  #: public/admin/box_ask_customer_review.php:136
822
  #: public/admin/box_event_contact.php:43
@@ -825,31 +825,31 @@ msgstr "E-mail:"
825
 
826
  #: public/admin/box_ask_customer_review.php:143
827
  msgid "E-mail is invalid."
828
- msgstr ""
829
 
830
  #: public/admin/box_ask_customer_review.php:154
831
  msgid "Site URL:"
832
- msgstr ""
833
 
834
  #: public/admin/box_ask_customer_review.php:161
835
  msgid "Site URL is invalid."
836
- msgstr ""
837
 
838
  #: public/admin/box_ask_customer_review.php:173
839
  msgid "Thank you for being our customer,"
840
- msgstr ""
841
 
842
  #: public/admin/box_ask_customer_review.php:174
843
  msgid "Aristotel Dascal, VP of Product, Time.ly"
844
- msgstr ""
845
 
846
  #: public/admin/box_ask_customer_review.php:180
847
  msgid "Sending..."
848
- msgstr ""
849
 
850
  #: public/admin/box_ask_customer_review.php:181
851
  msgid "Send Message"
852
- msgstr ""
853
 
854
  #: public/admin/box_event_children.php:12
855
  msgid "Base recurrence event"
@@ -945,19 +945,19 @@ msgstr "Skjul denne widget på kalendersiden"
945
 
946
  #: public/admin/box_ask_customer_review.php:5
947
  msgid "Enjoying All-in-One Event Calendar?"
948
- msgstr ""
949
 
950
  #: public/admin/box_ask_customer_review.php:13
951
  msgid "Not really"
952
- msgstr ""
953
 
954
  #: public/admin/box_ask_customer_review.php:20
955
  msgid "Yes!"
956
- msgstr ""
957
 
958
  #: public/admin/box_ask_customer_review.php:33
959
  msgid "How about a rating on the Wordpress?"
960
- msgstr ""
961
 
962
  #: lib/recurrence/rule.php:397
963
  msgid "Every %d weeks"
@@ -1230,7 +1230,7 @@ msgstr "Det er i øjeblikket ikke muligt at indlejre mere end én kalender på d
1230
 
1231
  #: lib/import-export/ics.php:831
1232
  msgid "Tickets: "
1233
- msgstr ""
1234
 
1235
  #: lib/html/element/setting/html.php:41
1236
  msgid "Day view:"
@@ -1502,7 +1502,7 @@ msgstr "Fjern begivenheder"
1502
 
1503
  #: lib/calendar-feed/ics.php:519
1504
  msgid "Oh, submission was not accepted."
1505
- msgstr ""
1506
 
1507
  #: lib/calendar-feed/ics.php:699
1508
  msgid "Deleted %d events"
@@ -1571,7 +1571,7 @@ msgstr "Du har aktiveret rendering fra frontend og benytter samtidig eget kalend
1571
 
1572
  #: app/view/event/single.php:123
1573
  msgid "Tickets:"
1574
- msgstr ""
1575
 
1576
  #: app/view/event/single.php:124
1577
  msgid "Free"
@@ -1621,11 +1621,11 @@ msgstr ", og"
1621
 
1622
  #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
  msgid "Excludes: "
1624
- msgstr ""
1625
 
1626
  #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
  msgid "Repeats"
1628
- msgstr ""
1629
 
1630
  #: lib/calendar-feed/ics.php:38
1631
  msgid "ICS"
@@ -1667,7 +1667,7 @@ msgstr "Hvor:"
1667
 
1668
  #: app/view/event/content.php:125
1669
  msgid "Calendar"
1670
- msgstr ""
1671
 
1672
  #: app/view/event/content.php:126
1673
  msgid "View all events"
@@ -1918,19 +1918,19 @@ msgstr "Læs mere"
1918
 
1919
  #: app/view/admin/tickets.php:86
1920
  msgid "Sales"
1921
- msgstr ""
1922
 
1923
  #: app/view/admin/tickets.php:87
1924
  msgid "How do you want the tickets revenue to be sent to you?"
1925
- msgstr ""
1926
 
1927
  #: app/view/admin/tickets.php:88
1928
  msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
- msgstr ""
1930
 
1931
  #: app/view/admin/tickets.php:91
1932
  msgid "Cheque"
1933
- msgstr ""
1934
 
1935
  #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
  msgid "Paypal"
@@ -1938,19 +1938,19 @@ msgstr "Paypal"
1938
 
1939
  #: app/view/admin/tickets.php:94
1940
  msgid "Save Changes"
1941
- msgstr ""
1942
 
1943
  #: app/view/admin/tickets.php:95
1944
  msgid "Date"
1945
- msgstr ""
1946
 
1947
  #: app/view/admin/tickets.php:96
1948
  msgid "Event"
1949
- msgstr ""
1950
 
1951
  #: app/view/admin/tickets.php:97
1952
  msgid "Purchaser"
1953
- msgstr ""
1954
 
1955
  #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
  #: public/admin/box_event_cost.php:35
@@ -1959,11 +1959,11 @@ msgstr "Billetter"
1959
 
1960
  #: app/view/admin/tickets.php:101
1961
  msgid "Total"
1962
- msgstr ""
1963
 
1964
  #: app/view/admin/tickets.php:102
1965
  msgid "Sign Out"
1966
- msgstr ""
1967
 
1968
  #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
  #: app/view/admin/widget-creator.php:47
@@ -2005,19 +2005,19 @@ msgstr "Kalenderen kunne ikke oprette %s visning og er gået tilbage til Listevi
2005
 
2006
  #: app/view/admin/settings.php:193
2007
  msgid "Phone Number:"
2008
- msgstr ""
2009
 
2010
  #: app/view/admin/settings.php:194
2011
  msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
- msgstr ""
2013
 
2014
  #: app/view/admin/settings.php:197
2015
  msgid "Sign Up"
2016
- msgstr ""
2017
 
2018
  #: app/view/admin/settings.php:198
2019
  msgid "Sign In"
2020
- msgstr ""
2021
 
2022
  #: app/view/admin/settings.php:212
2023
  msgid "Save Settings"
@@ -2082,15 +2082,15 @@ msgstr "All-in-One Event Calendar: Temaer"
2082
 
2083
  #: app/view/admin/tickets.php:36
2084
  msgid "Ticketing"
2085
- msgstr ""
2086
 
2087
  #: app/view/admin/tickets.php:37
2088
  msgid "Ticketing<sup>beta</sup>"
2089
- msgstr ""
2090
 
2091
  #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
  msgid "Time.ly Ticketing<sup>beta</sup>"
2093
- msgstr ""
2094
 
2095
  #: app/view/admin/settings.php:98
2096
  msgctxt "meta box"
@@ -2131,7 +2131,7 @@ msgstr "Cache-rapport"
2131
 
2132
  #: app/view/admin/settings.php:171
2133
  msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
- msgstr ""
2135
 
2136
  #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
  #: public/admin/box_ask_customer_review.php:112
@@ -2140,7 +2140,7 @@ msgstr ""
2140
  #: public/admin/box_ask_customer_review.php:158
2141
  #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
  msgid "This field is required."
2143
- msgstr ""
2144
 
2145
  #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
  msgid "Register"
@@ -2148,27 +2148,27 @@ msgstr "Registrer"
2148
 
2149
  #: app/view/admin/settings.php:184
2150
  msgid "Sign in"
2151
- msgstr ""
2152
 
2153
  #: app/view/admin/settings.php:185
2154
  msgid "You are successfully signed in to <b>Timely Network</b>."
2155
- msgstr ""
2156
 
2157
  #: app/view/admin/settings.php:186
2158
  msgid "Sign out"
2159
- msgstr ""
2160
 
2161
  #: app/view/admin/settings.php:187
2162
  msgid "Hide form"
2163
- msgstr ""
2164
 
2165
  #: app/view/admin/settings.php:188
2166
  msgid "Show form"
2167
- msgstr ""
2168
 
2169
  #: app/view/admin/settings.php:189
2170
  msgid "Full Name:"
2171
- msgstr ""
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
@@ -2176,11 +2176,11 @@ msgstr "Email:"
2176
 
2177
  #: app/view/admin/settings.php:191
2178
  msgid "Password:"
2179
- msgstr ""
2180
 
2181
  #: app/view/admin/settings.php:192
2182
  msgid "Confirm Password:"
2183
- msgstr ""
2184
 
2185
  #: app/view/admin/get-repeat-box.php:483
2186
  msgid "fourth"
@@ -2236,7 +2236,7 @@ msgstr "<a href=\"%s\">Indstillinger</a>"
2236
 
2237
  #: app/view/admin/nav.php:28
2238
  msgid "<a href=\"%s\">Check for updates</a>"
2239
- msgstr ""
2240
 
2241
  #: app/view/admin/organize.php:100
2242
  msgid "Organize Events"
@@ -2270,7 +2270,7 @@ msgstr "tredie"
2270
 
2271
  #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
  msgid "Import Feeds"
2273
- msgstr ""
2274
 
2275
  #: app/view/admin/calendar-feeds.php:48
2276
  msgctxt "meta box"
@@ -2279,7 +2279,7 @@ msgstr "Feed-abonnementer"
2279
 
2280
  #: app/view/admin/calendar-feeds.php:65
2281
  msgid "All-in-One Event Calendar: Import Feeds"
2282
- msgstr ""
2283
 
2284
  #: app/view/admin/event-category.php:30
2285
  msgid "Color"
@@ -2390,11 +2390,11 @@ msgstr "Caching af skabeloner forbedrer ydeevnen"
2390
 
2391
  #: app/model/settings.php:1001
2392
  msgid "Display events in <strong>calendar time zone</strong>"
2393
- msgstr ""
2394
 
2395
  #: app/model/settings.php:1004
2396
  msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
- msgstr ""
2398
 
2399
  #: app/view/admin/add-new-event.php:26
2400
  msgid "Event Details"
@@ -2438,7 +2438,7 @@ msgstr "Dato/tid for begivenhed"
2438
 
2439
  #: app/view/admin/all-events.php:22
2440
  msgid "Ticket Types"
2441
- msgstr ""
2442
 
2443
  #: app/view/admin/all-events.php:134
2444
  msgid "Show All "
@@ -2446,7 +2446,7 @@ msgstr "Vis alle "
2446
 
2447
  #: app/view/admin/all-events.php:147
2448
  msgid "Show All Authors"
2449
- msgstr ""
2450
 
2451
  #: app/model/settings.php:746
2452
  msgid "Strict compatibility content filtering"
@@ -2644,23 +2644,23 @@ msgstr "Kun telefoner (< 768px)"
2644
 
2645
  #: app/model/api.php:456
2646
  msgid "Not available"
2647
- msgstr ""
2648
 
2649
  #: app/model/api.php:659
2650
  msgid "%s.<br/>Detail: %s."
2651
- msgstr ""
2652
 
2653
  #: app/model/api.php:664
2654
  msgid "API URL: %s.<br/>Detail: %s - %s"
2655
- msgstr ""
2656
 
2657
  #: app/model/api.php:672
2658
  msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2659
- msgstr ""
2660
 
2661
  #: app/model/api.php:679
2662
  msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2663
- msgstr ""
2664
 
2665
  #: app/model/event/parent.php:186
2666
  msgid "Edit &#8220;%s&#8221;"
@@ -2672,7 +2672,7 @@ msgstr "Basis begivenhed"
2672
 
2673
  #: app/model/review.php:169
2674
  msgid "Feedback provided by user"
2675
- msgstr ""
2676
 
2677
  #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2678
  msgid "Name"
@@ -2680,15 +2680,15 @@ msgstr "Navn"
2680
 
2681
  #: app/model/review.php:173
2682
  msgid "E-mail"
2683
- msgstr ""
2684
 
2685
  #: app/model/review.php:175
2686
  msgid "Site URL"
2687
- msgstr ""
2688
 
2689
  #: app/model/review.php:177
2690
  msgid "Message"
2691
- msgstr ""
2692
 
2693
  #: app/model/settings.php:401
2694
  #: lib/html/element/setting/calendar-page-selector.php:50
@@ -2749,135 +2749,135 @@ msgstr "Til uge- eller dagvisning skal du vælge et interval på mindst 6 timer.
2749
 
2750
  #: app/model/api.php:40
2751
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2752
- msgstr ""
2753
 
2754
  #: app/model/api.php:41
2755
  msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2756
- msgstr ""
2757
 
2758
  #: app/model/api.php:42
2759
  msgid "We were unable to Sign you Up for Time.ly Ticketing"
2760
- msgstr ""
2761
 
2762
  #: app/model/api.php:43
2763
  msgid "We were unable to Sign you In for Time.ly Ticketing"
2764
- msgstr ""
2765
 
2766
  #: app/model/api.php:44
2767
  msgid "We were unable to create the Event on Time.ly Ticketing"
2768
- msgstr ""
2769
 
2770
  #: app/model/api.php:45
2771
  msgid "We were unable to update the Event on Time.ly Ticketing"
2772
- msgstr ""
2773
 
2774
  #: app/model/api.php:46
2775
  msgid "The event has the option Tickets selected but any ticket was added."
2776
- msgstr ""
2777
 
2778
  #: app/model/api.php:47
2779
  msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2780
- msgstr ""
2781
 
2782
  #: app/model/api.php:48
2783
  msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2784
- msgstr ""
2785
 
2786
  #: app/model/api.php:49
2787
  msgid "Payment preferences were not saved."
2788
- msgstr ""
2789
 
2790
  #: app/model/api.php:50
2791
  msgid "Payment preferences were saved."
2792
- msgstr ""
2793
 
2794
  #: app/model/api.php:51
2795
  msgid "Event not found inside the database."
2796
- msgstr ""
2797
 
2798
  #: app/model/api.php:52
2799
  msgid "We were unable to get the Sales information from Time.ly Ticketing"
2800
- msgstr ""
2801
 
2802
  #: app/model/api.php:446
2803
  msgid "Past Event"
2804
- msgstr ""
2805
 
2806
  #: app/model/api.php:448
2807
  msgid "Event closed"
2808
- msgstr ""
2809
 
2810
  #: app/model/api.php:450
2811
  msgid "Not available yet"
2812
- msgstr ""
2813
 
2814
  #: app/model/api.php:452
2815
  msgid "Sale closed"
2816
- msgstr ""
2817
 
2818
  #: app/model/api.php:454
2819
  msgid "Sold out"
2820
- msgstr ""
2821
 
2822
  #: app/controller/javascript.php:484
2823
  msgid "Report"
2824
- msgstr ""
2825
 
2826
  #: app/controller/javascript.php:485
2827
  msgid "Sale dates"
2828
- msgstr ""
2829
 
2830
  #: app/controller/javascript.php:486
2831
  msgid "Limits"
2832
- msgstr ""
2833
 
2834
  #: app/controller/javascript.php:487
2835
  msgid "Actions"
2836
- msgstr ""
2837
 
2838
  #: app/controller/javascript.php:488
2839
  msgid "Sold:"
2840
- msgstr ""
2841
 
2842
  #: app/controller/javascript.php:489
2843
  msgid "Left:"
2844
- msgstr ""
2845
 
2846
  #: app/controller/javascript.php:490
2847
  msgid "Start:"
2848
- msgstr ""
2849
 
2850
  #: app/controller/javascript.php:491
2851
  msgid "End:"
2852
- msgstr ""
2853
 
2854
  #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2855
  msgid "Min:"
2856
- msgstr ""
2857
 
2858
  #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2859
  msgid "Max:"
2860
- msgstr ""
2861
 
2862
  #: app/controller/javascript.php:494
2863
  msgid "Attendees"
2864
- msgstr ""
2865
 
2866
  #: app/controller/javascript.php:495
2867
  msgid "Hide Attendees"
2868
- msgstr ""
2869
 
2870
  #: app/controller/javascript.php:496
2871
  msgid "Attendees List"
2872
- msgstr ""
2873
 
2874
  #: app/controller/javascript.php:497
2875
  msgid "Guest Name"
2876
- msgstr ""
2877
 
2878
  #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2879
  msgid "Status"
2880
- msgstr ""
2881
 
2882
  #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2883
  #: app/view/event/ticket.php:71
@@ -2886,7 +2886,7 @@ msgstr "E-mail"
2886
 
2887
  #: app/controller/javascript.php:500
2888
  msgid "No attendees for this ticket type."
2889
- msgstr ""
2890
 
2891
  #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2892
  #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
@@ -2895,19 +2895,19 @@ msgstr "Rediger"
2895
 
2896
  #: app/controller/javascript.php:502
2897
  msgid "Code"
2898
- msgstr ""
2899
 
2900
  #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2901
  msgid "Unlimited"
2902
- msgstr ""
2903
 
2904
  #: app/controller/javascript.php:506
2905
  msgid "Your message has been sent. Thank you for your feedback."
2906
- msgstr ""
2907
 
2908
  #: app/controller/javascript.php:507
2909
  msgid "Your message has not been sent. Please try again or contact us."
2910
- msgstr ""
2911
 
2912
  #: app/controller/javascript.php:405
2913
  msgid "Please enter a valid iCalendar URL."
@@ -2947,7 +2947,7 @@ msgstr "Når checkboksen \"Angiv koordinater\" er markeret, er \"breddegrad\" et
2947
 
2948
  #: app/controller/javascript.php:431
2949
  msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2950
- msgstr ""
2951
 
2952
  #: app/controller/javascript.php:434
2953
  msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
@@ -2963,7 +2963,7 @@ msgstr "Henter&hellip;"
2963
 
2964
  #: app/controller/javascript.php:443
2965
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2966
- msgstr ""
2967
 
2968
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
  msgid "Preview:"
@@ -2975,23 +2975,23 @@ msgstr "Henter forhåndsvisning&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-
2975
 
2976
  #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2977
  msgid "Ticketing Details"
2978
- msgstr ""
2979
 
2980
  #: app/controller/javascript.php:480
2981
  msgid "Hide Ticketing Details"
2982
- msgstr ""
2983
 
2984
  #: app/controller/javascript.php:481
2985
  msgid "Loading tickets details..."
2986
- msgstr ""
2987
 
2988
  #: app/controller/javascript.php:482
2989
  msgid "Type and price"
2990
- msgstr ""
2991
 
2992
  #: app/controller/javascript.php:483
2993
  msgid "Info"
2994
- msgstr ""
2995
 
2996
  #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2997
  #: app/view/admin/add-ons.php:27
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-20 01:24:42+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
328
 
329
  #: public/admin/plugins/ics/display_feeds.php:96
330
  msgid "Update subscription"
331
+ msgstr "Opdater abonnement"
332
 
333
  #: public/admin/row_custom.php:3
334
  msgid "Custom dates:"
622
 
623
  #: public/admin/box_event_cost.php:228
624
  msgid "Status:"
625
+ msgstr "Status:"
626
 
627
  #: public/admin/box_event_cost.php:235
628
  msgid "Open"
629
+ msgstr "Åben"
630
 
631
  #: public/admin/box_event_cost.php:239
632
  msgid "Closed"
633
+ msgstr "Lukket"
634
 
635
  #: public/admin/box_event_cost.php:254
636
  msgid "Add New Ticket Type"
637
+ msgstr "Tilføj ny billettype"
638
 
639
  #: public/admin/box_event_cost.php:274
640
  msgid "Tickets URL:"
641
+ msgstr "Billetter (webadresse):"
642
 
643
  #: public/admin/box_event_location.php:6
644
  msgid "Event location details"
714
 
715
  #: public/admin/box_event_contact.php:56
716
  msgid "Website URL:"
717
+ msgstr "Websideadresse:"
718
 
719
  #: public/admin/box_event_cost.php:6
720
  msgid "Event cost and Tickets"
722
 
723
  #: public/admin/box_event_cost.php:20
724
  msgid "Ticket options not available - event imported from external calendar."
725
+ msgstr "Billetvalg ikke tilgængeligt - begivenheden er importeret fra ekstern kalender."
726
 
727
  #: public/admin/box_event_cost.php:28
728
  msgid "Free event"
730
 
731
  #: public/admin/box_event_cost.php:41
732
  msgid "External Tickets URL"
733
+ msgstr "Billetter fra ekstern webside"
734
 
735
  #: public/admin/box_event_cost.php:52
736
  msgid "Ticketing allows you to sell tickets directly to the users."
737
+ msgstr "Billetsalg giver dig mulighed for at sælge billetter direkte til brugerne."
738
 
739
  #: public/admin/box_event_cost.php:55
740
  msgid "Sign Up for Timely Network"
741
+ msgstr "Tilmeld dig Timelys netværk"
742
 
743
  #: public/admin/box_event_cost.php:80
744
  msgid "Remove Ticket Type"
745
+ msgstr "Fjern billettype"
746
 
747
  #: public/admin/box_event_cost.php:101
748
  msgid "Ex.: Regular Ticket"
749
+ msgstr "Eksempel: Almindelig billet"
750
 
751
  #: public/admin/box_event_cost.php:105
752
  msgid "Description:"
754
 
755
  #: public/admin/box_event_cost.php:111
756
  msgid "(Optional)"
757
+ msgstr "(Valgfri)"
758
 
759
  #: public/admin/box_event_cost.php:115
760
  msgid "Price:"
761
+ msgstr "Pris:"
762
 
763
  #: public/admin/box_event_cost.php:124
764
  msgid "USD"
765
+ msgstr "USD (bureau)"
766
 
767
  #: public/admin/box_event_cost.php:128
768
  msgid "Limits:"
769
+ msgstr "Begrænsninger:"
770
 
771
  #: public/admin/box_event_cost.php:131
772
  msgid "This fields are required."
773
+ msgstr "Dette felt er påkrævet."
774
 
775
  #: public/admin/box_event_cost.php:156
776
  msgid "Quantity:"
777
+ msgstr "Antal:"
778
 
779
  #: public/admin/box_event_cost.php:180
780
  msgid "Available:"
781
+ msgstr "Tilgængelig:"
782
 
783
  #: public/admin/box_event_cost.php:185
784
  msgid "Immediately"
785
+ msgstr "Med det samme"
786
 
787
  #: public/admin/box_event_cost.php:190
788
  msgid "From:"
789
+ msgstr "Fra"
790
 
791
  #: public/admin/box_event_cost.php:207
792
  msgid "Till:"
793
+ msgstr "Til:"
794
 
795
  #: public/admin/box_ask_customer_review.php:42
796
  #: public/admin/box_ask_customer_review.php:75
797
  msgid "No, thanks"
798
+ msgstr "Nej tak!"
799
 
800
  #: public/admin/box_ask_customer_review.php:50
801
  #: public/admin/box_ask_customer_review.php:84
802
  msgid "Ok, sure!"
803
+ msgstr "OK, selvfølgelig!"
804
 
805
  #: public/admin/box_ask_customer_review.php:66
806
  msgid "Would you mind giving us some feedback?"
807
+ msgstr "Ville du have noget imod at give os geedback?"
808
 
809
  #: public/admin/box_ask_customer_review.php:101
810
  msgid "Please provide some feedback"
811
+ msgstr "Forsyn os med din feedback"
812
 
813
  #: public/admin/box_ask_customer_review.php:108
814
  msgid "Message:"
815
+ msgstr "Besked:"
816
 
817
  #: public/admin/box_ask_customer_review.php:121
818
  msgid "Name:"
819
+ msgstr "Navn:"
820
 
821
  #: public/admin/box_ask_customer_review.php:136
822
  #: public/admin/box_event_contact.php:43
825
 
826
  #: public/admin/box_ask_customer_review.php:143
827
  msgid "E-mail is invalid."
828
+ msgstr "E-mail er ugyldig "
829
 
830
  #: public/admin/box_ask_customer_review.php:154
831
  msgid "Site URL:"
832
+ msgstr "Websideadresse:"
833
 
834
  #: public/admin/box_ask_customer_review.php:161
835
  msgid "Site URL is invalid."
836
+ msgstr "Webadressen er ugyldig."
837
 
838
  #: public/admin/box_ask_customer_review.php:173
839
  msgid "Thank you for being our customer,"
840
+ msgstr "Tak for dit køb!"
841
 
842
  #: public/admin/box_ask_customer_review.php:174
843
  msgid "Aristotel Dascal, VP of Product, Time.ly"
844
+ msgstr "Aristotel Dascal, VP of Product, Time.ly"
845
 
846
  #: public/admin/box_ask_customer_review.php:180
847
  msgid "Sending..."
848
+ msgstr "Sender..."
849
 
850
  #: public/admin/box_ask_customer_review.php:181
851
  msgid "Send Message"
852
+ msgstr "Send besked"
853
 
854
  #: public/admin/box_event_children.php:12
855
  msgid "Base recurrence event"
945
 
946
  #: public/admin/box_ask_customer_review.php:5
947
  msgid "Enjoying All-in-One Event Calendar?"
948
+ msgstr "Er du tilfreds med All-in-One-Event Calendar?"
949
 
950
  #: public/admin/box_ask_customer_review.php:13
951
  msgid "Not really"
952
+ msgstr "Ikke rigtig"
953
 
954
  #: public/admin/box_ask_customer_review.php:20
955
  msgid "Yes!"
956
+ msgstr "Ja!"
957
 
958
  #: public/admin/box_ask_customer_review.php:33
959
  msgid "How about a rating on the Wordpress?"
960
+ msgstr "Hvad med at give din vurdering på Wordpress?"
961
 
962
  #: lib/recurrence/rule.php:397
963
  msgid "Every %d weeks"
1230
 
1231
  #: lib/import-export/ics.php:831
1232
  msgid "Tickets: "
1233
+ msgstr "Billetter:"
1234
 
1235
  #: lib/html/element/setting/html.php:41
1236
  msgid "Day view:"
1502
 
1503
  #: lib/calendar-feed/ics.php:519
1504
  msgid "Oh, submission was not accepted."
1505
+ msgstr "Åh-åh, det sendte blev ikke accepteret."
1506
 
1507
  #: lib/calendar-feed/ics.php:699
1508
  msgid "Deleted %d events"
1571
 
1572
  #: app/view/event/single.php:123
1573
  msgid "Tickets:"
1574
+ msgstr "Billetter:"
1575
 
1576
  #: app/view/event/single.php:124
1577
  msgid "Free"
1621
 
1622
  #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
  msgid "Excludes: "
1624
+ msgstr "Omfatter ikke:"
1625
 
1626
  #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
  msgid "Repeats"
1628
+ msgstr "Gentagelser:"
1629
 
1630
  #: lib/calendar-feed/ics.php:38
1631
  msgid "ICS"
1667
 
1668
  #: app/view/event/content.php:125
1669
  msgid "Calendar"
1670
+ msgstr "Kalender"
1671
 
1672
  #: app/view/event/content.php:126
1673
  msgid "View all events"
1918
 
1919
  #: app/view/admin/tickets.php:86
1920
  msgid "Sales"
1921
+ msgstr "Salg"
1922
 
1923
  #: app/view/admin/tickets.php:87
1924
  msgid "How do you want the tickets revenue to be sent to you?"
1925
+ msgstr "Hvordan ønsker du billetindtægterne overført til dig?"
1926
 
1927
  #: app/view/admin/tickets.php:88
1928
  msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
+ msgstr "Hvis ingen udbetalingsmåde er valgt vil Time.ly samle indtægterne på dine vegne. Kontakt venligst payouts@time.ly for udestående udbetalinger. "
1930
 
1931
  #: app/view/admin/tickets.php:91
1932
  msgid "Cheque"
1933
+ msgstr "Check"
1934
 
1935
  #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
  msgid "Paypal"
1938
 
1939
  #: app/view/admin/tickets.php:94
1940
  msgid "Save Changes"
1941
+ msgstr "Gem ændringer"
1942
 
1943
  #: app/view/admin/tickets.php:95
1944
  msgid "Date"
1945
+ msgstr "Dato"
1946
 
1947
  #: app/view/admin/tickets.php:96
1948
  msgid "Event"
1949
+ msgstr "Begivenhed"
1950
 
1951
  #: app/view/admin/tickets.php:97
1952
  msgid "Purchaser"
1953
+ msgstr "Køber"
1954
 
1955
  #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
  #: public/admin/box_event_cost.php:35
1959
 
1960
  #: app/view/admin/tickets.php:101
1961
  msgid "Total"
1962
+ msgstr "Total"
1963
 
1964
  #: app/view/admin/tickets.php:102
1965
  msgid "Sign Out"
1966
+ msgstr "Log ud"
1967
 
1968
  #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
  #: app/view/admin/widget-creator.php:47
2005
 
2006
  #: app/view/admin/settings.php:193
2007
  msgid "Phone Number:"
2008
+ msgstr "Telefonnr.:"
2009
 
2010
  #: app/view/admin/settings.php:194
2011
  msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
+ msgstr "Jeg bekræfter at have læst, forstået og erklæret mig enig i <a href=\"https://ticketing.time.ly/terms\">vilkår og betingelser</a>."
2013
 
2014
  #: app/view/admin/settings.php:197
2015
  msgid "Sign Up"
2016
+ msgstr "Tilmeld"
2017
 
2018
  #: app/view/admin/settings.php:198
2019
  msgid "Sign In"
2020
+ msgstr "Log ind"
2021
 
2022
  #: app/view/admin/settings.php:212
2023
  msgid "Save Settings"
2082
 
2083
  #: app/view/admin/tickets.php:36
2084
  msgid "Ticketing"
2085
+ msgstr "Billetsalg"
2086
 
2087
  #: app/view/admin/tickets.php:37
2088
  msgid "Ticketing<sup>beta</sup>"
2089
+ msgstr "Billetsalg<sup>beta</sup>"
2090
 
2091
  #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
  msgid "Time.ly Ticketing<sup>beta</sup>"
2093
+ msgstr "Time.ly Billetsalg<sup>beta</sup>"
2094
 
2095
  #: app/view/admin/settings.php:98
2096
  msgctxt "meta box"
2131
 
2132
  #: app/view/admin/settings.php:171
2133
  msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
+ msgstr "Tilmeld dig og få en<b>Timely Network</b> konto. Det er gratis."
2135
 
2136
  #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
  #: public/admin/box_ask_customer_review.php:112
2140
  #: public/admin/box_ask_customer_review.php:158
2141
  #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
  msgid "This field is required."
2143
+ msgstr "Dette felt er påkrævet."
2144
 
2145
  #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
  msgid "Register"
2148
 
2149
  #: app/view/admin/settings.php:184
2150
  msgid "Sign in"
2151
+ msgstr "Log ind"
2152
 
2153
  #: app/view/admin/settings.php:185
2154
  msgid "You are successfully signed in to <b>Timely Network</b>."
2155
+ msgstr "Du er nu logget ind på <b>Timely Network</b>"
2156
 
2157
  #: app/view/admin/settings.php:186
2158
  msgid "Sign out"
2159
+ msgstr "Log ud"
2160
 
2161
  #: app/view/admin/settings.php:187
2162
  msgid "Hide form"
2163
+ msgstr "Skjul formularen"
2164
 
2165
  #: app/view/admin/settings.php:188
2166
  msgid "Show form"
2167
+ msgstr "Vis formularen"
2168
 
2169
  #: app/view/admin/settings.php:189
2170
  msgid "Full Name:"
2171
+ msgstr "Fulde navn:"
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
2176
 
2177
  #: app/view/admin/settings.php:191
2178
  msgid "Password:"
2179
+ msgstr "Password:"
2180
 
2181
  #: app/view/admin/settings.php:192
2182
  msgid "Confirm Password:"
2183
+ msgstr "Bekræft password:"
2184
 
2185
  #: app/view/admin/get-repeat-box.php:483
2186
  msgid "fourth"
2236
 
2237
  #: app/view/admin/nav.php:28
2238
  msgid "<a href=\"%s\">Check for updates</a>"
2239
+ msgstr "<a href=\"%s\">Søg efter opdateringer</a>"
2240
 
2241
  #: app/view/admin/organize.php:100
2242
  msgid "Organize Events"
2270
 
2271
  #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
  msgid "Import Feeds"
2273
+ msgstr "Importer feeds"
2274
 
2275
  #: app/view/admin/calendar-feeds.php:48
2276
  msgctxt "meta box"
2279
 
2280
  #: app/view/admin/calendar-feeds.php:65
2281
  msgid "All-in-One Event Calendar: Import Feeds"
2282
+ msgstr "All-in-One Event Calendar: Importer Feeds"
2283
 
2284
  #: app/view/admin/event-category.php:30
2285
  msgid "Color"
2390
 
2391
  #: app/model/settings.php:1001
2392
  msgid "Display events in <strong>calendar time zone</strong>"
2393
+ msgstr "Vis begivenheder <strong>kalenderens tidszone</strong>"
2394
 
2395
  #: app/model/settings.php:1004
2396
  msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
+ msgstr "Hvis denne box er markeret vil begivenheder optræde i kalenderens tidszone og informationer om tidszone vises på begivenhedens side med flere detaljer."
2398
 
2399
  #: app/view/admin/add-new-event.php:26
2400
  msgid "Event Details"
2438
 
2439
  #: app/view/admin/all-events.php:22
2440
  msgid "Ticket Types"
2441
+ msgstr "Billettyper"
2442
 
2443
  #: app/view/admin/all-events.php:134
2444
  msgid "Show All "
2446
 
2447
  #: app/view/admin/all-events.php:147
2448
  msgid "Show All Authors"
2449
+ msgstr "Vis alle forfattere"
2450
 
2451
  #: app/model/settings.php:746
2452
  msgid "Strict compatibility content filtering"
2644
 
2645
  #: app/model/api.php:456
2646
  msgid "Not available"
2647
+ msgstr "Ikke tilgængelig"
2648
 
2649
  #: app/model/api.php:659
2650
  msgid "%s.<br/>Detail: %s."
2651
+ msgstr "%s.<br/>Detalje: %s."
2652
 
2653
  #: app/model/api.php:664
2654
  msgid "API URL: %s.<br/>Detail: %s - %s"
2655
+ msgstr "API URL: %s.<br/>Detaljer: %s - %s"
2656
 
2657
  #: app/model/api.php:672
2658
  msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2659
+ msgstr "%s. Prøv venligst at genidndlæse siden.for at prøve igen. Hvis fejlen vedbliver, kontakt da os på %s. Medtag informationen nedenfor i din rapport.<br/>%s."
2660
 
2661
  #: app/model/api.php:679
2662
  msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2663
+ msgstr "%s. Prøv venligst igen. Hvis fejlen vedbliver, kontakt os på %s. I din rapport skal du tilføje informationen nedenunder.<br/>%s"
2664
 
2665
  #: app/model/event/parent.php:186
2666
  msgid "Edit &#8220;%s&#8221;"
2672
 
2673
  #: app/model/review.php:169
2674
  msgid "Feedback provided by user"
2675
+ msgstr "Feedback tilføjet af bruger"
2676
 
2677
  #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2678
  msgid "Name"
2680
 
2681
  #: app/model/review.php:173
2682
  msgid "E-mail"
2683
+ msgstr "E-mail"
2684
 
2685
  #: app/model/review.php:175
2686
  msgid "Site URL"
2687
+ msgstr "Websideadresse"
2688
 
2689
  #: app/model/review.php:177
2690
  msgid "Message"
2691
+ msgstr "Besked"
2692
 
2693
  #: app/model/settings.php:401
2694
  #: lib/html/element/setting/calendar-page-selector.php:50
2749
 
2750
  #: app/model/api.php:40
2751
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2752
+ msgstr "Vi kunne ikke hente billetoplysninger fra Time.ly billetsystemet"
2753
 
2754
  #: app/model/api.php:41
2755
  msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2756
+ msgstr "Vi kunne ikke hente billetmodtagere fra Time.ly billetsystemet"
2757
 
2758
  #: app/model/api.php:42
2759
  msgid "We were unable to Sign you Up for Time.ly Ticketing"
2760
+ msgstr "Vi kunne ikke tilmeldi dig Time.ly billetsystem"
2761
 
2762
  #: app/model/api.php:43
2763
  msgid "We were unable to Sign you In for Time.ly Ticketing"
2764
+ msgstr "Vi kunne ikke logge dig ind på Time.ly billetsystem"
2765
 
2766
  #: app/model/api.php:44
2767
  msgid "We were unable to create the Event on Time.ly Ticketing"
2768
+ msgstr "Vi kunne ikke oprette begivenheden på Time.ly billetsystem"
2769
 
2770
  #: app/model/api.php:45
2771
  msgid "We were unable to update the Event on Time.ly Ticketing"
2772
+ msgstr "Vi kunne ikke opdatere begivenheden på Time.ly billetsystem"
2773
 
2774
  #: app/model/api.php:46
2775
  msgid "The event has the option Tickets selected but any ticket was added."
2776
+ msgstr "Begivenheden er markeret med billetsalg men ingen billet tilføjet"
2777
 
2778
  #: app/model/api.php:47
2779
  msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2780
+ msgstr "Vi kunne ikke fjerne billeterne fra Time.ly billetsystemet"
2781
 
2782
  #: app/model/api.php:48
2783
  msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2784
+ msgstr "Denne begivenhed er kopieret fra et andet website. Eventueller ændringer for billetter blev afvist."
2785
 
2786
  #: app/model/api.php:49
2787
  msgid "Payment preferences were not saved."
2788
+ msgstr "Foretrukne betalingesmåder blev ikke gemt."
2789
 
2790
  #: app/model/api.php:50
2791
  msgid "Payment preferences were saved."
2792
+ msgstr "Foretrukne betlingsmåder blev gemt."
2793
 
2794
  #: app/model/api.php:51
2795
  msgid "Event not found inside the database."
2796
+ msgstr "Begivenheden ikke fundet i databasen."
2797
 
2798
  #: app/model/api.php:52
2799
  msgid "We were unable to get the Sales information from Time.ly Ticketing"
2800
+ msgstr "Vi kunne ikke finde salgsinformationerne fra Time.ly billetsystem"
2801
 
2802
  #: app/model/api.php:446
2803
  msgid "Past Event"
2804
+ msgstr "Tidligere begivenhed "
2805
 
2806
  #: app/model/api.php:448
2807
  msgid "Event closed"
2808
+ msgstr "Begivenheden er lukket"
2809
 
2810
  #: app/model/api.php:450
2811
  msgid "Not available yet"
2812
+ msgstr "Ikke tilgængelig lige nu"
2813
 
2814
  #: app/model/api.php:452
2815
  msgid "Sale closed"
2816
+ msgstr "Salget er lukket"
2817
 
2818
  #: app/model/api.php:454
2819
  msgid "Sold out"
2820
+ msgstr "Udsolgt"
2821
 
2822
  #: app/controller/javascript.php:484
2823
  msgid "Report"
2824
+ msgstr "Rapport"
2825
 
2826
  #: app/controller/javascript.php:485
2827
  msgid "Sale dates"
2828
+ msgstr "Salgsdatoer"
2829
 
2830
  #: app/controller/javascript.php:486
2831
  msgid "Limits"
2832
+ msgstr "Begrænsninger"
2833
 
2834
  #: app/controller/javascript.php:487
2835
  msgid "Actions"
2836
+ msgstr "Handlinger"
2837
 
2838
  #: app/controller/javascript.php:488
2839
  msgid "Sold:"
2840
+ msgstr "Solgt"
2841
 
2842
  #: app/controller/javascript.php:489
2843
  msgid "Left:"
2844
+ msgstr "Venstre:"
2845
 
2846
  #: app/controller/javascript.php:490
2847
  msgid "Start:"
2848
+ msgstr "Start:"
2849
 
2850
  #: app/controller/javascript.php:491
2851
  msgid "End:"
2852
+ msgstr "Slut:"
2853
 
2854
  #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2855
  msgid "Min:"
2856
+ msgstr "Minimum:"
2857
 
2858
  #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2859
  msgid "Max:"
2860
+ msgstr "Maksimmun:"
2861
 
2862
  #: app/controller/javascript.php:494
2863
  msgid "Attendees"
2864
+ msgstr "Modtagere"
2865
 
2866
  #: app/controller/javascript.php:495
2867
  msgid "Hide Attendees"
2868
+ msgstr "Skjul modtagere "
2869
 
2870
  #: app/controller/javascript.php:496
2871
  msgid "Attendees List"
2872
+ msgstr "Liste over modtagere"
2873
 
2874
  #: app/controller/javascript.php:497
2875
  msgid "Guest Name"
2876
+ msgstr "Gæstenavn"
2877
 
2878
  #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2879
  msgid "Status"
2880
+ msgstr "Status"
2881
 
2882
  #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2883
  #: app/view/event/ticket.php:71
2886
 
2887
  #: app/controller/javascript.php:500
2888
  msgid "No attendees for this ticket type."
2889
+ msgstr "Ingen modtagere af denne billettype."
2890
 
2891
  #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2892
  #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2895
 
2896
  #: app/controller/javascript.php:502
2897
  msgid "Code"
2898
+ msgstr "Kode"
2899
 
2900
  #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2901
  msgid "Unlimited"
2902
+ msgstr "Ubegrænset"
2903
 
2904
  #: app/controller/javascript.php:506
2905
  msgid "Your message has been sent. Thank you for your feedback."
2906
+ msgstr "Din beksed er blevet send. Tak for din tilbagemelding."
2907
 
2908
  #: app/controller/javascript.php:507
2909
  msgid "Your message has not been sent. Please try again or contact us."
2910
+ msgstr "Din besked er blevet sendt. Prøv igen eller kontakt os."
2911
 
2912
  #: app/controller/javascript.php:405
2913
  msgid "Please enter a valid iCalendar URL."
2947
 
2948
  #: app/controller/javascript.php:431
2949
  msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2950
+ msgstr "Den webadresse du har angivet i <b>Organizer Contact Info</b> &gt; <b>Website URL</b> ser ud til at være ugyldig."
2951
 
2952
  #: app/controller/javascript.php:434
2953
  msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2963
 
2964
  #: app/controller/javascript.php:443
2965
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2966
+ msgstr "<p class = \"ai1ec_ticketing_required_alert\"> <b> Nogle felter, der kræves for Billetsalg, mangler. </> <b /r> <i> Manglende eller forkerte felter er markeret med rødt.</I></p>"
2967
 
2968
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
  msgid "Preview:"
2975
 
2976
  #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2977
  msgid "Ticketing Details"
2978
+ msgstr "Billetsalgsdetaljer"
2979
 
2980
  #: app/controller/javascript.php:480
2981
  msgid "Hide Ticketing Details"
2982
+ msgstr "Skjul billetsalgsdetaljer"
2983
 
2984
  #: app/controller/javascript.php:481
2985
  msgid "Loading tickets details..."
2986
+ msgstr "Henter billetsalgsdetaljer..."
2987
 
2988
  #: app/controller/javascript.php:482
2989
  msgid "Type and price"
2990
+ msgstr "Type og pris"
2991
 
2992
  #: app/controller/javascript.php:483
2993
  msgid "Info"
2994
+ msgstr "Info"
2995
 
2996
  #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2997
  #: app/view/admin/add-ons.php:27
language/all-in-one-event-calendar-de.mo DELETED
Binary file
language/all-in-one-event-calendar-de_CH.mo ADDED
Binary file
language/{all-in-one-event-calendar-de.po → all-in-one-event-calendar-de_CH.po} RENAMED
@@ -1,8 +1,8 @@
1
- # Translation of 2.3 in German
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:48:02+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -140,12 +140,12 @@ msgstr "Rand des Eingabefelds"
140
  #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
  #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
  msgid "Input field border (focus)"
143
- msgstr "Eingabefeld Rand (focus)"
144
 
145
  #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
  #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
  msgid "Input field background (disabled)"
148
- msgstr "Eingabefeld Rand (deaktiviert)"
149
 
150
  #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
  #: public/themes-ai1ec/vortex/less/user_variables.php:119
@@ -155,12 +155,12 @@ msgstr "Feld Bezeichnung"
155
  #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
  #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
  msgid "Dropdown list background"
158
- msgstr "Hintergrund der Dropdown Liste"
159
 
160
  #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
  #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
  msgid "Dropdown list border"
163
- msgstr "Rand der Dropdown Liste"
164
 
165
  #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
  #: public/themes-ai1ec/vortex/less/user_variables.php:137
@@ -199,15 +199,15 @@ msgstr "All-in-One Event Kalender Einstellungen »"
199
 
200
  #: public/admin/themes.php:18
201
  msgid "Current Calendar Theme"
202
- msgstr "Aktuelles Kalender Theme"
203
 
204
  #: public/admin/themes.php:21
205
  msgid "Current theme preview"
206
- msgstr "Aktuelle Theme Vorschau"
207
 
208
  #: public/admin/themes.php:47
209
  msgid "Available Calendar Themes"
210
- msgstr "Verfügbare Kalender Themes"
211
 
212
  #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
  #: public/themes-ai1ec/vortex/less/user_variables.php:5
@@ -237,12 +237,12 @@ msgstr "Link (hover)"
237
  #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
  #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
  msgid "Base font"
240
- msgstr "Standard Schriftart"
241
 
242
  #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
  #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
  msgid "Base font size"
245
- msgstr "Standard Schriftgröße"
246
 
247
  #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
  #: public/themes-ai1ec/vortex/less/user_variables.php:47
@@ -304,7 +304,7 @@ msgstr ""
304
  "Hier kannst du einrichten, welche anderen Kalender dein Kalender abonniert.\n"
305
  " Alle Kalender, die einen iCalender-Feed (.ics) bereitstellen, können hinzugefügt werden.\n"
306
  " Trage die Feed URL(s) unten ein und die Veranstaltungen dieser Feeds werden \n"
307
- " regelmäßig importiert."
308
 
309
  #: public/admin/plugins/ics/display_feeds.php:14
310
  msgid "Check for new events"
@@ -328,11 +328,11 @@ msgstr "Neues Abonnement hinzufügen"
328
 
329
  #: public/admin/plugins/ics/display_feeds.php:96
330
  msgid "Update subscription"
331
- msgstr ""
332
 
333
  #: public/admin/row_custom.php:3
334
  msgid "Custom dates:"
335
- msgstr ""
336
 
337
  #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
  #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
@@ -364,11 +364,11 @@ msgstr "Einstellungen aktualisieren"
364
 
365
  #: public/admin/themes-install.php:4
366
  msgid "The active theme is broken. Reverting to the default theme."
367
- msgstr "Das aktive Theme ist defekt. Standard Theme wird ausgewählt."
368
 
369
  #: public/admin/themes-install.php:13
370
  msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
- msgstr ""
372
 
373
  #: public/admin/calendar_tasks.php:24
374
  msgid "Manage Events"
@@ -396,7 +396,7 @@ msgstr "\"Look and Feel\" ändern."
396
 
397
  #: public/admin/calendar_tasks.php:63
398
  msgid "Manage Calendar Feeds"
399
- msgstr "Kalender Feeds verwalten"
400
 
401
  #: public/admin/calendar_tasks.php:66
402
  msgid "Subscribe to other calendars."
@@ -444,15 +444,15 @@ msgstr "Ursprüngliche Kategorien und Schlagwörter der Veranstaltungen beibehal
444
 
445
  #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
  msgid "On refresh, preserve previously imported events that are missing from the feed"
447
- msgstr ""
448
 
449
  #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
  msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
- msgstr ""
452
 
453
  #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
  msgid "Assign default time zone to events in UTC"
455
- msgstr ""
456
 
457
  #: public/admin/box_support.php:19
458
  msgid "Get Add-ons"
@@ -540,7 +540,7 @@ msgstr "Basierend auf Spenden"
540
 
541
  #: public/admin/box_eventbrite.php:68
542
  msgid "The price for this event's first ticket will be taken from the Cost field above."
543
- msgstr "Der Preis für das erste Ticket dieser Veranstaltung, wird von dem Kostenfeld oben übernommen."
544
 
545
  #: public/admin/box_eventbrite.php:75
546
  msgid "Quantity"
@@ -588,7 +588,7 @@ msgstr "Wiederholungsschema auswählen:"
588
 
589
  #: public/admin/box_repeat.php:36
590
  msgid "Custom"
591
- msgstr ""
592
 
593
  #: public/admin/box_repeat.php:72
594
  msgid "End"
@@ -622,23 +622,23 @@ msgstr "Timely’s All-in-One Event Kalender ist<br />eine neue, bahnbrechende M
622
 
623
  #: public/admin/box_event_cost.php:228
624
  msgid "Status:"
625
- msgstr ""
626
 
627
  #: public/admin/box_event_cost.php:235
628
  msgid "Open"
629
- msgstr ""
630
 
631
  #: public/admin/box_event_cost.php:239
632
  msgid "Closed"
633
- msgstr ""
634
 
635
  #: public/admin/box_event_cost.php:254
636
  msgid "Add New Ticket Type"
637
- msgstr ""
638
 
639
  #: public/admin/box_event_cost.php:274
640
  msgid "Tickets URL:"
641
- msgstr ""
642
 
643
  #: public/admin/box_event_location.php:6
644
  msgid "Event location details"
@@ -670,7 +670,7 @@ msgstr "Karte ansehen"
670
 
671
  #: public/admin/box_eventbrite.php:1
672
  msgid "Eventbrite Ticketing"
673
- msgstr "Eventbrite Ticketing"
674
 
675
  #: public/admin/box_eventbrite.php:7
676
  msgid "Register this event with Eventbrite.com?"
@@ -714,15 +714,15 @@ msgstr "Telefon:"
714
 
715
  #: public/admin/box_event_contact.php:56
716
  msgid "Website URL:"
717
- msgstr ""
718
 
719
  #: public/admin/box_event_cost.php:6
720
  msgid "Event cost and Tickets"
721
- msgstr "Veranstaltungspreis und Karten"
722
 
723
  #: public/admin/box_event_cost.php:20
724
  msgid "Ticket options not available - event imported from external calendar."
725
- msgstr ""
726
 
727
  #: public/admin/box_event_cost.php:28
728
  msgid "Free event"
@@ -730,23 +730,23 @@ msgstr "keine Eintrittsgebühr"
730
 
731
  #: public/admin/box_event_cost.php:41
732
  msgid "External Tickets URL"
733
- msgstr ""
734
 
735
  #: public/admin/box_event_cost.php:52
736
  msgid "Ticketing allows you to sell tickets directly to the users."
737
- msgstr ""
738
 
739
  #: public/admin/box_event_cost.php:55
740
  msgid "Sign Up for Timely Network"
741
- msgstr ""
742
 
743
  #: public/admin/box_event_cost.php:80
744
  msgid "Remove Ticket Type"
745
- msgstr ""
746
 
747
  #: public/admin/box_event_cost.php:101
748
  msgid "Ex.: Regular Ticket"
749
- msgstr ""
750
 
751
  #: public/admin/box_event_cost.php:105
752
  msgid "Description:"
@@ -754,69 +754,69 @@ msgstr "Beschreibung:"
754
 
755
  #: public/admin/box_event_cost.php:111
756
  msgid "(Optional)"
757
- msgstr ""
758
 
759
  #: public/admin/box_event_cost.php:115
760
  msgid "Price:"
761
- msgstr ""
762
 
763
  #: public/admin/box_event_cost.php:124
764
  msgid "USD"
765
- msgstr ""
766
 
767
  #: public/admin/box_event_cost.php:128
768
  msgid "Limits:"
769
- msgstr ""
770
 
771
  #: public/admin/box_event_cost.php:131
772
  msgid "This fields are required."
773
- msgstr ""
774
 
775
  #: public/admin/box_event_cost.php:156
776
  msgid "Quantity:"
777
- msgstr ""
778
 
779
  #: public/admin/box_event_cost.php:180
780
  msgid "Available:"
781
- msgstr ""
782
 
783
  #: public/admin/box_event_cost.php:185
784
  msgid "Immediately"
785
- msgstr ""
786
 
787
  #: public/admin/box_event_cost.php:190
788
  msgid "From:"
789
- msgstr ""
790
 
791
  #: public/admin/box_event_cost.php:207
792
  msgid "Till:"
793
- msgstr ""
794
 
795
  #: public/admin/box_ask_customer_review.php:42
796
  #: public/admin/box_ask_customer_review.php:75
797
  msgid "No, thanks"
798
- msgstr ""
799
 
800
  #: public/admin/box_ask_customer_review.php:50
801
  #: public/admin/box_ask_customer_review.php:84
802
  msgid "Ok, sure!"
803
- msgstr ""
804
 
805
  #: public/admin/box_ask_customer_review.php:66
806
  msgid "Would you mind giving us some feedback?"
807
- msgstr ""
808
 
809
  #: public/admin/box_ask_customer_review.php:101
810
  msgid "Please provide some feedback"
811
- msgstr ""
812
 
813
  #: public/admin/box_ask_customer_review.php:108
814
  msgid "Message:"
815
- msgstr ""
816
 
817
  #: public/admin/box_ask_customer_review.php:121
818
  msgid "Name:"
819
- msgstr ""
820
 
821
  #: public/admin/box_ask_customer_review.php:136
822
  #: public/admin/box_event_contact.php:43
@@ -825,31 +825,31 @@ msgstr "E-Mail:"
825
 
826
  #: public/admin/box_ask_customer_review.php:143
827
  msgid "E-mail is invalid."
828
- msgstr ""
829
 
830
  #: public/admin/box_ask_customer_review.php:154
831
  msgid "Site URL:"
832
- msgstr ""
833
 
834
  #: public/admin/box_ask_customer_review.php:161
835
  msgid "Site URL is invalid."
836
- msgstr ""
837
 
838
  #: public/admin/box_ask_customer_review.php:173
839
  msgid "Thank you for being our customer,"
840
- msgstr ""
841
 
842
  #: public/admin/box_ask_customer_review.php:174
843
  msgid "Aristotel Dascal, VP of Product, Time.ly"
844
- msgstr ""
845
 
846
  #: public/admin/box_ask_customer_review.php:180
847
  msgid "Sending..."
848
- msgstr ""
849
 
850
  #: public/admin/box_ask_customer_review.php:181
851
  msgid "Send Message"
852
- msgstr ""
853
 
854
  #: public/admin/box_event_children.php:12
855
  msgid "Base recurrence event"
@@ -885,7 +885,7 @@ msgstr "Wir konnten keinen passender Loader für die Dateierweiterung '%s' finde
885
 
886
  #: lib/theme/loader.php:631
887
  msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
- msgstr ""
889
 
890
  #: lib/theme/search.php:253
891
  msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
@@ -897,7 +897,7 @@ msgstr "Es hat nicht geklappt deine alten Core Themes von <code>wp-content/theme
897
 
898
  #: lib/twig/environment.php:115
899
  msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
- msgstr ""
901
 
902
  #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
  msgid "Title:"
@@ -945,19 +945,19 @@ msgstr "Dieses Widget auf der Kalenderseite verstecken"
945
 
946
  #: public/admin/box_ask_customer_review.php:5
947
  msgid "Enjoying All-in-One Event Calendar?"
948
- msgstr ""
949
 
950
  #: public/admin/box_ask_customer_review.php:13
951
  msgid "Not really"
952
- msgstr ""
953
 
954
  #: public/admin/box_ask_customer_review.php:20
955
  msgid "Yes!"
956
- msgstr ""
957
 
958
  #: public/admin/box_ask_customer_review.php:33
959
  msgid "How about a rating on the Wordpress?"
960
- msgstr ""
961
 
962
  #: lib/recurrence/rule.php:397
963
  msgid "Every %d weeks"
@@ -1005,15 +1005,15 @@ msgstr "<strong>FEHLER:</strong> Fehler bei der Verbindung zum Server. Bitte üb
1005
 
1006
  #: lib/robots/helper.php:105
1007
  msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
- msgstr "<strong>FEHLER:</strong> Fehler beim Sichern von <strong>robots.txt</strong> auf dem Server, die Datei wurde nicht erstellt."
1009
 
1010
  #: lib/theme/list.php:152
1011
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
- msgstr "Derzeit ist für diese Seite nur ein Theme freigegeben. Kontaktiere den Netzwerk Administrator für eine <a href=\"%1$s\">Freigabe</a> oder <a href=\"%2$s\">installiere</a> weitere Themes."
1013
 
1014
  #: lib/theme/list.php:164
1015
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
- msgstr "Derzeit ist für diese Seite nur ein Theme freigegeben. Kontaktiere den Netzwerk Administrator für eine <a href=\"%1$s\">Freigabe</a> zusätzlicher Themes."
1017
 
1018
  #: lib/theme/list.php:179
1019
  msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
@@ -1040,7 +1040,7 @@ msgstr "%1$s %2$s by %3$s"
1040
  #. title, 5: parent_theme
1041
  #: lib/theme/list.php:293
1042
  msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
- msgstr "Die Template Dateien befinden sich in <code>%2$s</code>. Die Stylesheet Dateien befinden sich in <code>%3$s</code>. <strong>%4$s</strong> nutzt Templates von <strong>%5$s</strong>. Veränderungen an den Templates beeinflussen beide Themes. "
1044
 
1045
  #: lib/theme/list.php:308
1046
  msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
@@ -1057,27 +1057,27 @@ msgstr "Veranstaltung"
1057
  #: lib/post/custom-type.php:85
1058
  msgctxt "Event categories taxonomy"
1059
  msgid "Categories"
1060
- msgstr ""
1061
 
1062
  #: lib/post/custom-type.php:86
1063
  msgctxt "Event categories taxonomy (singular)"
1064
  msgid "Category"
1065
- msgstr ""
1066
 
1067
  #: lib/post/custom-type.php:87
1068
  msgctxt "Event categories menu item"
1069
  msgid "Organize"
1070
- msgstr ""
1071
 
1072
  #: lib/post/custom-type.php:94
1073
  msgctxt "Event tags taxonomy"
1074
  msgid "Tags"
1075
- msgstr ""
1076
 
1077
  #: lib/post/custom-type.php:95
1078
  msgctxt "Event tags taxonomy (singular)"
1079
  msgid "Tag"
1080
- msgstr ""
1081
 
1082
  #: lib/post/custom-type.php:102
1083
  msgctxt "Event feeds taxonomy"
@@ -1164,7 +1164,7 @@ msgstr "All-in-One Event Kalender"
1164
 
1165
  #: lib/notification/admin.php:182
1166
  msgid "Got it – dismiss this"
1167
- msgstr ""
1168
 
1169
  #: lib/post/custom-type.php:26
1170
  msgctxt "Custom post type name"
@@ -1230,7 +1230,7 @@ msgstr "Es wird momentan nicht unterstützt, mehr als einen Kalender auf der sel
1230
 
1231
  #: lib/import-export/ics.php:831
1232
  msgid "Tickets: "
1233
- msgstr ""
1234
 
1235
  #: lib/html/element/setting/html.php:41
1236
  msgid "Day view:"
@@ -1318,19 +1318,19 @@ msgstr "Filtern nach Schlagwort IDs der Veranstaltung (IDs durch Komma trennen)"
1318
 
1319
  #: lib/exception/handler.php:395
1320
  msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
- msgstr ""
1322
 
1323
  #: lib/exception/handler.php:404
1324
  msgid "Try reactivating plugin"
1325
- msgstr ""
1326
 
1327
  #: lib/exception/handler.php:576
1328
  msgid "Toggle error details"
1329
- msgstr ""
1330
 
1331
  #: lib/exception/handler.php:577
1332
  msgid "Error Details:"
1333
- msgstr ""
1334
 
1335
  #: lib/factory/html.php:133
1336
  msgid "Choose a date using calendar"
@@ -1346,11 +1346,11 @@ msgstr "Erneut prüfen"
1346
 
1347
  #: lib/html/element/setting/cache.php:39
1348
  msgid "Templates cache is not writable"
1349
- msgstr "Vorlagen Cache ist nicht beschreibbar"
1350
 
1351
  #: lib/html/element/setting/cache.php:40
1352
  msgid "Templates cache is writable"
1353
- msgstr "Vorlagen Cache ist beschreibbar"
1354
 
1355
  #: lib/html/element/setting/cache.php:41
1356
  msgid "Checking..."
@@ -1402,7 +1402,7 @@ msgstr "Wochenansicht:"
1402
 
1403
  #: lib/css/frontend.php:239
1404
  msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
- msgstr ""
1406
 
1407
  #: lib/css/frontend.php:266
1408
  msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
@@ -1414,7 +1414,7 @@ msgstr "<p><strong>Beim Kompilieren der CSS-Datei ist ein Fehler aufgetreten.</s
1414
 
1415
  #: lib/css/frontend.php:300
1416
  msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
- msgstr "Theme Einstellungen wurden erfolgreich auf die Standardwerte zurückgesetzt. <a href='%s'>Seite besuchen</a>"
1418
 
1419
  #: lib/css/frontend.php:307
1420
  msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
@@ -1462,7 +1462,7 @@ msgstr "Zeitzone auswählen"
1462
 
1463
  #: lib/environment/check.php:55
1464
  msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
- msgstr "Bitte aus der Dropdown Liste <strong>Kalender Seite</strong> Auswahl treffen"
1466
 
1467
  #: lib/environment/check.php:68
1468
  msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
@@ -1474,19 +1474,19 @@ msgstr "Das Plugin ist installiert, aber noch nicht konfiguriert. Bitte als Admi
1474
 
1475
  #: lib/environment/check.php:196
1476
  msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
- msgstr ""
1478
 
1479
  #: lib/environment/check.php:197
1480
  msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
- msgstr ""
1482
 
1483
  #: lib/exception/handler.php:176
1484
  msgid "The add-on \"%s\" has been disabled due to an error:"
1485
- msgstr ""
1486
 
1487
  #: lib/calendar-feed/ics.php:367
1488
  msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
- msgstr "Willst du, die aus dem Kalender, importierten Events behalten oder verwerfen?"
1490
 
1491
  #: lib/calendar-feed/ics.php:373
1492
  msgid "Removing ICS Feed"
@@ -1502,7 +1502,7 @@ msgstr "Veranstaltungen entfernen"
1502
 
1503
  #: lib/calendar-feed/ics.php:519
1504
  msgid "Oh, submission was not accepted."
1505
- msgstr ""
1506
 
1507
  #: lib/calendar-feed/ics.php:699
1508
  msgid "Deleted %d events"
@@ -1514,35 +1514,35 @@ msgstr "Feed gelöscht"
1514
 
1515
  #: lib/captcha/provider/nocaptcha.php:31
1516
  msgid "noCAPTCHA public key:"
1517
- msgstr "noCAPTCHA öffentlicher Schlüssel"
1518
 
1519
  #: lib/captcha/provider/nocaptcha.php:47
1520
  msgid "noCAPTCHA private key:"
1521
- msgstr ""
1522
 
1523
  #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
  msgid "Please try verifying you are human again."
1525
- msgstr ""
1526
 
1527
  #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
  msgid "There was an error reading the human verification data. Please try again."
1529
- msgstr ""
1530
 
1531
  #: lib/captcha/provider/recaptcha.php:32
1532
  msgid "reCAPTCHA public key:"
1533
- msgstr ""
1534
 
1535
  #: lib/captcha/provider/recaptcha.php:48
1536
  msgid "reCAPTCHA private key:"
1537
- msgstr ""
1538
 
1539
  #: lib/captcha/provider/recaptcha.php:66
1540
  msgid "Human verification"
1541
- msgstr ""
1542
 
1543
  #: lib/captcha/provider/recaptcha.php:67
1544
  msgid "Loading reCAPTCHA..."
1545
- msgstr ""
1546
 
1547
  #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
  #: lib/clone/renderer-helper.php:45
@@ -1567,11 +1567,11 @@ msgstr "<p>Die Veranstaltung <strong>%s</strong> wurde erfolgreich kopiert. <a h
1567
 
1568
  #: lib/compatibility/check.php:101
1569
  msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
- msgstr ""
1571
 
1572
  #: app/view/event/single.php:123
1573
  msgid "Tickets:"
1574
- msgstr ""
1575
 
1576
  #: app/view/event/single.php:124
1577
  msgid "Free"
@@ -1579,7 +1579,7 @@ msgstr "kostenlos"
1579
 
1580
  #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
  msgid "Buy Tickets"
1582
- msgstr "Karten kaufen"
1583
 
1584
  #: app/view/event/single.php:150
1585
  msgid "Edit this occurrence (%s)"
@@ -1587,7 +1587,7 @@ msgstr "Dieses Ereignis bearbeiten (%s)"
1587
 
1588
  #: app/view/event/single.php:195
1589
  msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
- msgstr "Dieser Beitrag ist ein Replikat eines anderen <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> Kalender feeds</a>."
1591
 
1592
  #: app/view/event/single.php:206
1593
  msgid "View original"
@@ -1621,11 +1621,11 @@ msgstr ", und"
1621
 
1622
  #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
  msgid "Excludes: "
1624
- msgstr ""
1625
 
1626
  #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
  msgid "Repeats"
1628
- msgstr ""
1629
 
1630
  #: lib/calendar-feed/ics.php:38
1631
  msgid "ICS"
@@ -1637,7 +1637,7 @@ msgstr "Ein anderer Import findet gerade statt. Bitte zu einem späteren Zeitpun
1637
 
1638
  #: lib/calendar-feed/ics.php:174
1639
  msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
- msgstr "Ein Systemfehler ist beim Abrufen der Kalenderdaten aufgetreten. Das Plugin funktioniert deshalb nicht ordnungsgemäß. Die folgende Meldung gibt einen Hinweis auf die Ursache: %s"
1641
 
1642
  #: lib/calendar-feed/ics.php:181
1643
  msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
@@ -1651,7 +1651,7 @@ msgstr[1] "%s Veranstaltungen importiert"
1651
 
1652
  #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
  msgid "Invalid ICS feed ID"
1654
- msgstr "Ungültige ICS feed ID"
1655
 
1656
  #: lib/calendar-feed/ics.php:350
1657
  msgid "Categories (optional)"
@@ -1667,7 +1667,7 @@ msgstr "Wo:"
1667
 
1668
  #: app/view/event/content.php:125
1669
  msgid "Calendar"
1670
- msgstr ""
1671
 
1672
  #: app/view/event/content.php:126
1673
  msgid "View all events"
@@ -1729,7 +1729,7 @@ msgstr "Entwurf der Veranstaltung aktualisiert. <a target=\"_blank\" href=\"%s\"
1729
 
1730
  #: app/view/event/single.php:78
1731
  msgid "Event was created in the %s time zone"
1732
- msgstr "Der Termin wurde in der %s Zeitzone erstellt"
1733
 
1734
  #: app/view/event/single.php:114
1735
  msgid "Add to Calendar"
@@ -1788,7 +1788,7 @@ msgstr "All-in-One Event Kalender: Zeigt alle bevorstehenden Veranstaltungen in
1788
 
1789
  #: app/view/calendar/widget.php:80
1790
  msgid "Choose how to limit the upcoming events"
1791
- msgstr "Wähle, wie du die bevorstehenden Termine beschränken möchtest"
1792
 
1793
  #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
  msgid "Events"
@@ -1800,7 +1800,7 @@ msgstr "Tage"
1800
 
1801
  #: app/view/calendar/widget.php:106
1802
  msgid "Number of events to show"
1803
- msgstr "Anzahl der Termine, die angezeigt werden sollen"
1804
 
1805
  #: app/view/calendar/widget.php:115
1806
  msgid "Number of days to show"
@@ -1808,11 +1808,11 @@ msgstr "Anzahl der Tage, die angezeigt werden sollen"
1808
 
1809
  #: app/view/calendar/widget.php:124
1810
  msgid "Show events filtered for the following tags/categories"
1811
- msgstr "Zeige Events die dem folgenden Filter für Tags/Kategorien entsprechen"
1812
 
1813
  #: app/view/calendar/widget.php:141
1814
  msgid "Show the subscribe button in the widget"
1815
- msgstr "Zeige den abonnieren Knopf im Widget an"
1816
 
1817
  #: app/view/calendar/widget.php:370
1818
  msgid "There are no upcoming events."
@@ -1844,7 +1844,7 @@ msgstr "Timely Calendar holen"
1844
 
1845
  #: app/view/calendar/subscribe-button.php:22
1846
  msgid "Add to Timely Calendar"
1847
- msgstr "Zum Timely Kalender hinzufügen"
1848
 
1849
  #: app/view/calendar/subscribe-button.php:23
1850
  msgid "Add to Google"
@@ -1856,7 +1856,7 @@ msgstr "Zu Outlook hinzufügen"
1856
 
1857
  #: app/view/calendar/subscribe-button.php:25
1858
  msgid "Add to Apple Calendar"
1859
- msgstr "Zum Apple Kalender hinzufügen"
1860
 
1861
  #: app/view/calendar/subscribe-button.php:26
1862
  msgid "Add to other calendar"
@@ -1864,15 +1864,15 @@ msgstr "Zu anderem Kalender hinzufügen"
1864
 
1865
  #: app/view/calendar/subscribe-button.php:29
1866
  msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
- msgstr "Die URL deines Timely Kalenders kopieren oder anklicken, um ihn zu deinem Rich-Text-Kalender hinzuzufügen"
1868
 
1869
  #: app/view/calendar/subscribe-button.php:30
1870
  msgid "Subscribe to this calendar in your Google Calendar"
1871
- msgstr "Diesen Kalender in deinem Google Kalender abonnieren"
1872
 
1873
  #: app/view/calendar/subscribe-button.php:31
1874
  msgid "Subscribe to this calendar in MS Outlook"
1875
- msgstr "Diesen Kalender im MS-Outlook Kalender abonnieren"
1876
 
1877
  #: app/view/calendar/subscribe-button.php:32
1878
  msgid "Subscribe to this calendar in Apple Calendar/iCal"
@@ -1918,19 +1918,19 @@ msgstr "Weiter lesen"
1918
 
1919
  #: app/view/admin/tickets.php:86
1920
  msgid "Sales"
1921
- msgstr ""
1922
 
1923
  #: app/view/admin/tickets.php:87
1924
  msgid "How do you want the tickets revenue to be sent to you?"
1925
- msgstr ""
1926
 
1927
  #: app/view/admin/tickets.php:88
1928
  msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
- msgstr ""
1930
 
1931
  #: app/view/admin/tickets.php:91
1932
  msgid "Cheque"
1933
- msgstr ""
1934
 
1935
  #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
  msgid "Paypal"
@@ -1938,46 +1938,46 @@ msgstr "Paypal"
1938
 
1939
  #: app/view/admin/tickets.php:94
1940
  msgid "Save Changes"
1941
- msgstr ""
1942
 
1943
  #: app/view/admin/tickets.php:95
1944
  msgid "Date"
1945
- msgstr ""
1946
 
1947
  #: app/view/admin/tickets.php:96
1948
  msgid "Event"
1949
- msgstr ""
1950
 
1951
  #: app/view/admin/tickets.php:97
1952
  msgid "Purchaser"
1953
- msgstr ""
1954
 
1955
  #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
  #: public/admin/box_event_cost.php:35
1957
  msgid "Tickets"
1958
- msgstr "Karten"
1959
 
1960
  #: app/view/admin/tickets.php:101
1961
  msgid "Total"
1962
- msgstr ""
1963
 
1964
  #: app/view/admin/tickets.php:102
1965
  msgid "Sign Out"
1966
- msgstr ""
1967
 
1968
  #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
  #: app/view/admin/widget-creator.php:47
1970
  msgid "Widget Creator"
1971
- msgstr "Widget Ersteller"
1972
 
1973
  #: app/view/admin/widget-creator.php:74
1974
  msgctxt "meta box"
1975
  msgid "Widget Creator"
1976
- msgstr "Widget Ersteller"
1977
 
1978
  #: app/view/admin/widget-creator.php:131
1979
  msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
- msgstr "Generiere ein coe snippet, welches auf einer <strong>externen website</strong> dazu verwendet wird um dort neue Kalender und Widgets einzubauen."
1981
 
1982
  #: app/view/admin/widget-creator.php:132
1983
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
@@ -1985,7 +1985,7 @@ msgstr "<h4>Achtung!</h4><p>Diese Widget funktionieren <strong>nur auf externen
1985
 
1986
  #: app/view/admin/widget-creator.php:134
1987
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
- msgstr "<p>Verwende <a href=\"%s\"><strong>Aussehen</strong> &gt; <strong>Widgets</strong></a> wie jedes andere Widget, um Veranstaltungs widgets zur WordPress Website hinzuzfügen, oder verwende <a href=\"%s\" target=\"_blank\">Shortcodes</a> um den kompletten Kalender einzubetten.</strong></p>"
1989
 
1990
  #: app/view/admin/widget-creator.php:140
1991
  msgid "Paste this code onto your site:"
@@ -1993,7 +1993,7 @@ msgstr "Füge diesen Code in deine Seite ein:"
1993
 
1994
  #: app/view/admin/widget-creator.php:141
1995
  msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
- msgstr "Dieser Code wird aktualisiert um die Einstellungs-Änderungen zu reflektieren. Geänderte Einstellungen ändern keine bestehenden Widgets."
1997
 
1998
  #: app/view/calendar/page.php:54
1999
  msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
@@ -2005,19 +2005,19 @@ msgstr "Kalender konnte die %s Ansicht nicht erstellen und benutzt die Agenda-An
2005
 
2006
  #: app/view/admin/settings.php:193
2007
  msgid "Phone Number:"
2008
- msgstr ""
2009
 
2010
  #: app/view/admin/settings.php:194
2011
  msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
- msgstr ""
2013
 
2014
  #: app/view/admin/settings.php:197
2015
  msgid "Sign Up"
2016
- msgstr ""
2017
 
2018
  #: app/view/admin/settings.php:198
2019
  msgid "Sign In"
2020
- msgstr ""
2021
 
2022
  #: app/view/admin/settings.php:212
2023
  msgid "Save Settings"
@@ -2029,16 +2029,16 @@ msgstr "Falls das Formular nicht angezeigt wird, bitte <a href=\"%s\">diesem Lin
2029
 
2030
  #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
  msgid "Theme Options"
2032
- msgstr "Theme Einstellungen"
2033
 
2034
  #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
  msgid "Calendar Theme Options"
2036
- msgstr "Einstellungen des Kalender Themes"
2037
 
2038
  #: app/view/admin/theme-options.php:79
2039
  msgctxt "meta box"
2040
  msgid "Calendar Theme Options"
2041
- msgstr "Einstellungen des Kalender Themes"
2042
 
2043
  #: app/view/admin/theme-options.php:133
2044
  msgid "General"
@@ -2082,15 +2082,15 @@ msgstr "All-in-One Event Kalender: Themes"
2082
 
2083
  #: app/view/admin/tickets.php:36
2084
  msgid "Ticketing"
2085
- msgstr ""
2086
 
2087
  #: app/view/admin/tickets.php:37
2088
  msgid "Ticketing<sup>beta</sup>"
2089
- msgstr ""
2090
 
2091
  #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
  msgid "Time.ly Ticketing<sup>beta</sup>"
2093
- msgstr ""
2094
 
2095
  #: app/view/admin/settings.php:98
2096
  msgctxt "meta box"
@@ -2119,7 +2119,7 @@ msgstr "Shortcodes"
2119
 
2120
  #: app/view/admin/settings.php:150
2121
  msgid "Email Templates"
2122
- msgstr "E-Mail Vorlagen"
2123
 
2124
  #: app/view/admin/settings.php:151
2125
  msgid "External Services"
@@ -2127,11 +2127,11 @@ msgstr "Externe Dienste"
2127
 
2128
  #: app/view/admin/settings.php:152
2129
  msgid "Cache Report"
2130
- msgstr "Cache Bericht"
2131
 
2132
  #: app/view/admin/settings.php:171
2133
  msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
- msgstr ""
2135
 
2136
  #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
  #: public/admin/box_ask_customer_review.php:112
@@ -2140,7 +2140,7 @@ msgstr ""
2140
  #: public/admin/box_ask_customer_review.php:158
2141
  #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
  msgid "This field is required."
2143
- msgstr ""
2144
 
2145
  #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
  msgid "Register"
@@ -2148,39 +2148,39 @@ msgstr "Anmelden"
2148
 
2149
  #: app/view/admin/settings.php:184
2150
  msgid "Sign in"
2151
- msgstr ""
2152
 
2153
  #: app/view/admin/settings.php:185
2154
  msgid "You are successfully signed in to <b>Timely Network</b>."
2155
- msgstr ""
2156
 
2157
  #: app/view/admin/settings.php:186
2158
  msgid "Sign out"
2159
- msgstr ""
2160
 
2161
  #: app/view/admin/settings.php:187
2162
  msgid "Hide form"
2163
- msgstr ""
2164
 
2165
  #: app/view/admin/settings.php:188
2166
  msgid "Show form"
2167
- msgstr ""
2168
 
2169
  #: app/view/admin/settings.php:189
2170
  msgid "Full Name:"
2171
- msgstr ""
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
2175
- msgstr "Email:"
2176
 
2177
  #: app/view/admin/settings.php:191
2178
  msgid "Password:"
2179
- msgstr ""
2180
 
2181
  #: app/view/admin/settings.php:192
2182
  msgid "Confirm Password:"
2183
- msgstr ""
2184
 
2185
  #: app/view/admin/get-repeat-box.php:483
2186
  msgid "fourth"
@@ -2236,7 +2236,7 @@ msgstr "<a href=\"%s\">Einstellungen</a>"
2236
 
2237
  #: app/view/admin/nav.php:28
2238
  msgid "<a href=\"%s\">Check for updates</a>"
2239
- msgstr ""
2240
 
2241
  #: app/view/admin/organize.php:100
2242
  msgid "Organize Events"
@@ -2270,16 +2270,16 @@ msgstr "dritte"
2270
 
2271
  #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
  msgid "Import Feeds"
2273
- msgstr ""
2274
 
2275
  #: app/view/admin/calendar-feeds.php:48
2276
  msgctxt "meta box"
2277
  msgid "Feed Subscriptions"
2278
- msgstr "Feed Abonnements"
2279
 
2280
  #: app/view/admin/calendar-feeds.php:65
2281
  msgid "All-in-One Event Calendar: Import Feeds"
2282
- msgstr ""
2283
 
2284
  #: app/view/admin/event-category.php:30
2285
  msgid "Color"
@@ -2311,7 +2311,7 @@ msgstr "Bild entfernen"
2311
 
2312
  #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
  msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
- msgstr "Dieser Kategorie kann ein optionales Bild zuordnet werden. Empfohlene Größe: quadratisch, mindestens 400&times;400 Pixel."
2315
 
2316
  #: app/view/admin/get-repeat-box.php:94
2317
  msgid "times"
@@ -2377,19 +2377,19 @@ msgstr "Der Roboterausschluss Standard (Robot Exclusion Standard), auch bekannt
2377
 
2378
  #: app/model/settings.php:965
2379
  msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2380
- msgstr "<strong>Veröffentliche, promote, und teile meine öffentlichen Events</strong> im Timely-Netzwerk. (<a href=\"%s\" target=\"_blank\">Mehr Informationen &#187;</a>)"
2381
 
2382
  #: app/model/settings.php:988
2383
  msgid "Templates cache improves site performance"
2384
- msgstr "Vorlagen Cache verbessert die Leistung der Seite"
2385
 
2386
  #: app/model/settings.php:1001
2387
  msgid "Display events in <strong>calendar time zone</strong>"
2388
- msgstr ""
2389
 
2390
  #: app/model/settings.php:1004
2391
  msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2392
- msgstr ""
2393
 
2394
  #: app/view/admin/add-new-event.php:26
2395
  msgid "Event Details"
@@ -2397,11 +2397,11 @@ msgstr "Details der Veranstaltung"
2397
 
2398
  #: app/view/admin/add-new-event.php:423
2399
  msgid "Set banner image"
2400
- msgstr "Banner Bild festlegen"
2401
 
2402
  #: app/view/admin/add-new-event.php:424
2403
  msgid "Remove banner image"
2404
- msgstr "Banner Bild entfernen"
2405
 
2406
  #: app/view/admin/add-ons.php:68
2407
  msgid "Add-ons for All In One Event Calendar"
@@ -2413,11 +2413,11 @@ msgstr "Alle Erweiterungen durchsuchen"
2413
 
2414
  #: app/view/admin/add-ons.php:74
2415
  msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2416
- msgstr "Diese Zusätze erweitern die Funktionalitäten des All-In-One Event Kalenders."
2417
 
2418
  #: app/view/admin/add-ons.php:77
2419
  msgid "There was an error retrieving the extensions list from the server. Please try again later."
2420
- msgstr "Ein Fehler ist aufgetreten beim abholen der Zusatz-Liste vom Server. Bitte versuchen Sie es später nochmal."
2421
 
2422
  #: app/view/admin/all-events.php:16
2423
  msgid "Author"
@@ -2429,11 +2429,11 @@ msgstr "Datum des Eintrags"
2429
 
2430
  #: app/view/admin/all-events.php:18
2431
  msgid "Event date/time"
2432
- msgstr "Veranstaltung Datum/Zeit"
2433
 
2434
  #: app/view/admin/all-events.php:22
2435
  msgid "Ticket Types"
2436
- msgstr ""
2437
 
2438
  #: app/view/admin/all-events.php:134
2439
  msgid "Show All "
@@ -2441,7 +2441,7 @@ msgstr "Alle anzeigen "
2441
 
2442
  #: app/view/admin/all-events.php:147
2443
  msgid "Show All Authors"
2444
- msgstr ""
2445
 
2446
  #: app/model/settings.php:746
2447
  msgid "Strict compatibility content filtering"
@@ -2533,15 +2533,15 @@ msgstr "<strong>gzip</strong> Komprimierung deaktivieren"
2533
 
2534
  #: app/model/settings.php:902
2535
  msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2536
- msgstr "Verwende diese Option, wenn der Kalender nicht \"responsive\" angelegt ist. Das Problem ist <a href=\"http://support.time.ly/disable-gzip-compression/\">hier genauer beschrieben</a>. (Ab Version 2.1 aufwärts ist gzip standardmäßig aus Kompatibilitätsgründen deaktiviert.)"
2537
 
2538
  #: app/model/settings.php:914
2539
  msgid "Use frontend rendering."
2540
- msgstr "Verwende frontend rendering."
2541
 
2542
  #: app/model/settings.php:917
2543
  msgid "Renders calendar views on the client rather than the server; can improve performance."
2544
- msgstr "Der Kalender wird im client gerendet und nicht servseitig; kann die Performance verbessern."
2545
 
2546
  #: app/model/settings.php:493 app/view/calendar/widget.php:128
2547
  msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
@@ -2553,7 +2553,7 @@ msgstr "Standard Startdatum des Kalenders (optional)"
2553
 
2554
  #: app/model/settings.php:519
2555
  msgid "Agenda pages show at most"
2556
- msgstr "Liste - Seiten maximal anzeigen"
2557
 
2558
  #: app/model/settings.php:532
2559
  msgid "Week/Day view starts at"
@@ -2607,7 +2607,7 @@ msgstr "Schaltflächen <strong>Abonnieren</strong> und <strong>Zum Kalender hinz
2607
 
2608
  #: app/model/settings.php:649
2609
  msgid "Hide <strong>Get a Timely Calendar</strong> button"
2610
- msgstr "Verstecke <strong>Get a Timely Calendar</strong>"
2611
 
2612
  #: app/model/settings.php:661
2613
  msgid " Hide <strong>Google Maps</strong> until clicked"
@@ -2619,7 +2619,7 @@ msgstr "<strong>Anheften des Filtermenüs</strong> am oberen Fensterrand, für p
2619
 
2620
  #: app/model/settings.php:676
2621
  msgid "Only applies to first visible calendar found on the page."
2622
- msgstr "Trifft nur für den ersten, sichtbaren Kalender der Seite zu."
2623
 
2624
  #: app/model/settings.php:688
2625
  msgid "Offset affixed filter bar vertically by"
@@ -2639,23 +2639,23 @@ msgstr "Nur für Smartphones (< 768px)"
2639
 
2640
  #: app/model/api.php:456
2641
  msgid "Not available"
2642
- msgstr ""
2643
 
2644
  #: app/model/api.php:659
2645
  msgid "%s.<br/>Detail: %s."
2646
- msgstr ""
2647
 
2648
  #: app/model/api.php:664
2649
  msgid "API URL: %s.<br/>Detail: %s - %s"
2650
- msgstr ""
2651
 
2652
  #: app/model/api.php:672
2653
  msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2654
- msgstr ""
2655
 
2656
  #: app/model/api.php:679
2657
  msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2658
- msgstr ""
2659
 
2660
  #: app/model/event/parent.php:186
2661
  msgid "Edit &#8220;%s&#8221;"
@@ -2667,7 +2667,7 @@ msgstr "Standard Veranstaltung"
2667
 
2668
  #: app/model/review.php:169
2669
  msgid "Feedback provided by user"
2670
- msgstr ""
2671
 
2672
  #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2673
  msgid "Name"
@@ -2675,15 +2675,15 @@ msgstr "Name"
2675
 
2676
  #: app/model/review.php:173
2677
  msgid "E-mail"
2678
- msgstr ""
2679
 
2680
  #: app/model/review.php:175
2681
  msgid "Site URL"
2682
- msgstr ""
2683
 
2684
  #: app/model/review.php:177
2685
  msgid "Message"
2686
- msgstr ""
2687
 
2688
  #: app/model/settings.php:401
2689
  #: lib/html/element/setting/calendar-page-selector.php:50
@@ -2740,139 +2740,139 @@ msgstr "Das Enddatum muss später als das Anfangsdatum gesetzt sein."
2740
 
2741
  #: app/controller/javascript.php:517
2742
  msgid "For week and day view, you must select an interval of at least 6 hours."
2743
- msgstr "Für die Wochen und Tagesansicht muss ein Intervall von mindestens 6 Stunden gesetzt werden."
2744
 
2745
  #: app/model/api.php:40
2746
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2747
- msgstr ""
2748
 
2749
  #: app/model/api.php:41
2750
  msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2751
- msgstr ""
2752
 
2753
  #: app/model/api.php:42
2754
  msgid "We were unable to Sign you Up for Time.ly Ticketing"
2755
- msgstr ""
2756
 
2757
  #: app/model/api.php:43
2758
  msgid "We were unable to Sign you In for Time.ly Ticketing"
2759
- msgstr ""
2760
 
2761
  #: app/model/api.php:44
2762
  msgid "We were unable to create the Event on Time.ly Ticketing"
2763
- msgstr ""
2764
 
2765
  #: app/model/api.php:45
2766
  msgid "We were unable to update the Event on Time.ly Ticketing"
2767
- msgstr ""
2768
 
2769
  #: app/model/api.php:46
2770
  msgid "The event has the option Tickets selected but any ticket was added."
2771
- msgstr ""
2772
 
2773
  #: app/model/api.php:47
2774
  msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2775
- msgstr ""
2776
 
2777
  #: app/model/api.php:48
2778
  msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2779
- msgstr ""
2780
 
2781
  #: app/model/api.php:49
2782
  msgid "Payment preferences were not saved."
2783
- msgstr ""
2784
 
2785
  #: app/model/api.php:50
2786
  msgid "Payment preferences were saved."
2787
- msgstr ""
2788
 
2789
  #: app/model/api.php:51
2790
  msgid "Event not found inside the database."
2791
- msgstr ""
2792
 
2793
  #: app/model/api.php:52
2794
  msgid "We were unable to get the Sales information from Time.ly Ticketing"
2795
- msgstr ""
2796
 
2797
  #: app/model/api.php:446
2798
  msgid "Past Event"
2799
- msgstr ""
2800
 
2801
  #: app/model/api.php:448
2802
  msgid "Event closed"
2803
- msgstr ""
2804
 
2805
  #: app/model/api.php:450
2806
  msgid "Not available yet"
2807
- msgstr ""
2808
 
2809
  #: app/model/api.php:452
2810
  msgid "Sale closed"
2811
- msgstr ""
2812
 
2813
  #: app/model/api.php:454
2814
  msgid "Sold out"
2815
- msgstr ""
2816
 
2817
  #: app/controller/javascript.php:484
2818
  msgid "Report"
2819
- msgstr ""
2820
 
2821
  #: app/controller/javascript.php:485
2822
  msgid "Sale dates"
2823
- msgstr ""
2824
 
2825
  #: app/controller/javascript.php:486
2826
  msgid "Limits"
2827
- msgstr ""
2828
 
2829
  #: app/controller/javascript.php:487
2830
  msgid "Actions"
2831
- msgstr ""
2832
 
2833
  #: app/controller/javascript.php:488
2834
  msgid "Sold:"
2835
- msgstr ""
2836
 
2837
  #: app/controller/javascript.php:489
2838
  msgid "Left:"
2839
- msgstr ""
2840
 
2841
  #: app/controller/javascript.php:490
2842
  msgid "Start:"
2843
- msgstr ""
2844
 
2845
  #: app/controller/javascript.php:491
2846
  msgid "End:"
2847
- msgstr ""
2848
 
2849
  #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2850
  msgid "Min:"
2851
- msgstr ""
2852
 
2853
  #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2854
  msgid "Max:"
2855
- msgstr ""
2856
 
2857
  #: app/controller/javascript.php:494
2858
  msgid "Attendees"
2859
- msgstr ""
2860
 
2861
  #: app/controller/javascript.php:495
2862
  msgid "Hide Attendees"
2863
- msgstr ""
2864
 
2865
  #: app/controller/javascript.php:496
2866
  msgid "Attendees List"
2867
- msgstr ""
2868
 
2869
  #: app/controller/javascript.php:497
2870
  msgid "Guest Name"
2871
- msgstr ""
2872
 
2873
  #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2874
  msgid "Status"
2875
- msgstr ""
2876
 
2877
  #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2878
  #: app/view/event/ticket.php:71
@@ -2881,7 +2881,7 @@ msgstr "E-Mail"
2881
 
2882
  #: app/controller/javascript.php:500
2883
  msgid "No attendees for this ticket type."
2884
- msgstr ""
2885
 
2886
  #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2887
  #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
@@ -2890,19 +2890,19 @@ msgstr "Bearbeiten"
2890
 
2891
  #: app/controller/javascript.php:502
2892
  msgid "Code"
2893
- msgstr ""
2894
 
2895
  #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2896
  msgid "Unlimited"
2897
- msgstr ""
2898
 
2899
  #: app/controller/javascript.php:506
2900
  msgid "Your message has been sent. Thank you for your feedback."
2901
- msgstr ""
2902
 
2903
  #: app/controller/javascript.php:507
2904
  msgid "Your message has not been sent. Please try again or contact us."
2905
- msgstr ""
2906
 
2907
  #: app/controller/javascript.php:405
2908
  msgid "Please enter a valid iCalendar URL."
@@ -2910,7 +2910,7 @@ msgstr "Bitte eine gültige iCalendar-URL eingeben."
2910
 
2911
  #: app/controller/javascript.php:408
2912
  msgid "Please enter a valid email address."
2913
- msgstr "Bitte eine gültige E-Mail Adresse eingeben."
2914
 
2915
  #: app/controller/javascript.php:410
2916
  msgid "Choose Image"
@@ -2922,7 +2922,7 @@ msgstr "Der angegebene Wert hat keine gültige CSS Länge."
2922
 
2923
  #: app/controller/javascript.php:416
2924
  msgid "Are you sure you want to reset your theme options to their default values?"
2925
- msgstr "Bist du sicher dass die Theme Einstellungen auf ihre Standardwerte zurückgesetzt werden sollen?"
2926
 
2927
  #: app/controller/javascript.php:419
2928
  msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
@@ -2942,11 +2942,11 @@ msgstr "Wenn das \"Koordinaten angeben\" Kontrollkästchen ausgewählt wurde, mu
2942
 
2943
  #: app/controller/javascript.php:431
2944
  msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2945
- msgstr ""
2946
 
2947
  #: app/controller/javascript.php:434
2948
  msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2949
- msgstr "Die URL, die du bei <b>Veranstaltungspreis und Karten</b> &gt; <b>Kartenverkaufs-URL</b> angegeben hast, ist ungültig."
2950
 
2951
  #: app/controller/javascript.php:437
2952
  msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
@@ -2958,7 +2958,7 @@ msgstr "Laden&hellip;"
2958
 
2959
  #: app/controller/javascript.php:443
2960
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2961
- msgstr ""
2962
 
2963
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2964
  msgid "Preview:"
@@ -2970,23 +2970,23 @@ msgstr "Lade Vorschau&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\">
2970
 
2971
  #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2972
  msgid "Ticketing Details"
2973
- msgstr ""
2974
 
2975
  #: app/controller/javascript.php:480
2976
  msgid "Hide Ticketing Details"
2977
- msgstr ""
2978
 
2979
  #: app/controller/javascript.php:481
2980
  msgid "Loading tickets details..."
2981
- msgstr ""
2982
 
2983
  #: app/controller/javascript.php:482
2984
  msgid "Type and price"
2985
- msgstr ""
2986
 
2987
  #: app/controller/javascript.php:483
2988
  msgid "Info"
2989
- msgstr ""
2990
 
2991
  #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2992
  #: app/view/admin/add-ons.php:27
@@ -3012,4 +3012,4 @@ msgstr "Zuerst muss eine Kalender-Seite ausgewählt werden. Danach kann das Supe
3012
 
3013
  #: app/controller/javascript.php:402
3014
  msgid "This feed is already being imported."
3015
- msgstr "Dieses Feed wird bereits importiert."
1
+ # Translation of 2.3 in Swiss German
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-29 20:05:45+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
140
  #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
  #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
  msgid "Input field border (focus)"
143
+ msgstr "Rand des Eingabefelds (focus)"
144
 
145
  #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
  #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
  msgid "Input field background (disabled)"
148
+ msgstr "Hintergrund des Eingabefelds (deaktiviert)"
149
 
150
  #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
  #: public/themes-ai1ec/vortex/less/user_variables.php:119
155
  #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
  #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
  msgid "Dropdown list background"
158
+ msgstr "Hintergrund der Dropdown-Liste"
159
 
160
  #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
  #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
  msgid "Dropdown list border"
163
+ msgstr "Rand der Dropdown-Liste"
164
 
165
  #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
  #: public/themes-ai1ec/vortex/less/user_variables.php:137
199
 
200
  #: public/admin/themes.php:18
201
  msgid "Current Calendar Theme"
202
+ msgstr "Aktuelles Kalender-Theme"
203
 
204
  #: public/admin/themes.php:21
205
  msgid "Current theme preview"
206
+ msgstr "Aktuelle Theme-Vorschau"
207
 
208
  #: public/admin/themes.php:47
209
  msgid "Available Calendar Themes"
210
+ msgstr "Verfügbare Kalender-Themes"
211
 
212
  #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
  #: public/themes-ai1ec/vortex/less/user_variables.php:5
237
  #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
  #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
  msgid "Base font"
240
+ msgstr "Standard-Schriftart"
241
 
242
  #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
  #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
  msgid "Base font size"
245
+ msgstr "Standard Schriftgrösse"
246
 
247
  #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
  #: public/themes-ai1ec/vortex/less/user_variables.php:47
304
  "Hier kannst du einrichten, welche anderen Kalender dein Kalender abonniert.\n"
305
  " Alle Kalender, die einen iCalender-Feed (.ics) bereitstellen, können hinzugefügt werden.\n"
306
  " Trage die Feed URL(s) unten ein und die Veranstaltungen dieser Feeds werden \n"
307
+ " regelmässig importiert."
308
 
309
  #: public/admin/plugins/ics/display_feeds.php:14
310
  msgid "Check for new events"
328
 
329
  #: public/admin/plugins/ics/display_feeds.php:96
330
  msgid "Update subscription"
331
+ msgstr "Abonnement erneuern"
332
 
333
  #: public/admin/row_custom.php:3
334
  msgid "Custom dates:"
335
+ msgstr "Benutzerdefinierte Tage:"
336
 
337
  #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
  #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
364
 
365
  #: public/admin/themes-install.php:4
366
  msgid "The active theme is broken. Reverting to the default theme."
367
+ msgstr "Das aktive Theme ist defekt. Standard-Theme wird ausgewählt."
368
 
369
  #: public/admin/themes-install.php:13
370
  msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
+ msgstr "Neues Theme wurde aktiviert. Dieses Theme unterstützt Widgets, bitte konfiguriere sie auf der <a href=\"%s\">Widget-Einstellungsseite</a>."
372
 
373
  #: public/admin/calendar_tasks.php:24
374
  msgid "Manage Events"
396
 
397
  #: public/admin/calendar_tasks.php:63
398
  msgid "Manage Calendar Feeds"
399
+ msgstr "Kalender-Feeds verwalten"
400
 
401
  #: public/admin/calendar_tasks.php:66
402
  msgid "Subscribe to other calendars."
444
 
445
  #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
  msgid "On refresh, preserve previously imported events that are missing from the feed"
447
+ msgstr "Behalte beim Aktualisieren die zuvor importierten Veranstaltungen, die im Feed fehlen"
448
 
449
  #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
  msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
+ msgstr "Raten der Zeitzone von Veranstaltungen, bei denen keine Zeitzone angegeben ist; empfohlen für die Feeds von Google-Kalendern"
452
 
453
  #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
  msgid "Assign default time zone to events in UTC"
455
+ msgstr "Weise den Veranstaltung in UTC-Zeitzone die Standard-Zeitzone zu"
456
 
457
  #: public/admin/box_support.php:19
458
  msgid "Get Add-ons"
540
 
541
  #: public/admin/box_eventbrite.php:68
542
  msgid "The price for this event's first ticket will be taken from the Cost field above."
543
+ msgstr "Der Preis für das erste Ticket dieser Veranstaltung wird von dem Kostenfeld oben übernommen."
544
 
545
  #: public/admin/box_eventbrite.php:75
546
  msgid "Quantity"
588
 
589
  #: public/admin/box_repeat.php:36
590
  msgid "Custom"
591
+ msgstr "Benutzerdefiniert"
592
 
593
  #: public/admin/box_repeat.php:72
594
  msgid "End"
622
 
623
  #: public/admin/box_event_cost.php:228
624
  msgid "Status:"
625
+ msgstr "Status:"
626
 
627
  #: public/admin/box_event_cost.php:235
628
  msgid "Open"
629
+ msgstr "Offen"
630
 
631
  #: public/admin/box_event_cost.php:239
632
  msgid "Closed"
633
+ msgstr "geschlossen"
634
 
635
  #: public/admin/box_event_cost.php:254
636
  msgid "Add New Ticket Type"
637
+ msgstr "Neuen Ticket-Typ hinzufügen"
638
 
639
  #: public/admin/box_event_cost.php:274
640
  msgid "Tickets URL:"
641
+ msgstr "Tickets URL:"
642
 
643
  #: public/admin/box_event_location.php:6
644
  msgid "Event location details"
670
 
671
  #: public/admin/box_eventbrite.php:1
672
  msgid "Eventbrite Ticketing"
673
+ msgstr "Eventbrite Buchung"
674
 
675
  #: public/admin/box_eventbrite.php:7
676
  msgid "Register this event with Eventbrite.com?"
714
 
715
  #: public/admin/box_event_contact.php:56
716
  msgid "Website URL:"
717
+ msgstr "Website:"
718
 
719
  #: public/admin/box_event_cost.php:6
720
  msgid "Event cost and Tickets"
721
+ msgstr "Veranstaltungspreis und Tickets"
722
 
723
  #: public/admin/box_event_cost.php:20
724
  msgid "Ticket options not available - event imported from external calendar."
725
+ msgstr "Ticket-Optionen nicht verfügbar - Event wurde von externem Kalender importiert."
726
 
727
  #: public/admin/box_event_cost.php:28
728
  msgid "Free event"
730
 
731
  #: public/admin/box_event_cost.php:41
732
  msgid "External Tickets URL"
733
+ msgstr "Externe Ticket-URL"
734
 
735
  #: public/admin/box_event_cost.php:52
736
  msgid "Ticketing allows you to sell tickets directly to the users."
737
+ msgstr "Ticketing erlaubt Dir Tickets direkt an den Nutzer zu verkaufen."
738
 
739
  #: public/admin/box_event_cost.php:55
740
  msgid "Sign Up for Timely Network"
741
+ msgstr "Melde Dich an für Timely Network"
742
 
743
  #: public/admin/box_event_cost.php:80
744
  msgid "Remove Ticket Type"
745
+ msgstr "Entferne Ticket-Typ"
746
 
747
  #: public/admin/box_event_cost.php:101
748
  msgid "Ex.: Regular Ticket"
749
+ msgstr "Bsp.: Normales Ticket"
750
 
751
  #: public/admin/box_event_cost.php:105
752
  msgid "Description:"
754
 
755
  #: public/admin/box_event_cost.php:111
756
  msgid "(Optional)"
757
+ msgstr "(optional)"
758
 
759
  #: public/admin/box_event_cost.php:115
760
  msgid "Price:"
761
+ msgstr "Preis:"
762
 
763
  #: public/admin/box_event_cost.php:124
764
  msgid "USD"
765
+ msgstr "US-Dollar"
766
 
767
  #: public/admin/box_event_cost.php:128
768
  msgid "Limits:"
769
+ msgstr "Einschränkungen:"
770
 
771
  #: public/admin/box_event_cost.php:131
772
  msgid "This fields are required."
773
+ msgstr "Pflichtfeld"
774
 
775
  #: public/admin/box_event_cost.php:156
776
  msgid "Quantity:"
777
+ msgstr "Menge:"
778
 
779
  #: public/admin/box_event_cost.php:180
780
  msgid "Available:"
781
+ msgstr "Verfügbar:"
782
 
783
  #: public/admin/box_event_cost.php:185
784
  msgid "Immediately"
785
+ msgstr "direkt"
786
 
787
  #: public/admin/box_event_cost.php:190
788
  msgid "From:"
789
+ msgstr "Von:"
790
 
791
  #: public/admin/box_event_cost.php:207
792
  msgid "Till:"
793
+ msgstr "Bis:"
794
 
795
  #: public/admin/box_ask_customer_review.php:42
796
  #: public/admin/box_ask_customer_review.php:75
797
  msgid "No, thanks"
798
+ msgstr "Nein, danke!"
799
 
800
  #: public/admin/box_ask_customer_review.php:50
801
  #: public/admin/box_ask_customer_review.php:84
802
  msgid "Ok, sure!"
803
+ msgstr "Ok, klar!"
804
 
805
  #: public/admin/box_ask_customer_review.php:66
806
  msgid "Would you mind giving us some feedback?"
807
+ msgstr "Würdest Du uns ein Feedback geben?"
808
 
809
  #: public/admin/box_ask_customer_review.php:101
810
  msgid "Please provide some feedback"
811
+ msgstr "Bitte stelle ein Feedback zur Verfügung"
812
 
813
  #: public/admin/box_ask_customer_review.php:108
814
  msgid "Message:"
815
+ msgstr "Nachricht:"
816
 
817
  #: public/admin/box_ask_customer_review.php:121
818
  msgid "Name:"
819
+ msgstr "Name:"
820
 
821
  #: public/admin/box_ask_customer_review.php:136
822
  #: public/admin/box_event_contact.php:43
825
 
826
  #: public/admin/box_ask_customer_review.php:143
827
  msgid "E-mail is invalid."
828
+ msgstr "Die E-Mail-Adresse ist ungültig."
829
 
830
  #: public/admin/box_ask_customer_review.php:154
831
  msgid "Site URL:"
832
+ msgstr "Website:"
833
 
834
  #: public/admin/box_ask_customer_review.php:161
835
  msgid "Site URL is invalid."
836
+ msgstr "Adresse der Website ist ungültig."
837
 
838
  #: public/admin/box_ask_customer_review.php:173
839
  msgid "Thank you for being our customer,"
840
+ msgstr "Vielen Dank für Deinen Einkauf,"
841
 
842
  #: public/admin/box_ask_customer_review.php:174
843
  msgid "Aristotel Dascal, VP of Product, Time.ly"
844
+ msgstr "Aristotel Dascal, VP of Product, Time.ly"
845
 
846
  #: public/admin/box_ask_customer_review.php:180
847
  msgid "Sending..."
848
+ msgstr "Übertrage ..."
849
 
850
  #: public/admin/box_ask_customer_review.php:181
851
  msgid "Send Message"
852
+ msgstr "Sende Nachricht"
853
 
854
  #: public/admin/box_event_children.php:12
855
  msgid "Base recurrence event"
885
 
886
  #: lib/theme/loader.php:631
887
  msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
+ msgstr "Dein Kalender-Theme wurde aufgrund eines Render-Problems auf Vortex geändert. Für weitere Informationen aktiviere den Debug-Modus, indem du folgende Zeile zur Datei <code>wp-config.php</code> von WordPress hinzufügst:<pre>define( 'AI1EC_DEBUG', true );</pre>"
889
 
890
  #: lib/theme/search.php:253
891
  msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
897
 
898
  #: lib/twig/environment.php:115
899
  msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
+ msgstr "Der Kalender wurde aufgrund eines Render-Fehlers vorübergehend deaktiviert. Bitte <a href=\"javascript:location.reload();\">lade die Seite neu</a>."
901
 
902
  #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
  msgid "Title:"
945
 
946
  #: public/admin/box_ask_customer_review.php:5
947
  msgid "Enjoying All-in-One Event Calendar?"
948
+ msgstr "Gefällt Dir All-in-One Event Calendar?"
949
 
950
  #: public/admin/box_ask_customer_review.php:13
951
  msgid "Not really"
952
+ msgstr "Nicht wirklich"
953
 
954
  #: public/admin/box_ask_customer_review.php:20
955
  msgid "Yes!"
956
+ msgstr "Ja!"
957
 
958
  #: public/admin/box_ask_customer_review.php:33
959
  msgid "How about a rating on the Wordpress?"
960
+ msgstr "Wie wäre es mit einem Rating auf Wordpress?"
961
 
962
  #: lib/recurrence/rule.php:397
963
  msgid "Every %d weeks"
1005
 
1006
  #: lib/robots/helper.php:105
1007
  msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
+ msgstr "<strong>FEHLER:</strong> Fehler beim Speichern von <strong>robots.txt</strong> auf dem Server, die Datei wurde nicht erstellt."
1009
 
1010
  #: lib/theme/list.php:152
1011
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
+ msgstr "Derzeit ist für diese Seite nur ein Theme freigegeben. Kontaktiere den Netzwerk-Administrator für eine <a href=\"%1$s\">Freigabe</a> oder <a href=\"%2$s\">installiere</a> weitere Themes."
1013
 
1014
  #: lib/theme/list.php:164
1015
  msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
+ msgstr "Derzeit ist für diese Seite nur ein Theme freigegeben. Kontaktiere den Netzwerk-Administrator für eine <a href=\"%1$s\">Freigabe</a> zusätzlicher Themes."
1017
 
1018
  #: lib/theme/list.php:179
1019
  msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1040
  #. title, 5: parent_theme
1041
  #: lib/theme/list.php:293
1042
  msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
+ msgstr "Die Template.Dateien befinden sich in <code>%2$s</code>. Die Stylesheet.Dateien befinden sich in <code>%3$s</code>. <strong>%4$s</strong> nutzt Templates von <strong>%5$s</strong>. Veränderungen an den Templates beeinflussen beide Themes. "
1044
 
1045
  #: lib/theme/list.php:308
1046
  msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1057
  #: lib/post/custom-type.php:85
1058
  msgctxt "Event categories taxonomy"
1059
  msgid "Categories"
1060
+ msgstr "Kategorien"
1061
 
1062
  #: lib/post/custom-type.php:86
1063
  msgctxt "Event categories taxonomy (singular)"
1064
  msgid "Category"
1065
+ msgstr "Kategorie"
1066
 
1067
  #: lib/post/custom-type.php:87
1068
  msgctxt "Event categories menu item"
1069
  msgid "Organize"
1070
+ msgstr "Organisieren"
1071
 
1072
  #: lib/post/custom-type.php:94
1073
  msgctxt "Event tags taxonomy"
1074
  msgid "Tags"
1075
+ msgstr "Schlagworte"
1076
 
1077
  #: lib/post/custom-type.php:95
1078
  msgctxt "Event tags taxonomy (singular)"
1079
  msgid "Tag"
1080
+ msgstr "Schlagwort"
1081
 
1082
  #: lib/post/custom-type.php:102
1083
  msgctxt "Event feeds taxonomy"
1164
 
1165
  #: lib/notification/admin.php:182
1166
  msgid "Got it – dismiss this"
1167
+ msgstr "Verstanden – ausblenden"
1168
 
1169
  #: lib/post/custom-type.php:26
1170
  msgctxt "Custom post type name"
1230
 
1231
  #: lib/import-export/ics.php:831
1232
  msgid "Tickets: "
1233
+ msgstr "Tickets:"
1234
 
1235
  #: lib/html/element/setting/html.php:41
1236
  msgid "Day view:"
1318
 
1319
  #: lib/exception/handler.php:395
1320
  msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
+ msgstr "All-In-One Event Kalender wurde aufgrund eines Fehlers deaktiviert:"
1322
 
1323
  #: lib/exception/handler.php:404
1324
  msgid "Try reactivating plugin"
1325
+ msgstr "Versuche das Plugin wieder zu aktivieren"
1326
 
1327
  #: lib/exception/handler.php:576
1328
  msgid "Toggle error details"
1329
+ msgstr "Fehlerdetails ausblenden/verstecken"
1330
 
1331
  #: lib/exception/handler.php:577
1332
  msgid "Error Details:"
1333
+ msgstr "Fehlerdetails:"
1334
 
1335
  #: lib/factory/html.php:133
1336
  msgid "Choose a date using calendar"
1346
 
1347
  #: lib/html/element/setting/cache.php:39
1348
  msgid "Templates cache is not writable"
1349
+ msgstr "Vorlagen-Cache ist nicht beschreibbar"
1350
 
1351
  #: lib/html/element/setting/cache.php:40
1352
  msgid "Templates cache is writable"
1353
+ msgstr "Vorlagen-Cache ist beschreibbar"
1354
 
1355
  #: lib/html/element/setting/cache.php:41
1356
  msgid "Checking..."
1402
 
1403
  #: lib/css/frontend.php:239
1404
  msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
+ msgstr "Das Kompilieren des CSS ist fehlgeschlagen, weil du nicht über genügend freien Speicher verfügst (es werden mindestens %s benötigt). Dein Kalender wird gerendert oder ohne CSS nicht korrekt funktionieren. Bitte lese <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">diesen Artikel</a> für Informationen zum Erhöhen des PHP-Speicherlimits."
1406
 
1407
  #: lib/css/frontend.php:266
1408
  msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1414
 
1415
  #: lib/css/frontend.php:300
1416
  msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
+ msgstr "Theme-Einstellungen wurden erfolgreich auf die Standardwerte zurückgesetzt. <a href='%s'>Seite besuchen</a>"
1418
 
1419
  #: lib/css/frontend.php:307
1420
  msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1462
 
1463
  #: lib/environment/check.php:55
1464
  msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
+ msgstr "Bitte eine Option aus der Dropdown-Liste <strong>Kalender-Seite</strong> wählen."
1466
 
1467
  #: lib/environment/check.php:68
1468
  msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1474
 
1475
  #: lib/environment/check.php:196
1476
  msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
+ msgstr "Das Add-on <strong>%s</strong> muss zumindest auf Version %s aktualisiert werden, um die Kompatibilität mit dem Kalender zu gewährleisten."
1478
 
1479
  #: lib/environment/check.php:197
1480
  msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
+ msgstr "Wenn du die Update-Hinweise unten nicht sehen kannst, stelle sicher, dass du die <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">Lizenzschlüssel korrekt eingegeben</a> hast. Alternativ kannst du in <a href=\"https://time.ly/your-account/\">deinem Account</a> die aktuelle Version der Add-ons herunterladen und sie <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">manuell aktualisieren</a>. Bitte wende dich an <a href=\"https://time.ly/forums/\">das Forum</a>, wenn die Fragen hast. Wir helfen dir gerne."
1482
 
1483
  #: lib/exception/handler.php:176
1484
  msgid "The add-on \"%s\" has been disabled due to an error:"
1485
+ msgstr "Das Add-on \"%s\" wurde aufgrund eines Fehlers deaktiviert:"
1486
 
1487
  #: lib/calendar-feed/ics.php:367
1488
  msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
+ msgstr "Willst du die aus dem Kalender importierten Events behalten oder verwerfen?"
1490
 
1491
  #: lib/calendar-feed/ics.php:373
1492
  msgid "Removing ICS Feed"
1502
 
1503
  #: lib/calendar-feed/ics.php:519
1504
  msgid "Oh, submission was not accepted."
1505
+ msgstr "Oh, die Eingabe wurde nicht akzeptiert."
1506
 
1507
  #: lib/calendar-feed/ics.php:699
1508
  msgid "Deleted %d events"
1514
 
1515
  #: lib/captcha/provider/nocaptcha.php:31
1516
  msgid "noCAPTCHA public key:"
1517
+ msgstr "Öffentlicher Schlüssel für noCAPTCHA:"
1518
 
1519
  #: lib/captcha/provider/nocaptcha.php:47
1520
  msgid "noCAPTCHA private key:"
1521
+ msgstr "Privater Schlüssel für noCAPTCHA:"
1522
 
1523
  #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
  msgid "Please try verifying you are human again."
1525
+ msgstr "Bitte versuche erneut dich als Mensch zu verifizieren."
1526
 
1527
  #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
  msgid "There was an error reading the human verification data. Please try again."
1529
+ msgstr "Bei der Verarbeitung der Verifizierungsdaten ist ein Fehler aufgetreten. Bitte versuche es erneut."
1530
 
1531
  #: lib/captcha/provider/recaptcha.php:32
1532
  msgid "reCAPTCHA public key:"
1533
+ msgstr "Öffentlicher Schlüssel für reCAPTCHA:"
1534
 
1535
  #: lib/captcha/provider/recaptcha.php:48
1536
  msgid "reCAPTCHA private key:"
1537
+ msgstr "Privater Schlüssel für reCAPTCHA:"
1538
 
1539
  #: lib/captcha/provider/recaptcha.php:66
1540
  msgid "Human verification"
1541
+ msgstr "Verifizierung als Mensch"
1542
 
1543
  #: lib/captcha/provider/recaptcha.php:67
1544
  msgid "Loading reCAPTCHA..."
1545
+ msgstr "Lade reCAPTCHA..."
1546
 
1547
  #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
  #: lib/clone/renderer-helper.php:45
1567
 
1568
  #: lib/compatibility/check.php:101
1569
  msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
+ msgstr "Du hast Frontend-Rendering aktiviert und verwendest ein benutzerdefiniertes Kalender-Theme. Wenn deinn Theme Frontend-Rendering nicht unterstützt, funktioniert der Kalender möglicherweise nicht korrekt."
1571
 
1572
  #: app/view/event/single.php:123
1573
  msgid "Tickets:"
1574
+ msgstr "Tickets:"
1575
 
1576
  #: app/view/event/single.php:124
1577
  msgid "Free"
1579
 
1580
  #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
  msgid "Buy Tickets"
1582
+ msgstr "Tickets kaufen"
1583
 
1584
  #: app/view/event/single.php:150
1585
  msgid "Edit this occurrence (%s)"
1587
 
1588
  #: app/view/event/single.php:195
1589
  msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
+ msgstr "Dieser Beitrag ist ein Replikat vom <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> Kalender-Feed</a> einer anderen Seite."
1591
 
1592
  #: app/view/event/single.php:206
1593
  msgid "View original"
1621
 
1622
  #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
  msgid "Excludes: "
1624
+ msgstr "Ausschlüsse:"
1625
 
1626
  #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
  msgid "Repeats"
1628
+ msgstr "Wiederholungen"
1629
 
1630
  #: lib/calendar-feed/ics.php:38
1631
  msgid "ICS"
1637
 
1638
  #: lib/calendar-feed/ics.php:174
1639
  msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
+ msgstr "Ein Systemfehler ist beim Abrufen der Kalenderdaten aufgetreten. Das Plugin funktioniert deshalb nicht ordnungsgemäss. Die folgende Meldung gibt einen Hinweis auf die Ursache: %s"
1641
 
1642
  #: lib/calendar-feed/ics.php:181
1643
  msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1651
 
1652
  #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
  msgid "Invalid ICS feed ID"
1654
+ msgstr "Ungültige ID für ICS-Feed"
1655
 
1656
  #: lib/calendar-feed/ics.php:350
1657
  msgid "Categories (optional)"
1667
 
1668
  #: app/view/event/content.php:125
1669
  msgid "Calendar"
1670
+ msgstr "Kalender"
1671
 
1672
  #: app/view/event/content.php:126
1673
  msgid "View all events"
1729
 
1730
  #: app/view/event/single.php:78
1731
  msgid "Event was created in the %s time zone"
1732
+ msgstr "Der Termin wurde in der Zeitzone %s erstellt"
1733
 
1734
  #: app/view/event/single.php:114
1735
  msgid "Add to Calendar"
1788
 
1789
  #: app/view/calendar/widget.php:80
1790
  msgid "Choose how to limit the upcoming events"
1791
+ msgstr "Wähle, wie du die bevorstehenden Veranstaltungen beschränken möchtest"
1792
 
1793
  #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
  msgid "Events"
1800
 
1801
  #: app/view/calendar/widget.php:106
1802
  msgid "Number of events to show"
1803
+ msgstr "Anzahl der Veranstaltungen, die angezeigt werden sollen"
1804
 
1805
  #: app/view/calendar/widget.php:115
1806
  msgid "Number of days to show"
1808
 
1809
  #: app/view/calendar/widget.php:124
1810
  msgid "Show events filtered for the following tags/categories"
1811
+ msgstr "Zeige Veranstaltungen, die dem folgenden Filter für Schlagworte/Kategorien entsprechen"
1812
 
1813
  #: app/view/calendar/widget.php:141
1814
  msgid "Show the subscribe button in the widget"
1815
+ msgstr "Zeige die Abonnieren-Schaltfläche im Widget an"
1816
 
1817
  #: app/view/calendar/widget.php:370
1818
  msgid "There are no upcoming events."
1844
 
1845
  #: app/view/calendar/subscribe-button.php:22
1846
  msgid "Add to Timely Calendar"
1847
+ msgstr "Zum Timely-Kalender hinzufügen"
1848
 
1849
  #: app/view/calendar/subscribe-button.php:23
1850
  msgid "Add to Google"
1856
 
1857
  #: app/view/calendar/subscribe-button.php:25
1858
  msgid "Add to Apple Calendar"
1859
+ msgstr "Zum Apple-Kalender hinzufügen"
1860
 
1861
  #: app/view/calendar/subscribe-button.php:26
1862
  msgid "Add to other calendar"
1864
 
1865
  #: app/view/calendar/subscribe-button.php:29
1866
  msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
+ msgstr "Die URL deines Timely-Kalenders kopieren oder anklicken, um ihn zu deinem Rich-Text-Kalender hinzuzufügen"
1868
 
1869
  #: app/view/calendar/subscribe-button.php:30
1870
  msgid "Subscribe to this calendar in your Google Calendar"
1871
+ msgstr "Diesen Kalender in deinem Google-Kalender abonnieren"
1872
 
1873
  #: app/view/calendar/subscribe-button.php:31
1874
  msgid "Subscribe to this calendar in MS Outlook"
1875
+ msgstr "Diesen Kalender im MS-Outlook-Kalender abonnieren"
1876
 
1877
  #: app/view/calendar/subscribe-button.php:32
1878
  msgid "Subscribe to this calendar in Apple Calendar/iCal"
1918
 
1919
  #: app/view/admin/tickets.php:86
1920
  msgid "Sales"
1921
+ msgstr "Verkäufe"
1922
 
1923
  #: app/view/admin/tickets.php:87
1924
  msgid "How do you want the tickets revenue to be sent to you?"
1925
+ msgstr "Wie sollen wir Dir die Ticketeinnahmen zusenden?"
1926
 
1927
  #: app/view/admin/tickets.php:88
1928
  msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
+ msgstr "Falls keine Zahlungsart ausgewählt ist, wird Time.ly die Zahlungen in Deinem Namen annehmen. Kontaktiere bitte payouts@time.ly für ausstehende Zahluingen."
1930
 
1931
  #: app/view/admin/tickets.php:91
1932
  msgid "Cheque"
1933
+ msgstr "Scheck"
1934
 
1935
  #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
  msgid "Paypal"
1938
 
1939
  #: app/view/admin/tickets.php:94
1940
  msgid "Save Changes"
1941
+ msgstr "Änderungen speichern"
1942
 
1943
  #: app/view/admin/tickets.php:95
1944
  msgid "Date"
1945
+ msgstr "Datum"
1946
 
1947
  #: app/view/admin/tickets.php:96
1948
  msgid "Event"
1949
+ msgstr "Veranstaltung"
1950
 
1951
  #: app/view/admin/tickets.php:97
1952
  msgid "Purchaser"
1953
+ msgstr "Käufer"
1954
 
1955
  #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
  #: public/admin/box_event_cost.php:35
1957
  msgid "Tickets"
1958
+ msgstr "Tickets"
1959
 
1960
  #: app/view/admin/tickets.php:101
1961
  msgid "Total"
1962
+ msgstr "Gesamt"
1963
 
1964
  #: app/view/admin/tickets.php:102
1965
  msgid "Sign Out"
1966
+ msgstr "Abmelden"
1967
 
1968
  #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
  #: app/view/admin/widget-creator.php:47
1970
  msgid "Widget Creator"
1971
+ msgstr "Widget-Ersteller"
1972
 
1973
  #: app/view/admin/widget-creator.php:74
1974
  msgctxt "meta box"
1975
  msgid "Widget Creator"
1976
+ msgstr "Widget-Ersteller"
1977
 
1978
  #: app/view/admin/widget-creator.php:131
1979
  msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
+ msgstr "Generiere ein Code-Snippet, das auf einer <strong>externen Website</strong> dazu verwendet werden kann, dort neue Kalender und Widgets einzubauen."
1981
 
1982
  #: app/view/admin/widget-creator.php:132
1983
  msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1985
 
1986
  #: app/view/admin/widget-creator.php:134
1987
  msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
+ msgstr "<p>Verwende <a href=\"%s\"><strong>Design</strong> &gt; <strong>Widgets</strong></a>, um Veranstaltung-Widgets wie jedes andere Widget zu deiner WordPress-Seite hinzuzufügen, oder verwende <a href=\"%s\" target=\"_blank\">Shortcodes</a>, um den kompletten Kalender einzubetten.</strong></p>"
1989
 
1990
  #: app/view/admin/widget-creator.php:140
1991
  msgid "Paste this code onto your site:"
1993
 
1994
  #: app/view/admin/widget-creator.php:141
1995
  msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
+ msgstr "Dieser Code wird aktualisiert, um die Einstellungsänderungen zu berücksichtigen. Geänderte Einstellungen beeinflussen bestehende Widgets nicht."
1997
 
1998
  #: app/view/calendar/page.php:54
1999
  msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2005
 
2006
  #: app/view/admin/settings.php:193
2007
  msgid "Phone Number:"
2008
+ msgstr "Telefonnumer:"
2009
 
2010
  #: app/view/admin/settings.php:194
2011
  msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
+ msgstr "Ich bestätige, dass ich die <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>. gelesen und verstanden habe und damit einverstanden bin."
2013
 
2014
  #: app/view/admin/settings.php:197
2015
  msgid "Sign Up"
2016
+ msgstr "Registrieren"
2017
 
2018
  #: app/view/admin/settings.php:198
2019
  msgid "Sign In"
2020
+ msgstr "Anmelden"
2021
 
2022
  #: app/view/admin/settings.php:212
2023
  msgid "Save Settings"
2029
 
2030
  #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
  msgid "Theme Options"
2032
+ msgstr "Theme-Einstellungen"
2033
 
2034
  #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
  msgid "Calendar Theme Options"
2036
+ msgstr "Einstellungen des Kalender-Themes"
2037
 
2038
  #: app/view/admin/theme-options.php:79
2039
  msgctxt "meta box"
2040
  msgid "Calendar Theme Options"
2041
+ msgstr "Einstellungen des Kalender-Themes"
2042
 
2043
  #: app/view/admin/theme-options.php:133
2044
  msgid "General"
2082
 
2083
  #: app/view/admin/tickets.php:36
2084
  msgid "Ticketing"
2085
+ msgstr "Buchung"
2086
 
2087
  #: app/view/admin/tickets.php:37
2088
  msgid "Ticketing<sup>beta</sup>"
2089
+ msgstr "Buchung<sup>beta</sup>"
2090
 
2091
  #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
  msgid "Time.ly Ticketing<sup>beta</sup>"
2093
+ msgstr "Time.ly Buchung<sup>beta</sup>"
2094
 
2095
  #: app/view/admin/settings.php:98
2096
  msgctxt "meta box"
2119
 
2120
  #: app/view/admin/settings.php:150
2121
  msgid "Email Templates"
2122
+ msgstr "E-Mail-Vorlagen"
2123
 
2124
  #: app/view/admin/settings.php:151
2125
  msgid "External Services"
2127
 
2128
  #: app/view/admin/settings.php:152
2129
  msgid "Cache Report"
2130
+ msgstr "Cache-Bericht"
2131
 
2132
  #: app/view/admin/settings.php:171
2133
  msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
+ msgstr "Melde Dich an für einen <b>Time.ly Netword</b> Zugang. Es ist kostenlos!"
2135
 
2136
  #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
  #: public/admin/box_ask_customer_review.php:112
2140
  #: public/admin/box_ask_customer_review.php:158
2141
  #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
  msgid "This field is required."
2143
+ msgstr "Dies ist ein Pflichtfeld!"
2144
 
2145
  #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
  msgid "Register"
2148
 
2149
  #: app/view/admin/settings.php:184
2150
  msgid "Sign in"
2151
+ msgstr "Melde DIch an"
2152
 
2153
  #: app/view/admin/settings.php:185
2154
  msgid "You are successfully signed in to <b>Timely Network</b>."
2155
+ msgstr "Du bis erfolgreich angemeldet bei <b>Timely Network</b>."
2156
 
2157
  #: app/view/admin/settings.php:186
2158
  msgid "Sign out"
2159
+ msgstr "Melde Dich ab"
2160
 
2161
  #: app/view/admin/settings.php:187
2162
  msgid "Hide form"
2163
+ msgstr "Verstecke Formular"
2164
 
2165
  #: app/view/admin/settings.php:188
2166
  msgid "Show form"
2167
+ msgstr "Zeige Formular"
2168
 
2169
  #: app/view/admin/settings.php:189
2170
  msgid "Full Name:"
2171
+ msgstr "Vollständiger Name:"
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
2175
+ msgstr "E-Mail:"
2176
 
2177
  #: app/view/admin/settings.php:191
2178
  msgid "Password:"
2179
+ msgstr "Passwort:"
2180
 
2181
  #: app/view/admin/settings.php:192
2182
  msgid "Confirm Password:"
2183
+ msgstr "Passwort bestätigen:"
2184
 
2185
  #: app/view/admin/get-repeat-box.php:483
2186
  msgid "fourth"
2236
 
2237
  #: app/view/admin/nav.php:28
2238
  msgid "<a href=\"%s\">Check for updates</a>"
2239
+ msgstr "<a href=\"%s\">Aktualisieren</a>"
2240
 
2241
  #: app/view/admin/organize.php:100
2242
  msgid "Organize Events"
2270
 
2271
  #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
  msgid "Import Feeds"
2273
+ msgstr "Feeds importieren"
2274
 
2275
  #: app/view/admin/calendar-feeds.php:48
2276
  msgctxt "meta box"
2277
  msgid "Feed Subscriptions"
2278
+ msgstr "Feed-Abonnements"
2279
 
2280
  #: app/view/admin/calendar-feeds.php:65
2281
  msgid "All-in-One Event Calendar: Import Feeds"
2282
+ msgstr "All-in-One Event Calendar: Importiere Feeds"
2283
 
2284
  #: app/view/admin/event-category.php:30
2285
  msgid "Color"
2311
 
2312
  #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
  msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
+ msgstr "Dieser Kategorie kann ein optionales Bild zuordnet werden. Empfohlene Grösse: quadratisch, mindestens 400&times;400 Pixel."
2315
 
2316
  #: app/view/admin/get-repeat-box.php:94
2317
  msgid "times"
2377
 
2378
  #: app/model/settings.php:965
2379
  msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2380
+ msgstr "<strong>Veröffentliche, bewerbe, und teile meine öffentlichen Veranstaltungen</strong> im Timely-Netzwerk. (<a href=\"%s\" target=\"_blank\">Mehr Informationen &#187;</a>)"
2381
 
2382
  #: app/model/settings.php:988
2383
  msgid "Templates cache improves site performance"
2384
+ msgstr "Vorlagen-Cache verbessert die Leistung der Seite"
2385
 
2386
  #: app/model/settings.php:1001
2387
  msgid "Display events in <strong>calendar time zone</strong>"
2388
+ msgstr "Zeige Events in dieser <strong>Kalender-Zeitzone</strong>"
2389
 
2390
  #: app/model/settings.php:1004
2391
  msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2392
+ msgstr "Wenn diese Box gewählt wurde, werden Events der Kalender-Zeitzone mit Zeitzonen-Informationen auf der Event-Detailseite angezeigt."
2393
 
2394
  #: app/view/admin/add-new-event.php:26
2395
  msgid "Event Details"
2397
 
2398
  #: app/view/admin/add-new-event.php:423
2399
  msgid "Set banner image"
2400
+ msgstr "Banner-Bild festlegen"
2401
 
2402
  #: app/view/admin/add-new-event.php:424
2403
  msgid "Remove banner image"
2404
+ msgstr "Banner-Bild entfernen"
2405
 
2406
  #: app/view/admin/add-ons.php:68
2407
  msgid "Add-ons for All In One Event Calendar"
2413
 
2414
  #: app/view/admin/add-ons.php:74
2415
  msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2416
+ msgstr "Diese Add-ons erweitern die Funktionalität des All-In-One Event Kalenders."
2417
 
2418
  #: app/view/admin/add-ons.php:77
2419
  msgid "There was an error retrieving the extensions list from the server. Please try again later."
2420
+ msgstr "Beim Laden der auf dem Server verfügbaren Erweiterungen ist ein Fehler aufgetreten. Bitte versuchen Sie es später nochmal."
2421
 
2422
  #: app/view/admin/all-events.php:16
2423
  msgid "Author"
2429
 
2430
  #: app/view/admin/all-events.php:18
2431
  msgid "Event date/time"
2432
+ msgstr "Datum/Zeit der Veranstaltung"
2433
 
2434
  #: app/view/admin/all-events.php:22
2435
  msgid "Ticket Types"
2436
+ msgstr "Ticketarten"
2437
 
2438
  #: app/view/admin/all-events.php:134
2439
  msgid "Show All "
2441
 
2442
  #: app/view/admin/all-events.php:147
2443
  msgid "Show All Authors"
2444
+ msgstr "Alle Autoren anzeigen"
2445
 
2446
  #: app/model/settings.php:746
2447
  msgid "Strict compatibility content filtering"
2533
 
2534
  #: app/model/settings.php:902
2535
  msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2536
+ msgstr "Verwende diese Option, wenn der Kalender nicht reagiert. Das Problem ist <a href=\"http://support.time.ly/disable-gzip-compression/\">hier genauer beschrieben</a>. (Ab Version 2.1 aufwärts ist gzip standardmässig aus Kompatibilitätsgründen deaktiviert.)"
2537
 
2538
  #: app/model/settings.php:914
2539
  msgid "Use frontend rendering."
2540
+ msgstr "Verwende Frontend-Rendering."
2541
 
2542
  #: app/model/settings.php:917
2543
  msgid "Renders calendar views on the client rather than the server; can improve performance."
2544
+ msgstr "Der Kalender wird im Client gerendert und nicht serverseitig; kann die Performance verbessern."
2545
 
2546
  #: app/model/settings.php:493 app/view/calendar/widget.php:128
2547
  msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
 
2554
  #: app/model/settings.php:519
2555
  msgid "Agenda pages show at most"
2556
+ msgstr "Listen-Seiten zeigen maximal"
2557
 
2558
  #: app/model/settings.php:532
2559
  msgid "Week/Day view starts at"
2607
 
2608
  #: app/model/settings.php:649
2609
  msgid "Hide <strong>Get a Timely Calendar</strong> button"
2610
+ msgstr "Verstecke <strong>Timely Calendar holen</strong>"
2611
 
2612
  #: app/model/settings.php:661
2613
  msgid " Hide <strong>Google Maps</strong> until clicked"
2619
 
2620
  #: app/model/settings.php:676
2621
  msgid "Only applies to first visible calendar found on the page."
2622
+ msgstr "Trifft nur für den ersten sichtbaren Kalender der Seite zu."
2623
 
2624
  #: app/model/settings.php:688
2625
  msgid "Offset affixed filter bar vertically by"
2639
 
2640
  #: app/model/api.php:456
2641
  msgid "Not available"
2642
+ msgstr "Nicht verfügbar"
2643
 
2644
  #: app/model/api.php:659
2645
  msgid "%s.<br/>Detail: %s."
2646
+ msgstr "%s.<br/>Detail: %s."
2647
 
2648
  #: app/model/api.php:664
2649
  msgid "API URL: %s.<br/>Detail: %s - %s"
2650
+ msgstr "API URL: %s.<br/>Detail: %s - %s"
2651
 
2652
  #: app/model/api.php:672
2653
  msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2654
+ msgstr "%s. Bitte lade diese Seite neu und versuche es noch einmal. Falls der Fehler weiterhin besteht, kontaktiere uns bitte unter %s. Bitte füge in Deinen Bericht die unten stehenden Informationen ein.<br/>%s."
2655
 
2656
  #: app/model/api.php:679
2657
  msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2658
+ msgstr "%s. Bitte versuch es noch einmal. Wenn der Fehler erneut auftritt, kontaktiere uns bitte unter %s. Bitte füge in Deinen Bericht die unten stehenden Informationen ein.<br/>%s."
2659
 
2660
  #: app/model/event/parent.php:186
2661
  msgid "Edit &#8220;%s&#8221;"
2667
 
2668
  #: app/model/review.php:169
2669
  msgid "Feedback provided by user"
2670
+ msgstr "Feedback wurde von Nutzer bereitgestellt"
2671
 
2672
  #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2673
  msgid "Name"
2675
 
2676
  #: app/model/review.php:173
2677
  msgid "E-mail"
2678
+ msgstr "Email"
2679
 
2680
  #: app/model/review.php:175
2681
  msgid "Site URL"
2682
+ msgstr "Site URL"
2683
 
2684
  #: app/model/review.php:177
2685
  msgid "Message"
2686
+ msgstr "Nachricht"
2687
 
2688
  #: app/model/settings.php:401
2689
  #: lib/html/element/setting/calendar-page-selector.php:50
2740
 
2741
  #: app/controller/javascript.php:517
2742
  msgid "For week and day view, you must select an interval of at least 6 hours."
2743
+ msgstr "Für die Wochen- und Tagesansicht muss ein Intervall von mindestens 6 Stunden gesetzt werden."
2744
 
2745
  #: app/model/api.php:40
2746
  msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2747
+ msgstr "Wir sind nicht in der Lage, die Ticket-Details von Time.ly-Ticketing zu erhalten"
2748
 
2749
  #: app/model/api.php:41
2750
  msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2751
+ msgstr "Wir sind nicht in der Lage, die Ticket-Teilnehmer von Time.ly-Ticketing zu erhalten"
2752
 
2753
  #: app/model/api.php:42
2754
  msgid "We were unable to Sign you Up for Time.ly Ticketing"
2755
+ msgstr "Wir sind nicht in der Lage, Dich für Time.ly-Ticketing anzumelden"
2756
 
2757
  #: app/model/api.php:43
2758
  msgid "We were unable to Sign you In for Time.ly Ticketing"
2759
+ msgstr "Wir sind nicht in der Lage, Dich für Time.ly-Ticketing anzumelden"
2760
 
2761
  #: app/model/api.php:44
2762
  msgid "We were unable to create the Event on Time.ly Ticketing"
2763
+ msgstr "Wir sind nicht in der Lage, diesen Event auf Time.ly-Ticketing anzulegen"
2764
 
2765
  #: app/model/api.php:45
2766
  msgid "We were unable to update the Event on Time.ly Ticketing"
2767
+ msgstr "Wir sind nicht in der Lage, diesen Event auf Time.ly-Ticketing zu aktualisieren"
2768
 
2769
  #: app/model/api.php:46
2770
  msgid "The event has the option Tickets selected but any ticket was added."
2771
+ msgstr "Dieser Event hat die Option, Tickets zu wählen, aber jedes Ticket wurde hinzugefügt."
2772
 
2773
  #: app/model/api.php:47
2774
  msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2775
+ msgstr "Wir sind nicht in der Lage, die Tickets von Time.ly-Ticketing zu entfernen"
2776
 
2777
  #: app/model/api.php:48
2778
  msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2779
+ msgstr "Dieser Event wurde von einer anderen Seite repliziert. Alle Änderungen an Tickets wurden verworfen."
2780
 
2781
  #: app/model/api.php:49
2782
  msgid "Payment preferences were not saved."
2783
+ msgstr "Bevorzugte Zahlungsarten wurden nicht gespeichert."
2784
 
2785
  #: app/model/api.php:50
2786
  msgid "Payment preferences were saved."
2787
+ msgstr "Bevorzugte Zahlungsarten wurden gespeichert."
2788
 
2789
  #: app/model/api.php:51
2790
  msgid "Event not found inside the database."
2791
+ msgstr "Event wurde in der Datenbank nicht gefunden."
2792
 
2793
  #: app/model/api.php:52
2794
  msgid "We were unable to get the Sales information from Time.ly Ticketing"
2795
+ msgstr "Wir können keine Verkaufs-Informationen von Time.ly-Buchung erhalten"
2796
 
2797
  #: app/model/api.php:446
2798
  msgid "Past Event"
2799
+ msgstr "Vergangene Veranstaltung"
2800
 
2801
  #: app/model/api.php:448
2802
  msgid "Event closed"
2803
+ msgstr "Event geschlossen"
2804
 
2805
  #: app/model/api.php:450
2806
  msgid "Not available yet"
2807
+ msgstr "Noch nicht verfügbar"
2808
 
2809
  #: app/model/api.php:452
2810
  msgid "Sale closed"
2811
+ msgstr "Verkauf geschlossen"
2812
 
2813
  #: app/model/api.php:454
2814
  msgid "Sold out"
2815
+ msgstr "Ausverkauft"
2816
 
2817
  #: app/controller/javascript.php:484
2818
  msgid "Report"
2819
+ msgstr "Bericht"
2820
 
2821
  #: app/controller/javascript.php:485
2822
  msgid "Sale dates"
2823
+ msgstr "Verkaufsdaten"
2824
 
2825
  #: app/controller/javascript.php:486
2826
  msgid "Limits"
2827
+ msgstr "Begrenzungen"
2828
 
2829
  #: app/controller/javascript.php:487
2830
  msgid "Actions"
2831
+ msgstr "Aktionen"
2832
 
2833
  #: app/controller/javascript.php:488
2834
  msgid "Sold:"
2835
+ msgstr "Verkauft:"
2836
 
2837
  #: app/controller/javascript.php:489
2838
  msgid "Left:"
2839
+ msgstr "Übrig:"
2840
 
2841
  #: app/controller/javascript.php:490
2842
  msgid "Start:"
2843
+ msgstr "Start:"
2844
 
2845
  #: app/controller/javascript.php:491
2846
  msgid "End:"
2847
+ msgstr "Ende:"
2848
 
2849
  #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2850
  msgid "Min:"
2851
+ msgstr "Min:"
2852
 
2853
  #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2854
  msgid "Max:"
2855
+ msgstr "Max:"
2856
 
2857
  #: app/controller/javascript.php:494
2858
  msgid "Attendees"
2859
+ msgstr "Teilnehmer"
2860
 
2861
  #: app/controller/javascript.php:495
2862
  msgid "Hide Attendees"
2863
+ msgstr "Verstecke Teilnehmer"
2864
 
2865
  #: app/controller/javascript.php:496
2866
  msgid "Attendees List"
2867
+ msgstr "Teilnehmerliste"
2868
 
2869
  #: app/controller/javascript.php:497
2870
  msgid "Guest Name"
2871
+ msgstr "Gastname"
2872
 
2873
  #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2874
  msgid "Status"
2875
+ msgstr "Status"
2876
 
2877
  #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2878
  #: app/view/event/ticket.php:71
2881
 
2882
  #: app/controller/javascript.php:500
2883
  msgid "No attendees for this ticket type."
2884
+ msgstr "Keine Teilnehmer für diesen Ticket-Typ."
2885
 
2886
  #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2887
  #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2890
 
2891
  #: app/controller/javascript.php:502
2892
  msgid "Code"
2893
+ msgstr "Code"
2894
 
2895
  #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2896
  msgid "Unlimited"
2897
+ msgstr "Unbegrenzt"
2898
 
2899
  #: app/controller/javascript.php:506
2900
  msgid "Your message has been sent. Thank you for your feedback."
2901
+ msgstr "Deine Nachricht wurde gesendet. Vielen Dank für Dein Feedback."
2902
 
2903
  #: app/controller/javascript.php:507
2904
  msgid "Your message has not been sent. Please try again or contact us."
2905
+ msgstr "Deine Nachricht wurde nicht gesendet. Bitte versuche es noch einmal oder kontaktiere uns."
2906
 
2907
  #: app/controller/javascript.php:405
2908
  msgid "Please enter a valid iCalendar URL."
2910
 
2911
  #: app/controller/javascript.php:408
2912
  msgid "Please enter a valid email address."
2913
+ msgstr "Bitte eine gültige E-Mail-Adresse eingeben."
2914
 
2915
  #: app/controller/javascript.php:410
2916
  msgid "Choose Image"
2922
 
2923
  #: app/controller/javascript.php:416
2924
  msgid "Are you sure you want to reset your theme options to their default values?"
2925
+ msgstr "Bist du sicher, dass die Theme-Einstellungen auf ihre Standardwerte zurückgesetzt werden sollen?"
2926
 
2927
  #: app/controller/javascript.php:419
2928
  msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2942
 
2943
  #: app/controller/javascript.php:431
2944
  msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2945
+ msgstr "Die von Dir in die <b>Organizer Contact Info</b> &gt; <b>Website URL</b> eingegebene URL ist anscheinend ungültig."
2946
 
2947
  #: app/controller/javascript.php:434
2948
  msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2949
+ msgstr "Die URL, die du bei <b>Veranstaltungspreis und Tickets</b> &gt; <b>Ticketverkaufs-URL</b> angegeben hast, ist ungültig."
2950
 
2951
  #: app/controller/javascript.php:437
2952
  msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2958
 
2959
  #: app/controller/javascript.php:443
2960
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2961
+ msgstr "<p class=\"ai1ec_ticketing_required_alert\"><b>Einige Pflichtfelder fehlen.</b><br><i>Fehlende oder falsche Felder sind rot umrandet.</i></p>"
2962
 
2963
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2964
  msgid "Preview:"
2970
 
2971
  #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2972
  msgid "Ticketing Details"
2973
+ msgstr "Buchungs-Details"
2974
 
2975
  #: app/controller/javascript.php:480
2976
  msgid "Hide Ticketing Details"
2977
+ msgstr "Verstecke Buchungs-Details"
2978
 
2979
  #: app/controller/javascript.php:481
2980
  msgid "Loading tickets details..."
2981
+ msgstr "Lade Buchungs-Details ..."
2982
 
2983
  #: app/controller/javascript.php:482
2984
  msgid "Type and price"
2985
+ msgstr "Art und Preis"
2986
 
2987
  #: app/controller/javascript.php:483
2988
  msgid "Info"
2989
+ msgstr "Info"
2990
 
2991
  #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2992
  #: app/view/admin/add-ons.php:27
3012
 
3013
  #: app/controller/javascript.php:402
3014
  msgid "This feed is already being imported."
3015
+ msgstr "Dieser Feed wird bereits importiert."
language/all-in-one-event-calendar-de_DE.mo CHANGED
Binary file
language/all-in-one-event-calendar-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2016-02-18 05:22:59+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -670,7 +670,7 @@ msgstr "Karte ansehen"
670
 
671
  #: public/admin/box_eventbrite.php:1
672
  msgid "Eventbrite Ticketing"
673
- msgstr "Eventbrite Ticketing"
674
 
675
  #: public/admin/box_eventbrite.php:7
676
  msgid "Register this event with Eventbrite.com?"
@@ -1486,7 +1486,7 @@ msgstr "Das Add-on \"%s\" wurde aufgrund eines Fehlers deaktiviert:"
1486
 
1487
  #: lib/calendar-feed/ics.php:367
1488
  msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
- msgstr "Willst du die aus dem Kalender importierten Veranstaltungen behalten oder verwerfen?"
1490
 
1491
  #: lib/calendar-feed/ics.php:373
1492
  msgid "Removing ICS Feed"
@@ -2082,15 +2082,15 @@ msgstr "All-in-One Event Kalender: Themes"
2082
 
2083
  #: app/view/admin/tickets.php:36
2084
  msgid "Ticketing"
2085
- msgstr "Ticketing"
2086
 
2087
  #: app/view/admin/tickets.php:37
2088
  msgid "Ticketing<sup>beta</sup>"
2089
- msgstr ""
2090
 
2091
  #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
  msgid "Time.ly Ticketing<sup>beta</sup>"
2093
- msgstr ""
2094
 
2095
  #: app/view/admin/settings.php:98
2096
  msgctxt "meta box"
@@ -2131,7 +2131,7 @@ msgstr "Cache-Bericht"
2131
 
2132
  #: app/view/admin/settings.php:171
2133
  msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
- msgstr ""
2135
 
2136
  #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
  #: public/admin/box_ask_customer_review.php:112
@@ -2140,7 +2140,7 @@ msgstr ""
2140
  #: public/admin/box_ask_customer_review.php:158
2141
  #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
  msgid "This field is required."
2143
- msgstr ""
2144
 
2145
  #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
  msgid "Register"
@@ -2148,27 +2148,27 @@ msgstr "Anmelden"
2148
 
2149
  #: app/view/admin/settings.php:184
2150
  msgid "Sign in"
2151
- msgstr ""
2152
 
2153
  #: app/view/admin/settings.php:185
2154
  msgid "You are successfully signed in to <b>Timely Network</b>."
2155
- msgstr ""
2156
 
2157
  #: app/view/admin/settings.php:186
2158
  msgid "Sign out"
2159
- msgstr ""
2160
 
2161
  #: app/view/admin/settings.php:187
2162
  msgid "Hide form"
2163
- msgstr ""
2164
 
2165
  #: app/view/admin/settings.php:188
2166
  msgid "Show form"
2167
- msgstr ""
2168
 
2169
  #: app/view/admin/settings.php:189
2170
  msgid "Full Name:"
2171
- msgstr ""
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
@@ -2279,7 +2279,7 @@ msgstr "Feed-Abonnements"
2279
 
2280
  #: app/view/admin/calendar-feeds.php:65
2281
  msgid "All-in-One Event Calendar: Import Feeds"
2282
- msgstr ""
2283
 
2284
  #: app/view/admin/event-category.php:30
2285
  msgid "Color"
@@ -2385,11 +2385,11 @@ msgstr "Vorlagen-Cache verbessert die Leistung der Seite"
2385
 
2386
  #: app/model/settings.php:1001
2387
  msgid "Display events in <strong>calendar time zone</strong>"
2388
- msgstr ""
2389
 
2390
  #: app/model/settings.php:1004
2391
  msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2392
- msgstr ""
2393
 
2394
  #: app/view/admin/add-new-event.php:26
2395
  msgid "Event Details"
@@ -2433,7 +2433,7 @@ msgstr "Datum/Zeit der Veranstaltung"
2433
 
2434
  #: app/view/admin/all-events.php:22
2435
  msgid "Ticket Types"
2436
- msgstr ""
2437
 
2438
  #: app/view/admin/all-events.php:134
2439
  msgid "Show All "
@@ -2643,7 +2643,7 @@ msgstr "Nicht verfügbar"
2643
 
2644
  #: app/model/api.php:659
2645
  msgid "%s.<br/>Detail: %s."
2646
- msgstr ""
2647
 
2648
  #: app/model/api.php:664
2649
  msgid "API URL: %s.<br/>Detail: %s - %s"
@@ -2756,43 +2756,43 @@ msgstr "Wir sind nicht in der Lage, Dich für Time.ly-Ticketing anzumelden"
2756
 
2757
  #: app/model/api.php:43
2758
  msgid "We were unable to Sign you In for Time.ly Ticketing"
2759
- msgstr ""
2760
 
2761
  #: app/model/api.php:44
2762
  msgid "We were unable to create the Event on Time.ly Ticketing"
2763
- msgstr ""
2764
 
2765
  #: app/model/api.php:45
2766
  msgid "We were unable to update the Event on Time.ly Ticketing"
2767
- msgstr ""
2768
 
2769
  #: app/model/api.php:46
2770
  msgid "The event has the option Tickets selected but any ticket was added."
2771
- msgstr ""
2772
 
2773
  #: app/model/api.php:47
2774
  msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2775
- msgstr ""
2776
 
2777
  #: app/model/api.php:48
2778
  msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2779
- msgstr ""
2780
 
2781
  #: app/model/api.php:49
2782
  msgid "Payment preferences were not saved."
2783
- msgstr ""
2784
 
2785
  #: app/model/api.php:50
2786
  msgid "Payment preferences were saved."
2787
- msgstr ""
2788
 
2789
  #: app/model/api.php:51
2790
  msgid "Event not found inside the database."
2791
- msgstr ""
2792
 
2793
  #: app/model/api.php:52
2794
  msgid "We were unable to get the Sales information from Time.ly Ticketing"
2795
- msgstr ""
2796
 
2797
  #: app/model/api.php:446
2798
  msgid "Past Event"
@@ -2800,7 +2800,7 @@ msgstr "Vergangene Veranstaltung"
2800
 
2801
  #: app/model/api.php:448
2802
  msgid "Event closed"
2803
- msgstr ""
2804
 
2805
  #: app/model/api.php:450
2806
  msgid "Not available yet"
@@ -2808,7 +2808,7 @@ msgstr "Noch nicht verfügbar"
2808
 
2809
  #: app/model/api.php:452
2810
  msgid "Sale closed"
2811
- msgstr ""
2812
 
2813
  #: app/model/api.php:454
2814
  msgid "Sold out"
@@ -2816,63 +2816,63 @@ msgstr "Ausverkauft"
2816
 
2817
  #: app/controller/javascript.php:484
2818
  msgid "Report"
2819
- msgstr ""
2820
 
2821
  #: app/controller/javascript.php:485
2822
  msgid "Sale dates"
2823
- msgstr ""
2824
 
2825
  #: app/controller/javascript.php:486
2826
  msgid "Limits"
2827
- msgstr ""
2828
 
2829
  #: app/controller/javascript.php:487
2830
  msgid "Actions"
2831
- msgstr ""
2832
 
2833
  #: app/controller/javascript.php:488
2834
  msgid "Sold:"
2835
- msgstr ""
2836
 
2837
  #: app/controller/javascript.php:489
2838
  msgid "Left:"
2839
- msgstr ""
2840
 
2841
  #: app/controller/javascript.php:490
2842
  msgid "Start:"
2843
- msgstr ""
2844
 
2845
  #: app/controller/javascript.php:491
2846
  msgid "End:"
2847
- msgstr ""
2848
 
2849
  #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2850
  msgid "Min:"
2851
- msgstr ""
2852
 
2853
  #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2854
  msgid "Max:"
2855
- msgstr ""
2856
 
2857
  #: app/controller/javascript.php:494
2858
  msgid "Attendees"
2859
- msgstr ""
2860
 
2861
  #: app/controller/javascript.php:495
2862
  msgid "Hide Attendees"
2863
- msgstr ""
2864
 
2865
  #: app/controller/javascript.php:496
2866
  msgid "Attendees List"
2867
- msgstr ""
2868
 
2869
  #: app/controller/javascript.php:497
2870
  msgid "Guest Name"
2871
- msgstr ""
2872
 
2873
  #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2874
  msgid "Status"
2875
- msgstr ""
2876
 
2877
  #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2878
  #: app/view/event/ticket.php:71
@@ -2881,7 +2881,7 @@ msgstr "E-Mail"
2881
 
2882
  #: app/controller/javascript.php:500
2883
  msgid "No attendees for this ticket type."
2884
- msgstr ""
2885
 
2886
  #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2887
  #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
@@ -2890,19 +2890,19 @@ msgstr "Bearbeiten"
2890
 
2891
  #: app/controller/javascript.php:502
2892
  msgid "Code"
2893
- msgstr ""
2894
 
2895
  #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2896
  msgid "Unlimited"
2897
- msgstr ""
2898
 
2899
  #: app/controller/javascript.php:506
2900
  msgid "Your message has been sent. Thank you for your feedback."
2901
- msgstr ""
2902
 
2903
  #: app/controller/javascript.php:507
2904
  msgid "Your message has not been sent. Please try again or contact us."
2905
- msgstr ""
2906
 
2907
  #: app/controller/javascript.php:405
2908
  msgid "Please enter a valid iCalendar URL."
@@ -2942,7 +2942,7 @@ msgstr "Wenn das \"Koordinaten angeben\" Kontrollkästchen ausgewählt wurde, mu
2942
 
2943
  #: app/controller/javascript.php:431
2944
  msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2945
- msgstr ""
2946
 
2947
  #: app/controller/javascript.php:434
2948
  msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
@@ -2958,7 +2958,7 @@ msgstr "Laden&hellip;"
2958
 
2959
  #: app/controller/javascript.php:443
2960
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2961
- msgstr ""
2962
 
2963
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2964
  msgid "Preview:"
@@ -2970,23 +2970,23 @@ msgstr "Lade Vorschau&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\">
2970
 
2971
  #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2972
  msgid "Ticketing Details"
2973
- msgstr ""
2974
 
2975
  #: app/controller/javascript.php:480
2976
  msgid "Hide Ticketing Details"
2977
- msgstr ""
2978
 
2979
  #: app/controller/javascript.php:481
2980
  msgid "Loading tickets details..."
2981
- msgstr ""
2982
 
2983
  #: app/controller/javascript.php:482
2984
  msgid "Type and price"
2985
- msgstr ""
2986
 
2987
  #: app/controller/javascript.php:483
2988
  msgid "Info"
2989
- msgstr ""
2990
 
2991
  #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2992
  #: app/view/admin/add-ons.php:27
2
  # This file is distributed under the same license as the 2.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2016-02-18 21:35:46+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
670
 
671
  #: public/admin/box_eventbrite.php:1
672
  msgid "Eventbrite Ticketing"
673
+ msgstr "Eventbrite Buchung"
674
 
675
  #: public/admin/box_eventbrite.php:7
676
  msgid "Register this event with Eventbrite.com?"
1486
 
1487
  #: lib/calendar-feed/ics.php:367
1488
  msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
+ msgstr "Willst du die aus dem Kalender importierten Events behalten oder verwerfen?"
1490
 
1491
  #: lib/calendar-feed/ics.php:373
1492
  msgid "Removing ICS Feed"
2082
 
2083
  #: app/view/admin/tickets.php:36
2084
  msgid "Ticketing"
2085
+ msgstr "Buchung"
2086
 
2087
  #: app/view/admin/tickets.php:37
2088
  msgid "Ticketing<sup>beta</sup>"
2089
+ msgstr "Buchung<sup>beta</sup>"
2090
 
2091
  #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
  msgid "Time.ly Ticketing<sup>beta</sup>"
2093
+ msgstr "Time.ly Buchung<sup>beta</sup>"
2094
 
2095
  #: app/view/admin/settings.php:98
2096
  msgctxt "meta box"
2131
 
2132
  #: app/view/admin/settings.php:171
2133
  msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
+ msgstr "Melde Dich an für einen <b>Time.ly Netword</b> Zugang. Es ist kostenlos!"
2135
 
2136
  #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
  #: public/admin/box_ask_customer_review.php:112
2140
  #: public/admin/box_ask_customer_review.php:158
2141
  #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
  msgid "This field is required."
2143
+ msgstr "Dies ist ein Pflichtfeld!"
2144
 
2145
  #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
  msgid "Register"
2148
 
2149
  #: app/view/admin/settings.php:184
2150
  msgid "Sign in"
2151
+ msgstr "Melde DIch an"
2152
 
2153
  #: app/view/admin/settings.php:185
2154
  msgid "You are successfully signed in to <b>Timely Network</b>."
2155
+ msgstr "Du bis erfolgreich angemeldet bei <b>Timely Network</b>."
2156
 
2157
  #: app/view/admin/settings.php:186
2158
  msgid "Sign out"
2159
+ msgstr "Melde Dich ab"
2160
 
2161
  #: app/view/admin/settings.php:187
2162
  msgid "Hide form"
2163
+ msgstr "Verstecke Formular"
2164
 
2165
  #: app/view/admin/settings.php:188
2166
  msgid "Show form"
2167
+ msgstr "Zeige Formular"
2168
 
2169
  #: app/view/admin/settings.php:189
2170
  msgid "Full Name:"
2171
+ msgstr "Vollständiger Name:"
2172
 
2173
  #: app/view/admin/settings.php:190
2174
  msgid "Email:"
2279
 
2280
  #: app/view/admin/calendar-feeds.php:65
2281
  msgid "All-in-One Event Calendar: Import Feeds"
2282
+ msgstr "All-in-One Event Calendar: Importiere Feeds"
2283
 
2284
  #: app/view/admin/event-category.php:30
2285
  msgid "Color"
2385
 
2386
  #: app/model/settings.php:1001
2387
  msgid "Display events in <strong>calendar time zone</strong>"
2388
+ msgstr "Zeige Events in dieser <strong>Kalender-Zeitzone</strong>"
2389
 
2390
  #: app/model/settings.php:1004
2391
  msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2392
+ msgstr "Wenn diese Box gewählt wurde, werden Events der Kalender-Zeitzone mit Zeitzonen-Informationen auf der Event-Detailseite angezeigt."
2393
 
2394
  #: app/view/admin/add-new-event.php:26
2395
  msgid "Event Details"
2433
 
2434
  #: app/view/admin/all-events.php:22
2435
  msgid "Ticket Types"
2436
+ msgstr "Ticketarten"
2437
 
2438
  #: app/view/admin/all-events.php:134
2439
  msgid "Show All "
2643
 
2644
  #: app/model/api.php:659
2645
  msgid "%s.<br/>Detail: %s."
2646
+ msgstr "%s.<br/>Detail: %s."
2647
 
2648
  #: app/model/api.php:664
2649
  msgid "API URL: %s.<br/>Detail: %s - %s"
2756
 
2757
  #: app/model/api.php:43
2758
  msgid "We were unable to Sign you In for Time.ly Ticketing"
2759
+ msgstr "Wir sind nicht in der Lage, Dich für Time.ly-Ticketing anzumelden"
2760
 
2761
  #: app/model/api.php:44
2762
  msgid "We were unable to create the Event on Time.ly Ticketing"
2763
+ msgstr "Wir sind nicht in der Lage, diesen Event auf Time.ly-Ticketing anzulegen"
2764
 
2765
  #: app/model/api.php:45
2766
  msgid "We were unable to update the Event on Time.ly Ticketing"
2767
+ msgstr "Wir sind nicht in der Lage, diesen Event auf Time.ly-Ticketing zu aktualisieren"
2768
 
2769
  #: app/model/api.php:46
2770
  msgid "The event has the option Tickets selected but any ticket was added."
2771
+ msgstr "Dieser Event hat die Option, Tickets zu wählen, aber jedes Ticket wurde hinzugefügt."
2772
 
2773
  #: app/model/api.php:47
2774
  msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2775
+ msgstr "Wir sind nicht in der Lage, die Tickets von Time.ly-Ticketing zu entfernen"
2776
 
2777
  #: app/model/api.php:48
2778
  msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2779
+ msgstr "Dieser Event wurde von einer anderen Seite repliziert. Alle Änderungen an Tickets wurden verworfen."
2780
 
2781
  #: app/model/api.php:49
2782
  msgid "Payment preferences were not saved."
2783
+ msgstr "Bevorzugte Zahlungsarten wurden nicht gespeichert."
2784
 
2785
  #: app/model/api.php:50
2786
  msgid "Payment preferences were saved."
2787
+ msgstr "Bevorzugte Zahlungsarten wurden gespeichert."
2788
 
2789
  #: app/model/api.php:51
2790
  msgid "Event not found inside the database."
2791
+ msgstr "Event wurde in der Datenbank nicht gefunden."
2792
 
2793
  #: app/model/api.php:52
2794
  msgid "We were unable to get the Sales information from Time.ly Ticketing"
2795
+ msgstr "Wir können keine Verkaufs-Informationen von Time.ly-Buchung erhalten"
2796
 
2797
  #: app/model/api.php:446
2798
  msgid "Past Event"
2800
 
2801
  #: app/model/api.php:448
2802
  msgid "Event closed"
2803
+ msgstr "Event geschlossen"
2804
 
2805
  #: app/model/api.php:450
2806
  msgid "Not available yet"
2808
 
2809
  #: app/model/api.php:452
2810
  msgid "Sale closed"
2811
+ msgstr "Verkauf geschlossen"
2812
 
2813
  #: app/model/api.php:454
2814
  msgid "Sold out"
2816
 
2817
  #: app/controller/javascript.php:484
2818
  msgid "Report"
2819
+ msgstr "Bericht"
2820
 
2821
  #: app/controller/javascript.php:485
2822
  msgid "Sale dates"
2823
+ msgstr "Verkaufsdaten"
2824
 
2825
  #: app/controller/javascript.php:486
2826
  msgid "Limits"
2827
+ msgstr "Begrenzungen"
2828
 
2829
  #: app/controller/javascript.php:487
2830
  msgid "Actions"
2831
+ msgstr "Aktionen"
2832
 
2833
  #: app/controller/javascript.php:488
2834
  msgid "Sold:"
2835
+ msgstr "Verkauft:"
2836
 
2837
  #: app/controller/javascript.php:489
2838
  msgid "Left:"
2839
+ msgstr "Übrig:"
2840
 
2841
  #: app/controller/javascript.php:490
2842
  msgid "Start:"
2843
+ msgstr "Start:"
2844
 
2845
  #: app/controller/javascript.php:491
2846
  msgid "End:"
2847
+ msgstr "Ende:"
2848
 
2849
  #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2850
  msgid "Min:"
2851
+ msgstr "Min:"
2852
 
2853
  #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2854
  msgid "Max:"
2855
+ msgstr "Max:"
2856
 
2857
  #: app/controller/javascript.php:494
2858
  msgid "Attendees"
2859
+ msgstr "Teilnehmer"
2860
 
2861
  #: app/controller/javascript.php:495
2862
  msgid "Hide Attendees"
2863
+ msgstr "Verstecke Teilnehmer"
2864
 
2865
  #: app/controller/javascript.php:496
2866
  msgid "Attendees List"
2867
+ msgstr "Teilnehmerliste"
2868
 
2869
  #: app/controller/javascript.php:497
2870
  msgid "Guest Name"
2871
+ msgstr "Gastname"
2872
 
2873
  #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2874
  msgid "Status"
2875
+ msgstr "Status"
2876
 
2877
  #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2878
  #: app/view/event/ticket.php:71
2881
 
2882
  #: app/controller/javascript.php:500
2883
  msgid "No attendees for this ticket type."
2884
+ msgstr "Keine Teilnehmer für diesen Ticket-Typ."
2885
 
2886
  #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2887
  #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2890
 
2891
  #: app/controller/javascript.php:502
2892
  msgid "Code"
2893
+ msgstr "Code"
2894
 
2895
  #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2896
  msgid "Unlimited"
2897
+ msgstr "Unbegrenzt"
2898
 
2899
  #: app/controller/javascript.php:506
2900
  msgid "Your message has been sent. Thank you for your feedback."
2901
+ msgstr "Deine Nachricht wurde gesendet. Vielen Dank für Dein Feedback."
2902
 
2903
  #: app/controller/javascript.php:507
2904
  msgid "Your message has not been sent. Please try again or contact us."
2905
+ msgstr "Deine Nachricht wurde nicht gesendet. Bitte versuche es noch einmal oder kontaktiere uns."
2906
 
2907
  #: app/controller/javascript.php:405
2908
  msgid "Please enter a valid iCalendar URL."
2942
 
2943
  #: app/controller/javascript.php:431
2944
  msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2945
+ msgstr "Die von Dir in die <b>Organizer Contact Info</b> &gt; <b>Website URL</b> eingegebene URL ist anscheinend ungültig."
2946
 
2947
  #: app/controller/javascript.php:434
2948
  msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2958
 
2959
  #: app/controller/javascript.php:443
2960
  msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2961
+ msgstr "<p class=\"ai1ec_ticketing_required_alert\"><b>Einige Pflichtfelder fehlen.</b><br><i>Fehlende oder falsche Felder sind rot umrandet.</i></p>"
2962
 
2963
  #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2964
  msgid "Preview:"
2970
 
2971
  #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2972
  msgid "Ticketing Details"
2973
+ msgstr "Buchungs-Details"
2974
 
2975
  #: app/controller/javascript.php:480
2976
  msgid "Hide Ticketing Details"
2977
+ msgstr "Verstecke Buchungs-Details"
2978
 
2979
  #: app/controller/javascript.php:481
2980
  msgid "Loading tickets details..."
2981
+ msgstr "Lade Buchungs-Details ..."
2982
 
2983
  #: app/controller/javascript.php:482
2984
  msgid "Type and price"
2985
+ msgstr "Art und Preis"
2986
 
2987
  #: app/controller/javascript.php:483
2988
  msgid "Info"
2989
+ msgstr "Info"
2990
 
2991
  #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2992
  #: app/view/admin/add-ons.php:27
language/all-in-one-event-calendar-en-au.mo DELETED
Binary file
language/all-in-one-event-calendar-en-au.po DELETED
@@ -1,3020 +0,0 @@
1
- # Translation of 2.3 in English (Australia)
2
- # This file is distributed under the same license as the 2.3 package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:47:16+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-alpha-1000\n"
11
- "Project-Id-Version: 2.3\n"
12
-
13
- #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
- #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
- msgid "Event background"
16
- msgstr "Event background"
17
-
18
- #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
- #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
- msgid "Event time background"
21
- msgstr "Event time background"
22
-
23
- #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
- #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
- msgid "Event text"
26
- msgstr "Event text"
27
-
28
- #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
- #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
- msgid "Month view date background"
31
- msgstr "Month view date background"
32
-
33
- #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
- #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
- msgid "Week/day view now marker"
36
- msgstr "Week/day view now marker"
37
-
38
- #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
- #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
- msgid "Date label accent color"
41
- msgstr "Date label accent colour"
42
-
43
- #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
- #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
- msgid "Date label background"
46
- msgstr "Date label background"
47
-
48
- #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
- #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
- msgid "Date background"
51
- msgstr "Date background"
52
-
53
- #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
- #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
- msgid "Today background"
56
- msgstr "Today background"
57
-
58
- #. Plugin Name of the plugin/theme
59
- msgid "All-in-One Event Calendar by Time.ly"
60
- msgstr "All-in-One Event Calendar by Time.ly"
61
-
62
- #. Description of the plugin/theme
63
- msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
- msgstr "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
65
-
66
- #. Author of the plugin/theme
67
- msgid "Time.ly Network Inc."
68
- msgstr "Time.ly Network Inc."
69
-
70
- #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
- #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
- msgid "List item background (active/hover)"
73
- msgstr "List item background (active/hover)"
74
-
75
- #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
- #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
- msgid "Input field placeholder text"
78
- msgstr "Input field placeholder text"
79
-
80
- #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
- #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
- msgid "Today color"
83
- msgstr "Today colour"
84
-
85
- #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
- #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
- msgid "All-day badge color"
88
- msgstr "All-day badge colour"
89
-
90
- #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
- #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
- msgid "Event image shadow"
93
- msgstr "Event image shadow"
94
-
95
- #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
- #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
- msgid "Event default color"
98
- msgstr "Event default colour"
99
-
100
- #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
- #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
- msgid "Event default color (hover)"
103
- msgstr "Event default colour (hover)"
104
-
105
- #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
- #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
- msgid "All-day/multi-day event stub text"
108
- msgstr "All-day/multi-day event stub text"
109
-
110
- #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
- #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
- msgid "All-day/multi-day event stub text shadow"
113
- msgstr "All-day/multi-day event stub text shadow"
114
-
115
- #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
- #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
- msgid "Event border"
118
- msgstr "Event border"
119
-
120
- #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
- #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
- msgid "Button text"
123
- msgstr "Button text"
124
-
125
- #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
- #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
- msgid "Input field text"
128
- msgstr "Input field text"
129
-
130
- #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
- #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
- msgid "Input field background"
133
- msgstr "Input field background"
134
-
135
- #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
- #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
- msgid "Input field border"
138
- msgstr "Input field border"
139
-
140
- #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
- #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
- msgid "Input field border (focus)"
143
- msgstr "Input field border (focus)"
144
-
145
- #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
- #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
- msgid "Input field background (disabled)"
148
- msgstr "Input field background (disabled)"
149
-
150
- #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
- #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
- msgid "Field label"
153
- msgstr "Field label"
154
-
155
- #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
- #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
- msgid "Dropdown list background"
158
- msgstr "Dropdown list background"
159
-
160
- #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
- #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
- msgid "Dropdown list border"
163
- msgstr "Dropdown list border"
164
-
165
- #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
- #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
- msgid "List item text"
168
- msgstr "List item text"
169
-
170
- #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
- #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
- msgid "List item text (active/hover)"
173
- msgstr "List item text (active/hover)"
174
-
175
- #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
- msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
- msgstr "New theme activated. <a href=\"%s\">Visit site</a>"
178
-
179
- #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
- msgid "Theme deleted."
181
- msgstr "Theme deleted."
182
-
183
- #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
- msgid "Manage Themes"
185
- msgstr "Manage Themes"
186
-
187
- #: public/admin/themes-install.php:40
188
- msgctxt "theme"
189
- msgid "Install Themes"
190
- msgstr "Install Themes"
191
-
192
- #: public/admin/themes-updated.php:5
193
- msgid "Update Calendar Themes"
194
- msgstr "Update Calendar Themes"
195
-
196
- #: public/admin/themes-updated.php:15
197
- msgid "All-in-One Event Calendar Settings »"
198
- msgstr "All-in-One Event Calendar Settings »"
199
-
200
- #: public/admin/themes.php:18
201
- msgid "Current Calendar Theme"
202
- msgstr "Current Calendar Theme"
203
-
204
- #: public/admin/themes.php:21
205
- msgid "Current theme preview"
206
- msgstr "Current theme preview"
207
-
208
- #: public/admin/themes.php:47
209
- msgid "Available Calendar Themes"
210
- msgstr "Available Calendar Themes"
211
-
212
- #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
- #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
- msgid "Body background"
215
- msgstr "Body background"
216
-
217
- #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
- #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
- msgid "Text color"
220
- msgstr "Text colour"
221
-
222
- #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
- #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
- msgid "Text emboss"
225
- msgstr "Text emboss"
226
-
227
- #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
- #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
- msgid "Link"
230
- msgstr "Link"
231
-
232
- #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
- #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
- msgid "Link (hover)"
235
- msgstr "Link (hover)"
236
-
237
- #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
- #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
- msgid "Base font"
240
- msgstr "Base font"
241
-
242
- #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
- #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
- msgid "Base font size"
245
- msgstr "Base font size"
246
-
247
- #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
- #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
- msgid "Table background"
250
- msgstr "Table background"
251
-
252
- #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
- #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
- msgid "Table header background"
255
- msgstr "Table header background"
256
-
257
- #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
- #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
- msgid "Table header text"
260
- msgstr "Table header text"
261
-
262
- #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
- #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
- msgid "Primary brand color"
265
- msgstr "Primary brand colour"
266
-
267
- #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
- #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
- msgid "Button background"
270
- msgstr "Button background"
271
-
272
- #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
- #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
- msgid "Button border"
275
- msgstr "Button border"
276
-
277
- #: public/admin/feed_row.php:104
278
- msgid "Refreshing&#8230;"
279
- msgstr "Refreshing&#8230;"
280
-
281
- #: public/admin/feed_row.php:106
282
- msgid "Refresh"
283
- msgstr "Refresh"
284
-
285
- #: public/admin/feed_row.php:119
286
- msgid "Removing&#8230;"
287
- msgstr "Removing&#8230;"
288
-
289
- #: public/admin/feed_row.php:121
290
- msgid "Remove"
291
- msgstr "Remove"
292
-
293
- #: public/admin/import.php:6
294
- msgid "Successfully imported events:"
295
- msgstr "Successfully imported events:"
296
-
297
- #: public/admin/plugins/ics/display_feeds.php:2
298
- msgid ""
299
- "Configure which other calendars your own calendar subscribes to.\n"
300
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
- " Enter the feed URL(s) below and the events from those feeds will be\n"
302
- " imported periodically."
303
- msgstr ""
304
- "Configure which other calendars your own calendar subscribes to.\n"
305
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
306
- " Enter the feed URL(s) below and the events from those feeds will be\n"
307
- " imported periodically."
308
-
309
- #: public/admin/plugins/ics/display_feeds.php:14
310
- msgid "Check for new events"
311
- msgstr "Check for new events"
312
-
313
- #: public/admin/plugins/ics/display_feeds.php:45
314
- msgid "Allow comments on imported events"
315
- msgstr "Allow comments on imported events"
316
-
317
- #: public/admin/plugins/ics/display_feeds.php:52
318
- msgid "Show map on imported events"
319
- msgstr "Show map on imported events"
320
-
321
- #: public/admin/plugins/ics/display_feeds.php:59
322
- msgid "Import any tags/categories provided by feed, in addition those selected above"
323
- msgstr "Import any tags/categories provided by feed, in addition those selected above"
324
-
325
- #: public/admin/plugins/ics/display_feeds.php:93
326
- msgid "Add new subscription"
327
- msgstr "Add new subscription"
328
-
329
- #: public/admin/plugins/ics/display_feeds.php:96
330
- msgid "Update subscription"
331
- msgstr ""
332
-
333
- #: public/admin/row_custom.php:3
334
- msgid "Custom dates:"
335
- msgstr ""
336
-
337
- #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
- #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
- #: public/admin/row_yearly.php:3
340
- msgid "Every"
341
- msgstr "Every"
342
-
343
- #: public/admin/row_monthly.php:16
344
- msgid "On day of the month"
345
- msgstr "On day of the month"
346
-
347
- #: public/admin/row_monthly.php:23
348
- msgid "On day of the week"
349
- msgstr "On day of the week"
350
-
351
- #: public/admin/row_weekly.php:12
352
- msgctxt "Recurrence editor - weekly tab"
353
- msgid "On"
354
- msgstr "On"
355
-
356
- #: public/admin/row_yearly.php:12
357
- msgctxt "Recurrence editor - yearly tab"
358
- msgid "In"
359
- msgstr "In"
360
-
361
- #: public/admin/settings.php:19
362
- msgid "Update Settings"
363
- msgstr "Update Settings"
364
-
365
- #: public/admin/themes-install.php:4
366
- msgid "The active theme is broken. Reverting to the default theme."
367
- msgstr "The active theme is broken. Reverting to the default theme."
368
-
369
- #: public/admin/themes-install.php:13
370
- msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
- msgstr ""
372
-
373
- #: public/admin/calendar_tasks.php:24
374
- msgid "Manage Events"
375
- msgstr "Manage Events"
376
-
377
- #: public/admin/calendar_tasks.php:27
378
- msgid "View and edit all your events."
379
- msgstr "View and edit all your events."
380
-
381
- #: public/admin/calendar_tasks.php:39
382
- msgid "Manage Event Categories"
383
- msgstr "Manage Event Categories"
384
-
385
- #: public/admin/calendar_tasks.php:42
386
- msgid "Organize and color-code your events."
387
- msgstr "Organise and colour-code your events."
388
-
389
- #: public/admin/calendar_tasks.php:50
390
- msgid "Choose Your Theme"
391
- msgstr "Choose Your Theme"
392
-
393
- #: public/admin/calendar_tasks.php:53
394
- msgid "Change the look and feel."
395
- msgstr "Change the look and feel."
396
-
397
- #: public/admin/calendar_tasks.php:63
398
- msgid "Manage Calendar Feeds"
399
- msgstr "Manage Calendar Feeds"
400
-
401
- #: public/admin/calendar_tasks.php:66
402
- msgid "Subscribe to other calendars."
403
- msgstr "Subscribe to other calendars."
404
-
405
- #: public/admin/calendar_tasks.php:74
406
- msgid "Edit Calendar Settings"
407
- msgstr "Edit Calendar Settings"
408
-
409
- #: public/admin/calendar_tasks.php:77
410
- msgid "Make this calendar your own."
411
- msgstr "Make this calendar your own."
412
-
413
- #: public/admin/cron_freq.php:3
414
- msgid "Hourly"
415
- msgstr "Hourly"
416
-
417
- #: public/admin/cron_freq.php:6
418
- msgid "Twice Daily"
419
- msgstr "Twice Daily"
420
-
421
- #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
- msgid "iCalendar/.ics Feed URL:"
423
- msgstr "iCalendar/.ics Feed URL:"
424
-
425
- #: public/admin/feed_row.php:24
426
- msgid "Event categories:"
427
- msgstr "Event categories:"
428
-
429
- #: public/admin/feed_row.php:31
430
- msgid "Tag with"
431
- msgstr "Tag with"
432
-
433
- #: public/admin/feed_row.php:40
434
- msgid "Allow comments"
435
- msgstr "Allow comments"
436
-
437
- #: public/admin/feed_row.php:51
438
- msgid "Show map"
439
- msgstr "Show map"
440
-
441
- #: public/admin/feed_row.php:63
442
- msgid "Keep original events categories and tags"
443
- msgstr "Keep original events categories and tags"
444
-
445
- #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
- msgid "On refresh, preserve previously imported events that are missing from the feed"
447
- msgstr ""
448
-
449
- #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
- msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
- msgstr ""
452
-
453
- #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
- msgid "Assign default time zone to events in UTC"
455
- msgstr ""
456
-
457
- #: public/admin/box_support.php:19
458
- msgid "Get Add-ons"
459
- msgstr "Get Add-ons"
460
-
461
- #: public/admin/box_support.php:27
462
- msgid "Support"
463
- msgstr "Support"
464
-
465
- #: public/admin/box_support.php:35
466
- msgid "Timely Events"
467
- msgstr "Timely Events"
468
-
469
- #: public/admin/box_support.php:43
470
- msgid "Timely News"
471
- msgstr "Timely News"
472
-
473
- #: public/admin/box_support.php:47
474
- msgid "view all news"
475
- msgstr "view all news"
476
-
477
- #: public/admin/box_support.php:95
478
- msgid "Follow @_Timely"
479
- msgstr "Follow @_Timely"
480
-
481
- #: public/admin/box_time_and_date.php:6
482
- msgid "Event date and time"
483
- msgstr "Event date and time"
484
-
485
- #: public/admin/box_time_and_date.php:26
486
- msgid "All-day event"
487
- msgstr "All-day event"
488
-
489
- #: public/admin/box_time_and_date.php:35
490
- msgid "No end time"
491
- msgstr "No end time"
492
-
493
- #: public/admin/box_time_and_date.php:42
494
- msgid "Start date / time"
495
- msgstr "Start date / time"
496
-
497
- #: public/admin/box_time_and_date.php:59
498
- msgid "End date / time"
499
- msgstr "End date / time"
500
-
501
- #: public/admin/box_time_and_date.php:76
502
- msgid "Time zone"
503
- msgstr "Time zone"
504
-
505
- #: public/admin/box_time_and_date.php:81
506
- msgid "Choose your time zone"
507
- msgstr "Choose your time zone"
508
-
509
- #: public/admin/box_time_and_date.php:108
510
- msgid "Repeat"
511
- msgstr "Repeat"
512
-
513
- #: public/admin/box_time_and_date.php:127
514
- msgid "Exclude"
515
- msgstr "Exclude"
516
-
517
- #: public/admin/box_time_and_date.php:136
518
- msgid "Choose a rule for exclusion"
519
- msgstr "Choose a rule for exclusion"
520
-
521
- #: public/admin/calendar_tasks.php:3
522
- msgid "Welcome"
523
- msgstr "Welcome"
524
-
525
- #: public/admin/calendar_tasks.php:4
526
- msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
- msgstr "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
-
529
- #: public/admin/calendar_tasks.php:13
530
- msgid "Post Your Event"
531
- msgstr "Post Your Event"
532
-
533
- #: public/admin/calendar_tasks.php:16
534
- msgid "Add a new event to the calendar."
535
- msgstr "Add a new event to the calendar."
536
-
537
- #: public/admin/box_eventbrite.php:60
538
- msgid "Donation Based"
539
- msgstr "Donation Based"
540
-
541
- #: public/admin/box_eventbrite.php:68
542
- msgid "The price for this event's first ticket will be taken from the Cost field above."
543
- msgstr "The price for this event's first ticket will be taken from the Cost field above."
544
-
545
- #: public/admin/box_eventbrite.php:75
546
- msgid "Quantity"
547
- msgstr "Quantity"
548
-
549
- #: public/admin/box_eventbrite.php:85
550
- msgid "Include Fee in Price"
551
- msgstr "Include Fee in Price"
552
-
553
- #: public/admin/box_eventbrite.php:90
554
- msgid "Add Service Fee on top of price"
555
- msgstr "Add Service Fee on top of price"
556
-
557
- #: public/admin/box_eventbrite.php:92
558
- msgid "Include Service fee in price"
559
- msgstr "Include Service fee in price"
560
-
561
- #: public/admin/box_eventbrite.php:98
562
- msgid "Payment Options"
563
- msgstr "Payment Options"
564
-
565
- #: public/admin/box_eventbrite.php:105
566
- msgid "Google Checkout"
567
- msgstr "Google Checkout"
568
-
569
- #: public/admin/box_eventbrite.php:107
570
- msgid "Check"
571
- msgstr "Cheque"
572
-
573
- #: public/admin/box_eventbrite.php:109
574
- msgid "Cash"
575
- msgstr "Cash"
576
-
577
- #: public/admin/box_eventbrite.php:111
578
- msgid "Send an Invoice"
579
- msgstr "Send an Invoice"
580
-
581
- #: public/admin/box_profile_timezone.php:9
582
- msgid "Your preferred timezone"
583
- msgstr "Your preferred timezone"
584
-
585
- #: public/admin/box_repeat.php:5
586
- msgid "Select recurrence pattern:"
587
- msgstr "Select recurrence pattern:"
588
-
589
- #: public/admin/box_repeat.php:36
590
- msgid "Custom"
591
- msgstr ""
592
-
593
- #: public/admin/box_repeat.php:72
594
- msgid "End"
595
- msgstr "End"
596
-
597
- #: public/admin/box_repeat.php:82
598
- msgid "Ending after"
599
- msgstr "Ending after"
600
-
601
- #: public/admin/box_repeat.php:109
602
- #: public/admin/plugins/ics/display_feeds.php:90
603
- msgid "Please wait&#8230;"
604
- msgstr "Please wait&#8230;"
605
-
606
- #: public/admin/box_repeat.php:111
607
- msgid "Apply"
608
- msgstr "Apply"
609
-
610
- #: public/admin/box_repeat.php:116
611
- #: public/admin/plugins/ics/display_feeds.php:84
612
- msgid "Cancel"
613
- msgstr "Cancel"
614
-
615
- #: public/admin/box_support.php:4
616
- msgid "Timely"
617
- msgstr "Timely"
618
-
619
- #: public/admin/box_support.php:11
620
- msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
- msgstr "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
622
-
623
- #: public/admin/box_event_cost.php:228
624
- msgid "Status:"
625
- msgstr ""
626
-
627
- #: public/admin/box_event_cost.php:235
628
- msgid "Open"
629
- msgstr ""
630
-
631
- #: public/admin/box_event_cost.php:239
632
- msgid "Closed"
633
- msgstr ""
634
-
635
- #: public/admin/box_event_cost.php:254
636
- msgid "Add New Ticket Type"
637
- msgstr ""
638
-
639
- #: public/admin/box_event_cost.php:274
640
- msgid "Tickets URL:"
641
- msgstr ""
642
-
643
- #: public/admin/box_event_location.php:6
644
- msgid "Event location details"
645
- msgstr "Event location details"
646
-
647
- #: public/admin/box_event_location.php:19
648
- msgid "Venue name:"
649
- msgstr "Venue name:"
650
-
651
- #: public/admin/box_event_location.php:31
652
- msgid "Address:"
653
- msgstr "Address:"
654
-
655
- #: public/admin/box_event_location.php:45
656
- msgid "Input Coordinates"
657
- msgstr "Input Coordinates"
658
-
659
- #: public/admin/box_event_location.php:57
660
- msgid "Latitude:"
661
- msgstr "Latitude:"
662
-
663
- #: public/admin/box_event_location.php:69
664
- msgid "Longitude:"
665
- msgstr "Longitude:"
666
-
667
- #: public/admin/box_event_location.php:85
668
- msgid "Show Map"
669
- msgstr ""
670
-
671
- #: public/admin/box_eventbrite.php:1
672
- msgid "Eventbrite Ticketing"
673
- msgstr "Eventbrite Ticketing"
674
-
675
- #: public/admin/box_eventbrite.php:7
676
- msgid "Register this event with Eventbrite.com?"
677
- msgstr "Register this event with Eventbrite.com?"
678
-
679
- #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
- #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
- #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
- msgid "Yes"
683
- msgstr "Yes"
684
-
685
- #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
- #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
- #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
- msgid "No"
689
- msgstr "No"
690
-
691
- #: public/admin/box_eventbrite.php:22
692
- msgid "Set up your first ticket"
693
- msgstr "Set up your first ticket"
694
-
695
- #: public/admin/box_eventbrite.php:24
696
- msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
- msgstr "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
698
-
699
- #: public/admin/box_eventbrite.php:42
700
- msgid "Description"
701
- msgstr "Description"
702
-
703
- #: public/admin/box_eventbrite.php:53
704
- msgid "Type"
705
- msgstr "Type"
706
-
707
- #: public/admin/box_eventbrite.php:58
708
- msgid "Set Price"
709
- msgstr "Set Price"
710
-
711
- #: public/admin/box_event_contact.php:30
712
- msgid "Phone:"
713
- msgstr "Phone:"
714
-
715
- #: public/admin/box_event_contact.php:56
716
- msgid "Website URL:"
717
- msgstr ""
718
-
719
- #: public/admin/box_event_cost.php:6
720
- msgid "Event cost and Tickets"
721
- msgstr "Event cost and Tickets"
722
-
723
- #: public/admin/box_event_cost.php:20
724
- msgid "Ticket options not available - event imported from external calendar."
725
- msgstr ""
726
-
727
- #: public/admin/box_event_cost.php:28
728
- msgid "Free event"
729
- msgstr "Free event"
730
-
731
- #: public/admin/box_event_cost.php:41
732
- msgid "External Tickets URL"
733
- msgstr ""
734
-
735
- #: public/admin/box_event_cost.php:52
736
- msgid "Ticketing allows you to sell tickets directly to the users."
737
- msgstr ""
738
-
739
- #: public/admin/box_event_cost.php:55
740
- msgid "Sign Up for Timely Network"
741
- msgstr ""
742
-
743
- #: public/admin/box_event_cost.php:80
744
- msgid "Remove Ticket Type"
745
- msgstr ""
746
-
747
- #: public/admin/box_event_cost.php:101
748
- msgid "Ex.: Regular Ticket"
749
- msgstr ""
750
-
751
- #: public/admin/box_event_cost.php:105
752
- msgid "Description:"
753
- msgstr ""
754
-
755
- #: public/admin/box_event_cost.php:111
756
- msgid "(Optional)"
757
- msgstr ""
758
-
759
- #: public/admin/box_event_cost.php:115
760
- msgid "Price:"
761
- msgstr ""
762
-
763
- #: public/admin/box_event_cost.php:124
764
- msgid "USD"
765
- msgstr ""
766
-
767
- #: public/admin/box_event_cost.php:128
768
- msgid "Limits:"
769
- msgstr ""
770
-
771
- #: public/admin/box_event_cost.php:131
772
- msgid "This fields are required."
773
- msgstr ""
774
-
775
- #: public/admin/box_event_cost.php:156
776
- msgid "Quantity:"
777
- msgstr ""
778
-
779
- #: public/admin/box_event_cost.php:180
780
- msgid "Available:"
781
- msgstr ""
782
-
783
- #: public/admin/box_event_cost.php:185
784
- msgid "Immediately"
785
- msgstr ""
786
-
787
- #: public/admin/box_event_cost.php:190
788
- msgid "From:"
789
- msgstr ""
790
-
791
- #: public/admin/box_event_cost.php:207
792
- msgid "Till:"
793
- msgstr ""
794
-
795
- #: public/admin/box_ask_customer_review.php:42
796
- #: public/admin/box_ask_customer_review.php:75
797
- msgid "No, thanks"
798
- msgstr ""
799
-
800
- #: public/admin/box_ask_customer_review.php:50
801
- #: public/admin/box_ask_customer_review.php:84
802
- msgid "Ok, sure!"
803
- msgstr ""
804
-
805
- #: public/admin/box_ask_customer_review.php:66
806
- msgid "Would you mind giving us some feedback?"
807
- msgstr ""
808
-
809
- #: public/admin/box_ask_customer_review.php:101
810
- msgid "Please provide some feedback"
811
- msgstr ""
812
-
813
- #: public/admin/box_ask_customer_review.php:108
814
- msgid "Message:"
815
- msgstr ""
816
-
817
- #: public/admin/box_ask_customer_review.php:121
818
- msgid "Name:"
819
- msgstr ""
820
-
821
- #: public/admin/box_ask_customer_review.php:136
822
- #: public/admin/box_event_contact.php:43
823
- msgid "E-mail:"
824
- msgstr "E-mail:"
825
-
826
- #: public/admin/box_ask_customer_review.php:143
827
- msgid "E-mail is invalid."
828
- msgstr ""
829
-
830
- #: public/admin/box_ask_customer_review.php:154
831
- msgid "Site URL:"
832
- msgstr ""
833
-
834
- #: public/admin/box_ask_customer_review.php:161
835
- msgid "Site URL is invalid."
836
- msgstr ""
837
-
838
- #: public/admin/box_ask_customer_review.php:173
839
- msgid "Thank you for being our customer,"
840
- msgstr ""
841
-
842
- #: public/admin/box_ask_customer_review.php:174
843
- msgid "Aristotel Dascal, VP of Product, Time.ly"
844
- msgstr ""
845
-
846
- #: public/admin/box_ask_customer_review.php:180
847
- msgid "Sending..."
848
- msgstr ""
849
-
850
- #: public/admin/box_ask_customer_review.php:181
851
- msgid "Send Message"
852
- msgstr ""
853
-
854
- #: public/admin/box_event_children.php:12
855
- msgid "Base recurrence event"
856
- msgstr "Base recurrence event"
857
-
858
- #: public/admin/box_event_children.php:14
859
- msgid "Modified recurrence events"
860
- msgstr "Modified recurrence events"
861
-
862
- #: public/admin/box_event_children.php:22
863
- msgid "Edit parent:"
864
- msgstr "Edit parent:"
865
-
866
- #: public/admin/box_event_children.php:27
867
- msgid "Modified Events"
868
- msgstr "Modified Events"
869
-
870
- #: public/admin/box_event_children.php:31
871
- msgid "Edit:"
872
- msgstr "Edit:"
873
-
874
- #: public/admin/box_event_contact.php:6
875
- msgid "Organizer contact info"
876
- msgstr "Organiser contact info"
877
-
878
- #: public/admin/box_event_contact.php:17
879
- msgid "Contact name:"
880
- msgstr "Contact name:"
881
-
882
- #: lib/theme/loader.php:325
883
- msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
- msgstr "We couldn't find a suitable loader for filename with extension '%s'"
885
-
886
- #: lib/theme/loader.php:631
887
- msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
- msgstr ""
889
-
890
- #: lib/theme/search.php:253
891
- msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
- msgstr "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writeable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
893
-
894
- #: lib/theme/search.php:264
895
- msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
- msgstr "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
897
-
898
- #: lib/twig/environment.php:115
899
- msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
- msgstr ""
901
-
902
- #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
- msgid "Title:"
904
- msgstr "Title:"
905
-
906
- #: public/admin/agenda-widget-form.php:12
907
- msgid "Number of events to show:"
908
- msgstr "Number of events to show:"
909
-
910
- #: public/admin/agenda-widget-form.php:21
911
- msgid "Number of days to show:"
912
- msgstr "Number of days to show:"
913
-
914
- #: public/admin/agenda-widget-form.php:26
915
- msgid "Limit to:"
916
- msgstr "Limit to:"
917
-
918
- #: public/admin/agenda-widget-form.php:30
919
- msgid "Events with these <strong>Categories</strong>"
920
- msgstr "Events with these <strong>Categories</strong>"
921
-
922
- #: public/admin/agenda-widget-form.php:39
923
- msgid "No categories found."
924
- msgstr "No categories found."
925
-
926
- #: public/admin/agenda-widget-form.php:46
927
- msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
- msgstr "<strong>Or</strong> events with these <strong>Tags</strong>"
929
-
930
- #: public/admin/agenda-widget-form.php:55
931
- msgid "No tags found."
932
- msgstr "No tags found."
933
-
934
- #: public/admin/agenda-widget-form.php:62
935
- msgid "Show <strong>View Calendar</strong> button"
936
- msgstr "Show <strong>View Calendar</strong> button"
937
-
938
- #: public/admin/agenda-widget-form.php:65
939
- msgid "Show <strong>Subscribe</strong> buttons"
940
- msgstr "Show <strong>Subscribe</strong> buttons"
941
-
942
- #: public/admin/agenda-widget-form.php:68
943
- msgid "Hide this widget on calendar page"
944
- msgstr "Hide this widget on calendar page"
945
-
946
- #: public/admin/box_ask_customer_review.php:5
947
- msgid "Enjoying All-in-One Event Calendar?"
948
- msgstr ""
949
-
950
- #: public/admin/box_ask_customer_review.php:13
951
- msgid "Not really"
952
- msgstr ""
953
-
954
- #: public/admin/box_ask_customer_review.php:20
955
- msgid "Yes!"
956
- msgstr ""
957
-
958
- #: public/admin/box_ask_customer_review.php:33
959
- msgid "How about a rating on the Wordpress?"
960
- msgstr ""
961
-
962
- #: lib/recurrence/rule.php:397
963
- msgid "Every %d weeks"
964
- msgstr "Every %d weeks"
965
-
966
- #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
- msgid "Monthly"
968
- msgstr "Monthly"
969
-
970
- #: lib/recurrence/rule.php:409
971
- msgid "Every other month"
972
- msgstr "Every other month"
973
-
974
- #: lib/recurrence/rule.php:412
975
- msgid "Every %d months"
976
- msgstr "Every %d months"
977
-
978
- #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
- msgid "Yearly"
980
- msgstr "Yearly"
981
-
982
- #: lib/recurrence/rule.php:424
983
- msgid "Every other year"
984
- msgstr "Every other year"
985
-
986
- #: lib/recurrence/rule.php:427
987
- msgid "Every %d years"
988
- msgstr "Every %d years"
989
-
990
- #: lib/recurrence/rule.php:465
991
- msgid "until %s"
992
- msgstr "until %s"
993
-
994
- #: lib/recurrence/rule.php:475
995
- msgid "for %d occurrences"
996
- msgstr "for %d occurrences"
997
-
998
- #: lib/recurrence/rule.php:479
999
- msgid "forever"
1000
- msgstr "forever"
1001
-
1002
- #: lib/robots/helper.php:71
1003
- msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
- msgstr "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1005
-
1006
- #: lib/robots/helper.php:105
1007
- msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
- msgstr "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1009
-
1010
- #: lib/theme/list.php:152
1011
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
- msgstr "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1013
-
1014
- #: lib/theme/list.php:164
1015
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
- msgstr "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1017
-
1018
- #: lib/theme/list.php:179
1019
- msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
- msgstr "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1021
-
1022
- #: lib/theme/list.php:190
1023
- msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
- msgstr "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1025
-
1026
- #: lib/theme/list.php:257
1027
- msgid "Activate &#8220;%s&#8221;"
1028
- msgstr "Activate &#8220;%s&#8221;"
1029
-
1030
- #: lib/theme/list.php:264
1031
- msgid "Activate"
1032
- msgstr "Activate"
1033
-
1034
- #. translators: 1: theme title, 2: theme version, 3: theme author
1035
- #: lib/theme/list.php:281 public/admin/themes.php:25
1036
- msgid "%1$s %2$s by %3$s"
1037
- msgstr "%1$s %2$s by %3$s"
1038
-
1039
- #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
- #. title, 5: parent_theme
1041
- #: lib/theme/list.php:293
1042
- msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
- msgstr "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1044
-
1045
- #: lib/theme/list.php:308
1046
- msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
- msgstr "All of this theme&#8217;s files are located in <code>%2$s</code>."
1048
-
1049
- #: lib/post/custom-type.php:36
1050
- msgid "Parent Event"
1051
- msgstr "Parent Event"
1052
-
1053
- #: lib/post/custom-type.php:55
1054
- msgid "event"
1055
- msgstr "event"
1056
-
1057
- #: lib/post/custom-type.php:85
1058
- msgctxt "Event categories taxonomy"
1059
- msgid "Categories"
1060
- msgstr ""
1061
-
1062
- #: lib/post/custom-type.php:86
1063
- msgctxt "Event categories taxonomy (singular)"
1064
- msgid "Category"
1065
- msgstr ""
1066
-
1067
- #: lib/post/custom-type.php:87
1068
- msgctxt "Event categories menu item"
1069
- msgid "Organize"
1070
- msgstr ""
1071
-
1072
- #: lib/post/custom-type.php:94
1073
- msgctxt "Event tags taxonomy"
1074
- msgid "Tags"
1075
- msgstr ""
1076
-
1077
- #: lib/post/custom-type.php:95
1078
- msgctxt "Event tags taxonomy (singular)"
1079
- msgid "Tag"
1080
- msgstr ""
1081
-
1082
- #: lib/post/custom-type.php:102
1083
- msgctxt "Event feeds taxonomy"
1084
- msgid "Event Feeds"
1085
- msgstr "Event Feeds"
1086
-
1087
- #: lib/post/custom-type.php:103
1088
- msgctxt "Event feed taxonomy (singular)"
1089
- msgid "Event Feed"
1090
- msgstr "Event Feed"
1091
-
1092
- #: lib/post/custom-type.php:285
1093
- msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
- msgstr "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1095
-
1096
- #: lib/post/custom-type.php:296
1097
- msgid "All Events"
1098
- msgstr "All Events"
1099
-
1100
- #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
- #: lib/recurrence/rule.php:260
1102
- msgctxt "Recurrence editor - weekly tab"
1103
- msgid "on"
1104
- msgstr "on"
1105
-
1106
- #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
- #: lib/recurrence/rule.php:326
1108
- msgid "and"
1109
- msgstr "and"
1110
-
1111
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
- #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
- msgctxt "Recurrence editor - monthly tab"
1114
- msgid "on"
1115
- msgstr "on"
1116
-
1117
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
- #: lib/recurrence/rule.php:286
1119
- msgid "of the month"
1120
- msgstr "of the month"
1121
-
1122
- #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
- #: lib/recurrence/rule.php:336
1124
- msgctxt "Recurrence editor - yearly tab"
1125
- msgid "on"
1126
- msgstr "on"
1127
-
1128
- #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
- #: public/admin/cron_freq.php:9
1130
- msgid "Daily"
1131
- msgstr "Daily"
1132
-
1133
- #: lib/recurrence/rule.php:379
1134
- msgid "Every other day"
1135
- msgstr "Every other day"
1136
-
1137
- #: lib/recurrence/rule.php:382
1138
- msgid "Every %d days"
1139
- msgstr "Every %d days"
1140
-
1141
- #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
- msgid "Weekly"
1143
- msgstr "Weekly"
1144
-
1145
- #: lib/recurrence/rule.php:394
1146
- msgid "Every other week"
1147
- msgstr "Every other week"
1148
-
1149
- #: lib/less/variable/font.php:64
1150
- msgid "Custom..."
1151
- msgstr "Custom..."
1152
-
1153
- #: lib/less/variable/font.php:112
1154
- msgid "Enter custom font(s)"
1155
- msgstr "Enter custom font(s)"
1156
-
1157
- #: lib/less/variable/size.php:26
1158
- msgid "Length"
1159
- msgstr "Length"
1160
-
1161
- #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
- msgid "All-in-One Event Calendar"
1163
- msgstr "All-in-One Event Calendar"
1164
-
1165
- #: lib/notification/admin.php:182
1166
- msgid "Got it – dismiss this"
1167
- msgstr ""
1168
-
1169
- #: lib/post/custom-type.php:26
1170
- msgctxt "Custom post type name"
1171
- msgid "Events"
1172
- msgstr "Events"
1173
-
1174
- #: lib/post/custom-type.php:27
1175
- msgctxt "Custom post type name (singular)"
1176
- msgid "Event"
1177
- msgstr "Event"
1178
-
1179
- #: lib/post/custom-type.php:28
1180
- msgid "Add New"
1181
- msgstr "Add New"
1182
-
1183
- #: lib/post/custom-type.php:29
1184
- msgid "Add New Event"
1185
- msgstr "Add New Event"
1186
-
1187
- #: lib/post/custom-type.php:30
1188
- msgid "Edit Event"
1189
- msgstr "Edit Event"
1190
-
1191
- #: lib/post/custom-type.php:31
1192
- msgid "New Event"
1193
- msgstr "New Event"
1194
-
1195
- #: lib/post/custom-type.php:32
1196
- msgid "View Event"
1197
- msgstr "View Event"
1198
-
1199
- #: lib/post/custom-type.php:33
1200
- msgid "Search Events"
1201
- msgstr "Search Events"
1202
-
1203
- #: lib/post/custom-type.php:34
1204
- msgid "No Events found"
1205
- msgstr "No Events found"
1206
-
1207
- #: lib/post/custom-type.php:35
1208
- msgid "No Events found in Trash"
1209
- msgstr "No Events found in Trash"
1210
-
1211
- #: lib/html/element/setting/html.php:62
1212
- msgid "Filter by post ID:"
1213
- msgstr "Filter by post ID:"
1214
-
1215
- #: lib/html/element/setting/html.php:63
1216
- msgid "Filter by post IDs (separate IDs by comma):"
1217
- msgstr "Filter by post IDs (separate IDs by comma):"
1218
-
1219
- #: lib/html/element/setting/html.php:64
1220
- msgid "Limit number of events per page:"
1221
- msgstr "Limit number of events per page:"
1222
-
1223
- #: lib/html/element/setting/html.php:65
1224
- msgid "Warning:"
1225
- msgstr "Warning:"
1226
-
1227
- #: lib/html/element/setting/html.php:66
1228
- msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
- msgstr "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1230
-
1231
- #: lib/import-export/ics.php:831
1232
- msgid "Tickets: "
1233
- msgstr ""
1234
-
1235
- #: lib/html/element/setting/html.php:41
1236
- msgid "Day view:"
1237
- msgstr "Day view:"
1238
-
1239
- #: lib/html/element/setting/html.php:42
1240
- msgid "Agenda view:"
1241
- msgstr "Agenda view:"
1242
-
1243
- #: lib/html/element/setting/html.php:43
1244
- msgid "Some Other view:"
1245
- msgstr "Some Other view:"
1246
-
1247
- #: lib/html/element/setting/html.php:44
1248
- msgid "Default view as per settings:"
1249
- msgstr "Default view as per settings:"
1250
-
1251
- #: lib/html/element/setting/html.php:45
1252
- msgid "General form:"
1253
- msgstr "General form:"
1254
-
1255
- #: lib/html/element/setting/html.php:46
1256
- msgid "Optional."
1257
- msgstr "Optional."
1258
-
1259
- #: lib/html/element/setting/html.php:47
1260
- msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
- msgstr "Add options to display a filtered calendar. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1262
-
1263
- #: lib/html/element/setting/html.php:48
1264
- msgid "Filter by event category name/slug:"
1265
- msgstr "Filter by event category name/slug:"
1266
-
1267
- #: lib/html/element/setting/html.php:49
1268
- msgid "Holidays"
1269
- msgstr "Holidays"
1270
-
1271
- #: lib/html/element/setting/html.php:50
1272
- msgid "Lunar Cycles"
1273
- msgstr "Lunar Cycles"
1274
-
1275
- #: lib/html/element/setting/html.php:51
1276
- msgid "zodiac-date-ranges"
1277
- msgstr "zodiac-date-ranges"
1278
-
1279
- #: lib/html/element/setting/html.php:52
1280
- msgid "Filter by event category names/slugs (separate names by comma):"
1281
- msgstr "Filter by event category names/slugs (separate names by comma):"
1282
-
1283
- #: lib/html/element/setting/html.php:53
1284
- msgid "Filter by event category ID:"
1285
- msgstr "Filter by event category ID:"
1286
-
1287
- #: lib/html/element/setting/html.php:54
1288
- msgid "Filter by event category IDs (separate IDs by comma):"
1289
- msgstr "Filter by event category IDs (separate IDs by comma):"
1290
-
1291
- #: lib/html/element/setting/html.php:55
1292
- msgid "Filter by event tag name/slug:"
1293
- msgstr "Filter by event tag name/slug:"
1294
-
1295
- #: lib/html/element/setting/html.php:56
1296
- msgid "tips-and-tricks"
1297
- msgstr "tips-and-tricks"
1298
-
1299
- #: lib/html/element/setting/html.php:57
1300
- msgid "creative writing"
1301
- msgstr "creative writing"
1302
-
1303
- #: lib/html/element/setting/html.php:58
1304
- msgid "performing arts"
1305
- msgstr "performing arts"
1306
-
1307
- #: lib/html/element/setting/html.php:59
1308
- msgid "Filter by event tag names/slugs (separate names by comma):"
1309
- msgstr "Filter by event tag names/slugs (separate names by comma):"
1310
-
1311
- #: lib/html/element/setting/html.php:60
1312
- msgid "Filter by event tag ID:"
1313
- msgstr "Filter by event tag ID:"
1314
-
1315
- #: lib/html/element/setting/html.php:61
1316
- msgid "Filter by event tag IDs (separate IDs by comma):"
1317
- msgstr "Filter by event tag IDs (separate IDs by comma):"
1318
-
1319
- #: lib/exception/handler.php:395
1320
- msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
- msgstr ""
1322
-
1323
- #: lib/exception/handler.php:404
1324
- msgid "Try reactivating plugin"
1325
- msgstr ""
1326
-
1327
- #: lib/exception/handler.php:576
1328
- msgid "Toggle error details"
1329
- msgstr ""
1330
-
1331
- #: lib/exception/handler.php:577
1332
- msgid "Error Details:"
1333
- msgstr ""
1334
-
1335
- #: lib/factory/html.php:133
1336
- msgid "Choose a date using calendar"
1337
- msgstr "Choose a date using calendar"
1338
-
1339
- #: lib/factory/html.php:278
1340
- msgid "Tags (optional)"
1341
- msgstr "Tags (optional)"
1342
-
1343
- #: lib/html/element/setting/cache.php:38
1344
- msgid "Check again"
1345
- msgstr "Check again"
1346
-
1347
- #: lib/html/element/setting/cache.php:39
1348
- msgid "Templates cache is not writable"
1349
- msgstr "Templates cache is not writeable"
1350
-
1351
- #: lib/html/element/setting/cache.php:40
1352
- msgid "Templates cache is writable"
1353
- msgstr "Templates cache is writeable"
1354
-
1355
- #: lib/html/element/setting/cache.php:41
1356
- msgid "Checking..."
1357
- msgstr "Checking..."
1358
-
1359
- #: lib/html/element/setting/cache.php:42
1360
- msgid "Performance Report"
1361
- msgstr "Performance Report"
1362
-
1363
- #: lib/html/element/setting/calendar-page-selector.php:70
1364
- msgid "View"
1365
- msgstr "View"
1366
-
1367
- #: lib/html/element/setting/calendar-page-selector.php:114
1368
- msgid "- Auto-Create New Page -"
1369
- msgstr "- Auto-Create New Page -"
1370
-
1371
- #: lib/html/element/setting/enabled-views.php:22
1372
- msgid "Enabled"
1373
- msgstr "Enabled"
1374
-
1375
- #: lib/html/element/setting/enabled-views.php:23
1376
- msgid "Default"
1377
- msgstr "Default"
1378
-
1379
- #: lib/html/element/setting/enabled-views.php:24
1380
- msgid "Desktop"
1381
- msgstr "Desktop"
1382
-
1383
- #: lib/html/element/setting/enabled-views.php:25
1384
- msgid "Mobile"
1385
- msgstr "Mobile"
1386
-
1387
- #: lib/html/element/setting/html.php:37
1388
- msgid "Embed the calendar using a shortcode"
1389
- msgstr "Embed the calendar using a shortcode"
1390
-
1391
- #: lib/html/element/setting/html.php:38
1392
- msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
- msgstr "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1394
-
1395
- #: lib/html/element/setting/html.php:39
1396
- msgid "Month view:"
1397
- msgstr "Month view:"
1398
-
1399
- #: lib/html/element/setting/html.php:40
1400
- msgid "Week view:"
1401
- msgstr "Week view:"
1402
-
1403
- #: lib/css/frontend.php:239
1404
- msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
- msgstr ""
1406
-
1407
- #: lib/css/frontend.php:266
1408
- msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
- msgstr "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1410
-
1411
- #: lib/css/frontend.php:272
1412
- msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
- msgstr "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1414
-
1415
- #: lib/css/frontend.php:300
1416
- msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
- msgstr "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1418
-
1419
- #: lib/css/frontend.php:307
1420
- msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
- msgstr "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1422
-
1423
- #: lib/css/frontend.php:343
1424
- msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
- msgstr "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1426
-
1427
- #: lib/database/applicator.php:182
1428
- msgid "Date columns in table %s have different types."
1429
- msgstr "Date columns in table %s have different types."
1430
-
1431
- #: lib/database/exception/database.php:19
1432
- msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
- msgstr "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1434
-
1435
- #: lib/database/exception/database.php:23
1436
- msgid "Error encountered: %s"
1437
- msgstr "Error encountered: %s"
1438
-
1439
- #: lib/date/system.php:202
1440
- msgid "GMT%+d:%02d"
1441
- msgstr "GMT%+d:%02d"
1442
-
1443
- #: lib/date/timezone.php:362
1444
- msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
- msgstr "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1446
-
1447
- #: lib/date/timezone.php:397
1448
- msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
- msgstr "Timezone \"UTC%+d\" is not recognised. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1450
-
1451
- #: lib/date/timezone.php:421
1452
- msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
- msgstr "Selected timezone \"UTC%+d\" will be treated as %s."
1454
-
1455
- #: lib/date/timezone.php:490
1456
- msgid "Manual Offset"
1457
- msgstr "Manual Offset"
1458
-
1459
- #: lib/date/timezone.php:493
1460
- msgid "Choose your timezone"
1461
- msgstr "Choose your timezone"
1462
-
1463
- #: lib/environment/check.php:55
1464
- msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
- msgstr "Select an option in the <strong>Calendar page</strong> dropdown list."
1466
-
1467
- #: lib/environment/check.php:68
1468
- msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
- msgstr "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1470
-
1471
- #: lib/environment/check.php:78
1472
- msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
- msgstr "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1474
-
1475
- #: lib/environment/check.php:196
1476
- msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
- msgstr ""
1478
-
1479
- #: lib/environment/check.php:197
1480
- msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
- msgstr ""
1482
-
1483
- #: lib/exception/handler.php:176
1484
- msgid "The add-on \"%s\" has been disabled due to an error:"
1485
- msgstr ""
1486
-
1487
- #: lib/calendar-feed/ics.php:367
1488
- msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
- msgstr "Do you want to keep the events imported from the calendar or remove them?"
1490
-
1491
- #: lib/calendar-feed/ics.php:373
1492
- msgid "Removing ICS Feed"
1493
- msgstr "Removing ICS Feed"
1494
-
1495
- #: lib/calendar-feed/ics.php:376
1496
- msgid "Keep Events"
1497
- msgstr "Keep Events"
1498
-
1499
- #: lib/calendar-feed/ics.php:379
1500
- msgid "Remove Events"
1501
- msgstr "Remove Events"
1502
-
1503
- #: lib/calendar-feed/ics.php:519
1504
- msgid "Oh, submission was not accepted."
1505
- msgstr ""
1506
-
1507
- #: lib/calendar-feed/ics.php:699
1508
- msgid "Deleted %d events"
1509
- msgstr "Deleted %d events"
1510
-
1511
- #: lib/calendar-feed/ics.php:735
1512
- msgid "Feed deleted"
1513
- msgstr "Feed deleted"
1514
-
1515
- #: lib/captcha/provider/nocaptcha.php:31
1516
- msgid "noCAPTCHA public key:"
1517
- msgstr ""
1518
-
1519
- #: lib/captcha/provider/nocaptcha.php:47
1520
- msgid "noCAPTCHA private key:"
1521
- msgstr ""
1522
-
1523
- #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
- msgid "Please try verifying you are human again."
1525
- msgstr ""
1526
-
1527
- #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
- msgid "There was an error reading the human verification data. Please try again."
1529
- msgstr ""
1530
-
1531
- #: lib/captcha/provider/recaptcha.php:32
1532
- msgid "reCAPTCHA public key:"
1533
- msgstr ""
1534
-
1535
- #: lib/captcha/provider/recaptcha.php:48
1536
- msgid "reCAPTCHA private key:"
1537
- msgstr ""
1538
-
1539
- #: lib/captcha/provider/recaptcha.php:66
1540
- msgid "Human verification"
1541
- msgstr ""
1542
-
1543
- #: lib/captcha/provider/recaptcha.php:67
1544
- msgid "Loading reCAPTCHA..."
1545
- msgstr ""
1546
-
1547
- #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
- #: lib/clone/renderer-helper.php:45
1549
- msgid "Clone"
1550
- msgstr "Clone"
1551
-
1552
- #: lib/clone/renderer-helper.php:44
1553
- msgid "Make new copy of event"
1554
- msgstr "Make new copy of event"
1555
-
1556
- #: lib/clone/renderer-helper.php:47
1557
- msgid "Copy to a new draft"
1558
- msgstr "Copy to a new draft"
1559
-
1560
- #: lib/clone/renderer-helper.php:48
1561
- msgid "Clone to Draft"
1562
- msgstr "Clone to Draft"
1563
-
1564
- #: lib/command/clone.php:173
1565
- msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
- msgstr "<p>The event <strong>%s</strong> was cloned successfully. <a href=\"%s\">Edit cloned event</a></p>"
1567
-
1568
- #: lib/compatibility/check.php:101
1569
- msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
- msgstr ""
1571
-
1572
- #: app/view/event/single.php:123
1573
- msgid "Tickets:"
1574
- msgstr ""
1575
-
1576
- #: app/view/event/single.php:124
1577
- msgid "Free"
1578
- msgstr "Free"
1579
-
1580
- #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
- msgid "Buy Tickets"
1582
- msgstr "Buy Tickets"
1583
-
1584
- #: app/view/event/single.php:150
1585
- msgid "Edit this occurrence (%s)"
1586
- msgstr "Edit this occurrence (%s)"
1587
-
1588
- #: app/view/event/single.php:195
1589
- msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
- msgstr "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1591
-
1592
- #: app/view/event/single.php:206
1593
- msgid "View original"
1594
- msgstr "View original"
1595
-
1596
- #: app/view/event/taxonomy.php:113
1597
- msgid "Category image"
1598
- msgstr "Category image"
1599
-
1600
- #: app/view/event/ticket.php:24
1601
- msgid "Register Now"
1602
- msgstr "Register Now"
1603
-
1604
- #: app/view/event/ticket.php:82
1605
- msgid "Event website"
1606
- msgstr "Event website"
1607
-
1608
- #: app/view/event/time.php:84 app/view/event/time.php:118
1609
- msgctxt "Event time separator"
1610
- msgid " @ "
1611
- msgstr " @ "
1612
-
1613
- #: app/view/event/time.php:100
1614
- msgctxt "Event start/end separator"
1615
- msgid " – "
1616
- msgstr " – "
1617
-
1618
- #: app/view/event/time.php:166
1619
- msgid ", and "
1620
- msgstr ", and "
1621
-
1622
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
- msgid "Excludes: "
1624
- msgstr ""
1625
-
1626
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
- msgid "Repeats"
1628
- msgstr ""
1629
-
1630
- #: lib/calendar-feed/ics.php:38
1631
- msgid "ICS"
1632
- msgstr "ICS"
1633
-
1634
- #: lib/calendar-feed/ics.php:69
1635
- msgid "Another import process in progress. Please try again later."
1636
- msgstr "Another import process in progress. Please try again later."
1637
-
1638
- #: lib/calendar-feed/ics.php:174
1639
- msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
- msgstr "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1641
-
1642
- #: lib/calendar-feed/ics.php:181
1643
- msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
- msgstr "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1645
-
1646
- #: lib/calendar-feed/ics.php:195
1647
- msgid "Imported %s event"
1648
- msgid_plural "Imported %s events"
1649
- msgstr[0] "Imported %s event"
1650
- msgstr[1] "Imported %s events"
1651
-
1652
- #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
- msgid "Invalid ICS feed ID"
1654
- msgstr "Invalid ICS feed ID"
1655
-
1656
- #: lib/calendar-feed/ics.php:350
1657
- msgid "Categories (optional)"
1658
- msgstr "Categories (optional)"
1659
-
1660
- #: app/view/event/content.php:33 app/view/event/single.php:119
1661
- msgid "When:"
1662
- msgstr "When:"
1663
-
1664
- #: app/view/event/content.php:34 app/view/event/single.php:120
1665
- msgid "Where:"
1666
- msgstr "Where:"
1667
-
1668
- #: app/view/event/content.php:125
1669
- msgid "Calendar"
1670
- msgstr ""
1671
-
1672
- #: app/view/event/content.php:126
1673
- msgid "View all events"
1674
- msgstr "View all events"
1675
-
1676
- #: app/view/event/location.php:96
1677
- msgid "Click to view map"
1678
- msgstr "Click to view map"
1679
-
1680
- #: app/view/event/location.php:97
1681
- msgid "View Full-Size Map"
1682
- msgstr "View Full-Size Map"
1683
-
1684
- #: app/view/event/post.php:29
1685
- msgid "Event updated. <a href=\"%s\">View event</a>"
1686
- msgstr "Event updated. <a href=\"%s\">View event</a>"
1687
-
1688
- #: app/view/event/post.php:32
1689
- msgid "Custom field updated."
1690
- msgstr "Custom field updated."
1691
-
1692
- #: app/view/event/post.php:33
1693
- msgid "Custom field deleted."
1694
- msgstr "Custom field deleted."
1695
-
1696
- #: app/view/event/post.php:34
1697
- msgid "Event updated."
1698
- msgstr "Event updated."
1699
-
1700
- #. translators: %s: date and time of the revision
1701
- #: app/view/event/post.php:38
1702
- msgid "Event restored to revision from %s"
1703
- msgstr "Event restored to revision from %s"
1704
-
1705
- #: app/view/event/post.php:43
1706
- msgid "Event published. <a href=\"%s\">View event</a>"
1707
- msgstr "Event published. <a href=\"%s\">View event</a>"
1708
-
1709
- #: app/view/event/post.php:46
1710
- msgid "Event saved."
1711
- msgstr "Event saved."
1712
-
1713
- #: app/view/event/post.php:48
1714
- msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
- msgstr "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1716
-
1717
- #: app/view/event/post.php:52
1718
- msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
- msgstr "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1720
-
1721
- #. translators: Publish box date format, see http:php.net/date
1722
- #: app/view/event/post.php:54
1723
- msgid "M j, Y @ G:i"
1724
- msgstr "jS M, Y @ G:i"
1725
-
1726
- #: app/view/event/post.php:58
1727
- msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
- msgstr "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1729
-
1730
- #: app/view/event/single.php:78
1731
- msgid "Event was created in the %s time zone"
1732
- msgstr "Event was created in the %s time zone"
1733
-
1734
- #: app/view/event/single.php:114
1735
- msgid "Add to Calendar"
1736
- msgstr "Add to Calendar"
1737
-
1738
- #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
- msgid "Cost:"
1740
- msgstr "Cost:"
1741
-
1742
- #: app/view/event/single.php:122
1743
- msgid "Contact:"
1744
- msgstr "Contact:"
1745
-
1746
- #: app/view/calendar/view/agenda.php:169
1747
- msgid "Categories:"
1748
- msgstr "Categories:"
1749
-
1750
- #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
- #: public/admin/themes.php:29
1752
- msgid "Tags:"
1753
- msgstr "Tags:"
1754
-
1755
- #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
- #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
- #: app/view/calendar/widget.php:374
1758
- msgid "@ %s"
1759
- msgstr "@ %s"
1760
-
1761
- #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
- msgid "g a"
1763
- msgstr "g a"
1764
-
1765
- #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
- msgid "Reveal full day"
1767
- msgstr "Reveal full day"
1768
-
1769
- #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
- msgid "All-day"
1771
- msgstr "All-day"
1772
-
1773
- #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
- msgid "Now:"
1775
- msgstr "Now:"
1776
-
1777
- #: app/view/calendar/view/week.php:67
1778
- msgid "Week of %s"
1779
- msgstr "Week of %s"
1780
-
1781
- #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
- msgid "Upcoming Events"
1783
- msgstr "Upcoming Events"
1784
-
1785
- #: app/view/calendar/widget.php:38
1786
- msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
- msgstr "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1788
-
1789
- #: app/view/calendar/widget.php:80
1790
- msgid "Choose how to limit the upcoming events"
1791
- msgstr "Choose how to limit the upcoming events"
1792
-
1793
- #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
- msgid "Events"
1795
- msgstr "Events"
1796
-
1797
- #: app/view/calendar/widget.php:93
1798
- msgid "Days"
1799
- msgstr "Days"
1800
-
1801
- #: app/view/calendar/widget.php:106
1802
- msgid "Number of events to show"
1803
- msgstr "Number of events to show"
1804
-
1805
- #: app/view/calendar/widget.php:115
1806
- msgid "Number of days to show"
1807
- msgstr "Number of days to show"
1808
-
1809
- #: app/view/calendar/widget.php:124
1810
- msgid "Show events filtered for the following tags/categories"
1811
- msgstr "Show events filtered for the following tags/categories"
1812
-
1813
- #: app/view/calendar/widget.php:141
1814
- msgid "Show the subscribe button in the widget"
1815
- msgstr "Show the subscribe button in the widget"
1816
-
1817
- #: app/view/calendar/widget.php:370
1818
- msgid "There are no upcoming events."
1819
- msgstr "There are no upcoming events."
1820
-
1821
- #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
- msgid "all-day"
1823
- msgstr "all-day"
1824
-
1825
- #: app/view/calendar/widget.php:372
1826
- msgid "View Calendar"
1827
- msgstr "View Calendar"
1828
-
1829
- #: app/view/calendar/widget.php:375
1830
- msgid "Add"
1831
- msgstr "Add"
1832
-
1833
- #: app/view/calendar/page.php:260
1834
- msgid "Subscribe to filtered calendar"
1835
- msgstr "Subscribe to filtered calendar"
1836
-
1837
- #: app/view/calendar/page.php:261
1838
- msgid "Subscribe"
1839
- msgstr "Subscribe"
1840
-
1841
- #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
- msgid "Get a Timely Calendar"
1843
- msgstr "Get a Timely Calendar"
1844
-
1845
- #: app/view/calendar/subscribe-button.php:22
1846
- msgid "Add to Timely Calendar"
1847
- msgstr "Add to Timely Calendar"
1848
-
1849
- #: app/view/calendar/subscribe-button.php:23
1850
- msgid "Add to Google"
1851
- msgstr "Add to Google"
1852
-
1853
- #: app/view/calendar/subscribe-button.php:24
1854
- msgid "Add to Outlook"
1855
- msgstr "Add to Outlook"
1856
-
1857
- #: app/view/calendar/subscribe-button.php:25
1858
- msgid "Add to Apple Calendar"
1859
- msgstr "Add to Apple Calendar"
1860
-
1861
- #: app/view/calendar/subscribe-button.php:26
1862
- msgid "Add to other calendar"
1863
- msgstr "Add to other calendar"
1864
-
1865
- #: app/view/calendar/subscribe-button.php:29
1866
- msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
- msgstr "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1868
-
1869
- #: app/view/calendar/subscribe-button.php:30
1870
- msgid "Subscribe to this calendar in your Google Calendar"
1871
- msgstr "Subscribe to this calendar in your Google Calendar"
1872
-
1873
- #: app/view/calendar/subscribe-button.php:31
1874
- msgid "Subscribe to this calendar in MS Outlook"
1875
- msgstr "Subscribe to this calendar in MS Outlook"
1876
-
1877
- #: app/view/calendar/subscribe-button.php:32
1878
- msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
- msgstr "Subscribe to this calendar in Apple Calendar/iCal"
1880
-
1881
- #: app/view/calendar/subscribe-button.php:33
1882
- msgid "Subscribe to this calendar in another plain-text calendar"
1883
- msgstr "Subscribe to this calendar in another plain-text calendar"
1884
-
1885
- #: app/view/calendar/taxonomy.php:97
1886
- msgid "Clear category filter"
1887
- msgstr "Clear category filter"
1888
-
1889
- #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
- #: lib/html/element/setting/tags-categories.php:47
1891
- msgid "Categories"
1892
- msgstr "Categories"
1893
-
1894
- #: app/view/calendar/taxonomy.php:99
1895
- msgid "Clear tag filter"
1896
- msgstr "Clear tag filter"
1897
-
1898
- #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
- #: lib/html/element/setting/tags-categories.php:39
1900
- msgid "Tags"
1901
- msgstr "Tags"
1902
-
1903
- #: app/view/calendar/view/agenda.php:142
1904
- msgid "Collapse All"
1905
- msgstr "Collapse All"
1906
-
1907
- #: app/view/calendar/view/agenda.php:143
1908
- msgid "Expand All"
1909
- msgstr "Expand All"
1910
-
1911
- #: app/view/calendar/view/agenda.php:166
1912
- msgid "There are no upcoming events to display at this time."
1913
- msgstr "There are no upcoming events to display at this time."
1914
-
1915
- #: app/view/calendar/view/agenda.php:168
1916
- msgid "Read more"
1917
- msgstr "Read more"
1918
-
1919
- #: app/view/admin/tickets.php:86
1920
- msgid "Sales"
1921
- msgstr ""
1922
-
1923
- #: app/view/admin/tickets.php:87
1924
- msgid "How do you want the tickets revenue to be sent to you?"
1925
- msgstr ""
1926
-
1927
- #: app/view/admin/tickets.php:88
1928
- msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
- msgstr ""
1930
-
1931
- #: app/view/admin/tickets.php:91
1932
- msgid "Cheque"
1933
- msgstr ""
1934
-
1935
- #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
- msgid "Paypal"
1937
- msgstr "Paypal"
1938
-
1939
- #: app/view/admin/tickets.php:94
1940
- msgid "Save Changes"
1941
- msgstr ""
1942
-
1943
- #: app/view/admin/tickets.php:95
1944
- msgid "Date"
1945
- msgstr ""
1946
-
1947
- #: app/view/admin/tickets.php:96
1948
- msgid "Event"
1949
- msgstr ""
1950
-
1951
- #: app/view/admin/tickets.php:97
1952
- msgid "Purchaser"
1953
- msgstr ""
1954
-
1955
- #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
- #: public/admin/box_event_cost.php:35
1957
- msgid "Tickets"
1958
- msgstr "Tickets"
1959
-
1960
- #: app/view/admin/tickets.php:101
1961
- msgid "Total"
1962
- msgstr ""
1963
-
1964
- #: app/view/admin/tickets.php:102
1965
- msgid "Sign Out"
1966
- msgstr ""
1967
-
1968
- #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
- #: app/view/admin/widget-creator.php:47
1970
- msgid "Widget Creator"
1971
- msgstr "Widget Creator"
1972
-
1973
- #: app/view/admin/widget-creator.php:74
1974
- msgctxt "meta box"
1975
- msgid "Widget Creator"
1976
- msgstr "Widget Creator"
1977
-
1978
- #: app/view/admin/widget-creator.php:131
1979
- msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
- msgstr "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1981
-
1982
- #: app/view/admin/widget-creator.php:132
1983
- msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
- msgstr "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1985
-
1986
- #: app/view/admin/widget-creator.php:134
1987
- msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
- msgstr "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1989
-
1990
- #: app/view/admin/widget-creator.php:140
1991
- msgid "Paste this code onto your site:"
1992
- msgstr "Paste this code onto your site:"
1993
-
1994
- #: app/view/admin/widget-creator.php:141
1995
- msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
- msgstr "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1997
-
1998
- #: app/view/calendar/page.php:54
1999
- msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
- msgstr "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2001
-
2002
- #: app/view/calendar/page.php:74
2003
- msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
- msgstr "Calendar was unable to initialise %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2005
-
2006
- #: app/view/admin/settings.php:193
2007
- msgid "Phone Number:"
2008
- msgstr ""
2009
-
2010
- #: app/view/admin/settings.php:194
2011
- msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
- msgstr ""
2013
-
2014
- #: app/view/admin/settings.php:197
2015
- msgid "Sign Up"
2016
- msgstr ""
2017
-
2018
- #: app/view/admin/settings.php:198
2019
- msgid "Sign In"
2020
- msgstr ""
2021
-
2022
- #: app/view/admin/settings.php:212
2023
- msgid "Save Settings"
2024
- msgstr "Save Settings"
2025
-
2026
- #: app/view/admin/settings.php:219
2027
- msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
- msgstr "If the form below is not working please follow <a href=\"%s\">this link</a>."
2029
-
2030
- #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
- msgid "Theme Options"
2032
- msgstr "Theme Options"
2033
-
2034
- #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
- msgid "Calendar Theme Options"
2036
- msgstr "Calendar Theme Options"
2037
-
2038
- #: app/view/admin/theme-options.php:79
2039
- msgctxt "meta box"
2040
- msgid "Calendar Theme Options"
2041
- msgstr "Calendar Theme Options"
2042
-
2043
- #: app/view/admin/theme-options.php:133
2044
- msgid "General"
2045
- msgstr "General"
2046
-
2047
- #: app/view/admin/theme-options.php:136
2048
- msgid "Tables"
2049
- msgstr "Tables"
2050
-
2051
- #: app/view/admin/theme-options.php:139
2052
- msgid "Buttons"
2053
- msgstr "Buttons"
2054
-
2055
- #: app/view/admin/theme-options.php:142
2056
- msgid "Forms"
2057
- msgstr "Forms"
2058
-
2059
- #: app/view/admin/theme-options.php:145
2060
- msgid "Calendar general"
2061
- msgstr "Calendar general"
2062
-
2063
- #: app/view/admin/theme-options.php:148
2064
- msgid "Month/week/day view"
2065
- msgstr "Month/week/day view"
2066
-
2067
- #: app/view/admin/theme-options.php:151
2068
- msgid "Agenda view"
2069
- msgstr "Agenda view"
2070
-
2071
- #: app/view/admin/theme-options.php:169
2072
- msgid "Save Options"
2073
- msgstr "Save Options"
2074
-
2075
- #: app/view/admin/theme-options.php:177
2076
- msgid "Reset to Defaults"
2077
- msgstr "Reset to Defaults"
2078
-
2079
- #: app/view/admin/theme-switching.php:31
2080
- msgid "All-in-One Event Calendar: Themes"
2081
- msgstr "All-in-One Event Calendar: Themes"
2082
-
2083
- #: app/view/admin/tickets.php:36
2084
- msgid "Ticketing"
2085
- msgstr ""
2086
-
2087
- #: app/view/admin/tickets.php:37
2088
- msgid "Ticketing<sup>beta</sup>"
2089
- msgstr ""
2090
-
2091
- #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
- msgid "Time.ly Ticketing<sup>beta</sup>"
2093
- msgstr ""
2094
-
2095
- #: app/view/admin/settings.php:98
2096
- msgctxt "meta box"
2097
- msgid "Timely"
2098
- msgstr "Timely"
2099
-
2100
- #: app/view/admin/settings.php:140
2101
- msgid "Viewing Events"
2102
- msgstr "Viewing Events"
2103
-
2104
- #: app/view/admin/settings.php:143
2105
- msgid "Adding/Editing Events"
2106
- msgstr "Adding/Editing Events"
2107
-
2108
- #: app/view/admin/settings.php:146
2109
- msgid "Advanced"
2110
- msgstr "Advanced"
2111
-
2112
- #: app/view/admin/settings.php:148
2113
- msgid "Advanced Settings"
2114
- msgstr "Advanced Settings"
2115
-
2116
- #: app/view/admin/settings.php:149
2117
- msgid "Shortcodes"
2118
- msgstr "Shortcodes"
2119
-
2120
- #: app/view/admin/settings.php:150
2121
- msgid "Email Templates"
2122
- msgstr "Email Templates"
2123
-
2124
- #: app/view/admin/settings.php:151
2125
- msgid "External Services"
2126
- msgstr "External Services"
2127
-
2128
- #: app/view/admin/settings.php:152
2129
- msgid "Cache Report"
2130
- msgstr "Cache Report"
2131
-
2132
- #: app/view/admin/settings.php:171
2133
- msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
- msgstr ""
2135
-
2136
- #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
- #: public/admin/box_ask_customer_review.php:112
2138
- #: public/admin/box_ask_customer_review.php:126
2139
- #: public/admin/box_ask_customer_review.php:140
2140
- #: public/admin/box_ask_customer_review.php:158
2141
- #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
- msgid "This field is required."
2143
- msgstr ""
2144
-
2145
- #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
- msgid "Register"
2147
- msgstr "Register"
2148
-
2149
- #: app/view/admin/settings.php:184
2150
- msgid "Sign in"
2151
- msgstr ""
2152
-
2153
- #: app/view/admin/settings.php:185
2154
- msgid "You are successfully signed in to <b>Timely Network</b>."
2155
- msgstr ""
2156
-
2157
- #: app/view/admin/settings.php:186
2158
- msgid "Sign out"
2159
- msgstr ""
2160
-
2161
- #: app/view/admin/settings.php:187
2162
- msgid "Hide form"
2163
- msgstr ""
2164
-
2165
- #: app/view/admin/settings.php:188
2166
- msgid "Show form"
2167
- msgstr ""
2168
-
2169
- #: app/view/admin/settings.php:189
2170
- msgid "Full Name:"
2171
- msgstr ""
2172
-
2173
- #: app/view/admin/settings.php:190
2174
- msgid "Email:"
2175
- msgstr ""
2176
-
2177
- #: app/view/admin/settings.php:191
2178
- msgid "Password:"
2179
- msgstr ""
2180
-
2181
- #: app/view/admin/settings.php:192
2182
- msgid "Confirm Password:"
2183
- msgstr ""
2184
-
2185
- #: app/view/admin/get-repeat-box.php:483
2186
- msgid "fourth"
2187
- msgstr "fourth"
2188
-
2189
- #: app/view/admin/get-repeat-box.php:495
2190
- msgid "Sunday"
2191
- msgstr "Sunday"
2192
-
2193
- #: app/view/admin/get-repeat-box.php:496
2194
- msgid "Monday"
2195
- msgstr "Monday"
2196
-
2197
- #: app/view/admin/get-repeat-box.php:497
2198
- msgid "Tuesday"
2199
- msgstr "Tuesday"
2200
-
2201
- #: app/view/admin/get-repeat-box.php:498
2202
- msgid "Wednesday"
2203
- msgstr "Wednesday"
2204
-
2205
- #: app/view/admin/get-repeat-box.php:499
2206
- msgid "Thursday"
2207
- msgstr "Thursday"
2208
-
2209
- #: app/view/admin/get-repeat-box.php:500
2210
- msgid "Friday"
2211
- msgstr "Friday"
2212
-
2213
- #: app/view/admin/get-repeat-box.php:501
2214
- msgid "Saturday"
2215
- msgstr "Saturday"
2216
-
2217
- #: app/view/admin/get-repeat-box.php:503
2218
- msgid "day"
2219
- msgstr "day"
2220
-
2221
- #: app/view/admin/get-repeat-box.php:504
2222
- msgid "weekday"
2223
- msgstr "weekday"
2224
-
2225
- #: app/view/admin/get-repeat-box.php:505
2226
- msgid "weekend day"
2227
- msgstr "weekend day"
2228
-
2229
- #: app/view/admin/get-repeat-box.php:571
2230
- msgid "year(s)"
2231
- msgstr "year(s)"
2232
-
2233
- #: app/view/admin/nav.php:22
2234
- msgid "<a href=\"%s\">Settings</a>"
2235
- msgstr "<a href=\"%s\">Settings</a>"
2236
-
2237
- #: app/view/admin/nav.php:28
2238
- msgid "<a href=\"%s\">Check for updates</a>"
2239
- msgstr ""
2240
-
2241
- #: app/view/admin/organize.php:100
2242
- msgid "Organize Events"
2243
- msgstr "Organise Events"
2244
-
2245
- #: app/view/admin/settings.php:30
2246
- msgid "All-in-One Event Calendar: Settings"
2247
- msgstr "All-in-One Event Calendar: Settings"
2248
-
2249
- #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
- #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
- msgid "Settings"
2252
- msgstr "Settings"
2253
-
2254
- #: app/view/admin/settings.php:89
2255
- msgctxt "meta box"
2256
- msgid "General Settings"
2257
- msgstr "General Settings"
2258
-
2259
- #: app/view/admin/get-repeat-box.php:480
2260
- msgid "first"
2261
- msgstr "first"
2262
-
2263
- #: app/view/admin/get-repeat-box.php:481
2264
- msgid "second"
2265
- msgstr "second"
2266
-
2267
- #: app/view/admin/get-repeat-box.php:482
2268
- msgid "third"
2269
- msgstr "third"
2270
-
2271
- #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
- msgid "Import Feeds"
2273
- msgstr ""
2274
-
2275
- #: app/view/admin/calendar-feeds.php:48
2276
- msgctxt "meta box"
2277
- msgid "Feed Subscriptions"
2278
- msgstr "Feed Subscriptions"
2279
-
2280
- #: app/view/admin/calendar-feeds.php:65
2281
- msgid "All-in-One Event Calendar: Import Feeds"
2282
- msgstr ""
2283
-
2284
- #: app/view/admin/event-category.php:30
2285
- msgid "Color"
2286
- msgstr "Colour"
2287
-
2288
- #: app/view/admin/event-category.php:32
2289
- msgid "Image"
2290
- msgstr "Image"
2291
-
2292
- #: app/view/admin/event-category.php:155
2293
- msgid "Category Color"
2294
- msgstr "Category Colour"
2295
-
2296
- #: app/view/admin/event-category.php:156
2297
- msgid "Events in this category will be identified by this color"
2298
- msgstr "Events in this category will be identified by this colour"
2299
-
2300
- #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
- msgid "Category Image"
2302
- msgstr "Category Image"
2303
-
2304
- #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
- msgid "Add Image"
2306
- msgstr "Add Image"
2307
-
2308
- #: app/view/admin/event-category.php:195
2309
- msgid "Remove Image"
2310
- msgstr "Remove Image"
2311
-
2312
- #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
- msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
- msgstr "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2315
-
2316
- #: app/view/admin/get-repeat-box.php:94
2317
- msgid "times"
2318
- msgstr "times"
2319
-
2320
- #: app/view/admin/get-repeat-box.php:164
2321
- msgid "Recurrence rule cannot be empty."
2322
- msgstr "Recurrence rule cannot be empty."
2323
-
2324
- #: app/view/admin/get-repeat-box.php:182
2325
- msgid "Recurrence rule was not provided."
2326
- msgstr "Recurrence rule was not provided."
2327
-
2328
- #: app/view/admin/get-repeat-box.php:209
2329
- msgid "Never"
2330
- msgstr "Never"
2331
-
2332
- #: app/view/admin/get-repeat-box.php:210
2333
- msgid "After"
2334
- msgstr "After"
2335
-
2336
- #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
- msgid "On date"
2338
- msgstr "On date"
2339
-
2340
- #: app/view/admin/get-repeat-box.php:247
2341
- msgid "day(s)"
2342
- msgstr "day(s)"
2343
-
2344
- #: app/view/admin/get-repeat-box.php:330
2345
- msgid "week(s)"
2346
- msgstr "week(s)"
2347
-
2348
- #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
- #: lib/recurrence/rule.php:298
2350
- msgid "last"
2351
- msgstr "last"
2352
-
2353
- #: app/view/admin/get-repeat-box.php:426
2354
- msgid "month(s)"
2355
- msgstr "month(s)"
2356
-
2357
- #: app/model/settings.php:929
2358
- msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
- msgstr "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2360
-
2361
- #: app/model/settings.php:932
2362
- msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
- msgstr "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2364
-
2365
- #: app/model/settings.php:944
2366
- msgid "Current <strong>robots.txt</strong> on this site"
2367
- msgstr "Current <strong>robots.txt</strong> on this site"
2368
-
2369
- #: app/model/settings.php:948
2370
- msgid ""
2371
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
- "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
- "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
- "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
- "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
- msgstr ""
2377
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2378
- "→\t→\t→\t→\t→\t→\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2379
- "→\t→\t→\t→\t→\t→\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2380
- "→\t→\t→\t→\t→\t→\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2381
- "→\t→\t→\t→\t→\t→\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2382
-
2383
- #: app/model/settings.php:965
2384
- msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2385
- msgstr "<strong>Publicise, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2386
-
2387
- #: app/model/settings.php:988
2388
- msgid "Templates cache improves site performance"
2389
- msgstr "Templates cache improves site performance"
2390
-
2391
- #: app/model/settings.php:1001
2392
- msgid "Display events in <strong>calendar time zone</strong>"
2393
- msgstr ""
2394
-
2395
- #: app/model/settings.php:1004
2396
- msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
- msgstr ""
2398
-
2399
- #: app/view/admin/add-new-event.php:26
2400
- msgid "Event Details"
2401
- msgstr "Event Details"
2402
-
2403
- #: app/view/admin/add-new-event.php:423
2404
- msgid "Set banner image"
2405
- msgstr "Set banner image"
2406
-
2407
- #: app/view/admin/add-new-event.php:424
2408
- msgid "Remove banner image"
2409
- msgstr "Remove banner image"
2410
-
2411
- #: app/view/admin/add-ons.php:68
2412
- msgid "Add-ons for All In One Event Calendar"
2413
- msgstr "Add-ons for All In One Event Calendar"
2414
-
2415
- #: app/view/admin/add-ons.php:71
2416
- msgid "Browse All Extensions"
2417
- msgstr "Browse All Extensions"
2418
-
2419
- #: app/view/admin/add-ons.php:74
2420
- msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
- msgstr "These add-ons extend the functionality of the All-in-One Event Calendar."
2422
-
2423
- #: app/view/admin/add-ons.php:77
2424
- msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
- msgstr "There was an error retrieving the extensions list from the server. Please try again later."
2426
-
2427
- #: app/view/admin/all-events.php:16
2428
- msgid "Author"
2429
- msgstr "Author"
2430
-
2431
- #: app/view/admin/all-events.php:17
2432
- msgid "Post Date"
2433
- msgstr "Post Date"
2434
-
2435
- #: app/view/admin/all-events.php:18
2436
- msgid "Event date/time"
2437
- msgstr "Event date/time"
2438
-
2439
- #: app/view/admin/all-events.php:22
2440
- msgid "Ticket Types"
2441
- msgstr ""
2442
-
2443
- #: app/view/admin/all-events.php:134
2444
- msgid "Show All "
2445
- msgstr "Show All "
2446
-
2447
- #: app/view/admin/all-events.php:147
2448
- msgid "Show All Authors"
2449
- msgstr ""
2450
-
2451
- #: app/model/settings.php:746
2452
- msgid "Strict compatibility content filtering"
2453
- msgstr "Strict compatibility content filtering"
2454
-
2455
- #: app/model/settings.php:758
2456
- msgid " <strong>Hide featured image</strong> from event details page"
2457
- msgstr " <strong>Hide featured image</strong> from event details page"
2458
-
2459
- #: app/model/settings.php:761
2460
- msgid "Select this option if your theme already displays each post's featured image."
2461
- msgstr "Select this option if your theme already displays each post's featured image."
2462
-
2463
- #: app/model/settings.php:772
2464
- msgid "Input dates in this format"
2465
- msgstr "Input dates in this format"
2466
-
2467
- #: app/model/settings.php:777
2468
- msgid "Default (d/m/yyyy)"
2469
- msgstr "Default (d/m/yyyy)"
2470
-
2471
- #: app/model/settings.php:781
2472
- msgid "US (m/d/yyyy)"
2473
- msgstr "US (m/d/yyyy)"
2474
-
2475
- #: app/model/settings.php:785
2476
- msgid "ISO 8601 (yyyy-m-d)"
2477
- msgstr "ISO 8601 (yyyy-m-d)"
2478
-
2479
- #: app/model/settings.php:789
2480
- msgid "Dotted (m.d.yyyy)"
2481
- msgstr "Dotted (m.d.yyyy)"
2482
-
2483
- #: app/model/settings.php:801
2484
- msgid " Use <strong>24h time</strong> in time pickers"
2485
- msgstr " Use <strong>24h time</strong> in time pickers"
2486
-
2487
- #: app/model/settings.php:812
2488
- msgid "<strong>Disable address autocomplete</strong> function"
2489
- msgstr "<strong>Disable address autocomplete</strong> function"
2490
-
2491
- #: app/model/settings.php:823
2492
- msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2493
- msgstr "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2494
-
2495
- #: app/model/settings.php:839
2496
- msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2497
- msgstr " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2498
-
2499
- #: app/model/settings.php:842
2500
- msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2501
- msgstr "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2502
-
2503
- #: app/model/settings.php:863
2504
- msgid "Move calendar into this DOM element"
2505
- msgstr "Move calendar into this DOM element"
2506
-
2507
- #: app/model/settings.php:865
2508
- msgid ""
2509
- "Optional. Use this JavaScript-based shortcut to place the\n"
2510
- "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2511
- "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2512
- "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2513
- "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2514
- "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2515
- "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2516
- "\t\t\t\t\t\tby the calendar."
2517
- msgstr ""
2518
- "Optional. Use this JavaScript-based shortcut to place the\n"
2519
- "→\t→\t→\t→\t→\t→\tcalendar a DOM element other than the usual page content container\n"
2520
- "→\t→\t→\t→\t→\t→\tif you are unable to create an appropriate page template\n"
2521
- "→\t→\t→\t→\t→\t→\t for the calendar page. To use, enter a\n"
2522
- "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2523
- "→\t→\t→\t→\t→\t→\tjQuery selector</a> that evaluates to a single DOM element.\n"
2524
- "→\t→\t→\t→\t→\t→\tAny existing markup found within the target will be replaced\n"
2525
- "→\t→\t→\t→\t→\t→\tby the calendar."
2526
-
2527
- #: app/model/settings.php:884
2528
- msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2529
- msgstr "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2530
-
2531
- #: app/model/settings.php:887
2532
- msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2533
- msgstr "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2534
-
2535
- #: app/model/settings.php:899
2536
- msgid "Disable <strong>gzip</strong> compression."
2537
- msgstr "Disable <strong>gzip</strong> compression."
2538
-
2539
- #: app/model/settings.php:902
2540
- msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2541
- msgstr "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2542
-
2543
- #: app/model/settings.php:914
2544
- msgid "Use frontend rendering."
2545
- msgstr "Use frontend rendering."
2546
-
2547
- #: app/model/settings.php:917
2548
- msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
- msgstr "Renders calendar views on the client rather than the server; can improve performance."
2550
-
2551
- #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
- msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
- msgstr "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2554
-
2555
- #: app/model/settings.php:508
2556
- msgid "Default calendar start date (optional)"
2557
- msgstr "Default calendar start date (optional)"
2558
-
2559
- #: app/model/settings.php:519
2560
- msgid "Agenda pages show at most"
2561
- msgstr "Agenda pages show at most"
2562
-
2563
- #: app/model/settings.php:532
2564
- msgid "Week/Day view starts at"
2565
- msgstr "Week/Day view starts at"
2566
-
2567
- #: app/model/settings.php:545
2568
- msgid "Week/Day view ends at"
2569
- msgstr "Week/Day view ends at"
2570
-
2571
- #: app/model/settings.php:558
2572
- msgid "<strong>Word-wrap event stubs</strong> in Month view"
2573
- msgstr "<strong>Word-wrap event stubs</strong> in Month view"
2574
-
2575
- #: app/model/settings.php:561
2576
- msgid "Only applies to events that span a single day."
2577
- msgstr "Only applies to events that span a single day."
2578
-
2579
- #: app/model/settings.php:573
2580
- msgid ""
2581
- "In <span class=\"ai1ec-tooltip-toggle\"\n"
2582
- "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2583
- "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2584
- "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2585
- "\t\t\t\t\t\tfrom last day shown</strong>"
2586
- msgstr ""
2587
- "In <span class=\"ai1ec-tooltip-toggle\"\n"
2588
- "→\t→\t→\t→\t→\t→\tdata-original-title=\"These include Agenda view,\n"
2589
- "→\t→\t→\t→\t→\t→\tthe Upcoming Events widget, and some extended views.\">\n"
2590
- "→\t→\t→\t→\t→\t→\tAgenda-like views</span>, <strong>include all events\n"
2591
- "→\t→\t→\t→\t→\t→\tfrom last day shown</strong>"
2592
-
2593
- #: app/model/settings.php:589
2594
- msgid "Keep all events <strong>expanded</strong> in Agenda view"
2595
- msgstr "Keep all events <strong>expanded</strong> in Agenda view"
2596
-
2597
- #: app/model/settings.php:601
2598
- msgid "<strong>Show year</strong> in calendar date labels"
2599
- msgstr "<strong>Show year</strong> in calendar date labels"
2600
-
2601
- #: app/model/settings.php:613
2602
- msgid "<strong>Show location in event titles</strong> in calendar views"
2603
- msgstr "<strong>Show location in event titles</strong> in calendar views"
2604
-
2605
- #: app/model/settings.php:625
2606
- msgid "<strong>Exclude</strong> events from search results"
2607
- msgstr "<strong>Exclude</strong> events from search results"
2608
-
2609
- #: app/model/settings.php:637
2610
- msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2611
- msgstr "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2612
-
2613
- #: app/model/settings.php:649
2614
- msgid "Hide <strong>Get a Timely Calendar</strong> button"
2615
- msgstr "Hide <strong>Get a Timely Calendar</strong> button"
2616
-
2617
- #: app/model/settings.php:661
2618
- msgid " Hide <strong>Google Maps</strong> until clicked"
2619
- msgstr " Hide <strong>Google Maps</strong> until clicked"
2620
-
2621
- #: app/model/settings.php:673
2622
- msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2623
- msgstr " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2624
-
2625
- #: app/model/settings.php:676
2626
- msgid "Only applies to first visible calendar found on the page."
2627
- msgstr "Only applies to first visible calendar found on the page."
2628
-
2629
- #: app/model/settings.php:688
2630
- msgid "Offset affixed filter bar vertically by"
2631
- msgstr "Offset affixed filter bar vertically by"
2632
-
2633
- #: app/model/settings.php:703
2634
- msgid "Wide screens only (&#8805; 1200px)"
2635
- msgstr "Wide screens only (&#8805; 1200px)"
2636
-
2637
- #: app/model/settings.php:718
2638
- msgid "Tablets only (< 980px)"
2639
- msgstr "Tablets only (< 980px)"
2640
-
2641
- #: app/model/settings.php:733
2642
- msgid "Phones only (< 768px)"
2643
- msgstr "Phones only (< 768px)"
2644
-
2645
- #: app/model/api.php:456
2646
- msgid "Not available"
2647
- msgstr ""
2648
-
2649
- #: app/model/api.php:659
2650
- msgid "%s.<br/>Detail: %s."
2651
- msgstr ""
2652
-
2653
- #: app/model/api.php:664
2654
- msgid "API URL: %s.<br/>Detail: %s - %s"
2655
- msgstr ""
2656
-
2657
- #: app/model/api.php:672
2658
- msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2659
- msgstr ""
2660
-
2661
- #: app/model/api.php:679
2662
- msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2663
- msgstr ""
2664
-
2665
- #: app/model/event/parent.php:186
2666
- msgid "Edit &#8220;%s&#8221;"
2667
- msgstr "Edit &#8220;%s&#8221;"
2668
-
2669
- #: app/model/event/parent.php:193
2670
- msgid "Base Event"
2671
- msgstr "Base Event"
2672
-
2673
- #: app/model/review.php:169
2674
- msgid "Feedback provided by user"
2675
- msgstr ""
2676
-
2677
- #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2678
- msgid "Name"
2679
- msgstr "Name"
2680
-
2681
- #: app/model/review.php:173
2682
- msgid "E-mail"
2683
- msgstr ""
2684
-
2685
- #: app/model/review.php:175
2686
- msgid "Site URL"
2687
- msgstr ""
2688
-
2689
- #: app/model/review.php:177
2690
- msgid "Message"
2691
- msgstr ""
2692
-
2693
- #: app/model/settings.php:401
2694
- #: lib/html/element/setting/calendar-page-selector.php:50
2695
- msgid "Calendar page"
2696
- msgstr "Calendar page"
2697
-
2698
- #: app/model/settings.php:411
2699
- msgid "Week starts on"
2700
- msgstr "Week starts on"
2701
-
2702
- #: app/model/settings.php:424
2703
- msgid "Available views"
2704
- msgstr "Available views"
2705
-
2706
- #: app/model/settings.php:432
2707
- msgid "Agenda"
2708
- msgid_plural "Agenda"
2709
- msgstr[0] "Agenda"
2710
- msgstr[1] ""
2711
-
2712
- #: app/model/settings.php:443
2713
- msgid "Day"
2714
- msgid_plural "Day"
2715
- msgstr[0] "Day"
2716
- msgstr[1] ""
2717
-
2718
- #: app/model/settings.php:454
2719
- msgid "Month"
2720
- msgid_plural "Month"
2721
- msgstr[0] "Month"
2722
- msgstr[1] ""
2723
-
2724
- #: app/model/settings.php:465
2725
- msgid "Week"
2726
- msgid_plural "Week"
2727
- msgstr[0] "Week"
2728
- msgstr[1] ""
2729
-
2730
- #: app/model/settings.php:479
2731
- msgid "Timezone"
2732
- msgstr "Timezone"
2733
-
2734
- #: app/model/settings.php:492
2735
- msgid "Preselected calendar filters"
2736
- msgstr "Preselected calendar filters"
2737
-
2738
- #: app/controller/javascript.php:509
2739
- msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2740
- msgstr "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2741
-
2742
- #: app/controller/javascript.php:516
2743
- msgid "The end date can't be earlier than the start date."
2744
- msgstr "The end date can't be earlier than the start date."
2745
-
2746
- #: app/controller/javascript.php:517
2747
- msgid "For week and day view, you must select an interval of at least 6 hours."
2748
- msgstr "For week and day view, you must select an interval of at least 6 hours."
2749
-
2750
- #: app/model/api.php:40
2751
- msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2752
- msgstr ""
2753
-
2754
- #: app/model/api.php:41
2755
- msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2756
- msgstr ""
2757
-
2758
- #: app/model/api.php:42
2759
- msgid "We were unable to Sign you Up for Time.ly Ticketing"
2760
- msgstr ""
2761
-
2762
- #: app/model/api.php:43
2763
- msgid "We were unable to Sign you In for Time.ly Ticketing"
2764
- msgstr ""
2765
-
2766
- #: app/model/api.php:44
2767
- msgid "We were unable to create the Event on Time.ly Ticketing"
2768
- msgstr ""
2769
-
2770
- #: app/model/api.php:45
2771
- msgid "We were unable to update the Event on Time.ly Ticketing"
2772
- msgstr ""
2773
-
2774
- #: app/model/api.php:46
2775
- msgid "The event has the option Tickets selected but any ticket was added."
2776
- msgstr ""
2777
-
2778
- #: app/model/api.php:47
2779
- msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2780
- msgstr ""
2781
-
2782
- #: app/model/api.php:48
2783
- msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2784
- msgstr ""
2785
-
2786
- #: app/model/api.php:49
2787
- msgid "Payment preferences were not saved."
2788
- msgstr ""
2789
-
2790
- #: app/model/api.php:50
2791
- msgid "Payment preferences were saved."
2792
- msgstr ""
2793
-
2794
- #: app/model/api.php:51
2795
- msgid "Event not found inside the database."
2796
- msgstr ""
2797
-
2798
- #: app/model/api.php:52
2799
- msgid "We were unable to get the Sales information from Time.ly Ticketing"
2800
- msgstr ""
2801
-
2802
- #: app/model/api.php:446
2803
- msgid "Past Event"
2804
- msgstr ""
2805
-
2806
- #: app/model/api.php:448
2807
- msgid "Event closed"
2808
- msgstr ""
2809
-
2810
- #: app/model/api.php:450
2811
- msgid "Not available yet"
2812
- msgstr ""
2813
-
2814
- #: app/model/api.php:452
2815
- msgid "Sale closed"
2816
- msgstr ""
2817
-
2818
- #: app/model/api.php:454
2819
- msgid "Sold out"
2820
- msgstr ""
2821
-
2822
- #: app/controller/javascript.php:484
2823
- msgid "Report"
2824
- msgstr ""
2825
-
2826
- #: app/controller/javascript.php:485
2827
- msgid "Sale dates"
2828
- msgstr ""
2829
-
2830
- #: app/controller/javascript.php:486
2831
- msgid "Limits"
2832
- msgstr ""
2833
-
2834
- #: app/controller/javascript.php:487
2835
- msgid "Actions"
2836
- msgstr ""
2837
-
2838
- #: app/controller/javascript.php:488
2839
- msgid "Sold:"
2840
- msgstr ""
2841
-
2842
- #: app/controller/javascript.php:489
2843
- msgid "Left:"
2844
- msgstr ""
2845
-
2846
- #: app/controller/javascript.php:490
2847
- msgid "Start:"
2848
- msgstr ""
2849
-
2850
- #: app/controller/javascript.php:491
2851
- msgid "End:"
2852
- msgstr ""
2853
-
2854
- #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2855
- msgid "Min:"
2856
- msgstr ""
2857
-
2858
- #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2859
- msgid "Max:"
2860
- msgstr ""
2861
-
2862
- #: app/controller/javascript.php:494
2863
- msgid "Attendees"
2864
- msgstr ""
2865
-
2866
- #: app/controller/javascript.php:495
2867
- msgid "Hide Attendees"
2868
- msgstr ""
2869
-
2870
- #: app/controller/javascript.php:496
2871
- msgid "Attendees List"
2872
- msgstr ""
2873
-
2874
- #: app/controller/javascript.php:497
2875
- msgid "Guest Name"
2876
- msgstr ""
2877
-
2878
- #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2879
- msgid "Status"
2880
- msgstr ""
2881
-
2882
- #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2883
- #: app/view/event/ticket.php:71
2884
- msgid "Email"
2885
- msgstr "Email"
2886
-
2887
- #: app/controller/javascript.php:500
2888
- msgid "No attendees for this ticket type."
2889
- msgstr ""
2890
-
2891
- #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2892
- #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2893
- msgid "Edit"
2894
- msgstr "Edit"
2895
-
2896
- #: app/controller/javascript.php:502
2897
- msgid "Code"
2898
- msgstr ""
2899
-
2900
- #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2901
- msgid "Unlimited"
2902
- msgstr ""
2903
-
2904
- #: app/controller/javascript.php:506
2905
- msgid "Your message has been sent. Thank you for your feedback."
2906
- msgstr ""
2907
-
2908
- #: app/controller/javascript.php:507
2909
- msgid "Your message has not been sent. Please try again or contact us."
2910
- msgstr ""
2911
-
2912
- #: app/controller/javascript.php:405
2913
- msgid "Please enter a valid iCalendar URL."
2914
- msgstr "Please enter a valid iCalendar URL."
2915
-
2916
- #: app/controller/javascript.php:408
2917
- msgid "Please enter a valid email address."
2918
- msgstr "Please enter a valid email address."
2919
-
2920
- #: app/controller/javascript.php:410
2921
- msgid "Choose Image"
2922
- msgstr "Choose Image"
2923
-
2924
- #: app/controller/javascript.php:413
2925
- msgid "The value you have entered is not a valid CSS length."
2926
- msgstr "The value you have entered is not a valid CSS length."
2927
-
2928
- #: app/controller/javascript.php:416
2929
- msgid "Are you sure you want to reset your theme options to their default values?"
2930
- msgstr "Are you sure you want to reset your theme options to their default values?"
2931
-
2932
- #: app/controller/javascript.php:419
2933
- msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2934
- msgstr "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2935
-
2936
- #: app/controller/javascript.php:422
2937
- msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2938
- msgstr "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2939
-
2940
- #: app/controller/javascript.php:425
2941
- msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2942
- msgstr "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2943
-
2944
- #: app/controller/javascript.php:428
2945
- msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2946
- msgstr "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2947
-
2948
- #: app/controller/javascript.php:431
2949
- msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2950
- msgstr ""
2951
-
2952
- #: app/controller/javascript.php:434
2953
- msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2954
- msgstr "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2955
-
2956
- #: app/controller/javascript.php:437
2957
- msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2958
- msgstr "Please remember that URLs must start with either \"http://\" or \"https://\"."
2959
-
2960
- #: app/controller/javascript.php:440
2961
- msgid "Loading&hellip;"
2962
- msgstr "Loading&hellip;"
2963
-
2964
- #: app/controller/javascript.php:443
2965
- msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2966
- msgstr ""
2967
-
2968
- #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
- msgid "Preview:"
2970
- msgstr "Preview:"
2971
-
2972
- #: app/controller/javascript.php:474
2973
- msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2974
- msgstr "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2975
-
2976
- #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2977
- msgid "Ticketing Details"
2978
- msgstr ""
2979
-
2980
- #: app/controller/javascript.php:480
2981
- msgid "Hide Ticketing Details"
2982
- msgstr ""
2983
-
2984
- #: app/controller/javascript.php:481
2985
- msgid "Loading tickets details..."
2986
- msgstr ""
2987
-
2988
- #: app/controller/javascript.php:482
2989
- msgid "Type and price"
2990
- msgstr ""
2991
-
2992
- #: app/controller/javascript.php:483
2993
- msgid "Info"
2994
- msgstr ""
2995
-
2996
- #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2997
- #: app/view/admin/add-ons.php:27
2998
- msgid "Add-ons"
2999
- msgstr "Add-ons"
3000
-
3001
- #: app/controller/front.php:343
3002
- msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3003
- msgstr "Your active calendar theme could not be properly initialised. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3004
-
3005
- #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3006
- #: app/view/admin/theme-switching.php:55
3007
- msgid "Calendar Themes"
3008
- msgstr "Calendar Themes"
3009
-
3010
- #: app/controller/front.php:990
3011
- msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3012
- msgstr "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3013
-
3014
- #: app/controller/javascript-widget.php:48
3015
- msgid "You must choose the Calendar page before using the Super Widget"
3016
- msgstr "You must choose the Calendar page before using the Super Widget"
3017
-
3018
- #: app/controller/javascript.php:402
3019
- msgid "This feed is already being imported."
3020
- msgstr "This feed is already being imported."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/all-in-one-event-calendar-en-gb.mo DELETED
Binary file
language/all-in-one-event-calendar-en-gb.po DELETED
@@ -1,3020 +0,0 @@
1
- # Translation of 2.3 in English (UK)
2
- # This file is distributed under the same license as the 2.3 package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:47:57+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-alpha-1000\n"
11
- "Project-Id-Version: 2.3\n"
12
-
13
- #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
- #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
- msgid "Event background"
16
- msgstr "Event background"
17
-
18
- #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
- #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
- msgid "Event time background"
21
- msgstr "Event time background"
22
-
23
- #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
- #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
- msgid "Event text"
26
- msgstr "Event text"
27
-
28
- #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
- #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
- msgid "Month view date background"
31
- msgstr "Month view date background"
32
-
33
- #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
- #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
- msgid "Week/day view now marker"
36
- msgstr "Week/day view now marker"
37
-
38
- #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
- #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
- msgid "Date label accent color"
41
- msgstr "Date label accent colour"
42
-
43
- #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
- #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
- msgid "Date label background"
46
- msgstr "Date label background"
47
-
48
- #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
- #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
- msgid "Date background"
51
- msgstr "Date background"
52
-
53
- #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
- #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
- msgid "Today background"
56
- msgstr "Today background"
57
-
58
- #. Plugin Name of the plugin/theme
59
- msgid "All-in-One Event Calendar by Time.ly"
60
- msgstr "All-in-One Event Calendar by Time.ly"
61
-
62
- #. Description of the plugin/theme
63
- msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
- msgstr "A calendar system with month, week, day, agenda views, upcoming events widget, colour-coded categories, recurrence, and import/export of .ics feeds."
65
-
66
- #. Author of the plugin/theme
67
- msgid "Time.ly Network Inc."
68
- msgstr "Time.ly Network Inc."
69
-
70
- #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
- #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
- msgid "List item background (active/hover)"
73
- msgstr "List item background (active/hover)"
74
-
75
- #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
- #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
- msgid "Input field placeholder text"
78
- msgstr "Input field placeholder text"
79
-
80
- #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
- #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
- msgid "Today color"
83
- msgstr "Today colour"
84
-
85
- #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
- #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
- msgid "All-day badge color"
88
- msgstr "All-day badge colour"
89
-
90
- #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
- #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
- msgid "Event image shadow"
93
- msgstr "Event image shadow"
94
-
95
- #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
- #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
- msgid "Event default color"
98
- msgstr "Event default colour"
99
-
100
- #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
- #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
- msgid "Event default color (hover)"
103
- msgstr "Event default colour (hover)"
104
-
105
- #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
- #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
- msgid "All-day/multi-day event stub text"
108
- msgstr "All-day/multi-day event stub text"
109
-
110
- #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
- #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
- msgid "All-day/multi-day event stub text shadow"
113
- msgstr "All-day/multi-day event stub text shadow"
114
-
115
- #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
- #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
- msgid "Event border"
118
- msgstr "Event border"
119
-
120
- #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
- #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
- msgid "Button text"
123
- msgstr "Button text"
124
-
125
- #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
- #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
- msgid "Input field text"
128
- msgstr "Input field text"
129
-
130
- #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
- #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
- msgid "Input field background"
133
- msgstr "Input field background"
134
-
135
- #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
- #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
- msgid "Input field border"
138
- msgstr "Input field border"
139
-
140
- #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
- #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
- msgid "Input field border (focus)"
143
- msgstr "Input field border (focus)"
144
-
145
- #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
- #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
- msgid "Input field background (disabled)"
148
- msgstr "Input field background (disabled)"
149
-
150
- #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
- #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
- msgid "Field label"
153
- msgstr "Field label"
154
-
155
- #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
- #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
- msgid "Dropdown list background"
158
- msgstr "Dropdown list background"
159
-
160
- #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
- #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
- msgid "Dropdown list border"
163
- msgstr "Dropdown list border"
164
-
165
- #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
- #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
- msgid "List item text"
168
- msgstr "List item text"
169
-
170
- #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
- #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
- msgid "List item text (active/hover)"
173
- msgstr "List item text (active/hover)"
174
-
175
- #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
- msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
- msgstr "New theme activated. <a href=\"%s\">Visit site</a>"
178
-
179
- #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
- msgid "Theme deleted."
181
- msgstr "Theme deleted."
182
-
183
- #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
- msgid "Manage Themes"
185
- msgstr "Manage Themes"
186
-
187
- #: public/admin/themes-install.php:40
188
- msgctxt "theme"
189
- msgid "Install Themes"
190
- msgstr "Instal Themes"
191
-
192
- #: public/admin/themes-updated.php:5
193
- msgid "Update Calendar Themes"
194
- msgstr "Update Calendar Themes"
195
-
196
- #: public/admin/themes-updated.php:15
197
- msgid "All-in-One Event Calendar Settings »"
198
- msgstr "All-in-One Event Calendar Settings »"
199
-
200
- #: public/admin/themes.php:18
201
- msgid "Current Calendar Theme"
202
- msgstr "Current Calendar Theme"
203
-
204
- #: public/admin/themes.php:21
205
- msgid "Current theme preview"
206
- msgstr "Current theme preview"
207
-
208
- #: public/admin/themes.php:47
209
- msgid "Available Calendar Themes"
210
- msgstr "Available Calendar Themes"
211
-
212
- #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
- #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
- msgid "Body background"
215
- msgstr "Body background"
216
-
217
- #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
- #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
- msgid "Text color"
220
- msgstr "Text colour"
221
-
222
- #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
- #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
- msgid "Text emboss"
225
- msgstr "Text emboss"
226
-
227
- #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
- #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
- msgid "Link"
230
- msgstr "Link"
231
-
232
- #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
- #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
- msgid "Link (hover)"
235
- msgstr "Link (hover)"
236
-
237
- #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
- #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
- msgid "Base font"
240
- msgstr "Base font"
241
-
242
- #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
- #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
- msgid "Base font size"
245
- msgstr "Base font size"
246
-
247
- #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
- #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
- msgid "Table background"
250
- msgstr "Table background"
251
-
252
- #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
- #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
- msgid "Table header background"
255
- msgstr "Table header background"
256
-
257
- #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
- #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
- msgid "Table header text"
260
- msgstr "Table header text"
261
-
262
- #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
- #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
- msgid "Primary brand color"
265
- msgstr "Primary brand colour"
266
-
267
- #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
- #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
- msgid "Button background"
270
- msgstr "Button background"
271
-
272
- #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
- #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
- msgid "Button border"
275
- msgstr "Button border"
276
-
277
- #: public/admin/feed_row.php:104
278
- msgid "Refreshing&#8230;"
279
- msgstr "Refreshing&#8230;"
280
-
281
- #: public/admin/feed_row.php:106
282
- msgid "Refresh"
283
- msgstr "Refresh"
284
-
285
- #: public/admin/feed_row.php:119
286
- msgid "Removing&#8230;"
287
- msgstr "Removing&#8230;"
288
-
289
- #: public/admin/feed_row.php:121
290
- msgid "Remove"
291
- msgstr "Remove"
292
-
293
- #: public/admin/import.php:6
294
- msgid "Successfully imported events:"
295
- msgstr "Successfully imported events:"
296
-
297
- #: public/admin/plugins/ics/display_feeds.php:2
298
- msgid ""
299
- "Configure which other calendars your own calendar subscribes to.\n"
300
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
- " Enter the feed URL(s) below and the events from those feeds will be\n"
302
- " imported periodically."
303
- msgstr ""
304
- "Configure which other calendars your own calendar subscribes to.\n"
305
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
306
- " Enter the feed URL(s) below and the events from those feeds will be\n"
307
- " imported periodically."
308
-
309
- #: public/admin/plugins/ics/display_feeds.php:14
310
- msgid "Check for new events"
311
- msgstr "Check for new events"
312
-
313
- #: public/admin/plugins/ics/display_feeds.php:45
314
- msgid "Allow comments on imported events"
315
- msgstr "Allow comments on imported events"
316
-
317
- #: public/admin/plugins/ics/display_feeds.php:52
318
- msgid "Show map on imported events"
319
- msgstr "Show map on imported events"
320
-
321
- #: public/admin/plugins/ics/display_feeds.php:59
322
- msgid "Import any tags/categories provided by feed, in addition those selected above"
323
- msgstr "Import any tags/categories provided by feed, in addition those selected above"
324
-
325
- #: public/admin/plugins/ics/display_feeds.php:93
326
- msgid "Add new subscription"
327
- msgstr "Add new subscription"
328
-
329
- #: public/admin/plugins/ics/display_feeds.php:96
330
- msgid "Update subscription"
331
- msgstr ""
332
-
333
- #: public/admin/row_custom.php:3
334
- msgid "Custom dates:"
335
- msgstr ""
336
-
337
- #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
- #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
- #: public/admin/row_yearly.php:3
340
- msgid "Every"
341
- msgstr "Every"
342
-
343
- #: public/admin/row_monthly.php:16
344
- msgid "On day of the month"
345
- msgstr "On day of the month"
346
-
347
- #: public/admin/row_monthly.php:23
348
- msgid "On day of the week"
349
- msgstr "On day of the week"
350
-
351
- #: public/admin/row_weekly.php:12
352
- msgctxt "Recurrence editor - weekly tab"
353
- msgid "On"
354
- msgstr "On"
355
-
356
- #: public/admin/row_yearly.php:12
357
- msgctxt "Recurrence editor - yearly tab"
358
- msgid "In"
359
- msgstr "In"
360
-
361
- #: public/admin/settings.php:19
362
- msgid "Update Settings"
363
- msgstr "Update Settings"
364
-
365
- #: public/admin/themes-install.php:4
366
- msgid "The active theme is broken. Reverting to the default theme."
367
- msgstr "The active theme is broken. Reverting to the default theme."
368
-
369
- #: public/admin/themes-install.php:13
370
- msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
- msgstr ""
372
-
373
- #: public/admin/calendar_tasks.php:24
374
- msgid "Manage Events"
375
- msgstr "Manage Events"
376
-
377
- #: public/admin/calendar_tasks.php:27
378
- msgid "View and edit all your events."
379
- msgstr "View and edit all your events."
380
-
381
- #: public/admin/calendar_tasks.php:39
382
- msgid "Manage Event Categories"
383
- msgstr "Manage Event Categories"
384
-
385
- #: public/admin/calendar_tasks.php:42
386
- msgid "Organize and color-code your events."
387
- msgstr "Organise and colour-code your events."
388
-
389
- #: public/admin/calendar_tasks.php:50
390
- msgid "Choose Your Theme"
391
- msgstr "Choose Your Theme"
392
-
393
- #: public/admin/calendar_tasks.php:53
394
- msgid "Change the look and feel."
395
- msgstr "Change the look and feel."
396
-
397
- #: public/admin/calendar_tasks.php:63
398
- msgid "Manage Calendar Feeds"
399
- msgstr "Manage Calendar Feeds"
400
-
401
- #: public/admin/calendar_tasks.php:66
402
- msgid "Subscribe to other calendars."
403
- msgstr "Subscribe to other calendars."
404
-
405
- #: public/admin/calendar_tasks.php:74
406
- msgid "Edit Calendar Settings"
407
- msgstr "Edit Calendar Settings"
408
-
409
- #: public/admin/calendar_tasks.php:77
410
- msgid "Make this calendar your own."
411
- msgstr "Make this calendar your own."
412
-
413
- #: public/admin/cron_freq.php:3
414
- msgid "Hourly"
415
- msgstr "Hourly"
416
-
417
- #: public/admin/cron_freq.php:6
418
- msgid "Twice Daily"
419
- msgstr "Twice Daily"
420
-
421
- #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
- msgid "iCalendar/.ics Feed URL:"
423
- msgstr "iCalendar/.ics Feed URL:"
424
-
425
- #: public/admin/feed_row.php:24
426
- msgid "Event categories:"
427
- msgstr "Event categories:"
428
-
429
- #: public/admin/feed_row.php:31
430
- msgid "Tag with"
431
- msgstr "Tag with"
432
-
433
- #: public/admin/feed_row.php:40
434
- msgid "Allow comments"
435
- msgstr "Allow comments"
436
-
437
- #: public/admin/feed_row.php:51
438
- msgid "Show map"
439
- msgstr "Show map"
440
-
441
- #: public/admin/feed_row.php:63
442
- msgid "Keep original events categories and tags"
443
- msgstr "Keep original events categories and tags"
444
-
445
- #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
- msgid "On refresh, preserve previously imported events that are missing from the feed"
447
- msgstr ""
448
-
449
- #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
- msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
- msgstr ""
452
-
453
- #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
- msgid "Assign default time zone to events in UTC"
455
- msgstr ""
456
-
457
- #: public/admin/box_support.php:19
458
- msgid "Get Add-ons"
459
- msgstr "Get Add-ons"
460
-
461
- #: public/admin/box_support.php:27
462
- msgid "Support"
463
- msgstr "Support"
464
-
465
- #: public/admin/box_support.php:35
466
- msgid "Timely Events"
467
- msgstr "Timely Events"
468
-
469
- #: public/admin/box_support.php:43
470
- msgid "Timely News"
471
- msgstr "Timely News"
472
-
473
- #: public/admin/box_support.php:47
474
- msgid "view all news"
475
- msgstr "view all news"
476
-
477
- #: public/admin/box_support.php:95
478
- msgid "Follow @_Timely"
479
- msgstr "Follow @_Timely"
480
-
481
- #: public/admin/box_time_and_date.php:6
482
- msgid "Event date and time"
483
- msgstr "Event date and time"
484
-
485
- #: public/admin/box_time_and_date.php:26
486
- msgid "All-day event"
487
- msgstr "All-day event"
488
-
489
- #: public/admin/box_time_and_date.php:35
490
- msgid "No end time"
491
- msgstr "No end time"
492
-
493
- #: public/admin/box_time_and_date.php:42
494
- msgid "Start date / time"
495
- msgstr "Start date / time"
496
-
497
- #: public/admin/box_time_and_date.php:59
498
- msgid "End date / time"
499
- msgstr "End date / time"
500
-
501
- #: public/admin/box_time_and_date.php:76
502
- msgid "Time zone"
503
- msgstr "Time zone"
504
-
505
- #: public/admin/box_time_and_date.php:81
506
- msgid "Choose your time zone"
507
- msgstr "Choose your time zone"
508
-
509
- #: public/admin/box_time_and_date.php:108
510
- msgid "Repeat"
511
- msgstr "Repeat"
512
-
513
- #: public/admin/box_time_and_date.php:127
514
- msgid "Exclude"
515
- msgstr "Exclude"
516
-
517
- #: public/admin/box_time_and_date.php:136
518
- msgid "Choose a rule for exclusion"
519
- msgstr "Choose a rule for exclusion"
520
-
521
- #: public/admin/calendar_tasks.php:3
522
- msgid "Welcome"
523
- msgstr "Welcome"
524
-
525
- #: public/admin/calendar_tasks.php:4
526
- msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
- msgstr "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
-
529
- #: public/admin/calendar_tasks.php:13
530
- msgid "Post Your Event"
531
- msgstr "Post Your Event"
532
-
533
- #: public/admin/calendar_tasks.php:16
534
- msgid "Add a new event to the calendar."
535
- msgstr "Add a new event to the calendar."
536
-
537
- #: public/admin/box_eventbrite.php:60
538
- msgid "Donation Based"
539
- msgstr "Donation Based"
540
-
541
- #: public/admin/box_eventbrite.php:68
542
- msgid "The price for this event's first ticket will be taken from the Cost field above."
543
- msgstr "The price for this event's first ticket will be taken from the Cost field above."
544
-
545
- #: public/admin/box_eventbrite.php:75
546
- msgid "Quantity"
547
- msgstr "Quantity"
548
-
549
- #: public/admin/box_eventbrite.php:85
550
- msgid "Include Fee in Price"
551
- msgstr "Include Fee in Price"
552
-
553
- #: public/admin/box_eventbrite.php:90
554
- msgid "Add Service Fee on top of price"
555
- msgstr "Add Service Fee on top of price"
556
-
557
- #: public/admin/box_eventbrite.php:92
558
- msgid "Include Service fee in price"
559
- msgstr "Include Service fee in price"
560
-
561
- #: public/admin/box_eventbrite.php:98
562
- msgid "Payment Options"
563
- msgstr "Payment Options"
564
-
565
- #: public/admin/box_eventbrite.php:105
566
- msgid "Google Checkout"
567
- msgstr "Google Checkout"
568
-
569
- #: public/admin/box_eventbrite.php:107
570
- msgid "Check"
571
- msgstr "Check"
572
-
573
- #: public/admin/box_eventbrite.php:109
574
- msgid "Cash"
575
- msgstr "Cash"
576
-
577
- #: public/admin/box_eventbrite.php:111
578
- msgid "Send an Invoice"
579
- msgstr "Send an Invoice"
580
-
581
- #: public/admin/box_profile_timezone.php:9
582
- msgid "Your preferred timezone"
583
- msgstr "Your preferred timezone"
584
-
585
- #: public/admin/box_repeat.php:5
586
- msgid "Select recurrence pattern:"
587
- msgstr "Select recurrence pattern:"
588
-
589
- #: public/admin/box_repeat.php:36
590
- msgid "Custom"
591
- msgstr ""
592
-
593
- #: public/admin/box_repeat.php:72
594
- msgid "End"
595
- msgstr "End"
596
-
597
- #: public/admin/box_repeat.php:82
598
- msgid "Ending after"
599
- msgstr "Ending after"
600
-
601
- #: public/admin/box_repeat.php:109
602
- #: public/admin/plugins/ics/display_feeds.php:90
603
- msgid "Please wait&#8230;"
604
- msgstr "Please wait&#8230;"
605
-
606
- #: public/admin/box_repeat.php:111
607
- msgid "Apply"
608
- msgstr "Apply"
609
-
610
- #: public/admin/box_repeat.php:116
611
- #: public/admin/plugins/ics/display_feeds.php:84
612
- msgid "Cancel"
613
- msgstr "Cancel"
614
-
615
- #: public/admin/box_support.php:4
616
- msgid "Timely"
617
- msgstr "Timely"
618
-
619
- #: public/admin/box_support.php:11
620
- msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
- msgstr "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
622
-
623
- #: public/admin/box_event_cost.php:228
624
- msgid "Status:"
625
- msgstr ""
626
-
627
- #: public/admin/box_event_cost.php:235
628
- msgid "Open"
629
- msgstr ""
630
-
631
- #: public/admin/box_event_cost.php:239
632
- msgid "Closed"
633
- msgstr ""
634
-
635
- #: public/admin/box_event_cost.php:254
636
- msgid "Add New Ticket Type"
637
- msgstr ""
638
-
639
- #: public/admin/box_event_cost.php:274
640
- msgid "Tickets URL:"
641
- msgstr ""
642
-
643
- #: public/admin/box_event_location.php:6
644
- msgid "Event location details"
645
- msgstr "Event location details"
646
-
647
- #: public/admin/box_event_location.php:19
648
- msgid "Venue name:"
649
- msgstr "Venue name:"
650
-
651
- #: public/admin/box_event_location.php:31
652
- msgid "Address:"
653
- msgstr "Address:"
654
-
655
- #: public/admin/box_event_location.php:45
656
- msgid "Input Coordinates"
657
- msgstr "Input Coordinates"
658
-
659
- #: public/admin/box_event_location.php:57
660
- msgid "Latitude:"
661
- msgstr "Latitude:"
662
-
663
- #: public/admin/box_event_location.php:69
664
- msgid "Longitude:"
665
- msgstr "Longitude:"
666
-
667
- #: public/admin/box_event_location.php:85
668
- msgid "Show Map"
669
- msgstr ""
670
-
671
- #: public/admin/box_eventbrite.php:1
672
- msgid "Eventbrite Ticketing"
673
- msgstr "Eventbrite Ticketing"
674
-
675
- #: public/admin/box_eventbrite.php:7
676
- msgid "Register this event with Eventbrite.com?"
677
- msgstr "Register this event with Eventbrite.com?"
678
-
679
- #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
- #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
- #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
- msgid "Yes"
683
- msgstr "Yes"
684
-
685
- #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
- #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
- #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
- msgid "No"
689
- msgstr "No"
690
-
691
- #: public/admin/box_eventbrite.php:22
692
- msgid "Set up your first ticket"
693
- msgstr "Set up your first ticket"
694
-
695
- #: public/admin/box_eventbrite.php:24
696
- msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
- msgstr "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
698
-
699
- #: public/admin/box_eventbrite.php:42
700
- msgid "Description"
701
- msgstr "Description"
702
-
703
- #: public/admin/box_eventbrite.php:53
704
- msgid "Type"
705
- msgstr "Type"
706
-
707
- #: public/admin/box_eventbrite.php:58
708
- msgid "Set Price"
709
- msgstr "Set Price"
710
-
711
- #: public/admin/box_event_contact.php:30
712
- msgid "Phone:"
713
- msgstr "Phone:"
714
-
715
- #: public/admin/box_event_contact.php:56
716
- msgid "Website URL:"
717
- msgstr ""
718
-
719
- #: public/admin/box_event_cost.php:6
720
- msgid "Event cost and Tickets"
721
- msgstr "Event cost and Tickets"
722
-
723
- #: public/admin/box_event_cost.php:20
724
- msgid "Ticket options not available - event imported from external calendar."
725
- msgstr ""
726
-
727
- #: public/admin/box_event_cost.php:28
728
- msgid "Free event"
729
- msgstr "Free event"
730
-
731
- #: public/admin/box_event_cost.php:41
732
- msgid "External Tickets URL"
733
- msgstr ""
734
-
735
- #: public/admin/box_event_cost.php:52
736
- msgid "Ticketing allows you to sell tickets directly to the users."
737
- msgstr ""
738
-
739
- #: public/admin/box_event_cost.php:55
740
- msgid "Sign Up for Timely Network"
741
- msgstr ""
742
-
743
- #: public/admin/box_event_cost.php:80
744
- msgid "Remove Ticket Type"
745
- msgstr ""
746
-
747
- #: public/admin/box_event_cost.php:101
748
- msgid "Ex.: Regular Ticket"
749
- msgstr ""
750
-
751
- #: public/admin/box_event_cost.php:105
752
- msgid "Description:"
753
- msgstr ""
754
-
755
- #: public/admin/box_event_cost.php:111
756
- msgid "(Optional)"
757
- msgstr ""
758
-
759
- #: public/admin/box_event_cost.php:115
760
- msgid "Price:"
761
- msgstr ""
762
-
763
- #: public/admin/box_event_cost.php:124
764
- msgid "USD"
765
- msgstr ""
766
-
767
- #: public/admin/box_event_cost.php:128
768
- msgid "Limits:"
769
- msgstr ""
770
-
771
- #: public/admin/box_event_cost.php:131
772
- msgid "This fields are required."
773
- msgstr ""
774
-
775
- #: public/admin/box_event_cost.php:156
776
- msgid "Quantity:"
777
- msgstr ""
778
-
779
- #: public/admin/box_event_cost.php:180
780
- msgid "Available:"
781
- msgstr ""
782
-
783
- #: public/admin/box_event_cost.php:185
784
- msgid "Immediately"
785
- msgstr ""
786
-
787
- #: public/admin/box_event_cost.php:190
788
- msgid "From:"
789
- msgstr ""
790
-
791
- #: public/admin/box_event_cost.php:207
792
- msgid "Till:"
793
- msgstr ""
794
-
795
- #: public/admin/box_ask_customer_review.php:42
796
- #: public/admin/box_ask_customer_review.php:75
797
- msgid "No, thanks"
798
- msgstr ""
799
-
800
- #: public/admin/box_ask_customer_review.php:50
801
- #: public/admin/box_ask_customer_review.php:84
802
- msgid "Ok, sure!"
803
- msgstr ""
804
-
805
- #: public/admin/box_ask_customer_review.php:66
806
- msgid "Would you mind giving us some feedback?"
807
- msgstr ""
808
-
809
- #: public/admin/box_ask_customer_review.php:101
810
- msgid "Please provide some feedback"
811
- msgstr ""
812
-
813
- #: public/admin/box_ask_customer_review.php:108
814
- msgid "Message:"
815
- msgstr ""
816
-
817
- #: public/admin/box_ask_customer_review.php:121
818
- msgid "Name:"
819
- msgstr ""
820
-
821
- #: public/admin/box_ask_customer_review.php:136
822
- #: public/admin/box_event_contact.php:43
823
- msgid "E-mail:"
824
- msgstr "E-mail:"
825
-
826
- #: public/admin/box_ask_customer_review.php:143
827
- msgid "E-mail is invalid."
828
- msgstr ""
829
-
830
- #: public/admin/box_ask_customer_review.php:154
831
- msgid "Site URL:"
832
- msgstr ""
833
-
834
- #: public/admin/box_ask_customer_review.php:161
835
- msgid "Site URL is invalid."
836
- msgstr ""
837
-
838
- #: public/admin/box_ask_customer_review.php:173
839
- msgid "Thank you for being our customer,"
840
- msgstr ""
841
-
842
- #: public/admin/box_ask_customer_review.php:174
843
- msgid "Aristotel Dascal, VP of Product, Time.ly"
844
- msgstr ""
845
-
846
- #: public/admin/box_ask_customer_review.php:180
847
- msgid "Sending..."
848
- msgstr ""
849
-
850
- #: public/admin/box_ask_customer_review.php:181
851
- msgid "Send Message"
852
- msgstr ""
853
-
854
- #: public/admin/box_event_children.php:12
855
- msgid "Base recurrence event"
856
- msgstr "Base recurrence event"
857
-
858
- #: public/admin/box_event_children.php:14
859
- msgid "Modified recurrence events"
860
- msgstr "Modified recurrence events"
861
-
862
- #: public/admin/box_event_children.php:22
863
- msgid "Edit parent:"
864
- msgstr "Edit parent:"
865
-
866
- #: public/admin/box_event_children.php:27
867
- msgid "Modified Events"
868
- msgstr "Modified Events"
869
-
870
- #: public/admin/box_event_children.php:31
871
- msgid "Edit:"
872
- msgstr "Edit:"
873
-
874
- #: public/admin/box_event_contact.php:6
875
- msgid "Organizer contact info"
876
- msgstr "Organiser contact info"
877
-
878
- #: public/admin/box_event_contact.php:17
879
- msgid "Contact name:"
880
- msgstr "Contact name:"
881
-
882
- #: lib/theme/loader.php:325
883
- msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
- msgstr "We couldn't find a suitable loader for filename with extension '%s'"
885
-
886
- #: lib/theme/loader.php:631
887
- msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
- msgstr ""
889
-
890
- #: lib/theme/search.php:253
891
- msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
- msgstr "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writeable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
893
-
894
- #: lib/theme/search.php:264
895
- msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
- msgstr "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
897
-
898
- #: lib/twig/environment.php:115
899
- msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
- msgstr ""
901
-
902
- #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
- msgid "Title:"
904
- msgstr "Title:"
905
-
906
- #: public/admin/agenda-widget-form.php:12
907
- msgid "Number of events to show:"
908
- msgstr "Number of events to show:"
909
-
910
- #: public/admin/agenda-widget-form.php:21
911
- msgid "Number of days to show:"
912
- msgstr "Number of days to show:"
913
-
914
- #: public/admin/agenda-widget-form.php:26
915
- msgid "Limit to:"
916
- msgstr "Limit to:"
917
-
918
- #: public/admin/agenda-widget-form.php:30
919
- msgid "Events with these <strong>Categories</strong>"
920
- msgstr "Events with these <strong>Categories</strong>"
921
-
922
- #: public/admin/agenda-widget-form.php:39
923
- msgid "No categories found."
924
- msgstr "No categories found."
925
-
926
- #: public/admin/agenda-widget-form.php:46
927
- msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
- msgstr "<strong>Or</strong> events with these <strong>Tags</strong>"
929
-
930
- #: public/admin/agenda-widget-form.php:55
931
- msgid "No tags found."
932
- msgstr "No tags found."
933
-
934
- #: public/admin/agenda-widget-form.php:62
935
- msgid "Show <strong>View Calendar</strong> button"
936
- msgstr "Show <strong>View Calendar</strong> button"
937
-
938
- #: public/admin/agenda-widget-form.php:65
939
- msgid "Show <strong>Subscribe</strong> buttons"
940
- msgstr "Show <strong>Subscribe</strong> buttons"
941
-
942
- #: public/admin/agenda-widget-form.php:68
943
- msgid "Hide this widget on calendar page"
944
- msgstr "Hide this widget on calendar page"
945
-
946
- #: public/admin/box_ask_customer_review.php:5
947
- msgid "Enjoying All-in-One Event Calendar?"
948
- msgstr ""
949
-
950
- #: public/admin/box_ask_customer_review.php:13
951
- msgid "Not really"
952
- msgstr ""
953
-
954
- #: public/admin/box_ask_customer_review.php:20
955
- msgid "Yes!"
956
- msgstr ""
957
-
958
- #: public/admin/box_ask_customer_review.php:33
959
- msgid "How about a rating on the Wordpress?"
960
- msgstr ""
961
-
962
- #: lib/recurrence/rule.php:397
963
- msgid "Every %d weeks"
964
- msgstr "Every %d weeks"
965
-
966
- #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
- msgid "Monthly"
968
- msgstr "Monthly"
969
-
970
- #: lib/recurrence/rule.php:409
971
- msgid "Every other month"
972
- msgstr "Every other month"
973
-
974
- #: lib/recurrence/rule.php:412
975
- msgid "Every %d months"
976
- msgstr "Every %d months"
977
-
978
- #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
- msgid "Yearly"
980
- msgstr "Yearly"
981
-
982
- #: lib/recurrence/rule.php:424
983
- msgid "Every other year"
984
- msgstr "Every other year"
985
-
986
- #: lib/recurrence/rule.php:427
987
- msgid "Every %d years"
988
- msgstr "Every %d years"
989
-
990
- #: lib/recurrence/rule.php:465
991
- msgid "until %s"
992
- msgstr "until %s"
993
-
994
- #: lib/recurrence/rule.php:475
995
- msgid "for %d occurrences"
996
- msgstr "for %d occurrences"
997
-
998
- #: lib/recurrence/rule.php:479
999
- msgid "forever"
1000
- msgstr "forever"
1001
-
1002
- #: lib/robots/helper.php:71
1003
- msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
- msgstr "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1005
-
1006
- #: lib/robots/helper.php:105
1007
- msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
- msgstr "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1009
-
1010
- #: lib/theme/list.php:152
1011
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
- msgstr "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1013
-
1014
- #: lib/theme/list.php:164
1015
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
- msgstr "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1017
-
1018
- #: lib/theme/list.php:179
1019
- msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
- msgstr "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1021
-
1022
- #: lib/theme/list.php:190
1023
- msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
- msgstr "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1025
-
1026
- #: lib/theme/list.php:257
1027
- msgid "Activate &#8220;%s&#8221;"
1028
- msgstr "Activate &#8220;%s&#8221;"
1029
-
1030
- #: lib/theme/list.php:264
1031
- msgid "Activate"
1032
- msgstr "Activate"
1033
-
1034
- #. translators: 1: theme title, 2: theme version, 3: theme author
1035
- #: lib/theme/list.php:281 public/admin/themes.php:25
1036
- msgid "%1$s %2$s by %3$s"
1037
- msgstr "%1$s %2$s by %3$s"
1038
-
1039
- #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
- #. title, 5: parent_theme
1041
- #: lib/theme/list.php:293
1042
- msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
- msgstr "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1044
-
1045
- #: lib/theme/list.php:308
1046
- msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
- msgstr "All of this theme&#8217;s files are located in <code>%2$s</code>."
1048
-
1049
- #: lib/post/custom-type.php:36
1050
- msgid "Parent Event"
1051
- msgstr "Parent Event"
1052
-
1053
- #: lib/post/custom-type.php:55
1054
- msgid "event"
1055
- msgstr "event"
1056
-
1057
- #: lib/post/custom-type.php:85
1058
- msgctxt "Event categories taxonomy"
1059
- msgid "Categories"
1060
- msgstr ""
1061
-
1062
- #: lib/post/custom-type.php:86
1063
- msgctxt "Event categories taxonomy (singular)"
1064
- msgid "Category"
1065
- msgstr ""
1066
-
1067
- #: lib/post/custom-type.php:87
1068
- msgctxt "Event categories menu item"
1069
- msgid "Organize"
1070
- msgstr ""
1071
-
1072
- #: lib/post/custom-type.php:94
1073
- msgctxt "Event tags taxonomy"
1074
- msgid "Tags"
1075
- msgstr ""
1076
-
1077
- #: lib/post/custom-type.php:95
1078
- msgctxt "Event tags taxonomy (singular)"
1079
- msgid "Tag"
1080
- msgstr ""
1081
-
1082
- #: lib/post/custom-type.php:102
1083
- msgctxt "Event feeds taxonomy"
1084
- msgid "Event Feeds"
1085
- msgstr "Event Feeds"
1086
-
1087
- #: lib/post/custom-type.php:103
1088
- msgctxt "Event feed taxonomy (singular)"
1089
- msgid "Event Feed"
1090
- msgstr "Event Feed"
1091
-
1092
- #: lib/post/custom-type.php:285
1093
- msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
- msgstr "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1095
-
1096
- #: lib/post/custom-type.php:296
1097
- msgid "All Events"
1098
- msgstr "All Events"
1099
-
1100
- #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
- #: lib/recurrence/rule.php:260
1102
- msgctxt "Recurrence editor - weekly tab"
1103
- msgid "on"
1104
- msgstr "on"
1105
-
1106
- #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
- #: lib/recurrence/rule.php:326
1108
- msgid "and"
1109
- msgstr "and"
1110
-
1111
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
- #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
- msgctxt "Recurrence editor - monthly tab"
1114
- msgid "on"
1115
- msgstr "on"
1116
-
1117
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
- #: lib/recurrence/rule.php:286
1119
- msgid "of the month"
1120
- msgstr "of the month"
1121
-
1122
- #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
- #: lib/recurrence/rule.php:336
1124
- msgctxt "Recurrence editor - yearly tab"
1125
- msgid "on"
1126
- msgstr "on"
1127
-
1128
- #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
- #: public/admin/cron_freq.php:9
1130
- msgid "Daily"
1131
- msgstr "Daily"
1132
-
1133
- #: lib/recurrence/rule.php:379
1134
- msgid "Every other day"
1135
- msgstr "Every other day"
1136
-
1137
- #: lib/recurrence/rule.php:382
1138
- msgid "Every %d days"
1139
- msgstr "Every %d days"
1140
-
1141
- #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
- msgid "Weekly"
1143
- msgstr "Weekly"
1144
-
1145
- #: lib/recurrence/rule.php:394
1146
- msgid "Every other week"
1147
- msgstr "Every other week"
1148
-
1149
- #: lib/less/variable/font.php:64
1150
- msgid "Custom..."
1151
- msgstr "Custom..."
1152
-
1153
- #: lib/less/variable/font.php:112
1154
- msgid "Enter custom font(s)"
1155
- msgstr "Enter custom font(s)"
1156
-
1157
- #: lib/less/variable/size.php:26
1158
- msgid "Length"
1159
- msgstr "Length"
1160
-
1161
- #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
- msgid "All-in-One Event Calendar"
1163
- msgstr "All-in-One Event Calendar"
1164
-
1165
- #: lib/notification/admin.php:182
1166
- msgid "Got it – dismiss this"
1167
- msgstr ""
1168
-
1169
- #: lib/post/custom-type.php:26
1170
- msgctxt "Custom post type name"
1171
- msgid "Events"
1172
- msgstr "Events"
1173
-
1174
- #: lib/post/custom-type.php:27
1175
- msgctxt "Custom post type name (singular)"
1176
- msgid "Event"
1177
- msgstr "Event"
1178
-
1179
- #: lib/post/custom-type.php:28
1180
- msgid "Add New"
1181
- msgstr "Add New"
1182
-
1183
- #: lib/post/custom-type.php:29
1184
- msgid "Add New Event"
1185
- msgstr "Add New Event"
1186
-
1187
- #: lib/post/custom-type.php:30
1188
- msgid "Edit Event"
1189
- msgstr "Edit Event"
1190
-
1191
- #: lib/post/custom-type.php:31
1192
- msgid "New Event"
1193
- msgstr "New Event"
1194
-
1195
- #: lib/post/custom-type.php:32
1196
- msgid "View Event"
1197
- msgstr "View Event"
1198
-
1199
- #: lib/post/custom-type.php:33
1200
- msgid "Search Events"
1201
- msgstr "Search Events"
1202
-
1203
- #: lib/post/custom-type.php:34
1204
- msgid "No Events found"
1205
- msgstr "No Events found"
1206
-
1207
- #: lib/post/custom-type.php:35
1208
- msgid "No Events found in Trash"
1209
- msgstr "No Events found in Trash"
1210
-
1211
- #: lib/html/element/setting/html.php:62
1212
- msgid "Filter by post ID:"
1213
- msgstr "Filter by post ID:"
1214
-
1215
- #: lib/html/element/setting/html.php:63
1216
- msgid "Filter by post IDs (separate IDs by comma):"
1217
- msgstr "Filter by post IDs (separate IDs by comma):"
1218
-
1219
- #: lib/html/element/setting/html.php:64
1220
- msgid "Limit number of events per page:"
1221
- msgstr "Limit number of events per page:"
1222
-
1223
- #: lib/html/element/setting/html.php:65
1224
- msgid "Warning:"
1225
- msgstr "Warning:"
1226
-
1227
- #: lib/html/element/setting/html.php:66
1228
- msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
- msgstr "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1230
-
1231
- #: lib/import-export/ics.php:831
1232
- msgid "Tickets: "
1233
- msgstr ""
1234
-
1235
- #: lib/html/element/setting/html.php:41
1236
- msgid "Day view:"
1237
- msgstr "Day view:"
1238
-
1239
- #: lib/html/element/setting/html.php:42
1240
- msgid "Agenda view:"
1241
- msgstr "Agenda view:"
1242
-
1243
- #: lib/html/element/setting/html.php:43
1244
- msgid "Some Other view:"
1245
- msgstr "Some Other view:"
1246
-
1247
- #: lib/html/element/setting/html.php:44
1248
- msgid "Default view as per settings:"
1249
- msgstr "Default view as per settings:"
1250
-
1251
- #: lib/html/element/setting/html.php:45
1252
- msgid "General form:"
1253
- msgstr "General form:"
1254
-
1255
- #: lib/html/element/setting/html.php:46
1256
- msgid "Optional."
1257
- msgstr "Optional."
1258
-
1259
- #: lib/html/element/setting/html.php:47
1260
- msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
- msgstr "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1262
-
1263
- #: lib/html/element/setting/html.php:48
1264
- msgid "Filter by event category name/slug:"
1265
- msgstr "Filter by event category name/slug:"
1266
-
1267
- #: lib/html/element/setting/html.php:49
1268
- msgid "Holidays"
1269
- msgstr "Holidays"
1270
-
1271
- #: lib/html/element/setting/html.php:50
1272
- msgid "Lunar Cycles"
1273
- msgstr "Lunar Cycles"
1274
-
1275
- #: lib/html/element/setting/html.php:51
1276
- msgid "zodiac-date-ranges"
1277
- msgstr "zodiac-date-ranges"
1278
-
1279
- #: lib/html/element/setting/html.php:52
1280
- msgid "Filter by event category names/slugs (separate names by comma):"
1281
- msgstr "Filter by event category names/slugs (separate names by comma):"
1282
-
1283
- #: lib/html/element/setting/html.php:53
1284
- msgid "Filter by event category ID:"
1285
- msgstr "Filter by event category ID:"
1286
-
1287
- #: lib/html/element/setting/html.php:54
1288
- msgid "Filter by event category IDs (separate IDs by comma):"
1289
- msgstr "Filter by event category IDs (separate IDs by comma):"
1290
-
1291
- #: lib/html/element/setting/html.php:55
1292
- msgid "Filter by event tag name/slug:"
1293
- msgstr "Filter by event tag name/slug:"
1294
-
1295
- #: lib/html/element/setting/html.php:56
1296
- msgid "tips-and-tricks"
1297
- msgstr "tips-and-tricks"
1298
-
1299
- #: lib/html/element/setting/html.php:57
1300
- msgid "creative writing"
1301
- msgstr "creative writing"
1302
-
1303
- #: lib/html/element/setting/html.php:58
1304
- msgid "performing arts"
1305
- msgstr "performing arts"
1306
-
1307
- #: lib/html/element/setting/html.php:59
1308
- msgid "Filter by event tag names/slugs (separate names by comma):"
1309
- msgstr "Filter by event tag names/slugs (separate names by comma):"
1310
-
1311
- #: lib/html/element/setting/html.php:60
1312
- msgid "Filter by event tag ID:"
1313
- msgstr "Filter by event tag ID:"
1314
-
1315
- #: lib/html/element/setting/html.php:61
1316
- msgid "Filter by event tag IDs (separate IDs by comma):"
1317
- msgstr "Filter by event tag IDs (separate IDs by comma):"
1318
-
1319
- #: lib/exception/handler.php:395
1320
- msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
- msgstr ""
1322
-
1323
- #: lib/exception/handler.php:404
1324
- msgid "Try reactivating plugin"
1325
- msgstr ""
1326
-
1327
- #: lib/exception/handler.php:576
1328
- msgid "Toggle error details"
1329
- msgstr ""
1330
-
1331
- #: lib/exception/handler.php:577
1332
- msgid "Error Details:"
1333
- msgstr ""
1334
-
1335
- #: lib/factory/html.php:133
1336
- msgid "Choose a date using calendar"
1337
- msgstr "Choose a date using calendar"
1338
-
1339
- #: lib/factory/html.php:278
1340
- msgid "Tags (optional)"
1341
- msgstr "Tags (optional)"
1342
-
1343
- #: lib/html/element/setting/cache.php:38
1344
- msgid "Check again"
1345
- msgstr "Check again"
1346
-
1347
- #: lib/html/element/setting/cache.php:39
1348
- msgid "Templates cache is not writable"
1349
- msgstr "Templates cache is not writeable"
1350
-
1351
- #: lib/html/element/setting/cache.php:40
1352
- msgid "Templates cache is writable"
1353
- msgstr "Templates cache is writeable"
1354
-
1355
- #: lib/html/element/setting/cache.php:41
1356
- msgid "Checking..."
1357
- msgstr "Checking..."
1358
-
1359
- #: lib/html/element/setting/cache.php:42
1360
- msgid "Performance Report"
1361
- msgstr "Performance Report"
1362
-
1363
- #: lib/html/element/setting/calendar-page-selector.php:70
1364
- msgid "View"
1365
- msgstr "View"
1366
-
1367
- #: lib/html/element/setting/calendar-page-selector.php:114
1368
- msgid "- Auto-Create New Page -"
1369
- msgstr "- Auto-Create New Page -"
1370
-
1371
- #: lib/html/element/setting/enabled-views.php:22
1372
- msgid "Enabled"
1373
- msgstr "Enabled"
1374
-
1375
- #: lib/html/element/setting/enabled-views.php:23
1376
- msgid "Default"
1377
- msgstr "Default"
1378
-
1379
- #: lib/html/element/setting/enabled-views.php:24
1380
- msgid "Desktop"
1381
- msgstr "Desktop"
1382
-
1383
- #: lib/html/element/setting/enabled-views.php:25
1384
- msgid "Mobile"
1385
- msgstr "Mobile"
1386
-
1387
- #: lib/html/element/setting/html.php:37
1388
- msgid "Embed the calendar using a shortcode"
1389
- msgstr "Embed the calendar using a shortcode"
1390
-
1391
- #: lib/html/element/setting/html.php:38
1392
- msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
- msgstr "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1394
-
1395
- #: lib/html/element/setting/html.php:39
1396
- msgid "Month view:"
1397
- msgstr "Month view:"
1398
-
1399
- #: lib/html/element/setting/html.php:40
1400
- msgid "Week view:"
1401
- msgstr "Week view:"
1402
-
1403
- #: lib/css/frontend.php:239
1404
- msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
- msgstr ""
1406
-
1407
- #: lib/css/frontend.php:266
1408
- msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
- msgstr "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1410
-
1411
- #: lib/css/frontend.php:272
1412
- msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
- msgstr "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1414
-
1415
- #: lib/css/frontend.php:300
1416
- msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
- msgstr "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1418
-
1419
- #: lib/css/frontend.php:307
1420
- msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
- msgstr "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1422
-
1423
- #: lib/css/frontend.php:343
1424
- msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
- msgstr "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1426
-
1427
- #: lib/database/applicator.php:182
1428
- msgid "Date columns in table %s have different types."
1429
- msgstr "Date columns in table %s have different types."
1430
-
1431
- #: lib/database/exception/database.php:19
1432
- msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
- msgstr "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1434
-
1435
- #: lib/database/exception/database.php:23
1436
- msgid "Error encountered: %s"
1437
- msgstr "Error encountered: %s"
1438
-
1439
- #: lib/date/system.php:202
1440
- msgid "GMT%+d:%02d"
1441
- msgstr "GMT%+d:%02d"
1442
-
1443
- #: lib/date/timezone.php:362
1444
- msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
- msgstr "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1446
-
1447
- #: lib/date/timezone.php:397
1448
- msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
- msgstr "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1450
-
1451
- #: lib/date/timezone.php:421
1452
- msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
- msgstr "Selected timezone \"UTC%+d\" will be treated as %s."
1454
-
1455
- #: lib/date/timezone.php:490
1456
- msgid "Manual Offset"
1457
- msgstr "Manual Offset"
1458
-
1459
- #: lib/date/timezone.php:493
1460
- msgid "Choose your timezone"
1461
- msgstr "Choose your timezone"
1462
-
1463
- #: lib/environment/check.php:55
1464
- msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
- msgstr "Select an option in the <strong>Calendar page</strong> dropdown list."
1466
-
1467
- #: lib/environment/check.php:68
1468
- msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
- msgstr "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1470
-
1471
- #: lib/environment/check.php:78
1472
- msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
- msgstr "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1474
-
1475
- #: lib/environment/check.php:196
1476
- msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
- msgstr ""
1478
-
1479
- #: lib/environment/check.php:197
1480
- msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
- msgstr ""
1482
-
1483
- #: lib/exception/handler.php:176
1484
- msgid "The add-on \"%s\" has been disabled due to an error:"
1485
- msgstr ""
1486
-
1487
- #: lib/calendar-feed/ics.php:367
1488
- msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
- msgstr "Do you want to keep the events imported from the calendar or remove them?"
1490
-
1491
- #: lib/calendar-feed/ics.php:373
1492
- msgid "Removing ICS Feed"
1493
- msgstr "Removing ICS Feed"
1494
-
1495
- #: lib/calendar-feed/ics.php:376
1496
- msgid "Keep Events"
1497
- msgstr "Keep Events"
1498
-
1499
- #: lib/calendar-feed/ics.php:379
1500
- msgid "Remove Events"
1501
- msgstr "Remove Events"
1502
-
1503
- #: lib/calendar-feed/ics.php:519
1504
- msgid "Oh, submission was not accepted."
1505
- msgstr ""
1506
-
1507
- #: lib/calendar-feed/ics.php:699
1508
- msgid "Deleted %d events"
1509
- msgstr "Deleted %d events"
1510
-
1511
- #: lib/calendar-feed/ics.php:735
1512
- msgid "Feed deleted"
1513
- msgstr "Feed deleted"
1514
-
1515
- #: lib/captcha/provider/nocaptcha.php:31
1516
- msgid "noCAPTCHA public key:"
1517
- msgstr ""
1518
-
1519
- #: lib/captcha/provider/nocaptcha.php:47
1520
- msgid "noCAPTCHA private key:"
1521
- msgstr ""
1522
-
1523
- #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
- msgid "Please try verifying you are human again."
1525
- msgstr ""
1526
-
1527
- #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
- msgid "There was an error reading the human verification data. Please try again."
1529
- msgstr ""
1530
-
1531
- #: lib/captcha/provider/recaptcha.php:32
1532
- msgid "reCAPTCHA public key:"
1533
- msgstr ""
1534
-
1535
- #: lib/captcha/provider/recaptcha.php:48
1536
- msgid "reCAPTCHA private key:"
1537
- msgstr ""
1538
-
1539
- #: lib/captcha/provider/recaptcha.php:66
1540
- msgid "Human verification"
1541
- msgstr ""
1542
-
1543
- #: lib/captcha/provider/recaptcha.php:67
1544
- msgid "Loading reCAPTCHA..."
1545
- msgstr ""
1546
-
1547
- #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
- #: lib/clone/renderer-helper.php:45
1549
- msgid "Clone"
1550
- msgstr "Clone"
1551
-
1552
- #: lib/clone/renderer-helper.php:44
1553
- msgid "Make new copy of event"
1554
- msgstr "Make new copy of event"
1555
-
1556
- #: lib/clone/renderer-helper.php:47
1557
- msgid "Copy to a new draft"
1558
- msgstr "Copy to a new draft"
1559
-
1560
- #: lib/clone/renderer-helper.php:48
1561
- msgid "Clone to Draft"
1562
- msgstr "Clone to Draft"
1563
-
1564
- #: lib/command/clone.php:173
1565
- msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
- msgstr "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1567
-
1568
- #: lib/compatibility/check.php:101
1569
- msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
- msgstr ""
1571
-
1572
- #: app/view/event/single.php:123
1573
- msgid "Tickets:"
1574
- msgstr ""
1575
-
1576
- #: app/view/event/single.php:124
1577
- msgid "Free"
1578
- msgstr "Free"
1579
-
1580
- #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
- msgid "Buy Tickets"
1582
- msgstr "Buy Tickets"
1583
-
1584
- #: app/view/event/single.php:150
1585
- msgid "Edit this occurrence (%s)"
1586
- msgstr "Edit this occurrence (%s)"
1587
-
1588
- #: app/view/event/single.php:195
1589
- msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
- msgstr ""
1591
-
1592
- #: app/view/event/single.php:206
1593
- msgid "View original"
1594
- msgstr ""
1595
-
1596
- #: app/view/event/taxonomy.php:113
1597
- msgid "Category image"
1598
- msgstr "Category image"
1599
-
1600
- #: app/view/event/ticket.php:24
1601
- msgid "Register Now"
1602
- msgstr "Register Now"
1603
-
1604
- #: app/view/event/ticket.php:82
1605
- msgid "Event website"
1606
- msgstr "Event website"
1607
-
1608
- #: app/view/event/time.php:84 app/view/event/time.php:118
1609
- msgctxt "Event time separator"
1610
- msgid " @ "
1611
- msgstr " @ "
1612
-
1613
- #: app/view/event/time.php:100
1614
- msgctxt "Event start/end separator"
1615
- msgid " – "
1616
- msgstr " – "
1617
-
1618
- #: app/view/event/time.php:166
1619
- msgid ", and "
1620
- msgstr ", and "
1621
-
1622
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
- msgid "Excludes: "
1624
- msgstr ""
1625
-
1626
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
- msgid "Repeats"
1628
- msgstr ""
1629
-
1630
- #: lib/calendar-feed/ics.php:38
1631
- msgid "ICS"
1632
- msgstr "ICS"
1633
-
1634
- #: lib/calendar-feed/ics.php:69
1635
- msgid "Another import process in progress. Please try again later."
1636
- msgstr "Another import process in progress. Please try again later."
1637
-
1638
- #: lib/calendar-feed/ics.php:174
1639
- msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
- msgstr "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1641
-
1642
- #: lib/calendar-feed/ics.php:181
1643
- msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
- msgstr "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1645
-
1646
- #: lib/calendar-feed/ics.php:195
1647
- msgid "Imported %s event"
1648
- msgid_plural "Imported %s events"
1649
- msgstr[0] "Imported %s event"
1650
- msgstr[1] "Imported %s events"
1651
-
1652
- #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
- msgid "Invalid ICS feed ID"
1654
- msgstr "Invalid ICS feed ID"
1655
-
1656
- #: lib/calendar-feed/ics.php:350
1657
- msgid "Categories (optional)"
1658
- msgstr "Categories (optional)"
1659
-
1660
- #: app/view/event/content.php:33 app/view/event/single.php:119
1661
- msgid "When:"
1662
- msgstr "When:"
1663
-
1664
- #: app/view/event/content.php:34 app/view/event/single.php:120
1665
- msgid "Where:"
1666
- msgstr "Where:"
1667
-
1668
- #: app/view/event/content.php:125
1669
- msgid "Calendar"
1670
- msgstr ""
1671
-
1672
- #: app/view/event/content.php:126
1673
- msgid "View all events"
1674
- msgstr "View all events"
1675
-
1676
- #: app/view/event/location.php:96
1677
- msgid "Click to view map"
1678
- msgstr "Click to view map"
1679
-
1680
- #: app/view/event/location.php:97
1681
- msgid "View Full-Size Map"
1682
- msgstr "View Full-Size Map"
1683
-
1684
- #: app/view/event/post.php:29
1685
- msgid "Event updated. <a href=\"%s\">View event</a>"
1686
- msgstr "Event updated. <a href=\"%s\">View event</a>"
1687
-
1688
- #: app/view/event/post.php:32
1689
- msgid "Custom field updated."
1690
- msgstr "Custom field updated."
1691
-
1692
- #: app/view/event/post.php:33
1693
- msgid "Custom field deleted."
1694
- msgstr "Custom field deleted."
1695
-
1696
- #: app/view/event/post.php:34
1697
- msgid "Event updated."
1698
- msgstr "Event updated."
1699
-
1700
- #. translators: %s: date and time of the revision
1701
- #: app/view/event/post.php:38
1702
- msgid "Event restored to revision from %s"
1703
- msgstr "Event restored to revision from %s"
1704
-
1705
- #: app/view/event/post.php:43
1706
- msgid "Event published. <a href=\"%s\">View event</a>"
1707
- msgstr "Event published. <a href=\"%s\">View event</a>"
1708
-
1709
- #: app/view/event/post.php:46
1710
- msgid "Event saved."
1711
- msgstr "Event saved."
1712
-
1713
- #: app/view/event/post.php:48
1714
- msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
- msgstr "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1716
-
1717
- #: app/view/event/post.php:52
1718
- msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
- msgstr "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1720
-
1721
- #. translators: Publish box date format, see http:php.net/date
1722
- #: app/view/event/post.php:54
1723
- msgid "M j, Y @ G:i"
1724
- msgstr "jS M, Y @ G:i"
1725
-
1726
- #: app/view/event/post.php:58
1727
- msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
- msgstr "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1729
-
1730
- #: app/view/event/single.php:78
1731
- msgid "Event was created in the %s time zone"
1732
- msgstr ""
1733
-
1734
- #: app/view/event/single.php:114
1735
- msgid "Add to Calendar"
1736
- msgstr "Add to Calendar"
1737
-
1738
- #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
- msgid "Cost:"
1740
- msgstr "Cost:"
1741
-
1742
- #: app/view/event/single.php:122
1743
- msgid "Contact:"
1744
- msgstr "Contact:"
1745
-
1746
- #: app/view/calendar/view/agenda.php:169
1747
- msgid "Categories:"
1748
- msgstr "Categories:"
1749
-
1750
- #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
- #: public/admin/themes.php:29
1752
- msgid "Tags:"
1753
- msgstr "Tags:"
1754
-
1755
- #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
- #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
- #: app/view/calendar/widget.php:374
1758
- msgid "@ %s"
1759
- msgstr "@ %s"
1760
-
1761
- #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
- msgid "g a"
1763
- msgstr "g a"
1764
-
1765
- #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
- msgid "Reveal full day"
1767
- msgstr "Reveal full day"
1768
-
1769
- #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
- msgid "All-day"
1771
- msgstr "All-day"
1772
-
1773
- #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
- msgid "Now:"
1775
- msgstr "Now:"
1776
-
1777
- #: app/view/calendar/view/week.php:67
1778
- msgid "Week of %s"
1779
- msgstr "Week of %s"
1780
-
1781
- #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
- msgid "Upcoming Events"
1783
- msgstr "Upcoming Events"
1784
-
1785
- #: app/view/calendar/widget.php:38
1786
- msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
- msgstr "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1788
-
1789
- #: app/view/calendar/widget.php:80
1790
- msgid "Choose how to limit the upcoming events"
1791
- msgstr ""
1792
-
1793
- #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
- msgid "Events"
1795
- msgstr "Events"
1796
-
1797
- #: app/view/calendar/widget.php:93
1798
- msgid "Days"
1799
- msgstr ""
1800
-
1801
- #: app/view/calendar/widget.php:106
1802
- msgid "Number of events to show"
1803
- msgstr ""
1804
-
1805
- #: app/view/calendar/widget.php:115
1806
- msgid "Number of days to show"
1807
- msgstr ""
1808
-
1809
- #: app/view/calendar/widget.php:124
1810
- msgid "Show events filtered for the following tags/categories"
1811
- msgstr ""
1812
-
1813
- #: app/view/calendar/widget.php:141
1814
- msgid "Show the subscribe button in the widget"
1815
- msgstr ""
1816
-
1817
- #: app/view/calendar/widget.php:370
1818
- msgid "There are no upcoming events."
1819
- msgstr "There are no upcoming events."
1820
-
1821
- #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
- msgid "all-day"
1823
- msgstr "all-day"
1824
-
1825
- #: app/view/calendar/widget.php:372
1826
- msgid "View Calendar"
1827
- msgstr "View Calendar"
1828
-
1829
- #: app/view/calendar/widget.php:375
1830
- msgid "Add"
1831
- msgstr "Add"
1832
-
1833
- #: app/view/calendar/page.php:260
1834
- msgid "Subscribe to filtered calendar"
1835
- msgstr "Subscribe to filtered calendar"
1836
-
1837
- #: app/view/calendar/page.php:261
1838
- msgid "Subscribe"
1839
- msgstr "Subscribe"
1840
-
1841
- #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
- msgid "Get a Timely Calendar"
1843
- msgstr ""
1844
-
1845
- #: app/view/calendar/subscribe-button.php:22
1846
- msgid "Add to Timely Calendar"
1847
- msgstr "Add to Timely Calendar"
1848
-
1849
- #: app/view/calendar/subscribe-button.php:23
1850
- msgid "Add to Google"
1851
- msgstr "Add to Google"
1852
-
1853
- #: app/view/calendar/subscribe-button.php:24
1854
- msgid "Add to Outlook"
1855
- msgstr "Add to Outlook"
1856
-
1857
- #: app/view/calendar/subscribe-button.php:25
1858
- msgid "Add to Apple Calendar"
1859
- msgstr "Add to Apple Calendar"
1860
-
1861
- #: app/view/calendar/subscribe-button.php:26
1862
- msgid "Add to other calendar"
1863
- msgstr "Add to other calendar"
1864
-
1865
- #: app/view/calendar/subscribe-button.php:29
1866
- msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
- msgstr "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1868
-
1869
- #: app/view/calendar/subscribe-button.php:30
1870
- msgid "Subscribe to this calendar in your Google Calendar"
1871
- msgstr "Subscribe to this calendar in your Google Calendar"
1872
-
1873
- #: app/view/calendar/subscribe-button.php:31
1874
- msgid "Subscribe to this calendar in MS Outlook"
1875
- msgstr "Subscribe to this calendar in MS Outlook"
1876
-
1877
- #: app/view/calendar/subscribe-button.php:32
1878
- msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
- msgstr "Subscribe to this calendar in Apple Calendar/iCal"
1880
-
1881
- #: app/view/calendar/subscribe-button.php:33
1882
- msgid "Subscribe to this calendar in another plain-text calendar"
1883
- msgstr "Subscribe to this calendar in another plain-text calendar"
1884
-
1885
- #: app/view/calendar/taxonomy.php:97
1886
- msgid "Clear category filter"
1887
- msgstr "Clear category filter"
1888
-
1889
- #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
- #: lib/html/element/setting/tags-categories.php:47
1891
- msgid "Categories"
1892
- msgstr "Categories"
1893
-
1894
- #: app/view/calendar/taxonomy.php:99
1895
- msgid "Clear tag filter"
1896
- msgstr "Clear tag filter"
1897
-
1898
- #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
- #: lib/html/element/setting/tags-categories.php:39
1900
- msgid "Tags"
1901
- msgstr "Tags"
1902
-
1903
- #: app/view/calendar/view/agenda.php:142
1904
- msgid "Collapse All"
1905
- msgstr "Collapse All"
1906
-
1907
- #: app/view/calendar/view/agenda.php:143
1908
- msgid "Expand All"
1909
- msgstr "Expand All"
1910
-
1911
- #: app/view/calendar/view/agenda.php:166
1912
- msgid "There are no upcoming events to display at this time."
1913
- msgstr "There are no upcoming events to display at this time."
1914
-
1915
- #: app/view/calendar/view/agenda.php:168
1916
- msgid "Read more"
1917
- msgstr "Read more"
1918
-
1919
- #: app/view/admin/tickets.php:86
1920
- msgid "Sales"
1921
- msgstr ""
1922
-
1923
- #: app/view/admin/tickets.php:87
1924
- msgid "How do you want the tickets revenue to be sent to you?"
1925
- msgstr ""
1926
-
1927
- #: app/view/admin/tickets.php:88
1928
- msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
- msgstr ""
1930
-
1931
- #: app/view/admin/tickets.php:91
1932
- msgid "Cheque"
1933
- msgstr ""
1934
-
1935
- #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
- msgid "Paypal"
1937
- msgstr "Paypal"
1938
-
1939
- #: app/view/admin/tickets.php:94
1940
- msgid "Save Changes"
1941
- msgstr ""
1942
-
1943
- #: app/view/admin/tickets.php:95
1944
- msgid "Date"
1945
- msgstr ""
1946
-
1947
- #: app/view/admin/tickets.php:96
1948
- msgid "Event"
1949
- msgstr ""
1950
-
1951
- #: app/view/admin/tickets.php:97
1952
- msgid "Purchaser"
1953
- msgstr ""
1954
-
1955
- #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
- #: public/admin/box_event_cost.php:35
1957
- msgid "Tickets"
1958
- msgstr "Tickets"
1959
-
1960
- #: app/view/admin/tickets.php:101
1961
- msgid "Total"
1962
- msgstr ""
1963
-
1964
- #: app/view/admin/tickets.php:102
1965
- msgid "Sign Out"
1966
- msgstr ""
1967
-
1968
- #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
- #: app/view/admin/widget-creator.php:47
1970
- msgid "Widget Creator"
1971
- msgstr ""
1972
-
1973
- #: app/view/admin/widget-creator.php:74
1974
- msgctxt "meta box"
1975
- msgid "Widget Creator"
1976
- msgstr ""
1977
-
1978
- #: app/view/admin/widget-creator.php:131
1979
- msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
- msgstr ""
1981
-
1982
- #: app/view/admin/widget-creator.php:132
1983
- msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
- msgstr ""
1985
-
1986
- #: app/view/admin/widget-creator.php:134
1987
- msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
- msgstr ""
1989
-
1990
- #: app/view/admin/widget-creator.php:140
1991
- msgid "Paste this code onto your site:"
1992
- msgstr ""
1993
-
1994
- #: app/view/admin/widget-creator.php:141
1995
- msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
- msgstr ""
1997
-
1998
- #: app/view/calendar/page.php:54
1999
- msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
- msgstr "There was an error loading the calendar. Please contact site administrator and inform him to configure calendar views."
2001
-
2002
- #: app/view/calendar/page.php:74
2003
- msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
- msgstr ""
2005
-
2006
- #: app/view/admin/settings.php:193
2007
- msgid "Phone Number:"
2008
- msgstr ""
2009
-
2010
- #: app/view/admin/settings.php:194
2011
- msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
- msgstr ""
2013
-
2014
- #: app/view/admin/settings.php:197
2015
- msgid "Sign Up"
2016
- msgstr ""
2017
-
2018
- #: app/view/admin/settings.php:198
2019
- msgid "Sign In"
2020
- msgstr ""
2021
-
2022
- #: app/view/admin/settings.php:212
2023
- msgid "Save Settings"
2024
- msgstr "Save Settings"
2025
-
2026
- #: app/view/admin/settings.php:219
2027
- msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
- msgstr "If the form below is not working please follow <a href=\"%s\">this link</a>."
2029
-
2030
- #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
- msgid "Theme Options"
2032
- msgstr "Theme Options"
2033
-
2034
- #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
- msgid "Calendar Theme Options"
2036
- msgstr "Calendar Theme Options"
2037
-
2038
- #: app/view/admin/theme-options.php:79
2039
- msgctxt "meta box"
2040
- msgid "Calendar Theme Options"
2041
- msgstr "Calendar Theme Options"
2042
-
2043
- #: app/view/admin/theme-options.php:133
2044
- msgid "General"
2045
- msgstr "General"
2046
-
2047
- #: app/view/admin/theme-options.php:136
2048
- msgid "Tables"
2049
- msgstr "Tables"
2050
-
2051
- #: app/view/admin/theme-options.php:139
2052
- msgid "Buttons"
2053
- msgstr "Buttons"
2054
-
2055
- #: app/view/admin/theme-options.php:142
2056
- msgid "Forms"
2057
- msgstr "Forms"
2058
-
2059
- #: app/view/admin/theme-options.php:145
2060
- msgid "Calendar general"
2061
- msgstr "Calendar general"
2062
-
2063
- #: app/view/admin/theme-options.php:148
2064
- msgid "Month/week/day view"
2065
- msgstr "Month/week/day view"
2066
-
2067
- #: app/view/admin/theme-options.php:151
2068
- msgid "Agenda view"
2069
- msgstr "Agenda view"
2070
-
2071
- #: app/view/admin/theme-options.php:169
2072
- msgid "Save Options"
2073
- msgstr "Save Options"
2074
-
2075
- #: app/view/admin/theme-options.php:177
2076
- msgid "Reset to Defaults"
2077
- msgstr "Reset to Defaults"
2078
-
2079
- #: app/view/admin/theme-switching.php:31
2080
- msgid "All-in-One Event Calendar: Themes"
2081
- msgstr "All-in-One Event Calendar: Themes"
2082
-
2083
- #: app/view/admin/tickets.php:36
2084
- msgid "Ticketing"
2085
- msgstr ""
2086
-
2087
- #: app/view/admin/tickets.php:37
2088
- msgid "Ticketing<sup>beta</sup>"
2089
- msgstr ""
2090
-
2091
- #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
- msgid "Time.ly Ticketing<sup>beta</sup>"
2093
- msgstr ""
2094
-
2095
- #: app/view/admin/settings.php:98
2096
- msgctxt "meta box"
2097
- msgid "Timely"
2098
- msgstr "Timely"
2099
-
2100
- #: app/view/admin/settings.php:140
2101
- msgid "Viewing Events"
2102
- msgstr "Viewing Events"
2103
-
2104
- #: app/view/admin/settings.php:143
2105
- msgid "Adding/Editing Events"
2106
- msgstr "Adding/Editing Events"
2107
-
2108
- #: app/view/admin/settings.php:146
2109
- msgid "Advanced"
2110
- msgstr "Advanced"
2111
-
2112
- #: app/view/admin/settings.php:148
2113
- msgid "Advanced Settings"
2114
- msgstr "Advanced Settings"
2115
-
2116
- #: app/view/admin/settings.php:149
2117
- msgid "Shortcodes"
2118
- msgstr "Shortcodes"
2119
-
2120
- #: app/view/admin/settings.php:150
2121
- msgid "Email Templates"
2122
- msgstr "Email Templates"
2123
-
2124
- #: app/view/admin/settings.php:151
2125
- msgid "External Services"
2126
- msgstr "External Services"
2127
-
2128
- #: app/view/admin/settings.php:152
2129
- msgid "Cache Report"
2130
- msgstr "Cache Report"
2131
-
2132
- #: app/view/admin/settings.php:171
2133
- msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
- msgstr ""
2135
-
2136
- #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
- #: public/admin/box_ask_customer_review.php:112
2138
- #: public/admin/box_ask_customer_review.php:126
2139
- #: public/admin/box_ask_customer_review.php:140
2140
- #: public/admin/box_ask_customer_review.php:158
2141
- #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
- msgid "This field is required."
2143
- msgstr ""
2144
-
2145
- #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
- msgid "Register"
2147
- msgstr "Register"
2148
-
2149
- #: app/view/admin/settings.php:184
2150
- msgid "Sign in"
2151
- msgstr ""
2152
-
2153
- #: app/view/admin/settings.php:185
2154
- msgid "You are successfully signed in to <b>Timely Network</b>."
2155
- msgstr ""
2156
-
2157
- #: app/view/admin/settings.php:186
2158
- msgid "Sign out"
2159
- msgstr ""
2160
-
2161
- #: app/view/admin/settings.php:187
2162
- msgid "Hide form"
2163
- msgstr ""
2164
-
2165
- #: app/view/admin/settings.php:188
2166
- msgid "Show form"
2167
- msgstr ""
2168
-
2169
- #: app/view/admin/settings.php:189
2170
- msgid "Full Name:"
2171
- msgstr ""
2172
-
2173
- #: app/view/admin/settings.php:190
2174
- msgid "Email:"
2175
- msgstr ""
2176
-
2177
- #: app/view/admin/settings.php:191
2178
- msgid "Password:"
2179
- msgstr ""
2180
-
2181
- #: app/view/admin/settings.php:192
2182
- msgid "Confirm Password:"
2183
- msgstr ""
2184
-
2185
- #: app/view/admin/get-repeat-box.php:483
2186
- msgid "fourth"
2187
- msgstr "fourth"
2188
-
2189
- #: app/view/admin/get-repeat-box.php:495
2190
- msgid "Sunday"
2191
- msgstr "Sunday"
2192
-
2193
- #: app/view/admin/get-repeat-box.php:496
2194
- msgid "Monday"
2195
- msgstr "Monday"
2196
-
2197
- #: app/view/admin/get-repeat-box.php:497
2198
- msgid "Tuesday"
2199
- msgstr "Tuesday"
2200
-
2201
- #: app/view/admin/get-repeat-box.php:498
2202
- msgid "Wednesday"
2203
- msgstr "Wednesday"
2204
-
2205
- #: app/view/admin/get-repeat-box.php:499
2206
- msgid "Thursday"
2207
- msgstr "Thursday"
2208
-
2209
- #: app/view/admin/get-repeat-box.php:500
2210
- msgid "Friday"
2211
- msgstr "Friday"
2212
-
2213
- #: app/view/admin/get-repeat-box.php:501
2214
- msgid "Saturday"
2215
- msgstr "Saturday"
2216
-
2217
- #: app/view/admin/get-repeat-box.php:503
2218
- msgid "day"
2219
- msgstr "day"
2220
-
2221
- #: app/view/admin/get-repeat-box.php:504
2222
- msgid "weekday"
2223
- msgstr "weekday"
2224
-
2225
- #: app/view/admin/get-repeat-box.php:505
2226
- msgid "weekend day"
2227
- msgstr "weekend day"
2228
-
2229
- #: app/view/admin/get-repeat-box.php:571
2230
- msgid "year(s)"
2231
- msgstr "year(s)"
2232
-
2233
- #: app/view/admin/nav.php:22
2234
- msgid "<a href=\"%s\">Settings</a>"
2235
- msgstr "<a href=\"%s\">Settings</a>"
2236
-
2237
- #: app/view/admin/nav.php:28
2238
- msgid "<a href=\"%s\">Check for updates</a>"
2239
- msgstr ""
2240
-
2241
- #: app/view/admin/organize.php:100
2242
- msgid "Organize Events"
2243
- msgstr ""
2244
-
2245
- #: app/view/admin/settings.php:30
2246
- msgid "All-in-One Event Calendar: Settings"
2247
- msgstr "All-in-One Event Calendar: Settings"
2248
-
2249
- #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
- #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
- msgid "Settings"
2252
- msgstr "Settings"
2253
-
2254
- #: app/view/admin/settings.php:89
2255
- msgctxt "meta box"
2256
- msgid "General Settings"
2257
- msgstr "General Settings"
2258
-
2259
- #: app/view/admin/get-repeat-box.php:480
2260
- msgid "first"
2261
- msgstr "first"
2262
-
2263
- #: app/view/admin/get-repeat-box.php:481
2264
- msgid "second"
2265
- msgstr "second"
2266
-
2267
- #: app/view/admin/get-repeat-box.php:482
2268
- msgid "third"
2269
- msgstr "third"
2270
-
2271
- #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
- msgid "Import Feeds"
2273
- msgstr ""
2274
-
2275
- #: app/view/admin/calendar-feeds.php:48
2276
- msgctxt "meta box"
2277
- msgid "Feed Subscriptions"
2278
- msgstr "Feed Subscriptions"
2279
-
2280
- #: app/view/admin/calendar-feeds.php:65
2281
- msgid "All-in-One Event Calendar: Import Feeds"
2282
- msgstr ""
2283
-
2284
- #: app/view/admin/event-category.php:30
2285
- msgid "Color"
2286
- msgstr "Colour"
2287
-
2288
- #: app/view/admin/event-category.php:32
2289
- msgid "Image"
2290
- msgstr "Image"
2291
-
2292
- #: app/view/admin/event-category.php:155
2293
- msgid "Category Color"
2294
- msgstr "Category Colour"
2295
-
2296
- #: app/view/admin/event-category.php:156
2297
- msgid "Events in this category will be identified by this color"
2298
- msgstr "Events in this category will be identified by this colour"
2299
-
2300
- #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
- msgid "Category Image"
2302
- msgstr "Category Image"
2303
-
2304
- #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
- msgid "Add Image"
2306
- msgstr "Add Image"
2307
-
2308
- #: app/view/admin/event-category.php:195
2309
- msgid "Remove Image"
2310
- msgstr "Remove Image"
2311
-
2312
- #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
- msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
- msgstr "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2315
-
2316
- #: app/view/admin/get-repeat-box.php:94
2317
- msgid "times"
2318
- msgstr "times"
2319
-
2320
- #: app/view/admin/get-repeat-box.php:164
2321
- msgid "Recurrence rule cannot be empty."
2322
- msgstr "Recurrence rule cannot be empty."
2323
-
2324
- #: app/view/admin/get-repeat-box.php:182
2325
- msgid "Recurrence rule was not provided."
2326
- msgstr "Recurrence rule was not provided."
2327
-
2328
- #: app/view/admin/get-repeat-box.php:209
2329
- msgid "Never"
2330
- msgstr "Never"
2331
-
2332
- #: app/view/admin/get-repeat-box.php:210
2333
- msgid "After"
2334
- msgstr "After"
2335
-
2336
- #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
- msgid "On date"
2338
- msgstr "On date"
2339
-
2340
- #: app/view/admin/get-repeat-box.php:247
2341
- msgid "day(s)"
2342
- msgstr "day(s)"
2343
-
2344
- #: app/view/admin/get-repeat-box.php:330
2345
- msgid "week(s)"
2346
- msgstr "week(s)"
2347
-
2348
- #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
- #: lib/recurrence/rule.php:298
2350
- msgid "last"
2351
- msgstr "last"
2352
-
2353
- #: app/view/admin/get-repeat-box.php:426
2354
- msgid "month(s)"
2355
- msgstr "month(s)"
2356
-
2357
- #: app/model/settings.php:929
2358
- msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
- msgstr "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2360
-
2361
- #: app/model/settings.php:932
2362
- msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
- msgstr "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2364
-
2365
- #: app/model/settings.php:944
2366
- msgid "Current <strong>robots.txt</strong> on this site"
2367
- msgstr "Current <strong>robots.txt</strong> on this site"
2368
-
2369
- #: app/model/settings.php:948
2370
- msgid ""
2371
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
- "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
- "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
- "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
- "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
- msgstr ""
2377
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2378
- "→\t→\t→\t→\t→\t→\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2379
- "→\t→\t→\t→\t→\t→\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2380
- "→\t→\t→\t→\t→\t→\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2381
- "→\t→\t→\t→\t→\t→\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2382
-
2383
- #: app/model/settings.php:965
2384
- msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2385
- msgstr "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2386
-
2387
- #: app/model/settings.php:988
2388
- msgid "Templates cache improves site performance"
2389
- msgstr "Templates cache improves site performance"
2390
-
2391
- #: app/model/settings.php:1001
2392
- msgid "Display events in <strong>calendar time zone</strong>"
2393
- msgstr ""
2394
-
2395
- #: app/model/settings.php:1004
2396
- msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
- msgstr ""
2398
-
2399
- #: app/view/admin/add-new-event.php:26
2400
- msgid "Event Details"
2401
- msgstr "Event Details"
2402
-
2403
- #: app/view/admin/add-new-event.php:423
2404
- msgid "Set banner image"
2405
- msgstr ""
2406
-
2407
- #: app/view/admin/add-new-event.php:424
2408
- msgid "Remove banner image"
2409
- msgstr ""
2410
-
2411
- #: app/view/admin/add-ons.php:68
2412
- msgid "Add-ons for All In One Event Calendar"
2413
- msgstr ""
2414
-
2415
- #: app/view/admin/add-ons.php:71
2416
- msgid "Browse All Extensions"
2417
- msgstr ""
2418
-
2419
- #: app/view/admin/add-ons.php:74
2420
- msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
- msgstr ""
2422
-
2423
- #: app/view/admin/add-ons.php:77
2424
- msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
- msgstr ""
2426
-
2427
- #: app/view/admin/all-events.php:16
2428
- msgid "Author"
2429
- msgstr "Author"
2430
-
2431
- #: app/view/admin/all-events.php:17
2432
- msgid "Post Date"
2433
- msgstr "Post Date"
2434
-
2435
- #: app/view/admin/all-events.php:18
2436
- msgid "Event date/time"
2437
- msgstr "Event date/time"
2438
-
2439
- #: app/view/admin/all-events.php:22
2440
- msgid "Ticket Types"
2441
- msgstr ""
2442
-
2443
- #: app/view/admin/all-events.php:134
2444
- msgid "Show All "
2445
- msgstr "Show All "
2446
-
2447
- #: app/view/admin/all-events.php:147
2448
- msgid "Show All Authors"
2449
- msgstr ""
2450
-
2451
- #: app/model/settings.php:746
2452
- msgid "Strict compatibility content filtering"
2453
- msgstr "Strict compatibility content filtering"
2454
-
2455
- #: app/model/settings.php:758
2456
- msgid " <strong>Hide featured image</strong> from event details page"
2457
- msgstr " <strong>Hide featured image</strong> from event details page"
2458
-
2459
- #: app/model/settings.php:761
2460
- msgid "Select this option if your theme already displays each post's featured image."
2461
- msgstr "Select this option if your theme already displays each post's featured image."
2462
-
2463
- #: app/model/settings.php:772
2464
- msgid "Input dates in this format"
2465
- msgstr "Input dates in this format"
2466
-
2467
- #: app/model/settings.php:777
2468
- msgid "Default (d/m/yyyy)"
2469
- msgstr "Default (d/m/yyyy)"
2470
-
2471
- #: app/model/settings.php:781
2472
- msgid "US (m/d/yyyy)"
2473
- msgstr "US (m/d/yyyy)"
2474
-
2475
- #: app/model/settings.php:785
2476
- msgid "ISO 8601 (yyyy-m-d)"
2477
- msgstr "ISO 8601 (yyyy-m-d)"
2478
-
2479
- #: app/model/settings.php:789
2480
- msgid "Dotted (m.d.yyyy)"
2481
- msgstr "Dotted (m.d.yyyy)"
2482
-
2483
- #: app/model/settings.php:801
2484
- msgid " Use <strong>24h time</strong> in time pickers"
2485
- msgstr " Use <strong>24h time</strong> in time pickers"
2486
-
2487
- #: app/model/settings.php:812
2488
- msgid "<strong>Disable address autocomplete</strong> function"
2489
- msgstr "<strong>Disable address autocomplete</strong> function"
2490
-
2491
- #: app/model/settings.php:823
2492
- msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2493
- msgstr "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2494
-
2495
- #: app/model/settings.php:839
2496
- msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2497
- msgstr " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2498
-
2499
- #: app/model/settings.php:842
2500
- msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2501
- msgstr "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2502
-
2503
- #: app/model/settings.php:863
2504
- msgid "Move calendar into this DOM element"
2505
- msgstr "Move calendar into this DOM element"
2506
-
2507
- #: app/model/settings.php:865
2508
- msgid ""
2509
- "Optional. Use this JavaScript-based shortcut to place the\n"
2510
- "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2511
- "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2512
- "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2513
- "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2514
- "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2515
- "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2516
- "\t\t\t\t\t\tby the calendar."
2517
- msgstr ""
2518
- "Optional. Use this JavaScript-based shortcut to place the\n"
2519
- "→\t→\t→\t→\t→\t→\tcalendar a DOM element other than the usual page content container\n"
2520
- "→\t→\t→\t→\t→\t→\tif you are unable to create an appropriate page template\n"
2521
- "→\t→\t→\t→\t→\t→\t for the calendar page. To use, enter a\n"
2522
- "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2523
- "→\t→\t→\t→\t→\t→\tjQuery selector</a> that evaluates to a single DOM element.\n"
2524
- "→\t→\t→\t→\t→\t→\tAny existing markup found within the target will be replaced\n"
2525
- "→\t→\t→\t→\t→\t→\tby the calendar."
2526
-
2527
- #: app/model/settings.php:884
2528
- msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2529
- msgstr "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2530
-
2531
- #: app/model/settings.php:887
2532
- msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2533
- msgstr "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2534
-
2535
- #: app/model/settings.php:899
2536
- msgid "Disable <strong>gzip</strong> compression."
2537
- msgstr "Disable <strong>gzip</strong> compression."
2538
-
2539
- #: app/model/settings.php:902
2540
- msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2541
- msgstr "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2542
-
2543
- #: app/model/settings.php:914
2544
- msgid "Use frontend rendering."
2545
- msgstr ""
2546
-
2547
- #: app/model/settings.php:917
2548
- msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
- msgstr ""
2550
-
2551
- #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
- msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
- msgstr "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2554
-
2555
- #: app/model/settings.php:508
2556
- msgid "Default calendar start date (optional)"
2557
- msgstr "Default calendar start date (optional)"
2558
-
2559
- #: app/model/settings.php:519
2560
- msgid "Agenda pages show at most"
2561
- msgstr "Agenda pages show at most"
2562
-
2563
- #: app/model/settings.php:532
2564
- msgid "Week/Day view starts at"
2565
- msgstr "Week/Day view starts at"
2566
-
2567
- #: app/model/settings.php:545
2568
- msgid "Week/Day view ends at"
2569
- msgstr "Week/Day view ends at"
2570
-
2571
- #: app/model/settings.php:558
2572
- msgid "<strong>Word-wrap event stubs</strong> in Month view"
2573
- msgstr "<strong>Word-wrap event stubs</strong> in Month view"
2574
-
2575
- #: app/model/settings.php:561
2576
- msgid "Only applies to events that span a single day."
2577
- msgstr "Only applies to events that span a single day."
2578
-
2579
- #: app/model/settings.php:573
2580
- msgid ""
2581
- "In <span class=\"ai1ec-tooltip-toggle\"\n"
2582
- "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2583
- "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2584
- "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2585
- "\t\t\t\t\t\tfrom last day shown</strong>"
2586
- msgstr ""
2587
- "In <span class=\"ai1ec-tooltip-toggle\"\n"
2588
- "→\t→\t→\t→\t→\t→\tdata-original-title=\"These include Agenda view,\n"
2589
- "→\t→\t→\t→\t→\t→\tthe Upcoming Events widget, and some extended views.\">\n"
2590
- "→\t→\t→\t→\t→\t→\tAgenda-like views</span>, <strong>include all events\n"
2591
- "→\t→\t→\t→\t→\t→\tfrom last day shown</strong>"
2592
-
2593
- #: app/model/settings.php:589
2594
- msgid "Keep all events <strong>expanded</strong> in Agenda view"
2595
- msgstr "Keep all events <strong>expanded</strong> in Agenda view"
2596
-
2597
- #: app/model/settings.php:601
2598
- msgid "<strong>Show year</strong> in calendar date labels"
2599
- msgstr "<strong>Show year</strong> in calendar date labels"
2600
-
2601
- #: app/model/settings.php:613
2602
- msgid "<strong>Show location in event titles</strong> in calendar views"
2603
- msgstr "<strong>Show location in event titles</strong> in calendar views"
2604
-
2605
- #: app/model/settings.php:625
2606
- msgid "<strong>Exclude</strong> events from search results"
2607
- msgstr "<strong>Exclude</strong> events from search results"
2608
-
2609
- #: app/model/settings.php:637
2610
- msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2611
- msgstr "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2612
-
2613
- #: app/model/settings.php:649
2614
- msgid "Hide <strong>Get a Timely Calendar</strong> button"
2615
- msgstr ""
2616
-
2617
- #: app/model/settings.php:661
2618
- msgid " Hide <strong>Google Maps</strong> until clicked"
2619
- msgstr " Hide <strong>Google Maps</strong> until clicked"
2620
-
2621
- #: app/model/settings.php:673
2622
- msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2623
- msgstr " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2624
-
2625
- #: app/model/settings.php:676
2626
- msgid "Only applies to first visible calendar found on the page."
2627
- msgstr ""
2628
-
2629
- #: app/model/settings.php:688
2630
- msgid "Offset affixed filter bar vertically by"
2631
- msgstr "Offset affixed filter bar vertically by"
2632
-
2633
- #: app/model/settings.php:703
2634
- msgid "Wide screens only (&#8805; 1200px)"
2635
- msgstr "Wide screens only (&#8805; 1200px)"
2636
-
2637
- #: app/model/settings.php:718
2638
- msgid "Tablets only (< 980px)"
2639
- msgstr "Tablets only (< 980px)"
2640
-
2641
- #: app/model/settings.php:733
2642
- msgid "Phones only (< 768px)"
2643
- msgstr "Phones only (< 768px)"
2644
-
2645
- #: app/model/api.php:456
2646
- msgid "Not available"
2647
- msgstr ""
2648
-
2649
- #: app/model/api.php:659
2650
- msgid "%s.<br/>Detail: %s."
2651
- msgstr ""
2652
-
2653
- #: app/model/api.php:664
2654
- msgid "API URL: %s.<br/>Detail: %s - %s"
2655
- msgstr ""
2656
-
2657
- #: app/model/api.php:672
2658
- msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2659
- msgstr ""
2660
-
2661
- #: app/model/api.php:679
2662
- msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2663
- msgstr ""
2664
-
2665
- #: app/model/event/parent.php:186
2666
- msgid "Edit &#8220;%s&#8221;"
2667
- msgstr "Edit &#8220;%s&#8221;"
2668
-
2669
- #: app/model/event/parent.php:193
2670
- msgid "Base Event"
2671
- msgstr "Base Event"
2672
-
2673
- #: app/model/review.php:169
2674
- msgid "Feedback provided by user"
2675
- msgstr ""
2676
-
2677
- #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2678
- msgid "Name"
2679
- msgstr "Name"
2680
-
2681
- #: app/model/review.php:173
2682
- msgid "E-mail"
2683
- msgstr ""
2684
-
2685
- #: app/model/review.php:175
2686
- msgid "Site URL"
2687
- msgstr ""
2688
-
2689
- #: app/model/review.php:177
2690
- msgid "Message"
2691
- msgstr ""
2692
-
2693
- #: app/model/settings.php:401
2694
- #: lib/html/element/setting/calendar-page-selector.php:50
2695
- msgid "Calendar page"
2696
- msgstr "Calendar page"
2697
-
2698
- #: app/model/settings.php:411
2699
- msgid "Week starts on"
2700
- msgstr "Week starts on"
2701
-
2702
- #: app/model/settings.php:424
2703
- msgid "Available views"
2704
- msgstr "Available views"
2705
-
2706
- #: app/model/settings.php:432
2707
- msgid "Agenda"
2708
- msgid_plural "Agenda"
2709
- msgstr[0] "Agenda"
2710
- msgstr[1] ""
2711
-
2712
- #: app/model/settings.php:443
2713
- msgid "Day"
2714
- msgid_plural "Day"
2715
- msgstr[0] "Day"
2716
- msgstr[1] ""
2717
-
2718
- #: app/model/settings.php:454
2719
- msgid "Month"
2720
- msgid_plural "Month"
2721
- msgstr[0] "Month"
2722
- msgstr[1] ""
2723
-
2724
- #: app/model/settings.php:465
2725
- msgid "Week"
2726
- msgid_plural "Week"
2727
- msgstr[0] "Week"
2728
- msgstr[1] ""
2729
-
2730
- #: app/model/settings.php:479
2731
- msgid "Timezone"
2732
- msgstr "Timezone"
2733
-
2734
- #: app/model/settings.php:492
2735
- msgid "Preselected calendar filters"
2736
- msgstr "Preselected calendar filters"
2737
-
2738
- #: app/controller/javascript.php:509
2739
- msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2740
- msgstr ""
2741
-
2742
- #: app/controller/javascript.php:516
2743
- msgid "The end date can't be earlier than the start date."
2744
- msgstr ""
2745
-
2746
- #: app/controller/javascript.php:517
2747
- msgid "For week and day view, you must select an interval of at least 6 hours."
2748
- msgstr ""
2749
-
2750
- #: app/model/api.php:40
2751
- msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2752
- msgstr ""
2753
-
2754
- #: app/model/api.php:41
2755
- msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2756
- msgstr ""
2757
-
2758
- #: app/model/api.php:42
2759
- msgid "We were unable to Sign you Up for Time.ly Ticketing"
2760
- msgstr ""
2761
-
2762
- #: app/model/api.php:43
2763
- msgid "We were unable to Sign you In for Time.ly Ticketing"
2764
- msgstr ""
2765
-
2766
- #: app/model/api.php:44
2767
- msgid "We were unable to create the Event on Time.ly Ticketing"
2768
- msgstr ""
2769
-
2770
- #: app/model/api.php:45
2771
- msgid "We were unable to update the Event on Time.ly Ticketing"
2772
- msgstr ""
2773
-
2774
- #: app/model/api.php:46
2775
- msgid "The event has the option Tickets selected but any ticket was added."
2776
- msgstr ""
2777
-
2778
- #: app/model/api.php:47
2779
- msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2780
- msgstr ""
2781
-
2782
- #: app/model/api.php:48
2783
- msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2784
- msgstr ""
2785
-
2786
- #: app/model/api.php:49
2787
- msgid "Payment preferences were not saved."
2788
- msgstr ""
2789
-
2790
- #: app/model/api.php:50
2791
- msgid "Payment preferences were saved."
2792
- msgstr ""
2793
-
2794
- #: app/model/api.php:51
2795
- msgid "Event not found inside the database."
2796
- msgstr ""
2797
-
2798
- #: app/model/api.php:52
2799
- msgid "We were unable to get the Sales information from Time.ly Ticketing"
2800
- msgstr ""
2801
-
2802
- #: app/model/api.php:446
2803
- msgid "Past Event"
2804
- msgstr ""
2805
-
2806
- #: app/model/api.php:448
2807
- msgid "Event closed"
2808
- msgstr ""
2809
-
2810
- #: app/model/api.php:450
2811
- msgid "Not available yet"
2812
- msgstr ""
2813
-
2814
- #: app/model/api.php:452
2815
- msgid "Sale closed"
2816
- msgstr ""
2817
-
2818
- #: app/model/api.php:454
2819
- msgid "Sold out"
2820
- msgstr ""
2821
-
2822
- #: app/controller/javascript.php:484
2823
- msgid "Report"
2824
- msgstr ""
2825
-
2826
- #: app/controller/javascript.php:485
2827
- msgid "Sale dates"
2828
- msgstr ""
2829
-
2830
- #: app/controller/javascript.php:486
2831
- msgid "Limits"
2832
- msgstr ""
2833
-
2834
- #: app/controller/javascript.php:487
2835
- msgid "Actions"
2836
- msgstr ""
2837
-
2838
- #: app/controller/javascript.php:488
2839
- msgid "Sold:"
2840
- msgstr ""
2841
-
2842
- #: app/controller/javascript.php:489
2843
- msgid "Left:"
2844
- msgstr ""
2845
-
2846
- #: app/controller/javascript.php:490
2847
- msgid "Start:"
2848
- msgstr ""
2849
-
2850
- #: app/controller/javascript.php:491
2851
- msgid "End:"
2852
- msgstr ""
2853
-
2854
- #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2855
- msgid "Min:"
2856
- msgstr ""
2857
-
2858
- #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2859
- msgid "Max:"
2860
- msgstr ""
2861
-
2862
- #: app/controller/javascript.php:494
2863
- msgid "Attendees"
2864
- msgstr ""
2865
-
2866
- #: app/controller/javascript.php:495
2867
- msgid "Hide Attendees"
2868
- msgstr ""
2869
-
2870
- #: app/controller/javascript.php:496
2871
- msgid "Attendees List"
2872
- msgstr ""
2873
-
2874
- #: app/controller/javascript.php:497
2875
- msgid "Guest Name"
2876
- msgstr ""
2877
-
2878
- #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2879
- msgid "Status"
2880
- msgstr ""
2881
-
2882
- #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2883
- #: app/view/event/ticket.php:71
2884
- msgid "Email"
2885
- msgstr "Email"
2886
-
2887
- #: app/controller/javascript.php:500
2888
- msgid "No attendees for this ticket type."
2889
- msgstr ""
2890
-
2891
- #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2892
- #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2893
- msgid "Edit"
2894
- msgstr "Edit"
2895
-
2896
- #: app/controller/javascript.php:502
2897
- msgid "Code"
2898
- msgstr ""
2899
-
2900
- #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2901
- msgid "Unlimited"
2902
- msgstr ""
2903
-
2904
- #: app/controller/javascript.php:506
2905
- msgid "Your message has been sent. Thank you for your feedback."
2906
- msgstr ""
2907
-
2908
- #: app/controller/javascript.php:507
2909
- msgid "Your message has not been sent. Please try again or contact us."
2910
- msgstr ""
2911
-
2912
- #: app/controller/javascript.php:405
2913
- msgid "Please enter a valid iCalendar URL."
2914
- msgstr "Please enter a valid iCalendar URL."
2915
-
2916
- #: app/controller/javascript.php:408
2917
- msgid "Please enter a valid email address."
2918
- msgstr "Please enter a valid email address."
2919
-
2920
- #: app/controller/javascript.php:410
2921
- msgid "Choose Image"
2922
- msgstr "Choose Image"
2923
-
2924
- #: app/controller/javascript.php:413
2925
- msgid "The value you have entered is not a valid CSS length."
2926
- msgstr "The value you have entered is not a valid CSS length."
2927
-
2928
- #: app/controller/javascript.php:416
2929
- msgid "Are you sure you want to reset your theme options to their default values?"
2930
- msgstr "Are you sure you want to reset your theme options to their default values?"
2931
-
2932
- #: app/controller/javascript.php:419
2933
- msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2934
- msgstr "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2935
-
2936
- #: app/controller/javascript.php:422
2937
- msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2938
- msgstr "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2939
-
2940
- #: app/controller/javascript.php:425
2941
- msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2942
- msgstr "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2943
-
2944
- #: app/controller/javascript.php:428
2945
- msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2946
- msgstr "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2947
-
2948
- #: app/controller/javascript.php:431
2949
- msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2950
- msgstr ""
2951
-
2952
- #: app/controller/javascript.php:434
2953
- msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2954
- msgstr "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2955
-
2956
- #: app/controller/javascript.php:437
2957
- msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2958
- msgstr "Please remember that URLs must start with either \"http://\" or \"https://\"."
2959
-
2960
- #: app/controller/javascript.php:440
2961
- msgid "Loading&hellip;"
2962
- msgstr ""
2963
-
2964
- #: app/controller/javascript.php:443
2965
- msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2966
- msgstr ""
2967
-
2968
- #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
- msgid "Preview:"
2970
- msgstr ""
2971
-
2972
- #: app/controller/javascript.php:474
2973
- msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2974
- msgstr ""
2975
-
2976
- #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2977
- msgid "Ticketing Details"
2978
- msgstr ""
2979
-
2980
- #: app/controller/javascript.php:480
2981
- msgid "Hide Ticketing Details"
2982
- msgstr ""
2983
-
2984
- #: app/controller/javascript.php:481
2985
- msgid "Loading tickets details..."
2986
- msgstr ""
2987
-
2988
- #: app/controller/javascript.php:482
2989
- msgid "Type and price"
2990
- msgstr ""
2991
-
2992
- #: app/controller/javascript.php:483
2993
- msgid "Info"
2994
- msgstr ""
2995
-
2996
- #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2997
- #: app/view/admin/add-ons.php:27
2998
- msgid "Add-ons"
2999
- msgstr "Add-ons"
3000
-
3001
- #: app/controller/front.php:343
3002
- msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3003
- msgstr "Your active calendar theme could not be properly initialised. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3004
-
3005
- #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3006
- #: app/view/admin/theme-switching.php:55
3007
- msgid "Calendar Themes"
3008
- msgstr "Calendar Themes"
3009
-
3010
- #: app/controller/front.php:990
3011
- msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3012
- msgstr "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3013
-
3014
- #: app/controller/javascript-widget.php:48
3015
- msgid "You must choose the Calendar page before using the Super Widget"
3016
- msgstr ""
3017
-
3018
- #: app/controller/javascript.php:402
3019
- msgid "This feed is already being imported."
3020
- msgstr "This feed is already being imported."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/all-in-one-event-calendar-es.mo DELETED
Binary file
language/all-in-one-event-calendar-es.po DELETED
@@ -1,3020 +0,0 @@
1
- # Translation of 2.3 in Spanish (Spain)
2
- # This file is distributed under the same license as the 2.3 package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:43:00+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-alpha-1000\n"
11
- "Project-Id-Version: 2.3\n"
12
-
13
- #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
- #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
- msgid "Event background"
16
- msgstr "Fondo de evento"
17
-
18
- #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
- #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
- msgid "Event time background"
21
- msgstr "Fondo de tiempo del evento"
22
-
23
- #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
- #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
- msgid "Event text"
26
- msgstr "Texto de evento"
27
-
28
- #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
- #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
- msgid "Month view date background"
31
- msgstr "Fondo de fecha de vista de mes"
32
-
33
- #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
- #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
- msgid "Week/day view now marker"
36
- msgstr "Marcador ver ahora de la semana/día"
37
-
38
- #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
- #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
- msgid "Date label accent color"
41
- msgstr "Color de acento de etiqueta de fecha"
42
-
43
- #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
- #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
- msgid "Date label background"
46
- msgstr "Fondo de etiqueta de fecha"
47
-
48
- #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
- #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
- msgid "Date background"
51
- msgstr "Fondo de fecha"
52
-
53
- #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
- #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
- msgid "Today background"
56
- msgstr "Fondo hoy"
57
-
58
- #. Plugin Name of the plugin/theme
59
- msgid "All-in-One Event Calendar by Time.ly"
60
- msgstr "Calendario de eventos All-in-One por Time.ly"
61
-
62
- #. Description of the plugin/theme
63
- msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
- msgstr "Un sistema de calendario con vistas de mes, semana, día, agenda, widget de eventos próximos, categorías codificadas por colores, recurrencias e importar/exportar canales de notificaciones \".ics\"."
65
-
66
- #. Author of the plugin/theme
67
- msgid "Time.ly Network Inc."
68
- msgstr "Time.ly Network Inc."
69
-
70
- #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
- #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
- msgid "List item background (active/hover)"
73
- msgstr "Fondo de artículo de lista (activo/hover)"
74
-
75
- #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
- #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
- msgid "Input field placeholder text"
78
- msgstr "Texto provisional de campo de entrada"
79
-
80
- #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
- #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
- msgid "Today color"
83
- msgstr "Color de hoy"
84
-
85
- #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
- #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
- msgid "All-day badge color"
88
- msgstr "Color de insigna de día completo"
89
-
90
- #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
- #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
- msgid "Event image shadow"
93
- msgstr "Sombra de la imagen del evento"
94
-
95
- #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
- #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
- msgid "Event default color"
98
- msgstr "Color de evento por defecto"
99
-
100
- #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
- #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
- msgid "Event default color (hover)"
103
- msgstr "Color de evento por defecto (hover)"
104
-
105
- #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
- #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
- msgid "All-day/multi-day event stub text"
108
- msgstr "Texto corto de evento día completo/día múltiple"
109
-
110
- #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
- #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
- msgid "All-day/multi-day event stub text shadow"
113
- msgstr "Sombra del texto corto de evento día completo/día múltiple"
114
-
115
- #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
- #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
- msgid "Event border"
118
- msgstr "Contorno de evento"
119
-
120
- #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
- #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
- msgid "Button text"
123
- msgstr "Texto de botón"
124
-
125
- #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
- #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
- msgid "Input field text"
128
- msgstr "Texto de campo de entrada"
129
-
130
- #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
- #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
- msgid "Input field background"
133
- msgstr "Fondo de campo de entrada"
134
-
135
- #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
- #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
- msgid "Input field border"
138
- msgstr "Contorno de campo de entrada"
139
-
140
- #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
- #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
- msgid "Input field border (focus)"
143
- msgstr "Contorno de campo de entrada (enfocado)"
144
-
145
- #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
- #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
- msgid "Input field background (disabled)"
148
- msgstr "Fondo de campo de entrada (deshabilitado)"
149
-
150
- #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
- #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
- msgid "Field label"
153
- msgstr "Etiqueta de campo"
154
-
155
- #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
- #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
- msgid "Dropdown list background"
158
- msgstr "Fondo de lista desplegable"
159
-
160
- #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
- #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
- msgid "Dropdown list border"
163
- msgstr "Contorno de lista desplegable"
164
-
165
- #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
- #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
- msgid "List item text"
168
- msgstr "Texto de artículo de lista"
169
-
170
- #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
- #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
- msgid "List item text (active/hover)"
173
- msgstr "Texto de artículo de lista (activo/hover)"
174
-
175
- #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
- msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
- msgstr "Nuevo tema activado. <a href=\"%s\">Visitar sitio</a>"
178
-
179
- #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
- msgid "Theme deleted."
181
- msgstr "Tema borrado"
182
-
183
- #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
- msgid "Manage Themes"
185
- msgstr "Administrar Temas"
186
-
187
- #: public/admin/themes-install.php:40
188
- msgctxt "theme"
189
- msgid "Install Themes"
190
- msgstr "Instalar Themas de Calendario"
191
-
192
- #: public/admin/themes-updated.php:5
193
- msgid "Update Calendar Themes"
194
- msgstr "Actualizar los temas de Calendario"
195
-
196
- #: public/admin/themes-updated.php:15
197
- msgid "All-in-One Event Calendar Settings »"
198
- msgstr "Ajuses de All-in-One Event Calendar:"
199
-
200
- #: public/admin/themes.php:18
201
- msgid "Current Calendar Theme"
202
- msgstr "Tema de calendario actual"
203
-
204
- #: public/admin/themes.php:21
205
- msgid "Current theme preview"
206
- msgstr "Vista previa del Tema Actual"
207
-
208
- #: public/admin/themes.php:47
209
- msgid "Available Calendar Themes"
210
- msgstr "Temas de calendario disponibles"
211
-
212
- #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
- #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
- msgid "Body background"
215
- msgstr "Fondo de cuerpo"
216
-
217
- #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
- #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
- msgid "Text color"
220
- msgstr "Color de texto"
221
-
222
- #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
- #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
- msgid "Text emboss"
225
- msgstr "Relieve de texto"
226
-
227
- #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
- #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
- msgid "Link"
230
- msgstr "Liga"
231
-
232
- #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
- #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
- msgid "Link (hover)"
235
- msgstr "Liga (hover)"
236
-
237
- #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
- #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
- msgid "Base font"
240
- msgstr "Tipografía base"
241
-
242
- #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
- #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
- msgid "Base font size"
245
- msgstr "Tamaño de tipografía base"
246
-
247
- #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
- #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
- msgid "Table background"
250
- msgstr "Fondo de tabla"
251
-
252
- #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
- #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
- msgid "Table header background"
255
- msgstr "Fondo de cabecera de tabla"
256
-
257
- #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
- #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
- msgid "Table header text"
260
- msgstr "Texto de cabecera de tabla"
261
-
262
- #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
- #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
- msgid "Primary brand color"
265
- msgstr "Color de marca principal"
266
-
267
- #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
- #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
- msgid "Button background"
270
- msgstr "Fondo de botón"
271
-
272
- #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
- #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
- msgid "Button border"
275
- msgstr "Contorno de botón"
276
-
277
- #: public/admin/feed_row.php:104
278
- msgid "Refreshing&#8230;"
279
- msgstr "Actualizando&#8230;"
280
-
281
- #: public/admin/feed_row.php:106
282
- msgid "Refresh"
283
- msgstr "Actualizar"
284
-
285
- #: public/admin/feed_row.php:119
286
- msgid "Removing&#8230;"
287
- msgstr "Borrando&#8230;"
288
-
289
- #: public/admin/feed_row.php:121
290
- msgid "Remove"
291
- msgstr "Eliminar"
292
-
293
- #: public/admin/import.php:6
294
- msgid "Successfully imported events:"
295
- msgstr "Eventos importados correctamente:"
296
-
297
- #: public/admin/plugins/ics/display_feeds.php:2
298
- msgid ""
299
- "Configure which other calendars your own calendar subscribes to.\n"
300
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
- " Enter the feed URL(s) below and the events from those feeds will be\n"
302
- " imported periodically."
303
- msgstr ""
304
- "Configura a qué otros calendarios subscribirte.\n"
305
- " Puedes añadir cualquier calendario que cuente con una fuente iCalendar (.ics) .\n"
306
- " Introduce la URL de la fuente URL(s) a continuación y los eventos que se \n"
307
- " importarán periódicamente."
308
-
309
- #: public/admin/plugins/ics/display_feeds.php:14
310
- msgid "Check for new events"
311
- msgstr "Buscar nuevos eventos"
312
-
313
- #: public/admin/plugins/ics/display_feeds.php:45
314
- msgid "Allow comments on imported events"
315
- msgstr "Permitir comentarios en eventos importados"
316
-
317
- #: public/admin/plugins/ics/display_feeds.php:52
318
- msgid "Show map on imported events"
319
- msgstr "Mostrar mapa en eventos importados"
320
-
321
- #: public/admin/plugins/ics/display_feeds.php:59
322
- msgid "Import any tags/categories provided by feed, in addition those selected above"
323
- msgstr "Importar cualquier etiquetas/categorías proporcionadas por la fuente además de las que se seleccionaron más arriba"
324
-
325
- #: public/admin/plugins/ics/display_feeds.php:93
326
- msgid "Add new subscription"
327
- msgstr "Agregar suscripción nueva"
328
-
329
- #: public/admin/plugins/ics/display_feeds.php:96
330
- msgid "Update subscription"
331
- msgstr ""
332
-
333
- #: public/admin/row_custom.php:3
334
- msgid "Custom dates:"
335
- msgstr ""
336
-
337
- #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
- #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
- #: public/admin/row_yearly.php:3
340
- msgid "Every"
341
- msgstr "Cada"
342
-
343
- #: public/admin/row_monthly.php:16
344
- msgid "On day of the month"
345
- msgstr "On día del mes"
346
-
347
- #: public/admin/row_monthly.php:23
348
- msgid "On day of the week"
349
- msgstr "Un día de la semana"
350
-
351
- #: public/admin/row_weekly.php:12
352
- msgctxt "Recurrence editor - weekly tab"
353
- msgid "On"
354
- msgstr "El"
355
-
356
- #: public/admin/row_yearly.php:12
357
- msgctxt "Recurrence editor - yearly tab"
358
- msgid "In"
359
- msgstr "En"
360
-
361
- #: public/admin/settings.php:19
362
- msgid "Update Settings"
363
- msgstr "Actualizar eventos"
364
-
365
- #: public/admin/themes-install.php:4
366
- msgid "The active theme is broken. Reverting to the default theme."
367
- msgstr "El tema activo tien un problema. Volviendo al tema por defecto."
368
-
369
- #: public/admin/themes-install.php:13
370
- msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
- msgstr ""
372
-
373
- #: public/admin/calendar_tasks.php:24
374
- msgid "Manage Events"
375
- msgstr "Administrar Eventos"
376
-
377
- #: public/admin/calendar_tasks.php:27
378
- msgid "View and edit all your events."
379
- msgstr "Ver y editar todos tus eventos"
380
-
381
- #: public/admin/calendar_tasks.php:39
382
- msgid "Manage Event Categories"
383
- msgstr "Administrar Categorías de Eventos"
384
-
385
- #: public/admin/calendar_tasks.php:42
386
- msgid "Organize and color-code your events."
387
- msgstr "Organiza y colorea tus eventos"
388
-
389
- #: public/admin/calendar_tasks.php:50
390
- msgid "Choose Your Theme"
391
- msgstr "Elige tu tema"
392
-
393
- #: public/admin/calendar_tasks.php:53
394
- msgid "Change the look and feel."
395
- msgstr "Cambia la fuente y aspecto"
396
-
397
- #: public/admin/calendar_tasks.php:63
398
- msgid "Manage Calendar Feeds"
399
- msgstr "Administra las Fuentes de Calendario"
400
-
401
- #: public/admin/calendar_tasks.php:66
402
- msgid "Subscribe to other calendars."
403
- msgstr "Suscribirse a otros calendarios"
404
-
405
- #: public/admin/calendar_tasks.php:74
406
- msgid "Edit Calendar Settings"
407
- msgstr "Editar Ajustres del Calendario"
408
-
409
- #: public/admin/calendar_tasks.php:77
410
- msgid "Make this calendar your own."
411
- msgstr "Haz este calendario tuyo."
412
-
413
- #: public/admin/cron_freq.php:3
414
- msgid "Hourly"
415
- msgstr "Cada hora"
416
-
417
- #: public/admin/cron_freq.php:6
418
- msgid "Twice Daily"
419
- msgstr "Dos veces al día"
420
-
421
- #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
- msgid "iCalendar/.ics Feed URL:"
423
- msgstr "URL de iCalendar/.ics:"
424
-
425
- #: public/admin/feed_row.php:24
426
- msgid "Event categories:"
427
- msgstr "Categorías de evento:"
428
-
429
- #: public/admin/feed_row.php:31
430
- msgid "Tag with"
431
- msgstr "Etiquetar con"
432
-
433
- #: public/admin/feed_row.php:40
434
- msgid "Allow comments"
435
- msgstr "Permitir comentarios"
436
-
437
- #: public/admin/feed_row.php:51
438
- msgid "Show map"
439
- msgstr "Mostrar mapa"
440
-
441
- #: public/admin/feed_row.php:63
442
- msgid "Keep original events categories and tags"
443
- msgstr "Mantener categorías y etiquetas originales de eventos"
444
-
445
- #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
- msgid "On refresh, preserve previously imported events that are missing from the feed"
447
- msgstr ""
448
-
449
- #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
- msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
- msgstr ""
452
-
453
- #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
- msgid "Assign default time zone to events in UTC"
455
- msgstr ""
456
-
457
- #: public/admin/box_support.php:19
458
- msgid "Get Add-ons"
459
- msgstr "Conseguir complementos"
460
-
461
- #: public/admin/box_support.php:27
462
- msgid "Support"
463
- msgstr "Soporte"
464
-
465
- #: public/admin/box_support.php:35
466
- msgid "Timely Events"
467
- msgstr "Eventos Timely"
468
-
469
- #: public/admin/box_support.php:43
470
- msgid "Timely News"
471
- msgstr "Noticias de Timely"
472
-
473
- #: public/admin/box_support.php:47
474
- msgid "view all news"
475
- msgstr "ver todas las noticias"
476
-
477
- #: public/admin/box_support.php:95
478
- msgid "Follow @_Timely"
479
- msgstr "Sigue @_Timely"
480
-
481
- #: public/admin/box_time_and_date.php:6
482
- msgid "Event date and time"
483
- msgstr "Fecha y hora del evento"
484
-
485
- #: public/admin/box_time_and_date.php:26
486
- msgid "All-day event"
487
- msgstr "Evento de todo el día"
488
-
489
- #: public/admin/box_time_and_date.php:35
490
- msgid "No end time"
491
- msgstr "Sin hora de término"
492
-
493
- #: public/admin/box_time_and_date.php:42
494
- msgid "Start date / time"
495
- msgstr "Fecha / hora de inicio"
496
-
497
- #: public/admin/box_time_and_date.php:59
498
- msgid "End date / time"
499
- msgstr "Fecha / hora de fin"
500
-
501
- #: public/admin/box_time_and_date.php:76
502
- msgid "Time zone"
503
- msgstr "Zona horaria"
504
-
505
- #: public/admin/box_time_and_date.php:81
506
- msgid "Choose your time zone"
507
- msgstr "Elija su zona horaria"
508
-
509
- #: public/admin/box_time_and_date.php:108
510
- msgid "Repeat"
511
- msgstr "Repetir"
512
-
513
- #: public/admin/box_time_and_date.php:127
514
- msgid "Exclude"
515
- msgstr "Excluir"
516
-
517
- #: public/admin/box_time_and_date.php:136
518
- msgid "Choose a rule for exclusion"
519
- msgstr "Elige una regla para la exclusión"
520
-
521
- #: public/admin/calendar_tasks.php:3
522
- msgid "Welcome"
523
- msgstr "Bienvenido"
524
-
525
- #: public/admin/calendar_tasks.php:4
526
- msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
- msgstr "Al Calendario All-in-One Event por <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
-
529
- #: public/admin/calendar_tasks.php:13
530
- msgid "Post Your Event"
531
- msgstr "+ Publicar un evento"
532
-
533
- #: public/admin/calendar_tasks.php:16
534
- msgid "Add a new event to the calendar."
535
- msgstr "Añade un nuevo evento al calendario."
536
-
537
- #: public/admin/box_eventbrite.php:60
538
- msgid "Donation Based"
539
- msgstr "Basado en donaciones"
540
-
541
- #: public/admin/box_eventbrite.php:68
542
- msgid "The price for this event's first ticket will be taken from the Cost field above."
543
- msgstr "El precio para el primer ticket de este evento se tomará del campo Precio de más arriba."
544
-
545
- #: public/admin/box_eventbrite.php:75
546
- msgid "Quantity"
547
- msgstr "Cantidad"
548
-
549
- #: public/admin/box_eventbrite.php:85
550
- msgid "Include Fee in Price"
551
- msgstr "Incluir comisión en precio"
552
-
553
- #: public/admin/box_eventbrite.php:90
554
- msgid "Add Service Fee on top of price"
555
- msgstr "Añadir coste del servicio al precio"
556
-
557
- #: public/admin/box_eventbrite.php:92
558
- msgid "Include Service fee in price"
559
- msgstr "Incluir coste del servicio en el precio"
560
-
561
- #: public/admin/box_eventbrite.php:98
562
- msgid "Payment Options"
563
- msgstr "Opciones de pago"
564
-
565
- #: public/admin/box_eventbrite.php:105
566
- msgid "Google Checkout"
567
- msgstr "Google Checkout"
568
-
569
- #: public/admin/box_eventbrite.php:107
570
- msgid "Check"
571
- msgstr "Cheque"
572
-
573
- #: public/admin/box_eventbrite.php:109
574
- msgid "Cash"
575
- msgstr "Efectivo"
576
-
577
- #: public/admin/box_eventbrite.php:111
578
- msgid "Send an Invoice"
579
- msgstr "Enviar una factura"
580
-
581
- #: public/admin/box_profile_timezone.php:9
582
- msgid "Your preferred timezone"
583
- msgstr "Tu zona horaria preferida"
584
-
585
- #: public/admin/box_repeat.php:5
586
- msgid "Select recurrence pattern:"
587
- msgstr "Selecciona patrón de recurrencia:"
588
-
589
- #: public/admin/box_repeat.php:36
590
- msgid "Custom"
591
- msgstr ""
592
-
593
- #: public/admin/box_repeat.php:72
594
- msgid "End"
595
- msgstr "Fin"
596
-
597
- #: public/admin/box_repeat.php:82
598
- msgid "Ending after"
599
- msgstr "Termina tras"
600
-
601
- #: public/admin/box_repeat.php:109
602
- #: public/admin/plugins/ics/display_feeds.php:90
603
- msgid "Please wait&#8230;"
604
- msgstr "Por favor, espera&#8230;"
605
-
606
- #: public/admin/box_repeat.php:111
607
- msgid "Apply"
608
- msgstr "Aplicar"
609
-
610
- #: public/admin/box_repeat.php:116
611
- #: public/admin/plugins/ics/display_feeds.php:84
612
- msgid "Cancel"
613
- msgstr "Cancelar"
614
-
615
- #: public/admin/box_support.php:4
616
- msgid "Timely"
617
- msgstr "http://time.ly/"
618
-
619
- #: public/admin/box_support.php:11
620
- msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
- msgstr "El calendario de eventos All-in-One de Timely es una<br />nueva y revolucionaria manera de encontrar y compartir eventos."
622
-
623
- #: public/admin/box_event_cost.php:228
624
- msgid "Status:"
625
- msgstr ""
626
-
627
- #: public/admin/box_event_cost.php:235
628
- msgid "Open"
629
- msgstr ""
630
-
631
- #: public/admin/box_event_cost.php:239
632
- msgid "Closed"
633
- msgstr ""
634
-
635
- #: public/admin/box_event_cost.php:254
636
- msgid "Add New Ticket Type"
637
- msgstr ""
638
-
639
- #: public/admin/box_event_cost.php:274
640
- msgid "Tickets URL:"
641
- msgstr ""
642
-
643
- #: public/admin/box_event_location.php:6
644
- msgid "Event location details"
645
- msgstr "Datos del lugar del evento"
646
-
647
- #: public/admin/box_event_location.php:19
648
- msgid "Venue name:"
649
- msgstr "Nombre del sitio:"
650
-
651
- #: public/admin/box_event_location.php:31
652
- msgid "Address:"
653
- msgstr "Dirección:"
654
-
655
- #: public/admin/box_event_location.php:45
656
- msgid "Input Coordinates"
657
- msgstr "Introducir coordenadas:"
658
-
659
- #: public/admin/box_event_location.php:57
660
- msgid "Latitude:"
661
- msgstr "Latitud:"
662
-
663
- #: public/admin/box_event_location.php:69
664
- msgid "Longitude:"
665
- msgstr "Longuitud:"
666
-
667
- #: public/admin/box_event_location.php:85
668
- msgid "Show Map"
669
- msgstr ""
670
-
671
- #: public/admin/box_eventbrite.php:1
672
- msgid "Eventbrite Ticketing"
673
- msgstr "Tickets con Eventbrite"
674
-
675
- #: public/admin/box_eventbrite.php:7
676
- msgid "Register this event with Eventbrite.com?"
677
- msgstr "¿Registrar este evento en Eventbrite.com?"
678
-
679
- #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
- #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
- #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
- msgid "Yes"
683
- msgstr "Sí"
684
-
685
- #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
- #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
- #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
- msgid "No"
689
- msgstr "No"
690
-
691
- #: public/admin/box_eventbrite.php:22
692
- msgid "Set up your first ticket"
693
- msgstr "Configura el primer ticket"
694
-
695
- #: public/admin/box_eventbrite.php:24
696
- msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
- msgstr "Para crear varios tickets por evento, envía este formulario y sigue el enlace a Eventbrite."
698
-
699
- #: public/admin/box_eventbrite.php:42
700
- msgid "Description"
701
- msgstr "Descripción"
702
-
703
- #: public/admin/box_eventbrite.php:53
704
- msgid "Type"
705
- msgstr "Tipo"
706
-
707
- #: public/admin/box_eventbrite.php:58
708
- msgid "Set Price"
709
- msgstr "Fijar precio"
710
-
711
- #: public/admin/box_event_contact.php:30
712
- msgid "Phone:"
713
- msgstr "Teléfono:"
714
-
715
- #: public/admin/box_event_contact.php:56
716
- msgid "Website URL:"
717
- msgstr ""
718
-
719
- #: public/admin/box_event_cost.php:6
720
- msgid "Event cost and Tickets"
721
- msgstr "Costo de evento y Boletos"
722
-
723
- #: public/admin/box_event_cost.php:20
724
- msgid "Ticket options not available - event imported from external calendar."
725
- msgstr ""
726
-
727
- #: public/admin/box_event_cost.php:28
728
- msgid "Free event"
729
- msgstr "Evento gratuito"
730
-
731
- #: public/admin/box_event_cost.php:41
732
- msgid "External Tickets URL"
733
- msgstr ""
734
-
735
- #: public/admin/box_event_cost.php:52
736
- msgid "Ticketing allows you to sell tickets directly to the users."
737
- msgstr ""
738
-
739
- #: public/admin/box_event_cost.php:55
740
- msgid "Sign Up for Timely Network"
741
- msgstr ""
742
-
743
- #: public/admin/box_event_cost.php:80
744
- msgid "Remove Ticket Type"
745
- msgstr ""
746
-
747
- #: public/admin/box_event_cost.php:101
748
- msgid "Ex.: Regular Ticket"
749
- msgstr ""
750
-
751
- #: public/admin/box_event_cost.php:105
752
- msgid "Description:"
753
- msgstr ""
754
-
755
- #: public/admin/box_event_cost.php:111
756
- msgid "(Optional)"
757
- msgstr ""
758
-
759
- #: public/admin/box_event_cost.php:115
760
- msgid "Price:"
761
- msgstr ""
762
-
763
- #: public/admin/box_event_cost.php:124
764
- msgid "USD"
765
- msgstr ""
766
-
767
- #: public/admin/box_event_cost.php:128
768
- msgid "Limits:"
769
- msgstr ""
770
-
771
- #: public/admin/box_event_cost.php:131
772
- msgid "This fields are required."
773
- msgstr ""
774
-
775
- #: public/admin/box_event_cost.php:156
776
- msgid "Quantity:"
777
- msgstr ""
778
-
779
- #: public/admin/box_event_cost.php:180
780
- msgid "Available:"
781
- msgstr ""
782
-
783
- #: public/admin/box_event_cost.php:185
784
- msgid "Immediately"
785
- msgstr ""
786
-
787
- #: public/admin/box_event_cost.php:190
788
- msgid "From:"
789
- msgstr ""
790
-
791
- #: public/admin/box_event_cost.php:207
792
- msgid "Till:"
793
- msgstr ""
794
-
795
- #: public/admin/box_ask_customer_review.php:42
796
- #: public/admin/box_ask_customer_review.php:75
797
- msgid "No, thanks"
798
- msgstr ""
799
-
800
- #: public/admin/box_ask_customer_review.php:50
801
- #: public/admin/box_ask_customer_review.php:84
802
- msgid "Ok, sure!"
803
- msgstr ""
804
-
805
- #: public/admin/box_ask_customer_review.php:66
806
- msgid "Would you mind giving us some feedback?"
807
- msgstr ""
808
-
809
- #: public/admin/box_ask_customer_review.php:101
810
- msgid "Please provide some feedback"
811
- msgstr ""
812
-
813
- #: public/admin/box_ask_customer_review.php:108
814
- msgid "Message:"
815
- msgstr ""
816
-
817
- #: public/admin/box_ask_customer_review.php:121
818
- msgid "Name:"
819
- msgstr ""
820
-
821
- #: public/admin/box_ask_customer_review.php:136
822
- #: public/admin/box_event_contact.php:43
823
- msgid "E-mail:"
824
- msgstr "E-mail:"
825
-
826
- #: public/admin/box_ask_customer_review.php:143
827
- msgid "E-mail is invalid."
828
- msgstr ""
829
-
830
- #: public/admin/box_ask_customer_review.php:154
831
- msgid "Site URL:"
832
- msgstr ""
833
-
834
- #: public/admin/box_ask_customer_review.php:161
835
- msgid "Site URL is invalid."
836
- msgstr ""
837
-
838
- #: public/admin/box_ask_customer_review.php:173
839
- msgid "Thank you for being our customer,"
840
- msgstr ""
841
-
842
- #: public/admin/box_ask_customer_review.php:174
843
- msgid "Aristotel Dascal, VP of Product, Time.ly"
844
- msgstr ""
845
-
846
- #: public/admin/box_ask_customer_review.php:180
847
- msgid "Sending..."
848
- msgstr ""
849
-
850
- #: public/admin/box_ask_customer_review.php:181
851
- msgid "Send Message"
852
- msgstr ""
853
-
854
- #: public/admin/box_event_children.php:12
855
- msgid "Base recurrence event"
856
- msgstr "Evento recurrente base"
857
-
858
- #: public/admin/box_event_children.php:14
859
- msgid "Modified recurrence events"
860
- msgstr "Eventos de recurrencia modificados"
861
-
862
- #: public/admin/box_event_children.php:22
863
- msgid "Edit parent:"
864
- msgstr "Editar elemento raíz:"
865
-
866
- #: public/admin/box_event_children.php:27
867
- msgid "Modified Events"
868
- msgstr "Eventos modificados"
869
-
870
- #: public/admin/box_event_children.php:31
871
- msgid "Edit:"
872
- msgstr "Editar:"
873
-
874
- #: public/admin/box_event_contact.php:6
875
- msgid "Organizer contact info"
876
- msgstr "Datos de contacto del organizador"
877
-
878
- #: public/admin/box_event_contact.php:17
879
- msgid "Contact name:"
880
- msgstr "Nombre:"
881
-
882
- #: lib/theme/loader.php:325
883
- msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
- msgstr "No se pudo encontrar un cargador adecuado para el archivo con la extensión '%s'"
885
-
886
- #: lib/theme/loader.php:631
887
- msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
- msgstr ""
889
-
890
- #: lib/theme/search.php:253
891
- msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
- msgstr "No se pudo mover sus antiguos temas desde <code>wp-content/themes-ai1ec</code> a <code>wp-content/themes-ai1ec-obsolete</code> porque su carpeta <code>wp-content</code> no permite escritura. Por favor mueva o elimine manualmente sus antiguos temas de <code>wp-content/themes-ai1ec</code>."
893
-
894
- #: lib/theme/search.php:264
895
- msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
- msgstr "No se pudo mover sus antiguos temas desde <code>wp-content/themes-ai1ec/%s</code> a <code>wp-content/themes-ai1ec-obsolete/%s</code>. Por favor mueva o elimine manualmente sus antiguos temas de <code>wp-content/themes-ai1ec/%s</code>."
897
-
898
- #: lib/twig/environment.php:115
899
- msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
- msgstr ""
901
-
902
- #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
- msgid "Title:"
904
- msgstr "Título:"
905
-
906
- #: public/admin/agenda-widget-form.php:12
907
- msgid "Number of events to show:"
908
- msgstr "Número de eventos a mostrar:"
909
-
910
- #: public/admin/agenda-widget-form.php:21
911
- msgid "Number of days to show:"
912
- msgstr "Número de días a mostrar:"
913
-
914
- #: public/admin/agenda-widget-form.php:26
915
- msgid "Limit to:"
916
- msgstr "Limitar a:"
917
-
918
- #: public/admin/agenda-widget-form.php:30
919
- msgid "Events with these <strong>Categories</strong>"
920
- msgstr "Eventos con estras <strong>Categorías</strong>"
921
-
922
- #: public/admin/agenda-widget-form.php:39
923
- msgid "No categories found."
924
- msgstr "No se encuentran categorías."
925
-
926
- #: public/admin/agenda-widget-form.php:46
927
- msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
- msgstr "<strong>O</strong> eventos con estas <strong>Etiquetas</strong>"
929
-
930
- #: public/admin/agenda-widget-form.php:55
931
- msgid "No tags found."
932
- msgstr "No se encuentran etiquetas."
933
-
934
- #: public/admin/agenda-widget-form.php:62
935
- msgid "Show <strong>View Calendar</strong> button"
936
- msgstr "Mostrar botón <strong>Ver calendario</strong>"
937
-
938
- #: public/admin/agenda-widget-form.php:65
939
- msgid "Show <strong>Subscribe</strong> buttons"
940
- msgstr "Mostrar botones <strong>Suscribir</strong>"
941
-
942
- #: public/admin/agenda-widget-form.php:68
943
- msgid "Hide this widget on calendar page"
944
- msgstr "Ocultar este widget en la página del calendario"
945
-
946
- #: public/admin/box_ask_customer_review.php:5
947
- msgid "Enjoying All-in-One Event Calendar?"
948
- msgstr ""
949
-
950
- #: public/admin/box_ask_customer_review.php:13
951
- msgid "Not really"
952
- msgstr ""
953
-
954
- #: public/admin/box_ask_customer_review.php:20
955
- msgid "Yes!"
956
- msgstr ""
957
-
958
- #: public/admin/box_ask_customer_review.php:33
959
- msgid "How about a rating on the Wordpress?"
960
- msgstr ""
961
-
962
- #: lib/recurrence/rule.php:397
963
- msgid "Every %d weeks"
964
- msgstr "Cada %d semanas"
965
-
966
- #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
- msgid "Monthly"
968
- msgstr "Mensualmente"
969
-
970
- #: lib/recurrence/rule.php:409
971
- msgid "Every other month"
972
- msgstr "En meses alternos"
973
-
974
- #: lib/recurrence/rule.php:412
975
- msgid "Every %d months"
976
- msgstr "Cada %d meses"
977
-
978
- #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
- msgid "Yearly"
980
- msgstr "Anualmente"
981
-
982
- #: lib/recurrence/rule.php:424
983
- msgid "Every other year"
984
- msgstr "En años alternos"
985
-
986
- #: lib/recurrence/rule.php:427
987
- msgid "Every %d years"
988
- msgstr "Cada %d años"
989
-
990
- #: lib/recurrence/rule.php:465
991
- msgid "until %s"
992
- msgstr "hasta el %s"
993
-
994
- #: lib/recurrence/rule.php:475
995
- msgid "for %d occurrences"
996
- msgstr "para %d coincidencias"
997
-
998
- #: lib/recurrence/rule.php:479
999
- msgid "forever"
1000
- msgstr "Para siempre"
1001
-
1002
- #: lib/robots/helper.php:71
1003
- msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
- msgstr "<strong>ERROR:</strong> Hubo un error en la conexión con el servidor. Por favor verifique que la configuración sea la correcta."
1005
-
1006
- #: lib/robots/helper.php:105
1007
- msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
- msgstr "<strong>ERROR:</strong> Hubo un error al guardar <strong>robots.txt</strong> al servidor, el archivo no pudo ser grabado."
1009
-
1010
- #: lib/theme/list.php:152
1011
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
- msgstr "En este momento solo tienes un tema activado para esta web. Visita el administrador de red para <a href=\"%1$s\">activar</a> o <a href=\"%2$s\">instalar</a> más temas."
1013
-
1014
- #: lib/theme/list.php:164
1015
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
- msgstr "En este momento solo tienes un tema activado para esta web. Visita el administrador de red para <a href=\"%1$s\">activar</a> más temas."
1017
-
1018
- #: lib/theme/list.php:179
1019
- msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
- msgstr "Actualmente solo tienes un tema instalado. Puedes escoger de los muchos temas gratuitos en el directorio de temas Timely en cualquier momento: sólo haz clic en la pestaña <a href=\"%s\">Instalar temas</a> de arriba."
1021
-
1022
- #: lib/theme/list.php:190
1023
- msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
- msgstr "En este momento únicamente está disponible el tema actualmente en uso. Contacta con el <em>%s</em> administrador para añadir más temas."
1025
-
1026
- #: lib/theme/list.php:257
1027
- msgid "Activate &#8220;%s&#8221;"
1028
- msgstr "Activar &#8220;%s&#8221;"
1029
-
1030
- #: lib/theme/list.php:264
1031
- msgid "Activate"
1032
- msgstr "Activar"
1033
-
1034
- #. translators: 1: theme title, 2: theme version, 3: theme author
1035
- #: lib/theme/list.php:281 public/admin/themes.php:25
1036
- msgid "%1$s %2$s by %3$s"
1037
- msgstr "%1$s %2$s por %3$s"
1038
-
1039
- #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
- #. title, 5: parent_theme
1041
- #: lib/theme/list.php:293
1042
- msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
- msgstr "Los archivos de plantilla están ubicados en <code>%2$s</code>. Los archivos de hoja de estilo están ubicados en <code>%3$s</code>. <strong>%4$s</strong> utiliza plantillas de <strong>%5$s</strong>. Los cambios hechos a las plantillas afectarán ambos temas."
1044
-
1045
- #: lib/theme/list.php:308
1046
- msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
- msgstr "Todos los archivos de este tema &#8217;s están ubicados en <code>%2$s</code>."
1048
-
1049
- #: lib/post/custom-type.php:36
1050
- msgid "Parent Event"
1051
- msgstr "Evento principal"
1052
-
1053
- #: lib/post/custom-type.php:55
1054
- msgid "event"
1055
- msgstr "evento"
1056
-
1057
- #: lib/post/custom-type.php:85
1058
- msgctxt "Event categories taxonomy"
1059
- msgid "Categories"
1060
- msgstr ""
1061
-
1062
- #: lib/post/custom-type.php:86
1063
- msgctxt "Event categories taxonomy (singular)"
1064
- msgid "Category"
1065
- msgstr ""
1066
-
1067
- #: lib/post/custom-type.php:87
1068
- msgctxt "Event categories menu item"
1069
- msgid "Organize"
1070
- msgstr ""
1071
-
1072
- #: lib/post/custom-type.php:94
1073
- msgctxt "Event tags taxonomy"
1074
- msgid "Tags"
1075
- msgstr ""
1076
-
1077
- #: lib/post/custom-type.php:95
1078
- msgctxt "Event tags taxonomy (singular)"
1079
- msgid "Tag"
1080
- msgstr ""
1081
-
1082
- #: lib/post/custom-type.php:102
1083
- msgctxt "Event feeds taxonomy"
1084
- msgid "Event Feeds"
1085
- msgstr "Fuentes de Eventos"
1086
-
1087
- #: lib/post/custom-type.php:103
1088
- msgctxt "Event feed taxonomy (singular)"
1089
- msgid "Event Feed"
1090
- msgstr "Fuentes de Evento"
1091
-
1092
- #: lib/post/custom-type.php:285
1093
- msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
- msgstr "Todos los eventos <span class=\"update-plugins count-%d\" title=\"%d Eventos pendientes\"><span class=\"update-count\">%d</span></span>"
1095
-
1096
- #: lib/post/custom-type.php:296
1097
- msgid "All Events"
1098
- msgstr "Todos los eventos"
1099
-
1100
- #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
- #: lib/recurrence/rule.php:260
1102
- msgctxt "Recurrence editor - weekly tab"
1103
- msgid "on"
1104
- msgstr "el"
1105
-
1106
- #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
- #: lib/recurrence/rule.php:326
1108
- msgid "and"
1109
- msgstr "y"
1110
-
1111
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
- #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
- msgctxt "Recurrence editor - monthly tab"
1114
- msgid "on"
1115
- msgstr "el"
1116
-
1117
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
- #: lib/recurrence/rule.php:286
1119
- msgid "of the month"
1120
- msgstr "del mesd"
1121
-
1122
- #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
- #: lib/recurrence/rule.php:336
1124
- msgctxt "Recurrence editor - yearly tab"
1125
- msgid "on"
1126
- msgstr "el"
1127
-
1128
- #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
- #: public/admin/cron_freq.php:9
1130
- msgid "Daily"
1131
- msgstr "Diariamente"
1132
-
1133
- #: lib/recurrence/rule.php:379
1134
- msgid "Every other day"
1135
- msgstr "Días alternos"
1136
-
1137
- #: lib/recurrence/rule.php:382
1138
- msgid "Every %d days"
1139
- msgstr "Cada %d días"
1140
-
1141
- #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
- msgid "Weekly"
1143
- msgstr "Semanalmente"
1144
-
1145
- #: lib/recurrence/rule.php:394
1146
- msgid "Every other week"
1147
- msgstr "En semanas alternas"
1148
-
1149
- #: lib/less/variable/font.php:64
1150
- msgid "Custom..."
1151
- msgstr "Personalizado..."
1152
-
1153
- #: lib/less/variable/font.php:112
1154
- msgid "Enter custom font(s)"
1155
- msgstr "Ingresa tipografía(s) personalizada(s)"
1156
-
1157
- #: lib/less/variable/size.php:26
1158
- msgid "Length"
1159
- msgstr "Duración"
1160
-
1161
- #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
- msgid "All-in-One Event Calendar"
1163
- msgstr "All-in-One Event Calendar"
1164
-
1165
- #: lib/notification/admin.php:182
1166
- msgid "Got it – dismiss this"
1167
- msgstr ""
1168
-
1169
- #: lib/post/custom-type.php:26
1170
- msgctxt "Custom post type name"
1171
- msgid "Events"
1172
- msgstr "Eventos"
1173
-
1174
- #: lib/post/custom-type.php:27
1175
- msgctxt "Custom post type name (singular)"
1176
- msgid "Event"
1177
- msgstr "Evento"
1178
-
1179
- #: lib/post/custom-type.php:28
1180
- msgid "Add New"
1181
- msgstr "Crear evento"
1182
-
1183
- #: lib/post/custom-type.php:29
1184
- msgid "Add New Event"
1185
- msgstr "Crear evento nuevo"
1186
-
1187
- #: lib/post/custom-type.php:30
1188
- msgid "Edit Event"
1189
- msgstr "Editar evento"
1190
-
1191
- #: lib/post/custom-type.php:31
1192
- msgid "New Event"
1193
- msgstr "Evento nuevo"
1194
-
1195
- #: lib/post/custom-type.php:32
1196
- msgid "View Event"
1197
- msgstr "Ver evento"
1198
-
1199
- #: lib/post/custom-type.php:33
1200
- msgid "Search Events"
1201
- msgstr "Buscar eventos"
1202
-
1203
- #: lib/post/custom-type.php:34
1204
- msgid "No Events found"
1205
- msgstr "No se encuentran eventos."
1206
-
1207
- #: lib/post/custom-type.php:35
1208
- msgid "No Events found in Trash"
1209
- msgstr "No se encuentran eventos en la papelera"
1210
-
1211
- #: lib/html/element/setting/html.php:62
1212
- msgid "Filter by post ID:"
1213
- msgstr "Filtrar por ID de publicación:"
1214
-
1215
- #: lib/html/element/setting/html.php:63
1216
- msgid "Filter by post IDs (separate IDs by comma):"
1217
- msgstr "Filtrar por IDs de publicación (separar IDs con comas):"
1218
-
1219
- #: lib/html/element/setting/html.php:64
1220
- msgid "Limit number of events per page:"
1221
- msgstr "Limita el número de eventos por página:"
1222
-
1223
- #: lib/html/element/setting/html.php:65
1224
- msgid "Warning:"
1225
- msgstr "Advertencia:"
1226
-
1227
- #: lib/html/element/setting/html.php:66
1228
- msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
- msgstr "Actualmente no se permite incrustar más de un calendario en la misma página. No intente incrustar el calendario con shortcodes en una página que ya incluye un calendario."
1230
-
1231
- #: lib/import-export/ics.php:831
1232
- msgid "Tickets: "
1233
- msgstr ""
1234
-
1235
- #: lib/html/element/setting/html.php:41
1236
- msgid "Day view:"
1237
- msgstr "Vista diaria:"
1238
-
1239
- #: lib/html/element/setting/html.php:42
1240
- msgid "Agenda view:"
1241
- msgstr "Vista Agenda:"
1242
-
1243
- #: lib/html/element/setting/html.php:43
1244
- msgid "Some Other view:"
1245
- msgstr "Alguna otra vista:"
1246
-
1247
- #: lib/html/element/setting/html.php:44
1248
- msgid "Default view as per settings:"
1249
- msgstr "Vista por defecto según la configuración:"
1250
-
1251
- #: lib/html/element/setting/html.php:45
1252
- msgid "General form:"
1253
- msgstr "Formulario general:"
1254
-
1255
- #: lib/html/element/setting/html.php:46
1256
- msgid "Optional."
1257
- msgstr "Opcional."
1258
-
1259
- #: lib/html/element/setting/html.php:47
1260
- msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
- msgstr "Añadir opciones para mostrar un calendario filtrada. (Puede encontrar la categoría y el ID de etiquetas mediante la inspección de la dirección URL de la página de calendario filtrada.)"
1262
-
1263
- #: lib/html/element/setting/html.php:48
1264
- msgid "Filter by event category name/slug:"
1265
- msgstr "Filtrar por tipo de evento de categoría nombre / tag:"
1266
-
1267
- #: lib/html/element/setting/html.php:49
1268
- msgid "Holidays"
1269
- msgstr "Días festivos"
1270
-
1271
- #: lib/html/element/setting/html.php:50
1272
- msgid "Lunar Cycles"
1273
- msgstr "Ciclos Lunares"
1274
-
1275
- #: lib/html/element/setting/html.php:51
1276
- msgid "zodiac-date-ranges"
1277
- msgstr "Rangos Zodiacales"
1278
-
1279
- #: lib/html/element/setting/html.php:52
1280
- msgid "Filter by event category names/slugs (separate names by comma):"
1281
- msgstr "Filtrar por nombres o slugs de categoría (separar nombres con comas):"
1282
-
1283
- #: lib/html/element/setting/html.php:53
1284
- msgid "Filter by event category ID:"
1285
- msgstr "Filtrar por ID de categoría de evento"
1286
-
1287
- #: lib/html/element/setting/html.php:54
1288
- msgid "Filter by event category IDs (separate IDs by comma):"
1289
- msgstr "Filtrar por IDs de categorías de eventos (separar IDs con comas):"
1290
-
1291
- #: lib/html/element/setting/html.php:55
1292
- msgid "Filter by event tag name/slug:"
1293
- msgstr "Filtrar por nombre o slug de tag:"
1294
-
1295
- #: lib/html/element/setting/html.php:56
1296
- msgid "tips-and-tricks"
1297
- msgstr "consejos"
1298
-
1299
- #: lib/html/element/setting/html.php:57
1300
- msgid "creative writing"
1301
- msgstr "escritura creativa"
1302
-
1303
- #: lib/html/element/setting/html.php:58
1304
- msgid "performing arts"
1305
- msgstr "artes interpretativas"
1306
-
1307
- #: lib/html/element/setting/html.php:59
1308
- msgid "Filter by event tag names/slugs (separate names by comma):"
1309
- msgstr "Filtrar por nombres o slugs de tags (separar con comas):"
1310
-
1311
- #: lib/html/element/setting/html.php:60
1312
- msgid "Filter by event tag ID:"
1313
- msgstr "Filtrar por ID de tag de evento:"
1314
-
1315
- #: lib/html/element/setting/html.php:61
1316
- msgid "Filter by event tag IDs (separate IDs by comma):"
1317
- msgstr "Filtrar por IDs de tags de eventos (separar IDs con comas):"
1318
-
1319
- #: lib/exception/handler.php:395
1320
- msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
- msgstr ""
1322
-
1323
- #: lib/exception/handler.php:404
1324
- msgid "Try reactivating plugin"
1325
- msgstr ""
1326
-
1327
- #: lib/exception/handler.php:576
1328
- msgid "Toggle error details"
1329
- msgstr ""
1330
-
1331
- #: lib/exception/handler.php:577
1332
- msgid "Error Details:"
1333
- msgstr ""
1334
-
1335
- #: lib/factory/html.php:133
1336
- msgid "Choose a date using calendar"
1337
- msgstr "Elegir una fecha usando el calendario"
1338
-
1339
- #: lib/factory/html.php:278
1340
- msgid "Tags (optional)"
1341
- msgstr "Etiquetas (opcional)"
1342
-
1343
- #: lib/html/element/setting/cache.php:38
1344
- msgid "Check again"
1345
- msgstr "Revisa de nuevo"
1346
-
1347
- #: lib/html/element/setting/cache.php:39
1348
- msgid "Templates cache is not writable"
1349
- msgstr "El cache de plantillas no es grabable"
1350
-
1351
- #: lib/html/element/setting/cache.php:40
1352
- msgid "Templates cache is writable"
1353
- msgstr "Se puede grabar el cache de plantillas"
1354
-
1355
- #: lib/html/element/setting/cache.php:41
1356
- msgid "Checking..."
1357
- msgstr "Revisando..."
1358
-
1359
- #: lib/html/element/setting/cache.php:42
1360
- msgid "Performance Report"
1361
- msgstr "Reporte de rendimiento"
1362
-
1363
- #: lib/html/element/setting/calendar-page-selector.php:70
1364
- msgid "View"
1365
- msgstr "Ver"
1366
-
1367
- #: lib/html/element/setting/calendar-page-selector.php:114
1368
- msgid "- Auto-Create New Page -"
1369
- msgstr "- Crear página automáticamente -"
1370
-
1371
- #: lib/html/element/setting/enabled-views.php:22
1372
- msgid "Enabled"
1373
- msgstr "Habilitado"
1374
-
1375
- #: lib/html/element/setting/enabled-views.php:23
1376
- msgid "Default"
1377
- msgstr "Por defecto"
1378
-
1379
- #: lib/html/element/setting/enabled-views.php:24
1380
- msgid "Desktop"
1381
- msgstr "Escritorio"
1382
-
1383
- #: lib/html/element/setting/enabled-views.php:25
1384
- msgid "Mobile"
1385
- msgstr "Móvil"
1386
-
1387
- #: lib/html/element/setting/html.php:37
1388
- msgid "Embed the calendar using a shortcode"
1389
- msgstr "Insertar el calendario usando un shortcode"
1390
-
1391
- #: lib/html/element/setting/html.php:38
1392
- msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
- msgstr "Inserte uno de estos shortcodes en el \"body\" de la página para insertar el calendario en una página arbitraria de WordPress."
1394
-
1395
- #: lib/html/element/setting/html.php:39
1396
- msgid "Month view:"
1397
- msgstr "Vista mensual:"
1398
-
1399
- #: lib/html/element/setting/html.php:40
1400
- msgid "Week view:"
1401
- msgstr "Vista semanal:"
1402
-
1403
- #: lib/css/frontend.php:239
1404
- msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
- msgstr ""
1406
-
1407
- #: lib/css/frontend.php:266
1408
- msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
- msgstr "El archivo LESS se compiló correctamente pero hubo un error al guardar el archivo CSS que se creó."
1410
-
1411
- #: lib/css/frontend.php:272
1412
- msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
- msgstr "<p><strong>Hubo un error al compilar el CSS.</strong> El mensaje recibido fue: <em>%s</em></p>"
1414
-
1415
- #: lib/css/frontend.php:300
1416
- msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
- msgstr "Las opciones de tema se restauraron exitosamente a sus valores por defecto. <a href='%s'>Visita el sitio</a>"
1418
-
1419
- #: lib/css/frontend.php:307
1420
- msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
- msgstr "Las opciones de tema se actualizaron exitosamente. <a href='%s'>Visita el sitio</a>"
1422
-
1423
- #: lib/css/frontend.php:343
1424
- msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
- msgstr "Su CSS se está compilando en cada solicitud lo cual está causando que el calendario se desempeñe lentamente. El siguiente error ocurrió: %s"
1426
-
1427
- #: lib/database/applicator.php:182
1428
- msgid "Date columns in table %s have different types."
1429
- msgstr "Las columnas de fechas en la tabla %s tienen diferentes tipos."
1430
-
1431
- #: lib/database/exception/database.php:19
1432
- msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
- msgstr "La actualización de base de datos ha fallado. Asegúrate de que el usuario de base de datos, definido en <em>wp-config.php</em>, tiene permisos para hacer los cambios (<strong>ALTER TABLE</strong>) a la base de datos."
1434
-
1435
- #: lib/database/exception/database.php:23
1436
- msgid "Error encountered: %s"
1437
- msgstr "Se encontró el error: %s"
1438
-
1439
- #: lib/date/system.php:202
1440
- msgid "GMT%+d:%02d"
1441
- msgstr "GMT%+d:%02d"
1442
-
1443
- #: lib/date/timezone.php:362
1444
- msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
- msgstr "Por favor selecciona la zona horaria del sitio en el menú desplegable de %s <em>Zona horaria</em>."
1446
-
1447
- #: lib/date/timezone.php:397
1448
- msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
- msgstr "La zona horaria \"UTC%+d\" no se ha reconocido. Por favor usa un nombre de zona horaria %sválida%s, hasta entonces los eventos se crearán con la zona horaria UTC."
1450
-
1451
- #: lib/date/timezone.php:421
1452
- msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
- msgstr "La zona horaria seleccionada \"UTC%+d\" será tratada como %s."
1454
-
1455
- #: lib/date/timezone.php:490
1456
- msgid "Manual Offset"
1457
- msgstr "Desplazamiento Manual"
1458
-
1459
- #: lib/date/timezone.php:493
1460
- msgid "Choose your timezone"
1461
- msgstr "Seleccione su Zona Horaria"
1462
-
1463
- #: lib/environment/check.php:55
1464
- msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
- msgstr "Elija una opción de la lista desplegable <strong>Página de calendario</strong>."
1466
-
1467
- #: lib/environment/check.php:68
1468
- msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
- msgstr "El plugin ha sido instalado, pero aún no ha sido configurado. <a href=\"%s\">Haga click aquí para configurarlo ahora &raquo;</a>"
1470
-
1471
- #: lib/environment/check.php:78
1472
- msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
- msgstr "El plugin ha sido instalado, pero aún no ha sido configurado. Por favor identifíquese como Administrador para configurarlo."
1474
-
1475
- #: lib/environment/check.php:196
1476
- msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
- msgstr ""
1478
-
1479
- #: lib/environment/check.php:197
1480
- msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
- msgstr ""
1482
-
1483
- #: lib/exception/handler.php:176
1484
- msgid "The add-on \"%s\" has been disabled due to an error:"
1485
- msgstr ""
1486
-
1487
- #: lib/calendar-feed/ics.php:367
1488
- msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
- msgstr "¿Te gustaría eliminar o mantener estos eventos de tu calendario?"
1490
-
1491
- #: lib/calendar-feed/ics.php:373
1492
- msgid "Removing ICS Feed"
1493
- msgstr "Eliminar fuente ICS"
1494
-
1495
- #: lib/calendar-feed/ics.php:376
1496
- msgid "Keep Events"
1497
- msgstr "Mantener Eventos"
1498
-
1499
- #: lib/calendar-feed/ics.php:379
1500
- msgid "Remove Events"
1501
- msgstr "Eliminar Eventos nuevo"
1502
-
1503
- #: lib/calendar-feed/ics.php:519
1504
- msgid "Oh, submission was not accepted."
1505
- msgstr ""
1506
-
1507
- #: lib/calendar-feed/ics.php:699
1508
- msgid "Deleted %d events"
1509
- msgstr "Borrados %d eventos."
1510
-
1511
- #: lib/calendar-feed/ics.php:735
1512
- msgid "Feed deleted"
1513
- msgstr "Fuente Borrada"
1514
-
1515
- #: lib/captcha/provider/nocaptcha.php:31
1516
- msgid "noCAPTCHA public key:"
1517
- msgstr ""
1518
-
1519
- #: lib/captcha/provider/nocaptcha.php:47
1520
- msgid "noCAPTCHA private key:"
1521
- msgstr ""
1522
-
1523
- #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
- msgid "Please try verifying you are human again."
1525
- msgstr ""
1526
-
1527
- #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
- msgid "There was an error reading the human verification data. Please try again."
1529
- msgstr ""
1530
-
1531
- #: lib/captcha/provider/recaptcha.php:32
1532
- msgid "reCAPTCHA public key:"
1533
- msgstr ""
1534
-
1535
- #: lib/captcha/provider/recaptcha.php:48
1536
- msgid "reCAPTCHA private key:"
1537
- msgstr ""
1538
-
1539
- #: lib/captcha/provider/recaptcha.php:66
1540
- msgid "Human verification"
1541
- msgstr ""
1542
-
1543
- #: lib/captcha/provider/recaptcha.php:67
1544
- msgid "Loading reCAPTCHA..."
1545
- msgstr ""
1546
-
1547
- #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
- #: lib/clone/renderer-helper.php:45
1549
- msgid "Clone"
1550
- msgstr "Clonar"
1551
-
1552
- #: lib/clone/renderer-helper.php:44
1553
- msgid "Make new copy of event"
1554
- msgstr "Hacer una copia nueva del evento"
1555
-
1556
- #: lib/clone/renderer-helper.php:47
1557
- msgid "Copy to a new draft"
1558
- msgstr "Copiar a un nuevo borrador"
1559
-
1560
- #: lib/clone/renderer-helper.php:48
1561
- msgid "Clone to Draft"
1562
- msgstr "Clonar al borrador"
1563
-
1564
- #: lib/command/clone.php:173
1565
- msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
- msgstr "<p>El evento <strong>%s</strong> se clonó exitosamente. <a href=\"%s\">Editar evento clonado</a></p>"
1567
-
1568
- #: lib/compatibility/check.php:101
1569
- msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
- msgstr ""
1571
-
1572
- #: app/view/event/single.php:123
1573
- msgid "Tickets:"
1574
- msgstr ""
1575
-
1576
- #: app/view/event/single.php:124
1577
- msgid "Free"
1578
- msgstr "Gratis"
1579
-
1580
- #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
- msgid "Buy Tickets"
1582
- msgstr "Comprar entradas"
1583
-
1584
- #: app/view/event/single.php:150
1585
- msgid "Edit this occurrence (%s)"
1586
- msgstr "Edita esta ocurrencia (%s)"
1587
-
1588
- #: app/view/event/single.php:195
1589
- msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
- msgstr ""
1591
-
1592
- #: app/view/event/single.php:206
1593
- msgid "View original"
1594
- msgstr ""
1595
-
1596
- #: app/view/event/taxonomy.php:113
1597
- msgid "Category image"
1598
- msgstr "Imagen de categoría"
1599
-
1600
- #: app/view/event/ticket.php:24
1601
- msgid "Register Now"
1602
- msgstr "Registrarse ahora"
1603
-
1604
- #: app/view/event/ticket.php:82
1605
- msgid "Event website"
1606
- msgstr "Sitio web del evento"
1607
-
1608
- #: app/view/event/time.php:84 app/view/event/time.php:118
1609
- msgctxt "Event time separator"
1610
- msgid " @ "
1611
- msgstr " a las "
1612
-
1613
- #: app/view/event/time.php:100
1614
- msgctxt "Event start/end separator"
1615
- msgid " – "
1616
- msgstr " – "
1617
-
1618
- #: app/view/event/time.php:166
1619
- msgid ", and "
1620
- msgstr " y "
1621
-
1622
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
- msgid "Excludes: "
1624
- msgstr ""
1625
-
1626
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
- msgid "Repeats"
1628
- msgstr ""
1629
-
1630
- #: lib/calendar-feed/ics.php:38
1631
- msgid "ICS"
1632
- msgstr "ICS"
1633
-
1634
- #: lib/calendar-feed/ics.php:69
1635
- msgid "Another import process in progress. Please try again later."
1636
- msgstr "Existe otro proceso de importación en progreso. Por favor inténtelo nuevamente más tarde."
1637
-
1638
- #: lib/calendar-feed/ics.php:174
1639
- msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
- msgstr "Un error del sistema impide que se recuperen los datos del calendario. Algo impide que el plugin funcione correctamente. Este mensaje te dará más información: %s"
1641
-
1642
- #: lib/calendar-feed/ics.php:181
1643
- msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
- msgstr "Los datos del calendario no se pueden recuperar. Si la URL es correcta y apunta a un recurso de tipo iCalendar, se debe probablemente a un error transitorio del servidor y se resolverá con el tiempo"
1645
-
1646
- #: lib/calendar-feed/ics.php:195
1647
- msgid "Imported %s event"
1648
- msgid_plural "Imported %s events"
1649
- msgstr[0] "Importado %s evento"
1650
- msgstr[1] "Importados %s eventos"
1651
-
1652
- #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
- msgid "Invalid ICS feed ID"
1654
- msgstr "ID de fuente ICS inválida"
1655
-
1656
- #: lib/calendar-feed/ics.php:350
1657
- msgid "Categories (optional)"
1658
- msgstr "Categorías (opcional)"
1659
-
1660
- #: app/view/event/content.php:33 app/view/event/single.php:119
1661
- msgid "When:"
1662
- msgstr "Cuando:"
1663
-
1664
- #: app/view/event/content.php:34 app/view/event/single.php:120
1665
- msgid "Where:"
1666
- msgstr "Donde:"
1667
-
1668
- #: app/view/event/content.php:125
1669
- msgid "Calendar"
1670
- msgstr ""
1671
-
1672
- #: app/view/event/content.php:126
1673
- msgid "View all events"
1674
- msgstr "Ver todos los eventos"
1675
-
1676
- #: app/view/event/location.php:96
1677
- msgid "Click to view map"
1678
- msgstr "Pulsar para ver el mapa"
1679
-
1680
- #: app/view/event/location.php:97
1681
- msgid "View Full-Size Map"
1682
- msgstr "Ver mapa a tamaño completo"
1683
-
1684
- #: app/view/event/post.php:29
1685
- msgid "Event updated. <a href=\"%s\">View event</a>"
1686
- msgstr "Evento actualizado. <a href=\"%s\">Ver evento</a>"
1687
-
1688
- #: app/view/event/post.php:32
1689
- msgid "Custom field updated."
1690
- msgstr "Campo personalizado actualizado."
1691
-
1692
- #: app/view/event/post.php:33
1693
- msgid "Custom field deleted."
1694
- msgstr "Campo personalizado borrado."
1695
-
1696
- #: app/view/event/post.php:34
1697
- msgid "Event updated."
1698
- msgstr "Evento actualizado."
1699
-
1700
- #. translators: %s: date and time of the revision
1701
- #: app/view/event/post.php:38
1702
- msgid "Event restored to revision from %s"
1703
- msgstr "Evento restaurado a la revisión del %s."
1704
-
1705
- #: app/view/event/post.php:43
1706
- msgid "Event published. <a href=\"%s\">View event</a>"
1707
- msgstr "Evento publicado. <a href=\"%s\">Ver evento</a>"
1708
-
1709
- #: app/view/event/post.php:46
1710
- msgid "Event saved."
1711
- msgstr "Evento guardado."
1712
-
1713
- #: app/view/event/post.php:48
1714
- msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
- msgstr "Evento enviado. <a target=\"_blank\" href=\"%s\">Previsualizar evento</a>"
1716
-
1717
- #: app/view/event/post.php:52
1718
- msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
- msgstr "Evento programado para: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Previsualizar evento</a>"
1720
-
1721
- #. translators: Publish box date format, see http:php.net/date
1722
- #: app/view/event/post.php:54
1723
- msgid "M j, Y @ G:i"
1724
- msgstr "j \\d\\e F \\d\\e Y G:i"
1725
-
1726
- #: app/view/event/post.php:58
1727
- msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
- msgstr "Borrador de evento actualizado. <a target=\"_blank\" href=\"%s\">Previsualizar evento</a>"
1729
-
1730
- #: app/view/event/single.php:78
1731
- msgid "Event was created in the %s time zone"
1732
- msgstr ""
1733
-
1734
- #: app/view/event/single.php:114
1735
- msgid "Add to Calendar"
1736
- msgstr "Añadir al Calendario"
1737
-
1738
- #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
- msgid "Cost:"
1740
- msgstr "Precio:"
1741
-
1742
- #: app/view/event/single.php:122
1743
- msgid "Contact:"
1744
- msgstr "Contacto:"
1745
-
1746
- #: app/view/calendar/view/agenda.php:169
1747
- msgid "Categories:"
1748
- msgstr "Categorías:"
1749
-
1750
- #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
- #: public/admin/themes.php:29
1752
- msgid "Tags:"
1753
- msgstr "Etiquetas:"
1754
-
1755
- #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
- #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
- #: app/view/calendar/widget.php:374
1758
- msgid "@ %s"
1759
- msgstr "@ %s"
1760
-
1761
- #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
- msgid "g a"
1763
- msgstr "g a"
1764
-
1765
- #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
- msgid "Reveal full day"
1767
- msgstr "Mostrar todo el día"
1768
-
1769
- #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
- msgid "All-day"
1771
- msgstr "Todo el día"
1772
-
1773
- #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
- msgid "Now:"
1775
- msgstr "Ahora:"
1776
-
1777
- #: app/view/calendar/view/week.php:67
1778
- msgid "Week of %s"
1779
- msgstr "Semana de %s"
1780
-
1781
- #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
- msgid "Upcoming Events"
1783
- msgstr "Eventos programados"
1784
-
1785
- #: app/view/calendar/widget.php:38
1786
- msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
- msgstr "All-in-One Event Calendar: Lista de eventos en vista Agenda"
1788
-
1789
- #: app/view/calendar/widget.php:80
1790
- msgid "Choose how to limit the upcoming events"
1791
- msgstr ""
1792
-
1793
- #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
- msgid "Events"
1795
- msgstr "Eventos"
1796
-
1797
- #: app/view/calendar/widget.php:93
1798
- msgid "Days"
1799
- msgstr "Días"
1800
-
1801
- #: app/view/calendar/widget.php:106
1802
- msgid "Number of events to show"
1803
- msgstr "Número de eventos a mostrar"
1804
-
1805
- #: app/view/calendar/widget.php:115
1806
- msgid "Number of days to show"
1807
- msgstr "Número de días a mostrar"
1808
-
1809
- #: app/view/calendar/widget.php:124
1810
- msgid "Show events filtered for the following tags/categories"
1811
- msgstr "Filtrar eventos por las siguientes etiquetas/categorías"
1812
-
1813
- #: app/view/calendar/widget.php:141
1814
- msgid "Show the subscribe button in the widget"
1815
- msgstr ""
1816
-
1817
- #: app/view/calendar/widget.php:370
1818
- msgid "There are no upcoming events."
1819
- msgstr "No hay nuevos eventos."
1820
-
1821
- #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
- msgid "all-day"
1823
- msgstr "todo el día"
1824
-
1825
- #: app/view/calendar/widget.php:372
1826
- msgid "View Calendar"
1827
- msgstr "Ver Calendario"
1828
-
1829
- #: app/view/calendar/widget.php:375
1830
- msgid "Add"
1831
- msgstr "Añadir"
1832
-
1833
- #: app/view/calendar/page.php:260
1834
- msgid "Subscribe to filtered calendar"
1835
- msgstr "Suscribirse a calendario filtrado"
1836
-
1837
- #: app/view/calendar/page.php:261
1838
- msgid "Subscribe"
1839
- msgstr "Suscribirse"
1840
-
1841
- #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
- msgid "Get a Timely Calendar"
1843
- msgstr ""
1844
-
1845
- #: app/view/calendar/subscribe-button.php:22
1846
- msgid "Add to Timely Calendar"
1847
- msgstr "Añadir a Timely Calendar"
1848
-
1849
- #: app/view/calendar/subscribe-button.php:23
1850
- msgid "Add to Google"
1851
- msgstr "Añadir a Google"
1852
-
1853
- #: app/view/calendar/subscribe-button.php:24
1854
- msgid "Add to Outlook"
1855
- msgstr "Agregar a Outlook"
1856
-
1857
- #: app/view/calendar/subscribe-button.php:25
1858
- msgid "Add to Apple Calendar"
1859
- msgstr "Agregar a Apple Calendar"
1860
-
1861
- #: app/view/calendar/subscribe-button.php:26
1862
- msgid "Add to other calendar"
1863
- msgstr "Agregar a otro calendario"
1864
-
1865
- #: app/view/calendar/subscribe-button.php:29
1866
- msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
- msgstr "Copia esta URL de tu propio calendario Timely o haz click para agregar a tu calendario de texto-enriquecido"
1868
-
1869
- #: app/view/calendar/subscribe-button.php:30
1870
- msgid "Subscribe to this calendar in your Google Calendar"
1871
- msgstr "Suscribete a este calendario en tu Google Calendar"
1872
-
1873
- #: app/view/calendar/subscribe-button.php:31
1874
- msgid "Subscribe to this calendar in MS Outlook"
1875
- msgstr "Suscríbete a este calendario en tu MS Outlook"
1876
-
1877
- #: app/view/calendar/subscribe-button.php:32
1878
- msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
- msgstr "Suscríbete a este calendario en Apple Calendar / iCal"
1880
-
1881
- #: app/view/calendar/subscribe-button.php:33
1882
- msgid "Subscribe to this calendar in another plain-text calendar"
1883
- msgstr "Suscribirse a este calendario en la agenda de otro de texto plano"
1884
-
1885
- #: app/view/calendar/taxonomy.php:97
1886
- msgid "Clear category filter"
1887
- msgstr "Eliminar filtro de categoría"
1888
-
1889
- #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
- #: lib/html/element/setting/tags-categories.php:47
1891
- msgid "Categories"
1892
- msgstr "Categorías"
1893
-
1894
- #: app/view/calendar/taxonomy.php:99
1895
- msgid "Clear tag filter"
1896
- msgstr "Eliminar filtro de etiqueta"
1897
-
1898
- #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
- #: lib/html/element/setting/tags-categories.php:39
1900
- msgid "Tags"
1901
- msgstr "Etiquetas:"
1902
-
1903
- #: app/view/calendar/view/agenda.php:142
1904
- msgid "Collapse All"
1905
- msgstr "Cerrar todo"
1906
-
1907
- #: app/view/calendar/view/agenda.php:143
1908
- msgid "Expand All"
1909
- msgstr "Expandir todo"
1910
-
1911
- #: app/view/calendar/view/agenda.php:166
1912
- msgid "There are no upcoming events to display at this time."
1913
- msgstr "No hay nuevos eventos para mostrar en esta fecha."
1914
-
1915
- #: app/view/calendar/view/agenda.php:168
1916
- msgid "Read more"
1917
- msgstr "Leer más"
1918
-
1919
- #: app/view/admin/tickets.php:86
1920
- msgid "Sales"
1921
- msgstr ""
1922
-
1923
- #: app/view/admin/tickets.php:87
1924
- msgid "How do you want the tickets revenue to be sent to you?"
1925
- msgstr ""
1926
-
1927
- #: app/view/admin/tickets.php:88
1928
- msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
- msgstr ""
1930
-
1931
- #: app/view/admin/tickets.php:91
1932
- msgid "Cheque"
1933
- msgstr ""
1934
-
1935
- #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
- msgid "Paypal"
1937
- msgstr "Paypal"
1938
-
1939
- #: app/view/admin/tickets.php:94
1940
- msgid "Save Changes"
1941
- msgstr ""
1942
-
1943
- #: app/view/admin/tickets.php:95
1944
- msgid "Date"
1945
- msgstr ""
1946
-
1947
- #: app/view/admin/tickets.php:96
1948
- msgid "Event"
1949
- msgstr ""
1950
-
1951
- #: app/view/admin/tickets.php:97
1952
- msgid "Purchaser"
1953
- msgstr ""
1954
-
1955
- #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
- #: public/admin/box_event_cost.php:35
1957
- msgid "Tickets"
1958
- msgstr "Entradas"
1959
-
1960
- #: app/view/admin/tickets.php:101
1961
- msgid "Total"
1962
- msgstr ""
1963
-
1964
- #: app/view/admin/tickets.php:102
1965
- msgid "Sign Out"
1966
- msgstr ""
1967
-
1968
- #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
- #: app/view/admin/widget-creator.php:47
1970
- msgid "Widget Creator"
1971
- msgstr ""
1972
-
1973
- #: app/view/admin/widget-creator.php:74
1974
- msgctxt "meta box"
1975
- msgid "Widget Creator"
1976
- msgstr ""
1977
-
1978
- #: app/view/admin/widget-creator.php:131
1979
- msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
- msgstr ""
1981
-
1982
- #: app/view/admin/widget-creator.php:132
1983
- msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
- msgstr ""
1985
-
1986
- #: app/view/admin/widget-creator.php:134
1987
- msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
- msgstr ""
1989
-
1990
- #: app/view/admin/widget-creator.php:140
1991
- msgid "Paste this code onto your site:"
1992
- msgstr "Pega este código en tu sitio:"
1993
-
1994
- #: app/view/admin/widget-creator.php:141
1995
- msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
- msgstr ""
1997
-
1998
- #: app/view/calendar/page.php:54
1999
- msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
- msgstr "Hubo un error al cargar el calendario. Por favor contacta al administrador del sitio para que configure las vistas de calendario."
2001
-
2002
- #: app/view/calendar/page.php:74
2003
- msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
- msgstr ""
2005
-
2006
- #: app/view/admin/settings.php:193
2007
- msgid "Phone Number:"
2008
- msgstr ""
2009
-
2010
- #: app/view/admin/settings.php:194
2011
- msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
- msgstr ""
2013
-
2014
- #: app/view/admin/settings.php:197
2015
- msgid "Sign Up"
2016
- msgstr ""
2017
-
2018
- #: app/view/admin/settings.php:198
2019
- msgid "Sign In"
2020
- msgstr ""
2021
-
2022
- #: app/view/admin/settings.php:212
2023
- msgid "Save Settings"
2024
- msgstr "Guardar ajustes"
2025
-
2026
- #: app/view/admin/settings.php:219
2027
- msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
- msgstr "Si el formulario de abajo no está funcionando, por favor sigue <a href=\"%s\">esta liga</a>."
2029
-
2030
- #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
- msgid "Theme Options"
2032
- msgstr "Opciones de tema"
2033
-
2034
- #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
- msgid "Calendar Theme Options"
2036
- msgstr "Opciones de tema de calendario"
2037
-
2038
- #: app/view/admin/theme-options.php:79
2039
- msgctxt "meta box"
2040
- msgid "Calendar Theme Options"
2041
- msgstr "Opciones de tema de calendario"
2042
-
2043
- #: app/view/admin/theme-options.php:133
2044
- msgid "General"
2045
- msgstr "General"
2046
-
2047
- #: app/view/admin/theme-options.php:136
2048
- msgid "Tables"
2049
- msgstr "Tablas"
2050
-
2051
- #: app/view/admin/theme-options.php:139
2052
- msgid "Buttons"
2053
- msgstr "Botones"
2054
-
2055
- #: app/view/admin/theme-options.php:142
2056
- msgid "Forms"
2057
- msgstr "Formularios"
2058
-
2059
- #: app/view/admin/theme-options.php:145
2060
- msgid "Calendar general"
2061
- msgstr "General de calendario"
2062
-
2063
- #: app/view/admin/theme-options.php:148
2064
- msgid "Month/week/day view"
2065
- msgstr "Vista de mes/semana/día"
2066
-
2067
- #: app/view/admin/theme-options.php:151
2068
- msgid "Agenda view"
2069
- msgstr "Vista de agenda"
2070
-
2071
- #: app/view/admin/theme-options.php:169
2072
- msgid "Save Options"
2073
- msgstr "Guardar opciones"
2074
-
2075
- #: app/view/admin/theme-options.php:177
2076
- msgid "Reset to Defaults"
2077
- msgstr "Restaurar a opciones por defecto"
2078
-
2079
- #: app/view/admin/theme-switching.php:31
2080
- msgid "All-in-One Event Calendar: Themes"
2081
- msgstr "Temas: All-in-One Event Calendar"
2082
-
2083
- #: app/view/admin/tickets.php:36
2084
- msgid "Ticketing"
2085
- msgstr ""
2086
-
2087
- #: app/view/admin/tickets.php:37
2088
- msgid "Ticketing<sup>beta</sup>"
2089
- msgstr ""
2090
-
2091
- #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
- msgid "Time.ly Ticketing<sup>beta</sup>"
2093
- msgstr ""
2094
-
2095
- #: app/view/admin/settings.php:98
2096
- msgctxt "meta box"
2097
- msgid "Timely"
2098
- msgstr "Timely"
2099
-
2100
- #: app/view/admin/settings.php:140
2101
- msgid "Viewing Events"
2102
- msgstr "Visualización de eventos"
2103
-
2104
- #: app/view/admin/settings.php:143
2105
- msgid "Adding/Editing Events"
2106
- msgstr "Creación/Modificación de eventos"
2107
-
2108
- #: app/view/admin/settings.php:146
2109
- msgid "Advanced"
2110
- msgstr "Avanzado"
2111
-
2112
- #: app/view/admin/settings.php:148
2113
- msgid "Advanced Settings"
2114
- msgstr "Ajustes avanzados"
2115
-
2116
- #: app/view/admin/settings.php:149
2117
- msgid "Shortcodes"
2118
- msgstr "Códigos abreviados"
2119
-
2120
- #: app/view/admin/settings.php:150
2121
- msgid "Email Templates"
2122
- msgstr "Plantillas de correo electrónico"
2123
-
2124
- #: app/view/admin/settings.php:151
2125
- msgid "External Services"
2126
- msgstr "Servicios externos"
2127
-
2128
- #: app/view/admin/settings.php:152
2129
- msgid "Cache Report"
2130
- msgstr "Reporte de caché"
2131
-
2132
- #: app/view/admin/settings.php:171
2133
- msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
- msgstr ""
2135
-
2136
- #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
- #: public/admin/box_ask_customer_review.php:112
2138
- #: public/admin/box_ask_customer_review.php:126
2139
- #: public/admin/box_ask_customer_review.php:140
2140
- #: public/admin/box_ask_customer_review.php:158
2141
- #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
- msgid "This field is required."
2143
- msgstr ""
2144
-
2145
- #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
- msgid "Register"
2147
- msgstr "Registrarse"
2148
-
2149
- #: app/view/admin/settings.php:184
2150
- msgid "Sign in"
2151
- msgstr ""
2152
-
2153
- #: app/view/admin/settings.php:185
2154
- msgid "You are successfully signed in to <b>Timely Network</b>."
2155
- msgstr ""
2156
-
2157
- #: app/view/admin/settings.php:186
2158
- msgid "Sign out"
2159
- msgstr ""
2160
-
2161
- #: app/view/admin/settings.php:187
2162
- msgid "Hide form"
2163
- msgstr ""
2164
-
2165
- #: app/view/admin/settings.php:188
2166
- msgid "Show form"
2167
- msgstr ""
2168
-
2169
- #: app/view/admin/settings.php:189
2170
- msgid "Full Name:"
2171
- msgstr ""
2172
-
2173
- #: app/view/admin/settings.php:190
2174
- msgid "Email:"
2175
- msgstr ""
2176
-
2177
- #: app/view/admin/settings.php:191
2178
- msgid "Password:"
2179
- msgstr ""
2180
-
2181
- #: app/view/admin/settings.php:192
2182
- msgid "Confirm Password:"
2183
- msgstr ""
2184
-
2185
- #: app/view/admin/get-repeat-box.php:483
2186
- msgid "fourth"
2187
- msgstr "cuarto"
2188
-
2189
- #: app/view/admin/get-repeat-box.php:495
2190
- msgid "Sunday"
2191
- msgstr "Domingo"
2192
-
2193
- #: app/view/admin/get-repeat-box.php:496
2194
- msgid "Monday"
2195
- msgstr "Lunes"
2196
-
2197
- #: app/view/admin/get-repeat-box.php:497
2198
- msgid "Tuesday"
2199
- msgstr "Martes"
2200
-
2201
- #: app/view/admin/get-repeat-box.php:498
2202
- msgid "Wednesday"
2203
- msgstr "Miércoles"
2204
-
2205
- #: app/view/admin/get-repeat-box.php:499
2206
- msgid "Thursday"
2207
- msgstr "Jueves"
2208
-
2209
- #: app/view/admin/get-repeat-box.php:500
2210
- msgid "Friday"
2211
- msgstr "Viernes"
2212
-
2213
- #: app/view/admin/get-repeat-box.php:501
2214
- msgid "Saturday"
2215
- msgstr "Sábados"
2216
-
2217
- #: app/view/admin/get-repeat-box.php:503
2218
- msgid "day"
2219
- msgstr "día"
2220
-
2221
- #: app/view/admin/get-repeat-box.php:504
2222
- msgid "weekday"
2223
- msgstr "Días laborables"
2224
-
2225
- #: app/view/admin/get-repeat-box.php:505
2226
- msgid "weekend day"
2227
- msgstr "Fines de semana"
2228
-
2229
- #: app/view/admin/get-repeat-box.php:571
2230
- msgid "year(s)"
2231
- msgstr "año(s)"
2232
-
2233
- #: app/view/admin/nav.php:22
2234
- msgid "<a href=\"%s\">Settings</a>"
2235
- msgstr "<a href=\"%s\">Ajustes</a>"
2236
-
2237
- #: app/view/admin/nav.php:28
2238
- msgid "<a href=\"%s\">Check for updates</a>"
2239
- msgstr ""
2240
-
2241
- #: app/view/admin/organize.php:100
2242
- msgid "Organize Events"
2243
- msgstr ""
2244
-
2245
- #: app/view/admin/settings.php:30
2246
- msgid "All-in-One Event Calendar: Settings"
2247
- msgstr "Ajustes de All-in-One Event Calendar:"
2248
-
2249
- #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
- #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
- msgid "Settings"
2252
- msgstr "Ajustes"
2253
-
2254
- #: app/view/admin/settings.php:89
2255
- msgctxt "meta box"
2256
- msgid "General Settings"
2257
- msgstr "Ajustes generales"
2258
-
2259
- #: app/view/admin/get-repeat-box.php:480
2260
- msgid "first"
2261
- msgstr "primero"
2262
-
2263
- #: app/view/admin/get-repeat-box.php:481
2264
- msgid "second"
2265
- msgstr "segundo"
2266
-
2267
- #: app/view/admin/get-repeat-box.php:482
2268
- msgid "third"
2269
- msgstr "tercero"
2270
-
2271
- #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
- msgid "Import Feeds"
2273
- msgstr ""
2274
-
2275
- #: app/view/admin/calendar-feeds.php:48
2276
- msgctxt "meta box"
2277
- msgid "Feed Subscriptions"
2278
- msgstr "Subscripciones a Fuentes"
2279
-
2280
- #: app/view/admin/calendar-feeds.php:65
2281
- msgid "All-in-One Event Calendar: Import Feeds"
2282
- msgstr ""
2283
-
2284
- #: app/view/admin/event-category.php:30
2285
- msgid "Color"
2286
- msgstr "Color"
2287
-
2288
- #: app/view/admin/event-category.php:32
2289
- msgid "Image"
2290
- msgstr "Imagen"
2291
-
2292
- #: app/view/admin/event-category.php:155
2293
- msgid "Category Color"
2294
- msgstr "Color de categoría"
2295
-
2296
- #: app/view/admin/event-category.php:156
2297
- msgid "Events in this category will be identified by this color"
2298
- msgstr "Los eventos de esta categoría se identificarán con este color."
2299
-
2300
- #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
- msgid "Category Image"
2302
- msgstr "Imagen de categoría"
2303
-
2304
- #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
- msgid "Add Image"
2306
- msgstr "Agregar imagen"
2307
-
2308
- #: app/view/admin/event-category.php:195
2309
- msgid "Remove Image"
2310
- msgstr "Remover imagen"
2311
-
2312
- #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
- msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
- msgstr "Asignar una imagen opcional a la categoría. Tamaño recomendado: cuadrado, mínimo de 400&times;400 pixeles."
2315
-
2316
- #: app/view/admin/get-repeat-box.php:94
2317
- msgid "times"
2318
- msgstr "veces"
2319
-
2320
- #: app/view/admin/get-repeat-box.php:164
2321
- msgid "Recurrence rule cannot be empty."
2322
- msgstr "La regla de recurrencia no puede estar vacía."
2323
-
2324
- #: app/view/admin/get-repeat-box.php:182
2325
- msgid "Recurrence rule was not provided."
2326
- msgstr "No se proporcionó regla de recurrencia."
2327
-
2328
- #: app/view/admin/get-repeat-box.php:209
2329
- msgid "Never"
2330
- msgstr "Nunca"
2331
-
2332
- #: app/view/admin/get-repeat-box.php:210
2333
- msgid "After"
2334
- msgstr "Número de veces"
2335
-
2336
- #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
- msgid "On date"
2338
- msgstr "Fecha concreta"
2339
-
2340
- #: app/view/admin/get-repeat-box.php:247
2341
- msgid "day(s)"
2342
- msgstr "día(s)"
2343
-
2344
- #: app/view/admin/get-repeat-box.php:330
2345
- msgid "week(s)"
2346
- msgstr "semana(s)"
2347
-
2348
- #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
- #: lib/recurrence/rule.php:298
2350
- msgid "last"
2351
- msgstr "último"
2352
-
2353
- #: app/view/admin/get-repeat-box.php:426
2354
- msgid "month(s)"
2355
- msgstr "Mes(es)"
2356
-
2357
- #: app/model/settings.php:929
2358
- msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
- msgstr "<strong>Incluye CSS</strong> en la sección <code>&lt;head&gt;</code> cuando la caché de ficheros js no esté disponible."
2360
-
2361
- #: app/model/settings.php:932
2362
- msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
- msgstr "Utiliza esta opción si la caché de ficheros no está disponible y si prefieres servir el fichero CSS como si fuera un enlace en lugar de incluirlo directamente."
2364
-
2365
- #: app/model/settings.php:944
2366
- msgid "Current <strong>robots.txt</strong> on this site"
2367
- msgstr "El <strong>robots.txt</strong> actual en este sitio"
2368
-
2369
- #: app/model/settings.php:948
2370
- msgid ""
2371
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
- "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
- "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
- "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
- "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
- msgstr ""
2377
- "El Robot Exclusion Standard, también conocido como el Robots Exclusion Protocol o\n"
2378
- "→\t→\t→\t→\t→\t→\tprotocolo <code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>,\n"
2379
- "→\t→\t→\t→\t→\t→\tes una convención para rastreadores web y robots web cooperadores\n"
2380
- "→\t→\t→\t→\t→\t→\tsobre accesar todo o parte de un sitio web que está a la vista públicamente.\n"
2381
- "→\t→\t→\t→\t→\t→\tPuedes cambiarlo manualmente al editar <code>robots.txt</code> en el directorio raíz de WordPress."
2382
-
2383
- #: app/model/settings.php:965
2384
- msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2385
- msgstr "<strong>Difunde, promociona y comparte</strong> entre los miembros de la red Timely los eventos seleccionados como públicos. (<a href=\"%s\" target=\"_blank\">Ver más &#187;</a>)"
2386
-
2387
- #: app/model/settings.php:988
2388
- msgid "Templates cache improves site performance"
2389
- msgstr "El cache de plantillas mejora el desempeño del sitio"
2390
-
2391
- #: app/model/settings.php:1001
2392
- msgid "Display events in <strong>calendar time zone</strong>"
2393
- msgstr ""
2394
-
2395
- #: app/model/settings.php:1004
2396
- msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
- msgstr ""
2398
-
2399
- #: app/view/admin/add-new-event.php:26
2400
- msgid "Event Details"
2401
- msgstr "Detalles del evento"
2402
-
2403
- #: app/view/admin/add-new-event.php:423
2404
- msgid "Set banner image"
2405
- msgstr ""
2406
-
2407
- #: app/view/admin/add-new-event.php:424
2408
- msgid "Remove banner image"
2409
- msgstr ""
2410
-
2411
- #: app/view/admin/add-ons.php:68
2412
- msgid "Add-ons for All In One Event Calendar"
2413
- msgstr ""
2414
-
2415
- #: app/view/admin/add-ons.php:71
2416
- msgid "Browse All Extensions"
2417
- msgstr ""
2418
-
2419
- #: app/view/admin/add-ons.php:74
2420
- msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
- msgstr ""
2422
-
2423
- #: app/view/admin/add-ons.php:77
2424
- msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
- msgstr ""
2426
-
2427
- #: app/view/admin/all-events.php:16
2428
- msgid "Author"
2429
- msgstr "Autor"
2430
-
2431
- #: app/view/admin/all-events.php:17
2432
- msgid "Post Date"
2433
- msgstr "Fecha de publicación"
2434
-
2435
- #: app/view/admin/all-events.php:18
2436
- msgid "Event date/time"
2437
- msgstr "Fecha/hora del evento"
2438
-
2439
- #: app/view/admin/all-events.php:22
2440
- msgid "Ticket Types"
2441
- msgstr ""
2442
-
2443
- #: app/view/admin/all-events.php:134
2444
- msgid "Show All "
2445
- msgstr "Mostrar Todo"
2446
-
2447
- #: app/view/admin/all-events.php:147
2448
- msgid "Show All Authors"
2449
- msgstr ""
2450
-
2451
- #: app/model/settings.php:746
2452
- msgid "Strict compatibility content filtering"
2453
- msgstr "Filtrado de contenido en modo de compatibilidad estricta"
2454
-
2455
- #: app/model/settings.php:758
2456
- msgid " <strong>Hide featured image</strong> from event details page"
2457
- msgstr " <strong>Esconder la imagen destacada</strong> de la página de detalles del evento"
2458
-
2459
- #: app/model/settings.php:761
2460
- msgid "Select this option if your theme already displays each post's featured image."
2461
- msgstr "Selecciona esta opción si tu tema ya despliega la imagen destacada de cada publicación."
2462
-
2463
- #: app/model/settings.php:772
2464
- msgid "Input dates in this format"
2465
- msgstr "Introducir fechas en este formato:"
2466
-
2467
- #: app/model/settings.php:777
2468
- msgid "Default (d/m/yyyy)"
2469
- msgstr "Por defecto (d/m/yyyy)"
2470
-
2471
- #: app/model/settings.php:781
2472
- msgid "US (m/d/yyyy)"
2473
- msgstr "EUA (m/d/yyyy)"
2474
-
2475
- #: app/model/settings.php:785
2476
- msgid "ISO 8601 (yyyy-m-d)"
2477
- msgstr "ISO 8601 (yyyy-m-d)"
2478
-
2479
- #: app/model/settings.php:789
2480
- msgid "Dotted (m.d.yyyy)"
2481
- msgstr "Punteado (m.d.yyyy)"
2482
-
2483
- #: app/model/settings.php:801
2484
- msgid " Use <strong>24h time</strong> in time pickers"
2485
- msgstr "Usar <strong>tiempo de 24h</strong> en los seleccionadores de tiempo"
2486
-
2487
- #: app/model/settings.php:812
2488
- msgid "<strong>Disable address autocomplete</strong> function"
2489
- msgstr "<strong>Desactivar el autocompletado de direcciones</strong>"
2490
-
2491
- #: app/model/settings.php:823
2492
- msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2493
- msgstr "Usar la <strong>región</strong> configurada (localidad de WordPress) para afectar la función de autocompletar direcciones"
2494
-
2495
- #: app/model/settings.php:839
2496
- msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2497
- msgstr "Mostrar el viejo botón de <strong>Publicar tu evento</strong> arriba del calendario a los usuarios privilegiados"
2498
-
2499
- #: app/model/settings.php:842
2500
- msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2501
- msgstr "Instalar la <a target=\"_blank\" href=\"http://time.ly/\">Extensión interactiva de interfaz de usuario </a> para la interfaz de usuario del <strong>formulario de Publica tu propio evento</strong>."
2502
-
2503
- #: app/model/settings.php:863
2504
- msgid "Move calendar into this DOM element"
2505
- msgstr "Mover el calendario a este elemento DOM:"
2506
-
2507
- #: app/model/settings.php:865
2508
- msgid ""
2509
- "Optional. Use this JavaScript-based shortcut to place the\n"
2510
- "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2511
- "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2512
- "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2513
- "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2514
- "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2515
- "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2516
- "\t\t\t\t\t\tby the calendar."
2517
- msgstr ""
2518
- "Opcional. Usa este atajo basado en JavaScript para poner el\n"
2519
- "→\t→\t→\t→\t→\t→\tcalendario en un elemento DOM en un contenedor aparte del contenido regular de la página\n"
2520
- "→\t→\t→\t→\t→\t→\tsi no puedes crear una página de plantilla apropiada\n"
2521
- "→\t→\t→\t→\t→\t→\t para la página de calendario. Para usarla, inserta un \n"
2522
- "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2523
- "→\t→\t→\t→\t→\t→\tselector jQuery</a> que evalúe un solo elemento DOM.\n"
2524
- "→\t→\t→\t→\t→\t→\tCualquier marcado existente que se encuentre dentro del objetivo \n"
2525
- "→\t→\t→\t→\t→\t→\tserá reemplazado por el calendario."
2526
-
2527
- #: app/model/settings.php:884
2528
- msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2529
- msgstr "<strong>Saltar la revisión <tt>in_the_loop()</tt> </strong> que protege contra la salida múltiple de calendarios"
2530
-
2531
- #: app/model/settings.php:887
2532
- msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2533
- msgstr "Intenta habilitar esta opción si tu calendario no aparece en la página de calendario. Se necesita para la compatibilidad con un pequeño número de temas que llaman <tt>the_content()</tt> desde afuera de The Loop. De no ser el caso, dejar deshabilitado."
2534
-
2535
- #: app/model/settings.php:899
2536
- msgid "Disable <strong>gzip</strong> compression."
2537
- msgstr "Desactivar la compresión <strong>gzip</strong>."
2538
-
2539
- #: app/model/settings.php:902
2540
- msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2541
- msgstr "Use esta opción si el calendario no responde. <a href=\"http://support.time.ly/disable-gzip-compression/\">Lea más</a> sobre el problema. (Desde la versión 2.1 en adelante, gzip se deshabilita por defecto para mayor compatibilidad.)"
2542
-
2543
- #: app/model/settings.php:914
2544
- msgid "Use frontend rendering."
2545
- msgstr ""
2546
-
2547
- #: app/model/settings.php:917
2548
- msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
- msgstr ""
2550
-
2551
- #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
- msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
- msgstr "Para despejar, sostén &#8984;/<abbr class=\"initialism\">CTRL</abbr> y haz click en la selección."
2554
-
2555
- #: app/model/settings.php:508
2556
- msgid "Default calendar start date (optional)"
2557
- msgstr "Fecha de inicio del calendario por defecto (opcional)"
2558
-
2559
- #: app/model/settings.php:519
2560
- msgid "Agenda pages show at most"
2561
- msgstr "Las páginas de la agenda muestran como mucho"
2562
-
2563
- #: app/model/settings.php:532
2564
- msgid "Week/Day view starts at"
2565
- msgstr "La vista de Semana/Día comienza en:"
2566
-
2567
- #: app/model/settings.php:545
2568
- msgid "Week/Day view ends at"
2569
- msgstr "La vista de Semana/Día termina en:"
2570
-
2571
- #: app/model/settings.php:558
2572
- msgid "<strong>Word-wrap event stubs</strong> in Month view"
2573
- msgstr "<strong>Ajuste de línea en texto corto de eventos</strong> en la vista de Mes"
2574
-
2575
- #: app/model/settings.php:561
2576
- msgid "Only applies to events that span a single day."
2577
- msgstr "Sólo aplica a eventos que abarcan un solo día."
2578
-
2579
- #: app/model/settings.php:573
2580
- msgid ""
2581
- "In <span class=\"ai1ec-tooltip-toggle\"\n"
2582
- "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2583
- "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2584
- "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2585
- "\t\t\t\t\t\tfrom last day shown</strong>"
2586
- msgstr ""
2587
- "En <span class=\"ai1ec-tooltip-toggle\"\n"
2588
- "→\t→\t→\t→\t→\t→\tdata-original-title=\"Estos incluyen vista de agenda,\n"
2589
- "→\t→\t→\t→\t→\t→\tel widget de Eventos Próximos y algunas vistas extendidas.\">\n"
2590
- "→\t→\t→\t→\t→\t→\tVista como de agenda</span>, <strong>incluír todos los eventos\n"
2591
- "→\t→\t→\t→\t→\t→\t del última día mostrado</strong>"
2592
-
2593
- #: app/model/settings.php:589
2594
- msgid "Keep all events <strong>expanded</strong> in Agenda view"
2595
- msgstr "Mantener todos los eventos <strong>expandidos</strong> en la vista de agenda."
2596
-
2597
- #: app/model/settings.php:601
2598
- msgid "<strong>Show year</strong> in calendar date labels"
2599
- msgstr "<strong>Mostrar el año</strong> en las etiquetas de fecha del calendario"
2600
-
2601
- #: app/model/settings.php:613
2602
- msgid "<strong>Show location in event titles</strong> in calendar views"
2603
- msgstr "<strong>Mostrar la ubicación en los títulos de los eventos</strong> en la vista de calendario"
2604
-
2605
- #: app/model/settings.php:625
2606
- msgid "<strong>Exclude</strong> events from search results"
2607
- msgstr "<strong>Excluir</strong> los eventos de las búsquedas"
2608
-
2609
- #: app/model/settings.php:637
2610
- msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2611
- msgstr "Ocultar botones de <strong>Suscribir</strong>/<strong>Agregar a calendario</strong> en las vistas de calendario y eventos individuales"
2612
-
2613
- #: app/model/settings.php:649
2614
- msgid "Hide <strong>Get a Timely Calendar</strong> button"
2615
- msgstr ""
2616
-
2617
- #: app/model/settings.php:661
2618
- msgid " Hide <strong>Google Maps</strong> until clicked"
2619
- msgstr "Esconder <strong>Google Maps</strong> hasta hacerle clic"
2620
-
2621
- #: app/model/settings.php:673
2622
- msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2623
- msgstr " <strong>Fijar el menú de filtrado</strong> a la parte superior de la ventana cuando se desplaze fuera de vista"
2624
-
2625
- #: app/model/settings.php:676
2626
- msgid "Only applies to first visible calendar found on the page."
2627
- msgstr ""
2628
-
2629
- #: app/model/settings.php:688
2630
- msgid "Offset affixed filter bar vertically by"
2631
- msgstr "Compensar la barra de filtro fija verticalmente por"
2632
-
2633
- #: app/model/settings.php:703
2634
- msgid "Wide screens only (&#8805; 1200px)"
2635
- msgstr "Solamente disponible para pantallas panorámicas (&#8805; 1200px)"
2636
-
2637
- #: app/model/settings.php:718
2638
- msgid "Tablets only (< 980px)"
2639
- msgstr "Solo para tabletas (< 980px)"
2640
-
2641
- #: app/model/settings.php:733
2642
- msgid "Phones only (< 768px)"
2643
- msgstr "Sólo teléfonos (< 768px)"
2644
-
2645
- #: app/model/api.php:456
2646
- msgid "Not available"
2647
- msgstr ""
2648
-
2649
- #: app/model/api.php:659
2650
- msgid "%s.<br/>Detail: %s."
2651
- msgstr ""
2652
-
2653
- #: app/model/api.php:664
2654
- msgid "API URL: %s.<br/>Detail: %s - %s"
2655
- msgstr ""
2656
-
2657
- #: app/model/api.php:672
2658
- msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2659
- msgstr ""
2660
-
2661
- #: app/model/api.php:679
2662
- msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2663
- msgstr ""
2664
-
2665
- #: app/model/event/parent.php:186
2666
- msgid "Edit &#8220;%s&#8221;"
2667
- msgstr "Editar &#8220;%s&#8221;"
2668
-
2669
- #: app/model/event/parent.php:193
2670
- msgid "Base Event"
2671
- msgstr "Evento base"
2672
-
2673
- #: app/model/review.php:169
2674
- msgid "Feedback provided by user"
2675
- msgstr ""
2676
-
2677
- #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2678
- msgid "Name"
2679
- msgstr "Nombre"
2680
-
2681
- #: app/model/review.php:173
2682
- msgid "E-mail"
2683
- msgstr ""
2684
-
2685
- #: app/model/review.php:175
2686
- msgid "Site URL"
2687
- msgstr ""
2688
-
2689
- #: app/model/review.php:177
2690
- msgid "Message"
2691
- msgstr ""
2692
-
2693
- #: app/model/settings.php:401
2694
- #: lib/html/element/setting/calendar-page-selector.php:50
2695
- msgid "Calendar page"
2696
- msgstr "Página de calendario"
2697
-
2698
- #: app/model/settings.php:411
2699
- msgid "Week starts on"
2700
- msgstr "La semana empieza en"
2701
-
2702
- #: app/model/settings.php:424
2703
- msgid "Available views"
2704
- msgstr "Vistas disponibles"
2705
-
2706
- #: app/model/settings.php:432
2707
- msgid "Agenda"
2708
- msgid_plural "Agenda"
2709
- msgstr[0] "Agenda"
2710
- msgstr[1] ""
2711
-
2712
- #: app/model/settings.php:443
2713
- msgid "Day"
2714
- msgid_plural "Day"
2715
- msgstr[0] "Día"
2716
- msgstr[1] ""
2717
-
2718
- #: app/model/settings.php:454
2719
- msgid "Month"
2720
- msgid_plural "Month"
2721
- msgstr[0] "Mes"
2722
- msgstr[1] ""
2723
-
2724
- #: app/model/settings.php:465
2725
- msgid "Week"
2726
- msgid_plural "Week"
2727
- msgstr[0] "Semana"
2728
- msgstr[1] ""
2729
-
2730
- #: app/model/settings.php:479
2731
- msgid "Timezone"
2732
- msgstr "Zona Horaria"
2733
-
2734
- #: app/model/settings.php:492
2735
- msgid "Preselected calendar filters"
2736
- msgstr "Filtros de calendario preseleccionados"
2737
-
2738
- #: app/controller/javascript.php:509
2739
- msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2740
- msgstr ""
2741
-
2742
- #: app/controller/javascript.php:516
2743
- msgid "The end date can't be earlier than the start date."
2744
- msgstr ""
2745
-
2746
- #: app/controller/javascript.php:517
2747
- msgid "For week and day view, you must select an interval of at least 6 hours."
2748
- msgstr ""
2749
-
2750
- #: app/model/api.php:40
2751
- msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2752
- msgstr ""
2753
-
2754
- #: app/model/api.php:41
2755
- msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2756
- msgstr ""
2757
-
2758
- #: app/model/api.php:42
2759
- msgid "We were unable to Sign you Up for Time.ly Ticketing"
2760
- msgstr ""
2761
-
2762
- #: app/model/api.php:43
2763
- msgid "We were unable to Sign you In for Time.ly Ticketing"
2764
- msgstr ""
2765
-
2766
- #: app/model/api.php:44
2767
- msgid "We were unable to create the Event on Time.ly Ticketing"
2768
- msgstr ""
2769
-
2770
- #: app/model/api.php:45
2771
- msgid "We were unable to update the Event on Time.ly Ticketing"
2772
- msgstr ""
2773
-
2774
- #: app/model/api.php:46
2775
- msgid "The event has the option Tickets selected but any ticket was added."
2776
- msgstr ""
2777
-
2778
- #: app/model/api.php:47
2779
- msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2780
- msgstr ""
2781
-
2782
- #: app/model/api.php:48
2783
- msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2784
- msgstr ""
2785
-
2786
- #: app/model/api.php:49
2787
- msgid "Payment preferences were not saved."
2788
- msgstr ""
2789
-
2790
- #: app/model/api.php:50
2791
- msgid "Payment preferences were saved."
2792
- msgstr ""
2793
-
2794
- #: app/model/api.php:51
2795
- msgid "Event not found inside the database."
2796
- msgstr ""
2797
-
2798
- #: app/model/api.php:52
2799
- msgid "We were unable to get the Sales information from Time.ly Ticketing"
2800
- msgstr ""
2801
-
2802
- #: app/model/api.php:446
2803
- msgid "Past Event"
2804
- msgstr ""
2805
-
2806
- #: app/model/api.php:448
2807
- msgid "Event closed"
2808
- msgstr ""
2809
-
2810
- #: app/model/api.php:450
2811
- msgid "Not available yet"
2812
- msgstr ""
2813
-
2814
- #: app/model/api.php:452
2815
- msgid "Sale closed"
2816
- msgstr ""
2817
-
2818
- #: app/model/api.php:454
2819
- msgid "Sold out"
2820
- msgstr ""
2821
-
2822
- #: app/controller/javascript.php:484
2823
- msgid "Report"
2824
- msgstr ""
2825
-
2826
- #: app/controller/javascript.php:485
2827
- msgid "Sale dates"
2828
- msgstr ""
2829
-
2830
- #: app/controller/javascript.php:486
2831
- msgid "Limits"
2832
- msgstr ""
2833
-
2834
- #: app/controller/javascript.php:487
2835
- msgid "Actions"
2836
- msgstr ""
2837
-
2838
- #: app/controller/javascript.php:488
2839
- msgid "Sold:"
2840
- msgstr ""
2841
-
2842
- #: app/controller/javascript.php:489
2843
- msgid "Left:"
2844
- msgstr ""
2845
-
2846
- #: app/controller/javascript.php:490
2847
- msgid "Start:"
2848
- msgstr ""
2849
-
2850
- #: app/controller/javascript.php:491
2851
- msgid "End:"
2852
- msgstr ""
2853
-
2854
- #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2855
- msgid "Min:"
2856
- msgstr ""
2857
-
2858
- #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2859
- msgid "Max:"
2860
- msgstr ""
2861
-
2862
- #: app/controller/javascript.php:494
2863
- msgid "Attendees"
2864
- msgstr ""
2865
-
2866
- #: app/controller/javascript.php:495
2867
- msgid "Hide Attendees"
2868
- msgstr ""
2869
-
2870
- #: app/controller/javascript.php:496
2871
- msgid "Attendees List"
2872
- msgstr ""
2873
-
2874
- #: app/controller/javascript.php:497
2875
- msgid "Guest Name"
2876
- msgstr ""
2877
-
2878
- #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2879
- msgid "Status"
2880
- msgstr ""
2881
-
2882
- #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2883
- #: app/view/event/ticket.php:71
2884
- msgid "Email"
2885
- msgstr "Correo electrónico"
2886
-
2887
- #: app/controller/javascript.php:500
2888
- msgid "No attendees for this ticket type."
2889
- msgstr ""
2890
-
2891
- #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2892
- #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2893
- msgid "Edit"
2894
- msgstr "Editar"
2895
-
2896
- #: app/controller/javascript.php:502
2897
- msgid "Code"
2898
- msgstr ""
2899
-
2900
- #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2901
- msgid "Unlimited"
2902
- msgstr ""
2903
-
2904
- #: app/controller/javascript.php:506
2905
- msgid "Your message has been sent. Thank you for your feedback."
2906
- msgstr ""
2907
-
2908
- #: app/controller/javascript.php:507
2909
- msgid "Your message has not been sent. Please try again or contact us."
2910
- msgstr ""
2911
-
2912
- #: app/controller/javascript.php:405
2913
- msgid "Please enter a valid iCalendar URL."
2914
- msgstr "Por favor introduce una URL válida para iCalendar."
2915
-
2916
- #: app/controller/javascript.php:408
2917
- msgid "Please enter a valid email address."
2918
- msgstr "Por favor ingresa una dirección de correo electrónico válida."
2919
-
2920
- #: app/controller/javascript.php:410
2921
- msgid "Choose Image"
2922
- msgstr "Selecciona imagen"
2923
-
2924
- #: app/controller/javascript.php:413
2925
- msgid "The value you have entered is not a valid CSS length."
2926
- msgstr "El valor que ingresaste no es una longitud de CSS válida."
2927
-
2928
- #: app/controller/javascript.php:416
2929
- msgid "Are you sure you want to reset your theme options to their default values?"
2930
- msgstr "¿Estás seguro que quieres restaurar las opciones de tema a sus valores por defecto?"
2931
-
2932
- #: app/controller/javascript.php:419
2933
- msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2934
- msgstr "Por favor, introduce una latitud válida. Las latitudes válidas están comprendidas entre +90 y -90"
2935
-
2936
- #: app/controller/javascript.php:422
2937
- msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2938
- msgstr "Por favor, introduce un valor válido para la longitud. Los valores válidos están comprendidos entre +180 y -180."
2939
-
2940
- #: app/controller/javascript.php:425
2941
- msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2942
- msgstr "Cuando se marca la casilla \"Inserción de coordenadas\" el campo \"Latutid\" es obligatorio"
2943
-
2944
- #: app/controller/javascript.php:428
2945
- msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2946
- msgstr "Cuando se marca la casilla \"Inserción de corrdenadas\", el campo \"Longitud\" es obligatorio"
2947
-
2948
- #: app/controller/javascript.php:431
2949
- msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2950
- msgstr ""
2951
-
2952
- #: app/controller/javascript.php:434
2953
- msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2954
- msgstr "La URL que has introducido en <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> parece ser inválida"
2955
-
2956
- #: app/controller/javascript.php:437
2957
- msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2958
- msgstr "Recuerda que las URLs deben comenzar por \"http://\" o por \"https://\"."
2959
-
2960
- #: app/controller/javascript.php:440
2961
- msgid "Loading&hellip;"
2962
- msgstr ""
2963
-
2964
- #: app/controller/javascript.php:443
2965
- msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2966
- msgstr ""
2967
-
2968
- #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2969
- msgid "Preview:"
2970
- msgstr "Vista previa:"
2971
-
2972
- #: app/controller/javascript.php:474
2973
- msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2974
- msgstr "Cargando vista previa&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2975
-
2976
- #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2977
- msgid "Ticketing Details"
2978
- msgstr ""
2979
-
2980
- #: app/controller/javascript.php:480
2981
- msgid "Hide Ticketing Details"
2982
- msgstr ""
2983
-
2984
- #: app/controller/javascript.php:481
2985
- msgid "Loading tickets details..."
2986
- msgstr ""
2987
-
2988
- #: app/controller/javascript.php:482
2989
- msgid "Type and price"
2990
- msgstr ""
2991
-
2992
- #: app/controller/javascript.php:483
2993
- msgid "Info"
2994
- msgstr ""
2995
-
2996
- #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2997
- #: app/view/admin/add-ons.php:27
2998
- msgid "Add-ons"
2999
- msgstr "Extensiones"
3000
-
3001
- #: app/controller/front.php:343
3002
- msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
3003
- msgstr "Tu tema de calendario actual no se pudo inicializar de manera correcta. El tema por defecto se ha activado en su lugar. Por favor visita %s e intenta reactivar tu tema manualmente."
3004
-
3005
- #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3006
- #: app/view/admin/theme-switching.php:55
3007
- msgid "Calendar Themes"
3008
- msgstr "Calendario"
3009
-
3010
- #: app/controller/front.php:990
3011
- msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3012
- msgstr "Tu base de datos se encuentra corrompida. Probablemente falló la actualización anterior. Por favor restaura las tablas de All-in-One Event Calendar usando un respaldo y vuelve a intentar.<br>Los siguientes errores fueron encontrados:<br>%s"
3013
-
3014
- #: app/controller/javascript-widget.php:48
3015
- msgid "You must choose the Calendar page before using the Super Widget"
3016
- msgstr ""
3017
-
3018
- #: app/controller/javascript.php:402
3019
- msgid "This feed is already being imported."
3020
- msgstr "Este fuente ya ha sido importada."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/all-in-one-event-calendar-fr.mo DELETED
Binary file
language/all-in-one-event-calendar-fr.po DELETED
@@ -1,3015 +0,0 @@
1
- # Translation of 2.3 in French (France)
2
- # This file is distributed under the same license as the 2.3 package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:40:11+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
- "X-Generator: GlotPress/1.0-alpha-1000\n"
11
- "Project-Id-Version: 2.3\n"
12
-
13
- #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
- #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
- msgid "Event background"
16
- msgstr "Fond d'un événement"
17
-
18
- #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
- #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
- msgid "Event time background"
21
- msgstr "Arrière plan de l'horaire d'un événement"
22
-
23
- #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
- #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
- msgid "Event text"
26
- msgstr "Texte de l'événement"
27
-
28
- #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
- #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
- msgid "Month view date background"
31
- msgstr "Fond de la date dans la vue mensuelle"
32
-
33
- #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
- #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
- msgid "Week/day view now marker"
36
- msgstr "Marqueur du jour courant de la vue semaine/jour"
37
-
38
- #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
- #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
- msgid "Date label accent color"
41
- msgstr "Couleur d'accentuation du label de date"
42
-
43
- #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
- #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
- msgid "Date label background"
46
- msgstr "Fond du label de date"
47
-
48
- #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
- #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
- msgid "Date background"
51
- msgstr "Fond de date"
52
-
53
- #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
- #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
- msgid "Today background"
56
- msgstr "Fond du jour courant"
57
-
58
- #. Plugin Name of the plugin/theme
59
- msgid "All-in-One Event Calendar by Time.ly"
60
- msgstr "All-in-One Event Calendar par Time.ly"
61
-
62
- #. Description of the plugin/theme
63
- msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
- msgstr "Un système de calendrier avec des vues mois, semaine, jour et agenda, un widget d'événements à venir, code couleur de catégories, récurrence, et import/export de flux .ics."
65
-
66
- #. Author of the plugin/theme
67
- msgid "Time.ly Network Inc."
68
- msgstr "Time.ly Network Inc."
69
-
70
- #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
- #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
- msgid "List item background (active/hover)"
73
- msgstr "Fond des listes (active/hover)"
74
-
75
- #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
- #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
- msgid "Input field placeholder text"
78
- msgstr "Texte fictif de champs de saisie"
79
-
80
- #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
- #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
- msgid "Today color"
83
- msgstr "Couleur du jour courant"
84
-
85
- #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
- #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
- msgid "All-day badge color"
88
- msgstr "Couleur de badge d'un événement journée entière"
89
-
90
- #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
- #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
- msgid "Event image shadow"
93
- msgstr "Ombre de l'image d'un événement"
94
-
95
- #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
- #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
- msgid "Event default color"
98
- msgstr "Couleur par défaut d'évènement"
99
-
100
- #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
- #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
- msgid "Event default color (hover)"
103
- msgstr "Couleur par défaut d'évènement (hover)"
104
-
105
- #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
- #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
- msgid "All-day/multi-day event stub text"
108
- msgstr "Texte de talon d'événement Journée entière/Journées multiples"
109
-
110
- #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
- #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
- msgid "All-day/multi-day event stub text shadow"
113
- msgstr "Ombre de texte de talon d'événement Journée entière/Journées multiples "
114
-
115
- #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
- #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
- msgid "Event border"
118
- msgstr "Bordure d'un événement"
119
-
120
- #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
- #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
- msgid "Button text"
123
- msgstr "Texte de bouton"
124
-
125
- #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
- #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
- msgid "Input field text"
128
- msgstr "Texte de champs de saisie"
129
-
130
- #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
- #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
- msgid "Input field background"
133
- msgstr "Fond de champs de saisie"
134
-
135
- #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
- #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
- msgid "Input field border"
138
- msgstr "Bordure de champs de saisie"
139
-
140
- #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
- #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
- msgid "Input field border (focus)"
143
- msgstr "Bordure de champs de saisie (focus)"
144
-
145
- #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
- #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
- msgid "Input field background (disabled)"
148
- msgstr "Fond de champs de saisie (désactivé)"
149
-
150
- #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
- #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
- msgid "Field label"
153
- msgstr "Label de champs"
154
-
155
- #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
- #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
- msgid "Dropdown list background"
158
- msgstr "Fond des listes déroulantes"
159
-
160
- #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
- #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
- msgid "Dropdown list border"
163
- msgstr "Bordure des listes déroulantes"
164
-
165
- #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
- #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
- msgid "List item text"
168
- msgstr "Texte des listes"
169
-
170
- #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
- #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
- msgid "List item text (active/hover)"
173
- msgstr "Texte des listes (active/hover)"
174
-
175
- #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
- msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
- msgstr "Nouveau thème activé. <a href=\"%s\">Visiter le site</a>"
178
-
179
- #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
- msgid "Theme deleted."
181
- msgstr "Thème supprimé."
182
-
183
- #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
- msgid "Manage Themes"
185
- msgstr "Gérer Thèmes"
186
-
187
- #: public/admin/themes-install.php:40
188
- msgctxt "theme"
189
- msgid "Install Themes"
190
- msgstr "Installer Thèmes"
191
-
192
- #: public/admin/themes-updated.php:5
193
- msgid "Update Calendar Themes"
194
- msgstr "Mise à jour Thèmes Calendrier"
195
-
196
- #: public/admin/themes-updated.php:15
197
- msgid "All-in-One Event Calendar Settings »"
198
- msgstr "Paramètres All-in-One Event Calendar »"
199
-
200
- #: public/admin/themes.php:18
201
- msgid "Current Calendar Theme"
202
- msgstr "Thème Calendrier Actuel"
203
-
204
- #: public/admin/themes.php:21
205
- msgid "Current theme preview"
206
- msgstr "Prévisualisation du thème actuel"
207
-
208
- #: public/admin/themes.php:47
209
- msgid "Available Calendar Themes"
210
- msgstr "Thèmes Calendrier Disponibles"
211
-
212
- #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
- #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
- msgid "Body background"
215
- msgstr "Fond écran principal"
216
-
217
- #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
- #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
- msgid "Text color"
220
- msgstr "Couleur de texte"
221
-
222
- #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
- #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
- msgid "Text emboss"
225
- msgstr "Texte en relief"
226
-
227
- #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
- #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
- msgid "Link"
230
- msgstr "Lien"
231
-
232
- #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
- #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
- msgid "Link (hover)"
235
- msgstr "Lien (hover)"
236
-
237
- #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
- #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
- msgid "Base font"
240
- msgstr "Police de base"
241
-
242
- #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
- #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
- msgid "Base font size"
245
- msgstr "Taille de police de base"
246
-
247
- #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
- #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
- msgid "Table background"
250
- msgstr "Fond de tableau"
251
-
252
- #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
- #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
- msgid "Table header background"
255
- msgstr "Fond d'en-tête de tableau"
256
-
257
- #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
- #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
- msgid "Table header text"
260
- msgstr "Texte d'en-tête de tableau"
261
-
262
- #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
- #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
- msgid "Primary brand color"
265
- msgstr "Couleur principale"
266
-
267
- #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
- #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
- msgid "Button background"
270
- msgstr "Fond de bouton"
271
-
272
- #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
- #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
- msgid "Button border"
275
- msgstr "Bord de bouton"
276
-
277
- #: public/admin/feed_row.php:104
278
- msgid "Refreshing&#8230;"
279
- msgstr "Actualisation&#8230;"
280
-
281
- #: public/admin/feed_row.php:106
282
- msgid "Refresh"
283
- msgstr "Rafraichir"
284
-
285
- #: public/admin/feed_row.php:119
286
- msgid "Removing&#8230;"
287
- msgstr "Suppression&#8230;"
288
-
289
- #: public/admin/feed_row.php:121
290
- msgid "Remove"
291
- msgstr "Supprimer"
292
-
293
- #: public/admin/import.php:6
294
- msgid "Successfully imported events:"
295
- msgstr "Événements importés avec succès :"
296
-
297
- #: public/admin/plugins/ics/display_feeds.php:2
298
- msgid ""
299
- "Configure which other calendars your own calendar subscribes to.\n"
300
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
- " Enter the feed URL(s) below and the events from those feeds will be\n"
302
- " imported periodically."
303
- msgstr ""
304
- "Configurez à quel(s) autre(s) calendrier(s) votre propre calendrier souscrit.\n"
305
- " Vous pouvez ajouter n'importe quel calendrier fournissant un flux iCalendar (.ics).\n"
306
- " Entrez le(s) URL(s) ci-dessous et les événements de ces flux seront\n"
307
- " importés périodiquement."
308
-
309
- #: public/admin/plugins/ics/display_feeds.php:14
310
- msgid "Check for new events"
311
- msgstr "Vérifier les nouveaux événements"
312
-
313
- #: public/admin/plugins/ics/display_feeds.php:45
314
- msgid "Allow comments on imported events"
315
- msgstr "Autoriser les commentaires sur les évènements importés"
316
-
317
- #: public/admin/plugins/ics/display_feeds.php:52
318
- msgid "Show map on imported events"
319
- msgstr "Afficher la carte sur les événements importés"
320
-
321
- #: public/admin/plugins/ics/display_feeds.php:59
322
- msgid "Import any tags/categories provided by feed, in addition those selected above"
323
- msgstr "Importer tous les mots-clés/catégories fournies par le flux, en plus de ceux sélectionnés ci-dessous."
324
-
325
- #: public/admin/plugins/ics/display_feeds.php:93
326
- msgid "Add new subscription"
327
- msgstr "Ajouter une nouvelle souscription"
328
-
329
- #: public/admin/plugins/ics/display_feeds.php:96
330
- msgid "Update subscription"
331
- msgstr ""
332
-
333
- #: public/admin/row_custom.php:3
334
- msgid "Custom dates:"
335
- msgstr "Dates personnalisées:"
336
-
337
- #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
- #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
- #: public/admin/row_yearly.php:3
340
- msgid "Every"
341
- msgstr "Chaque"
342
-
343
- #: public/admin/row_monthly.php:16
344
- msgid "On day of the month"
345
- msgstr "Au jour du mois"
346
-
347
- #: public/admin/row_monthly.php:23
348
- msgid "On day of the week"
349
- msgstr "Au jour de la semaine"
350
-
351
- #: public/admin/row_weekly.php:12
352
- msgctxt "Recurrence editor - weekly tab"
353
- msgid "On"
354
- msgstr "Le"
355
-
356
- #: public/admin/row_yearly.php:12
357
- msgctxt "Recurrence editor - yearly tab"
358
- msgid "In"
359
- msgstr "En"
360
-
361
- #: public/admin/settings.php:19
362
- msgid "Update Settings"
363
- msgstr "Mettre à jour Paramètres"
364
-
365
- #: public/admin/themes-install.php:4
366
- msgid "The active theme is broken. Reverting to the default theme."
367
- msgstr "Le thème actif est cassé. Basculement vers le thème par défaut en cours."
368
-
369
- #: public/admin/themes-install.php:13
370
- msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
- msgstr "Nouveau thème activé. Ce thème supporte les widgets, veuillez consulter l'écran <a href=\"%s\">paramètres widgets</a> pour les configurer."
372
-
373
- #: public/admin/calendar_tasks.php:24
374
- msgid "Manage Events"
375
- msgstr "Gérer Événements"
376
-
377
- #: public/admin/calendar_tasks.php:27
378
- msgid "View and edit all your events."
379
- msgstr "Affichez et modifiez tous vos événements."
380
-
381
- #: public/admin/calendar_tasks.php:39
382
- msgid "Manage Event Categories"
383
- msgstr "Gérer Catégories Évènement"
384
-
385
- #: public/admin/calendar_tasks.php:42
386
- msgid "Organize and color-code your events."
387
- msgstr "Organisez et colorez vos événements."
388
-
389
- #: public/admin/calendar_tasks.php:50
390
- msgid "Choose Your Theme"
391
- msgstr "Choisissez votre thème"
392
-
393
- #: public/admin/calendar_tasks.php:53
394
- msgid "Change the look and feel."
395
- msgstr "Changer l'apparence."
396
-
397
- #: public/admin/calendar_tasks.php:63
398
- msgid "Manage Calendar Feeds"
399
- msgstr "Gérer Flux Calendrier"
400
-
401
- #: public/admin/calendar_tasks.php:66
402
- msgid "Subscribe to other calendars."
403
- msgstr "Souscrire à d'autres calendriers."
404
-
405
- #: public/admin/calendar_tasks.php:74
406
- msgid "Edit Calendar Settings"
407
- msgstr "Modifier Paramètres Calendrier"
408
-
409
- #: public/admin/calendar_tasks.php:77
410
- msgid "Make this calendar your own."
411
- msgstr "Faites de ce calendrier le vôtre."
412
-
413
- #: public/admin/cron_freq.php:3
414
- msgid "Hourly"
415
- msgstr "Chaque heure"
416
-
417
- #: public/admin/cron_freq.php:6
418
- msgid "Twice Daily"
419
- msgstr "Deux fois par jour"
420
-
421
- #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
- msgid "iCalendar/.ics Feed URL:"
423
- msgstr "URL Flux iCalendar/.ics :"
424
-
425
- #: public/admin/feed_row.php:24
426
- msgid "Event categories:"
427
- msgstr "Catégories d'événement:"
428
-
429
- #: public/admin/feed_row.php:31
430
- msgid "Tag with"
431
- msgstr "Taguer avec"
432
-
433
- #: public/admin/feed_row.php:40
434
- msgid "Allow comments"
435
- msgstr "Autoriser les commentaires"
436
-
437
- #: public/admin/feed_row.php:51
438
- msgid "Show map"
439
- msgstr "Afficher la carte"
440
-
441
- #: public/admin/feed_row.php:63
442
- msgid "Keep original events categories and tags"
443
- msgstr "Garder les catégories et mots-clés originaux des événements"
444
-
445
- #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
- msgid "On refresh, preserve previously imported events that are missing from the feed"
447
- msgstr "Lors du rafraichissement, conserver les événements précédemment importés qui manquent dans le flux"
448
-
449
- #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
- msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
- msgstr "Deviner le fuseau horaire des événements qui n'en possèdent pas; recommandé pour les flux Google Agenda"
452
-
453
- #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
- msgid "Assign default time zone to events in UTC"
455
- msgstr "Assigner par défaut le fuseau horaire UTC aux événements "
456
-
457
- #: public/admin/box_support.php:19
458
- msgid "Get Add-ons"
459
- msgstr "Trouver des extensions"
460
-
461
- #: public/admin/box_support.php:27
462
- msgid "Support"
463
- msgstr "Support"
464
-
465
- #: public/admin/box_support.php:35
466
- msgid "Timely Events"
467
- msgstr "Événements Timely"
468
-
469
- #: public/admin/box_support.php:43
470
- msgid "Timely News"
471
- msgstr "Actualités Timely"
472
-
473
- #: public/admin/box_support.php:47
474
- msgid "view all news"
475
- msgstr "voir toutes les actualités"
476
-
477
- #: public/admin/box_support.php:95
478
- msgid "Follow @_Timely"
479
- msgstr "Suivre @_Timely"
480
-
481
- #: public/admin/box_time_and_date.php:6
482
- msgid "Event date and time"
483
- msgstr "Date et heure de l'événement"
484
-
485
- #: public/admin/box_time_and_date.php:26
486
- msgid "All-day event"
487
- msgstr "Évènement de journée entière"
488
-
489
- #: public/admin/box_time_and_date.php:35
490
- msgid "No end time"
491
- msgstr "Aucune date de fin"
492
-
493
- #: public/admin/box_time_and_date.php:42
494
- msgid "Start date / time"
495
- msgstr "Date/heure de début"
496
-
497
- #: public/admin/box_time_and_date.php:59
498
- msgid "End date / time"
499
- msgstr "Date/heure de fin"
500
-
501
- #: public/admin/box_time_and_date.php:76
502
- msgid "Time zone"
503
- msgstr "Fuseau horaire"
504
-
505
- #: public/admin/box_time_and_date.php:81
506
- msgid "Choose your time zone"
507
- msgstr "Choisissez votre fuseau horaire"
508
-
509
- #: public/admin/box_time_and_date.php:108
510
- msgid "Repeat"
511
- msgstr "Répéter"
512
-
513
- #: public/admin/box_time_and_date.php:127
514
- msgid "Exclude"
515
- msgstr "Exclure"
516
-
517
- #: public/admin/box_time_and_date.php:136
518
- msgid "Choose a rule for exclusion"
519
- msgstr "Choisir une règle d'exclusion"
520
-
521
- #: public/admin/calendar_tasks.php:3
522
- msgid "Welcome"
523
- msgstr "Bienvenue"
524
-
525
- #: public/admin/calendar_tasks.php:4
526
- msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
- msgstr "à All-in-One Event Calendar par <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
-
529
- #: public/admin/calendar_tasks.php:13
530
- msgid "Post Your Event"
531
- msgstr "Postez votre événement"
532
-
533
- #: public/admin/calendar_tasks.php:16
534
- msgid "Add a new event to the calendar."
535
- msgstr "Ajouter un nouvel événement au calendrier."
536
-
537
- #: public/admin/box_eventbrite.php:60
538
- msgid "Donation Based"
539
- msgstr "Basé sur les dons"
540
-
541
- #: public/admin/box_eventbrite.php:68
542
- msgid "The price for this event's first ticket will be taken from the Cost field above."
543
- msgstr "Le prix pour le premier ticket de cet événement sera pris dans le champs Prix ci-dessous."
544
-
545
- #: public/admin/box_eventbrite.php:75
546
- msgid "Quantity"
547
- msgstr "Quantité"
548
-
549
- #: public/admin/box_eventbrite.php:85
550
- msgid "Include Fee in Price"
551
- msgstr "Inclure Frais dans le Prix"
552
-
553
- #: public/admin/box_eventbrite.php:90
554
- msgid "Add Service Fee on top of price"
555
- msgstr "Ajouter des frais de Service en haut du prix"
556
-
557
- #: public/admin/box_eventbrite.php:92
558
- msgid "Include Service fee in price"
559
- msgstr "Inclure les frais de service dans le prix"
560
-
561
- #: public/admin/box_eventbrite.php:98
562
- msgid "Payment Options"
563
- msgstr "Options de Paiement"
564
-
565
- #: public/admin/box_eventbrite.php:105
566
- msgid "Google Checkout"
567
- msgstr "Google Checkout"
568
-
569
- #: public/admin/box_eventbrite.php:107
570
- msgid "Check"
571
- msgstr "Vérifier"
572
-
573
- #: public/admin/box_eventbrite.php:109
574
- msgid "Cash"
575
- msgstr "Liquide"
576
-
577
- #: public/admin/box_eventbrite.php:111
578
- msgid "Send an Invoice"
579
- msgstr "Envoyer une Facture"
580
-
581
- #: public/admin/box_profile_timezone.php:9
582
- msgid "Your preferred timezone"
583
- msgstr "Votre fuseau horaire préféré"
584
-
585
- #: public/admin/box_repeat.php:5
586
- msgid "Select recurrence pattern:"
587
- msgstr "Sélectionner le schéma de récurrence :"
588
-
589
- #: public/admin/box_repeat.php:36
590
- msgid "Custom"
591
- msgstr "Personnaliser"
592
-
593
- #: public/admin/box_repeat.php:72
594
- msgid "End"
595
- msgstr "Fin"
596
-
597
- #: public/admin/box_repeat.php:82
598
- msgid "Ending after"
599
- msgstr "Fin après"
600
-
601
- #: public/admin/box_repeat.php:109
602
- #: public/admin/plugins/ics/display_feeds.php:90
603
- msgid "Please wait&#8230;"
604
- msgstr "Patientez s'il vous plaît&#8230;"
605
-
606
- #: public/admin/box_repeat.php:111
607
- msgid "Apply"
608
- msgstr "Appliquer"
609
-
610
- #: public/admin/box_repeat.php:116
611
- #: public/admin/plugins/ics/display_feeds.php:84
612
- msgid "Cancel"
613
- msgstr "Annuler"
614
-
615
- #: public/admin/box_support.php:4
616
- msgid "Timely"
617
- msgstr "Timely"
618
-
619
- #: public/admin/box_support.php:11
620
- msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
- msgstr "All-in-One Event Calendar de Timely est une<br />nouvelle manière révolutionnaire de trouver et partager des événements."
622
-
623
- #: public/admin/box_event_cost.php:228
624
- msgid "Status:"
625
- msgstr ""
626
-
627
- #: public/admin/box_event_cost.php:235
628
- msgid "Open"
629
- msgstr ""
630
-
631
- #: public/admin/box_event_cost.php:239
632
- msgid "Closed"
633
- msgstr ""
634
-
635
- #: public/admin/box_event_cost.php:254
636
- msgid "Add New Ticket Type"
637
- msgstr ""
638
-
639
- #: public/admin/box_event_cost.php:274
640
- msgid "Tickets URL:"
641
- msgstr ""
642
-
643
- #: public/admin/box_event_location.php:6
644
- msgid "Event location details"
645
- msgstr "Détails du lieu de l'évènement"
646
-
647
- #: public/admin/box_event_location.php:19
648
- msgid "Venue name:"
649
- msgstr "Nom du lieu :"
650
-
651
- #: public/admin/box_event_location.php:31
652
- msgid "Address:"
653
- msgstr "Adresse :"
654
-
655
- #: public/admin/box_event_location.php:45
656
- msgid "Input Coordinates"
657
- msgstr "Coordonnées"
658
-
659
- #: public/admin/box_event_location.php:57
660
- msgid "Latitude:"
661
- msgstr "Latitude :"
662
-
663
- #: public/admin/box_event_location.php:69
664
- msgid "Longitude:"
665
- msgstr "Longitude :"
666
-
667
- #: public/admin/box_event_location.php:85
668
- msgid "Show Map"
669
- msgstr "Montrer le plan"
670
-
671
- #: public/admin/box_eventbrite.php:1
672
- msgid "Eventbrite Ticketing"
673
- msgstr "Billetterie Eventbrite"
674
-
675
- #: public/admin/box_eventbrite.php:7
676
- msgid "Register this event with Eventbrite.com?"
677
- msgstr "Enregistrer cet événement avec Eventbrite.com ?"
678
-
679
- #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
- #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
- #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
- msgid "Yes"
683
- msgstr "Oui"
684
-
685
- #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
- #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
- #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
- msgid "No"
689
- msgstr "Non"
690
-
691
- #: public/admin/box_eventbrite.php:22
692
- msgid "Set up your first ticket"
693
- msgstr "Paramétrez votre premier ticket"
694
-
695
- #: public/admin/box_eventbrite.php:24
696
- msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
- msgstr "Pour créer plusieurs tickets par événement, soumettez ce formulaire, puis suivez le lien vers Eventbrite."
698
-
699
- #: public/admin/box_eventbrite.php:42
700
- msgid "Description"
701
- msgstr "Description"
702
-
703
- #: public/admin/box_eventbrite.php:53
704
- msgid "Type"
705
- msgstr "Type"
706
-
707
- #: public/admin/box_eventbrite.php:58
708
- msgid "Set Price"
709
- msgstr "Fixer Prix"
710
-
711
- #: public/admin/box_event_contact.php:30
712
- msgid "Phone:"
713
- msgstr "Téléphone :"
714
-
715
- #: public/admin/box_event_contact.php:56
716
- msgid "Website URL:"
717
- msgstr ""
718
-
719
- #: public/admin/box_event_cost.php:6
720
- msgid "Event cost and Tickets"
721
- msgstr "Prix et Tickets de l'événement"
722
-
723
- #: public/admin/box_event_cost.php:20
724
- msgid "Ticket options not available - event imported from external calendar."
725
- msgstr ""
726
-
727
- #: public/admin/box_event_cost.php:28
728
- msgid "Free event"
729
- msgstr "Événement gratuit"
730
-
731
- #: public/admin/box_event_cost.php:41
732
- msgid "External Tickets URL"
733
- msgstr ""
734
-
735
- #: public/admin/box_event_cost.php:52
736
- msgid "Ticketing allows you to sell tickets directly to the users."
737
- msgstr ""
738
-
739
- #: public/admin/box_event_cost.php:55
740
- msgid "Sign Up for Timely Network"
741
- msgstr ""
742
-
743
- #: public/admin/box_event_cost.php:80
744
- msgid "Remove Ticket Type"
745
- msgstr ""
746
-
747
- #: public/admin/box_event_cost.php:101
748
- msgid "Ex.: Regular Ticket"
749
- msgstr ""
750
-
751
- #: public/admin/box_event_cost.php:105
752
- msgid "Description:"
753
- msgstr "Description:"
754
-
755
- #: public/admin/box_event_cost.php:111
756
- msgid "(Optional)"
757
- msgstr ""
758
-
759
- #: public/admin/box_event_cost.php:115
760
- msgid "Price:"
761
- msgstr ""
762
-
763
- #: public/admin/box_event_cost.php:124
764
- msgid "USD"
765
- msgstr ""
766
-
767
- #: public/admin/box_event_cost.php:128
768
- msgid "Limits:"
769
- msgstr ""
770
-
771
- #: public/admin/box_event_cost.php:131
772
- msgid "This fields are required."
773
- msgstr ""
774
-
775
- #: public/admin/box_event_cost.php:156
776
- msgid "Quantity:"
777
- msgstr ""
778
-
779
- #: public/admin/box_event_cost.php:180
780
- msgid "Available:"
781
- msgstr ""
782
-
783
- #: public/admin/box_event_cost.php:185
784
- msgid "Immediately"
785
- msgstr ""
786
-
787
- #: public/admin/box_event_cost.php:190
788
- msgid "From:"
789
- msgstr ""
790
-
791
- #: public/admin/box_event_cost.php:207
792
- msgid "Till:"
793
- msgstr ""
794
-
795
- #: public/admin/box_ask_customer_review.php:42
796
- #: public/admin/box_ask_customer_review.php:75
797
- msgid "No, thanks"
798
- msgstr ""
799
-
800
- #: public/admin/box_ask_customer_review.php:50
801
- #: public/admin/box_ask_customer_review.php:84
802
- msgid "Ok, sure!"
803
- msgstr ""
804
-
805
- #: public/admin/box_ask_customer_review.php:66
806
- msgid "Would you mind giving us some feedback?"
807
- msgstr ""
808
-
809
- #: public/admin/box_ask_customer_review.php:101
810
- msgid "Please provide some feedback"
811
- msgstr ""
812
-
813
- #: public/admin/box_ask_customer_review.php:108
814
- msgid "Message:"
815
- msgstr ""
816
-
817
- #: public/admin/box_ask_customer_review.php:121
818
- msgid "Name:"
819
- msgstr ""
820
-
821
- #: public/admin/box_ask_customer_review.php:136
822
- #: public/admin/box_event_contact.php:43
823
- msgid "E-mail:"
824
- msgstr "Courriel :"
825
-
826
- #: public/admin/box_ask_customer_review.php:143
827
- msgid "E-mail is invalid."
828
- msgstr ""
829
-
830
- #: public/admin/box_ask_customer_review.php:154
831
- msgid "Site URL:"
832
- msgstr ""
833
-
834
- #: public/admin/box_ask_customer_review.php:161
835
- msgid "Site URL is invalid."
836
- msgstr ""
837
-
838
- #: public/admin/box_ask_customer_review.php:173
839
- msgid "Thank you for being our customer,"
840
- msgstr ""
841
-
842
- #: public/admin/box_ask_customer_review.php:174
843
- msgid "Aristotel Dascal, VP of Product, Time.ly"
844
- msgstr ""
845
-
846
- #: public/admin/box_ask_customer_review.php:180
847
- msgid "Sending..."
848
- msgstr ""
849
-
850
- #: public/admin/box_ask_customer_review.php:181
851
- msgid "Send Message"
852
- msgstr ""
853
-
854
- #: public/admin/box_event_children.php:12
855
- msgid "Base recurrence event"
856
- msgstr "Événement de récurrence de base"
857
-
858
- #: public/admin/box_event_children.php:14
859
- msgid "Modified recurrence events"
860
- msgstr "Événements de récurrence modifiée"
861
-
862
- #: public/admin/box_event_children.php:22
863
- msgid "Edit parent:"
864
- msgstr "Modifier parent :"
865
-
866
- #: public/admin/box_event_children.php:27
867
- msgid "Modified Events"
868
- msgstr "Évènements Modifiés"
869
-
870
- #: public/admin/box_event_children.php:31
871
- msgid "Edit:"
872
- msgstr "Modifier :"
873
-
874
- #: public/admin/box_event_contact.php:6
875
- msgid "Organizer contact info"
876
- msgstr "Informations de l'organisateur"
877
-
878
- #: public/admin/box_event_contact.php:17
879
- msgid "Contact name:"
880
- msgstr "Nom de contact :"
881
-
882
- #: lib/theme/loader.php:325
883
- msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
- msgstr "Nous n'avons pas trouvé le bon chargeur pour les noms de fichier avec l'extension '%s'."
885
-
886
- #: lib/theme/loader.php:631
887
- msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
- msgstr "Votre thème de calendrier a été basculé vers Vortex à cause d'un problème de rendu. Pour plus d'informations, veuillez activer le mode debug en ajoutant cette ligne à votre wordpress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
889
-
890
- #: lib/theme/search.php:253
891
- msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
- msgstr "Impossible de déplacer vos anciens thèmes depuis <code>wp-content/themes-ai1ec</code> vers <code>wp-content/themes-ai1ec-obsolete</code> car votre dossier <code>wp-content</code> ne dispose pas des droits en écriture. Veuillez s'il vous plaît supprimer à la main vos anciens thèmes du dossier <code>wp-content/themes-ai1ec</code>."
893
-
894
- #: lib/theme/search.php:264
895
- msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
- msgstr "Impossible de déplacer vos anciens thèmes depuis <code>wp-content/themes-ai1ec/%s</code> vers <code>wp-content/themes-ai1ec-obsolete/%s</code>. Veuillez s'il vous plaît supprimer à la main vos anciens thèmes du dossier <code>wp-content/themes-ai1ec/%s</code>."
897
-
898
- #: lib/twig/environment.php:115
899
- msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
- msgstr "Le calendrier est temporairement désactivé à cause d'un problème de rendu. Veuillez <a href=\"javascript:location.reload();\">recharger la page</a>."
901
-
902
- #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
- msgid "Title:"
904
- msgstr "Titre :"
905
-
906
- #: public/admin/agenda-widget-form.php:12
907
- msgid "Number of events to show:"
908
- msgstr "Nombre d'événements à afficher :"
909
-
910
- #: public/admin/agenda-widget-form.php:21
911
- msgid "Number of days to show:"
912
- msgstr "Nombre de jours à afficher :"
913
-
914
- #: public/admin/agenda-widget-form.php:26
915
- msgid "Limit to:"
916
- msgstr "Limiter à :"
917
-
918
- #: public/admin/agenda-widget-form.php:30
919
- msgid "Events with these <strong>Categories</strong>"
920
- msgstr "Événements dans ces <strong>Catégories</strong>"
921
-
922
- #: public/admin/agenda-widget-form.php:39
923
- msgid "No categories found."
924
- msgstr "Aucune catégorie trouvée."
925
-
926
- #: public/admin/agenda-widget-form.php:46
927
- msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
- msgstr "<strong>Ou</strong> les événements avec ces <strong>Mots-clés</strong>"
929
-
930
- #: public/admin/agenda-widget-form.php:55
931
- msgid "No tags found."
932
- msgstr "Aucun mot-clé trouvé."
933
-
934
- #: public/admin/agenda-widget-form.php:62
935
- msgid "Show <strong>View Calendar</strong> button"
936
- msgstr "Afficher le bouton <strong>Voir Calendrier</strong>"
937
-
938
- #: public/admin/agenda-widget-form.php:65
939
- msgid "Show <strong>Subscribe</strong> buttons"
940
- msgstr "Afficher les boutons <strong>Souscrire</strong>"
941
-
942
- #: public/admin/agenda-widget-form.php:68
943
- msgid "Hide this widget on calendar page"
944
- msgstr "Cacher ce widget sur la page calendrier"
945
-
946
- #: public/admin/box_ask_customer_review.php:5
947
- msgid "Enjoying All-in-One Event Calendar?"
948
- msgstr ""
949
-
950
- #: public/admin/box_ask_customer_review.php:13
951
- msgid "Not really"
952
- msgstr ""
953
-
954
- #: public/admin/box_ask_customer_review.php:20
955
- msgid "Yes!"
956
- msgstr ""
957
-
958
- #: public/admin/box_ask_customer_review.php:33
959
- msgid "How about a rating on the Wordpress?"
960
- msgstr ""
961
-
962
- #: lib/recurrence/rule.php:397
963
- msgid "Every %d weeks"
964
- msgstr "Toutes les %d semaines"
965
-
966
- #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
- msgid "Monthly"
968
- msgstr "Mensuel"
969
-
970
- #: lib/recurrence/rule.php:409
971
- msgid "Every other month"
972
- msgstr "Tous les autres mois"
973
-
974
- #: lib/recurrence/rule.php:412
975
- msgid "Every %d months"
976
- msgstr "Tous les %d mois"
977
-
978
- #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
- msgid "Yearly"
980
- msgstr "Annuel"
981
-
982
- #: lib/recurrence/rule.php:424
983
- msgid "Every other year"
984
- msgstr "Toutes les autres années"
985
-
986
- #: lib/recurrence/rule.php:427
987
- msgid "Every %d years"
988
- msgstr "Tous les %d ans"
989
-
990
- #: lib/recurrence/rule.php:465
991
- msgid "until %s"
992
- msgstr "jusqu'à %s"
993
-
994
- #: lib/recurrence/rule.php:475
995
- msgid "for %d occurrences"
996
- msgstr "pour %d occurences"
997
-
998
- #: lib/recurrence/rule.php:479
999
- msgid "forever"
1000
- msgstr "pour toujours"
1001
-
1002
- #: lib/robots/helper.php:71
1003
- msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
- msgstr "<strong>ERREUR:</strong> Il y a eu une erreur de connexion au serveur, vérifiez que les réglages sont corrects. "
1005
-
1006
- #: lib/robots/helper.php:105
1007
- msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
- msgstr "<strong>ERREUR:</strong> Il y a eu une erreur en stockant le fichier <strong>robots.txt</strong> sur le serveur, le fichier n'a pas pu être écrit."
1009
-
1010
- #: lib/theme/list.php:152
1011
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
- msgstr "Vous n'avez qu'un seul thème d'activé pour ce site. Visitez l’administration pour <a href=\"%1$s\">activer</a> ou <a href=\"%2$s\">installer</a> plus de thèmes."
1013
-
1014
- #: lib/theme/list.php:164
1015
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
- msgstr "Vous avez un seul thème d'activé pour ce site. Visitez l'administration pour <a href=\"%1$s\">activer</a> plus de thèmes."
1017
-
1018
- #: lib/theme/list.php:179
1019
- msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
- msgstr "Vous avez un seul thème d'installé. Vous pouvez choisir d'autres thèmes gratuits sur le répertoire de thèmes de Timely: cliquez simplement sur <a href=\"%s\">Installer Thèmes</a> ci-dessous."
1021
-
1022
- #: lib/theme/list.php:190
1023
- msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
- msgstr "Seul le thème actif est disponible pour vous. Contactez le <em>%s</em> administrateur pour ajouter plus de thèmes."
1025
-
1026
- #: lib/theme/list.php:257
1027
- msgid "Activate &#8220;%s&#8221;"
1028
- msgstr "Activer &#8220;%s&#8221;"
1029
-
1030
- #: lib/theme/list.php:264
1031
- msgid "Activate"
1032
- msgstr "Activer"
1033
-
1034
- #. translators: 1: theme title, 2: theme version, 3: theme author
1035
- #: lib/theme/list.php:281 public/admin/themes.php:25
1036
- msgid "%1$s %2$s by %3$s"
1037
- msgstr "%1$s %2$s par %3$s"
1038
-
1039
- #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
- #. title, 5: parent_theme
1041
- #: lib/theme/list.php:293
1042
- msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
- msgstr "Les fichiers de gabarit sont situés dans <code>%2$s</code>. La feuille de style est située dans <code>%3$s</code>. <strong>%4$s</strong> utilise les gabarits de <strong>%5$s</strong>. Les changements fait sur ce gabarit affecteront les deux thèmes."
1044
-
1045
- #: lib/theme/list.php:308
1046
- msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
- msgstr "Tous les fichiers de ce thème sont situés dans <code>%2$s</code>."
1048
-
1049
- #: lib/post/custom-type.php:36
1050
- msgid "Parent Event"
1051
- msgstr "Événement Parent"
1052
-
1053
- #: lib/post/custom-type.php:55
1054
- msgid "event"
1055
- msgstr "event"
1056
-
1057
- #: lib/post/custom-type.php:85
1058
- msgctxt "Event categories taxonomy"
1059
- msgid "Categories"
1060
- msgstr "Catégories"
1061
-
1062
- #: lib/post/custom-type.php:86
1063
- msgctxt "Event categories taxonomy (singular)"
1064
- msgid "Category"
1065
- msgstr "Catégorie"
1066
-
1067
- #: lib/post/custom-type.php:87
1068
- msgctxt "Event categories menu item"
1069
- msgid "Organize"
1070
- msgstr "Organiser"
1071
-
1072
- #: lib/post/custom-type.php:94
1073
- msgctxt "Event tags taxonomy"
1074
- msgid "Tags"
1075
- msgstr "Mots-clés"
1076
-
1077
- #: lib/post/custom-type.php:95
1078
- msgctxt "Event tags taxonomy (singular)"
1079
- msgid "Tag"
1080
- msgstr "Mot-clé"
1081
-
1082
- #: lib/post/custom-type.php:102
1083
- msgctxt "Event feeds taxonomy"
1084
- msgid "Event Feeds"
1085
- msgstr "Flux d'événements"
1086
-
1087
- #: lib/post/custom-type.php:103
1088
- msgctxt "Event feed taxonomy (singular)"
1089
- msgid "Event Feed"
1090
- msgstr "Flux Évènement"
1091
-
1092
- #: lib/post/custom-type.php:285
1093
- msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
- msgstr "Tous les événements <span class=\"update-plugins count-%d\" title=\"%d Événements en attente\"><span class=\"update-count\">%d</span></span>"
1095
-
1096
- #: lib/post/custom-type.php:296
1097
- msgid "All Events"
1098
- msgstr "Tous les événements"
1099
-
1100
- #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
- #: lib/recurrence/rule.php:260
1102
- msgctxt "Recurrence editor - weekly tab"
1103
- msgid "on"
1104
- msgstr "le"
1105
-
1106
- #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
- #: lib/recurrence/rule.php:326
1108
- msgid "and"
1109
- msgstr "et"
1110
-
1111
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
- #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
- msgctxt "Recurrence editor - monthly tab"
1114
- msgid "on"
1115
- msgstr "en"
1116
-
1117
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
- #: lib/recurrence/rule.php:286
1119
- msgid "of the month"
1120
- msgstr "du mois"
1121
-
1122
- #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
- #: lib/recurrence/rule.php:336
1124
- msgctxt "Recurrence editor - yearly tab"
1125
- msgid "on"
1126
- msgstr "en"
1127
-
1128
- #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
- #: public/admin/cron_freq.php:9
1130
- msgid "Daily"
1131
- msgstr "Quotidiennement"
1132
-
1133
- #: lib/recurrence/rule.php:379
1134
- msgid "Every other day"
1135
- msgstr "Tous les autres jours"
1136
-
1137
- #: lib/recurrence/rule.php:382
1138
- msgid "Every %d days"
1139
- msgstr "Tous les %d jours"
1140
-
1141
- #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
- msgid "Weekly"
1143
- msgstr "Hebdomadaire"
1144
-
1145
- #: lib/recurrence/rule.php:394
1146
- msgid "Every other week"
1147
- msgstr "Toutes les autres semaines"
1148
-
1149
- #: lib/less/variable/font.php:64
1150
- msgid "Custom..."
1151
- msgstr "Personnalisé..."
1152
-
1153
- #: lib/less/variable/font.php:112
1154
- msgid "Enter custom font(s)"
1155
- msgstr "Entrer une(des) police(s) personnalisée(s)"
1156
-
1157
- #: lib/less/variable/size.php:26
1158
- msgid "Length"
1159
- msgstr "Longueur"
1160
-
1161
- #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
- msgid "All-in-One Event Calendar"
1163
- msgstr "All-in-One Event Calendar"
1164
-
1165
- #: lib/notification/admin.php:182
1166
- msgid "Got it – dismiss this"
1167
- msgstr "J'ai compris - passer ça"
1168
-
1169
- #: lib/post/custom-type.php:26
1170
- msgctxt "Custom post type name"
1171
- msgid "Events"
1172
- msgstr "Événements"
1173
-
1174
- #: lib/post/custom-type.php:27
1175
- msgctxt "Custom post type name (singular)"
1176
- msgid "Event"
1177
- msgstr "Événement"
1178
-
1179
- #: lib/post/custom-type.php:28
1180
- msgid "Add New"
1181
- msgstr "Ajouter Nouveau"
1182
-
1183
- #: lib/post/custom-type.php:29
1184
- msgid "Add New Event"
1185
- msgstr "Ajouter un Nouvel Événement"
1186
-
1187
- #: lib/post/custom-type.php:30
1188
- msgid "Edit Event"
1189
- msgstr "Modifier Événement"
1190
-
1191
- #: lib/post/custom-type.php:31
1192
- msgid "New Event"
1193
- msgstr "Nouvel Événement"
1194
-
1195
- #: lib/post/custom-type.php:32
1196
- msgid "View Event"
1197
- msgstr "Voir Évènement"
1198
-
1199
- #: lib/post/custom-type.php:33
1200
- msgid "Search Events"
1201
- msgstr "Rechercher Événements"
1202
-
1203
- #: lib/post/custom-type.php:34
1204
- msgid "No Events found"
1205
- msgstr "Aucun événement trouvé"
1206
-
1207
- #: lib/post/custom-type.php:35
1208
- msgid "No Events found in Trash"
1209
- msgstr "Aucun évènement trouvé dans la Corbeille"
1210
-
1211
- #: lib/html/element/setting/html.php:62
1212
- msgid "Filter by post ID:"
1213
- msgstr "Filtrer selon l'identifiant de l'article :"
1214
-
1215
- #: lib/html/element/setting/html.php:63
1216
- msgid "Filter by post IDs (separate IDs by comma):"
1217
- msgstr "Filtrer selon les ids d'article (ids séparés par des virgules) :"
1218
-
1219
- #: lib/html/element/setting/html.php:64
1220
- msgid "Limit number of events per page:"
1221
- msgstr "Limiter le nombre d'événements par page:"
1222
-
1223
- #: lib/html/element/setting/html.php:65
1224
- msgid "Warning:"
1225
- msgstr "Avertissement :"
1226
-
1227
- #: lib/html/element/setting/html.php:66
1228
- msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
- msgstr "Il n'est pour l'instant pas possible d'inclure plus d'un calendrier par page. N'essayez pas d'inclure le calendrier via un shortcode dans une page qui affiche déjà le calendrier."
1230
-
1231
- #: lib/import-export/ics.php:831
1232
- msgid "Tickets: "
1233
- msgstr ""
1234
-
1235
- #: lib/html/element/setting/html.php:41
1236
- msgid "Day view:"
1237
- msgstr "Vue Journalière :"
1238
-
1239
- #: lib/html/element/setting/html.php:42
1240
- msgid "Agenda view:"
1241
- msgstr "Vue Agenda :"
1242
-
1243
- #: lib/html/element/setting/html.php:43
1244
- msgid "Some Other view:"
1245
- msgstr "Une autre vue :"
1246
-
1247
- #: lib/html/element/setting/html.php:44
1248
- msgid "Default view as per settings:"
1249
- msgstr "Vue par défaut (spécifiée dans les options) :"
1250
-
1251
- #: lib/html/element/setting/html.php:45
1252
- msgid "General form:"
1253
- msgstr "Formulaire général :"
1254
-
1255
- #: lib/html/element/setting/html.php:46
1256
- msgid "Optional."
1257
- msgstr "Optionnel."
1258
-
1259
- #: lib/html/element/setting/html.php:47
1260
- msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
- msgstr "Ajouter des options pour afficher un calendrier filtré. (Vous pouvez retrouver les identifiants des catégories ou des tags en inspectant l'URL de la page du calendrier filtré.) "
1262
-
1263
- #: lib/html/element/setting/html.php:48
1264
- msgid "Filter by event category name/slug:"
1265
- msgstr "Filtrer selon le nom/slug des catégories de l’événement :"
1266
-
1267
- #: lib/html/element/setting/html.php:49
1268
- msgid "Holidays"
1269
- msgstr "Vacances"
1270
-
1271
- #: lib/html/element/setting/html.php:50
1272
- msgid "Lunar Cycles"
1273
- msgstr "Cycles lunaires"
1274
-
1275
- #: lib/html/element/setting/html.php:51
1276
- msgid "zodiac-date-ranges"
1277
- msgstr "plages-de-dates-zodiaque"
1278
-
1279
- #: lib/html/element/setting/html.php:52
1280
- msgid "Filter by event category names/slugs (separate names by comma):"
1281
- msgstr "Filtrer selon les nom/slugs des catégories de l'événement (séparés par des virgules) :"
1282
-
1283
- #: lib/html/element/setting/html.php:53
1284
- msgid "Filter by event category ID:"
1285
- msgstr "Filtrer selon l'identifiant de la catégorie de l'événement :"
1286
-
1287
- #: lib/html/element/setting/html.php:54
1288
- msgid "Filter by event category IDs (separate IDs by comma):"
1289
- msgstr "Filtrer selon les ids de catégories de l'événement (séparés par des virgules) :"
1290
-
1291
- #: lib/html/element/setting/html.php:55
1292
- msgid "Filter by event tag name/slug:"
1293
- msgstr "Filtrer selon le nom/slug d'un mot-clé de l'événement :"
1294
-
1295
- #: lib/html/element/setting/html.php:56
1296
- msgid "tips-and-tricks"
1297
- msgstr "trucs et astuces"
1298
-
1299
- #: lib/html/element/setting/html.php:57
1300
- msgid "creative writing"
1301
- msgstr "rédaction"
1302
-
1303
- #: lib/html/element/setting/html.php:58
1304
- msgid "performing arts"
1305
- msgstr "arts de la scène"
1306
-
1307
- #: lib/html/element/setting/html.php:59
1308
- msgid "Filter by event tag names/slugs (separate names by comma):"
1309
- msgstr "Filtrer selon les noms/slugs des mots-clés de l'événement (séparés par des virgules) :"
1310
-
1311
- #: lib/html/element/setting/html.php:60
1312
- msgid "Filter by event tag ID:"
1313
- msgstr "Filtrer selon l'id du mot-clé de l'événement :"
1314
-
1315
- #: lib/html/element/setting/html.php:61
1316
- msgid "Filter by event tag IDs (separate IDs by comma):"
1317
- msgstr "Filtrer selon les ids des mots-clefs de l'événement (ids séparés par des virgules) :"
1318
-
1319
- #: lib/exception/handler.php:395
1320
- msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
- msgstr "Le calendrier All-in-One a été désactivé à cause d'une erreur:"
1322
-
1323
- #: lib/exception/handler.php:404
1324
- msgid "Try reactivating plugin"
1325
- msgstr "Essayer de réactiver le plugin"
1326
-
1327
- #: lib/exception/handler.php:576
1328
- msgid "Toggle error details"
1329
- msgstr "Afficher les détails de l'erreur"
1330
-
1331
- #: lib/exception/handler.php:577
1332
- msgid "Error Details:"
1333
- msgstr "Détails de l'erreur:"
1334
-
1335
- #: lib/factory/html.php:133
1336
- msgid "Choose a date using calendar"
1337
- msgstr "Choisir une date en utilisant le calendrier"
1338
-
1339
- #: lib/factory/html.php:278
1340
- msgid "Tags (optional)"
1341
- msgstr "Mots-clés (optionnel)"
1342
-
1343
- #: lib/html/element/setting/cache.php:38
1344
- msgid "Check again"
1345
- msgstr "Vérifier de nouveau"
1346
-
1347
- #: lib/html/element/setting/cache.php:39
1348
- msgid "Templates cache is not writable"
1349
- msgstr "Le cache des modèles n'est pas accessible en écriture"
1350
-
1351
- #: lib/html/element/setting/cache.php:40
1352
- msgid "Templates cache is writable"
1353
- msgstr "Le cache des modèles est accessible en écriture"
1354
-
1355
- #: lib/html/element/setting/cache.php:41
1356
- msgid "Checking..."
1357
- msgstr "Vérification en cours..."
1358
-
1359
- #: lib/html/element/setting/cache.php:42
1360
- msgid "Performance Report"
1361
- msgstr "Rapport Performance"
1362
-
1363
- #: lib/html/element/setting/calendar-page-selector.php:70
1364
- msgid "View"
1365
- msgstr "Vue"
1366
-
1367
- #: lib/html/element/setting/calendar-page-selector.php:114
1368
- msgid "- Auto-Create New Page -"
1369
- msgstr "- Créer automatiquement une Nouvelle Page -"
1370
-
1371
- #: lib/html/element/setting/enabled-views.php:22
1372
- msgid "Enabled"
1373
- msgstr "Activé"
1374
-
1375
- #: lib/html/element/setting/enabled-views.php:23
1376
- msgid "Default"
1377
- msgstr "Par défaut"
1378
-
1379
- #: lib/html/element/setting/enabled-views.php:24
1380
- msgid "Desktop"
1381
- msgstr "Bureau"
1382
-
1383
- #: lib/html/element/setting/enabled-views.php:25
1384
- msgid "Mobile"
1385
- msgstr "Mobile"
1386
-
1387
- #: lib/html/element/setting/html.php:37
1388
- msgid "Embed the calendar using a shortcode"
1389
- msgstr "Intégrer le calendrier à l'aide d'un shortcode"
1390
-
1391
- #: lib/html/element/setting/html.php:38
1392
- msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
- msgstr "Insérez un de ces shortcodes dans le corps de votre page pour intégrer le calendrier dans n'importe quelle page WordPress :"
1394
-
1395
- #: lib/html/element/setting/html.php:39
1396
- msgid "Month view:"
1397
- msgstr "Vue Mensuelle :"
1398
-
1399
- #: lib/html/element/setting/html.php:40
1400
- msgid "Week view:"
1401
- msgstr "Vue Hebdomadaire :"
1402
-
1403
- #: lib/css/frontend.php:239
1404
- msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
- msgstr "La compilation CSS a échouée car vous ne disposez plus d'assez d'espace mémoire (un minimum de %s est requis). Votre agenda ne va pas s'afficher ou fonctionner correctement sans CSS. Veuillez lire <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">cet article</a> pour apprendre comment augmenter votre limite de mémoire PHP."
1406
-
1407
- #: lib/css/frontend.php:266
1408
- msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
- msgstr "Le fichier LESS a été compilé correctement mais il y a eu une erreur durant la sauvegarde du CSS généré vers la persistance."
1410
-
1411
- #: lib/css/frontend.php:272
1412
- msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
- msgstr "<p><strong>Il y a eu une erreur lors de la compilation CSS.</strong> Le message retourné est: <em>%s</em></p>"
1414
-
1415
- #: lib/css/frontend.php:300
1416
- msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
- msgstr "Les options du thème ont été remises à leur valeur par défaut avec succès. <a href='%s'>Visiter le site</a>"
1418
-
1419
- #: lib/css/frontend.php:307
1420
- msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
- msgstr "Les options du thème ont été mises à jour avec succès. <a href='%s'>Visitez le site</a>"
1422
-
1423
- #: lib/css/frontend.php:343
1424
- msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
- msgstr "Votre CSS est compilé à chaque requête, ce qui ralentit le fonctionnement de votre calendrier. L'erreur suivante est survenue: %s"
1426
-
1427
- #: lib/database/applicator.php:182
1428
- msgid "Date columns in table %s have different types."
1429
- msgstr "Les colonnes de date du tableau %s sont de types différents."
1430
-
1431
- #: lib/database/exception/database.php:19
1432
- msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
- msgstr "La mise à jour de la base de données a échouée. Veuillez vous assurer que l'utilisateur défini dans <em>wp-config.php</em> a les permissions de faire des changements (<strong>ALTER TABLE</strong>) à la base de données."
1434
-
1435
- #: lib/database/exception/database.php:23
1436
- msgid "Error encountered: %s"
1437
- msgstr "Erreurs rencontrées : %s"
1438
-
1439
- #: lib/date/system.php:202
1440
- msgid "GMT%+d:%02d"
1441
- msgstr "GMT%+d:%02d"
1442
-
1443
- #: lib/date/timezone.php:362
1444
- msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
- msgstr "Veuillez sélectionner le fuseau horaire de site dans le menu déroulant %s <em>Fuseau horaire</em>."
1446
-
1447
- #: lib/date/timezone.php:397
1448
- msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
- msgstr "Le fuseau horaire \"UTC%+d\" n'est pas reconnu. Veuillez %suse valid%s nom de fuseau horaire, jusque là les événements seront créés dans le fuseau horaire UTC."
1450
-
1451
- #: lib/date/timezone.php:421
1452
- msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
- msgstr "Le fuseau horaire \"UTC%+d\" sélectionné sera traité comme %s."
1454
-
1455
- #: lib/date/timezone.php:490
1456
- msgid "Manual Offset"
1457
- msgstr "Décalage manuel"
1458
-
1459
- #: lib/date/timezone.php:493
1460
- msgid "Choose your timezone"
1461
- msgstr "Choisissez votre fuseau horaire"
1462
-
1463
- #: lib/environment/check.php:55
1464
- msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
- msgstr "Sélectionnez une option dans la liste déroulante de la <strong>page du calendrier</strong>."
1466
-
1467
- #: lib/environment/check.php:68
1468
- msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
- msgstr "Le plugin est installé, mais n'a pas été configuré. <a href=\"%s\">Cliquez ici pour le faire maintenant &raquo;</a>"
1470
-
1471
- #: lib/environment/check.php:78
1472
- msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
- msgstr "Le plugin est installé, mais n'a pas été configuré. Connectez-vous en tant qu'administrateur pour le mettre en place."
1474
-
1475
- #: lib/environment/check.php:196
1476
- msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
- msgstr "L'add-on <strong>%s</strong> doit être mis à jour sur la dernière version %s pour maintenir la compatibilité avec l'agenda."
1478
-
1479
- #: lib/environment/check.php:197
1480
- msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
- msgstr "Si vous ne visualisez pas les notifications de mises à jour ci-dessous, assurez vous que vous avez correctement <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">renseigné votre clé de licence</a>. Sinon, rendez-vous sur <a href=\"https://time.ly/your-account/\">votre compte</a> pour télécharger la dernière version de cet/ces add-on/s et <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">effectuez la mise à jour manuellement</a>. Veuillez <a href=\"https://time.ly/forums/\">publier sur le forum</a> si vous rencontrez des difficultés. Nous nous ferons un plaisir de vous aider."
1482
-
1483
- #: lib/exception/handler.php:176
1484
- msgid "The add-on \"%s\" has been disabled due to an error:"
1485
- msgstr "L'add-on \"%s\" a été désactivé suite à une erreur:"
1486
-
1487
- #: lib/calendar-feed/ics.php:367
1488
- msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
- msgstr "Voulez-vous conserver les événements importés depuis le calendrier ou les supprimer ?"
1490
-
1491
- #: lib/calendar-feed/ics.php:373
1492
- msgid "Removing ICS Feed"
1493
- msgstr "Supprimer le flux ICS"
1494
-
1495
- #: lib/calendar-feed/ics.php:376
1496
- msgid "Keep Events"
1497
- msgstr "Garder Événements"
1498
-
1499
- #: lib/calendar-feed/ics.php:379
1500
- msgid "Remove Events"
1501
- msgstr "Supprimer Événements"
1502
-
1503
- #: lib/calendar-feed/ics.php:519
1504
- msgid "Oh, submission was not accepted."
1505
- msgstr ""
1506
-
1507
- #: lib/calendar-feed/ics.php:699
1508
- msgid "Deleted %d events"
1509
- msgstr "%d événements supprimés"
1510
-
1511
- #: lib/calendar-feed/ics.php:735
1512
- msgid "Feed deleted"
1513
- msgstr "Flux supprimé"
1514
-
1515
- #: lib/captcha/provider/nocaptcha.php:31
1516
- msgid "noCAPTCHA public key:"
1517
- msgstr "Clé publique noCAPTCHA:"
1518
-
1519
- #: lib/captcha/provider/nocaptcha.php:47
1520
- msgid "noCAPTCHA private key:"
1521
- msgstr "Clé privée noCAPTCHA:"
1522
-
1523
- #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
- msgid "Please try verifying you are human again."
1525
- msgstr "Veuillez certifier que vous êtes un humain une nouvelle fois."
1526
-
1527
- #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
- msgid "There was an error reading the human verification data. Please try again."
1529
- msgstr "Une erreur est survenue lors de la certification que vous êtes un humain. Veuillez recommencer."
1530
-
1531
- #: lib/captcha/provider/recaptcha.php:32
1532
- msgid "reCAPTCHA public key:"
1533
- msgstr "Clé publique reCAPTCHA:"
1534
-
1535
- #: lib/captcha/provider/recaptcha.php:48
1536
- msgid "reCAPTCHA private key:"
1537
- msgstr "Clé privée reCAPTCHA:"
1538
-
1539
- #: lib/captcha/provider/recaptcha.php:66
1540
- msgid "Human verification"
1541
- msgstr "Vérification que vous êtes un humain"
1542
-
1543
- #: lib/captcha/provider/recaptcha.php:67
1544
- msgid "Loading reCAPTCHA..."
1545
- msgstr "Chargement du re-CAPTCHA..."
1546
-
1547
- #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
- #: lib/clone/renderer-helper.php:45
1549
- msgid "Clone"
1550
- msgstr "Cloner"
1551
-
1552
- #: lib/clone/renderer-helper.php:44
1553
- msgid "Make new copy of event"
1554
- msgstr "Faire une nouvelle copie de l'événement"
1555
-
1556
- #: lib/clone/renderer-helper.php:47
1557
- msgid "Copy to a new draft"
1558
- msgstr "Copier vers un nouveau brouillon"
1559
-
1560
- #: lib/clone/renderer-helper.php:48
1561
- msgid "Clone to Draft"
1562
- msgstr "Cloner vers Brouillon"
1563
-
1564
- #: lib/command/clone.php:173
1565
- msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
- msgstr "<p>L'événement <strong>%s</strong> a été cloné avec succès. <a href=\"%s\">Modifier l'événement cloné</a></p>"
1567
-
1568
- #: lib/compatibility/check.php:101
1569
- msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
- msgstr "Vous avez activé le rendu client et vous utilisez un thème agenda personnalisé. Si votre thème ne supporte pas le rendu client, votre agenda peut ne pas fonctionner correctement."
1571
-
1572
- #: app/view/event/single.php:123
1573
- msgid "Tickets:"
1574
- msgstr ""
1575
-
1576
- #: app/view/event/single.php:124
1577
- msgid "Free"
1578
- msgstr "Gratuit"
1579
-
1580
- #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
- msgid "Buy Tickets"
1582
- msgstr "Acheter des tickets"
1583
-
1584
- #: app/view/event/single.php:150
1585
- msgid "Edit this occurrence (%s)"
1586
- msgstr "Modifier cette occurrence (%s)"
1587
-
1588
- #: app/view/event/single.php:195
1589
- msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
- msgstr "Cette publication a été copiée depuis le <a href=\"%s\" title=\"Flux iCalendar\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i>flux agenda</a> d'un autre site."
1591
-
1592
- #: app/view/event/single.php:206
1593
- msgid "View original"
1594
- msgstr "Voir l'original"
1595
-
1596
- #: app/view/event/taxonomy.php:113
1597
- msgid "Category image"
1598
- msgstr "Image de catégorie"
1599
-
1600
- #: app/view/event/ticket.php:24
1601
- msgid "Register Now"
1602
- msgstr "S'inscrire maintenant"
1603
-
1604
- #: app/view/event/ticket.php:82
1605
- msgid "Event website"
1606
- msgstr "Site web de l'évènement"
1607
-
1608
- #: app/view/event/time.php:84 app/view/event/time.php:118
1609
- msgctxt "Event time separator"
1610
- msgid " @ "
1611
- msgstr " @ "
1612
-
1613
- #: app/view/event/time.php:100
1614
- msgctxt "Event start/end separator"
1615
- msgid " – "
1616
- msgstr " – "
1617
-
1618
- #: app/view/event/time.php:166
1619
- msgid ", and "
1620
- msgstr ", et"
1621
-
1622
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
- msgid "Excludes: "
1624
- msgstr ""
1625
-
1626
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
- msgid "Repeats"
1628
- msgstr ""
1629
-
1630
- #: lib/calendar-feed/ics.php:38
1631
- msgid "ICS"
1632
- msgstr "ICS"
1633
-
1634
- #: lib/calendar-feed/ics.php:69
1635
- msgid "Another import process in progress. Please try again later."
1636
- msgstr "Un autre processus d'importation est en cours. Merci de réessayer plus tard."
1637
-
1638
- #: lib/calendar-feed/ics.php:174
1639
- msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
- msgstr "Une erreur système bloque le calendrier. Un élément empêche le plugin de fonctionner correctement. Ce message devrait fournir un indice : %s"
1641
-
1642
- #: lib/calendar-feed/ics.php:181
1643
- msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
- msgstr "Le calendrier n'a pas pu être activé. Si votre URL est valide et contient une ressource iCalendar, la résolution d'une erreur temporaire du serveur devrait résoudre ce problème."
1645
-
1646
- #: lib/calendar-feed/ics.php:195
1647
- msgid "Imported %s event"
1648
- msgid_plural "Imported %s events"
1649
- msgstr[0] "%s événement importé"
1650
- msgstr[1] "%s événements importés"
1651
-
1652
- #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
- msgid "Invalid ICS feed ID"
1654
- msgstr "Identifiant de flux ICS invalide"
1655
-
1656
- #: lib/calendar-feed/ics.php:350
1657
- msgid "Categories (optional)"
1658
- msgstr "Catégories (optionnel)"
1659
-
1660
- #: app/view/event/content.php:33 app/view/event/single.php:119
1661
- msgid "When:"
1662
- msgstr "Quand :"
1663
-
1664
- #: app/view/event/content.php:34 app/view/event/single.php:120
1665
- msgid "Where:"
1666
- msgstr "Où :"
1667
-
1668
- #: app/view/event/content.php:125
1669
- msgid "Calendar"
1670
- msgstr ""
1671
-
1672
- #: app/view/event/content.php:126
1673
- msgid "View all events"
1674
- msgstr "Voir tous les événements"
1675
-
1676
- #: app/view/event/location.php:96
1677
- msgid "Click to view map"
1678
- msgstr "Cliquer pour voir la carte"
1679
-
1680
- #: app/view/event/location.php:97
1681
- msgid "View Full-Size Map"
1682
- msgstr "Voir la carte en plein-écran"
1683
-
1684
- #: app/view/event/post.php:29
1685
- msgid "Event updated. <a href=\"%s\">View event</a>"
1686
- msgstr "Événement mis à jour. <a href=\"%s\">Voir l'évènement</a>"
1687
-
1688
- #: app/view/event/post.php:32
1689
- msgid "Custom field updated."
1690
- msgstr "Champ personnalisé mis à jour."
1691
-
1692
- #: app/view/event/post.php:33
1693
- msgid "Custom field deleted."
1694
- msgstr "Champ personnalisé supprimé."
1695
-
1696
- #: app/view/event/post.php:34
1697
- msgid "Event updated."
1698
- msgstr "Événement mis à jour."
1699
-
1700
- #. translators: %s: date and time of the revision
1701
- #: app/view/event/post.php:38
1702
- msgid "Event restored to revision from %s"
1703
- msgstr "Événement restauré à la version %s"
1704
-
1705
- #: app/view/event/post.php:43
1706
- msgid "Event published. <a href=\"%s\">View event</a>"
1707
- msgstr "Événement publié. <a href=\"%s\">Voir événement</a>"
1708
-
1709
- #: app/view/event/post.php:46
1710
- msgid "Event saved."
1711
- msgstr "Événement sauvegardé."
1712
-
1713
- #: app/view/event/post.php:48
1714
- msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
- msgstr "Événement soumis. <a target=\"_blank\" href=\"%s\">Prévisualiser l'événement</a>"
1716
-
1717
- #: app/view/event/post.php:52
1718
- msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
- msgstr "Événement planifié pour:<strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Prévisualiser l'événement</a>"
1720
-
1721
- #. translators: Publish box date format, see http:php.net/date
1722
- #: app/view/event/post.php:54
1723
- msgid "M j, Y @ G:i"
1724
- msgstr "j M Y @ G:i"
1725
-
1726
- #: app/view/event/post.php:58
1727
- msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
- msgstr "Brouillon d'événement mis à jour. <a target=\"_blank\" href=\"%s\">Prévisualiser l'événement</a>"
1729
-
1730
- #: app/view/event/single.php:78
1731
- msgid "Event was created in the %s time zone"
1732
- msgstr "L'évènement a été créé dans la zone de temps %s"
1733
-
1734
- #: app/view/event/single.php:114
1735
- msgid "Add to Calendar"
1736
- msgstr "Ajouter au Calendrier"
1737
-
1738
- #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
- msgid "Cost:"
1740
- msgstr "Coût :"
1741
-
1742
- #: app/view/event/single.php:122
1743
- msgid "Contact:"
1744
- msgstr "Contact :"
1745
-
1746
- #: app/view/calendar/view/agenda.php:169
1747
- msgid "Categories:"
1748
- msgstr "Catégories :"
1749
-
1750
- #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
- #: public/admin/themes.php:29
1752
- msgid "Tags:"
1753
- msgstr "Mots-clés :"
1754
-
1755
- #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
- #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
- #: app/view/calendar/widget.php:374
1758
- msgid "@ %s"
1759
- msgstr "@ %s"
1760
-
1761
- #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
- msgid "g a"
1763
- msgstr "H"
1764
-
1765
- #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
- msgid "Reveal full day"
1767
- msgstr "Montrer la journée entière"
1768
-
1769
- #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
- msgid "All-day"
1771
- msgstr "Toute la journée"
1772
-
1773
- #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
- msgid "Now:"
1775
- msgstr "Maintenant :"
1776
-
1777
- #: app/view/calendar/view/week.php:67
1778
- msgid "Week of %s"
1779
- msgstr "Semaine du %s"
1780
-
1781
- #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
- msgid "Upcoming Events"
1783
- msgstr "Événements à venir"
1784
-
1785
- #: app/view/calendar/widget.php:38
1786
- msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
- msgstr "All-in-One Event Calendar : Listes des évènements à venir dans la vue Agenda"
1788
-
1789
- #: app/view/calendar/widget.php:80
1790
- msgid "Choose how to limit the upcoming events"
1791
- msgstr "Choisir comment limiter les évènements à venir"
1792
-
1793
- #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
- msgid "Events"
1795
- msgstr "Événements"
1796
-
1797
- #: app/view/calendar/widget.php:93
1798
- msgid "Days"
1799
- msgstr "Jours"
1800
-
1801
- #: app/view/calendar/widget.php:106
1802
- msgid "Number of events to show"
1803
- msgstr "Numéro d'évènements à montrer"
1804
-
1805
- #: app/view/calendar/widget.php:115
1806
- msgid "Number of days to show"
1807
- msgstr "Nombre de jours à montrer"
1808
-
1809
- #: app/view/calendar/widget.php:124
1810
- msgid "Show events filtered for the following tags/categories"
1811
- msgstr "Choisir les évènements filtrés pour les mots clés/catégories suivantes"
1812
-
1813
- #: app/view/calendar/widget.php:141
1814
- msgid "Show the subscribe button in the widget"
1815
- msgstr "Montrer les évènements filtrés pour les mots clés/catégories suivants"
1816
-
1817
- #: app/view/calendar/widget.php:370
1818
- msgid "There are no upcoming events."
1819
- msgstr "Il n'y a aucun événement à venir."
1820
-
1821
- #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
- msgid "all-day"
1823
- msgstr "Journée entière"
1824
-
1825
- #: app/view/calendar/widget.php:372
1826
- msgid "View Calendar"
1827
- msgstr "Voir le calendrier"
1828
-
1829
- #: app/view/calendar/widget.php:375
1830
- msgid "Add"
1831
- msgstr "Ajouter"
1832
-
1833
- #: app/view/calendar/page.php:260
1834
- msgid "Subscribe to filtered calendar"
1835
- msgstr "S'abonner au calendrier filtré"
1836
-
1837
- #: app/view/calendar/page.php:261
1838
- msgid "Subscribe"
1839
- msgstr "S'abonner"
1840
-
1841
- #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
- msgid "Get a Timely Calendar"
1843
- msgstr "Obtenir un calendrier Timely"
1844
-
1845
- #: app/view/calendar/subscribe-button.php:22
1846
- msgid "Add to Timely Calendar"
1847
- msgstr "Ajouter au Calendrier Timely"
1848
-
1849
- #: app/view/calendar/subscribe-button.php:23
1850
- msgid "Add to Google"
1851
- msgstr "Ajouter à Google"
1852
-
1853
- #: app/view/calendar/subscribe-button.php:24
1854
- msgid "Add to Outlook"
1855
- msgstr "Ajouter à Outlook"
1856
-
1857
- #: app/view/calendar/subscribe-button.php:25
1858
- msgid "Add to Apple Calendar"
1859
- msgstr "Ajouter à Apple Calendrier"
1860
-
1861
- #: app/view/calendar/subscribe-button.php:26
1862
- msgid "Add to other calendar"
1863
- msgstr "Ajouter à un autre calendrier"
1864
-
1865
- #: app/view/calendar/subscribe-button.php:29
1866
- msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
- msgstr "Copiez cette URL pour votre propre calendrier Timely ou cliquez pour ajouter à votre calendrier au format texte enrichi"
1868
-
1869
- #: app/view/calendar/subscribe-button.php:30
1870
- msgid "Subscribe to this calendar in your Google Calendar"
1871
- msgstr "S’abonner à ce calendrier dans votre calendrier Google"
1872
-
1873
- #: app/view/calendar/subscribe-button.php:31
1874
- msgid "Subscribe to this calendar in MS Outlook"
1875
- msgstr "S’abonner à ce calendrier dans MS Outlook"
1876
-
1877
- #: app/view/calendar/subscribe-button.php:32
1878
- msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
- msgstr "S’abonner à ce calendrier dans Apple Calendrier/iCal"
1880
-
1881
- #: app/view/calendar/subscribe-button.php:33
1882
- msgid "Subscribe to this calendar in another plain-text calendar"
1883
- msgstr "S'abonner à ce calendrier dans un autre calendrier en texte brut"
1884
-
1885
- #: app/view/calendar/taxonomy.php:97
1886
- msgid "Clear category filter"
1887
- msgstr "Réinitialiser le filtre de catégorie"
1888
-
1889
- #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
- #: lib/html/element/setting/tags-categories.php:47
1891
- msgid "Categories"
1892
- msgstr "Catégories"
1893
-
1894
- #: app/view/calendar/taxonomy.php:99
1895
- msgid "Clear tag filter"
1896
- msgstr "Réinitialiser le filtre de mots-clefs"
1897
-
1898
- #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
- #: lib/html/element/setting/tags-categories.php:39
1900
- msgid "Tags"
1901
- msgstr "Mots-clés"
1902
-
1903
- #: app/view/calendar/view/agenda.php:142
1904
- msgid "Collapse All"
1905
- msgstr "Tout réduire"
1906
-
1907
- #: app/view/calendar/view/agenda.php:143
1908
- msgid "Expand All"
1909
- msgstr "Tout ouvrir"
1910
-
1911
- #: app/view/calendar/view/agenda.php:166
1912
- msgid "There are no upcoming events to display at this time."
1913
- msgstr "Il n'y a aucun événement à venir pour le moment."
1914
-
1915
- #: app/view/calendar/view/agenda.php:168
1916
- msgid "Read more"
1917
- msgstr "Lire la suite"
1918
-
1919
- #: app/view/admin/tickets.php:86
1920
- msgid "Sales"
1921
- msgstr ""
1922
-
1923
- #: app/view/admin/tickets.php:87
1924
- msgid "How do you want the tickets revenue to be sent to you?"
1925
- msgstr ""
1926
-
1927
- #: app/view/admin/tickets.php:88
1928
- msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
- msgstr ""
1930
-
1931
- #: app/view/admin/tickets.php:91
1932
- msgid "Cheque"
1933
- msgstr ""
1934
-
1935
- #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
- msgid "Paypal"
1937
- msgstr "Paypal"
1938
-
1939
- #: app/view/admin/tickets.php:94
1940
- msgid "Save Changes"
1941
- msgstr ""
1942
-
1943
- #: app/view/admin/tickets.php:95
1944
- msgid "Date"
1945
- msgstr ""
1946
-
1947
- #: app/view/admin/tickets.php:96
1948
- msgid "Event"
1949
- msgstr ""
1950
-
1951
- #: app/view/admin/tickets.php:97
1952
- msgid "Purchaser"
1953
- msgstr ""
1954
-
1955
- #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
- #: public/admin/box_event_cost.php:35
1957
- msgid "Tickets"
1958
- msgstr "Tickets"
1959
-
1960
- #: app/view/admin/tickets.php:101
1961
- msgid "Total"
1962
- msgstr ""
1963
-
1964
- #: app/view/admin/tickets.php:102
1965
- msgid "Sign Out"
1966
- msgstr ""
1967
-
1968
- #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
- #: app/view/admin/widget-creator.php:47
1970
- msgid "Widget Creator"
1971
- msgstr "Générateur de Widget"
1972
-
1973
- #: app/view/admin/widget-creator.php:74
1974
- msgctxt "meta box"
1975
- msgid "Widget Creator"
1976
- msgstr "Générateur de Widget"
1977
-
1978
- #: app/view/admin/widget-creator.php:131
1979
- msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
- msgstr "Utilisez cet outil pour générer des extraits de code que vous pouvez ajouter à <strong>un site externe</strong> afin d'intégrer de nouveaux calendriers et widgets."
1981
-
1982
- #: app/view/admin/widget-creator.php:132
1983
- msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
- msgstr "<h4>Attention!</h4><p>Ces widgets sont destinés à être affichés sur des <strong>sites externes seulement</strong> et peuvent engendrer des conflits si employés sur un même site Wordpress.</p>"
1985
-
1986
- #: app/view/admin/widget-creator.php:134
1987
- msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
- msgstr "<p>Utilisez <a href=\"%s\"><strong>Apparence</strong> &gt; <strong>Widgets</strong></a> pour ajouter un widget événement à votre site WordPress comme vous le feriez pour n'importe quel autre widget, ou utilisez <a href=\"%s\" target=\"_blank\">shortcodes</a> pour intégrer l'agenda complet.</strong></p>"
1989
-
1990
- #: app/view/admin/widget-creator.php:140
1991
- msgid "Paste this code onto your site:"
1992
- msgstr "Coller ce code dans votre site :"
1993
-
1994
- #: app/view/admin/widget-creator.php:141
1995
- msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
- msgstr "Ce code sera mis à jour pour appliquer les changements dans les paramètres. Changer les paramètres n'affecteront pas les widgets précédents"
1997
-
1998
- #: app/view/calendar/page.php:54
1999
- msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
- msgstr "Il y a eu une erreur durant le chargement du calendrier. Veuillez contacter l'administrateur du site et l'informer de configurer les vues du calendrier."
2001
-
2002
- #: app/view/calendar/page.php:74
2003
- msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
- msgstr "Le calendrier était incapable d'initialiser la vue %s et le paramétrage est réinitialisé. Cocher si vous avez installé la dernière version du calendrier add-ons."
2005
-
2006
- #: app/view/admin/settings.php:193
2007
- msgid "Phone Number:"
2008
- msgstr ""
2009
-
2010
- #: app/view/admin/settings.php:194
2011
- msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
- msgstr ""
2013
-
2014
- #: app/view/admin/settings.php:197
2015
- msgid "Sign Up"
2016
- msgstr ""
2017
-
2018
- #: app/view/admin/settings.php:198
2019
- msgid "Sign In"
2020
- msgstr ""
2021
-
2022
- #: app/view/admin/settings.php:212
2023
- msgid "Save Settings"
2024
- msgstr "Sauvegarder les Paramètres"
2025
-
2026
- #: app/view/admin/settings.php:219
2027
- msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
- msgstr "Si le formulaire ci-dessous ne fonctionne pas, veuillez suivre <a href=\"%s\">ce lien</a>."
2029
-
2030
- #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
- msgid "Theme Options"
2032
- msgstr "Options du Thème"
2033
-
2034
- #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
- msgid "Calendar Theme Options"
2036
- msgstr "Options du Thème de Calendrier"
2037
-
2038
- #: app/view/admin/theme-options.php:79
2039
- msgctxt "meta box"
2040
- msgid "Calendar Theme Options"
2041
- msgstr "Options du Thème de Calendrier"
2042
-
2043
- #: app/view/admin/theme-options.php:133
2044
- msgid "General"
2045
- msgstr "Général"
2046
-
2047
- #: app/view/admin/theme-options.php:136
2048
- msgid "Tables"
2049
- msgstr "Tableaux"
2050
-
2051
- #: app/view/admin/theme-options.php:139
2052
- msgid "Buttons"
2053
- msgstr "Boutons"
2054
-
2055
- #: app/view/admin/theme-options.php:142
2056
- msgid "Forms"
2057
- msgstr "Formulaires"
2058
-
2059
- #: app/view/admin/theme-options.php:145
2060
- msgid "Calendar general"
2061
- msgstr "Calendrier général"
2062
-
2063
- #: app/view/admin/theme-options.php:148
2064
- msgid "Month/week/day view"
2065
- msgstr "Vue mois/semaine/jour"
2066
-
2067
- #: app/view/admin/theme-options.php:151
2068
- msgid "Agenda view"
2069
- msgstr "Vue Agenda"
2070
-
2071
- #: app/view/admin/theme-options.php:169
2072
- msgid "Save Options"
2073
- msgstr "Sauvegarder les Options"
2074
-
2075
- #: app/view/admin/theme-options.php:177
2076
- msgid "Reset to Defaults"
2077
- msgstr "Remettre par défaut"
2078
-
2079
- #: app/view/admin/theme-switching.php:31
2080
- msgid "All-in-One Event Calendar: Themes"
2081
- msgstr "All-in-One Event Calendar : Thèmes"
2082
-
2083
- #: app/view/admin/tickets.php:36
2084
- msgid "Ticketing"
2085
- msgstr ""
2086
-
2087
- #: app/view/admin/tickets.php:37
2088
- msgid "Ticketing<sup>beta</sup>"
2089
- msgstr ""
2090
-
2091
- #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
- msgid "Time.ly Ticketing<sup>beta</sup>"
2093
- msgstr ""
2094
-
2095
- #: app/view/admin/settings.php:98
2096
- msgctxt "meta box"
2097
- msgid "Timely"
2098
- msgstr "Timely"
2099
-
2100
- #: app/view/admin/settings.php:140
2101
- msgid "Viewing Events"
2102
- msgstr "Affichage des événements"
2103
-
2104
- #: app/view/admin/settings.php:143
2105
- msgid "Adding/Editing Events"
2106
- msgstr "Ajout/Modification d'événements"
2107
-
2108
- #: app/view/admin/settings.php:146
2109
- msgid "Advanced"
2110
- msgstr "Avancé"
2111
-
2112
- #: app/view/admin/settings.php:148
2113
- msgid "Advanced Settings"
2114
- msgstr "Paramètres Avancés"
2115
-
2116
- #: app/view/admin/settings.php:149
2117
- msgid "Shortcodes"
2118
- msgstr "Shortcodes"
2119
-
2120
- #: app/view/admin/settings.php:150
2121
- msgid "Email Templates"
2122
- msgstr "Modèles de Courriel"
2123
-
2124
- #: app/view/admin/settings.php:151
2125
- msgid "External Services"
2126
- msgstr "Services Externes"
2127
-
2128
- #: app/view/admin/settings.php:152
2129
- msgid "Cache Report"
2130
- msgstr "Rapport de Cache"
2131
-
2132
- #: app/view/admin/settings.php:171
2133
- msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
- msgstr ""
2135
-
2136
- #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
- #: public/admin/box_ask_customer_review.php:112
2138
- #: public/admin/box_ask_customer_review.php:126
2139
- #: public/admin/box_ask_customer_review.php:140
2140
- #: public/admin/box_ask_customer_review.php:158
2141
- #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
- msgid "This field is required."
2143
- msgstr ""
2144
-
2145
- #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
- msgid "Register"
2147
- msgstr "Inscription"
2148
-
2149
- #: app/view/admin/settings.php:184
2150
- msgid "Sign in"
2151
- msgstr ""
2152
-
2153
- #: app/view/admin/settings.php:185
2154
- msgid "You are successfully signed in to <b>Timely Network</b>."
2155
- msgstr ""
2156
-
2157
- #: app/view/admin/settings.php:186
2158
- msgid "Sign out"
2159
- msgstr ""
2160
-
2161
- #: app/view/admin/settings.php:187
2162
- msgid "Hide form"
2163
- msgstr ""
2164
-
2165
- #: app/view/admin/settings.php:188
2166
- msgid "Show form"
2167
- msgstr ""
2168
-
2169
- #: app/view/admin/settings.php:189
2170
- msgid "Full Name:"
2171
- msgstr ""
2172
-
2173
- #: app/view/admin/settings.php:190
2174
- msgid "Email:"
2175
- msgstr "Email:"
2176
-
2177
- #: app/view/admin/settings.php:191
2178
- msgid "Password:"
2179
- msgstr ""
2180
-
2181
- #: app/view/admin/settings.php:192
2182
- msgid "Confirm Password:"
2183
- msgstr ""
2184
-
2185
- #: app/view/admin/get-repeat-box.php:483
2186
- msgid "fourth"
2187
- msgstr "quatrième"
2188
-
2189
- #: app/view/admin/get-repeat-box.php:495
2190
- msgid "Sunday"
2191
- msgstr "Dimanche"
2192
-
2193
- #: app/view/admin/get-repeat-box.php:496
2194
- msgid "Monday"
2195
- msgstr "Lundi"
2196
-
2197
- #: app/view/admin/get-repeat-box.php:497
2198
- msgid "Tuesday"
2199
- msgstr "Mardi"
2200
-
2201
- #: app/view/admin/get-repeat-box.php:498
2202
- msgid "Wednesday"
2203
- msgstr "Mercredi"
2204
-
2205
- #: app/view/admin/get-repeat-box.php:499
2206
- msgid "Thursday"
2207
- msgstr "Jeudi"
2208
-
2209
- #: app/view/admin/get-repeat-box.php:500
2210
- msgid "Friday"
2211
- msgstr "Vendredi"
2212
-
2213
- #: app/view/admin/get-repeat-box.php:501
2214
- msgid "Saturday"
2215
- msgstr "Samedi"
2216
-
2217
- #: app/view/admin/get-repeat-box.php:503
2218
- msgid "day"
2219
- msgstr "jour"
2220
-
2221
- #: app/view/admin/get-repeat-box.php:504
2222
- msgid "weekday"
2223
- msgstr "jour de la semaine"
2224
-
2225
- #: app/view/admin/get-repeat-box.php:505
2226
- msgid "weekend day"
2227
- msgstr "jour de fin de semaine"
2228
-
2229
- #: app/view/admin/get-repeat-box.php:571
2230
- msgid "year(s)"
2231
- msgstr "année(s)"
2232
-
2233
- #: app/view/admin/nav.php:22
2234
- msgid "<a href=\"%s\">Settings</a>"
2235
- msgstr "<a href=\"%s\">Paramètres</a>"
2236
-
2237
- #: app/view/admin/nav.php:28
2238
- msgid "<a href=\"%s\">Check for updates</a>"
2239
- msgstr ""
2240
-
2241
- #: app/view/admin/organize.php:100
2242
- msgid "Organize Events"
2243
- msgstr "Organiser les événements"
2244
-
2245
- #: app/view/admin/settings.php:30
2246
- msgid "All-in-One Event Calendar: Settings"
2247
- msgstr "All-in-One Event Calendar : Paramètres"
2248
-
2249
- #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
- #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
- msgid "Settings"
2252
- msgstr "Paramètres"
2253
-
2254
- #: app/view/admin/settings.php:89
2255
- msgctxt "meta box"
2256
- msgid "General Settings"
2257
- msgstr "Paramètres Généraux"
2258
-
2259
- #: app/view/admin/get-repeat-box.php:480
2260
- msgid "first"
2261
- msgstr "premier"
2262
-
2263
- #: app/view/admin/get-repeat-box.php:481
2264
- msgid "second"
2265
- msgstr "deuxième"
2266
-
2267
- #: app/view/admin/get-repeat-box.php:482
2268
- msgid "third"
2269
- msgstr "troisième"
2270
-
2271
- #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
- msgid "Import Feeds"
2273
- msgstr ""
2274
-
2275
- #: app/view/admin/calendar-feeds.php:48
2276
- msgctxt "meta box"
2277
- msgid "Feed Subscriptions"
2278
- msgstr "Souscriptions Flux"
2279
-
2280
- #: app/view/admin/calendar-feeds.php:65
2281
- msgid "All-in-One Event Calendar: Import Feeds"
2282
- msgstr ""
2283
-
2284
- #: app/view/admin/event-category.php:30
2285
- msgid "Color"
2286
- msgstr "Couleur"
2287
-
2288
- #: app/view/admin/event-category.php:32
2289
- msgid "Image"
2290
- msgstr "Image"
2291
-
2292
- #: app/view/admin/event-category.php:155
2293
- msgid "Category Color"
2294
- msgstr "Couleur Catégorie"
2295
-
2296
- #: app/view/admin/event-category.php:156
2297
- msgid "Events in this category will be identified by this color"
2298
- msgstr "Les événements de cette catégorie seront identifiés par cette couleur"
2299
-
2300
- #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
- msgid "Category Image"
2302
- msgstr "Image Catégorie"
2303
-
2304
- #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
- msgid "Add Image"
2306
- msgstr "Ajouter Image"
2307
-
2308
- #: app/view/admin/event-category.php:195
2309
- msgid "Remove Image"
2310
- msgstr "Supprimer Image"
2311
-
2312
- #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
- msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
- msgstr "Assigner une image optionnelle à la catégorie. Taille recommandée: carrée, minimum 400&times;400 pixels."
2315
-
2316
- #: app/view/admin/get-repeat-box.php:94
2317
- msgid "times"
2318
- msgstr "fois"
2319
-
2320
- #: app/view/admin/get-repeat-box.php:164
2321
- msgid "Recurrence rule cannot be empty."
2322
- msgstr "La règle de récurrence ne peut être vide."
2323
-
2324
- #: app/view/admin/get-repeat-box.php:182
2325
- msgid "Recurrence rule was not provided."
2326
- msgstr "La règle de récurrence n'a pas été fournie."
2327
-
2328
- #: app/view/admin/get-repeat-box.php:209
2329
- msgid "Never"
2330
- msgstr "Jamais"
2331
-
2332
- #: app/view/admin/get-repeat-box.php:210
2333
- msgid "After"
2334
- msgstr "Après"
2335
-
2336
- #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
- msgid "On date"
2338
- msgstr "A la date"
2339
-
2340
- #: app/view/admin/get-repeat-box.php:247
2341
- msgid "day(s)"
2342
- msgstr "jour(s)"
2343
-
2344
- #: app/view/admin/get-repeat-box.php:330
2345
- msgid "week(s)"
2346
- msgstr "semaine(s)"
2347
-
2348
- #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
- #: lib/recurrence/rule.php:298
2350
- msgid "last"
2351
- msgstr "dernier"
2352
-
2353
- #: app/view/admin/get-repeat-box.php:426
2354
- msgid "month(s)"
2355
- msgstr "mois"
2356
-
2357
- #: app/model/settings.php:929
2358
- msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
- msgstr "<strong>Lier le CSS</strong> dans la section d'<code>&lt;entête (head)&gt;</code> quand le cache de fichier est indisponible."
2360
-
2361
- #: app/model/settings.php:932
2362
- msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
- msgstr "Utiliser cette option si le cache de fichier est indisponible et que vous préférez montrer le CSS en tant que lien plutôt qu'en affichage inline."
2364
-
2365
- #: app/model/settings.php:944
2366
- msgid "Current <strong>robots.txt</strong> on this site"
2367
- msgstr "<strong>robots.txt</strong> actuel sur ce site"
2368
-
2369
- #: app/model/settings.php:948
2370
- msgid ""
2371
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
- "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
- "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
- "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
- "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
- msgstr ""
2377
- "L'exclusion Robot standard, aussi appelé Robots Exclusion Protocol or\n"
2378
- "→\t→\t→\t→\t→\t→\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2379
- "→\t→\t→\t→\t→\t→\tprotocol, est une convention pour les robots d'indexation et autres robots du web\n"
2380
- "→\t→\t→\t→\t→\t→\td'accès à tout ou partie d'un site web public.\n"
2381
- "→\t→\t→\t→\t→\t→\tVous pouvez le changer manuellement en éditant le fichier <code>robots.txt</code> à votre répertoire racine Wordpress."
2382
-
2383
- #: app/model/settings.php:965
2384
- msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2385
- msgstr "<strong>Publier, promouvoir et partager mes événements</strong> publiques sur le réseau de Timely (<a href=\"%s\" target=\"_blank\">En savoir plus &#187;</a>)"
2386
-
2387
- #: app/model/settings.php:988
2388
- msgid "Templates cache improves site performance"
2389
- msgstr "Le cache de gabarits améliore les performances du site"
2390
-
2391
- #: app/model/settings.php:1001
2392
- msgid "Display events in <strong>calendar time zone</strong>"
2393
- msgstr ""
2394
-
2395
- #: app/model/settings.php:1004
2396
- msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
- msgstr ""
2398
-
2399
- #: app/view/admin/add-new-event.php:26
2400
- msgid "Event Details"
2401
- msgstr "Détails de l'Événement"
2402
-
2403
- #: app/view/admin/add-new-event.php:423
2404
- msgid "Set banner image"
2405
- msgstr "Choisir l'image de bannière"
2406
-
2407
- #: app/view/admin/add-new-event.php:424
2408
- msgid "Remove banner image"
2409
- msgstr "Supprimer l'image de bannière"
2410
-
2411
- #: app/view/admin/add-ons.php:68
2412
- msgid "Add-ons for All In One Event Calendar"
2413
- msgstr "Add-ons pour All in One Event Calendar"
2414
-
2415
- #: app/view/admin/add-ons.php:71
2416
- msgid "Browse All Extensions"
2417
- msgstr "Lister toutes les extensions"
2418
-
2419
- #: app/view/admin/add-ons.php:74
2420
- msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
- msgstr "Ces add-ons étendent la fonctionnalité de tout le calendrier All-in-One Evènement"
2422
-
2423
- #: app/view/admin/add-ons.php:77
2424
- msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
- msgstr "C'était une erreur de récupération de la liste des extensions du serveur. Essayer plus tard s'il vous plait."
2426
-
2427
- #: app/view/admin/all-events.php:16
2428
- msgid "Author"
2429
- msgstr "Auteur"
2430
-
2431
- #: app/view/admin/all-events.php:17
2432
- msgid "Post Date"
2433
- msgstr "Date Article"
2434
-
2435
- #: app/view/admin/all-events.php:18
2436
- msgid "Event date/time"
2437
- msgstr "Date/heure de l'événement"
2438
-
2439
- #: app/view/admin/all-events.php:22
2440
- msgid "Ticket Types"
2441
- msgstr ""
2442
-
2443
- #: app/view/admin/all-events.php:134
2444
- msgid "Show All "
2445
- msgstr "Afficher tous"
2446
-
2447
- #: app/view/admin/all-events.php:147
2448
- msgid "Show All Authors"
2449
- msgstr ""
2450
-
2451
- #: app/model/settings.php:746
2452
- msgid "Strict compatibility content filtering"
2453
- msgstr "Filtrage strict de la compatibilité du contenu"
2454
-
2455
- #: app/model/settings.php:758
2456
- msgid " <strong>Hide featured image</strong> from event details page"
2457
- msgstr " <strong>Cacher l'image à la une</strong> de la page détaillée d'événement"
2458
-
2459
- #: app/model/settings.php:761
2460
- msgid "Select this option if your theme already displays each post's featured image."
2461
- msgstr "Sélectionnez cette option si votre thème affiche déjà les images à la une de chaque article."
2462
-
2463
- #: app/model/settings.php:772
2464
- msgid "Input dates in this format"
2465
- msgstr "Dates dans ce format"
2466
-
2467
- #: app/model/settings.php:777
2468
- msgid "Default (d/m/yyyy)"
2469
- msgstr "Défaut (d/m/yyyy)"
2470
-
2471
- #: app/model/settings.php:781
2472
- msgid "US (m/d/yyyy)"
2473
- msgstr "US (m/d/yyyy)"
2474
-
2475
- #: app/model/settings.php:785
2476
- msgid "ISO 8601 (yyyy-m-d)"
2477
- msgstr "ISO 8601 (yyyy-m-d)"
2478
-
2479
- #: app/model/settings.php:789
2480
- msgid "Dotted (m.d.yyyy)"
2481
- msgstr "Point (m.d.yyyy)"
2482
-
2483
- #: app/model/settings.php:801
2484
- msgid " Use <strong>24h time</strong> in time pickers"
2485
- msgstr "Utiliser le <strong>format 24h</strong>"
2486
-
2487
- #: app/model/settings.php:812
2488
- msgid "<strong>Disable address autocomplete</strong> function"
2489
- msgstr "<strong>Désactiver la fonction d’auto-complétion d'adresse</strong>"
2490
-
2491
- #: app/model/settings.php:823
2492
- msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2493
- msgstr "Utiliser la <strong>région</strong> configurée (locale Wordpress) pour influencer la fonction d’auto-complétion d'adresse"
2494
-
2495
- #: app/model/settings.php:839
2496
- msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2497
- msgstr " Afficher le bouton <strong>Postez vos événements</strong> en dessous du calendrier aux utilisateurs ayant les droits"
2498
-
2499
- #: app/model/settings.php:842
2500
- msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2501
- msgstr "Installez l'extension <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> pour utiliser le formulaire public <strong>Postez votre Événement</strong>."
2502
-
2503
- #: app/model/settings.php:863
2504
- msgid "Move calendar into this DOM element"
2505
- msgstr "Bouger le calendrier dans cet élement DOM"
2506
-
2507
- #: app/model/settings.php:865
2508
- msgid ""
2509
- "Optional. Use this JavaScript-based shortcut to place the\n"
2510
- "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2511
- "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2512
- "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2513
- "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2514
- "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2515
- "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2516
- "\t\t\t\t\t\tby the calendar."
2517
- msgstr ""
2518
- "Optionnel. Utiliser ce raccourci JavaScript pour placer le\n"
2519
- "→\t→\t→\t→\t→\t→\tcalendrier comme élément DOM autre que l'habituel contenu de page\n"
2520
- "→\t→\t→\t→\t→\t→\tsi vous n'êtes pas autorisé à créer un gabarit approprié de page\n"
2521
- "→\t→\t→\t→\t→\t→\t pour la page calendrier. Pour l'utiliser, entrer un\n"
2522
- "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2523
- "→\t→\t→\t→\t→\t→\tsélecteur jQuery</a> qui évalue un élément unique DOM.\n"
2524
- "→\t→\t→\t→\t→\t→\tToutes balises dans la cible seront remplacées\n"
2525
- "→\t→\t→\t→\t→\t→\tpar le calendrier."
2526
-
2527
- #: app/model/settings.php:884
2528
- msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2529
- msgstr "<strong>Passer la vérification <tt>in_the_loop()</tt></strong> qui protège contre les événements multiples de calendrier"
2530
-
2531
- #: app/model/settings.php:887
2532
- msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2533
- msgstr "Essayez d'activer cette option si le calendrier n'apparait pas sur la page calendrier. Cela est nécessaire pour compatibilité avec un petit nombre de thèmes utilisant <tt>the_content()</tt> depuis l'extérieure de la boucle. Laissez désactivé sinon."
2534
-
2535
- #: app/model/settings.php:899
2536
- msgid "Disable <strong>gzip</strong> compression."
2537
- msgstr "Désactiver la compression <strong>gzip</strong>."
2538
-
2539
- #: app/model/settings.php:902
2540
- msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2541
- msgstr "Utiliser cette option si le calendrier n'est pas adaptatif <a href=\"http://support.time.ly/disable-gzip-compression/\">En savoir plus</a> concernant le problème (A partir de la version 2.1, gzip est désactivé par défaut pour une compatibilité maximale)."
2542
-
2543
- #: app/model/settings.php:914
2544
- msgid "Use frontend rendering."
2545
- msgstr "Visualisation frontend."
2546
-
2547
- #: app/model/settings.php:917
2548
- msgid "Renders calendar views on the client rather than the server; can improve performance."
2549
- msgstr "Effectuer le rendu des vues calendrier sur le client plutôt que le serveur; cela peut améliorer les performances."
2550
-
2551
- #: app/model/settings.php:493 app/view/calendar/widget.php:128
2552
- msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2553
- msgstr "Pour effacer, maintenez &#8984;/<abbr class=\"initialism\">CTRL</abbr> enfoncé et cliquez sur la sélection."
2554
-
2555
- #: app/model/settings.php:508
2556
- msgid "Default calendar start date (optional)"
2557
- msgstr "Date de départ du calendrier par défaut (optionnel)"
2558
-
2559
- #: app/model/settings.php:519
2560
- msgid "Agenda pages show at most"
2561
- msgstr "Pages d'agenda affichées au minimum"
2562
-
2563
- #: app/model/settings.php:532
2564
- msgid "Week/Day view starts at"
2565
- msgstr "Les vues Jour et Semaine commencent à"
2566
-
2567
- #: app/model/settings.php:545
2568
- msgid "Week/Day view ends at"
2569
- msgstr "Les vues Jour et Semaine se terminent à"
2570
-
2571
- #: app/model/settings.php:558
2572
- msgid "<strong>Word-wrap event stubs</strong> in Month view"
2573
- msgstr "<strong>Découper le talon d'événement</strong> dans la vue Mois"
2574
-
2575
- #: app/model/settings.php:561
2576
- msgid "Only applies to events that span a single day."
2577
- msgstr "Appliqué uniquement aux événements de journée entière."
2578
-
2579
- #: app/model/settings.php:573
2580
- msgid ""
2581
- "In <span class=\"ai1ec-tooltip-toggle\"\n"
2582
- "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2583
- "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2584
- "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2585
- "\t\t\t\t\t\tfrom last day shown</strong>"
2586
- msgstr "Dans <span class=\"ai1ec-tooltip-toggle\" data-original-title=\"Cela inclue la vue Agenda, le widget Événements à venir, et certaines vues étendues.\"> les vues Agenda</span>, <strong>incluant tous les événements des derniers jours</strong>"
2587
-
2588
- #: app/model/settings.php:589
2589
- msgid "Keep all events <strong>expanded</strong> in Agenda view"
2590
- msgstr "Garder tous les événements <strong>agrandis</strong> dans la vue Agenda"
2591
-
2592
- #: app/model/settings.php:601
2593
- msgid "<strong>Show year</strong> in calendar date labels"
2594
- msgstr "<strong>Afficher l'année</strong> dans les dates du calendrier"
2595
-
2596
- #: app/model/settings.php:613
2597
- msgid "<strong>Show location in event titles</strong> in calendar views"
2598
- msgstr "<strong>Afficher le lieu dans les titres d'évènement</strong> dans les vues calendrier"
2599
-
2600
- #: app/model/settings.php:625
2601
- msgid "<strong>Exclude</strong> events from search results"
2602
- msgstr "<strong>Exclure</strong> les évènements des résultats de recherche"
2603
-
2604
- #: app/model/settings.php:637
2605
- msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2606
- msgstr "Cacher les boutons <strong>Souscrire</strong>/<strong>Ajouter au Calendrier</strong> dans les vues calendrier et événement "
2607
-
2608
- #: app/model/settings.php:649
2609
- msgid "Hide <strong>Get a Timely Calendar</strong> button"
2610
- msgstr "Cacher le bouton <strong>Obtenir un calendrier Timely</strong>"
2611
-
2612
- #: app/model/settings.php:661
2613
- msgid " Hide <strong>Google Maps</strong> until clicked"
2614
- msgstr "Cacher <strong>Cartes Google</strong> jusqu'à cliqué"
2615
-
2616
- #: app/model/settings.php:673
2617
- msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2618
- msgstr " <strong>Figer le menu de filtres</strong> en haut la fenêtre lorsqu'il défile hors de l'écran."
2619
-
2620
- #: app/model/settings.php:676
2621
- msgid "Only applies to first visible calendar found on the page."
2622
- msgstr "Appliquer seulement le premier calendrier visible trouvé sur la page"
2623
-
2624
- #: app/model/settings.php:688
2625
- msgid "Offset affixed filter bar vertically by"
2626
- msgstr "Décaler verticalement la barre de filtre figée de"
2627
-
2628
- #: app/model/settings.php:703
2629
- msgid "Wide screens only (&#8805; 1200px)"
2630
- msgstr "Écrans larges seulement (&#8805; 1200px)"
2631
-
2632
- #: app/model/settings.php:718
2633
- msgid "Tablets only (< 980px)"
2634
- msgstr "Tablettes seulement (&lt; 980px)"
2635
-
2636
- #: app/model/settings.php:733
2637
- msgid "Phones only (< 768px)"
2638
- msgstr "Téléphones seulement (&lt; 768px)"
2639
-
2640
- #: app/model/api.php:456
2641
- msgid "Not available"
2642
- msgstr ""
2643
-
2644
- #: app/model/api.php:659
2645
- msgid "%s.<br/>Detail: %s."
2646
- msgstr ""
2647
-
2648
- #: app/model/api.php:664
2649
- msgid "API URL: %s.<br/>Detail: %s - %s"
2650
- msgstr ""
2651
-
2652
- #: app/model/api.php:672
2653
- msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2654
- msgstr ""
2655
-
2656
- #: app/model/api.php:679
2657
- msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2658
- msgstr ""
2659
-
2660
- #: app/model/event/parent.php:186
2661
- msgid "Edit &#8220;%s&#8221;"
2662
- msgstr "Modifier &#8220;%s&#8221;"
2663
-
2664
- #: app/model/event/parent.php:193
2665
- msgid "Base Event"
2666
- msgstr "Événement de base"
2667
-
2668
- #: app/model/review.php:169
2669
- msgid "Feedback provided by user"
2670
- msgstr ""
2671
-
2672
- #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2673
- msgid "Name"
2674
- msgstr "Nom"
2675
-
2676
- #: app/model/review.php:173
2677
- msgid "E-mail"
2678
- msgstr ""
2679
-
2680
- #: app/model/review.php:175
2681
- msgid "Site URL"
2682
- msgstr ""
2683
-
2684
- #: app/model/review.php:177
2685
- msgid "Message"
2686
- msgstr ""
2687
-
2688
- #: app/model/settings.php:401
2689
- #: lib/html/element/setting/calendar-page-selector.php:50
2690
- msgid "Calendar page"
2691
- msgstr "Page du calendrier"
2692
-
2693
- #: app/model/settings.php:411
2694
- msgid "Week starts on"
2695
- msgstr "La semaine commence le"
2696
-
2697
- #: app/model/settings.php:424
2698
- msgid "Available views"
2699
- msgstr "Vues disponibles"
2700
-
2701
- #: app/model/settings.php:432
2702
- msgid "Agenda"
2703
- msgid_plural "Agenda"
2704
- msgstr[0] "Agenda"
2705
- msgstr[1] "Agendas"
2706
-
2707
- #: app/model/settings.php:443
2708
- msgid "Day"
2709
- msgid_plural "Day"
2710
- msgstr[0] "Jour"
2711
- msgstr[1] "Jours"
2712
-
2713
- #: app/model/settings.php:454
2714
- msgid "Month"
2715
- msgid_plural "Month"
2716
- msgstr[0] "Mois"
2717
- msgstr[1] "Mois"
2718
-
2719
- #: app/model/settings.php:465
2720
- msgid "Week"
2721
- msgid_plural "Week"
2722
- msgstr[0] "Semaine"
2723
- msgstr[1] "Semaines"
2724
-
2725
- #: app/model/settings.php:479
2726
- msgid "Timezone"
2727
- msgstr "Fuseau horaire"
2728
-
2729
- #: app/model/settings.php:492
2730
- msgid "Preselected calendar filters"
2731
- msgstr "Filtres présélectionnés de calendrier"
2732
-
2733
- #: app/controller/javascript.php:509
2734
- msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2735
- msgstr "Une panne est survenue pendant la recherche de l'évènement. <br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2736
-
2737
- #: app/controller/javascript.php:516
2738
- msgid "The end date can't be earlier than the start date."
2739
- msgstr "La date de fin ne peut pas être avant la date de début."
2740
-
2741
- #: app/controller/javascript.php:517
2742
- msgid "For week and day view, you must select an interval of at least 6 hours."
2743
- msgstr "Pour la vue hebdomadaire et quotidienne, vous devez sélectionner un intervalle d'au moins 6 heures."
2744
-
2745
- #: app/model/api.php:40
2746
- msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2747
- msgstr ""
2748
-
2749
- #: app/model/api.php:41
2750
- msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2751
- msgstr ""
2752
-
2753
- #: app/model/api.php:42
2754
- msgid "We were unable to Sign you Up for Time.ly Ticketing"
2755
- msgstr ""
2756
-
2757
- #: app/model/api.php:43
2758
- msgid "We were unable to Sign you In for Time.ly Ticketing"
2759
- msgstr ""
2760
-
2761
- #: app/model/api.php:44
2762
- msgid "We were unable to create the Event on Time.ly Ticketing"
2763
- msgstr ""
2764
-
2765
- #: app/model/api.php:45
2766
- msgid "We were unable to update the Event on Time.ly Ticketing"
2767
- msgstr ""
2768
-
2769
- #: app/model/api.php:46
2770
- msgid "The event has the option Tickets selected but any ticket was added."
2771
- msgstr ""
2772
-
2773
- #: app/model/api.php:47
2774
- msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2775
- msgstr ""
2776
-
2777
- #: app/model/api.php:48
2778
- msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2779
- msgstr ""
2780
-
2781
- #: app/model/api.php:49
2782
- msgid "Payment preferences were not saved."
2783
- msgstr ""
2784
-
2785
- #: app/model/api.php:50
2786
- msgid "Payment preferences were saved."
2787
- msgstr ""
2788
-
2789
- #: app/model/api.php:51
2790
- msgid "Event not found inside the database."
2791
- msgstr ""
2792
-
2793
- #: app/model/api.php:52
2794
- msgid "We were unable to get the Sales information from Time.ly Ticketing"
2795
- msgstr ""
2796
-
2797
- #: app/model/api.php:446
2798
- msgid "Past Event"
2799
- msgstr ""
2800
-
2801
- #: app/model/api.php:448
2802
- msgid "Event closed"
2803
- msgstr ""
2804
-
2805
- #: app/model/api.php:450
2806
- msgid "Not available yet"
2807
- msgstr ""
2808
-
2809
- #: app/model/api.php:452
2810
- msgid "Sale closed"
2811
- msgstr ""
2812
-
2813
- #: app/model/api.php:454
2814
- msgid "Sold out"
2815
- msgstr ""
2816
-
2817
- #: app/controller/javascript.php:484
2818
- msgid "Report"
2819
- msgstr ""
2820
-
2821
- #: app/controller/javascript.php:485
2822
- msgid "Sale dates"
2823
- msgstr ""
2824
-
2825
- #: app/controller/javascript.php:486
2826
- msgid "Limits"
2827
- msgstr ""
2828
-
2829
- #: app/controller/javascript.php:487
2830
- msgid "Actions"
2831
- msgstr ""
2832
-
2833
- #: app/controller/javascript.php:488
2834
- msgid "Sold:"
2835
- msgstr ""
2836
-
2837
- #: app/controller/javascript.php:489
2838
- msgid "Left:"
2839
- msgstr ""
2840
-
2841
- #: app/controller/javascript.php:490
2842
- msgid "Start:"
2843
- msgstr ""
2844
-
2845
- #: app/controller/javascript.php:491
2846
- msgid "End:"
2847
- msgstr ""
2848
-
2849
- #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2850
- msgid "Min:"
2851
- msgstr ""
2852
-
2853
- #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2854
- msgid "Max:"
2855
- msgstr ""
2856
-
2857
- #: app/controller/javascript.php:494
2858
- msgid "Attendees"
2859
- msgstr ""
2860
-
2861
- #: app/controller/javascript.php:495
2862
- msgid "Hide Attendees"
2863
- msgstr ""
2864
-
2865
- #: app/controller/javascript.php:496
2866
- msgid "Attendees List"
2867
- msgstr ""
2868
-
2869
- #: app/controller/javascript.php:497
2870
- msgid "Guest Name"
2871
- msgstr ""
2872
-
2873
- #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2874
- msgid "Status"
2875
- msgstr ""
2876
-
2877
- #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2878
- #: app/view/event/ticket.php:71
2879
- msgid "Email"
2880
- msgstr "Courriel"
2881
-
2882
- #: app/controller/javascript.php:500
2883
- msgid "No attendees for this ticket type."
2884
- msgstr ""
2885
-
2886
- #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2887
- #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2888
- msgid "Edit"
2889
- msgstr "Éditer"
2890
-
2891
- #: app/controller/javascript.php:502
2892
- msgid "Code"
2893
- msgstr ""
2894
-
2895
- #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2896
- msgid "Unlimited"
2897
- msgstr ""
2898
-
2899
- #: app/controller/javascript.php:506
2900
- msgid "Your message has been sent. Thank you for your feedback."
2901
- msgstr ""
2902
-
2903
- #: app/controller/javascript.php:507
2904
- msgid "Your message has not been sent. Please try again or contact us."
2905
- msgstr ""
2906
-
2907
- #: app/controller/javascript.php:405
2908
- msgid "Please enter a valid iCalendar URL."
2909
- msgstr "Veuillez entrer une URL iCalendar valide."
2910
-
2911
- #: app/controller/javascript.php:408
2912
- msgid "Please enter a valid email address."
2913
- msgstr "Veuillez entrer une adresse courriel valide."
2914
-
2915
- #: app/controller/javascript.php:410
2916
- msgid "Choose Image"
2917
- msgstr "Choisir Image"
2918
-
2919
- #: app/controller/javascript.php:413
2920
- msgid "The value you have entered is not a valid CSS length."
2921
- msgstr "La valeur que vous avez entrée n'est pas une longueur valide CSS."
2922
-
2923
- #: app/controller/javascript.php:416
2924
- msgid "Are you sure you want to reset your theme options to their default values?"
2925
- msgstr "Êtes-vous sûr(e) de vouloir remettre vos options de thème aux valeurs par défaut ?"
2926
-
2927
- #: app/controller/javascript.php:419
2928
- msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2929
- msgstr "Veuillez entrer une latitude valide. Une latitude valide est comprise entre +90 et -90."
2930
-
2931
- #: app/controller/javascript.php:422
2932
- msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2933
- msgstr "Veuillez entrer une longitude valide. Une longitude valide est comprise entre +180 et -180."
2934
-
2935
- #: app/controller/javascript.php:425
2936
- msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2937
- msgstr "Lorsque \"Coordonnées\" est coché, \"Latitude\" est un champs requis."
2938
-
2939
- #: app/controller/javascript.php:428
2940
- msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2941
- msgstr "Lorsque \"Coordonnées\" est coché, \"Longitude\" est un champs requis. "
2942
-
2943
- #: app/controller/javascript.php:431
2944
- msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2945
- msgstr ""
2946
-
2947
- #: app/controller/javascript.php:434
2948
- msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2949
- msgstr "L'URL que vous avez entrée dans <b>Tarifs de l'événement et tickets</b> &gt; <b>Acheter des tickets URL</b> semble invalide."
2950
-
2951
- #: app/controller/javascript.php:437
2952
- msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2953
- msgstr "Souvenez-vous que les URLs doivent commencer par \"http://\" ou \"https://\"."
2954
-
2955
- #: app/controller/javascript.php:440
2956
- msgid "Loading&hellip;"
2957
- msgstr "Chargement&hellip;"
2958
-
2959
- #: app/controller/javascript.php:443
2960
- msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2961
- msgstr ""
2962
-
2963
- #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2964
- msgid "Preview:"
2965
- msgstr "Aperçu : "
2966
-
2967
- #: app/controller/javascript.php:474
2968
- msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2969
- msgstr "Charger l'aperçu&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2970
-
2971
- #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2972
- msgid "Ticketing Details"
2973
- msgstr ""
2974
-
2975
- #: app/controller/javascript.php:480
2976
- msgid "Hide Ticketing Details"
2977
- msgstr ""
2978
-
2979
- #: app/controller/javascript.php:481
2980
- msgid "Loading tickets details..."
2981
- msgstr ""
2982
-
2983
- #: app/controller/javascript.php:482
2984
- msgid "Type and price"
2985
- msgstr ""
2986
-
2987
- #: app/controller/javascript.php:483
2988
- msgid "Info"
2989
- msgstr ""
2990
-
2991
- #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2992
- #: app/view/admin/add-ons.php:27
2993
- msgid "Add-ons"
2994
- msgstr "Modules additionnels"
2995
-
2996
- #: app/controller/front.php:343
2997
- msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
2998
- msgstr "Votre thème de calendrier actif n'a pas pu être correctement initialisé. Le thème par défaut a été activé à la place. Veuillez visiter %s et essayer de réactiver votre thème manuellement."
2999
-
3000
- #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
3001
- #: app/view/admin/theme-switching.php:55
3002
- msgid "Calendar Themes"
3003
- msgstr "Thèmes Calendrier"
3004
-
3005
- #: app/controller/front.php:990
3006
- msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
3007
- msgstr "Votre base de données est corrompue. La mise à jour précédente a échouée. Veuillez restaurer les tables All-in-One Event Calendar depuis une sauvegarde et réessayer. <br>Les erreurs suivantes ont été trouvées:<br>%s"
3008
-
3009
- #: app/controller/javascript-widget.php:48
3010
- msgid "You must choose the Calendar page before using the Super Widget"
3011
- msgstr "Vous devez choisir la page Calendrier avant d'utiliser le Super Widget"
3012
-
3013
- #: app/controller/javascript.php:402
3014
- msgid "This feed is already being imported."
3015
- msgstr "Ce flux a déjà été importé."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/all-in-one-event-calendar-he.mo DELETED
Binary file
language/all-in-one-event-calendar-he.po DELETED
@@ -1,3000 +0,0 @@
1
- # Translation of 2.3 in Hebrew
2
- # This file is distributed under the same license as the 2.3 package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:47:03+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-alpha-1000\n"
11
- "Project-Id-Version: 2.3\n"
12
-
13
- #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
- #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
- msgid "Event background"
16
- msgstr ""
17
-
18
- #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
- #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
- msgid "Event time background"
21
- msgstr ""
22
-
23
- #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
- #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
- msgid "Event text"
26
- msgstr "תיאור האירוע"
27
-
28
- #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
- #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
- msgid "Month view date background"
31
- msgstr ""
32
-
33
- #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
- #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
- msgid "Week/day view now marker"
36
- msgstr ""
37
-
38
- #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
- #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
- msgid "Date label accent color"
41
- msgstr ""
42
-
43
- #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
- #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
- msgid "Date label background"
46
- msgstr "רקע תווית תאריך"
47
-
48
- #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
- #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
- msgid "Date background"
51
- msgstr "רקע תאריך"
52
-
53
- #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
- #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
- msgid "Today background"
56
- msgstr "רקע ׳היום׳"
57
-
58
- #. Plugin Name of the plugin/theme
59
- msgid "All-in-One Event Calendar by Time.ly"
60
- msgstr ""
61
-
62
- #. Description of the plugin/theme
63
- msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
- msgstr ""
65
-
66
- #. Author of the plugin/theme
67
- msgid "Time.ly Network Inc."
68
- msgstr ""
69
-
70
- #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
- #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
- msgid "List item background (active/hover)"
73
- msgstr ""
74
-
75
- #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
- #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
- msgid "Input field placeholder text"
78
- msgstr ""
79
-
80
- #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
- #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
- msgid "Today color"
83
- msgstr "צבע ׳היום׳"
84
-
85
- #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
- #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
- msgid "All-day badge color"
88
- msgstr "צבע התווית ׳יום-שלם׳"
89
-
90
- #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
- #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
- msgid "Event image shadow"
93
- msgstr "צל תמונת אירוע"
94
-
95
- #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
- #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
- msgid "Event default color"
98
- msgstr ""
99
-
100
- #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
- #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
- msgid "Event default color (hover)"
103
- msgstr "צבע ברירת המחדל של האירוע (hover)"
104
-
105
- #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
- #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
- msgid "All-day/multi-day event stub text"
108
- msgstr ""
109
-
110
- #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
- #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
- msgid "All-day/multi-day event stub text shadow"
113
- msgstr ""
114
-
115
- #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
- #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
- msgid "Event border"
118
- msgstr "גבול אירוע"
119
-
120
- #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
- #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
- msgid "Button text"
123
- msgstr "טקסט כפתור"
124
-
125
- #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
- #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
- msgid "Input field text"
128
- msgstr "טקסט שדה הקלט"
129
-
130
- #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
- #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
- msgid "Input field background"
133
- msgstr ""
134
-
135
- #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
- #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
- msgid "Input field border"
138
- msgstr "גבול שדה טקסט"
139
-
140
- #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
- #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
- msgid "Input field border (focus)"
143
- msgstr ""
144
-
145
- #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
- #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
- msgid "Input field background (disabled)"
148
- msgstr "רקע שדה טקסט (מבוטל)"
149
-
150
- #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
- #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
- msgid "Field label"
153
- msgstr "תווית שדה"
154
-
155
- #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
- #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
- msgid "Dropdown list background"
158
- msgstr "רקע רשימה נפתחת"
159
-
160
- #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
- #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
- msgid "Dropdown list border"
163
- msgstr ""
164
-
165
- #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
- #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
- msgid "List item text"
168
- msgstr ""
169
-
170
- #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
- #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
- msgid "List item text (active/hover)"
173
- msgstr "טקסט פריט רשימה (active\\hover)"
174
-
175
- #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
- msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
- msgstr ""
178
-
179
- #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
- msgid "Theme deleted."
181
- msgstr "ערכת הנושא נמחקה."
182
-
183
- #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
- msgid "Manage Themes"
185
- msgstr "נהל ערכות נושא"
186
-
187
- #: public/admin/themes-install.php:40
188
- msgctxt "theme"
189
- msgid "Install Themes"
190
- msgstr ""
191
-
192
- #: public/admin/themes-updated.php:5
193
- msgid "Update Calendar Themes"
194
- msgstr ""
195
-
196
- #: public/admin/themes-updated.php:15
197
- msgid "All-in-One Event Calendar Settings »"
198
- msgstr ""
199
-
200
- #: public/admin/themes.php:18
201
- msgid "Current Calendar Theme"
202
- msgstr ""
203
-
204
- #: public/admin/themes.php:21
205
- msgid "Current theme preview"
206
- msgstr ""
207
-
208
- #: public/admin/themes.php:47
209
- msgid "Available Calendar Themes"
210
- msgstr ""
211
-
212
- #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
- #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
- msgid "Body background"
215
- msgstr "רקע כללי"
216
-
217
- #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
- #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
- msgid "Text color"
220
- msgstr "צבע טקסט"
221
-
222
- #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
- #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
- msgid "Text emboss"
225
- msgstr ""
226
-
227
- #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
- #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
- msgid "Link"
230
- msgstr "קישור"
231
-
232
- #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
- #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
- msgid "Link (hover)"
235
- msgstr "קישור (hover)"
236
-
237
- #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
- #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
- msgid "Base font"
240
- msgstr ""
241
-
242
- #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
- #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
- msgid "Base font size"
245
- msgstr ""
246
-
247
- #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
- #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
- msgid "Table background"
250
- msgstr "רקע הטבלה"
251
-
252
- #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
- #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
- msgid "Table header background"
255
- msgstr "רקע כותרת הטבלה"
256
-
257
- #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
- #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
- msgid "Table header text"
260
- msgstr ""
261
-
262
- #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
- #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
- msgid "Primary brand color"
265
- msgstr ""
266
-
267
- #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
- #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
- msgid "Button background"
270
- msgstr "רקע כפתור"
271
-
272
- #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
- #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
- msgid "Button border"
275
- msgstr ""
276
-
277
- #: public/admin/feed_row.php:104
278
- msgid "Refreshing&#8230;"
279
- msgstr "מרענן&#8230;"
280
-
281
- #: public/admin/feed_row.php:106
282
- msgid "Refresh"
283
- msgstr "רענן"
284
-
285
- #: public/admin/feed_row.php:119
286
- msgid "Removing&#8230;"
287
- msgstr "מסיר&#8230;"
288
-
289
- #: public/admin/feed_row.php:121
290
- msgid "Remove"
291
- msgstr "הסר"
292
-
293
- #: public/admin/import.php:6
294
- msgid "Successfully imported events:"
295
- msgstr ""
296
-
297
- #: public/admin/plugins/ics/display_feeds.php:2
298
- msgid ""
299
- "Configure which other calendars your own calendar subscribes to.\n"
300
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
- " Enter the feed URL(s) below and the events from those feeds will be\n"
302
- " imported periodically."
303
- msgstr ""
304
-
305
- #: public/admin/plugins/ics/display_feeds.php:14
306
- msgid "Check for new events"
307
- msgstr "בדוק אירועים חדשים"
308
-
309
- #: public/admin/plugins/ics/display_feeds.php:45
310
- msgid "Allow comments on imported events"
311
- msgstr "אפשר תגובות על אירועים מיובאים"
312
-
313
- #: public/admin/plugins/ics/display_feeds.php:52
314
- msgid "Show map on imported events"
315
- msgstr ""
316
-
317
- #: public/admin/plugins/ics/display_feeds.php:59
318
- msgid "Import any tags/categories provided by feed, in addition those selected above"
319
- msgstr ""
320
-
321
- #: public/admin/plugins/ics/display_feeds.php:93
322
- msgid "Add new subscription"
323
- msgstr ""
324
-
325
- #: public/admin/plugins/ics/display_feeds.php:96
326
- msgid "Update subscription"
327
- msgstr ""
328
-
329
- #: public/admin/row_custom.php:3
330
- msgid "Custom dates:"
331
- msgstr "תאריכים מותאמים אישית:"
332
-
333
- #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
334
- #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
335
- #: public/admin/row_yearly.php:3
336
- msgid "Every"
337
- msgstr "כל"
338
-
339
- #: public/admin/row_monthly.php:16
340
- msgid "On day of the month"
341
- msgstr ""
342
-
343
- #: public/admin/row_monthly.php:23
344
- msgid "On day of the week"
345
- msgstr "ביום בשבוע"
346
-
347
- #: public/admin/row_weekly.php:12
348
- msgctxt "Recurrence editor - weekly tab"
349
- msgid "On"
350
- msgstr "ב-"
351
-
352
- #: public/admin/row_yearly.php:12
353
- msgctxt "Recurrence editor - yearly tab"
354
- msgid "In"
355
- msgstr "ב"
356
-
357
- #: public/admin/settings.php:19
358
- msgid "Update Settings"
359
- msgstr "עדכן הגדרות"
360
-
361
- #: public/admin/themes-install.php:4
362
- msgid "The active theme is broken. Reverting to the default theme."
363
- msgstr ""
364
-
365
- #: public/admin/themes-install.php:13
366
- msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
367
- msgstr "ערכת נושא חדשה הופעלה. ערכה זו תומכת ביישומונים. יש לבקש במסך <a href=\"%s\">העדפות יישומונים</a> כדי להגדיר את תצורתם."
368
-
369
- #: public/admin/calendar_tasks.php:24
370
- msgid "Manage Events"
371
- msgstr "נהל אירועים"
372
-
373
- #: public/admin/calendar_tasks.php:27
374
- msgid "View and edit all your events."
375
- msgstr "צפה וערוך בכל האירועים שלך."
376
-
377
- #: public/admin/calendar_tasks.php:39
378
- msgid "Manage Event Categories"
379
- msgstr "נהל קטגוריות"
380
-
381
- #: public/admin/calendar_tasks.php:42
382
- msgid "Organize and color-code your events."
383
- msgstr ""
384
-
385
- #: public/admin/calendar_tasks.php:50
386
- msgid "Choose Your Theme"
387
- msgstr "בחר את ערכת הנושא שלך"
388
-
389
- #: public/admin/calendar_tasks.php:53
390
- msgid "Change the look and feel."
391
- msgstr "שנה את המראה הכללי."
392
-
393
- #: public/admin/calendar_tasks.php:63
394
- msgid "Manage Calendar Feeds"
395
- msgstr ""
396
-
397
- #: public/admin/calendar_tasks.php:66
398
- msgid "Subscribe to other calendars."
399
- msgstr "הירשם ללוחות אירועים אחרים."
400
-
401
- #: public/admin/calendar_tasks.php:74
402
- msgid "Edit Calendar Settings"
403
- msgstr "ערוך הגדרות לוח אירועים"
404
-
405
- #: public/admin/calendar_tasks.php:77
406
- msgid "Make this calendar your own."
407
- msgstr "הפוך לוח זה לשלך."
408
-
409
- #: public/admin/cron_freq.php:3
410
- msgid "Hourly"
411
- msgstr "שעתי"
412
-
413
- #: public/admin/cron_freq.php:6
414
- msgid "Twice Daily"
415
- msgstr "פעמים ביום"
416
-
417
- #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
418
- msgid "iCalendar/.ics Feed URL:"
419
- msgstr "כתובת פיד iCalendar/.ics:"
420
-
421
- #: public/admin/feed_row.php:24
422
- msgid "Event categories:"
423
- msgstr ""
424
-
425
- #: public/admin/feed_row.php:31
426
- msgid "Tag with"
427
- msgstr ""
428
-
429
- #: public/admin/feed_row.php:40
430
- msgid "Allow comments"
431
- msgstr ""
432
-
433
- #: public/admin/feed_row.php:51
434
- msgid "Show map"
435
- msgstr ""
436
-
437
- #: public/admin/feed_row.php:63
438
- msgid "Keep original events categories and tags"
439
- msgstr ""
440
-
441
- #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
442
- msgid "On refresh, preserve previously imported events that are missing from the feed"
443
- msgstr "בעת רענון, שמר אירועים שיובאו קודם, הנעדרים מהפיד"
444
-
445
- #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
446
- msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
447
- msgstr "מנחש את אזור הזמן של אירועים שלא הוגדר עבורם אזור זמן; מומלץ עבור פידים של Google Calendar"
448
-
449
- #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
450
- msgid "Assign default time zone to events in UTC"
451
- msgstr "הקצה איזור זמן דיפולטי לאירועים בUTC"
452
-
453
- #: public/admin/box_support.php:19
454
- msgid "Get Add-ons"
455
- msgstr "קבל הרחבות"
456
-
457
- #: public/admin/box_support.php:27
458
- msgid "Support"
459
- msgstr "תמיכה"
460
-
461
- #: public/admin/box_support.php:35
462
- msgid "Timely Events"
463
- msgstr "אירועי Timely"
464
-
465
- #: public/admin/box_support.php:43
466
- msgid "Timely News"
467
- msgstr ""
468
-
469
- #: public/admin/box_support.php:47
470
- msgid "view all news"
471
- msgstr "צפה בכל החדשות"
472
-
473
- #: public/admin/box_support.php:95
474
- msgid "Follow @_Timely"
475
- msgstr "עקוב אחרי @_Timely"
476
-
477
- #: public/admin/box_time_and_date.php:6
478
- msgid "Event date and time"
479
- msgstr "תאריך וזמן האירוע"
480
-
481
- #: public/admin/box_time_and_date.php:26
482
- msgid "All-day event"
483
- msgstr "אירוע יום-שלם"
484
-
485
- #: public/admin/box_time_and_date.php:35
486
- msgid "No end time"
487
- msgstr "אין זמן סיום"
488
-
489
- #: public/admin/box_time_and_date.php:42
490
- msgid "Start date / time"
491
- msgstr "תאריך / זמן התחלה"
492
-
493
- #: public/admin/box_time_and_date.php:59
494
- msgid "End date / time"
495
- msgstr "זמן/תאריך סיום"
496
-
497
- #: public/admin/box_time_and_date.php:76
498
- msgid "Time zone"
499
- msgstr "אזור זמן"
500
-
501
- #: public/admin/box_time_and_date.php:81
502
- msgid "Choose your time zone"
503
- msgstr "בחר את אזור הזמן שלך"
504
-
505
- #: public/admin/box_time_and_date.php:108
506
- msgid "Repeat"
507
- msgstr "חוזר..."
508
-
509
- #: public/admin/box_time_and_date.php:127
510
- msgid "Exclude"
511
- msgstr ""
512
-
513
- #: public/admin/box_time_and_date.php:136
514
- msgid "Choose a rule for exclusion"
515
- msgstr ""
516
-
517
- #: public/admin/calendar_tasks.php:3
518
- msgid "Welcome"
519
- msgstr "ברוכים הבאים"
520
-
521
- #: public/admin/calendar_tasks.php:4
522
- msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
523
- msgstr ""
524
-
525
- #: public/admin/calendar_tasks.php:13
526
- msgid "Post Your Event"
527
- msgstr "פרסם את האירוע שלך"
528
-
529
- #: public/admin/calendar_tasks.php:16
530
- msgid "Add a new event to the calendar."
531
- msgstr "הוסף אירוע חדש ללוח."
532
-
533
- #: public/admin/box_eventbrite.php:60
534
- msgid "Donation Based"
535
- msgstr "מבוסס תרומה"
536
-
537
- #: public/admin/box_eventbrite.php:68
538
- msgid "The price for this event's first ticket will be taken from the Cost field above."
539
- msgstr ""
540
-
541
- #: public/admin/box_eventbrite.php:75
542
- msgid "Quantity"
543
- msgstr "כמות"
544
-
545
- #: public/admin/box_eventbrite.php:85
546
- msgid "Include Fee in Price"
547
- msgstr "כלול את דמי ההרשמה במחיר"
548
-
549
- #: public/admin/box_eventbrite.php:90
550
- msgid "Add Service Fee on top of price"
551
- msgstr ""
552
-
553
- #: public/admin/box_eventbrite.php:92
554
- msgid "Include Service fee in price"
555
- msgstr ""
556
-
557
- #: public/admin/box_eventbrite.php:98
558
- msgid "Payment Options"
559
- msgstr "אפשרויות תשלום"
560
-
561
- #: public/admin/box_eventbrite.php:105
562
- msgid "Google Checkout"
563
- msgstr "Google Checkout"
564
-
565
- #: public/admin/box_eventbrite.php:107
566
- msgid "Check"
567
- msgstr ""
568
-
569
- #: public/admin/box_eventbrite.php:109
570
- msgid "Cash"
571
- msgstr "מזומן"
572
-
573
- #: public/admin/box_eventbrite.php:111
574
- msgid "Send an Invoice"
575
- msgstr "שלח חשבונית"
576
-
577
- #: public/admin/box_profile_timezone.php:9
578
- msgid "Your preferred timezone"
579
- msgstr "איזור הזמן המועדף עליך"
580
-
581
- #: public/admin/box_repeat.php:5
582
- msgid "Select recurrence pattern:"
583
- msgstr ""
584
-
585
- #: public/admin/box_repeat.php:36
586
- msgid "Custom"
587
- msgstr "מותאם אישית"
588
-
589
- #: public/admin/box_repeat.php:72
590
- msgid "End"
591
- msgstr "סוף"
592
-
593
- #: public/admin/box_repeat.php:82
594
- msgid "Ending after"
595
- msgstr "מסתיים אחרי"
596
-
597
- #: public/admin/box_repeat.php:109
598
- #: public/admin/plugins/ics/display_feeds.php:90
599
- msgid "Please wait&#8230;"
600
- msgstr "אנא המתן&#8230;"
601
-
602
- #: public/admin/box_repeat.php:111
603
- msgid "Apply"
604
- msgstr "החל"
605
-
606
- #: public/admin/box_repeat.php:116
607
- #: public/admin/plugins/ics/display_feeds.php:84
608
- msgid "Cancel"
609
- msgstr "ביטול"
610
-
611
- #: public/admin/box_support.php:4
612
- msgid "Timely"
613
- msgstr "Timely"
614
-
615
- #: public/admin/box_support.php:11
616
- msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
617
- msgstr ""
618
-
619
- #: public/admin/box_event_cost.php:228
620
- msgid "Status:"
621
- msgstr ""
622
-
623
- #: public/admin/box_event_cost.php:235
624
- msgid "Open"
625
- msgstr ""
626
-
627
- #: public/admin/box_event_cost.php:239
628
- msgid "Closed"
629
- msgstr ""
630
-
631
- #: public/admin/box_event_cost.php:254
632
- msgid "Add New Ticket Type"
633
- msgstr ""
634
-
635
- #: public/admin/box_event_cost.php:274
636
- msgid "Tickets URL:"
637
- msgstr ""
638
-
639
- #: public/admin/box_event_location.php:6
640
- msgid "Event location details"
641
- msgstr "פרטי מיקום האירוע"
642
-
643
- #: public/admin/box_event_location.php:19
644
- msgid "Venue name:"
645
- msgstr "שם המקום:"
646
-
647
- #: public/admin/box_event_location.php:31
648
- msgid "Address:"
649
- msgstr "כתובת:"
650
-
651
- #: public/admin/box_event_location.php:45
652
- msgid "Input Coordinates"
653
- msgstr "קואורדינטות קלט"
654
-
655
- #: public/admin/box_event_location.php:57
656
- msgid "Latitude:"
657
- msgstr "קו רוחב:"
658
-
659
- #: public/admin/box_event_location.php:69
660
- msgid "Longitude:"
661
- msgstr ""
662
-
663
- #: public/admin/box_event_location.php:85
664
- msgid "Show Map"
665
- msgstr "הצג מפה"
666
-
667
- #: public/admin/box_eventbrite.php:1
668
- msgid "Eventbrite Ticketing"
669
- msgstr ""
670
-
671
- #: public/admin/box_eventbrite.php:7
672
- msgid "Register this event with Eventbrite.com?"
673
- msgstr "הירשם לאירוע זה דרך Eventbrite.com?"
674
-
675
- #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
676
- #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
677
- #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
678
- msgid "Yes"
679
- msgstr "כן"
680
-
681
- #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
682
- #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
683
- #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
684
- msgid "No"
685
- msgstr "לא"
686
-
687
- #: public/admin/box_eventbrite.php:22
688
- msgid "Set up your first ticket"
689
- msgstr "הגדר את הכרטיס הראשון שלך"
690
-
691
- #: public/admin/box_eventbrite.php:24
692
- msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
693
- msgstr ""
694
-
695
- #: public/admin/box_eventbrite.php:42
696
- msgid "Description"
697
- msgstr "תיאור"
698
-
699
- #: public/admin/box_eventbrite.php:53
700
- msgid "Type"
701
- msgstr "סוג"
702
-
703
- #: public/admin/box_eventbrite.php:58
704
- msgid "Set Price"
705
- msgstr "קבע מחיר"
706
-
707
- #: public/admin/box_event_contact.php:30
708
- msgid "Phone:"
709
- msgstr "טלפון:"
710
-
711
- #: public/admin/box_event_contact.php:56
712
- msgid "Website URL:"
713
- msgstr ""
714
-
715
- #: public/admin/box_event_cost.php:6
716
- msgid "Event cost and Tickets"
717
- msgstr ""
718
-
719
- #: public/admin/box_event_cost.php:20
720
- msgid "Ticket options not available - event imported from external calendar."
721
- msgstr ""
722
-
723
- #: public/admin/box_event_cost.php:28
724
- msgid "Free event"
725
- msgstr "כניסה חופשית"
726
-
727
- #: public/admin/box_event_cost.php:41
728
- msgid "External Tickets URL"
729
- msgstr ""
730
-
731
- #: public/admin/box_event_cost.php:52
732
- msgid "Ticketing allows you to sell tickets directly to the users."
733
- msgstr ""
734
-
735
- #: public/admin/box_event_cost.php:55
736
- msgid "Sign Up for Timely Network"
737
- msgstr ""
738
-
739
- #: public/admin/box_event_cost.php:80
740
- msgid "Remove Ticket Type"
741
- msgstr ""
742
-
743
- #: public/admin/box_event_cost.php:101
744
- msgid "Ex.: Regular Ticket"
745
- msgstr ""
746
-
747
- #: public/admin/box_event_cost.php:105
748
- msgid "Description:"
749
- msgstr "תיאור:"
750
-
751
- #: public/admin/box_event_cost.php:111
752
- msgid "(Optional)"
753
- msgstr ""
754
-
755
- #: public/admin/box_event_cost.php:115
756
- msgid "Price:"
757
- msgstr ""
758
-
759
- #: public/admin/box_event_cost.php:124
760
- msgid "USD"
761
- msgstr ""
762
-
763
- #: public/admin/box_event_cost.php:128
764
- msgid "Limits:"
765
- msgstr ""
766
-
767
- #: public/admin/box_event_cost.php:131
768
- msgid "This fields are required."
769
- msgstr ""
770
-
771
- #: public/admin/box_event_cost.php:156
772
- msgid "Quantity:"
773
- msgstr ""
774
-
775
- #: public/admin/box_event_cost.php:180
776
- msgid "Available:"
777
- msgstr ""
778
-
779
- #: public/admin/box_event_cost.php:185
780
- msgid "Immediately"
781
- msgstr ""
782
-
783
- #: public/admin/box_event_cost.php:190
784
- msgid "From:"
785
- msgstr ""
786
-
787
- #: public/admin/box_event_cost.php:207
788
- msgid "Till:"
789
- msgstr ""
790
-
791
- #: public/admin/box_ask_customer_review.php:42
792
- #: public/admin/box_ask_customer_review.php:75
793
- msgid "No, thanks"
794
- msgstr ""
795
-
796
- #: public/admin/box_ask_customer_review.php:50
797
- #: public/admin/box_ask_customer_review.php:84
798
- msgid "Ok, sure!"
799
- msgstr ""
800
-
801
- #: public/admin/box_ask_customer_review.php:66
802
- msgid "Would you mind giving us some feedback?"
803
- msgstr ""
804
-
805
- #: public/admin/box_ask_customer_review.php:101
806
- msgid "Please provide some feedback"
807
- msgstr ""
808
-
809
- #: public/admin/box_ask_customer_review.php:108
810
- msgid "Message:"
811
- msgstr ""
812
-
813
- #: public/admin/box_ask_customer_review.php:121
814
- msgid "Name:"
815
- msgstr ""
816
-
817
- #: public/admin/box_ask_customer_review.php:136
818
- #: public/admin/box_event_contact.php:43
819
- msgid "E-mail:"
820
- msgstr "דוא״ל:"
821
-
822
- #: public/admin/box_ask_customer_review.php:143
823
- msgid "E-mail is invalid."
824
- msgstr ""
825
-
826
- #: public/admin/box_ask_customer_review.php:154
827
- msgid "Site URL:"
828
- msgstr ""
829
-
830
- #: public/admin/box_ask_customer_review.php:161
831
- msgid "Site URL is invalid."
832
- msgstr ""
833
-
834
- #: public/admin/box_ask_customer_review.php:173
835
- msgid "Thank you for being our customer,"
836
- msgstr ""
837
-
838
- #: public/admin/box_ask_customer_review.php:174
839
- msgid "Aristotel Dascal, VP of Product, Time.ly"
840
- msgstr ""
841
-
842
- #: public/admin/box_ask_customer_review.php:180
843
- msgid "Sending..."
844
- msgstr ""
845
-
846
- #: public/admin/box_ask_customer_review.php:181
847
- msgid "Send Message"
848
- msgstr ""
849
-
850
- #: public/admin/box_event_children.php:12
851
- msgid "Base recurrence event"
852
- msgstr ""
853
-
854
- #: public/admin/box_event_children.php:14
855
- msgid "Modified recurrence events"
856
- msgstr ""
857
-
858
- #: public/admin/box_event_children.php:22
859
- msgid "Edit parent:"
860
- msgstr ""
861
-
862
- #: public/admin/box_event_children.php:27
863
- msgid "Modified Events"
864
- msgstr "אירועים ששונו"
865
-
866
- #: public/admin/box_event_children.php:31
867
- msgid "Edit:"
868
- msgstr "עריכה:"
869
-
870
- #: public/admin/box_event_contact.php:6
871
- msgid "Organizer contact info"
872
- msgstr "פרטי קשר"
873
-
874
- #: public/admin/box_event_contact.php:17
875
- msgid "Contact name:"
876
- msgstr "שם איש הקשר:"
877
-
878
- #: lib/theme/loader.php:325
879
- msgid "We couldn't find a suitable loader for filename with extension '%s'"
880
- msgstr ""
881
-
882
- #: lib/theme/loader.php:631
883
- msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
884
- msgstr ""
885
- "ערכת הנושא של לוח האירועים שלך הוחלפה בVortex עקב בעיית רינדור. למידע נוסף, אנא הפעל מצב debug על ידי הוספת שורה זו לקובץ ה<code>wp-config.php</code> בוורדפרס שלך:\n"
886
- "<pre>define( 'AI1EC_DEBUG', true );</pre>"
887
-
888
- #: lib/theme/search.php:253
889
- msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
890
- msgstr "לא הצלחנו להעביר את ערכות הנושא הישנות שלך מ- <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> משום שתיקיית <code>wp-content</code> חסומה. אנא הסר באופן ידני את ערכות הנושא הישנות שלך מ- <code>wp-content/themes-ai1ec</code>."
891
-
892
- #: lib/theme/search.php:264
893
- msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
894
- msgstr "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
895
-
896
- #: lib/twig/environment.php:115
897
- msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
898
- msgstr "לוח האירועים מושבת באופן זמני עקב שגיאת רינדור. אנא <a href=\"javascript:location.reload();\">טען מחדש את העמוד</a>."
899
-
900
- #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
901
- msgid "Title:"
902
- msgstr "כותרת:"
903
-
904
- #: public/admin/agenda-widget-form.php:12
905
- msgid "Number of events to show:"
906
- msgstr "מספר אירועים להציג:"
907
-
908
- #: public/admin/agenda-widget-form.php:21
909
- msgid "Number of days to show:"
910
- msgstr "מספר ימים להציג:"
911
-
912
- #: public/admin/agenda-widget-form.php:26
913
- msgid "Limit to:"
914
- msgstr "הגבל ל:"
915
-
916
- #: public/admin/agenda-widget-form.php:30
917
- msgid "Events with these <strong>Categories</strong>"
918
- msgstr ""
919
-
920
- #: public/admin/agenda-widget-form.php:39
921
- msgid "No categories found."
922
- msgstr "לא נמצאו קטגוריות."
923
-
924
- #: public/admin/agenda-widget-form.php:46
925
- msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
926
- msgstr "<strong>או</strong> אירועים עם <strong>תגיות אלו</strong>"
927
-
928
- #: public/admin/agenda-widget-form.php:55
929
- msgid "No tags found."
930
- msgstr "לא נמצאו תגיות."
931
-
932
- #: public/admin/agenda-widget-form.php:62
933
- msgid "Show <strong>View Calendar</strong> button"
934
- msgstr "הצג כפתור <strong>צפה בלוח</strong>"
935
-
936
- #: public/admin/agenda-widget-form.php:65
937
- msgid "Show <strong>Subscribe</strong> buttons"
938
- msgstr "הצג כפתורי <strong>הרשמה לעדכונים</strong>"
939
-
940
- #: public/admin/agenda-widget-form.php:68
941
- msgid "Hide this widget on calendar page"
942
- msgstr ""
943
-
944
- #: public/admin/box_ask_customer_review.php:5
945
- msgid "Enjoying All-in-One Event Calendar?"
946
- msgstr ""
947
-
948
- #: public/admin/box_ask_customer_review.php:13
949
- msgid "Not really"
950
- msgstr ""
951
-
952
- #: public/admin/box_ask_customer_review.php:20
953
- msgid "Yes!"
954
- msgstr ""
955
-
956
- #: public/admin/box_ask_customer_review.php:33
957
- msgid "How about a rating on the Wordpress?"
958
- msgstr ""
959
-
960
- #: lib/recurrence/rule.php:397
961
- msgid "Every %d weeks"
962
- msgstr "כל %d שבועות"
963
-
964
- #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
965
- msgid "Monthly"
966
- msgstr "חודשי"
967
-
968
- #: lib/recurrence/rule.php:409
969
- msgid "Every other month"
970
- msgstr "בכל חודש שני"
971
-
972
- #: lib/recurrence/rule.php:412
973
- msgid "Every %d months"
974
- msgstr "כל %d חודשים"
975
-
976
- #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
977
- msgid "Yearly"
978
- msgstr "שנתי"
979
-
980
- #: lib/recurrence/rule.php:424
981
- msgid "Every other year"
982
- msgstr "כל שנה שנייה"
983
-
984
- #: lib/recurrence/rule.php:427
985
- msgid "Every %d years"
986
- msgstr "כל %d שנים"
987
-
988
- #: lib/recurrence/rule.php:465
989
- msgid "until %s"
990
- msgstr "עד %s"
991
-
992
- #: lib/recurrence/rule.php:475
993
- msgid "for %d occurrences"
994
- msgstr "עבור %d אירועים"
995
-
996
- #: lib/recurrence/rule.php:479
997
- msgid "forever"
998
- msgstr "לנצח"
999
-
1000
- #: lib/robots/helper.php:71
1001
- msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1002
- msgstr "<strong>שגיאה:</strong> אירעה שגיאה בנסיון להתחבר לשרת. אנא וודא שההגדרות נכונות."
1003
-
1004
- #: lib/robots/helper.php:105
1005
- msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1006
- msgstr "<strong>שגיאה:</strong> אירעה שגיאה בנסיון לאחסן את <strong>robots.txt</strong> על השרת. הקובץ נעול."
1007
-
1008
- #: lib/theme/list.php:152
1009
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1010
- msgstr ""
1011
-
1012
- #: lib/theme/list.php:164
1013
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1014
- msgstr ""
1015
-
1016
- #: lib/theme/list.php:179
1017
- msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1018
- msgstr ""
1019
-
1020
- #: lib/theme/list.php:190
1021
- msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1022
- msgstr ""
1023
-
1024
- #: lib/theme/list.php:257
1025
- msgid "Activate &#8220;%s&#8221;"
1026
- msgstr "הפעל &#8220;%s&#8221;"
1027
-
1028
- #: lib/theme/list.php:264
1029
- msgid "Activate"
1030
- msgstr "הפעל"
1031
-
1032
- #. translators: 1: theme title, 2: theme version, 3: theme author
1033
- #: lib/theme/list.php:281 public/admin/themes.php:25
1034
- msgid "%1$s %2$s by %3$s"
1035
- msgstr ""
1036
-
1037
- #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1038
- #. title, 5: parent_theme
1039
- #: lib/theme/list.php:293
1040
- msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1041
- msgstr ""
1042
-
1043
- #: lib/theme/list.php:308
1044
- msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1045
- msgstr ""
1046
-
1047
- #: lib/post/custom-type.php:36
1048
- msgid "Parent Event"
1049
- msgstr "אירוע אב"
1050
-
1051
- #: lib/post/custom-type.php:55
1052
- msgid "event"
1053
- msgstr "אירוע"
1054
-
1055
- #: lib/post/custom-type.php:85
1056
- msgctxt "Event categories taxonomy"
1057
- msgid "Categories"
1058
- msgstr "קטגוריות"
1059
-
1060
- #: lib/post/custom-type.php:86
1061
- msgctxt "Event categories taxonomy (singular)"
1062
- msgid "Category"
1063
- msgstr "קטגוריה"
1064
-
1065
- #: lib/post/custom-type.php:87
1066
- msgctxt "Event categories menu item"
1067
- msgid "Organize"
1068
- msgstr "קטגוריות"
1069
-
1070
- #: lib/post/custom-type.php:94
1071
- msgctxt "Event tags taxonomy"
1072
- msgid "Tags"
1073
- msgstr "תגיות"
1074
-
1075
- #: lib/post/custom-type.php:95
1076
- msgctxt "Event tags taxonomy (singular)"
1077
- msgid "Tag"
1078
- msgstr "תגית"
1079
-
1080
- #: lib/post/custom-type.php:102
1081
- msgctxt "Event feeds taxonomy"
1082
- msgid "Event Feeds"
1083
- msgstr ""
1084
-
1085
- #: lib/post/custom-type.php:103
1086
- msgctxt "Event feed taxonomy (singular)"
1087
- msgid "Event Feed"
1088
- msgstr "פיד אירוע"
1089
-
1090
- #: lib/post/custom-type.php:285
1091
- msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1092
- msgstr ""
1093
-
1094
- #: lib/post/custom-type.php:296
1095
- msgid "All Events"
1096
- msgstr "כל האירועים"
1097
-
1098
- #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1099
- #: lib/recurrence/rule.php:260
1100
- msgctxt "Recurrence editor - weekly tab"
1101
- msgid "on"
1102
- msgstr "ב"
1103
-
1104
- #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1105
- #: lib/recurrence/rule.php:326
1106
- msgid "and"
1107
- msgstr "ו"
1108
-
1109
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1110
- #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1111
- msgctxt "Recurrence editor - monthly tab"
1112
- msgid "on"
1113
- msgstr "ב"
1114
-
1115
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1116
- #: lib/recurrence/rule.php:286
1117
- msgid "of the month"
1118
- msgstr "של החודש"
1119
-
1120
- #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1121
- #: lib/recurrence/rule.php:336
1122
- msgctxt "Recurrence editor - yearly tab"
1123
- msgid "on"
1124
- msgstr "ב"
1125
-
1126
- #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1127
- #: public/admin/cron_freq.php:9
1128
- msgid "Daily"
1129
- msgstr "יומיומי"
1130
-
1131
- #: lib/recurrence/rule.php:379
1132
- msgid "Every other day"
1133
- msgstr "כל יומיים"
1134
-
1135
- #: lib/recurrence/rule.php:382
1136
- msgid "Every %d days"
1137
- msgstr "כל %d ימים"
1138
-
1139
- #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1140
- msgid "Weekly"
1141
- msgstr "שבועי"
1142
-
1143
- #: lib/recurrence/rule.php:394
1144
- msgid "Every other week"
1145
- msgstr "כל שבוע שני"
1146
-
1147
- #: lib/less/variable/font.php:64
1148
- msgid "Custom..."
1149
- msgstr "אחר..."
1150
-
1151
- #: lib/less/variable/font.php:112
1152
- msgid "Enter custom font(s)"
1153
- msgstr "הזן פונטים אחרים"
1154
-
1155
- #: lib/less/variable/size.php:26
1156
- msgid "Length"
1157
- msgstr "אורך"
1158
-
1159
- #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1160
- msgid "All-in-One Event Calendar"
1161
- msgstr "לוח אירועים All-in-One"
1162
-
1163
- #: lib/notification/admin.php:182
1164
- msgid "Got it – dismiss this"
1165
- msgstr "הבנתי - בטל זאת"
1166
-
1167
- #: lib/post/custom-type.php:26
1168
- msgctxt "Custom post type name"
1169
- msgid "Events"
1170
- msgstr "אירועים"
1171
-
1172
- #: lib/post/custom-type.php:27
1173
- msgctxt "Custom post type name (singular)"
1174
- msgid "Event"
1175
- msgstr ""
1176
-
1177
- #: lib/post/custom-type.php:28
1178
- msgid "Add New"
1179
- msgstr "הוסף חדש"
1180
-
1181
- #: lib/post/custom-type.php:29
1182
- msgid "Add New Event"
1183
- msgstr "הוסף אירוע חדש"
1184
-
1185
- #: lib/post/custom-type.php:30
1186
- msgid "Edit Event"
1187
- msgstr ""
1188
-
1189
- #: lib/post/custom-type.php:31
1190
- msgid "New Event"
1191
- msgstr "אירוע חדש"
1192
-
1193
- #: lib/post/custom-type.php:32
1194
- msgid "View Event"
1195
- msgstr "צפה באירוע"
1196
-
1197
- #: lib/post/custom-type.php:33
1198
- msgid "Search Events"
1199
- msgstr "חפש אירועים"
1200
-
1201
- #: lib/post/custom-type.php:34
1202
- msgid "No Events found"
1203
- msgstr "לא נמצאו אירועים"
1204
-
1205
- #: lib/post/custom-type.php:35
1206
- msgid "No Events found in Trash"
1207
- msgstr "לא נמצאו אירועים באשפה"
1208
-
1209
- #: lib/html/element/setting/html.php:62
1210
- msgid "Filter by post ID:"
1211
- msgstr "סנן לפי הID של הפוסט:"
1212
-
1213
- #: lib/html/element/setting/html.php:63
1214
- msgid "Filter by post IDs (separate IDs by comma):"
1215
- msgstr "סנן לפי הID של הפוסט (הפרד בין ID ל-ID באמצעות פסיק):"
1216
-
1217
- #: lib/html/element/setting/html.php:64
1218
- msgid "Limit number of events per page:"
1219
- msgstr "הגבל את מספר האירועים בכל דף:"
1220
-
1221
- #: lib/html/element/setting/html.php:65
1222
- msgid "Warning:"
1223
- msgstr "אזהרה:"
1224
-
1225
- #: lib/html/element/setting/html.php:66
1226
- msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1227
- msgstr "אין כרגע תמיכה בהטמעת יותר מלוח אחד באותו עמוד. אל תנסה להטמיע את הלוח באמצעות shortcode בעמוד שמציג כבר את הלוח."
1228
-
1229
- #: lib/import-export/ics.php:831
1230
- msgid "Tickets: "
1231
- msgstr ""
1232
-
1233
- #: lib/html/element/setting/html.php:41
1234
- msgid "Day view:"
1235
- msgstr "תצוגת יום:"
1236
-
1237
- #: lib/html/element/setting/html.php:42
1238
- msgid "Agenda view:"
1239
- msgstr "תצוגת רשימה:"
1240
-
1241
- #: lib/html/element/setting/html.php:43
1242
- msgid "Some Other view:"
1243
- msgstr "תצוגה אחרת:"
1244
-
1245
- #: lib/html/element/setting/html.php:44
1246
- msgid "Default view as per settings:"
1247
- msgstr "תצוגת ברירת מחדל לפי ההגדרות:"
1248
-
1249
- #: lib/html/element/setting/html.php:45
1250
- msgid "General form:"
1251
- msgstr "טופס כללי:"
1252
-
1253
- #: lib/html/element/setting/html.php:46
1254
- msgid "Optional."
1255
- msgstr "אופציונאלי."
1256
-
1257
- #: lib/html/element/setting/html.php:47
1258
- msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1259
- msgstr "הוסף אפשרויות להציג לוח מסונן. (תוכל לגלות את ID של הקטגוריה והתגיות באמצעות בחינת הכתובת של עמוד הלוח המסונן.)"
1260
-
1261
- #: lib/html/element/setting/html.php:48
1262
- msgid "Filter by event category name/slug:"
1263
- msgstr "סנן לפי שם קטגוריה / slug של האירוע"
1264
-
1265
- #: lib/html/element/setting/html.php:49
1266
- msgid "Holidays"
1267
- msgstr "חגים"
1268
-
1269
- #: lib/html/element/setting/html.php:50
1270
- msgid "Lunar Cycles"
1271
- msgstr "מחזורי ירח"
1272
-
1273
- #: lib/html/element/setting/html.php:51
1274
- msgid "zodiac-date-ranges"
1275
- msgstr "טווחי תאריכי גלגל המזלות"
1276
-
1277
- #: lib/html/element/setting/html.php:52
1278
- msgid "Filter by event category names/slugs (separate names by comma):"
1279
- msgstr "סנן לפי שם קטגוריה / slug של האירוע (הפרד בין השמות באמצעות פסיק):"
1280
-
1281
- #: lib/html/element/setting/html.php:53
1282
- msgid "Filter by event category ID:"
1283
- msgstr "סנן לפי הID של הקטגוריה של האירוע:"
1284
-
1285
- #: lib/html/element/setting/html.php:54
1286
- msgid "Filter by event category IDs (separate IDs by comma):"
1287
- msgstr "סנן לפי הID של הקטגוריה של האירוע (הפרד בין ID ל-ID באמצעות פסיק):"
1288
-
1289
- #: lib/html/element/setting/html.php:55
1290
- msgid "Filter by event tag name/slug:"
1291
- msgstr "סנן לפי שם תגית / slug של האירוע:"
1292
-
1293
- #: lib/html/element/setting/html.php:56
1294
- msgid "tips-and-tricks"
1295
- msgstr "טיפים וטריקים"
1296
-
1297
- #: lib/html/element/setting/html.php:57
1298
- msgid "creative writing"
1299
- msgstr "כתיבה יצירתית"
1300
-
1301
- #: lib/html/element/setting/html.php:58
1302
- msgid "performing arts"
1303
- msgstr "אמנויות במה"
1304
-
1305
- #: lib/html/element/setting/html.php:59
1306
- msgid "Filter by event tag names/slugs (separate names by comma):"
1307
- msgstr "סנן לפי שם תגית / slug של האירוע (הפרד בין שם לשם באמצעות פסיק):"
1308
-
1309
- #: lib/html/element/setting/html.php:60
1310
- msgid "Filter by event tag ID:"
1311
- msgstr "סנן לפי הID של תגיות האירוע"
1312
-
1313
- #: lib/html/element/setting/html.php:61
1314
- msgid "Filter by event tag IDs (separate IDs by comma):"
1315
- msgstr "סנן לפי הID של תגיות האירוע (הפרד בין ID ל-ID באמצעות פסיק):"
1316
-
1317
- #: lib/exception/handler.php:395
1318
- msgid "All-in-One Event Calendar has been disabled due to an error:"
1319
- msgstr "לוח האירועים All-in-One הושבת עקב שגיאה"
1320
-
1321
- #: lib/exception/handler.php:404
1322
- msgid "Try reactivating plugin"
1323
- msgstr "נסה להפעיל מחדש את התוסף"
1324
-
1325
- #: lib/exception/handler.php:576
1326
- msgid "Toggle error details"
1327
- msgstr "הצג/הסתר פרטי שגיאה"
1328
-
1329
- #: lib/exception/handler.php:577
1330
- msgid "Error Details:"
1331
- msgstr "פרטי השגיאה:"
1332
-
1333
- #: lib/factory/html.php:133
1334
- msgid "Choose a date using calendar"
1335
- msgstr "בחר תאריך באמצעות הלוח"
1336
-
1337
- #: lib/factory/html.php:278
1338
- msgid "Tags (optional)"
1339
- msgstr "תגיות (אופציונלי)"
1340
-
1341
- #: lib/html/element/setting/cache.php:38
1342
- msgid "Check again"
1343
- msgstr "בדוק שוב"
1344
-
1345
- #: lib/html/element/setting/cache.php:39
1346
- msgid "Templates cache is not writable"
1347
- msgstr ""
1348
-
1349
- #: lib/html/element/setting/cache.php:40
1350
- msgid "Templates cache is writable"
1351
- msgstr "ה-cache של ערכות הנושא ניתן לכתיבה"
1352
-
1353
- #: lib/html/element/setting/cache.php:41
1354
- msgid "Checking..."
1355
- msgstr "בודק..."
1356
-
1357
- #: lib/html/element/setting/cache.php:42
1358
- msgid "Performance Report"
1359
- msgstr "דווח ביצועים"
1360
-
1361
- #: lib/html/element/setting/calendar-page-selector.php:70
1362
- msgid "View"
1363
- msgstr "צפה"
1364
-
1365
- #: lib/html/element/setting/calendar-page-selector.php:114
1366
- msgid "- Auto-Create New Page -"
1367
- msgstr ""
1368
-
1369
- #: lib/html/element/setting/enabled-views.php:22
1370
- msgid "Enabled"
1371
- msgstr "מופעל"
1372
-
1373
- #: lib/html/element/setting/enabled-views.php:23
1374
- msgid "Default"
1375
- msgstr "ברירת מחדל"
1376
-
1377
- #: lib/html/element/setting/enabled-views.php:24
1378
- msgid "Desktop"
1379
- msgstr "מחשב שולחני"
1380
-
1381
- #: lib/html/element/setting/enabled-views.php:25
1382
- msgid "Mobile"
1383
- msgstr "מכשיר נייד"
1384
-
1385
- #: lib/html/element/setting/html.php:37
1386
- msgid "Embed the calendar using a shortcode"
1387
- msgstr "הטמע את הלוח באמצעות shortcode"
1388
-
1389
- #: lib/html/element/setting/html.php:38
1390
- msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1391
- msgstr "הכנס אחד מהshortcodes האלו למקטע הbody של העמוד כדי לשבץ את הלוח בכל דף וורדפרס שרירותי:"
1392
-
1393
- #: lib/html/element/setting/html.php:39
1394
- msgid "Month view:"
1395
- msgstr "תצוגת חודש:"
1396
-
1397
- #: lib/html/element/setting/html.php:40
1398
- msgid "Week view:"
1399
- msgstr "תצוגת שבוע:"
1400
-
1401
- #: lib/css/frontend.php:239
1402
- msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1403
- msgstr "הידור הCSS נכשל בגלל שאין לך מספיק זיכרון פנוי (נחוץ מינימום של %s). לוח האירועים שלך לא ירונדר או יפעל כראוי ללא CSS. קרא בבקשה <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">מאמר זה</a> כדי ללמוד כיצד להגדיל את מגבלת זיכרון הPHP שלך."
1404
-
1405
- #: lib/css/frontend.php:266
1406
- msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1407
- msgstr ""
1408
-
1409
- #: lib/css/frontend.php:272
1410
- msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1411
- msgstr ""
1412
-
1413
- #: lib/css/frontend.php:300
1414
- msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1415
- msgstr ""
1416
-
1417
- #: lib/css/frontend.php:307
1418
- msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1419
- msgstr ""
1420
-
1421
- #: lib/css/frontend.php:343
1422
- msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1423
- msgstr "הCSS שלך מקומפל בכל request, מה שגורם לביצועים איטיים של לוח האירועים. השגיאה הבאה התרחשה: %s"
1424
-
1425
- #: lib/database/applicator.php:182
1426
- msgid "Date columns in table %s have different types."
1427
- msgstr ""
1428
-
1429
- #: lib/database/exception/database.php:19
1430
- msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1431
- msgstr ""
1432
-
1433
- #: lib/database/exception/database.php:23
1434
- msgid "Error encountered: %s"
1435
- msgstr "התרחשה שגיאה: %s"
1436
-
1437
- #: lib/date/system.php:202
1438
- msgid "GMT%+d:%02d"
1439
- msgstr "GMT%+d:%02d"
1440
-
1441
- #: lib/date/timezone.php:362
1442
- msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1443
- msgstr ""
1444
-
1445
- #: lib/date/timezone.php:397
1446
- msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1447
- msgstr ""
1448
-
1449
- #: lib/date/timezone.php:421
1450
- msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1451
- msgstr ""
1452
-
1453
- #: lib/date/timezone.php:490
1454
- msgid "Manual Offset"
1455
- msgstr "הסטה ידנית"
1456
-
1457
- #: lib/date/timezone.php:493
1458
- msgid "Choose your timezone"
1459
- msgstr "בחר את אזור הזמן שלך"
1460
-
1461
- #: lib/environment/check.php:55
1462
- msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1463
- msgstr ""
1464
-
1465
- #: lib/environment/check.php:68
1466
- msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1467
- msgstr ""
1468
-
1469
- #: lib/environment/check.php:78
1470
- msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1471
- msgstr ""
1472
-
1473
- #: lib/environment/check.php:196
1474
- msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1475
- msgstr "יש לעדכן את התוסף <strong>%s</strong> לפחות לגרסה %s על מנת לשמור על תאימות מינימלית עם לוח האירועים."
1476
-
1477
- #: lib/environment/check.php:197
1478
- msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1479
- msgstr "אם אינך רואה הודעות עדכון בהמשך, ודא כי <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">הכנסת כראוי את מפתחות הרשיון שלך</a>. לחילופין, נווט אל <a href=\"https://time.ly/your-account/\">החשבון שלך</a> על מנת להוריד את הגירסה האחרונה של התוספ(ים) ו <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">עדכן באופן ידני</a>. בבקשה <a href=\"https://time.ly/forums/\">פרסם בפורום</a> אם אתה נתקל בבעיות. אנו שמחים לעזור."
1480
-
1481
- #: lib/exception/handler.php:176
1482
- msgid "The add-on \"%s\" has been disabled due to an error:"
1483
- msgstr "התוסף \"%s\" הושבת עקב שגיאה:"
1484
-
1485
- #: lib/calendar-feed/ics.php:367
1486
- msgid "Do you want to keep the events imported from the calendar or remove them?"
1487
- msgstr ""
1488
-
1489
- #: lib/calendar-feed/ics.php:373
1490
- msgid "Removing ICS Feed"
1491
- msgstr "מסיר פיד ICS"
1492
-
1493
- #: lib/calendar-feed/ics.php:376
1494
- msgid "Keep Events"
1495
- msgstr "שמור אירועים"
1496
-
1497
- #: lib/calendar-feed/ics.php:379
1498
- msgid "Remove Events"
1499
- msgstr "הסר אירועים"
1500
-
1501
- #: lib/calendar-feed/ics.php:519
1502
- msgid "Oh, submission was not accepted."
1503
- msgstr ""
1504
-
1505
- #: lib/calendar-feed/ics.php:699
1506
- msgid "Deleted %d events"
1507
- msgstr "נמחקו %d אירועים"
1508
-
1509
- #: lib/calendar-feed/ics.php:735
1510
- msgid "Feed deleted"
1511
- msgstr "הפיד נמחק"
1512
-
1513
- #: lib/captcha/provider/nocaptcha.php:31
1514
- msgid "noCAPTCHA public key:"
1515
- msgstr "מפתח ציבורי של noCAPTCHA:"
1516
-
1517
- #: lib/captcha/provider/nocaptcha.php:47
1518
- msgid "noCAPTCHA private key:"
1519
- msgstr "מפתח פרטי של noCAPTCHA:"
1520
-
1521
- #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1522
- msgid "Please try verifying you are human again."
1523
- msgstr "אנא נסה לאמת את היותך בן אנוש שוב."
1524
-
1525
- #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1526
- msgid "There was an error reading the human verification data. Please try again."
1527
- msgstr "אירעה שגיא בקריאת נתוני אימות האנושיות. אנא נסה שוב."
1528
-
1529
- #: lib/captcha/provider/recaptcha.php:32
1530
- msgid "reCAPTCHA public key:"
1531
- msgstr "מפתח ציבורי של reCAPTCHA:"
1532
-
1533
- #: lib/captcha/provider/recaptcha.php:48
1534
- msgid "reCAPTCHA private key:"
1535
- msgstr "מפתח פרטי של reCAPTCHA:"
1536
-
1537
- #: lib/captcha/provider/recaptcha.php:66
1538
- msgid "Human verification"
1539
- msgstr "אימות אנושיות"
1540
-
1541
- #: lib/captcha/provider/recaptcha.php:67
1542
- msgid "Loading reCAPTCHA..."
1543
- msgstr "טוען reCAPTCHA..."
1544
-
1545
- #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1546
- #: lib/clone/renderer-helper.php:45
1547
- msgid "Clone"
1548
- msgstr ""
1549
-
1550
- #: lib/clone/renderer-helper.php:44
1551
- msgid "Make new copy of event"
1552
- msgstr "צור העתק חדש של האירוע"
1553
-
1554
- #: lib/clone/renderer-helper.php:47
1555
- msgid "Copy to a new draft"
1556
- msgstr ""
1557
-
1558
- #: lib/clone/renderer-helper.php:48
1559
- msgid "Clone to Draft"
1560
- msgstr ""
1561
-
1562
- #: lib/command/clone.php:173
1563
- msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1564
- msgstr ""
1565
-
1566
- #: lib/compatibility/check.php:101
1567
- msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1568
- msgstr "הפעלת רינדור צד לקוח ואתה משתמש בערכת נושא מותאמת אישית. אם ערכת הנושא שלך לא תומכת ברינדור צד לקוח, לוח האירועים שלך עלול שלא לפעול כראוי."
1569
-
1570
- #: app/view/event/single.php:123
1571
- msgid "Tickets:"
1572
- msgstr ""
1573
-
1574
- #: app/view/event/single.php:124
1575
- msgid "Free"
1576
- msgstr "חינם"
1577
-
1578
- #: app/view/event/single.php:127 app/view/event/ticket.php:38
1579
- msgid "Buy Tickets"
1580
- msgstr "רכישת כרטיסים"
1581
-
1582
- #: app/view/event/single.php:150
1583
- msgid "Edit this occurrence (%s)"
1584
- msgstr "ערוך אירוע זה (%s)"
1585
-
1586
- #: app/view/event/single.php:195
1587
- msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1588
- msgstr "פוסט זה שוכפל מ<a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> פיד לוח שנה</a> של אתר אחר."
1589
-
1590
- #: app/view/event/single.php:206
1591
- msgid "View original"
1592
- msgstr "צפה במקור"
1593
-
1594
- #: app/view/event/taxonomy.php:113
1595
- msgid "Category image"
1596
- msgstr "תמונת קטגוריה"
1597
-
1598
- #: app/view/event/ticket.php:24
1599
- msgid "Register Now"
1600
- msgstr "הירשם עכשיו"
1601
-
1602
- #: app/view/event/ticket.php:82
1603
- msgid "Event website"
1604
- msgstr "אתר האירוע"
1605
-
1606
- #: app/view/event/time.php:84 app/view/event/time.php:118
1607
- msgctxt "Event time separator"
1608
- msgid " @ "
1609
- msgstr ""
1610
-
1611
- #: app/view/event/time.php:100
1612
- msgctxt "Event start/end separator"
1613
- msgid " – "
1614
- msgstr ""
1615
-
1616
- #: app/view/event/time.php:166
1617
- msgid ", and "
1618
- msgstr ", ו"
1619
-
1620
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1621
- msgid "Excludes: "
1622
- msgstr ""
1623
-
1624
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1625
- msgid "Repeats"
1626
- msgstr ""
1627
-
1628
- #: lib/calendar-feed/ics.php:38
1629
- msgid "ICS"
1630
- msgstr "ICS"
1631
-
1632
- #: lib/calendar-feed/ics.php:69
1633
- msgid "Another import process in progress. Please try again later."
1634
- msgstr ""
1635
-
1636
- #: lib/calendar-feed/ics.php:174
1637
- msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1638
- msgstr "שגיאת מערכת מנעה את משיכת נתוני לוח האירועים. משהו מונע מהתוסף לפעול בצורה תקינה. הודעה זו אמורה לספק רמז: %s"
1639
-
1640
- #: lib/calendar-feed/ics.php:181
1641
- msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1642
- msgstr "אי אפשר היה למשוך את נתוני לוח האירועים. אם כתובת האתר שלך תקינה והאתר מכיל משאבי iCalendar, זו כנראה תוצאה של שגיאת שרת זמנית והזמן עשוי לפתור בעיה זו."
1643
-
1644
- #: lib/calendar-feed/ics.php:195
1645
- msgid "Imported %s event"
1646
- msgid_plural "Imported %s events"
1647
- msgstr[0] "אירוע %s יובא"
1648
- msgstr[1] "%s אירועים יובאו"
1649
-
1650
- #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1651
- msgid "Invalid ICS feed ID"
1652
- msgstr ""
1653
-
1654
- #: lib/calendar-feed/ics.php:350
1655
- msgid "Categories (optional)"
1656
- msgstr "קטגוריות (אופציונלי)"
1657
-
1658
- #: app/view/event/content.php:33 app/view/event/single.php:119
1659
- msgid "When:"
1660
- msgstr "מתי:"
1661
-
1662
- #: app/view/event/content.php:34 app/view/event/single.php:120
1663
- msgid "Where:"
1664
- msgstr "איפה:"
1665
-
1666
- #: app/view/event/content.php:125
1667
- msgid "Calendar"
1668
- msgstr ""
1669
-
1670
- #: app/view/event/content.php:126
1671
- msgid "View all events"
1672
- msgstr "צפה בכל האירועים"
1673
-
1674
- #: app/view/event/location.php:96
1675
- msgid "Click to view map"
1676
- msgstr "לחץ לצפייה במפה"
1677
-
1678
- #: app/view/event/location.php:97
1679
- msgid "View Full-Size Map"
1680
- msgstr "צפה במפה בגודל מלא "
1681
-
1682
- #: app/view/event/post.php:29
1683
- msgid "Event updated. <a href=\"%s\">View event</a>"
1684
- msgstr ""
1685
-
1686
- #: app/view/event/post.php:32
1687
- msgid "Custom field updated."
1688
- msgstr ""
1689
-
1690
- #: app/view/event/post.php:33
1691
- msgid "Custom field deleted."
1692
- msgstr ""
1693
-
1694
- #: app/view/event/post.php:34
1695
- msgid "Event updated."
1696
- msgstr "האירוע עודכן."
1697
-
1698
- #. translators: %s: date and time of the revision
1699
- #: app/view/event/post.php:38
1700
- msgid "Event restored to revision from %s"
1701
- msgstr "האירוע שוחזר לגירסה מ- %s"
1702
-
1703
- #: app/view/event/post.php:43
1704
- msgid "Event published. <a href=\"%s\">View event</a>"
1705
- msgstr "האירוע פורסם. <a href=\"%s\">צפה באירוע</a>"
1706
-
1707
- #: app/view/event/post.php:46
1708
- msgid "Event saved."
1709
- msgstr "האירוע נשמר."
1710
-
1711
- #: app/view/event/post.php:48
1712
- msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1713
- msgstr ""
1714
-
1715
- #: app/view/event/post.php:52
1716
- msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1717
- msgstr ""
1718
-
1719
- #. translators: Publish box date format, see http:php.net/date
1720
- #: app/view/event/post.php:54
1721
- msgid "M j, Y @ G:i"
1722
- msgstr "M j, Y @ G:i"
1723
-
1724
- #: app/view/event/post.php:58
1725
- msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1726
- msgstr ""
1727
-
1728
- #: app/view/event/single.php:78
1729
- msgid "Event was created in the %s time zone"
1730
- msgstr "האירוע נוצר באזור זמן %s"
1731
-
1732
- #: app/view/event/single.php:114
1733
- msgid "Add to Calendar"
1734
- msgstr "הוסף ללוח"
1735
-
1736
- #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1737
- msgid "Cost:"
1738
- msgstr "מחיר:"
1739
-
1740
- #: app/view/event/single.php:122
1741
- msgid "Contact:"
1742
- msgstr "להרשמה:"
1743
-
1744
- #: app/view/calendar/view/agenda.php:169
1745
- msgid "Categories:"
1746
- msgstr "קטגוריות:"
1747
-
1748
- #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1749
- #: public/admin/themes.php:29
1750
- msgid "Tags:"
1751
- msgstr "תגיות:"
1752
-
1753
- #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1754
- #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1755
- #: app/view/calendar/widget.php:374
1756
- msgid "@ %s"
1757
- msgstr "@ %s"
1758
-
1759
- #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1760
- msgid "g a"
1761
- msgstr "g a"
1762
-
1763
- #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1764
- msgid "Reveal full day"
1765
- msgstr "חשוף את כל היום"
1766
-
1767
- #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1768
- msgid "All-day"
1769
- msgstr "כל היום"
1770
-
1771
- #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1772
- msgid "Now:"
1773
- msgstr "עכשיו:"
1774
-
1775
- #: app/view/calendar/view/week.php:67
1776
- msgid "Week of %s"
1777
- msgstr ""
1778
-
1779
- #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1780
- msgid "Upcoming Events"
1781
- msgstr ""
1782
-
1783
- #: app/view/calendar/widget.php:38
1784
- msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1785
- msgstr ""
1786
-
1787
- #: app/view/calendar/widget.php:80
1788
- msgid "Choose how to limit the upcoming events"
1789
- msgstr "בחר איך להגביל את האירועים העתידיים"
1790
-
1791
- #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1792
- msgid "Events"
1793
- msgstr "אירועים"
1794
-
1795
- #: app/view/calendar/widget.php:93
1796
- msgid "Days"
1797
- msgstr "ימים"
1798
-
1799
- #: app/view/calendar/widget.php:106
1800
- msgid "Number of events to show"
1801
- msgstr "מספר אירועים להציג"
1802
-
1803
- #: app/view/calendar/widget.php:115
1804
- msgid "Number of days to show"
1805
- msgstr "מספר ימים להציג"
1806
-
1807
- #: app/view/calendar/widget.php:124
1808
- msgid "Show events filtered for the following tags/categories"
1809
- msgstr "הצג אירועים מסוננים לתגיות / קטגוריות הבאות"
1810
-
1811
- #: app/view/calendar/widget.php:141
1812
- msgid "Show the subscribe button in the widget"
1813
- msgstr "הצג את כפתור ההרשמה ביישומון"
1814
-
1815
- #: app/view/calendar/widget.php:370
1816
- msgid "There are no upcoming events."
1817
- msgstr "אין אירועים עתידיים."
1818
-
1819
- #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1820
- msgid "all-day"
1821
- msgstr "יום שלם"
1822
-
1823
- #: app/view/calendar/widget.php:372
1824
- msgid "View Calendar"
1825
- msgstr "צפה בלוח"
1826
-
1827
- #: app/view/calendar/widget.php:375
1828
- msgid "Add"
1829
- msgstr "הוסף"
1830
-
1831
- #: app/view/calendar/page.php:260
1832
- msgid "Subscribe to filtered calendar"
1833
- msgstr "Subscribe to filtered calendar"
1834
-
1835
- #: app/view/calendar/page.php:261
1836
- msgid "Subscribe"
1837
- msgstr "הרשם"
1838
-
1839
- #: app/view/calendar/page.php:262 app/view/event/single.php:118
1840
- msgid "Get a Timely Calendar"
1841
- msgstr "Get a Timely Calendar"
1842
-
1843
- #: app/view/calendar/subscribe-button.php:22
1844
- msgid "Add to Timely Calendar"
1845
- msgstr "הוסף ללוח Timely"
1846
-
1847
- #: app/view/calendar/subscribe-button.php:23
1848
- msgid "Add to Google"
1849
- msgstr "הוסף ל-Google"
1850
-
1851
- #: app/view/calendar/subscribe-button.php:24
1852
- msgid "Add to Outlook"
1853
- msgstr "הוסף ל-Outlook"
1854
-
1855
- #: app/view/calendar/subscribe-button.php:25
1856
- msgid "Add to Apple Calendar"
1857
- msgstr "הוסף ל-Apple Calendar"
1858
-
1859
- #: app/view/calendar/subscribe-button.php:26
1860
- msgid "Add to other calendar"
1861
- msgstr "הוסף ללוח אחר"
1862
-
1863
- #: app/view/calendar/subscribe-button.php:29
1864
- msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1865
- msgstr "העתק את כתובת האתר הזו עבור לוח ה-Timely שלך או לחץ להוספה ללוח ה-rich-text שלך"
1866
-
1867
- #: app/view/calendar/subscribe-button.php:30
1868
- msgid "Subscribe to this calendar in your Google Calendar"
1869
- msgstr "הירשם ללוח זה עם Google Calendar"
1870
-
1871
- #: app/view/calendar/subscribe-button.php:31
1872
- msgid "Subscribe to this calendar in MS Outlook"
1873
- msgstr "הירשם ללוח זה עם MS Outlook"
1874
-
1875
- #: app/view/calendar/subscribe-button.php:32
1876
- msgid "Subscribe to this calendar in Apple Calendar/iCal"
1877
- msgstr "הירשם ללוח זה עם Apple Calendar/iCal"
1878
-
1879
- #: app/view/calendar/subscribe-button.php:33
1880
- msgid "Subscribe to this calendar in another plain-text calendar"
1881
- msgstr "הירשם ללוח זה עם לוח plain-text אחר"
1882
-
1883
- #: app/view/calendar/taxonomy.php:97
1884
- msgid "Clear category filter"
1885
- msgstr "בטל סינון ע״פ קטגוריה"
1886
-
1887
- #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1888
- #: lib/html/element/setting/tags-categories.php:47
1889
- msgid "Categories"
1890
- msgstr "קטגוריות"
1891
-
1892
- #: app/view/calendar/taxonomy.php:99
1893
- msgid "Clear tag filter"
1894
- msgstr "בטל סינון ע״פ תגית"
1895
-
1896
- #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1897
- #: lib/html/element/setting/tags-categories.php:39
1898
- msgid "Tags"
1899
- msgstr "תגיות"
1900
-
1901
- #: app/view/calendar/view/agenda.php:142
1902
- msgid "Collapse All"
1903
- msgstr "כווץ הכל"
1904
-
1905
- #: app/view/calendar/view/agenda.php:143
1906
- msgid "Expand All"
1907
- msgstr "הרחב הכל"
1908
-
1909
- #: app/view/calendar/view/agenda.php:166
1910
- msgid "There are no upcoming events to display at this time."
1911
- msgstr "אין אירועים עתידיים להציג כרגע."
1912
-
1913
- #: app/view/calendar/view/agenda.php:168
1914
- msgid "Read more"
1915
- msgstr "קרא עוד"
1916
-
1917
- #: app/view/admin/tickets.php:86
1918
- msgid "Sales"
1919
- msgstr ""
1920
-
1921
- #: app/view/admin/tickets.php:87
1922
- msgid "How do you want the tickets revenue to be sent to you?"
1923
- msgstr ""
1924
-
1925
- #: app/view/admin/tickets.php:88
1926
- msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1927
- msgstr ""
1928
-
1929
- #: app/view/admin/tickets.php:91
1930
- msgid "Cheque"
1931
- msgstr ""
1932
-
1933
- #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1934
- msgid "Paypal"
1935
- msgstr "Paypal"
1936
-
1937
- #: app/view/admin/tickets.php:94
1938
- msgid "Save Changes"
1939
- msgstr ""
1940
-
1941
- #: app/view/admin/tickets.php:95
1942
- msgid "Date"
1943
- msgstr ""
1944
-
1945
- #: app/view/admin/tickets.php:96
1946
- msgid "Event"
1947
- msgstr ""
1948
-
1949
- #: app/view/admin/tickets.php:97
1950
- msgid "Purchaser"
1951
- msgstr ""
1952
-
1953
- #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1954
- #: public/admin/box_event_cost.php:35
1955
- msgid "Tickets"
1956
- msgstr "כרטיסים"
1957
-
1958
- #: app/view/admin/tickets.php:101
1959
- msgid "Total"
1960
- msgstr ""
1961
-
1962
- #: app/view/admin/tickets.php:102
1963
- msgid "Sign Out"
1964
- msgstr ""
1965
-
1966
- #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1967
- #: app/view/admin/widget-creator.php:47
1968
- msgid "Widget Creator"
1969
- msgstr "יוצר יישומונים"
1970
-
1971
- #: app/view/admin/widget-creator.php:74
1972
- msgctxt "meta box"
1973
- msgid "Widget Creator"
1974
- msgstr "יוצר יישומונים"
1975
-
1976
- #: app/view/admin/widget-creator.php:131
1977
- msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1978
- msgstr "השתמש בכלי זה לארגן קטעי קוד שתוכל להוסיף ל<strong> אתר חיצוני </strong> על מנת להטמיע לוחות שנה חדשים ויישומונים."
1979
-
1980
- #: app/view/admin/widget-creator.php:132
1981
- msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1982
- msgstr "<h4>זהירות!</h4><p>יישומונים אלו מיועדים להטמעה ב <strong>אתרים חיצוניים בלבד</strong> ועלולים ליצור קונפליקטים אם יוטמעו באותו אתר וורדפרס</p>"
1983
-
1984
- #: app/view/admin/widget-creator.php:134
1985
- msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1986
- msgstr "<p>השתמש ב<a href=\"%s\"><strong>יישומוני</strong> &gt; <strong>תצוגה</strong></a> כדי להוסיף יישומוני אירוע לאתר הוורדפרס שלך, כפי שהיית מוסיף כל יישומון. לחילופין, השתמש ב<a href=\"%s\" target=\"_blank\">shortcodes</a> על מנת להטמיע את לוח השנה השלם.</strong></p>"
1987
-
1988
- #: app/view/admin/widget-creator.php:140
1989
- msgid "Paste this code onto your site:"
1990
- msgstr "הדבק קטע קוד זה באתרך:"
1991
-
1992
- #: app/view/admin/widget-creator.php:141
1993
- msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1994
- msgstr "קטע קוד זה יעודכן כדי לשקף את השינויים שנעשו להגדרות. שינוי ההגדרות לא ישפיע על יישומונים שהוטמעו בעבר."
1995
-
1996
- #: app/view/calendar/page.php:54
1997
- msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
1998
- msgstr ""
1999
-
2000
- #: app/view/calendar/page.php:74
2001
- msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2002
- msgstr "לוח האירועים לא הצליח לאתחל את תצוגת ה%s וחזר לתצוגת סדר יום. אנא בדוק אם התקנת את הגירסה האחרונה של התוספים של לוח האירועים."
2003
-
2004
- #: app/view/admin/settings.php:193
2005
- msgid "Phone Number:"
2006
- msgstr ""
2007
-
2008
- #: app/view/admin/settings.php:194
2009
- msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2010
- msgstr ""
2011
-
2012
- #: app/view/admin/settings.php:197
2013
- msgid "Sign Up"
2014
- msgstr ""
2015
-
2016
- #: app/view/admin/settings.php:198
2017
- msgid "Sign In"
2018
- msgstr ""
2019
-
2020
- #: app/view/admin/settings.php:212
2021
- msgid "Save Settings"
2022
- msgstr "שמור הגדרות"
2023
-
2024
- #: app/view/admin/settings.php:219
2025
- msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2026
- msgstr "אם הטופס למטה לא עובד אנא <a href=\"%s\">לחץ כאן</a>."
2027
-
2028
- #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2029
- msgid "Theme Options"
2030
- msgstr "אפשרויות ערכת נושא"
2031
-
2032
- #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2033
- msgid "Calendar Theme Options"
2034
- msgstr ""
2035
-
2036
- #: app/view/admin/theme-options.php:79
2037
- msgctxt "meta box"
2038
- msgid "Calendar Theme Options"
2039
- msgstr ""
2040
-
2041
- #: app/view/admin/theme-options.php:133
2042
- msgid "General"
2043
- msgstr "כללי"
2044
-
2045
- #: app/view/admin/theme-options.php:136
2046
- msgid "Tables"
2047
- msgstr "טבלאות"
2048
-
2049
- #: app/view/admin/theme-options.php:139
2050
- msgid "Buttons"
2051
- msgstr ""
2052
-
2053
- #: app/view/admin/theme-options.php:142
2054
- msgid "Forms"
2055
- msgstr "טפסים"
2056
-
2057
- #: app/view/admin/theme-options.php:145
2058
- msgid "Calendar general"
2059
- msgstr ""
2060
-
2061
- #: app/view/admin/theme-options.php:148
2062
- msgid "Month/week/day view"
2063
- msgstr "תצוגת חודש/שבוע/יום"
2064
-
2065
- #: app/view/admin/theme-options.php:151
2066
- msgid "Agenda view"
2067
- msgstr ""
2068
-
2069
- #: app/view/admin/theme-options.php:169
2070
- msgid "Save Options"
2071
- msgstr ""
2072
-
2073
- #: app/view/admin/theme-options.php:177
2074
- msgid "Reset to Defaults"
2075
- msgstr ""
2076
-
2077
- #: app/view/admin/theme-switching.php:31
2078
- msgid "All-in-One Event Calendar: Themes"
2079
- msgstr "לוח אירועים All-in-One: ערכות נושא"
2080
-
2081
- #: app/view/admin/tickets.php:36
2082
- msgid "Ticketing"
2083
- msgstr ""
2084
-
2085
- #: app/view/admin/tickets.php:37
2086
- msgid "Ticketing<sup>beta</sup>"
2087
- msgstr ""
2088
-
2089
- #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2090
- msgid "Time.ly Ticketing<sup>beta</sup>"
2091
- msgstr ""
2092
-
2093
- #: app/view/admin/settings.php:98
2094
- msgctxt "meta box"
2095
- msgid "Timely"
2096
- msgstr "Timely"
2097
-
2098
- #: app/view/admin/settings.php:140
2099
- msgid "Viewing Events"
2100
- msgstr ""
2101
-
2102
- #: app/view/admin/settings.php:143
2103
- msgid "Adding/Editing Events"
2104
- msgstr ""
2105
-
2106
- #: app/view/admin/settings.php:146
2107
- msgid "Advanced"
2108
- msgstr "מתקדם"
2109
-
2110
- #: app/view/admin/settings.php:148
2111
- msgid "Advanced Settings"
2112
- msgstr "הגדרות מתקדמות"
2113
-
2114
- #: app/view/admin/settings.php:149
2115
- msgid "Shortcodes"
2116
- msgstr "Shortcodes"
2117
-
2118
- #: app/view/admin/settings.php:150
2119
- msgid "Email Templates"
2120
- msgstr ""
2121
-
2122
- #: app/view/admin/settings.php:151
2123
- msgid "External Services"
2124
- msgstr "שירותים חיצוניים"
2125
-
2126
- #: app/view/admin/settings.php:152
2127
- msgid "Cache Report"
2128
- msgstr "דיווח Cache"
2129
-
2130
- #: app/view/admin/settings.php:171
2131
- msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2132
- msgstr ""
2133
-
2134
- #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2135
- #: public/admin/box_ask_customer_review.php:112
2136
- #: public/admin/box_ask_customer_review.php:126
2137
- #: public/admin/box_ask_customer_review.php:140
2138
- #: public/admin/box_ask_customer_review.php:158
2139
- #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2140
- msgid "This field is required."
2141
- msgstr ""
2142
-
2143
- #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2144
- msgid "Register"
2145
- msgstr "הרשמה"
2146
-
2147
- #: app/view/admin/settings.php:184
2148
- msgid "Sign in"
2149
- msgstr ""
2150
-
2151
- #: app/view/admin/settings.php:185
2152
- msgid "You are successfully signed in to <b>Timely Network</b>."
2153
- msgstr ""
2154
-
2155
- #: app/view/admin/settings.php:186
2156
- msgid "Sign out"
2157
- msgstr ""
2158
-
2159
- #: app/view/admin/settings.php:187
2160
- msgid "Hide form"
2161
- msgstr ""
2162
-
2163
- #: app/view/admin/settings.php:188
2164
- msgid "Show form"
2165
- msgstr ""
2166
-
2167
- #: app/view/admin/settings.php:189
2168
- msgid "Full Name:"
2169
- msgstr ""
2170
-
2171
- #: app/view/admin/settings.php:190
2172
- msgid "Email:"
2173
- msgstr "דוא״ל:"
2174
-
2175
- #: app/view/admin/settings.php:191
2176
- msgid "Password:"
2177
- msgstr ""
2178
-
2179
- #: app/view/admin/settings.php:192
2180
- msgid "Confirm Password:"
2181
- msgstr ""
2182
-
2183
- #: app/view/admin/get-repeat-box.php:483
2184
- msgid "fourth"
2185
- msgstr "רביעי"
2186
-
2187
- #: app/view/admin/get-repeat-box.php:495
2188
- msgid "Sunday"
2189
- msgstr "ראשון"
2190
-
2191
- #: app/view/admin/get-repeat-box.php:496
2192
- msgid "Monday"
2193
- msgstr "שני"
2194
-
2195
- #: app/view/admin/get-repeat-box.php:497
2196
- msgid "Tuesday"
2197
- msgstr "שלישי"
2198
-
2199
- #: app/view/admin/get-repeat-box.php:498
2200
- msgid "Wednesday"
2201
- msgstr "רביעי"
2202
-
2203
- #: app/view/admin/get-repeat-box.php:499
2204
- msgid "Thursday"
2205
- msgstr "חמישי"
2206
-
2207
- #: app/view/admin/get-repeat-box.php:500
2208
- msgid "Friday"
2209
- msgstr "שישי"
2210
-
2211
- #: app/view/admin/get-repeat-box.php:501
2212
- msgid "Saturday"
2213
- msgstr ""
2214
-
2215
- #: app/view/admin/get-repeat-box.php:503
2216
- msgid "day"
2217
- msgstr "יום"
2218
-
2219
- #: app/view/admin/get-repeat-box.php:504
2220
- msgid "weekday"
2221
- msgstr "יום חול"
2222
-
2223
- #: app/view/admin/get-repeat-box.php:505
2224
- msgid "weekend day"
2225
- msgstr "סופ״ש"
2226
-
2227
- #: app/view/admin/get-repeat-box.php:571
2228
- msgid "year(s)"
2229
- msgstr "שנה"
2230
-
2231
- #: app/view/admin/nav.php:22
2232
- msgid "<a href=\"%s\">Settings</a>"
2233
- msgstr ""
2234
-
2235
- #: app/view/admin/nav.php:28
2236
- msgid "<a href=\"%s\">Check for updates</a>"
2237
- msgstr ""
2238
-
2239
- #: app/view/admin/organize.php:100
2240
- msgid "Organize Events"
2241
- msgstr "ארגן אירועים"
2242
-
2243
- #: app/view/admin/settings.php:30
2244
- msgid "All-in-One Event Calendar: Settings"
2245
- msgstr ""
2246
-
2247
- #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2248
- #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2249
- msgid "Settings"
2250
- msgstr "הגדרות"
2251
-
2252
- #: app/view/admin/settings.php:89
2253
- msgctxt "meta box"
2254
- msgid "General Settings"
2255
- msgstr ""
2256
-
2257
- #: app/view/admin/get-repeat-box.php:480
2258
- msgid "first"
2259
- msgstr "ראשון"
2260
-
2261
- #: app/view/admin/get-repeat-box.php:481
2262
- msgid "second"
2263
- msgstr "שניה"
2264
-
2265
- #: app/view/admin/get-repeat-box.php:482
2266
- msgid "third"
2267
- msgstr "שלישי"
2268
-
2269
- #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2270
- msgid "Import Feeds"
2271
- msgstr ""
2272
-
2273
- #: app/view/admin/calendar-feeds.php:48
2274
- msgctxt "meta box"
2275
- msgid "Feed Subscriptions"
2276
- msgstr ""
2277
-
2278
- #: app/view/admin/calendar-feeds.php:65
2279
- msgid "All-in-One Event Calendar: Import Feeds"
2280
- msgstr ""
2281
-
2282
- #: app/view/admin/event-category.php:30
2283
- msgid "Color"
2284
- msgstr "צבע"
2285
-
2286
- #: app/view/admin/event-category.php:32
2287
- msgid "Image"
2288
- msgstr "תמונה"
2289
-
2290
- #: app/view/admin/event-category.php:155
2291
- msgid "Category Color"
2292
- msgstr ""
2293
-
2294
- #: app/view/admin/event-category.php:156
2295
- msgid "Events in this category will be identified by this color"
2296
- msgstr ""
2297
-
2298
- #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2299
- msgid "Category Image"
2300
- msgstr "תמונת קטגוריה"
2301
-
2302
- #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2303
- msgid "Add Image"
2304
- msgstr "הוסף תמונה"
2305
-
2306
- #: app/view/admin/event-category.php:195
2307
- msgid "Remove Image"
2308
- msgstr "הסר תמונה"
2309
-
2310
- #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2311
- msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2312
- msgstr ""
2313
-
2314
- #: app/view/admin/get-repeat-box.php:94
2315
- msgid "times"
2316
- msgstr "פעמים"
2317
-
2318
- #: app/view/admin/get-repeat-box.php:164
2319
- msgid "Recurrence rule cannot be empty."
2320
- msgstr ""
2321
-
2322
- #: app/view/admin/get-repeat-box.php:182
2323
- msgid "Recurrence rule was not provided."
2324
- msgstr ""
2325
-
2326
- #: app/view/admin/get-repeat-box.php:209
2327
- msgid "Never"
2328
- msgstr "אף פעם"
2329
-
2330
- #: app/view/admin/get-repeat-box.php:210
2331
- msgid "After"
2332
- msgstr "אחרי"
2333
-
2334
- #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2335
- msgid "On date"
2336
- msgstr "בתאריך"
2337
-
2338
- #: app/view/admin/get-repeat-box.php:247
2339
- msgid "day(s)"
2340
- msgstr "יום"
2341
-
2342
- #: app/view/admin/get-repeat-box.php:330
2343
- msgid "week(s)"
2344
- msgstr "שבוע(ות)"
2345
-
2346
- #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2347
- #: lib/recurrence/rule.php:298
2348
- msgid "last"
2349
- msgstr "אחרון"
2350
-
2351
- #: app/view/admin/get-repeat-box.php:426
2352
- msgid "month(s)"
2353
- msgstr "חודש(ים)"
2354
-
2355
- #: app/model/settings.php:929
2356
- msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2357
- msgstr "<strong>הוסף קישור ל- CSS</strong> ב- <code>&lt;head&gt;</code> כאשר ה- file cache אינו זמין."
2358
-
2359
- #: app/model/settings.php:932
2360
- msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2361
- msgstr "השתמש באפשרות זו אם ה-file cache אינו זמין ואתה מעדיף להגיש את ה CSS בתור קישור במקום output inline."
2362
-
2363
- #: app/model/settings.php:944
2364
- msgid "Current <strong>robots.txt</strong> on this site"
2365
- msgstr ""
2366
-
2367
- #: app/model/settings.php:948
2368
- msgid ""
2369
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2370
- "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2371
- "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2372
- "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2373
- "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2374
- msgstr ""
2375
-
2376
- #: app/model/settings.php:965
2377
- msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2378
- msgstr "<strong>פרסם, קדם ושתף את האירועים שלי</strong> המסומנים כפומביים ברשת Timely. (<a href=\"%s\" target=\"_blank\">למד עוד &#187;</a>)"
2379
-
2380
- #: app/model/settings.php:988
2381
- msgid "Templates cache improves site performance"
2382
- msgstr ""
2383
-
2384
- #: app/model/settings.php:1001
2385
- msgid "Display events in <strong>calendar time zone</strong>"
2386
- msgstr ""
2387
-
2388
- #: app/model/settings.php:1004
2389
- msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2390
- msgstr ""
2391
-
2392
- #: app/view/admin/add-new-event.php:26
2393
- msgid "Event Details"
2394
- msgstr "פרטים"
2395
-
2396
- #: app/view/admin/add-new-event.php:423
2397
- msgid "Set banner image"
2398
- msgstr "קבע תמונת באנר"
2399
-
2400
- #: app/view/admin/add-new-event.php:424
2401
- msgid "Remove banner image"
2402
- msgstr "הסר תמונת באנר"
2403
-
2404
- #: app/view/admin/add-ons.php:68
2405
- msgid "Add-ons for All In One Event Calendar"
2406
- msgstr "תוספים עבור לוח האירועים All In One"
2407
-
2408
- #: app/view/admin/add-ons.php:71
2409
- msgid "Browse All Extensions"
2410
- msgstr "דפדף בכל ההרחבות"
2411
-
2412
- #: app/view/admin/add-ons.php:74
2413
- msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2414
- msgstr "תוספים אלו מרחיבים את הפונקציונליות של לוח האירועים All-in-One."
2415
-
2416
- #: app/view/admin/add-ons.php:77
2417
- msgid "There was an error retrieving the extensions list from the server. Please try again later."
2418
- msgstr "אירעה שגיאה באחזור רשימת ההרחבות מהשרת. אנא נסה שוב מאוחר יותר."
2419
-
2420
- #: app/view/admin/all-events.php:16
2421
- msgid "Author"
2422
- msgstr "יוצר"
2423
-
2424
- #: app/view/admin/all-events.php:17
2425
- msgid "Post Date"
2426
- msgstr ""
2427
-
2428
- #: app/view/admin/all-events.php:18
2429
- msgid "Event date/time"
2430
- msgstr "תאריך/זמן אירוע"
2431
-
2432
- #: app/view/admin/all-events.php:22
2433
- msgid "Ticket Types"
2434
- msgstr ""
2435
-
2436
- #: app/view/admin/all-events.php:134
2437
- msgid "Show All "
2438
- msgstr "הצג הכל"
2439
-
2440
- #: app/view/admin/all-events.php:147
2441
- msgid "Show All Authors"
2442
- msgstr ""
2443
-
2444
- #: app/model/settings.php:746
2445
- msgid "Strict compatibility content filtering"
2446
- msgstr "Strict compatibility content filtering"
2447
-
2448
- #: app/model/settings.php:758
2449
- msgid " <strong>Hide featured image</strong> from event details page"
2450
- msgstr ""
2451
-
2452
- #: app/model/settings.php:761
2453
- msgid "Select this option if your theme already displays each post's featured image."
2454
- msgstr ""
2455
-
2456
- #: app/model/settings.php:772
2457
- msgid "Input dates in this format"
2458
- msgstr ""
2459
-
2460
- #: app/model/settings.php:777
2461
- msgid "Default (d/m/yyyy)"
2462
- msgstr "ברירת מחדל (d/m/yyyy)"
2463
-
2464
- #: app/model/settings.php:781
2465
- msgid "US (m/d/yyyy)"
2466
- msgstr "US (m/d/yyyy)"
2467
-
2468
- #: app/model/settings.php:785
2469
- msgid "ISO 8601 (yyyy-m-d)"
2470
- msgstr ""
2471
-
2472
- #: app/model/settings.php:789
2473
- msgid "Dotted (m.d.yyyy)"
2474
- msgstr "מנוקד (m.d.yyyy)"
2475
-
2476
- #: app/model/settings.php:801
2477
- msgid " Use <strong>24h time</strong> in time pickers"
2478
- msgstr " השתמש ב<strong>24h זמן</strong> בבורר הזמן"
2479
-
2480
- #: app/model/settings.php:812
2481
- msgid "<strong>Disable address autocomplete</strong> function"
2482
- msgstr ""
2483
-
2484
- #: app/model/settings.php:823
2485
- msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2486
- msgstr ""
2487
-
2488
- #: app/model/settings.php:839
2489
- msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2490
- msgstr "הצג את הכפתור <strong>פרסם את האירוע שלך</strong> מעל הלוח עבור משתמשים מורשים"
2491
-
2492
- #: app/model/settings.php:842
2493
- msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2494
- msgstr ""
2495
-
2496
- #: app/model/settings.php:863
2497
- msgid "Move calendar into this DOM element"
2498
- msgstr "העבר את הלוח לתוך DOM element זה"
2499
-
2500
- #: app/model/settings.php:865
2501
- msgid ""
2502
- "Optional. Use this JavaScript-based shortcut to place the\n"
2503
- "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2504
- "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2505
- "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2506
- "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2507
- "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2508
- "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2509
- "\t\t\t\t\t\tby the calendar."
2510
- msgstr ""
2511
-
2512
- #: app/model/settings.php:884
2513
- msgid "<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against multiple calendar output"
2514
- msgstr ""
2515
-
2516
- #: app/model/settings.php:887
2517
- msgid "Try enabling this option if your calendar does not appear on the calendar page. It is needed for compatibility with a small number of themes that call <tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
2518
- msgstr ""
2519
-
2520
- #: app/model/settings.php:899
2521
- msgid "Disable <strong>gzip</strong> compression."
2522
- msgstr "בטל כיווץ <strong>gzip</strong>."
2523
-
2524
- #: app/model/settings.php:902
2525
- msgid "Use this option if calendar is unresponsive. <a href=\"http://support.time.ly/disable-gzip-compression/\">Read more</a> about the issue. (From version 2.1 onwards, gzip is disabled by default for maximum compatibility.)"
2526
- msgstr "השתמש באפשרות זו אם הלוח אינו רספונסיבי. <a href=\"http://support.time.ly/disable-gzip-compression/\">קרא עוד</a> על נושא זה. (מגירסה 2.1 ואילך, gzip מנוטרל כברירת מחדל בשביל תאימות מקסימלית)"
2527
-
2528
- #: app/model/settings.php:914
2529
- msgid "Use frontend rendering."
2530
- msgstr "השתמש בעיבוד צד לקוח"
2531
-
2532
- #: app/model/settings.php:917
2533
- msgid "Renders calendar views on the client rather than the server; can improve performance."
2534
- msgstr "מעבד את תצוגת לוח השנה בצד הלקוח במקום בצד השרת; עשוי לשפר ביצועים."
2535
-
2536
- #: app/model/settings.php:493 app/view/calendar/widget.php:128
2537
- msgid "To clear, hold &#8984;/<abbr class=\"initialism\">CTRL</abbr> and click selection."
2538
- msgstr ""
2539
-
2540
- #: app/model/settings.php:508
2541
- msgid "Default calendar start date (optional)"
2542
- msgstr ""
2543
-
2544
- #: app/model/settings.php:519
2545
- msgid "Agenda pages show at most"
2546
- msgstr ""
2547
-
2548
- #: app/model/settings.php:532
2549
- msgid "Week/Day view starts at"
2550
- msgstr "תצוגת שבוע/יום מתחילה ב-"
2551
-
2552
- #: app/model/settings.php:545
2553
- msgid "Week/Day view ends at"
2554
- msgstr "תצוגת שבוע/יום מסתיימת ב-"
2555
-
2556
- #: app/model/settings.php:558
2557
- msgid "<strong>Word-wrap event stubs</strong> in Month view"
2558
- msgstr ""
2559
-
2560
- #: app/model/settings.php:561
2561
- msgid "Only applies to events that span a single day."
2562
- msgstr "רלוונטי רק לאירועים שהיקפם יום אחד."
2563
-
2564
- #: app/model/settings.php:573
2565
- msgid ""
2566
- "In <span class=\"ai1ec-tooltip-toggle\"\n"
2567
- "\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
2568
- "\t\t\t\t\t\tthe Upcoming Events widget, and some extended views.\">\n"
2569
- "\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
2570
- "\t\t\t\t\t\tfrom last day shown</strong>"
2571
- msgstr ""
2572
-
2573
- #: app/model/settings.php:589
2574
- msgid "Keep all events <strong>expanded</strong> in Agenda view"
2575
- msgstr ""
2576
-
2577
- #: app/model/settings.php:601
2578
- msgid "<strong>Show year</strong> in calendar date labels"
2579
- msgstr ""
2580
-
2581
- #: app/model/settings.php:613
2582
- msgid "<strong>Show location in event titles</strong> in calendar views"
2583
- msgstr ""
2584
-
2585
- #: app/model/settings.php:625
2586
- msgid "<strong>Exclude</strong> events from search results"
2587
- msgstr ""
2588
-
2589
- #: app/model/settings.php:637
2590
- msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views "
2591
- msgstr ""
2592
-
2593
- #: app/model/settings.php:649
2594
- msgid "Hide <strong>Get a Timely Calendar</strong> button"
2595
- msgstr "הסתר את כפתור <strong>Get a Timely Calendar</strong>"
2596
-
2597
- #: app/model/settings.php:661
2598
- msgid " Hide <strong>Google Maps</strong> until clicked"
2599
- msgstr " הסתר את <strong>Google Maps</strong> עד הלחיצה"
2600
-
2601
- #: app/model/settings.php:673
2602
- msgid " <strong>Affix filter menu</strong> to top of window when it scrolls out of view"
2603
- msgstr "<strong>הדבק את תפריט הסינון</strong> לחלק העליון של החלון כאשר הוא נגלל מחוץ לתצוגה."
2604
-
2605
- #: app/model/settings.php:676
2606
- msgid "Only applies to first visible calendar found on the page."
2607
- msgstr "חל רק על לוח האירועים הראשון הנמצא בעמוד זה."
2608
-
2609
- #: app/model/settings.php:688
2610
- msgid "Offset affixed filter bar vertically by"
2611
- msgstr "הסט במאונך את סרגל הסינון המודבק ב-"
2612
-
2613
- #: app/model/settings.php:703
2614
- msgid "Wide screens only (&#8805; 1200px)"
2615
- msgstr "מסכים רחבים בלבד (&#8805; 1200px)"
2616
-
2617
- #: app/model/settings.php:718
2618
- msgid "Tablets only (< 980px)"
2619
- msgstr "טאבלטים בלבד (< 980px)"
2620
-
2621
- #: app/model/settings.php:733
2622
- msgid "Phones only (< 768px)"
2623
- msgstr "טלפונים בלבד (< 768px)"
2624
-
2625
- #: app/model/api.php:456
2626
- msgid "Not available"
2627
- msgstr ""
2628
-
2629
- #: app/model/api.php:659
2630
- msgid "%s.<br/>Detail: %s."
2631
- msgstr ""
2632
-
2633
- #: app/model/api.php:664
2634
- msgid "API URL: %s.<br/>Detail: %s - %s"
2635
- msgstr ""
2636
-
2637
- #: app/model/api.php:672
2638
- msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2639
- msgstr ""
2640
-
2641
- #: app/model/api.php:679
2642
- msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
2643
- msgstr ""
2644
-
2645
- #: app/model/event/parent.php:186
2646
- msgid "Edit &#8220;%s&#8221;"
2647
- msgstr ""
2648
-
2649
- #: app/model/event/parent.php:193
2650
- msgid "Base Event"
2651
- msgstr ""
2652
-
2653
- #: app/model/review.php:169
2654
- msgid "Feedback provided by user"
2655
- msgstr ""
2656
-
2657
- #: app/model/review.php:171 public/admin/box_eventbrite.php:32
2658
- msgid "Name"
2659
- msgstr "שם"
2660
-
2661
- #: app/model/review.php:173
2662
- msgid "E-mail"
2663
- msgstr ""
2664
-
2665
- #: app/model/review.php:175
2666
- msgid "Site URL"
2667
- msgstr ""
2668
-
2669
- #: app/model/review.php:177
2670
- msgid "Message"
2671
- msgstr ""
2672
-
2673
- #: app/model/settings.php:401
2674
- #: lib/html/element/setting/calendar-page-selector.php:50
2675
- msgid "Calendar page"
2676
- msgstr "עמוד לוח האירועים"
2677
-
2678
- #: app/model/settings.php:411
2679
- msgid "Week starts on"
2680
- msgstr "שבוע מתחיל ב-"
2681
-
2682
- #: app/model/settings.php:424
2683
- msgid "Available views"
2684
- msgstr ""
2685
-
2686
- #: app/model/settings.php:432
2687
- msgid "Agenda"
2688
- msgid_plural "Agenda"
2689
- msgstr[0] ""
2690
- msgstr[1] ""
2691
-
2692
- #: app/model/settings.php:443
2693
- msgid "Day"
2694
- msgid_plural "Day"
2695
- msgstr[0] "יום"
2696
- msgstr[1] "ימים"
2697
-
2698
- #: app/model/settings.php:454
2699
- msgid "Month"
2700
- msgid_plural "Month"
2701
- msgstr[0] "חודש"
2702
- msgstr[1] "חודשים"
2703
-
2704
- #: app/model/settings.php:465
2705
- msgid "Week"
2706
- msgid_plural "Week"
2707
- msgstr[0] "שבוע"
2708
- msgstr[1] "שבועות"
2709
-
2710
- #: app/model/settings.php:479
2711
- msgid "Timezone"
2712
- msgstr "אזור זמן"
2713
-
2714
- #: app/model/settings.php:492
2715
- msgid "Preselected calendar filters"
2716
- msgstr ""
2717
-
2718
- #: app/controller/javascript.php:509
2719
- msgid "Something went wrong while fetching events.<br>The request status is: %STATUS% <br>The error thrown was: %ERROR%"
2720
- msgstr "משהו השתבש בזמן שליפת האירועים. <br>הrequest status הוא: %STATUS% <br>השגיאה שהתקבלה היא: %ERROR%"
2721
-
2722
- #: app/controller/javascript.php:516
2723
- msgid "The end date can't be earlier than the start date."
2724
- msgstr "תאריך הסיום לא יכול להיות מוקדם יותר מתאריך ההתחלה."
2725
-
2726
- #: app/controller/javascript.php:517
2727
- msgid "For week and day view, you must select an interval of at least 6 hours."
2728
- msgstr "עבור תצוגת שבוע ויום, עליך לבחור מרווח של לפחות 6 שעות."
2729
-
2730
- #: app/model/api.php:40
2731
- msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
2732
- msgstr ""
2733
-
2734
- #: app/model/api.php:41
2735
- msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
2736
- msgstr ""
2737
-
2738
- #: app/model/api.php:42
2739
- msgid "We were unable to Sign you Up for Time.ly Ticketing"
2740
- msgstr ""
2741
-
2742
- #: app/model/api.php:43
2743
- msgid "We were unable to Sign you In for Time.ly Ticketing"
2744
- msgstr ""
2745
-
2746
- #: app/model/api.php:44
2747
- msgid "We were unable to create the Event on Time.ly Ticketing"
2748
- msgstr ""
2749
-
2750
- #: app/model/api.php:45
2751
- msgid "We were unable to update the Event on Time.ly Ticketing"
2752
- msgstr ""
2753
-
2754
- #: app/model/api.php:46
2755
- msgid "The event has the option Tickets selected but any ticket was added."
2756
- msgstr ""
2757
-
2758
- #: app/model/api.php:47
2759
- msgid "We were unable to remove the Tickets from Time.ly Ticketing"
2760
- msgstr ""
2761
-
2762
- #: app/model/api.php:48
2763
- msgid "This Event was replicated from another site. Any changes on Tickets were discarded."
2764
- msgstr ""
2765
-
2766
- #: app/model/api.php:49
2767
- msgid "Payment preferences were not saved."
2768
- msgstr ""
2769
-
2770
- #: app/model/api.php:50
2771
- msgid "Payment preferences were saved."
2772
- msgstr ""
2773
-
2774
- #: app/model/api.php:51
2775
- msgid "Event not found inside the database."
2776
- msgstr ""
2777
-
2778
- #: app/model/api.php:52
2779
- msgid "We were unable to get the Sales information from Time.ly Ticketing"
2780
- msgstr ""
2781
-
2782
- #: app/model/api.php:446
2783
- msgid "Past Event"
2784
- msgstr ""
2785
-
2786
- #: app/model/api.php:448
2787
- msgid "Event closed"
2788
- msgstr ""
2789
-
2790
- #: app/model/api.php:450
2791
- msgid "Not available yet"
2792
- msgstr ""
2793
-
2794
- #: app/model/api.php:452
2795
- msgid "Sale closed"
2796
- msgstr ""
2797
-
2798
- #: app/model/api.php:454
2799
- msgid "Sold out"
2800
- msgstr ""
2801
-
2802
- #: app/controller/javascript.php:484
2803
- msgid "Report"
2804
- msgstr ""
2805
-
2806
- #: app/controller/javascript.php:485
2807
- msgid "Sale dates"
2808
- msgstr ""
2809
-
2810
- #: app/controller/javascript.php:486
2811
- msgid "Limits"
2812
- msgstr ""
2813
-
2814
- #: app/controller/javascript.php:487
2815
- msgid "Actions"
2816
- msgstr ""
2817
-
2818
- #: app/controller/javascript.php:488
2819
- msgid "Sold:"
2820
- msgstr ""
2821
-
2822
- #: app/controller/javascript.php:489
2823
- msgid "Left:"
2824
- msgstr ""
2825
-
2826
- #: app/controller/javascript.php:490
2827
- msgid "Start:"
2828
- msgstr ""
2829
-
2830
- #: app/controller/javascript.php:491
2831
- msgid "End:"
2832
- msgstr ""
2833
-
2834
- #: app/controller/javascript.php:492 public/admin/box_event_cost.php:134
2835
- msgid "Min:"
2836
- msgstr ""
2837
-
2838
- #: app/controller/javascript.php:493 public/admin/box_event_cost.php:144
2839
- msgid "Max:"
2840
- msgstr ""
2841
-
2842
- #: app/controller/javascript.php:494
2843
- msgid "Attendees"
2844
- msgstr ""
2845
-
2846
- #: app/controller/javascript.php:495
2847
- msgid "Hide Attendees"
2848
- msgstr ""
2849
-
2850
- #: app/controller/javascript.php:496
2851
- msgid "Attendees List"
2852
- msgstr ""
2853
-
2854
- #: app/controller/javascript.php:497
2855
- msgid "Guest Name"
2856
- msgstr ""
2857
-
2858
- #: app/controller/javascript.php:498 app/view/admin/tickets.php:100
2859
- msgid "Status"
2860
- msgstr ""
2861
-
2862
- #: app/controller/javascript.php:499 app/view/admin/tickets.php:99
2863
- #: app/view/event/ticket.php:71
2864
- msgid "Email"
2865
- msgstr "דוא״ל"
2866
-
2867
- #: app/controller/javascript.php:500
2868
- msgid "No attendees for this ticket type."
2869
- msgstr ""
2870
-
2871
- #: app/controller/javascript.php:501 app/view/calendar/view/agenda.php:167
2872
- #: app/view/calendar/widget.php:373 public/admin/feed_row.php:112
2873
- msgid "Edit"
2874
- msgstr "עריכה"
2875
-
2876
- #: app/controller/javascript.php:502
2877
- msgid "Code"
2878
- msgstr ""
2879
-
2880
- #: app/controller/javascript.php:503 public/admin/box_event_cost.php:165
2881
- msgid "Unlimited"
2882
- msgstr ""
2883
-
2884
- #: app/controller/javascript.php:506
2885
- msgid "Your message has been sent. Thank you for your feedback."
2886
- msgstr ""
2887
-
2888
- #: app/controller/javascript.php:507
2889
- msgid "Your message has not been sent. Please try again or contact us."
2890
- msgstr ""
2891
-
2892
- #: app/controller/javascript.php:405
2893
- msgid "Please enter a valid iCalendar URL."
2894
- msgstr ""
2895
-
2896
- #: app/controller/javascript.php:408
2897
- msgid "Please enter a valid email address."
2898
- msgstr "יש להכניס כתובת אימייל אמיתית."
2899
-
2900
- #: app/controller/javascript.php:410
2901
- msgid "Choose Image"
2902
- msgstr "בחר תמונה"
2903
-
2904
- #: app/controller/javascript.php:413
2905
- msgid "The value you have entered is not a valid CSS length."
2906
- msgstr ""
2907
-
2908
- #: app/controller/javascript.php:416
2909
- msgid "Are you sure you want to reset your theme options to their default values?"
2910
- msgstr "האם אתה בטוח שברצונך לאפס את אפשרויות ערכת הנושא שלך לערכי ברירת המחדל?"
2911
-
2912
- #: app/controller/javascript.php:419
2913
- msgid "Please enter a valid latitude. A valid latitude is comprised between +90 and -90."
2914
- msgstr ""
2915
-
2916
- #: app/controller/javascript.php:422
2917
- msgid "Please enter a valid longitude. A valid longitude is comprised between +180 and -180."
2918
- msgstr ""
2919
-
2920
- #: app/controller/javascript.php:425
2921
- msgid "When the \"Input coordinates\" checkbox is checked, \"Latitude\" is a required field."
2922
- msgstr "כאשר תיבת הסימון של \"קואורדינטות קלט\" מסומנת, \"קו רוחב\" הוא שדה הכרחי."
2923
-
2924
- #: app/controller/javascript.php:428
2925
- msgid "When the \"Input coordinates\" checkbox is checked, \"Longitude\" is a required field."
2926
- msgstr ""
2927
-
2928
- #: app/controller/javascript.php:431
2929
- msgid "The URL you have entered in the <b>Organizer Contact Info</b> &gt; <b>Website URL</b> seems to be invalid."
2930
- msgstr ""
2931
-
2932
- #: app/controller/javascript.php:434
2933
- msgid "The URL you have entered in the <b>Event Cost and Tickets</b> &gt; <b>Buy Tickets URL</b> seems to be invalid."
2934
- msgstr "נראה שכתובת האתר שהכנסת ב-<b>מחירים וכרטיסים לאירוע</b> &gt; <b>כתובת אתר לרכישת כרטיסים</b> אינה חוקית."
2935
-
2936
- #: app/controller/javascript.php:437
2937
- msgid "Please remember that URLs must start with either \"http://\" or \"https://\"."
2938
- msgstr "זכור שכתובות URL חייבות להתחיל ב\"http://\" או ב- \"https://\"."
2939
-
2940
- #: app/controller/javascript.php:440
2941
- msgid "Loading&hellip;"
2942
- msgstr "טוען&hellip;"
2943
-
2944
- #: app/controller/javascript.php:443
2945
- msgid "<p class=\"ai1ec_ticketing_required_alert\"><b>Some fields required for Ticketing are missing.</b><br><i>Missing or incorrect fields are outlined red.</i></p>"
2946
- msgstr ""
2947
-
2948
- #: app/controller/javascript.php:473 app/view/admin/widget-creator.php:139
2949
- msgid "Preview:"
2950
- msgstr "תצוגה מקדימה:"
2951
-
2952
- #: app/controller/javascript.php:474
2953
- msgid "Loading preview&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2954
- msgstr "טוען תצוגה מקדימה&nbsp;<i class=\"ai1ec-fa ai1ec-fa-spin ai1ec-fa-spinner\"></i>"
2955
-
2956
- #: app/controller/javascript.php:479 app/view/admin/all-events.php:89
2957
- msgid "Ticketing Details"
2958
- msgstr ""
2959
-
2960
- #: app/controller/javascript.php:480
2961
- msgid "Hide Ticketing Details"
2962
- msgstr ""
2963
-
2964
- #: app/controller/javascript.php:481
2965
- msgid "Loading tickets details..."
2966
- msgstr ""
2967
-
2968
- #: app/controller/javascript.php:482
2969
- msgid "Type and price"
2970
- msgstr ""
2971
-
2972
- #: app/controller/javascript.php:483
2973
- msgid "Info"
2974
- msgstr ""
2975
-
2976
- #: app/controller/extension-license.php:53 app/view/admin/add-ons.php:26
2977
- #: app/view/admin/add-ons.php:27
2978
- msgid "Add-ons"
2979
- msgstr "תוספים"
2980
-
2981
- #: app/controller/front.php:343
2982
- msgid "Your active calendar theme could not be properly initialized. The default theme has been activated instead. Please visit %s and try reactivating your theme manually."
2983
- msgstr ""
2984
-
2985
- #: app/controller/front.php:347 app/view/admin/theme-switching.php:54
2986
- #: app/view/admin/theme-switching.php:55
2987
- msgid "Calendar Themes"
2988
- msgstr "ערכות נושא ללוח האירועים"
2989
-
2990
- #: app/controller/front.php:990
2991
- msgid "Your database is found to be corrupt. Likely previous update has failed. Please restore All-in-One Event Calendar tables from a backup and retry.<br>Following errors were found:<br>%s"
2992
- msgstr ""
2993
-
2994
- #: app/controller/javascript-widget.php:48
2995
- msgid "You must choose the Calendar page before using the Super Widget"
2996
- msgstr "עליך לבחור את העמוד של לוח האירועים לפני השימוש בSuper Widget"
2997
-
2998
- #: app/controller/javascript.php:402
2999
- msgid "This feed is already being imported."
3000
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
language/all-in-one-event-calendar-hu.mo DELETED
Binary file
language/all-in-one-event-calendar-hu.po DELETED
@@ -1,3020 +0,0 @@
1
- # Translation of 2.3 in Hungarian
2
- # This file is distributed under the same license as the 2.3 package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2016-01-21 20:44:03+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/1.0-alpha-1000\n"
11
- "Project-Id-Version: 2.3\n"
12
-
13
- #: public/themes-ai1ec/umbra/less/user_variables.php:209
14
- #: public/themes-ai1ec/vortex/less/user_variables.php:209
15
- msgid "Event background"
16
- msgstr "Esemény háttere"
17
-
18
- #: public/themes-ai1ec/umbra/less/user_variables.php:215
19
- #: public/themes-ai1ec/vortex/less/user_variables.php:215
20
- msgid "Event time background"
21
- msgstr "Esemény idejének háttere"
22
-
23
- #: public/themes-ai1ec/umbra/less/user_variables.php:221
24
- #: public/themes-ai1ec/vortex/less/user_variables.php:221
25
- msgid "Event text"
26
- msgstr "Esemény szövege"
27
-
28
- #: public/themes-ai1ec/umbra/less/user_variables.php:227
29
- #: public/themes-ai1ec/vortex/less/user_variables.php:227
30
- msgid "Month view date background"
31
- msgstr "Havi nézet dátum háttere"
32
-
33
- #: public/themes-ai1ec/umbra/less/user_variables.php:233
34
- #: public/themes-ai1ec/vortex/less/user_variables.php:233
35
- msgid "Week/day view now marker"
36
- msgstr "Hét/nap nézet 'most' jelölője"
37
-
38
- #: public/themes-ai1ec/umbra/less/user_variables.php:239
39
- #: public/themes-ai1ec/vortex/less/user_variables.php:239
40
- msgid "Date label accent color"
41
- msgstr "Dátum címke kiemelőszín"
42
-
43
- #: public/themes-ai1ec/umbra/less/user_variables.php:245
44
- #: public/themes-ai1ec/vortex/less/user_variables.php:245
45
- msgid "Date label background"
46
- msgstr "Dátum címke háttere"
47
-
48
- #: public/themes-ai1ec/umbra/less/user_variables.php:251
49
- #: public/themes-ai1ec/vortex/less/user_variables.php:251
50
- msgid "Date background"
51
- msgstr "Dátum háttere"
52
-
53
- #: public/themes-ai1ec/umbra/less/user_variables.php:257
54
- #: public/themes-ai1ec/vortex/less/user_variables.php:257
55
- msgid "Today background"
56
- msgstr "Mai nap háttere"
57
-
58
- #. Plugin Name of the plugin/theme
59
- msgid "All-in-One Event Calendar by Time.ly"
60
- msgstr "All-in-One Event Calendar by Time.ly"
61
-
62
- #. Description of the plugin/theme
63
- msgid "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
64
- msgstr "A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
65
-
66
- #. Author of the plugin/theme
67
- msgid "Time.ly Network Inc."
68
- msgstr "Time.ly Network Inc."
69
-
70
- #: public/themes-ai1ec/umbra/less/user_variables.php:149
71
- #: public/themes-ai1ec/vortex/less/user_variables.php:149
72
- msgid "List item background (active/hover)"
73
- msgstr "Lista elem háttere (aktív/lebegő)"
74
-
75
- #: public/themes-ai1ec/umbra/less/user_variables.php:155
76
- #: public/themes-ai1ec/vortex/less/user_variables.php:155
77
- msgid "Input field placeholder text"
78
- msgstr "Beviteli mező helyőrző szövege"
79
-
80
- #: public/themes-ai1ec/umbra/less/user_variables.php:161
81
- #: public/themes-ai1ec/vortex/less/user_variables.php:161
82
- msgid "Today color"
83
- msgstr "A mai nap színe"
84
-
85
- #: public/themes-ai1ec/umbra/less/user_variables.php:167
86
- #: public/themes-ai1ec/vortex/less/user_variables.php:167
87
- msgid "All-day badge color"
88
- msgstr "\"Egész napos\" esemény jelzőszíne"
89
-
90
- #: public/themes-ai1ec/umbra/less/user_variables.php:173
91
- #: public/themes-ai1ec/vortex/less/user_variables.php:173
92
- msgid "Event image shadow"
93
- msgstr "Esemény képének az árnyéka"
94
-
95
- #: public/themes-ai1ec/umbra/less/user_variables.php:179
96
- #: public/themes-ai1ec/vortex/less/user_variables.php:179
97
- msgid "Event default color"
98
- msgstr "Esemény alapértelmezett színe"
99
-
100
- #: public/themes-ai1ec/umbra/less/user_variables.php:185
101
- #: public/themes-ai1ec/vortex/less/user_variables.php:185
102
- msgid "Event default color (hover)"
103
- msgstr "Esemény alapértelmezett színe (lebegő)"
104
-
105
- #: public/themes-ai1ec/umbra/less/user_variables.php:191
106
- #: public/themes-ai1ec/vortex/less/user_variables.php:191
107
- msgid "All-day/multi-day event stub text"
108
- msgstr "Egész napos/több napos esemény csonkszöveg"
109
-
110
- #: public/themes-ai1ec/umbra/less/user_variables.php:197
111
- #: public/themes-ai1ec/vortex/less/user_variables.php:197
112
- msgid "All-day/multi-day event stub text shadow"
113
- msgstr "Egész napos/több napos esemény csonkszöveg árnyéka"
114
-
115
- #: public/themes-ai1ec/umbra/less/user_variables.php:203
116
- #: public/themes-ai1ec/vortex/less/user_variables.php:203
117
- msgid "Event border"
118
- msgstr "Esemény keret"
119
-
120
- #: public/themes-ai1ec/umbra/less/user_variables.php:83
121
- #: public/themes-ai1ec/vortex/less/user_variables.php:83
122
- msgid "Button text"
123
- msgstr "Gomb felirata"
124
-
125
- #: public/themes-ai1ec/umbra/less/user_variables.php:89
126
- #: public/themes-ai1ec/vortex/less/user_variables.php:89
127
- msgid "Input field text"
128
- msgstr "Beviteli mező szövege"
129
-
130
- #: public/themes-ai1ec/umbra/less/user_variables.php:95
131
- #: public/themes-ai1ec/vortex/less/user_variables.php:95
132
- msgid "Input field background"
133
- msgstr "Beviteli mező háttere"
134
-
135
- #: public/themes-ai1ec/umbra/less/user_variables.php:101
136
- #: public/themes-ai1ec/vortex/less/user_variables.php:101
137
- msgid "Input field border"
138
- msgstr "Beviteli mező kerete"
139
-
140
- #: public/themes-ai1ec/umbra/less/user_variables.php:107
141
- #: public/themes-ai1ec/vortex/less/user_variables.php:107
142
- msgid "Input field border (focus)"
143
- msgstr "Beviteli mező kerete (fókusz)"
144
-
145
- #: public/themes-ai1ec/umbra/less/user_variables.php:113
146
- #: public/themes-ai1ec/vortex/less/user_variables.php:113
147
- msgid "Input field background (disabled)"
148
- msgstr "Beviteli mező háttere (kikapcsolt)"
149
-
150
- #: public/themes-ai1ec/umbra/less/user_variables.php:119
151
- #: public/themes-ai1ec/vortex/less/user_variables.php:119
152
- msgid "Field label"
153
- msgstr "Mező címkéje"
154
-
155
- #: public/themes-ai1ec/umbra/less/user_variables.php:125
156
- #: public/themes-ai1ec/vortex/less/user_variables.php:125
157
- msgid "Dropdown list background"
158
- msgstr "Legördülő lista háttere"
159
-
160
- #: public/themes-ai1ec/umbra/less/user_variables.php:131
161
- #: public/themes-ai1ec/vortex/less/user_variables.php:131
162
- msgid "Dropdown list border"
163
- msgstr "Legördülő lista kerete"
164
-
165
- #: public/themes-ai1ec/umbra/less/user_variables.php:137
166
- #: public/themes-ai1ec/vortex/less/user_variables.php:137
167
- msgid "List item text"
168
- msgstr "Lista elem szövege"
169
-
170
- #: public/themes-ai1ec/umbra/less/user_variables.php:143
171
- #: public/themes-ai1ec/vortex/less/user_variables.php:143
172
- msgid "List item text (active/hover)"
173
- msgstr "Lista elem szövege (aktív/lebegő)"
174
-
175
- #: public/admin/themes-install.php:20 public/admin/themes.php:4
176
- msgid "New theme activated. <a href=\"%s\">Visit site</a>"
177
- msgstr "Az új sablon bekapcsolva. <a href=\"%s\">A honlap megtekintése</a>"
178
-
179
- #: public/admin/themes-install.php:26 public/admin/themes.php:10
180
- msgid "Theme deleted."
181
- msgstr "Sablon törölve."
182
-
183
- #: public/admin/themes-install.php:37 public/admin/themes-install.php:44
184
- msgid "Manage Themes"
185
- msgstr "Sablonkezelés"
186
-
187
- #: public/admin/themes-install.php:40
188
- msgctxt "theme"
189
- msgid "Install Themes"
190
- msgstr "Sablonok telepítése"
191
-
192
- #: public/admin/themes-updated.php:5
193
- msgid "Update Calendar Themes"
194
- msgstr "Naptár sablon frissítése"
195
-
196
- #: public/admin/themes-updated.php:15
197
- msgid "All-in-One Event Calendar Settings »"
198
- msgstr "All-in-One Event Calendar Beállítások »"
199
-
200
- #: public/admin/themes.php:18
201
- msgid "Current Calendar Theme"
202
- msgstr "Jelenlegi Calendar téma"
203
-
204
- #: public/admin/themes.php:21
205
- msgid "Current theme preview"
206
- msgstr "A jelenlegi téma előnézete"
207
-
208
- #: public/admin/themes.php:47
209
- msgid "Available Calendar Themes"
210
- msgstr "Elérhető naptár sablonok"
211
-
212
- #: public/themes-ai1ec/umbra/less/user_variables.php:5
213
- #: public/themes-ai1ec/vortex/less/user_variables.php:5
214
- msgid "Body background"
215
- msgstr "Szöveg háttere"
216
-
217
- #: public/themes-ai1ec/umbra/less/user_variables.php:11
218
- #: public/themes-ai1ec/vortex/less/user_variables.php:11
219
- msgid "Text color"
220
- msgstr "Szöveg színe"
221
-
222
- #: public/themes-ai1ec/umbra/less/user_variables.php:17
223
- #: public/themes-ai1ec/vortex/less/user_variables.php:17
224
- msgid "Text emboss"
225
- msgstr "Domborított szöveg"
226
-
227
- #: public/themes-ai1ec/umbra/less/user_variables.php:23
228
- #: public/themes-ai1ec/vortex/less/user_variables.php:23
229
- msgid "Link"
230
- msgstr "Link"
231
-
232
- #: public/themes-ai1ec/umbra/less/user_variables.php:29
233
- #: public/themes-ai1ec/vortex/less/user_variables.php:29
234
- msgid "Link (hover)"
235
- msgstr "Hivatkozás (lebegő)"
236
-
237
- #: public/themes-ai1ec/umbra/less/user_variables.php:35
238
- #: public/themes-ai1ec/vortex/less/user_variables.php:35
239
- msgid "Base font"
240
- msgstr "Alapértelmezett betű típus"
241
-
242
- #: public/themes-ai1ec/umbra/less/user_variables.php:41
243
- #: public/themes-ai1ec/vortex/less/user_variables.php:41
244
- msgid "Base font size"
245
- msgstr "Alapértelmezett betű mérete"
246
-
247
- #: public/themes-ai1ec/umbra/less/user_variables.php:47
248
- #: public/themes-ai1ec/vortex/less/user_variables.php:47
249
- msgid "Table background"
250
- msgstr "Táblázat háttere"
251
-
252
- #: public/themes-ai1ec/umbra/less/user_variables.php:53
253
- #: public/themes-ai1ec/vortex/less/user_variables.php:53
254
- msgid "Table header background"
255
- msgstr "Táblázat fejléc háttere"
256
-
257
- #: public/themes-ai1ec/umbra/less/user_variables.php:59
258
- #: public/themes-ai1ec/vortex/less/user_variables.php:59
259
- msgid "Table header text"
260
- msgstr "Táblázat fejléc szövege"
261
-
262
- #: public/themes-ai1ec/umbra/less/user_variables.php:65
263
- #: public/themes-ai1ec/vortex/less/user_variables.php:65
264
- msgid "Primary brand color"
265
- msgstr "Elsődleges szín"
266
-
267
- #: public/themes-ai1ec/umbra/less/user_variables.php:71
268
- #: public/themes-ai1ec/vortex/less/user_variables.php:71
269
- msgid "Button background"
270
- msgstr "Gomb háttér"
271
-
272
- #: public/themes-ai1ec/umbra/less/user_variables.php:77
273
- #: public/themes-ai1ec/vortex/less/user_variables.php:77
274
- msgid "Button border"
275
- msgstr "Gomb keret"
276
-
277
- #: public/admin/feed_row.php:104
278
- msgid "Refreshing&#8230;"
279
- msgstr "Frissítés&#8230;"
280
-
281
- #: public/admin/feed_row.php:106
282
- msgid "Refresh"
283
- msgstr "Frissítés"
284
-
285
- #: public/admin/feed_row.php:119
286
- msgid "Removing&#8230;"
287
- msgstr "Törlés&#8230;"
288
-
289
- #: public/admin/feed_row.php:121
290
- msgid "Remove"
291
- msgstr "Eltávolítás"
292
-
293
- #: public/admin/import.php:6
294
- msgid "Successfully imported events:"
295
- msgstr "Sikeresen importált események:"
296
-
297
- #: public/admin/plugins/ics/display_feeds.php:2
298
- msgid ""
299
- "Configure which other calendars your own calendar subscribes to.\n"
300
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
301
- " Enter the feed URL(s) below and the events from those feeds will be\n"
302
- " imported periodically."
303
- msgstr ""
304
- "Configure which other calendars your own calendar subscribes to.\n"
305
- " You can add any calendar that provides an iCalendar (.ics) feed.\n"
306
- " Enter the feed URL(s) below and the events from those feeds will be\n"
307
- " imported periodically."
308
-
309
- #: public/admin/plugins/ics/display_feeds.php:14
310
- msgid "Check for new events"
311
- msgstr "Új események keresése"
312
-
313
- #: public/admin/plugins/ics/display_feeds.php:45
314
- msgid "Allow comments on imported events"
315
- msgstr "Importált események esetében kommentek engedélyezése"
316
-
317
- #: public/admin/plugins/ics/display_feeds.php:52
318
- msgid "Show map on imported events"
319
- msgstr "Importált események esetén a térkép mutatása"
320
-
321
- #: public/admin/plugins/ics/display_feeds.php:59
322
- msgid "Import any tags/categories provided by feed, in addition those selected above"
323
- msgstr "Újabb címkék/ kategóriák importálása a fent kiválasztottakon túl."
324
-
325
- #: public/admin/plugins/ics/display_feeds.php:93
326
- msgid "Add new subscription"
327
- msgstr "Új feliratkozás"
328
-
329
- #: public/admin/plugins/ics/display_feeds.php:96
330
- msgid "Update subscription"
331
- msgstr ""
332
-
333
- #: public/admin/row_custom.php:3
334
- msgid "Custom dates:"
335
- msgstr ""
336
-
337
- #: public/admin/row_daily.php:3 public/admin/row_monthly.php:3
338
- #: public/admin/row_monthly.php:39 public/admin/row_weekly.php:3
339
- #: public/admin/row_yearly.php:3
340
- msgid "Every"
341
- msgstr "Minden"
342
-
343
- #: public/admin/row_monthly.php:16
344
- msgid "On day of the month"
345
- msgstr "Ezen hónap napján"
346
-
347
- #: public/admin/row_monthly.php:23
348
- msgid "On day of the week"
349
- msgstr "Ezen hét napján"
350
-
351
- #: public/admin/row_weekly.php:12
352
- msgctxt "Recurrence editor - weekly tab"
353
- msgid "On"
354
- msgstr "ekkor:"
355
-
356
- #: public/admin/row_yearly.php:12
357
- msgctxt "Recurrence editor - yearly tab"
358
- msgid "In"
359
- msgstr "Itt:"
360
-
361
- #: public/admin/settings.php:19
362
- msgid "Update Settings"
363
- msgstr "Beállítások frissítése"
364
-
365
- #: public/admin/themes-install.php:4
366
- msgid "The active theme is broken. Reverting to the default theme."
367
- msgstr "Az aktív sablon meghibásodott. Most visszatér az alapértelmezett sablonra a bővítmény."
368
-
369
- #: public/admin/themes-install.php:13
370
- msgid "New theme activated. This theme supports widgets, please visit the <a href=\"%s\">widgets settings</a> screen to configure them."
371
- msgstr ""
372
-
373
- #: public/admin/calendar_tasks.php:24
374
- msgid "Manage Events"
375
- msgstr "Események kezelése"
376
-
377
- #: public/admin/calendar_tasks.php:27
378
- msgid "View and edit all your events."
379
- msgstr "Nézd meg és szerkeszd az összes eseményed"
380
-
381
- #: public/admin/calendar_tasks.php:39
382
- msgid "Manage Event Categories"
383
- msgstr "Esemény kategóriák kezelése"
384
-
385
- #: public/admin/calendar_tasks.php:42
386
- msgid "Organize and color-code your events."
387
- msgstr "Események rendezése és színkódolása"
388
-
389
- #: public/admin/calendar_tasks.php:50
390
- msgid "Choose Your Theme"
391
- msgstr "Válassz témát"
392
-
393
- #: public/admin/calendar_tasks.php:53
394
- msgid "Change the look and feel."
395
- msgstr "Változtasd meg a kinézetét"
396
-
397
- #: public/admin/calendar_tasks.php:63
398
- msgid "Manage Calendar Feeds"
399
- msgstr "Naptár források szerkesztése"
400
-
401
- #: public/admin/calendar_tasks.php:66
402
- msgid "Subscribe to other calendars."
403
- msgstr "Más naptárakra való feliratkozás"
404
-
405
- #: public/admin/calendar_tasks.php:74
406
- msgid "Edit Calendar Settings"
407
- msgstr "Naptár beállítások szerkesztése"
408
-
409
- #: public/admin/calendar_tasks.php:77
410
- msgid "Make this calendar your own."
411
- msgstr "Naptár sajáttá tétele"
412
-
413
- #: public/admin/cron_freq.php:3
414
- msgid "Hourly"
415
- msgstr "Óránként"
416
-
417
- #: public/admin/cron_freq.php:6
418
- msgid "Twice Daily"
419
- msgstr "Naponta kétszer"
420
-
421
- #: public/admin/feed_row.php:14 public/admin/plugins/ics/display_feeds.php:27
422
- msgid "iCalendar/.ics Feed URL:"
423
- msgstr "iCalendar/.ics Feed URL:"
424
-
425
- #: public/admin/feed_row.php:24
426
- msgid "Event categories:"
427
- msgstr "Esemény kategóriák:"
428
-
429
- #: public/admin/feed_row.php:31
430
- msgid "Tag with"
431
- msgstr "Címkézés"
432
-
433
- #: public/admin/feed_row.php:40
434
- msgid "Allow comments"
435
- msgstr "Kommentek engedélyezése"
436
-
437
- #: public/admin/feed_row.php:51
438
- msgid "Show map"
439
- msgstr "Térkép mutatása"
440
-
441
- #: public/admin/feed_row.php:63
442
- msgid "Keep original events categories and tags"
443
- msgstr "Eredeti esemény kategóriák és címkék megtartása"
444
-
445
- #: public/admin/feed_row.php:75 public/admin/plugins/ics/display_feeds.php:67
446
- msgid "On refresh, preserve previously imported events that are missing from the feed"
447
- msgstr ""
448
-
449
- #: public/admin/feed_row.php:86 public/admin/plugins/ics/display_feeds.php:74
450
- msgid "Guesses the time zone of events that have none specified; recommended for Google Calendar feeds"
451
- msgstr ""
452
-
453
- #: public/admin/feed_row.php:87 public/admin/plugins/ics/display_feeds.php:75
454
- msgid "Assign default time zone to events in UTC"
455
- msgstr ""
456
-
457
- #: public/admin/box_support.php:19
458
- msgid "Get Add-ons"
459
- msgstr "Kiegészítők elérése"
460
-
461
- #: public/admin/box_support.php:27
462
- msgid "Support"
463
- msgstr "Támogatás"
464
-
465
- #: public/admin/box_support.php:35
466
- msgid "Timely Events"
467
- msgstr "Timely események"
468
-
469
- #: public/admin/box_support.php:43
470
- msgid "Timely News"
471
- msgstr "Timely hírek"
472
-
473
- #: public/admin/box_support.php:47
474
- msgid "view all news"
475
- msgstr "minden hír megnézése"
476
-
477
- #: public/admin/box_support.php:95
478
- msgid "Follow @_Timely"
479
- msgstr "@_Timely követése"
480
-
481
- #: public/admin/box_time_and_date.php:6
482
- msgid "Event date and time"
483
- msgstr "Esemény dátuma és ideje"
484
-
485
- #: public/admin/box_time_and_date.php:26
486
- msgid "All-day event"
487
- msgstr "Egésznapos esemény"
488
-
489
- #: public/admin/box_time_and_date.php:35
490
- msgid "No end time"
491
- msgstr "Nincs vége"
492
-
493
- #: public/admin/box_time_and_date.php:42
494
- msgid "Start date / time"
495
- msgstr "Kezdés dátuma/ ideje"
496
-
497
- #: public/admin/box_time_and_date.php:59
498
- msgid "End date / time"
499
- msgstr "Vége dátum/ idő"
500
-
501
- #: public/admin/box_time_and_date.php:76
502
- msgid "Time zone"
503
- msgstr "Időzóna"
504
-
505
- #: public/admin/box_time_and_date.php:81
506
- msgid "Choose your time zone"
507
- msgstr "Válassz időzónát!"
508
-
509
- #: public/admin/box_time_and_date.php:108
510
- msgid "Repeat"
511
- msgstr "Ismétlés"
512
-
513
- #: public/admin/box_time_and_date.php:127
514
- msgid "Exclude"
515
- msgstr "Kihagy"
516
-
517
- #: public/admin/box_time_and_date.php:136
518
- msgid "Choose a rule for exclusion"
519
- msgstr "Kizárás szabályai"
520
-
521
- #: public/admin/calendar_tasks.php:3
522
- msgid "Welcome"
523
- msgstr "Üdvözöllek"
524
-
525
- #: public/admin/calendar_tasks.php:4
526
- msgid "to the All-in-One Event Calendar by <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
527
- msgstr "a All-in-One Event Calendar-ba feltöltötte <a href=\"http://time.ly/\" target=\"_blank\">Timely</a>"
528
-
529
- #: public/admin/calendar_tasks.php:13
530
- msgid "Post Your Event"
531
- msgstr "Esemény közzététele"
532
-
533
- #: public/admin/calendar_tasks.php:16
534
- msgid "Add a new event to the calendar."
535
- msgstr "Adj egy új eseményt a naptárhoz"
536
-
537
- #: public/admin/box_eventbrite.php:60
538
- msgid "Donation Based"
539
- msgstr "Adomány alapú"
540
-
541
- #: public/admin/box_eventbrite.php:68
542
- msgid "The price for this event's first ticket will be taken from the Cost field above."
543
- msgstr "A fenti Költség mezőből veszi át ennek a rendezvénynek az első jegyének az árát."
544
-
545
- #: public/admin/box_eventbrite.php:75
546
- msgid "Quantity"
547
- msgstr "Mennyiség"
548
-
549
- #: public/admin/box_eventbrite.php:85
550
- msgid "Include Fee in Price"
551
- msgstr "Az ár tartalmazza a jutalékot"
552
-
553
- #: public/admin/box_eventbrite.php:90
554
- msgid "Add Service Fee on top of price"
555
- msgstr "Az árra tegye rá a felszolgálási díjat is"
556
-
557
- #: public/admin/box_eventbrite.php:92
558
- msgid "Include Service fee in price"
559
- msgstr "Az ár tartalmazza a felszolgálási díjat is"
560
-
561
- #: public/admin/box_eventbrite.php:98
562
- msgid "Payment Options"
563
- msgstr "Fizetési lehetőségek"
564
-
565
- #: public/admin/box_eventbrite.php:105
566
- msgid "Google Checkout"
567
- msgstr "Google pénztár"
568
-
569
- #: public/admin/box_eventbrite.php:107
570
- msgid "Check"
571
- msgstr "Ellenőrzés"
572
-
573
- #: public/admin/box_eventbrite.php:109
574
- msgid "Cash"
575
- msgstr "Készpénz"
576
-
577
- #: public/admin/box_eventbrite.php:111
578
- msgid "Send an Invoice"
579
- msgstr "Számlaküldés"
580
-
581
- #: public/admin/box_profile_timezone.php:9
582
- msgid "Your preferred timezone"
583
- msgstr "A kiválasztott időzóna"
584
-
585
- #: public/admin/box_repeat.php:5
586
- msgid "Select recurrence pattern:"
587
- msgstr "Válaszd ki az ismétlés szabályait:"
588
-
589
- #: public/admin/box_repeat.php:36
590
- msgid "Custom"
591
- msgstr ""
592
-
593
- #: public/admin/box_repeat.php:72
594
- msgid "End"
595
- msgstr "Vége"
596
-
597
- #: public/admin/box_repeat.php:82
598
- msgid "Ending after"
599
- msgstr "Után vége"
600
-
601
- #: public/admin/box_repeat.php:109
602
- #: public/admin/plugins/ics/display_feeds.php:90
603
- msgid "Please wait&#8230;"
604
- msgstr "Kérem várjon&#8230;"
605
-
606
- #: public/admin/box_repeat.php:111
607
- msgid "Apply"
608
- msgstr "Alkalmaz"
609
-
610
- #: public/admin/box_repeat.php:116
611
- #: public/admin/plugins/ics/display_feeds.php:84
612
- msgid "Cancel"
613
- msgstr "Mégsem"
614
-
615
- #: public/admin/box_support.php:4
616
- msgid "Timely"
617
- msgstr "Timely"
618
-
619
- #: public/admin/box_support.php:11
620
- msgid "Timely’s All-in-One Event Calendar is a<br />revolutionary new way to find and share events."
621
- msgstr "Timely’s All-in-One Event Calendar egy <br />forradalmian új módja annak, hogy megtalálhassák, és megoszthassanak eseményeket."
622
-
623
- #: public/admin/box_event_cost.php:228
624
- msgid "Status:"
625
- msgstr ""
626
-
627
- #: public/admin/box_event_cost.php:235
628
- msgid "Open"
629
- msgstr ""
630
-
631
- #: public/admin/box_event_cost.php:239
632
- msgid "Closed"
633
- msgstr ""
634
-
635
- #: public/admin/box_event_cost.php:254
636
- msgid "Add New Ticket Type"
637
- msgstr ""
638
-
639
- #: public/admin/box_event_cost.php:274
640
- msgid "Tickets URL:"
641
- msgstr ""
642
-
643
- #: public/admin/box_event_location.php:6
644
- msgid "Event location details"
645
- msgstr "Az esemény helyszíne"
646
-
647
- #: public/admin/box_event_location.php:19
648
- msgid "Venue name:"
649
- msgstr "Helyszín megnevezése:"
650
-
651
- #: public/admin/box_event_location.php:31
652
- msgid "Address:"
653
- msgstr "Cím:"
654
-
655
- #: public/admin/box_event_location.php:45
656
- msgid "Input Coordinates"
657
- msgstr "Koordináták bevitele"
658
-
659
- #: public/admin/box_event_location.php:57
660
- msgid "Latitude:"
661
- msgstr "Szélesség:"
662
-
663
- #: public/admin/box_event_location.php:69
664
- msgid "Longitude:"
665
- msgstr "Hosszúság:"
666
-
667
- #: public/admin/box_event_location.php:85
668
- msgid "Show Map"
669
- msgstr ""
670
-
671
- #: public/admin/box_eventbrite.php:1
672
- msgid "Eventbrite Ticketing"
673
- msgstr "Eventbrite Jegyértékesítő"
674
-
675
- #: public/admin/box_eventbrite.php:7
676
- msgid "Register this event with Eventbrite.com?"
677
- msgstr "Regisztrálja ezt az eseményt az Eventbrite.com oldalon?"
678
-
679
- #: public/admin/box_eventbrite.php:12 public/admin/feed_row.php:43
680
- #: public/admin/feed_row.php:54 public/admin/feed_row.php:66
681
- #: public/admin/feed_row.php:78 public/admin/feed_row.php:91
682
- msgid "Yes"
683
- msgstr "Igen"
684
-
685
- #: public/admin/box_eventbrite.php:14 public/admin/feed_row.php:45
686
- #: public/admin/feed_row.php:56 public/admin/feed_row.php:68
687
- #: public/admin/feed_row.php:80 public/admin/feed_row.php:93
688
- msgid "No"
689
- msgstr "Nem"
690
-
691
- #: public/admin/box_eventbrite.php:22
692
- msgid "Set up your first ticket"
693
- msgstr "Állítsa be az első jegyet"
694
-
695
- #: public/admin/box_eventbrite.php:24
696
- msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
697
- msgstr "Ahhoz, hogy hozzon létre több jegyet egy esetben benyújtja ezt az űrlapot, majd kövesse az Eventbrite hivatkozást."
698
-
699
- #: public/admin/box_eventbrite.php:42
700
- msgid "Description"
701
- msgstr "Leírás"
702
-
703
- #: public/admin/box_eventbrite.php:53
704
- msgid "Type"
705
- msgstr "Típus"
706
-
707
- #: public/admin/box_eventbrite.php:58
708
- msgid "Set Price"
709
- msgstr "Állítsd be az árat!"
710
-
711
- #: public/admin/box_event_contact.php:30
712
- msgid "Phone:"
713
- msgstr "Telefon:"
714
-
715
- #: public/admin/box_event_contact.php:56
716
- msgid "Website URL:"
717
- msgstr ""
718
-
719
- #: public/admin/box_event_cost.php:6
720
- msgid "Event cost and Tickets"
721
- msgstr "Az esemény költsége és jegyek"
722
-
723
- #: public/admin/box_event_cost.php:20
724
- msgid "Ticket options not available - event imported from external calendar."
725
- msgstr ""
726
-
727
- #: public/admin/box_event_cost.php:28
728
- msgid "Free event"
729
- msgstr "Ingyenes esemény"
730
-
731
- #: public/admin/box_event_cost.php:41
732
- msgid "External Tickets URL"
733
- msgstr ""
734
-
735
- #: public/admin/box_event_cost.php:52
736
- msgid "Ticketing allows you to sell tickets directly to the users."
737
- msgstr ""
738
-
739
- #: public/admin/box_event_cost.php:55
740
- msgid "Sign Up for Timely Network"
741
- msgstr ""
742
-
743
- #: public/admin/box_event_cost.php:80
744
- msgid "Remove Ticket Type"
745
- msgstr ""
746
-
747
- #: public/admin/box_event_cost.php:101
748
- msgid "Ex.: Regular Ticket"
749
- msgstr ""
750
-
751
- #: public/admin/box_event_cost.php:105
752
- msgid "Description:"
753
- msgstr ""
754
-
755
- #: public/admin/box_event_cost.php:111
756
- msgid "(Optional)"
757
- msgstr ""
758
-
759
- #: public/admin/box_event_cost.php:115
760
- msgid "Price:"
761
- msgstr ""
762
-
763
- #: public/admin/box_event_cost.php:124
764
- msgid "USD"
765
- msgstr ""
766
-
767
- #: public/admin/box_event_cost.php:128
768
- msgid "Limits:"
769
- msgstr ""
770
-
771
- #: public/admin/box_event_cost.php:131
772
- msgid "This fields are required."
773
- msgstr ""
774
-
775
- #: public/admin/box_event_cost.php:156
776
- msgid "Quantity:"
777
- msgstr ""
778
-
779
- #: public/admin/box_event_cost.php:180
780
- msgid "Available:"
781
- msgstr ""
782
-
783
- #: public/admin/box_event_cost.php:185
784
- msgid "Immediately"
785
- msgstr ""
786
-
787
- #: public/admin/box_event_cost.php:190
788
- msgid "From:"
789
- msgstr ""
790
-
791
- #: public/admin/box_event_cost.php:207
792
- msgid "Till:"
793
- msgstr ""
794
-
795
- #: public/admin/box_ask_customer_review.php:42
796
- #: public/admin/box_ask_customer_review.php:75
797
- msgid "No, thanks"
798
- msgstr ""
799
-
800
- #: public/admin/box_ask_customer_review.php:50
801
- #: public/admin/box_ask_customer_review.php:84
802
- msgid "Ok, sure!"
803
- msgstr ""
804
-
805
- #: public/admin/box_ask_customer_review.php:66
806
- msgid "Would you mind giving us some feedback?"
807
- msgstr ""
808
-
809
- #: public/admin/box_ask_customer_review.php:101
810
- msgid "Please provide some feedback"
811
- msgstr ""
812
-
813
- #: public/admin/box_ask_customer_review.php:108
814
- msgid "Message:"
815
- msgstr ""
816
-
817
- #: public/admin/box_ask_customer_review.php:121
818
- msgid "Name:"
819
- msgstr ""
820
-
821
- #: public/admin/box_ask_customer_review.php:136
822
- #: public/admin/box_event_contact.php:43
823
- msgid "E-mail:"
824
- msgstr "E-mail:"
825
-
826
- #: public/admin/box_ask_customer_review.php:143
827
- msgid "E-mail is invalid."
828
- msgstr ""
829
-
830
- #: public/admin/box_ask_customer_review.php:154
831
- msgid "Site URL:"
832
- msgstr ""
833
-
834
- #: public/admin/box_ask_customer_review.php:161
835
- msgid "Site URL is invalid."
836
- msgstr ""
837
-
838
- #: public/admin/box_ask_customer_review.php:173
839
- msgid "Thank you for being our customer,"
840
- msgstr ""
841
-
842
- #: public/admin/box_ask_customer_review.php:174
843
- msgid "Aristotel Dascal, VP of Product, Time.ly"
844
- msgstr ""
845
-
846
- #: public/admin/box_ask_customer_review.php:180
847
- msgid "Sending..."
848
- msgstr ""
849
-
850
- #: public/admin/box_ask_customer_review.php:181
851
- msgid "Send Message"
852
- msgstr ""
853
-
854
- #: public/admin/box_event_children.php:12
855
- msgid "Base recurrence event"
856
- msgstr "Alap ismétlődő esemény"
857
-
858
- #: public/admin/box_event_children.php:14
859
- msgid "Modified recurrence events"
860
- msgstr "Módosított ismétlődő események"
861
-
862
- #: public/admin/box_event_children.php:22
863
- msgid "Edit parent:"
864
- msgstr "Szülő szerkesztése:"
865
-
866
- #: public/admin/box_event_children.php:27
867
- msgid "Modified Events"
868
- msgstr "Módosított események"
869
-
870
- #: public/admin/box_event_children.php:31
871
- msgid "Edit:"
872
- msgstr "Szerkesztés:"
873
-
874
- #: public/admin/box_event_contact.php:6
875
- msgid "Organizer contact info"
876
- msgstr "A szervező elérhetőségei"
877
-
878
- #: public/admin/box_event_contact.php:17
879
- msgid "Contact name:"
880
- msgstr "A szervező neve:"
881
-
882
- #: lib/theme/loader.php:325
883
- msgid "We couldn't find a suitable loader for filename with extension '%s'"
884
- msgstr "We couldn't find a suitable loader for filename with extension '%s'"
885
-
886
- #: lib/theme/loader.php:631
887
- msgid "Your calendar theme has been switched to Vortex due to a rendering problem. For more information, please enable debug mode by adding this line to your WordPress <code>wp-config.php</code> file:<pre>define( 'AI1EC_DEBUG', true );</pre>"
888
- msgstr ""
889
-
890
- #: lib/theme/search.php:253
891
- msgid "Unable to move your old core themes from <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> because your <code>wp-content</code> folder is not writable. Please manually remove your old core themes from <code>wp-content/themes-ai1ec</code>."
892
- msgstr "Nem tudtuk törölni a régi témát a <code>wp-content/themes-ai1ec</code> to <code>wp-content/themes-ai1ec-obsolete</code> -ről, mert a <code>wp-content</code> könyvtár nem szerkeszthető. Kérlek manuálisan töröld a résgi témát a következő helyről: <code>wp-content/themes-ai1ec</code>."
893
-
894
- #: lib/theme/search.php:264
895
- msgid "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
896
- msgstr "Failed to move your old core themes from <code>wp-content/themes-ai1ec/%s</code> to <code>wp-content/themes-ai1ec-obsolete/%s</code>. Please manually remove your old core themes from <code>wp-content/themes-ai1ec/%s</code>."
897
-
898
- #: lib/twig/environment.php:115
899
- msgid "The calendar is temporarily disabled due to a rendering error. Please <a href=\"javascript:location.reload();\">reload the page</a>."
900
- msgstr ""
901
-
902
- #: public/admin/agenda-widget-form.php:2 public/admin/box_event_cost.php:92
903
- msgid "Title:"
904
- msgstr "Cím:"
905
-
906
- #: public/admin/agenda-widget-form.php:12
907
- msgid "Number of events to show:"
908
- msgstr "Események számát mutatja:"
909
-
910
- #: public/admin/agenda-widget-form.php:21
911
- msgid "Number of days to show:"
912
- msgstr "Hány napot mutasson a naptár:"
913
-
914
- #: public/admin/agenda-widget-form.php:26
915
- msgid "Limit to:"
916
- msgstr "Korlátozva:"
917
-
918
- #: public/admin/agenda-widget-form.php:30
919
- msgid "Events with these <strong>Categories</strong>"
920
- msgstr "Események ezekkel a <strong>Kategóriákkal</strong>"
921
-
922
- #: public/admin/agenda-widget-form.php:39
923
- msgid "No categories found."
924
- msgstr "Nem találtunk ilyen Kategóriát."
925
-
926
- #: public/admin/agenda-widget-form.php:46
927
- msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
928
- msgstr "<strong>Vagy</strong> az ilyen események <strong>Címkék</strong>"
929
-
930
- #: public/admin/agenda-widget-form.php:55
931
- msgid "No tags found."
932
- msgstr "Nem találtunk ilyen Címkét."
933
-
934
- #: public/admin/agenda-widget-form.php:62
935
- msgid "Show <strong>View Calendar</strong> button"
936
- msgstr "Mutasd a <strong>Mutasd a naptárat!</strong> gombot!"
937
-
938
- #: public/admin/agenda-widget-form.php:65
939
- msgid "Show <strong>Subscribe</strong> buttons"
940
- msgstr "Mutasd a <strong>Feliratkozás</strong> gombot!"
941
-
942
- #: public/admin/agenda-widget-form.php:68
943
- msgid "Hide this widget on calendar page"
944
- msgstr "Rejtsd el ezt a widget-et a Naptár oldalon!"
945
-
946
- #: public/admin/box_ask_customer_review.php:5
947
- msgid "Enjoying All-in-One Event Calendar?"
948
- msgstr ""
949
-
950
- #: public/admin/box_ask_customer_review.php:13
951
- msgid "Not really"
952
- msgstr ""
953
-
954
- #: public/admin/box_ask_customer_review.php:20
955
- msgid "Yes!"
956
- msgstr ""
957
-
958
- #: public/admin/box_ask_customer_review.php:33
959
- msgid "How about a rating on the Wordpress?"
960
- msgstr ""
961
-
962
- #: lib/recurrence/rule.php:397
963
- msgid "Every %d weeks"
964
- msgstr "Minden %d-ik héten"
965
-
966
- #: lib/recurrence/rule.php:406 public/admin/box_repeat.php:26
967
- msgid "Monthly"
968
- msgstr "Havonta"
969
-
970
- #: lib/recurrence/rule.php:409
971
- msgid "Every other month"
972
- msgstr "Minden második hónapban"
973
-
974
- #: lib/recurrence/rule.php:412
975
- msgid "Every %d months"
976
- msgstr "Minden %d-ik hónapban"
977
-
978
- #: lib/recurrence/rule.php:421 public/admin/box_repeat.php:31
979
- msgid "Yearly"
980
- msgstr "Évente"
981
-
982
- #: lib/recurrence/rule.php:424
983
- msgid "Every other year"
984
- msgstr "Minden második évben"
985
-
986
- #: lib/recurrence/rule.php:427
987
- msgid "Every %d years"
988
- msgstr "Minden %d évben"
989
-
990
- #: lib/recurrence/rule.php:465
991
- msgid "until %s"
992
- msgstr "-ig %s"
993
-
994
- #: lib/recurrence/rule.php:475
995
- msgid "for %d occurrences"
996
- msgstr "az %d előfordulását"
997
-
998
- #: lib/recurrence/rule.php:479
999
- msgid "forever"
1000
- msgstr "örökké"
1001
-
1002
- #: lib/robots/helper.php:71
1003
- msgid "<strong>ERROR:</strong> There was an error connecting to the server, Please verify the settings are correct."
1004
- msgstr "<strong>HIBA:</strong> Hiba történt a szerverhez való csatlakozás során. Kérlek igazold, hogy érvényesek a beállítások."
1005
-
1006
- #: lib/robots/helper.php:105
1007
- msgid "<strong>ERROR:</strong> There was an error storing <strong>robots.txt</strong> to the server, the file could not be written."
1008
- msgstr "<strong>HIBA:</strong> Habi történt a <strong>robots.txt</strong> szerverre mentése közben. A file-t nem mentettük."
1009
-
1010
- #: lib/theme/list.php:152
1011
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> or <a href=\"%2$s\">install</a> more themes."
1012
- msgstr "Csak egy téma van engedélyezve ezen az oldalon. Látogassa meg a Hálózati Adminisztrációt és <a href=\"%1$s\">engedélyezzen</a> vagy <a href=\"%2$s\">telepítsen</a> fel több témát."
1013
-
1014
- #: lib/theme/list.php:164
1015
- msgid "You only have one theme enabled for this site right now. Visit the Network Admin to <a href=\"%1$s\">enable</a> more themes."
1016
- msgstr "Csak egy téma van engedélyezve ezen az oldalon. Látogassa meg a Hálózati Adminisztrációt és <a href=\"%1$s\">engedélyezzen</a> még több témát."
1017
-
1018
- #: lib/theme/list.php:179
1019
- msgid "You only have one theme installed right now. You can choose from many free themes in the Timely Theme Directory at any time: just click on the <a href=\"%s\">Install Themes</a> tab above."
1020
- msgstr "Csak egy téma került telepítésre. További ingyenes témákat letölthetsz a <a href=\"%s\">Install Themes</a> részen."
1021
-
1022
- #: lib/theme/list.php:190
1023
- msgid "Only the active theme is available to you. Contact the <em>%s</em> administrator to add more themes."
1024
- msgstr "Csak a jelenlegi téma érhető el számodra. Üzenj a <em>%s</em> adminisztrátonak, hogy adjon több témát."
1025
-
1026
- #: lib/theme/list.php:257
1027
- msgid "Activate &#8220;%s&#8221;"
1028
- msgstr "&#8220;%s&#8221; bekapcsolása"
1029
-
1030
- #: lib/theme/list.php:264
1031
- msgid "Activate"
1032
- msgstr "Bekapcsol"
1033
-
1034
- #. translators: 1: theme title, 2: theme version, 3: theme author
1035
- #: lib/theme/list.php:281 public/admin/themes.php:25
1036
- msgid "%1$s %2$s by %3$s"
1037
- msgstr "%1$s %2$s szerző: %3$s"
1038
-
1039
- #. translators: 1: theme title, 2: template dir, 3: stylesheet_dir, 4: theme
1040
- #. title, 5: parent_theme
1041
- #: lib/theme/list.php:293
1042
- msgid "The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes."
1043
- msgstr "A sablon fájlok a <code>%2$s</code> mappában találhatóak. A stíluslap fájlok a <code>%3$s</code> mappában találhatóak. <strong>%4$s</strong> sablonokat használ a <strong>%5$s</strong>. A sablonok változásai hatással lesznek minden témára."
1044
-
1045
- #: lib/theme/list.php:308
1046
- msgid "All of this theme&#8217;s files are located in <code>%2$s</code>."
1047
- msgstr "Az összes téma fájljai itt találhatóak: <code>%2$s</code>."
1048
-
1049
- #: lib/post/custom-type.php:36
1050
- msgid "Parent Event"
1051
- msgstr "Szülő Esemény"
1052
-
1053
- #: lib/post/custom-type.php:55
1054
- msgid "event"
1055
- msgstr "event"
1056
-
1057
- #: lib/post/custom-type.php:85
1058
- msgctxt "Event categories taxonomy"
1059
- msgid "Categories"
1060
- msgstr ""
1061
-
1062
- #: lib/post/custom-type.php:86
1063
- msgctxt "Event categories taxonomy (singular)"
1064
- msgid "Category"
1065
- msgstr ""
1066
-
1067
- #: lib/post/custom-type.php:87
1068
- msgctxt "Event categories menu item"
1069
- msgid "Organize"
1070
- msgstr ""
1071
-
1072
- #: lib/post/custom-type.php:94
1073
- msgctxt "Event tags taxonomy"
1074
- msgid "Tags"
1075
- msgstr ""
1076
-
1077
- #: lib/post/custom-type.php:95
1078
- msgctxt "Event tags taxonomy (singular)"
1079
- msgid "Tag"
1080
- msgstr ""
1081
-
1082
- #: lib/post/custom-type.php:102
1083
- msgctxt "Event feeds taxonomy"
1084
- msgid "Event Feeds"
1085
- msgstr "Esemény hírcsatornák"
1086
-
1087
- #: lib/post/custom-type.php:103
1088
- msgctxt "Event feed taxonomy (singular)"
1089
- msgid "Event Feed"
1090
- msgstr "Esemény hírcsatorna"
1091
-
1092
- #: lib/post/custom-type.php:285
1093
- msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
1094
- msgstr "Minden esemény <span class=\"update-plugins count-%d\" title=\"%d Közelgő események\"><span class=\"update-count\">%d</span></span>"
1095
-
1096
- #: lib/post/custom-type.php:296
1097
- msgid "All Events"
1098
- msgstr "Minden esemény"
1099
-
1100
- #: lib/recurrence/rule.php:243 lib/recurrence/rule.php:252
1101
- #: lib/recurrence/rule.php:260
1102
- msgctxt "Recurrence editor - weekly tab"
1103
- msgid "on"
1104
- msgstr "Ebben a"
1105
-
1106
- #: lib/recurrence/rule.php:248 lib/recurrence/rule.php:277
1107
- #: lib/recurrence/rule.php:326
1108
- msgid "and"
1109
- msgstr "és"
1110
-
1111
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1112
- #: lib/recurrence/rule.php:286 lib/recurrence/rule.php:308
1113
- msgctxt "Recurrence editor - monthly tab"
1114
- msgid "on"
1115
- msgstr "Ebben a"
1116
-
1117
- #: lib/recurrence/rule.php:273 lib/recurrence/rule.php:280
1118
- #: lib/recurrence/rule.php:286
1119
- msgid "of the month"
1120
- msgstr "A hónap"
1121
-
1122
- #: lib/recurrence/rule.php:321 lib/recurrence/rule.php:329
1123
- #: lib/recurrence/rule.php:336
1124
- msgctxt "Recurrence editor - yearly tab"
1125
- msgid "on"
1126
- msgstr "Ebben a"
1127
-
1128
- #: lib/recurrence/rule.php:376 public/admin/box_repeat.php:16
1129
- #: public/admin/cron_freq.php:9
1130
- msgid "Daily"
1131
- msgstr "Naponta"
1132
-
1133
- #: lib/recurrence/rule.php:379
1134
- msgid "Every other day"
1135
- msgstr "Minden másnap"
1136
-
1137
- #: lib/recurrence/rule.php:382
1138
- msgid "Every %d days"
1139
- msgstr "%d naponta"
1140
-
1141
- #: lib/recurrence/rule.php:391 public/admin/box_repeat.php:21
1142
- msgid "Weekly"
1143
- msgstr "Hetente"
1144
-
1145
- #: lib/recurrence/rule.php:394
1146
- msgid "Every other week"
1147
- msgstr "Minden második héten"
1148
-
1149
- #: lib/less/variable/font.php:64
1150
- msgid "Custom..."
1151
- msgstr "Egyéni..."
1152
-
1153
- #: lib/less/variable/font.php:112
1154
- msgid "Enter custom font(s)"
1155
- msgstr "Egyéni betűtípus(ok) megadása"
1156
-
1157
- #: lib/less/variable/size.php:26
1158
- msgid "Length"
1159
- msgstr "Hossza"
1160
-
1161
- #: lib/notification/admin.php:180 public/admin/box_profile_timezone.php:2
1162
- msgid "All-in-One Event Calendar"
1163
- msgstr "All-in-One Event Calendar"
1164
-
1165
- #: lib/notification/admin.php:182
1166
- msgid "Got it – dismiss this"
1167
- msgstr ""
1168
-
1169
- #: lib/post/custom-type.php:26
1170
- msgctxt "Custom post type name"
1171
- msgid "Events"
1172
- msgstr "Események"
1173
-
1174
- #: lib/post/custom-type.php:27
1175
- msgctxt "Custom post type name (singular)"
1176
- msgid "Event"
1177
- msgstr "Esemény"
1178
-
1179
- #: lib/post/custom-type.php:28
1180
- msgid "Add New"
1181
- msgstr "Új esemény"
1182
-
1183
- #: lib/post/custom-type.php:29
1184
- msgid "Add New Event"
1185
- msgstr "Új esemény hozzáadása"
1186
-
1187
- #: lib/post/custom-type.php:30
1188
- msgid "Edit Event"
1189
- msgstr "Esemény szerkesztése"
1190
-
1191
- #: lib/post/custom-type.php:31
1192
- msgid "New Event"
1193
- msgstr "Új esemény"
1194
-
1195
- #: lib/post/custom-type.php:32
1196
- msgid "View Event"
1197
- msgstr "Esemény megtekintése"
1198
-
1199
- #: lib/post/custom-type.php:33
1200
- msgid "Search Events"
1201
- msgstr "Keresés az események között"
1202
-
1203
- #: lib/post/custom-type.php:34
1204
- msgid "No Events found"
1205
- msgstr "Nincs találat"
1206
-
1207
- #: lib/post/custom-type.php:35
1208
- msgid "No Events found in Trash"
1209
- msgstr "Nincs találat a Kukában"
1210
-
1211
- #: lib/html/element/setting/html.php:62
1212
- msgid "Filter by post ID:"
1213
- msgstr "Bejegyzés ID szerinti szűrés:"
1214
-
1215
- #: lib/html/element/setting/html.php:63
1216
- msgid "Filter by post IDs (separate IDs by comma):"
1217
- msgstr "Bejegyzés ID-k szerinti szűrés (vesszővel válaszd el az ID-ket):"
1218
-
1219
- #: lib/html/element/setting/html.php:64
1220
- msgid "Limit number of events per page:"
1221
- msgstr "Az egy oldalon látható események maximális száma:"
1222
-
1223
- #: lib/html/element/setting/html.php:65
1224
- msgid "Warning:"
1225
- msgstr "Figyelmeztetés:"
1226
-
1227
- #: lib/html/element/setting/html.php:66
1228
- msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
1229
- msgstr "Jelenleg nem támogatott beágyazni több naptárt ugyanazon az oldalon. Ne próbálkozzunk beágyazni naptárt rövidkód segítségével oldalba, amely már megjelenít naptárt."
1230
-
1231
- #: lib/import-export/ics.php:831
1232
- msgid "Tickets: "
1233
- msgstr ""
1234
-
1235
- #: lib/html/element/setting/html.php:41
1236
- msgid "Day view:"
1237
- msgstr "Napi nézet:"
1238
-
1239
- #: lib/html/element/setting/html.php:42
1240
- msgid "Agenda view:"
1241
- msgstr "Napirend nézet:"
1242
-
1243
- #: lib/html/element/setting/html.php:43
1244
- msgid "Some Other view:"
1245
- msgstr "Másfajta nézet:"
1246
-
1247
- #: lib/html/element/setting/html.php:44
1248
- msgid "Default view as per settings:"
1249
- msgstr "Beállítások szerinti alapértelmezett nézet:"
1250
-
1251
- #: lib/html/element/setting/html.php:45
1252
- msgid "General form:"
1253
- msgstr "Általános formátum:"
1254
-
1255
- #: lib/html/element/setting/html.php:46
1256
- msgid "Optional."
1257
- msgstr "Választható"
1258
-
1259
- #: lib/html/element/setting/html.php:47
1260
- msgid "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1261
- msgstr "Add options to display a filtered calender. (You can find out category and tag IDs by inspecting the URL of your filtered calendar page.)"
1262
-
1263
- #: lib/html/element/setting/html.php:48
1264
- msgid "Filter by event category name/slug:"
1265
- msgstr "Esemény kategória/ slug szerinti szűrés:"
1266
-
1267
- #: lib/html/element/setting/html.php:49
1268
- msgid "Holidays"
1269
- msgstr "Ünnepnapok"
1270
-
1271
- #: lib/html/element/setting/html.php:50
1272
- msgid "Lunar Cycles"
1273
- msgstr "Hold ciklusok"
1274
-
1275
- #: lib/html/element/setting/html.php:51
1276
- msgid "zodiac-date-ranges"
1277
- msgstr "csillagjegy dátumalapú tartományában"
1278
-
1279
- #: lib/html/element/setting/html.php:52
1280
- msgid "Filter by event category names/slugs (separate names by comma):"
1281
- msgstr "Esemény kategória név/ slug szerinti szűrés (a neveket vesszővel válaszd el):"
1282
-
1283
- #: lib/html/element/setting/html.php:53
1284
- msgid "Filter by event category ID:"
1285
- msgstr "Esemény kategória ID szerinti szűrés:"
1286
-
1287
- #: lib/html/element/setting/html.php:54
1288
- msgid "Filter by event category IDs (separate IDs by comma):"
1289
- msgstr "Esemény kategória ID-k szerinti szűrés (az ID-ket vesszővel válaszd el):"
1290
-
1291
- #: lib/html/element/setting/html.php:55
1292
- msgid "Filter by event tag name/slug:"
1293
- msgstr "Esemény címke/ slug szerinti szűrés:"
1294
-
1295
- #: lib/html/element/setting/html.php:56
1296
- msgid "tips-and-tricks"
1297
- msgstr "Tippek és trükkök"
1298
-
1299
- #: lib/html/element/setting/html.php:57
1300
- msgid "creative writing"
1301
- msgstr "kreatív írás"
1302
-
1303
- #: lib/html/element/setting/html.php:58
1304
- msgid "performing arts"
1305
- msgstr "előadóművészet"
1306
-
1307
- #: lib/html/element/setting/html.php:59
1308
- msgid "Filter by event tag names/slugs (separate names by comma):"
1309
- msgstr "Esemény címke nevek/ slug-ok szerinti szűrés (vesszővel válaszd el a neveket):"
1310
-
1311
- #: lib/html/element/setting/html.php:60
1312
- msgid "Filter by event tag ID:"
1313
- msgstr "Esemény címke ID szerinti szűrés:"
1314
-
1315
- #: lib/html/element/setting/html.php:61
1316
- msgid "Filter by event tag IDs (separate IDs by comma):"
1317
- msgstr "Esemény címke ID-k szerinti szűrés (vesszővel válaszd el az ID-ket):"
1318
-
1319
- #: lib/exception/handler.php:395
1320
- msgid "All-in-One Event Calendar has been disabled due to an error:"
1321
- msgstr ""
1322
-
1323
- #: lib/exception/handler.php:404
1324
- msgid "Try reactivating plugin"
1325
- msgstr ""
1326
-
1327
- #: lib/exception/handler.php:576
1328
- msgid "Toggle error details"
1329
- msgstr ""
1330
-
1331
- #: lib/exception/handler.php:577
1332
- msgid "Error Details:"
1333
- msgstr ""
1334
-
1335
- #: lib/factory/html.php:133
1336
- msgid "Choose a date using calendar"
1337
- msgstr "Válassz egy dátumot a naptár használatával"
1338
-
1339
- #: lib/factory/html.php:278
1340
- msgid "Tags (optional)"
1341
- msgstr "Címkék (választható)"
1342
-
1343
- #: lib/html/element/setting/cache.php:38
1344
- msgid "Check again"
1345
- msgstr "Újraellenőrzés"
1346
-
1347
- #: lib/html/element/setting/cache.php:39
1348
- msgid "Templates cache is not writable"
1349
- msgstr "Sablonok gyorsítótára nem írható."
1350
-
1351
- #: lib/html/element/setting/cache.php:40
1352
- msgid "Templates cache is writable"
1353
- msgstr "Sablonok gyorsítótára írható."
1354
-
1355
- #: lib/html/element/setting/cache.php:41
1356
- msgid "Checking..."
1357
- msgstr "Ellenőrzés..."
1358
-
1359
- #: lib/html/element/setting/cache.php:42
1360
- msgid "Performance Report"
1361
- msgstr "Teljesítmény jelentés"
1362
-
1363
- #: lib/html/element/setting/calendar-page-selector.php:70
1364
- msgid "View"
1365
- msgstr "megtekintés"
1366
-
1367
- #: lib/html/element/setting/calendar-page-selector.php:114
1368
- msgid "- Auto-Create New Page -"
1369
- msgstr "- Auto-Új oldal létrehozása -"
1370
-
1371
- #: lib/html/element/setting/enabled-views.php:22
1372
- msgid "Enabled"
1373
- msgstr "Engedélyezve"
1374
-
1375
- #: lib/html/element/setting/enabled-views.php:23
1376
- msgid "Default"
1377
- msgstr "Véletlenszerű"
1378
-
1379
- #: lib/html/element/setting/enabled-views.php:24
1380
- msgid "Desktop"
1381
- msgstr "Desktop"
1382
-
1383
- #: lib/html/element/setting/enabled-views.php:25
1384
- msgid "Mobile"
1385
- msgstr "Mobil"
1386
-
1387
- #: lib/html/element/setting/html.php:37
1388
- msgid "Embed the calendar using a shortcode"
1389
- msgstr "A naptár beágyazása shortcode segítségével"
1390
-
1391
- #: lib/html/element/setting/html.php:38
1392
- msgid "Insert one of these shortcodes into your page body to embed the calendar into any arbitrary WordPress Page:"
1393
- msgstr "A naptár bármilyen Wordpress alapú weboldalba történő beágyazásához használja a következő shortcode-ok egyikét:"
1394
-
1395
- #: lib/html/element/setting/html.php:39
1396
- msgid "Month view:"
1397
- msgstr "Hónap nézet:"
1398
-
1399
- #: lib/html/element/setting/html.php:40
1400
- msgid "Week view:"
1401
- msgstr "Heti nézet:"
1402
-
1403
- #: lib/css/frontend.php:239
1404
- msgid "CSS compilation failed because you don't have enough free memory (a minimum of %s is needed). Your calendar will not render or function properly without CSS. Please read <a href=\"http://time.ly/document/user-guide/getting-started/pre-sale-questions/\">this article</a> to learn how to increase your PHP memory limit."
1405
- msgstr ""
1406
-
1407
- #: lib/css/frontend.php:266
1408
- msgid "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1409
- msgstr "The LESS file compiled correctly but there was an error while saving the generated CSS to persistence."
1410
-
1411
- #: lib/css/frontend.php:272
1412
- msgid "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1413
- msgstr "<p><strong>There was an error while compiling CSS.</strong> The message returned was: <em>%s</em></p>"
1414
-
1415
- #: lib/css/frontend.php:300
1416
- msgid "Theme options were successfully reset to their default values. <a href='%s'>Visit site</a>"
1417
- msgstr "Sablon beállítások sikeresen lettek visszaállítva az alapértelmezett értékükre. <a href='%s'>Oldal megtekintése</a>"
1418
-
1419
- #: lib/css/frontend.php:307
1420
- msgid "Theme options were updated successfully. <a href='%s'>Visit site</a>"
1421
- msgstr "Sablon beállítások sikeresen frissültek. <a href='%s'>Oldal megtekintése</a>"
1422
-
1423
- #: lib/css/frontend.php:343
1424
- msgid "Your CSS is being compiled on every request, which causes your calendar to perform slowly. The following error occurred: %s"
1425
- msgstr "A CSS minden alkalommal lefut, emiatt a naptár lassan működik. A következő hiba lépett fel: %s"
1426
-
1427
- #: lib/database/applicator.php:182
1428
- msgid "Date columns in table %s have different types."
1429
- msgstr "A %s táblázatban a dátum oszlopok különböző típusúak."
1430
-
1431
- #: lib/database/exception/database.php:19
1432
- msgid "Database update has failed. Please make sure, that database user, defined in <em>wp-config.php</em> has permissions, to make changes (<strong>ALTER TABLE</strong>) to the database."
1433
- msgstr "Adatbázis frissítés nem sikerült. Győződjön meg róla, hogy az adatbázis felhasználó, definiálva van a <em> wp-config.php </em> fájlban és rendelkezik engedélyekkel, hogy a (<strong>ALTER TABLE</strong>) adatbázisban változtatásokat hajtson végre."
1434
-
1435
- #: lib/database/exception/database.php:23
1436
- msgid "Error encountered: %s"
1437
- msgstr "Következő hiba történt: %s"
1438
-
1439
- #: lib/date/system.php:202
1440
- msgid "GMT%+d:%02d"
1441
- msgstr "GMT%+d:%02d"
1442
-
1443
- #: lib/date/timezone.php:362
1444
- msgid "Please select site timezone in %s <em>Timezone</em> dropdown menu."
1445
- msgstr "Válassz időzónát a %s <em>Timezone</em> legördülő menüben."
1446
-
1447
- #: lib/date/timezone.php:397
1448
- msgid "Timezone \"UTC%+d\" is not recognized. Please %suse valid%s timezone name, until then events will be created in UTC timezone."
1449
- msgstr "\"UTC%+d\" időzónát a rendszer nem ismeri fel. Kérjük %suse használjon érvényes%s időzóna nevet, addig az események UTC időzóna szerint kerülnek rögzítésre."
1450
-
1451
- #: lib/date/timezone.php:421
1452
- msgid "Selected timezone \"UTC%+d\" will be treated as %s."
1453
- msgstr "A kiválasztott \"UTC%+d\" időzóna %s -ként lesz kezelve."
1454
-
1455
- #: lib/date/timezone.php:490
1456
- msgid "Manual Offset"
1457
- msgstr "Kézi beállítás"
1458
-
1459
- #: lib/date/timezone.php:493
1460
- msgid "Choose your timezone"
1461
- msgstr "Válassz időzónát:"
1462
-
1463
- #: lib/environment/check.php:55
1464
- msgid "Select an option in the <strong>Calendar page</strong> dropdown list."
1465
- msgstr "Válasszon ki egy opciót a <strong>Naptár</strong> oldalon a legördülő listából."
1466
-
1467
- #: lib/environment/check.php:68
1468
- msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now &raquo;</a>"
1469
- msgstr "A bővítmény telepítve van, de nincs konfigurálva. <a href=\"%s\">Kattintson ide, hogy konfigurálhassa &raquo;</a>"
1470
-
1471
- #: lib/environment/check.php:78
1472
- msgid "The plugin is installed, but has not been configured. Please log in as an Administrator to set it up."
1473
- msgstr "A bővítmény telepítve van, de nincs konfigurálva. Kérjük, jelentkezzen be, hogy beállíthassa."
1474
-
1475
- #: lib/environment/check.php:196
1476
- msgid "The add-on <strong>%s</strong> must be updated to at least version %s to maintain compatibility with the core calendar."
1477
- msgstr ""
1478
-
1479
- #: lib/environment/check.php:197
1480
- msgid "If you do not see update notices below, ensure you have properly <a href=\"https://time.ly/document/user-guide/getting-started/license-keys/\" target=\"_blank\">entered your licence keys</a>. Alternatively, navigate to <a href=\"https://time.ly/your-account/\">your account</a> to download the latest version of the add-on(s) and <a href=\"http://time.ly/document/user-guide/troubleshooting/perform-manual-upgrade/\">update manually</a>. Please <a href=\"https://time.ly/forums/\">post in the forum</a> if you have trouble. We are happy to help."
1481
- msgstr ""
1482
-
1483
- #: lib/exception/handler.php:176
1484
- msgid "The add-on \"%s\" has been disabled due to an error:"
1485
- msgstr ""
1486
-
1487
- #: lib/calendar-feed/ics.php:367
1488
- msgid "Do you want to keep the events imported from the calendar or remove them?"
1489
- msgstr "Meg akarod tartani a naptárból importált eseményeket vagy törlöd őket?"
1490
-
1491
- #: lib/calendar-feed/ics.php:373
1492
- msgid "Removing ICS Feed"
1493
- msgstr "ICS Hírcsatorna Eltávolítása"
1494
-
1495
- #: lib/calendar-feed/ics.php:376
1496
- msgid "Keep Events"
1497
- msgstr "Események megtartása"
1498
-
1499
- #: lib/calendar-feed/ics.php:379
1500
- msgid "Remove Events"
1501
- msgstr "Esemény eltávolítása"
1502
-
1503
- #: lib/calendar-feed/ics.php:519
1504
- msgid "Oh, submission was not accepted."
1505
- msgstr ""
1506
-
1507
- #: lib/calendar-feed/ics.php:699
1508
- msgid "Deleted %d events"
1509
- msgstr "%d események törlése"
1510
-
1511
- #: lib/calendar-feed/ics.php:735
1512
- msgid "Feed deleted"
1513
- msgstr "Feed törölve"
1514
-
1515
- #: lib/captcha/provider/nocaptcha.php:31
1516
- msgid "noCAPTCHA public key:"
1517
- msgstr ""
1518
-
1519
- #: lib/captcha/provider/nocaptcha.php:47
1520
- msgid "noCAPTCHA private key:"
1521
- msgstr ""
1522
-
1523
- #: lib/captcha/provider/nocaptcha.php:86 lib/captcha/provider/recaptcha.php:108
1524
- msgid "Please try verifying you are human again."
1525
- msgstr ""
1526
-
1527
- #: lib/captcha/provider/nocaptcha.php:92 lib/captcha/provider/recaptcha.php:93
1528
- msgid "There was an error reading the human verification data. Please try again."
1529
- msgstr ""
1530
-
1531
- #: lib/captcha/provider/recaptcha.php:32
1532
- msgid "reCAPTCHA public key:"
1533
- msgstr ""
1534
-
1535
- #: lib/captcha/provider/recaptcha.php:48
1536
- msgid "reCAPTCHA private key:"
1537
- msgstr ""
1538
-
1539
- #: lib/captcha/provider/recaptcha.php:66
1540
- msgid "Human verification"
1541
- msgstr ""
1542
-
1543
- #: lib/captcha/provider/recaptcha.php:67
1544
- msgid "Loading reCAPTCHA..."
1545
- msgstr ""
1546
-
1547
- #: lib/clone/renderer-helper.php:26 lib/clone/renderer-helper.php:27
1548
- #: lib/clone/renderer-helper.php:45
1549
- msgid "Clone"
1550
- msgstr "Klónozás"
1551
-
1552
- #: lib/clone/renderer-helper.php:44
1553
- msgid "Make new copy of event"
1554
- msgstr "Esemény másolása"
1555
-
1556
- #: lib/clone/renderer-helper.php:47
1557
- msgid "Copy to a new draft"
1558
- msgstr "Új tervezet másolása"
1559
-
1560
- #: lib/clone/renderer-helper.php:48
1561
- msgid "Clone to Draft"
1562
- msgstr "Tervezet klónozása"
1563
-
1564
- #: lib/command/clone.php:173
1565
- msgid "<p>The event <strong>%s</strong> was cloned succesfully. <a href=\"%s\">Edit cloned event</a></p>"
1566
- msgstr "<p>Az esemény <strong>%s</strong> klónozása sikeresen befejeződött. <a href=\"%s\">Klónozott esemény szerkesztése</a></p>"
1567
-
1568
- #: lib/compatibility/check.php:101
1569
- msgid "You have turned on Frontend Rendering and you are using a custom calendar theme. If your theme does not support Frontend Rendering, your calendar may not work correctly."
1570
- msgstr ""
1571
-
1572
- #: app/view/event/single.php:123
1573
- msgid "Tickets:"
1574
- msgstr ""
1575
-
1576
- #: app/view/event/single.php:124
1577
- msgid "Free"
1578
- msgstr "Ingyenes"
1579
-
1580
- #: app/view/event/single.php:127 app/view/event/ticket.php:38
1581
- msgid "Buy Tickets"
1582
- msgstr "Jegyek vásárlása"
1583
-
1584
- #: app/view/event/single.php:150
1585
- msgid "Edit this occurrence (%s)"
1586
- msgstr "Előfordulás szerkesztése (%s)"
1587
-
1588
- #: app/view/event/single.php:195
1589
- msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
1590
- msgstr ""
1591
-
1592
- #: app/view/event/single.php:206
1593
- msgid "View original"
1594
- msgstr ""
1595
-
1596
- #: app/view/event/taxonomy.php:113
1597
- msgid "Category image"
1598
- msgstr "Kategória képe"
1599
-
1600
- #: app/view/event/ticket.php:24
1601
- msgid "Register Now"
1602
- msgstr "Regisztráció most"
1603
-
1604
- #: app/view/event/ticket.php:82
1605
- msgid "Event website"
1606
- msgstr "Esemény weboldala"
1607
-
1608
- #: app/view/event/time.php:84 app/view/event/time.php:118
1609
- msgctxt "Event time separator"
1610
- msgid " @ "
1611
- msgstr " @ "
1612
-
1613
- #: app/view/event/time.php:100
1614
- msgctxt "Event start/end separator"
1615
- msgid " – "
1616
- msgstr " – "
1617
-
1618
- #: app/view/event/time.php:166
1619
- msgid ", and "
1620
- msgstr ", és"
1621
-
1622
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
1623
- msgid "Excludes: "
1624
- msgstr ""
1625
-
1626
- #: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
1627
- msgid "Repeats"
1628
- msgstr ""
1629
-
1630
- #: lib/calendar-feed/ics.php:38
1631
- msgid "ICS"
1632
- msgstr "ICS"
1633
-
1634
- #: lib/calendar-feed/ics.php:69
1635
- msgid "Another import process in progress. Please try again later."
1636
- msgstr "Egy másik importálási eljárás folyamatban van. Kérjük, próbálkozzon később."
1637
-
1638
- #: lib/calendar-feed/ics.php:174
1639
- msgid "A system error has prevented calendar data from being fetched. Something is preventing the plugin from functioning correctly. This message should provide a clue: %s"
1640
- msgstr "HIba történt a naptár betöltésekor. Valami miatt a plugin nem helyesen működik. Ez a bejegyzés segíthet: %s"
1641
-
1642
- #: lib/calendar-feed/ics.php:181
1643
- msgid "Calendar data could not be fetched. If your URL is valid and contains an iCalendar resource, this is likely the result of a temporary server error and time may resolve this issue"
1644
- msgstr "Hiba történt a naptár betöltésekor. Ha helyes az URL és tartalmazza az iCalendar forrást, akkor valószínűleg a hiba oka egy időleges szerver-leállás, ami idővel megoldódik."
1645
-
1646
- #: lib/calendar-feed/ics.php:195
1647
- msgid "Imported %s event"
1648
- msgid_plural "Imported %s events"
1649
- msgstr[0] "Importált %s esemény"
1650
- msgstr[1] "Importált %s események"
1651
-
1652
- #: lib/calendar-feed/ics.php:202 lib/calendar-feed/ics.php:707
1653
- msgid "Invalid ICS feed ID"
1654
- msgstr "Érvénytelen ICS hírcsatorna ID"
1655
-
1656
- #: lib/calendar-feed/ics.php:350
1657
- msgid "Categories (optional)"
1658
- msgstr "Kategóriák (opcionális)"
1659
-
1660
- #: app/view/event/content.php:33 app/view/event/single.php:119
1661
- msgid "When:"
1662
- msgstr "Mikor:"
1663
-
1664
- #: app/view/event/content.php:34 app/view/event/single.php:120
1665
- msgid "Where:"
1666
- msgstr "Hol:"
1667
-
1668
- #: app/view/event/content.php:125
1669
- msgid "Calendar"
1670
- msgstr ""
1671
-
1672
- #: app/view/event/content.php:126
1673
- msgid "View all events"
1674
- msgstr "Minden esemény megtekintése"
1675
-
1676
- #: app/view/event/location.php:96
1677
- msgid "Click to view map"
1678
- msgstr "Kattints a térkép megtekintéséhez!"
1679
-
1680
- #: app/view/event/location.php:97
1681
- msgid "View Full-Size Map"
1682
- msgstr "Teljes méretű térkép megtekintése"
1683
-
1684
- #: app/view/event/post.php:29
1685
- msgid "Event updated. <a href=\"%s\">View event</a>"
1686
- msgstr "Esemény frissítve. <a href=\"%s\">Esemény megtekintése</a>"
1687
-
1688
- #: app/view/event/post.php:32
1689
- msgid "Custom field updated."
1690
- msgstr "Egyéni mező frissült."
1691
-
1692
- #: app/view/event/post.php:33
1693
- msgid "Custom field deleted."
1694
- msgstr "Egyéni mező törölve."
1695
-
1696
- #: app/view/event/post.php:34
1697
- msgid "Event updated."
1698
- msgstr "Esemény frissítve."
1699
-
1700
- #. translators: %s: date and time of the revision
1701
- #: app/view/event/post.php:38
1702
- msgid "Event restored to revision from %s"
1703
- msgstr "Visszaállított esemény %s"
1704
-
1705
- #: app/view/event/post.php:43
1706
- msgid "Event published. <a href=\"%s\">View event</a>"
1707
- msgstr "Esemény közzétéve. <a href=\"%s\">Esemény megtekintése</a>"
1708
-
1709
- #: app/view/event/post.php:46
1710
- msgid "Event saved."
1711
- msgstr "Esemény mentve."
1712
-
1713
- #: app/view/event/post.php:48
1714
- msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1715
- msgstr "Elküldött esemény. <a target=\"_blank\" href=\"%s\">Esemény megtekintése</a>"
1716
-
1717
- #: app/view/event/post.php:52
1718
- msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1719
- msgstr "Esemény ekkora időzítve: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Esemény előnézete</a>"
1720
-
1721
- #. translators: Publish box date format, see http:php.net/date
1722
- #: app/view/event/post.php:54
1723
- msgid "M j, Y @ G:i"
1724
- msgstr "M j, Y @ G:i"
1725
-
1726
- #: app/view/event/post.php:58
1727
- msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1728
- msgstr "Esemény tervezet frissítve.<a target=\"_blank\" href=\"%s\">Esemény előnézete</a>"
1729
-
1730
- #: app/view/event/single.php:78
1731
- msgid "Event was created in the %s time zone"
1732
- msgstr "Az esemény a %s időzónában készült."
1733
-
1734
- #: app/view/event/single.php:114
1735
- msgid "Add to Calendar"
1736
- msgstr "Hozzáadás a naptárhoz"
1737
-
1738
- #: app/view/event/single.php:121 public/admin/box_event_cost.php:265
1739
- msgid "Cost:"
1740
- msgstr "Költség:"
1741
-
1742
- #: app/view/event/single.php:122
1743
- msgid "Contact:"
1744
- msgstr "Kontakt személy:"
1745
-
1746
- #: app/view/calendar/view/agenda.php:169
1747
- msgid "Categories:"
1748
- msgstr "Kategóriák:"
1749
-
1750
- #: app/view/calendar/view/agenda.php:170 lib/theme/list.php:320
1751
- #: public/admin/themes.php:29
1752
- msgid "Tags:"
1753
- msgstr "Címkék:"
1754
-
1755
- #: app/view/calendar/view/agenda.php:171 app/view/calendar/view/month.php:87
1756
- #: app/view/calendar/view/oneday.php:105 app/view/calendar/view/week.php:118
1757
- #: app/view/calendar/widget.php:374
1758
- msgid "@ %s"
1759
- msgstr "@ %s"
1760
-
1761
- #: app/view/calendar/view/oneday.php:79 app/view/calendar/view/week.php:73
1762
- msgid "g a"
1763
- msgstr "g a"
1764
-
1765
- #: app/view/calendar/view/oneday.php:102 app/view/calendar/view/week.php:115
1766
- msgid "Reveal full day"
1767
- msgstr "Mutasd az egész napot"
1768
-
1769
- #: app/view/calendar/view/oneday.php:103 app/view/calendar/view/week.php:116
1770
- msgid "All-day"
1771
- msgstr "Egésznapos"
1772
-
1773
- #: app/view/calendar/view/oneday.php:104 app/view/calendar/view/week.php:117
1774
- msgid "Now:"
1775
- msgstr "Most:"
1776
-
1777
- #: app/view/calendar/view/week.php:67
1778
- msgid "Week of %s"
1779
- msgstr "A hét %s. napjától"
1780
-
1781
- #: app/view/calendar/widget.php:36 app/view/calendar/widget.php:56
1782
- msgid "Upcoming Events"
1783
- msgstr "Közeledő események"
1784
-
1785
- #: app/view/calendar/widget.php:38
1786
- msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1787
- msgstr "All-in-One Event Calendar: A közelgő eseményeket Agenda nézetben listázza"
1788
-
1789
- #: app/view/calendar/widget.php:80
1790
- msgid "Choose how to limit the upcoming events"
1791
- msgstr "A közelgő események korlátozása"
1792
-
1793
- #: app/view/calendar/widget.php:86 lib/post/custom-type.php:37
1794
- msgid "Events"
1795
- msgstr "Események"
1796
-
1797
- #: app/view/calendar/widget.php:93
1798
- msgid "Days"
1799
- msgstr "Napok"
1800
-
1801
- #: app/view/calendar/widget.php:106
1802
- msgid "Number of events to show"
1803
- msgstr "Hány eseményt mutasson?"
1804
-
1805
- #: app/view/calendar/widget.php:115
1806
- msgid "Number of days to show"
1807
- msgstr "Hány napot mutasson?"
1808
-
1809
- #: app/view/calendar/widget.php:124
1810
- msgid "Show events filtered for the following tags/categories"
1811
- msgstr "A következő címkékre/ kategóriákra szűrt eseményeket mutassa:"
1812
-
1813
- #: app/view/calendar/widget.php:141
1814
- msgid "Show the subscribe button in the widget"
1815
- msgstr "Mutassa a feliratkozás gombot a widget-ben."
1816
-
1817
- #: app/view/calendar/widget.php:370
1818
- msgid "There are no upcoming events."
1819
- msgstr "Nincsenek közelgő események"
1820
-
1821
- #: app/view/calendar/widget.php:371 app/view/event/time.php:132
1822
- msgid "all-day"
1823
- msgstr "egész nap"
1824
-
1825
- #: app/view/calendar/widget.php:372
1826
- msgid "View Calendar"
1827
- msgstr "Nézd meg a naptárat"
1828
-
1829
- #: app/view/calendar/widget.php:375
1830
- msgid "Add"
1831
- msgstr "Adj hozzá"
1832
-
1833
- #: app/view/calendar/page.php:260
1834
- msgid "Subscribe to filtered calendar"
1835
- msgstr "Iratkozz fel egy leszűrt naptárra!"
1836
-
1837
- #: app/view/calendar/page.php:261
1838
- msgid "Subscribe"
1839
- msgstr "Feliratkozás"
1840
-
1841
- #: app/view/calendar/page.php:262 app/view/event/single.php:118
1842
- msgid "Get a Timely Calendar"
1843
- msgstr ""
1844
-
1845
- #: app/view/calendar/subscribe-button.php:22
1846
- msgid "Add to Timely Calendar"
1847
- msgstr "Add hozzá a Timely Calendar-hoz!"
1848
-
1849
- #: app/view/calendar/subscribe-button.php:23
1850
- msgid "Add to Google"
1851
- msgstr "Add a Google-hez!"
1852
-
1853
- #: app/view/calendar/subscribe-button.php:24
1854
- msgid "Add to Outlook"
1855
- msgstr "Add az Outlook-hoz!"
1856
-
1857
- #: app/view/calendar/subscribe-button.php:25
1858
- msgid "Add to Apple Calendar"
1859
- msgstr "Add hozzá egy Apple naptárhoz!"
1860
-
1861
- #: app/view/calendar/subscribe-button.php:26
1862
- msgid "Add to other calendar"
1863
- msgstr "Add hozzá egy másik naptárhoz!"
1864
-
1865
- #: app/view/calendar/subscribe-button.php:29
1866
- msgid "Copy this URL for your own Timely calendar or click to add to your rich-text calendar"
1867
- msgstr "Másold be ezt az URL-t a saját Timely naptárod megalkotásához, vagy kattintással add hozzá a saját rich-text naptárodat."
1868
-
1869
- #: app/view/calendar/subscribe-button.php:30
1870
- msgid "Subscribe to this calendar in your Google Calendar"
1871
- msgstr "Iratkozz fel erre a naptárra a Google Naptáraddal"
1872
-
1873
- #: app/view/calendar/subscribe-button.php:31
1874
- msgid "Subscribe to this calendar in MS Outlook"
1875
- msgstr "Iratkozz fel erre a naptárra a MS Outlook-kal"
1876
-
1877
- #: app/view/calendar/subscribe-button.php:32
1878
- msgid "Subscribe to this calendar in Apple Calendar/iCal"
1879
- msgstr "Iratkozz fel erre a naptárra az Apple Calendar/ iCal-lal"
1880
-
1881
- #: app/view/calendar/subscribe-button.php:33
1882
- msgid "Subscribe to this calendar in another plain-text calendar"
1883
- msgstr "Iratkozz fel erre a naptárra egy másik szövegalapú naptárból"
1884
-
1885
- #: app/view/calendar/taxonomy.php:97
1886
- msgid "Clear category filter"
1887
- msgstr "Töröld a kategória kiválasztást"
1888
-
1889
- #: app/view/calendar/taxonomy.php:98 app/view/event/single.php:125
1890
- #: lib/html/element/setting/tags-categories.php:47
1891
- msgid "Categories"
1892
- msgstr "Kategóriák"
1893
-
1894
- #: app/view/calendar/taxonomy.php:99
1895
- msgid "Clear tag filter"
1896
- msgstr "Töröld a cimke kiválasztást"
1897
-
1898
- #: app/view/calendar/taxonomy.php:100 app/view/event/single.php:126
1899
- #: lib/html/element/setting/tags-categories.php:39
1900
- msgid "Tags"
1901
- msgstr "Címkék"
1902
-
1903
- #: app/view/calendar/view/agenda.php:142
1904
- msgid "Collapse All"
1905
- msgstr "Összes bezárása"
1906
-
1907
- #: app/view/calendar/view/agenda.php:143
1908
- msgid "Expand All"
1909
- msgstr "Összes megnyitása"
1910
-
1911
- #: app/view/calendar/view/agenda.php:166
1912
- msgid "There are no upcoming events to display at this time."
1913
- msgstr "Jelenleg nincsenek közelgő események"
1914
-
1915
- #: app/view/calendar/view/agenda.php:168
1916
- msgid "Read more"
1917
- msgstr "Olvass tovább"
1918
-
1919
- #: app/view/admin/tickets.php:86
1920
- msgid "Sales"
1921
- msgstr ""
1922
-
1923
- #: app/view/admin/tickets.php:87
1924
- msgid "How do you want the tickets revenue to be sent to you?"
1925
- msgstr ""
1926
-
1927
- #: app/view/admin/tickets.php:88
1928
- msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
1929
- msgstr ""
1930
-
1931
- #: app/view/admin/tickets.php:91
1932
- msgid "Cheque"
1933
- msgstr ""
1934
-
1935
- #: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
1936
- msgid "Paypal"
1937
- msgstr "Paypal"
1938
-
1939
- #: app/view/admin/tickets.php:94
1940
- msgid "Save Changes"
1941
- msgstr ""
1942
-
1943
- #: app/view/admin/tickets.php:95
1944
- msgid "Date"
1945
- msgstr ""
1946
-
1947
- #: app/view/admin/tickets.php:96
1948
- msgid "Event"
1949
- msgstr ""
1950
-
1951
- #: app/view/admin/tickets.php:97
1952
- msgid "Purchaser"
1953
- msgstr ""
1954
-
1955
- #: app/view/admin/tickets.php:98 app/view/event/ticket.php:39
1956
- #: public/admin/box_event_cost.php:35
1957
- msgid "Tickets"
1958
- msgstr "Jegyek"
1959
-
1960
- #: app/view/admin/tickets.php:101
1961
- msgid "Total"
1962
- msgstr ""
1963
-
1964
- #: app/view/admin/tickets.php:102
1965
- msgid "Sign Out"
1966
- msgstr ""
1967
-
1968
- #: app/view/admin/widget-creator.php:24 app/view/admin/widget-creator.php:25
1969
- #: app/view/admin/widget-creator.php:47
1970
- msgid "Widget Creator"
1971
- msgstr "Widget készítő"
1972
-
1973
- #: app/view/admin/widget-creator.php:74
1974
- msgctxt "meta box"
1975
- msgid "Widget Creator"
1976
- msgstr "Widget készítő"
1977
-
1978
- #: app/view/admin/widget-creator.php:131
1979
- msgid "Use this tool to generate code snippets you can add to <strong>an external website</strong> to embed new calendars and widgets."
1980
- msgstr ""
1981
-
1982
- #: app/view/admin/widget-creator.php:132
1983
- msgid "<h4>Attention!</h4><p>These widgets are designed to be embedded in <strong>external sites only</strong> and may cause conflicts if used within the same WordPress site.</p>"
1984
- msgstr ""
1985
-
1986
- #: app/view/admin/widget-creator.php:134
1987
- msgid "<p>Use <a href=\"%s\"><strong>Appearance</strong> &gt; <strong>Widgets</strong></a> to add event widgets to your WordPress site as you would any other widget, or use <a href=\"%s\" target=\"_blank\">shortcodes</a> to embed the full calendar.</strong></p>"
1988
- msgstr ""
1989
-
1990
- #: app/view/admin/widget-creator.php:140
1991
- msgid "Paste this code onto your site:"
1992
- msgstr "Másold ezt a kódot az oldaldra:"
1993
-
1994
- #: app/view/admin/widget-creator.php:141
1995
- msgid "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1996
- msgstr "This code will update to reflect changes made to the settings. Changing settings will not affect previously embedded widgets."
1997
-
1998
- #: app/view/calendar/page.php:54
1999
- msgid "There was an error loading calendar. Please contact site administrator and inform him to configure calendar views."
2000
- msgstr "Volt egy hiba a naptár betöltésekor. Kérjük, lépjen kapcsolatba az adminisztrátorral, és tájékoztassa a hibáról, hogy újrakonfigurálhassa a beállításokat."
2001
-
2002
- #: app/view/calendar/page.php:74
2003
- msgid "Calendar was unable to initialize %s view and has reverted to Agenda view. Please check if you have installed the latest versions of calendar add-ons."
2004
- msgstr "A Calendar nem tudta betölteni a %s nézetet, ezért Agenda nézetre váltott. Ellenőrízd, hogy telepítetted-e a naptár kiegészítőinek a legfrissebb verzióját."
2005
-
2006
- #: app/view/admin/settings.php:193
2007
- msgid "Phone Number:"
2008
- msgstr ""
2009
-
2010
- #: app/view/admin/settings.php:194
2011
- msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
2012
- msgstr ""
2013
-
2014
- #: app/view/admin/settings.php:197
2015
- msgid "Sign Up"
2016
- msgstr ""
2017
-
2018
- #: app/view/admin/settings.php:198
2019
- msgid "Sign In"
2020
- msgstr ""
2021
-
2022
- #: app/view/admin/settings.php:212
2023
- msgid "Save Settings"
2024
- msgstr "Beállítások mentése"
2025
-
2026
- #: app/view/admin/settings.php:219
2027
- msgid "If the form below is not working please follow <a href=\"%s\">this link</a>."
2028
- msgstr "Ha nem működik a lenti form, katt ide: <a href=\"%s\">this link</a>."
2029
-
2030
- #: app/view/admin/theme-options.php:50 app/view/admin/theme-options.php:51
2031
- msgid "Theme Options"
2032
- msgstr "Téma lehetőségek"
2033
-
2034
- #: app/view/admin/theme-options.php:60 app/view/admin/theme-options.php:96
2035
- msgid "Calendar Theme Options"
2036
- msgstr "Naptár téma lehetőségek"
2037
-
2038
- #: app/view/admin/theme-options.php:79
2039
- msgctxt "meta box"
2040
- msgid "Calendar Theme Options"
2041
- msgstr "Naptár sablon beállítások"
2042
-
2043
- #: app/view/admin/theme-options.php:133
2044
- msgid "General"
2045
- msgstr "Általános"
2046
-
2047
- #: app/view/admin/theme-options.php:136
2048
- msgid "Tables"
2049
- msgstr "Táblázatok"
2050
-
2051
- #: app/view/admin/theme-options.php:139
2052
- msgid "Buttons"
2053
- msgstr "Gombok"
2054
-
2055
- #: app/view/admin/theme-options.php:142
2056
- msgid "Forms"
2057
- msgstr "Űrlapok"
2058
-
2059
- #: app/view/admin/theme-options.php:145
2060
- msgid "Calendar general"
2061
- msgstr "Általános naptár"
2062
-
2063
- #: app/view/admin/theme-options.php:148
2064
- msgid "Month/week/day view"
2065
- msgstr "Hónap/ hét/ nap nézet"
2066
-
2067
- #: app/view/admin/theme-options.php:151
2068
- msgid "Agenda view"
2069
- msgstr "Agenda nézet"
2070
-
2071
- #: app/view/admin/theme-options.php:169
2072
- msgid "Save Options"
2073
- msgstr "Opciók mentése"
2074
-
2075
- #: app/view/admin/theme-options.php:177
2076
- msgid "Reset to Defaults"
2077
- msgstr "Alapbeállítások visszaállítása"
2078
-
2079
- #: app/view/admin/theme-switching.php:31
2080
- msgid "All-in-One Event Calendar: Themes"
2081
- msgstr "All-in-One Event Calendar: Sablonok"
2082
-
2083
- #: app/view/admin/tickets.php:36
2084
- msgid "Ticketing"
2085
- msgstr ""
2086
-
2087
- #: app/view/admin/tickets.php:37
2088
- msgid "Ticketing<sup>beta</sup>"
2089
- msgstr ""
2090
-
2091
- #: app/view/admin/tickets.php:71 app/view/admin/tickets.php:82
2092
- msgid "Time.ly Ticketing<sup>beta</sup>"
2093
- msgstr ""
2094
-
2095
- #: app/view/admin/settings.php:98
2096
- msgctxt "meta box"
2097
- msgid "Timely"
2098
- msgstr "Timely"
2099
-
2100
- #: app/view/admin/settings.php:140
2101
- msgid "Viewing Events"
2102
- msgstr "Események megtekintése"
2103
-
2104
- #: app/view/admin/settings.php:143
2105
- msgid "Adding/Editing Events"
2106
- msgstr "Események hozzáadása/ szerkesztése"
2107
-
2108
- #: app/view/admin/settings.php:146
2109
- msgid "Advanced"
2110
- msgstr "Részletes"
2111
-
2112
- #: app/view/admin/settings.php:148
2113
- msgid "Advanced Settings"
2114
- msgstr "Részletes beállítások"
2115
-
2116
- #: app/view/admin/settings.php:149
2117
- msgid "Shortcodes"
2118
- msgstr "Shortcode-ok"
2119
-
2120
- #: app/view/admin/settings.php:150
2121
- msgid "Email Templates"
2122
- msgstr "E-mail templatek"
2123
-
2124
- #: app/view/admin/settings.php:151
2125
- msgid "External Services"
2126
- msgstr "Külső szolgáltatások"
2127
-
2128
- #: app/view/admin/settings.php:152
2129
- msgid "Cache Report"
2130
- msgstr "Cache Report"
2131
-
2132
- #: app/view/admin/settings.php:171
2133
- msgid "Sign Up for a <b>Timely Network</b> account. It's free."
2134
- msgstr ""
2135
-
2136
- #: app/view/admin/settings.php:182 app/view/admin/tickets.php:93
2137
- #: public/admin/box_ask_customer_review.php:112
2138
- #: public/admin/box_ask_customer_review.php:126
2139
- #: public/admin/box_ask_customer_review.php:140
2140
- #: public/admin/box_ask_customer_review.php:158
2141
- #: public/admin/box_event_cost.php:95 public/admin/box_event_cost.php:118
2142
- msgid "This field is required."
2143
- msgstr ""
2144
-
2145
- #: app/view/admin/settings.php:183 app/view/event/ticket.php:25
2146
- msgid "Register"
2147
- msgstr "Regisztráció"
2148
-
2149
- #: app/view/admin/settings.php:184
2150
- msgid "Sign in"
2151
- msgstr ""
2152
-
2153
- #: app/view/admin/settings.php:185
2154
- msgid "You are successfully signed in to <b>Timely Network</b>."
2155
- msgstr ""
2156
-
2157
- #: app/view/admin/settings.php:186
2158
- msgid "Sign out"
2159
- msgstr ""
2160
-
2161
- #: app/view/admin/settings.php:187
2162
- msgid "Hide form"
2163
- msgstr ""
2164
-
2165
- #: app/view/admin/settings.php:188
2166
- msgid "Show form"
2167
- msgstr ""
2168
-
2169
- #: app/view/admin/settings.php:189
2170
- msgid "Full Name:"
2171
- msgstr ""
2172
-
2173
- #: app/view/admin/settings.php:190
2174
- msgid "Email:"
2175
- msgstr ""
2176
-
2177
- #: app/view/admin/settings.php:191
2178
- msgid "Password:"
2179
- msgstr ""
2180
-
2181
- #: app/view/admin/settings.php:192
2182
- msgid "Confirm Password:"
2183
- msgstr ""
2184
-
2185
- #: app/view/admin/get-repeat-box.php:483
2186
- msgid "fourth"
2187
- msgstr "negyedik"
2188
-
2189
- #: app/view/admin/get-repeat-box.php:495
2190
- msgid "Sunday"
2191
- msgstr "Vasárnap"
2192
-
2193
- #: app/view/admin/get-repeat-box.php:496
2194
- msgid "Monday"
2195
- msgstr "Hétfő"
2196
-
2197
- #: app/view/admin/get-repeat-box.php:497
2198
- msgid "Tuesday"
2199
- msgstr "Kedd"
2200
-
2201
- #: app/view/admin/get-repeat-box.php:498
2202
- msgid "Wednesday"
2203
- msgstr "Szerda"
2204
-
2205
- #: app/view/admin/get-repeat-box.php:499
2206
- msgid "Thursday"
2207
- msgstr "Csütörtök"
2208
-
2209
- #: app/view/admin/get-repeat-box.php:500
2210
- msgid "Friday"
2211
- msgstr "Péntek"
2212
-
2213
- #: app/view/admin/get-repeat-box.php:501
2214
- msgid "Saturday"
2215
- msgstr "Szombat"
2216
-
2217
- #: app/view/admin/get-repeat-box.php:503
2218
- msgid "day"
2219
- msgstr "nap"
2220
-
2221
- #: app/view/admin/get-repeat-box.php:504
2222
- msgid "weekday"
2223
- msgstr "hétköznap"
2224
-
2225
- #: app/view/admin/get-repeat-box.php:505
2226
- msgid "weekend day"
2227
- msgstr "hétvége"
2228
-
2229
- #: app/view/admin/get-repeat-box.php:571
2230
- msgid "year(s)"
2231
- msgstr "év(ek)"
2232
-
2233
- #: app/view/admin/nav.php:22
2234
- msgid "<a href=\"%s\">Settings</a>"
2235
- msgstr "<a href=\"%s\">Settings</a>"
2236
-
2237
- #: app/view/admin/nav.php:28
2238
- msgid "<a href=\"%s\">Check for updates</a>"
2239
- msgstr ""
2240
-
2241
- #: app/view/admin/organize.php:100
2242
- msgid "Organize Events"
2243
- msgstr ""
2244
-
2245
- #: app/view/admin/settings.php:30
2246
- msgid "All-in-One Event Calendar: Settings"
2247
- msgstr "All-in-One Event Calendar: Beállítások"
2248
-
2249
- #: app/view/admin/settings.php:68 app/view/admin/settings.php:69
2250
- #: app/view/admin/tickets.php:85 lib/date/timezone.php:366
2251
- msgid "Settings"
2252
- msgstr "Beállítások"
2253
-
2254
- #: app/view/admin/settings.php:89
2255
- msgctxt "meta box"
2256
- msgid "General Settings"
2257
- msgstr "Általános Beállítások"
2258
-
2259
- #: app/view/admin/get-repeat-box.php:480
2260
- msgid "first"
2261
- msgstr "első"
2262
-
2263
- #: app/view/admin/get-repeat-box.php:481
2264
- msgid "second"
2265
- msgstr "második"
2266
-
2267
- #: app/view/admin/get-repeat-box.php:482
2268
- msgid "third"
2269
- msgstr "harmadik"
2270
-
2271
- #: app/view/admin/calendar-feeds.php:27 app/view/admin/calendar-feeds.php:28
2272
- msgid "Import Feeds"
2273
- msgstr ""
2274
-
2275
- #: app/view/admin/calendar-feeds.php:48
2276
- msgctxt "meta box"
2277
- msgid "Feed Subscriptions"
2278
- msgstr "Hírcsatorna Feliratkozások"
2279
-
2280
- #: app/view/admin/calendar-feeds.php:65
2281
- msgid "All-in-One Event Calendar: Import Feeds"
2282
- msgstr ""
2283
-
2284
- #: app/view/admin/event-category.php:30
2285
- msgid "Color"
2286
- msgstr "Szín"
2287
-
2288
- #: app/view/admin/event-category.php:32
2289
- msgid "Image"
2290
- msgstr "Kép"
2291
-
2292
- #: app/view/admin/event-category.php:155
2293
- msgid "Category Color"
2294
- msgstr "Kategória szín"
2295
-
2296
- #: app/view/admin/event-category.php:156
2297
- msgid "Events in this category will be identified by this color"
2298
- msgstr "Ebben a kategóriában ezzel a színnel jelöljük az eseményeket"
2299
-
2300
- #: app/view/admin/event-category.php:193 app/view/admin/event-category.php:225
2301
- msgid "Category Image"
2302
- msgstr "Kategória kép"
2303
-
2304
- #: app/view/admin/event-category.php:194 app/view/admin/event-category.php:226
2305
- msgid "Add Image"
2306
- msgstr "Adj hozzá képet"
2307
-
2308
- #: app/view/admin/event-category.php:195
2309
- msgid "Remove Image"
2310
- msgstr "Kép törlése"
2311
-
2312
- #: app/view/admin/event-category.php:196 app/view/admin/event-category.php:227
2313
- msgid "Assign an optional image to the category. Recommended size: square, minimum 400&times;400 pixels."
2314
- msgstr "Választható kép hozzárendelése egy kategóriához. Ajánlott méretek: négyzet alapú, minimum 400 × 400 képpont."
2315
-
2316
- #: app/view/admin/get-repeat-box.php:94
2317
- msgid "times"
2318
- msgstr "alkalommal"
2319
-
2320
- #: app/view/admin/get-repeat-box.php:164
2321
- msgid "Recurrence rule cannot be empty."
2322
- msgstr "Ismétlődési szabály nem lehet üres."
2323
-
2324
- #: app/view/admin/get-repeat-box.php:182
2325
- msgid "Recurrence rule was not provided."
2326
- msgstr "Ismétlődés szabály nem biztosított."
2327
-
2328
- #: app/view/admin/get-repeat-box.php:209
2329
- msgid "Never"
2330
- msgstr "Soha"
2331
-
2332
- #: app/view/admin/get-repeat-box.php:210
2333
- msgid "After"
2334
- msgstr "Után"
2335
-
2336
- #: app/view/admin/get-repeat-box.php:211 public/admin/box_repeat.php:93
2337
- msgid "On date"
2338
- msgstr "Azon a napon"
2339
-
2340
- #: app/view/admin/get-repeat-box.php:247
2341
- msgid "day(s)"
2342
- msgstr "nap(ok)"
2343
-
2344
- #: app/view/admin/get-repeat-box.php:330
2345
- msgid "week(s)"
2346
- msgstr "hét(ek)"
2347
-
2348
- #: app/view/admin/get-repeat-box.php:413 app/view/admin/get-repeat-box.php:485
2349
- #: lib/recurrence/rule.php:298
2350
- msgid "last"
2351
- msgstr "utolsó"
2352
-
2353
- #: app/view/admin/get-repeat-box.php:426
2354
- msgid "month(s)"
2355
- msgstr "Hónap(ok)"
2356
-
2357
- #: app/model/settings.php:929
2358
- msgid "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2359
- msgstr "<strong>Link CSS</strong> in <code>&lt;head&gt;</code> section when file cache is unavailable."
2360
-
2361
- #: app/model/settings.php:932
2362
- msgid "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2363
- msgstr "Use this option if file cache is unavailable and you would prefer to serve CSS as a link rather than have it output inline."
2364
-
2365
- #: app/model/settings.php:944
2366
- msgid "Current <strong>robots.txt</strong> on this site"
2367
- msgstr "Aktuális<strong>robots.txt</strong> fájl az oldalon"
2368
-
2369
- #: app/model/settings.php:948
2370
- msgid ""
2371
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2372
- "\t\t\t\t\t\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2373
- "\t\t\t\t\t\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2374
- "\t\t\t\t\t\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2375
- "\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2376
- msgstr ""
2377
- "The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or\n"
2378
- "→\t→\t→\t→\t→\t→\t<code><a href=\"http://en.wikipedia.org/wiki/Robots.txt\" target=\"_blank\">robots.txt</a></code>\n"
2379
- "→\t→\t→\t→\t→\t→\tprotocol, is a convention for cooperating web crawlers and other web robots\n"
2380
- "→\t→\t→\t→\t→\t→\tabout accessing all or part of a website that is otherwise publicly viewable.\n"
2381
- "→\t→\t→\t→\t→\t→\tYou can change it manually by editing <code>robots.txt</code> in your root WordPress directory."
2382
-
2383
- #: app/model/settings.php:965
2384
- msgid "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2385
- msgstr "<strong>Publicize, promote, and share my events</strong> marked as public on the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more &#187;</a>)"
2386
-
2387
- #: app/model/settings.php:988
2388
- msgid "Templates cache improves site performance"
2389
- msgstr "Sablonok gyorsítótára, javítja a webhely teljesítményét"
2390
-
2391
- #: app/model/settings.php:1001
2392
- msgid "Display events in <strong>calendar time zone</strong>"
2393
- msgstr ""
2394
-
2395
- #: app/model/settings.php:1004
2396
- msgid "If this box is checked events will appear in the calendar time zone with time zone information displayed on the event details page."
2397
- msgstr ""
2398
-
2399
- #: app/view/admin/add-new-event.php:26
2400
- msgid "Event Details"
2401
- msgstr "Esemény részletei"
2402
-
2403
- #: app/view/admin/add-new-event.php:423
2404
- msgid "Set banner image"
2405
- msgstr "Banner kép beállítása"
2406
-
2407
- #: app/view/admin/add-new-event.php:424
2408
- msgid "Remove banner image"
2409
- msgstr "Banner kép törlése"
2410
-
2411
- #: app/view/admin/add-ons.php:68
2412
- msgid "Add-ons for All In One Event Calendar"
2413
- msgstr "Kiegészítők az All In One Event Calendar-hoz"
2414
-
2415
- #: app/view/admin/add-ons.php:71
2416
- msgid "Browse All Extensions"
2417
- msgstr "Keresés minden kiegészítőben"
2418
-
2419
- #: app/view/admin/add-ons.php:74
2420
- msgid "These add-ons extend the functionality of the All-in-One Event Calendar."
2421
- msgstr "A kiegészítők növelik az All-in-One Event Calendar használhatóságát."
2422
-
2423
- #: app/view/admin/add-ons.php:77
2424
- msgid "There was an error retrieving the extensions list from the server. Please try again later."
2425
- msgstr "Hiba történt a Kiegészítők letöltésénél. Próbáld újra később."
2426
-
2427
- #: app/view/admin/all-events.php:16
2428
- msgid "Author"
2429
- msgstr "Szerző"
2430
-
2431
- #: app/view/admin/all-events.php:17
2432
- msgid "Post Date"
2433
- msgstr "Bejegyzés dátuma"
2434
-
2435
- #: app/view/admin/all-events.php:18
2436
- msgid "Event date/time"
2437
- msgstr "Esemény dátuma/ ideje"
2438
-
2439
- #: app/view/admin/all-events.php:22
2440
- msgid "Ticket Types"
2441
- msgstr ""
2442
-
2443
- #: app/view/admin/all-events.php:134
2444
- msgid "Show All "
2445
- msgstr "Mutasd mindet"
2446
-
2447
- #: app/view/admin/all-events.php:147
2448
- msgid "Show All Authors"
2449
- msgstr ""
2450
-
2451
- #: app/model/settings.php:746
2452
- msgid "Strict compatibility content filtering"
2453
- msgstr "Szigorú egyezőség tartalomszűrés"
2454
-
2455
- #: app/model/settings.php:758
2456
- msgid " <strong>Hide featured image</strong> from event details page"
2457
- msgstr "<strong>Kiemelt kép rejtése</strong> a rendezvény részletei oldalon"
2458
-
2459
- #: app/model/settings.php:761
2460
- msgid "Select this option if your theme already displays each post's featured image."
2461
- msgstr "Válassza ezt a beállítást, ha a sablon már megjeleníti az egyes bejegyzésekhez a kiemelt képeket."
2462
-
2463
- #: app/model/settings.php:772
2464
- msgid "Input dates in this format"
2465
- msgstr "Dátum bevitele ebben a formában:"
2466
-
2467
- #: app/model/settings.php:777
2468
- msgid "Default (d/m/yyyy)"
2469
- msgstr "Alapértelmezett (d/m/yyyy)"
2470
-
2471
- #: app/model/settings.php:781
2472
- msgid "US (m/d/yyyy)"
2473
- msgstr "US (h/n/éééé)"
2474
-
2475
- #: app/model/settings.php:785
2476
- msgid "ISO 8601 (yyyy-m-d)"
2477
- msgstr "ISO 8601 (éééé-h-n)"
2478
-
2479
- #: app/model/settings.php:789
2480
- msgid "Dotted (m.d.yyyy)"
2481
- msgstr "Pontozott (h.n.éééé)"
2482
-
2483
- #: app/model/settings.php:801
2484
- msgid " Use <strong>24h time</strong> in time pickers"
2485
- msgstr "Használja a <strong>24 órás</strong> idő megjelenítést"
2486
-
2487
- #: app/model/settings.php:812
2488
- msgid "<strong>Disable address autocomplete</strong> function"
2489
- msgstr "<strong>Automatikus címkiegészítés</strong> funkció letiltása"
2490
-
2491
- #: app/model/settings.php:823
2492
- msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2493
- msgstr "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function "
2494
-
2495
- #: app/model/settings.php:839
2496
- msgid " Show the old <strong>Post Your Event</strong> button above the calendar to privileged users"
2497
- msgstr "Mutassa a régi <strong>Esemény közzététele</strong> gombot a naptár fölött kiváltságos felhasználóknak"
2498
-
2499
- #: app/model/settings.php:842
2500
- msgid "Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive Frontend Extension</a> for the <strong>frontend Post Your Event form</strong>."
2501
- msgstr "Telepítse az <a target=\"_blank\" href=\"http://time.ly/\">Interatív kezelőfelületű kiterjesztést</a>, melynek kezelőfelülete <strong>esemény bejegyzési űrlap formában</strong> válik hasznunkra."
2502
-
2503
- #: app/model/settings.php:863
2504
- msgid "Move calendar into this DOM element"
2505
- msgstr "Mozgasd a naptárat ebbe a DOM elembe"
2506
-
2507
- #: app/model/settings.php:865
2508
- msgid ""
2509
- "Optional. Use this JavaScript-based shortcut to place the\n"
2510
- "\t\t\t\t\t\tcalendar a DOM element other than the usual page content container\n"
2511
- "\t\t\t\t\t\tif you are unable to create an appropriate page template\n"
2512
- "\t\t\t\t\t\t for the calendar page. To use, enter a\n"
2513
- "\t\t\t\t\t\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2514
- "\t\t\t\t\t\tjQuery selector</a> that evaluates to a single DOM element.\n"
2515
- "\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
2516
- "\t\t\t\t\t\tby the calendar."
2517
- msgstr ""
2518
- "Optional. Use this JavaScript-based shortcut to place the\n"
2519
- "→\t→\t→\t→\t→\t→\tcalendar a DOM element other than the usual page content container\n"
2520
- "→\t→\t→\t→\t→\t→\tif you are unable to create an appropriate page template\n"
2521
- "→\t→\t→\t→\t→\t→\t for the calendar page. To use, enter a\n"
2522
- "→\t→\t→\t→\t→\t→\t<a target=\"_blank\" href=\"http://api.jquery.com/category/selectors/\">\n"
2523
- "→\t→\t→\t→\t→\t→\tjQuery selector</a> that evaluates to a single DOM element.\n"
2524
- "→\t→\t→\t→\t→\t→\tAny existing markup found within the target will be replaced\n"
2525
- "→\t→\t→\t→\t→\t→\tby the calendar."
2526
-
2527
- #: app/model/settings.php:884
2528
- msgid "<strong>Skip <tt>in_the_loop()</tt> check