Version Description
- Added Spanish translation (thanks to Eduardo Larequi of educacion.navarra.es/web/pnte/).
- Fixed timezone issues by forcing calendar feeds to use the timezone selected in the site's General Settings. Feed-specific timezone setting removed.
- Fixed a bug with recurring events display.
- Fixed an upgrade bug with multiple day events.
Download this release
Release Info
Developer | pderksen |
Plugin | Simple Calendar – Google Calendar Plugin |
Version | 2.0.2 |
Comparing to | |
See all releases |
Code changes from version 2.0.1 to 2.0.2
- class-google-calendar-events.php +2 -3
- google-calendar-events.php +1 -1
- includes/admin/upgrade.php +1 -2
- includes/class-gce-event.php +3 -3
- includes/class-gce-feed.php +2 -9
- includes/gce-feed-cpt.php +7 -8
- languages/gce-es_ES.mo +0 -0
- languages/gce-es_ES.po +1458 -0
- languages/gce.pot +643 -0
- readme.txt +10 -1
- views/admin/gce-feed-meta-display.php +2 -39
- views/admin/gce-feed-sidebar-help.php +2 -2
- views/admin/timezone-choices.php +0 -443
class-google-calendar-events.php
CHANGED
@@ -18,7 +18,7 @@ class Google_Calendar_Events {
|
|
18 |
*
|
19 |
* @var string
|
20 |
*/
|
21 |
-
protected $version = '2.0.
|
22 |
|
23 |
/**
|
24 |
* Unique identifier for the plugin.
|
@@ -68,8 +68,7 @@ class Google_Calendar_Events {
|
|
68 |
|
69 |
|
70 |
// Load plugin text domain
|
71 |
-
|
72 |
-
|
73 |
}
|
74 |
|
75 |
/**
|
18 |
*
|
19 |
* @var string
|
20 |
*/
|
21 |
+
protected $version = '2.0.2';
|
22 |
|
23 |
/**
|
24 |
* Unique identifier for the plugin.
|
68 |
|
69 |
|
70 |
// Load plugin text domain
|
71 |
+
$this->plugin_textdomain();
|
|
|
72 |
}
|
73 |
|
74 |
/**
|
google-calendar-events.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Plugin Name: Google Calendar Events
|
13 |
* Plugin URI: https://github.com/pderksen/WP-Google-Calendar-Events
|
14 |
* Description: Parses Google Calendar feeds and displays the events as a calendar grid or list on a page, post or widget.
|
15 |
-
* Version: 2.0.
|
16 |
* Author: Phil Derksen
|
17 |
* Author URI: http://philderksen.com
|
18 |
* License: GPL-2.0+
|
12 |
* Plugin Name: Google Calendar Events
|
13 |
* Plugin URI: https://github.com/pderksen/WP-Google-Calendar-Events
|
14 |
* Description: Parses Google Calendar feeds and displays the events as a calendar grid or list on a page, post or widget.
|
15 |
+
* Version: 2.0.2
|
16 |
* Author: Phil Derksen
|
17 |
* Author URI: http://philderksen.com
|
18 |
* License: GPL-2.0+
|
includes/admin/upgrade.php
CHANGED
@@ -140,9 +140,8 @@ function create_cpt_meta( $id, $args ) {
|
|
140 |
'gce_retrieve_max' => $args['max_events'],
|
141 |
'gce_date_format' => $args['date_format'],
|
142 |
'gce_time_format' => $args['time_format'],
|
143 |
-
'gce_timezone_offset' => $args['timezone'],
|
144 |
'gce_cache' => $args['cache_duration'],
|
145 |
-
'gce_multi_day_events' => ( $args['multiple_day']
|
146 |
'gce_display_mode' => 'grid',
|
147 |
'gce_custom_from' => gce_convert_timestamp( $args['retrieve_from_value'] ),
|
148 |
'gce_custom_until' => gce_convert_timestamp( $args['retrieve_until_value'] ),
|
140 |
'gce_retrieve_max' => $args['max_events'],
|
141 |
'gce_date_format' => $args['date_format'],
|
142 |
'gce_time_format' => $args['time_format'],
|
|
|
143 |
'gce_cache' => $args['cache_duration'],
|
144 |
+
'gce_multi_day_events' => ( $args['multiple_day'] != 'false' ? '1' : '0' ),
|
145 |
'gce_display_mode' => 'grid',
|
146 |
'gce_custom_from' => gce_convert_timestamp( $args['retrieve_from_value'] ),
|
147 |
'gce_custom_until' => gce_convert_timestamp( $args['retrieve_until_value'] ),
|
includes/class-gce-event.php
CHANGED
@@ -192,7 +192,7 @@ class GCE_Event {
|
|
192 |
//If link should be displayed add to $markup
|
193 |
if ( isset($display_options['display_link'] ) ) {
|
194 |
$target = ( ! empty( $display_options['display_link_target'] ) ? 'target="blank"' : '' );
|
195 |
-
$markup .= '<p class="gce-' . $this->type . '-link"><a href="' . esc_url( $this->link ) . '
|
196 |
}
|
197 |
|
198 |
return $markup;
|
@@ -361,10 +361,10 @@ class GCE_Event {
|
|
361 |
|
362 |
case 'link':
|
363 |
$new_window = ( $newwindow ) ? ' target="_blank"' : '';
|
364 |
-
return $m[1] . '<a href="' . esc_url( $this->link
|
365 |
|
366 |
case 'url':
|
367 |
-
return $m[1] . esc_url( $this->link
|
368 |
|
369 |
case 'feed-id':
|
370 |
return $m[1] . intval( $this->feed->id ) . $m[6];
|
192 |
//If link should be displayed add to $markup
|
193 |
if ( isset($display_options['display_link'] ) ) {
|
194 |
$target = ( ! empty( $display_options['display_link_target'] ) ? 'target="blank"' : '' );
|
195 |
+
$markup .= '<p class="gce-' . $this->type . '-link"><a href="' . esc_url( $this->link ) . '" ' . $target . '>' . esc_html( $display_options['display_link_text'] ) . '</a></p>';
|
196 |
}
|
197 |
|
198 |
return $markup;
|
361 |
|
362 |
case 'link':
|
363 |
$new_window = ( $newwindow ) ? ' target="_blank"' : '';
|
364 |
+
return $m[1] . '<a href="' . esc_url( $this->link ) . '"' . $new_window . '>' . $this->look_for_shortcodes( $m[5] ) . '</a>' . $m[6];
|
365 |
|
366 |
case 'url':
|
367 |
+
return $m[1] . esc_url( $this->link ) . $m[6];
|
368 |
|
369 |
case 'feed-id':
|
370 |
return $m[1] . intval( $this->feed->id ) . $m[6];
|
includes/class-gce-feed.php
CHANGED
@@ -18,7 +18,6 @@ class GCE_Feed {
|
|
18 |
$max,
|
19 |
$date_format,
|
20 |
$time_format,
|
21 |
-
$timezone_offset,
|
22 |
$cache,
|
23 |
$multiple_day_events,
|
24 |
$display_url,
|
@@ -72,7 +71,6 @@ class GCE_Feed {
|
|
72 |
$this->max = get_post_meta( $this->id, 'gce_retrieve_max', true );
|
73 |
$this->date_format = ( ! empty( $date_format ) ? $date_format : get_option( 'date_format' ) );
|
74 |
$this->time_format = ( ! empty( $time_format ) ? $time_format : get_option( 'time_format' ) );
|
75 |
-
$this->timezone_offset = get_post_meta( $this->id, 'gce_timezone_offset', true );
|
76 |
$this->cache = get_post_meta( $this->id, 'gce_cache', true );
|
77 |
$this->multiple_day_events = get_post_meta( $this->id, 'gce_multi_day_events', true );
|
78 |
$this->search_query = get_post_meta( $this->id, 'gce_search_query', true );
|
@@ -106,19 +104,14 @@ class GCE_Feed {
|
|
106 |
$path = substr( $url_parts['path'], 0, strrpos( $url_parts['path'], '/' ) ) . '/full-noattendees';
|
107 |
|
108 |
//Add the default parameters to the querystring (retrieving JSON, not XML)
|
109 |
-
$query = '?alt=json&
|
110 |
|
111 |
-
$gmt_offset =
|
112 |
|
113 |
//Append the feed specific parameters to the querystring
|
114 |
$query .= '&start-min=' . date( 'Y-m-d\TH:i:s', $this->start - $gmt_offset );
|
115 |
$query .= '&start-max=' . date( 'Y-m-d\TH:i:s', $this->end - $gmt_offset );
|
116 |
$query .= '&max-results=' . $this->max;
|
117 |
-
|
118 |
-
// Set the timezone offset
|
119 |
-
if ( ! empty( $this->timezone_offset ) && $this->timezone_offset != 'default' ) {
|
120 |
-
$query .= '&ctz=' . $this->timezone_offset;
|
121 |
-
}
|
122 |
|
123 |
if ( ! empty( $this->search_query ) ) {
|
124 |
$query .= '&q=' . rawurlencode( $this->search_query );
|
18 |
$max,
|
19 |
$date_format,
|
20 |
$time_format,
|
|
|
21 |
$cache,
|
22 |
$multiple_day_events,
|
23 |
$display_url,
|
71 |
$this->max = get_post_meta( $this->id, 'gce_retrieve_max', true );
|
72 |
$this->date_format = ( ! empty( $date_format ) ? $date_format : get_option( 'date_format' ) );
|
73 |
$this->time_format = ( ! empty( $time_format ) ? $time_format : get_option( 'time_format' ) );
|
|
|
74 |
$this->cache = get_post_meta( $this->id, 'gce_cache', true );
|
75 |
$this->multiple_day_events = get_post_meta( $this->id, 'gce_multi_day_events', true );
|
76 |
$this->search_query = get_post_meta( $this->id, 'gce_search_query', true );
|
104 |
$path = substr( $url_parts['path'], 0, strrpos( $url_parts['path'], '/' ) ) . '/full-noattendees';
|
105 |
|
106 |
//Add the default parameters to the querystring (retrieving JSON, not XML)
|
107 |
+
$query = '?alt=json&sortorder=ascending&orderby=starttime';
|
108 |
|
109 |
+
$gmt_offset = get_option( 'gmt_offset' ) * 3600;
|
110 |
|
111 |
//Append the feed specific parameters to the querystring
|
112 |
$query .= '&start-min=' . date( 'Y-m-d\TH:i:s', $this->start - $gmt_offset );
|
113 |
$query .= '&start-max=' . date( 'Y-m-d\TH:i:s', $this->end - $gmt_offset );
|
114 |
$query .= '&max-results=' . $this->max;
|
|
|
|
|
|
|
|
|
|
|
115 |
|
116 |
if ( ! empty( $this->search_query ) ) {
|
117 |
$query .= '&q=' . rawurlencode( $this->search_query );
|
includes/gce-feed-cpt.php
CHANGED
@@ -145,7 +145,6 @@ function gce_save_meta( $post_id ) {
|
|
145 |
'gce_retrieve_max',
|
146 |
'gce_date_format',
|
147 |
'gce_time_format',
|
148 |
-
'gce_timezone_offset',
|
149 |
'gce_cache',
|
150 |
'gce_multi_day_events',
|
151 |
'gce_display_mode',
|
@@ -206,10 +205,10 @@ function gce_add_column_headers( $defaults ) {
|
|
206 |
|
207 |
$new_columns = array(
|
208 |
'cb' => $defaults['cb'],
|
209 |
-
'feed-id' => 'Feed ID',
|
210 |
-
'feed-sc' => 'Feed Shortcode',
|
211 |
-
'max-events' => 'Max Events',
|
212 |
-
'display-type' => 'Display Type'
|
213 |
);
|
214 |
|
215 |
return array_merge( $defaults, $new_columns );
|
@@ -240,11 +239,11 @@ function gce_column_content( $column_name, $post_ID ) {
|
|
240 |
$display = get_post_meta( $post_ID, 'gce_display_mode', true );
|
241 |
|
242 |
if( $display == 'grid' ) {
|
243 |
-
echo 'Grid';
|
244 |
} else if( $display == 'list' ) {
|
245 |
-
echo 'List';
|
246 |
} else {
|
247 |
-
echo 'Grouped List';
|
248 |
}
|
249 |
break;
|
250 |
}
|
145 |
'gce_retrieve_max',
|
146 |
'gce_date_format',
|
147 |
'gce_time_format',
|
|
|
148 |
'gce_cache',
|
149 |
'gce_multi_day_events',
|
150 |
'gce_display_mode',
|
205 |
|
206 |
$new_columns = array(
|
207 |
'cb' => $defaults['cb'],
|
208 |
+
'feed-id' => __( 'Feed ID', 'gce' ),
|
209 |
+
'feed-sc' => __( 'Feed Shortcode', 'gce' ),
|
210 |
+
'max-events' => __( 'Max Events', 'gce' ),
|
211 |
+
'display-type' => __( 'Display Type', 'gce' )
|
212 |
);
|
213 |
|
214 |
return array_merge( $defaults, $new_columns );
|
239 |
$display = get_post_meta( $post_ID, 'gce_display_mode', true );
|
240 |
|
241 |
if( $display == 'grid' ) {
|
242 |
+
echo __( 'Grid', 'gce' );
|
243 |
} else if( $display == 'list' ) {
|
244 |
+
echo __( 'List', 'gce' );
|
245 |
} else {
|
246 |
+
echo __( 'Grouped List', 'gce' );
|
247 |
}
|
248 |
break;
|
249 |
}
|
languages/gce-es_ES.mo
ADDED
Binary file
|
languages/gce-es_ES.po
ADDED
@@ -0,0 +1,1458 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2010 Google Calendar Events
|
2 |
+
# This file is distributed under the same license as the Google Calendar Events package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Google Calendar Events en español\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/google-calendar-events\n"
|
7 |
+
"POT-Creation-Date: 2014-09-11 22:23+0100\n"
|
8 |
+
"PO-Revision-Date: \n"
|
9 |
+
"Last-Translator: Eduardo Larequi <elarequi@gmail.com>\n"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"Language: es_ES\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Generator: Poedit 1.6.3\n"
|
17 |
+
"X-Poedit-Basepath: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
19 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
|
20 |
+
"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
21 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
+
"X-Poedit-SearchPath-0: .\n"
|
23 |
+
|
24 |
+
#: class-google-calendar-events-admin.php:67
|
25 |
+
#: class-google-calendar-events-admin.php:68 includes/register-settings.php:44
|
26 |
+
msgid "General Settings"
|
27 |
+
msgstr "Configuración general"
|
28 |
+
|
29 |
+
#: class-google-calendar-events-admin.php:139 views/widgets.php:27
|
30 |
+
msgid "Google Calendar Events"
|
31 |
+
msgstr "Google Calendar Events"
|
32 |
+
|
33 |
+
#: class-google-calendar-events-admin.php:151
|
34 |
+
msgid "Feeds"
|
35 |
+
msgstr "Fuentes RSS"
|
36 |
+
|
37 |
+
#: includes/class-gce-display.php:218
|
38 |
+
msgid "There are currently no events to display."
|
39 |
+
msgstr "Actualmente no hay ningún evento que mostrar."
|
40 |
+
|
41 |
+
#: includes/class-gce-event.php:499
|
42 |
+
#, php-format
|
43 |
+
msgid "%s year"
|
44 |
+
msgstr "%s año"
|
45 |
+
|
46 |
+
#: includes/class-gce-event.php:499
|
47 |
+
#, php-format
|
48 |
+
msgid "%s years"
|
49 |
+
msgstr "%s años"
|
50 |
+
|
51 |
+
#: includes/class-gce-event.php:500
|
52 |
+
#, php-format
|
53 |
+
msgid "%s month"
|
54 |
+
msgstr "%s mes"
|
55 |
+
|
56 |
+
#: includes/class-gce-event.php:500
|
57 |
+
#, php-format
|
58 |
+
msgid "%s months"
|
59 |
+
msgstr "%s meses"
|
60 |
+
|
61 |
+
#: includes/class-gce-event.php:501
|
62 |
+
#, php-format
|
63 |
+
msgid "%s week"
|
64 |
+
msgstr "%s semana"
|
65 |
+
|
66 |
+
#: includes/class-gce-event.php:501
|
67 |
+
#, php-format
|
68 |
+
msgid "%s weeks"
|
69 |
+
msgstr "%s semanas"
|
70 |
+
|
71 |
+
#: includes/class-gce-event.php:502
|
72 |
+
#, php-format
|
73 |
+
msgid "%s day"
|
74 |
+
msgstr "%s día"
|
75 |
+
|
76 |
+
#: includes/class-gce-event.php:502
|
77 |
+
#, php-format
|
78 |
+
msgid "%s days"
|
79 |
+
msgstr "%s días"
|
80 |
+
|
81 |
+
#: includes/class-gce-event.php:503
|
82 |
+
#, php-format
|
83 |
+
msgid "%s hour"
|
84 |
+
msgstr "%s hora"
|
85 |
+
|
86 |
+
#: includes/class-gce-event.php:503
|
87 |
+
#, php-format
|
88 |
+
msgid "%s hours"
|
89 |
+
msgstr "%s horas"
|
90 |
+
|
91 |
+
#: includes/class-gce-event.php:504
|
92 |
+
#, php-format
|
93 |
+
msgid "%s min"
|
94 |
+
msgstr "%s minuto"
|
95 |
+
|
96 |
+
#: includes/class-gce-event.php:504
|
97 |
+
#, php-format
|
98 |
+
msgid "%s mins"
|
99 |
+
msgstr "%s minutos"
|
100 |
+
|
101 |
+
#: includes/class-gce-event.php:532
|
102 |
+
msgctxt "human_time_diff"
|
103 |
+
msgid ", "
|
104 |
+
msgstr ", "
|
105 |
+
|
106 |
+
#: includes/class-gce-feed.php:93
|
107 |
+
msgid ""
|
108 |
+
"The feed URL has not been set. Please make sure to set it correctly in the "
|
109 |
+
"Feed settings."
|
110 |
+
msgstr ""
|
111 |
+
"La URL de la fuente RSS no ha sido configurada. Por favor, asegúrate de que "
|
112 |
+
"la has configurado correctamente en la configuración de fuentes."
|
113 |
+
|
114 |
+
#: includes/class-gce-feed.php:180
|
115 |
+
msgid ""
|
116 |
+
"Some data was retrieved, but could not be parsed successfully. Please ensure "
|
117 |
+
"your feed URL is correct."
|
118 |
+
msgstr ""
|
119 |
+
"Se han recuperado algunos datos, pero no se han podido interpretar "
|
120 |
+
"correctamente. Por favor, asegúrate de que la URL de la fuente RSS es "
|
121 |
+
"correcta."
|
122 |
+
|
123 |
+
#: includes/class-gce-feed.php:186
|
124 |
+
msgid ""
|
125 |
+
"The feed could not be found (404). Please ensure your feed URL is correct."
|
126 |
+
msgstr ""
|
127 |
+
"No se ha podido encontrar la fuente RSS (error 404). Por favor, asegúrate de "
|
128 |
+
"que la URL de la fuente RSS es correcta."
|
129 |
+
|
130 |
+
#: includes/class-gce-feed.php:189
|
131 |
+
msgid ""
|
132 |
+
"Access to this feed was denied (403). Please ensure you have public sharing "
|
133 |
+
"enabled for your calendar."
|
134 |
+
msgstr ""
|
135 |
+
"Se ha denegado el acceso a la fuente RSS (error 403). Por favor, asegúrate "
|
136 |
+
"de que has configurado tu calendario para que sea compartido públicamente."
|
137 |
+
|
138 |
+
#: includes/class-gce-feed.php:192
|
139 |
+
#, php-format
|
140 |
+
msgid ""
|
141 |
+
"The feed data could not be retrieved. Error code: %s. Please ensure your "
|
142 |
+
"feed URL is correct."
|
143 |
+
msgstr ""
|
144 |
+
"No se han podido recuperar los datos de la fuente RSS. Código de error: %s. "
|
145 |
+
"Por favor, asegúrate de que la URL de tu fuente RSS es correcta."
|
146 |
+
|
147 |
+
#: includes/class-gce-feed.php:197
|
148 |
+
msgid " Please ensure your feed URL is correct."
|
149 |
+
msgstr " Por favor, asegúrate de que la URL de la fuente RSS es correcta."
|
150 |
+
|
151 |
+
#: includes/gce-feed-cpt.php:21
|
152 |
+
msgid "Google Calendar Feeds"
|
153 |
+
msgstr "Fuentes RSS de Google Calendar"
|
154 |
+
|
155 |
+
#: includes/gce-feed-cpt.php:22 includes/gce-feed-cpt.php:24
|
156 |
+
msgid "Feed"
|
157 |
+
msgstr "Fuente RSS"
|
158 |
+
|
159 |
+
#: includes/gce-feed-cpt.php:23
|
160 |
+
msgid "GCal Events"
|
161 |
+
msgstr "Eventos de GCal"
|
162 |
+
|
163 |
+
#: includes/gce-feed-cpt.php:25
|
164 |
+
msgid "Add New"
|
165 |
+
msgstr "Añadir nueva"
|
166 |
+
|
167 |
+
#: includes/gce-feed-cpt.php:26
|
168 |
+
msgid "Add New Feed"
|
169 |
+
msgstr "Añadir una nueva fuente RSS"
|
170 |
+
|
171 |
+
#: includes/gce-feed-cpt.php:27
|
172 |
+
msgid "New Feed"
|
173 |
+
msgstr "Nueva fuente RSS"
|
174 |
+
|
175 |
+
#: includes/gce-feed-cpt.php:28
|
176 |
+
msgid "Edit Feed"
|
177 |
+
msgstr "Editar fuente RSS"
|
178 |
+
|
179 |
+
#: includes/gce-feed-cpt.php:29
|
180 |
+
msgid "View Feed"
|
181 |
+
msgstr "Ver fuente RSS"
|
182 |
+
|
183 |
+
#: includes/gce-feed-cpt.php:30
|
184 |
+
msgid "All GCal Feeds"
|
185 |
+
msgstr "Todas las fuente RSS de GCal"
|
186 |
+
|
187 |
+
#: includes/gce-feed-cpt.php:31
|
188 |
+
msgid "Search GCal Feeds"
|
189 |
+
msgstr "Buscar fuentes RSS de GCal"
|
190 |
+
|
191 |
+
#: includes/gce-feed-cpt.php:32
|
192 |
+
msgid "No feeds found."
|
193 |
+
msgstr "No se ha encontrado ninguna fuente RSS."
|
194 |
+
|
195 |
+
#: includes/gce-feed-cpt.php:33
|
196 |
+
msgid "No feeds found in Trash."
|
197 |
+
msgstr "No se ha encontrado ninguna fuente RSS en la papelera."
|
198 |
+
|
199 |
+
#: includes/gce-feed-cpt.php:75 includes/gce-feed-cpt.php:76
|
200 |
+
#, php-format
|
201 |
+
msgid "%4$s updated. %1$sView %2$s%3$s"
|
202 |
+
msgstr "%4$s ha sido actualizada. %1$sVer %2$s%3$s"
|
203 |
+
|
204 |
+
#: includes/gce-feed-cpt.php:77
|
205 |
+
#, php-format
|
206 |
+
msgid "%4$s published. %1$sView %2$s%3$s"
|
207 |
+
msgstr "%4$s ha sido publicada. %1$sVer %2$s%3$s"
|
208 |
+
|
209 |
+
#: includes/gce-feed-cpt.php:78
|
210 |
+
#, php-format
|
211 |
+
msgid "%4$s saved. %1$sView %2$s%3$s"
|
212 |
+
msgstr "%4$s ha sido guardada. %1$sVer %2$s%3$s"
|
213 |
+
|
214 |
+
#: includes/gce-feed-cpt.php:79
|
215 |
+
#, php-format
|
216 |
+
msgid "%4$s submitted. %1$sView %2$s%3$s"
|
217 |
+
msgstr "%4$s ha sido enviada. %1$sVer %2$s%3$s"
|
218 |
+
|
219 |
+
#: includes/gce-feed-cpt.php:80
|
220 |
+
#, php-format
|
221 |
+
msgid "%4$s draft updated. %1$sView %2$s%3$s"
|
222 |
+
msgstr "El borrador de %4$s ha sido actualizado. %1$sVer %2$s%3$s"
|
223 |
+
|
224 |
+
#: includes/register-settings.php:29
|
225 |
+
msgid "Save Settings"
|
226 |
+
msgstr "Guardar la configuración"
|
227 |
+
|
228 |
+
#: includes/register-settings.php:30
|
229 |
+
msgid ""
|
230 |
+
"Save your settings when uninstalling this plugin. Useful when upgrading or "
|
231 |
+
"re-installing."
|
232 |
+
msgstr ""
|
233 |
+
"Guardar tu configuración cuando se desinstale el plugin. Útil en las "
|
234 |
+
"actualizaciones o al reinstalar."
|
235 |
+
|
236 |
+
#: includes/register-settings.php:132
|
237 |
+
#, php-format
|
238 |
+
msgid ""
|
239 |
+
"The callback function used for the <strong>%s</strong> setting is missing."
|
240 |
+
msgstr ""
|
241 |
+
"Falta la función de callback utilizada para la configuración de <strong>%s</"
|
242 |
+
"strong>."
|
243 |
+
|
244 |
+
#: includes/admin/admin-functions.php:20
|
245 |
+
msgid "Cache has been cleared for this feed."
|
246 |
+
msgstr "La caché de esta fuente RSS ha sido vaciada."
|
247 |
+
|
248 |
+
#: views/widgets.php:28
|
249 |
+
msgid ""
|
250 |
+
"Display a list or calendar grid of events from one or more Google Calendar "
|
251 |
+
"feeds you have added"
|
252 |
+
msgstr ""
|
253 |
+
"Muestra una lista o rejilla de calendario de los eventos de uno o más "
|
254 |
+
"fuentes RSS de Google Calendar que hayas añadido."
|
255 |
+
|
256 |
+
#: views/widgets.php:72
|
257 |
+
msgid ""
|
258 |
+
"No valid Feed IDs have been entered for this widget. Please check that you "
|
259 |
+
"have entered the IDs correctly in the widget settings (Appearance > "
|
260 |
+
"Widgets), and that the Feeds have not been deleted."
|
261 |
+
msgstr ""
|
262 |
+
"No se ha introducido en este widget ningún ID de fuente RSS válido. Por "
|
263 |
+
"favor, comprueba que has escrito el ID correctamente en la configuración del "
|
264 |
+
"widget (Apariencia > Widgets) y que la fuente RSS no ha sido borrada."
|
265 |
+
|
266 |
+
#: views/widgets.php:104
|
267 |
+
msgid "You have not added any feeds yet."
|
268 |
+
msgstr "Todavía no has añadido ninguna fuente RSS."
|
269 |
+
|
270 |
+
#: views/widgets.php:142
|
271 |
+
msgid "There are no feeds created yet."
|
272 |
+
msgstr "Todavía no se ha creado ninguna fuente RSS."
|
273 |
+
|
274 |
+
#: views/widgets.php:143
|
275 |
+
msgid "Add your first feed!"
|
276 |
+
msgstr "Añade tu primera fuente RSS."
|
277 |
+
|
278 |
+
#: views/widgets.php:163
|
279 |
+
msgid "Feeds to display, as a comma separated list (e.g. 101,102,103)"
|
280 |
+
msgstr ""
|
281 |
+
"Fuentes RSS que se mostrarán, como una lista separada por comas (por "
|
282 |
+
"ejemplo, 101,102,103)"
|
283 |
+
|
284 |
+
#: views/widgets.php:168
|
285 |
+
msgid "Display events as:"
|
286 |
+
msgstr "Mostrar eventos como:"
|
287 |
+
|
288 |
+
#: views/widgets.php:170 views/admin/gce-feed-meta-display.php:181
|
289 |
+
msgid "Grid"
|
290 |
+
msgstr "Rejilla"
|
291 |
+
|
292 |
+
#: views/widgets.php:171
|
293 |
+
msgid "Calendar Grid - with AJAX"
|
294 |
+
msgstr "Calendario en rejilla con AJAX"
|
295 |
+
|
296 |
+
#: views/widgets.php:172 views/admin/gce-feed-meta-display.php:182
|
297 |
+
msgid "List"
|
298 |
+
msgstr "Lista"
|
299 |
+
|
300 |
+
#: views/widgets.php:173 views/admin/gce-feed-meta-display.php:183
|
301 |
+
msgid "Grouped List"
|
302 |
+
msgstr "Lista agrupada"
|
303 |
+
|
304 |
+
#: views/widgets.php:178
|
305 |
+
msgid "Maximum no. events to display. Enter 0 to show all retrieved."
|
306 |
+
msgstr ""
|
307 |
+
"Número máximo de eventos que se mostrarán. Escribe el valor \"0\" para "
|
308 |
+
"mostrar todos los recuperados."
|
309 |
+
|
310 |
+
#: views/widgets.php:183
|
311 |
+
msgid "Sort order (only applies to lists):"
|
312 |
+
msgstr "Criterio de ordenación (solo se aplica a las listas):"
|
313 |
+
|
314 |
+
#: views/widgets.php:185
|
315 |
+
msgid "Ascending"
|
316 |
+
msgstr "Ascendente"
|
317 |
+
|
318 |
+
#: views/widgets.php:186
|
319 |
+
msgid "Descending"
|
320 |
+
msgstr "Descendente"
|
321 |
+
|
322 |
+
#: views/widgets.php:190
|
323 |
+
msgid ""
|
324 |
+
"Display title on tooltip / list item (e.g. 'Events on 7th March') Grouped "
|
325 |
+
"lists always have a title displayed."
|
326 |
+
msgstr ""
|
327 |
+
"Mostrar el título en el globo de información o en el elemento de la lista "
|
328 |
+
"(por ejemplo, \"Eventos del 7 de marzo\"). Las listas agrupadas siempre "
|
329 |
+
"muestran el título."
|
330 |
+
|
331 |
+
#: views/admin/display-options-meta.php:39
|
332 |
+
msgid ""
|
333 |
+
"Check this box to use the simple display options below instead of the Event "
|
334 |
+
"Builder code on the left."
|
335 |
+
msgstr ""
|
336 |
+
"Marca esta casilla para utilizar las opciones de presentación sencillas que "
|
337 |
+
"aparecen a continuación, en lugar del código del constructor de eventos de "
|
338 |
+
"la izquierda."
|
339 |
+
|
340 |
+
#: views/admin/display-options-meta.php:44
|
341 |
+
msgid "Start date / time display"
|
342 |
+
msgstr "Presentación de la fecha y hora de comienzo"
|
343 |
+
|
344 |
+
#: views/admin/display-options-meta.php:45
|
345 |
+
msgid "Select how to display the start date / time."
|
346 |
+
msgstr "Selecciona cómo mostrar la fecha y hora del comienzo."
|
347 |
+
|
348 |
+
#: views/admin/display-options-meta.php:47
|
349 |
+
#: views/admin/display-options-meta.php:61
|
350 |
+
msgid "None"
|
351 |
+
msgstr "Ninguna"
|
352 |
+
|
353 |
+
#: views/admin/display-options-meta.php:48
|
354 |
+
msgid "Start time"
|
355 |
+
msgstr "Hora del comienzo"
|
356 |
+
|
357 |
+
#: views/admin/display-options-meta.php:49
|
358 |
+
msgid "Start date"
|
359 |
+
msgstr "Fecha del comienzo"
|
360 |
+
|
361 |
+
#: views/admin/display-options-meta.php:50
|
362 |
+
msgid "Start time and date"
|
363 |
+
msgstr "Hora y fecha del comienzo"
|
364 |
+
|
365 |
+
#: views/admin/display-options-meta.php:51
|
366 |
+
msgid "Start date and time"
|
367 |
+
msgstr "Fecha y hora del comienzo"
|
368 |
+
|
369 |
+
#: views/admin/display-options-meta.php:53
|
370 |
+
msgid "Text to display before the start time."
|
371 |
+
msgstr "Texto que se mostrará antes de la hora del comienzo."
|
372 |
+
|
373 |
+
#: views/admin/display-options-meta.php:58
|
374 |
+
msgid "End time/date display"
|
375 |
+
msgstr "Presentación de la fecha y hora de fin"
|
376 |
+
|
377 |
+
#: views/admin/display-options-meta.php:59
|
378 |
+
msgid "Select how to display the end date / time."
|
379 |
+
msgstr "Selecciona cómo mostrar la fecha y hora del fin."
|
380 |
+
|
381 |
+
#: views/admin/display-options-meta.php:62
|
382 |
+
msgid "End time"
|
383 |
+
msgstr "Hora del fin"
|
384 |
+
|
385 |
+
#: views/admin/display-options-meta.php:63
|
386 |
+
msgid "End date"
|
387 |
+
msgstr "Fecha del fin"
|
388 |
+
|
389 |
+
#: views/admin/display-options-meta.php:64
|
390 |
+
msgid "End time and date"
|
391 |
+
msgstr "Hora y fecha del fin"
|
392 |
+
|
393 |
+
#: views/admin/display-options-meta.php:65
|
394 |
+
msgid "End date and time"
|
395 |
+
msgstr "Fecha y hora del fin"
|
396 |
+
|
397 |
+
#: views/admin/display-options-meta.php:67
|
398 |
+
msgid "Text to display before the end time."
|
399 |
+
msgstr "Texto que se mostrará antes de la hora del fin."
|
400 |
+
|
401 |
+
#: views/admin/display-options-meta.php:72
|
402 |
+
msgid "Separator"
|
403 |
+
msgstr "Separador"
|
404 |
+
|
405 |
+
#: views/admin/display-options-meta.php:74
|
406 |
+
msgid ""
|
407 |
+
"If you have chosen to display both the time and date above, enter the text / "
|
408 |
+
"characters to display between the time and date here (including any spaces)."
|
409 |
+
msgstr ""
|
410 |
+
"Si has seleccionado la opción de mostrar tanto la hora como la fecha, "
|
411 |
+
"escribe aquí el texto o caracteres que se mostrarán entre la hora y la fecha "
|
412 |
+
"(incluyendo los espacios)."
|
413 |
+
|
414 |
+
#: views/admin/display-options-meta.php:88
|
415 |
+
msgid "Description"
|
416 |
+
msgstr "Descripción"
|
417 |
+
|
418 |
+
#: views/admin/display-options-meta.php:91
|
419 |
+
msgid ""
|
420 |
+
"Show the description of events? (URLs in the description will be made into "
|
421 |
+
"links)."
|
422 |
+
msgstr ""
|
423 |
+
"¿Mostrar la descripción de los eventos? (las URLs de las descripciones se "
|
424 |
+
"convertirán en enlaces)."
|
425 |
+
|
426 |
+
#: views/admin/display-options-meta.php:93
|
427 |
+
msgid "Text to display before the description."
|
428 |
+
msgstr "Texto que se mostrará antes de la descripción."
|
429 |
+
|
430 |
+
#: views/admin/display-options-meta.php:95
|
431 |
+
msgid ""
|
432 |
+
"Maximum number of words to show from description. Leave blank for no limit."
|
433 |
+
msgstr ""
|
434 |
+
"Número máximo de palabras que se mostrarán en la descripción. Deja este "
|
435 |
+
"campo vacío si no quieres ningún límite."
|
436 |
+
|
437 |
+
#: views/admin/display-options-meta.php:100
|
438 |
+
msgid "Event Link"
|
439 |
+
msgstr "Enlace del evento"
|
440 |
+
|
441 |
+
#: views/admin/display-options-meta.php:103
|
442 |
+
msgid "Show a link to the Google Calendar page for an event?"
|
443 |
+
msgstr "¿Mostrar un enlace a la página de Google Calendar de un evento?"
|
444 |
+
|
445 |
+
#: views/admin/display-options-meta.php:107
|
446 |
+
msgid "Links open in a new window / tab?"
|
447 |
+
msgstr "¿Abrir los enlaces en una nueva ventana o pestaña?"
|
448 |
+
|
449 |
+
#: views/admin/display-options-meta.php:109
|
450 |
+
msgid "The link text to be displayed."
|
451 |
+
msgstr "El texto del enlace que se mostrará."
|
452 |
+
|
453 |
+
#: views/admin/gce-feed-meta-display.php:38
|
454 |
+
msgid ""
|
455 |
+
"We're <strong>smack dab</strong> in the middle of building additional "
|
456 |
+
"features for this plugin. Have ideas?"
|
457 |
+
msgstr ""
|
458 |
+
"Estamos en proceso de construir funcionalidades adicionales para el plugin. "
|
459 |
+
"¿Tienes alguna idea?"
|
460 |
+
|
461 |
+
#: views/admin/gce-feed-meta-display.php:41
|
462 |
+
msgid "Visit our roadmap and tell us what you're looking for"
|
463 |
+
msgstr "Visita nuestro mapa de ruta y dinos lo que estás buscando"
|
464 |
+
|
465 |
+
#: views/admin/gce-feed-meta-display.php:47
|
466 |
+
msgid "Want to know when we release something new?"
|
467 |
+
msgstr "¿Quieres saber cuándo publicamos una actualización?"
|
468 |
+
|
469 |
+
#: views/admin/gce-feed-meta-display.php:50
|
470 |
+
msgid "Get notified of major plugin updates"
|
471 |
+
msgstr "Consigue notificaciones de las actualizaciones principales del plugin"
|
472 |
+
|
473 |
+
#: views/admin/gce-feed-meta-display.php:57
|
474 |
+
msgid "Feed Shortcode"
|
475 |
+
msgstr "Shortcodes de la fuente RSS"
|
476 |
+
|
477 |
+
#: views/admin/gce-feed-meta-display.php:60
|
478 |
+
msgid ""
|
479 |
+
"Copy and paste this shortcode to display this Google Calendar feed in any "
|
480 |
+
"post or page."
|
481 |
+
msgstr ""
|
482 |
+
"Copia y pega este shortcode para mostrar esta fuente RSS de Google Calendar "
|
483 |
+
"en cualquier entrada o página."
|
484 |
+
|
485 |
+
#: views/admin/gce-feed-meta-display.php:64
|
486 |
+
msgid "GCal Feed URL"
|
487 |
+
msgstr "URL de la fuente RSS de GCal"
|
488 |
+
|
489 |
+
#: views/admin/gce-feed-meta-display.php:68
|
490 |
+
msgid "The Google Calendar feed URL."
|
491 |
+
msgstr "La URL de la fuente RSS de Google Calendar."
|
492 |
+
|
493 |
+
#: views/admin/gce-feed-meta-display.php:69
|
494 |
+
msgid "Example"
|
495 |
+
msgstr "Ejemplo"
|
496 |
+
|
497 |
+
#: views/admin/gce-feed-meta-display.php:70
|
498 |
+
msgid "How to find your GCal feed URL"
|
499 |
+
msgstr "Cómo encontrar la URL de la fuente RSS de GCal"
|
500 |
+
|
501 |
+
#: views/admin/gce-feed-meta-display.php:76
|
502 |
+
msgid "Search Query"
|
503 |
+
msgstr "Consulta de búsqueda"
|
504 |
+
|
505 |
+
#: views/admin/gce-feed-meta-display.php:79
|
506 |
+
msgid "Find and show events based on a search query."
|
507 |
+
msgstr "Encuentra y muestra los eventos basados en una consulta de búsqueda."
|
508 |
+
|
509 |
+
#: views/admin/gce-feed-meta-display.php:84
|
510 |
+
msgid "Expand Recurring Events?"
|
511 |
+
msgstr "¿Quieres expandir los eventos recurrentes?"
|
512 |
+
|
513 |
+
#: views/admin/gce-feed-meta-display.php:86
|
514 |
+
msgid "Yes"
|
515 |
+
msgstr "Sí"
|
516 |
+
|
517 |
+
#: views/admin/gce-feed-meta-display.php:87
|
518 |
+
msgid ""
|
519 |
+
"This will show recurring events each time they occur, otherwise it will only "
|
520 |
+
"show the event the first time it occurs."
|
521 |
+
msgstr ""
|
522 |
+
"Esta opción mostrará los eventos recurrentes cada vez que ocurran; de otro "
|
523 |
+
"modo, solo mostrará el evento la primera vez que ocurra."
|
524 |
+
|
525 |
+
#: views/admin/gce-feed-meta-display.php:92
|
526 |
+
msgid "Retrieve Events From"
|
527 |
+
msgstr "Recuperar eventos desde"
|
528 |
+
|
529 |
+
#: views/admin/gce-feed-meta-display.php:95
|
530 |
+
#: views/admin/gce-feed-meta-display.php:111
|
531 |
+
msgid "Today"
|
532 |
+
msgstr "Hoy"
|
533 |
+
|
534 |
+
#: views/admin/gce-feed-meta-display.php:96
|
535 |
+
#: views/admin/gce-feed-meta-display.php:112
|
536 |
+
msgid "Start of current week"
|
537 |
+
msgstr "Comienzo de la semana actual"
|
538 |
+
|
539 |
+
#: views/admin/gce-feed-meta-display.php:97
|
540 |
+
#: views/admin/gce-feed-meta-display.php:113
|
541 |
+
msgid "Start of current month"
|
542 |
+
msgstr "Comienzo del mes actual"
|
543 |
+
|
544 |
+
#: views/admin/gce-feed-meta-display.php:98
|
545 |
+
#: views/admin/gce-feed-meta-display.php:114
|
546 |
+
msgid "End of current month"
|
547 |
+
msgstr "Fin del mes actual"
|
548 |
+
|
549 |
+
#: views/admin/gce-feed-meta-display.php:99
|
550 |
+
msgid "The beginning of time"
|
551 |
+
msgstr "El comienzo de la hora"
|
552 |
+
|
553 |
+
#: views/admin/gce-feed-meta-display.php:100
|
554 |
+
#: views/admin/gce-feed-meta-display.php:116
|
555 |
+
msgid "Specific date"
|
556 |
+
msgstr "Fecha específica"
|
557 |
+
|
558 |
+
#: views/admin/gce-feed-meta-display.php:103
|
559 |
+
msgid "The point in time at which to start retrieving events."
|
560 |
+
msgstr ""
|
561 |
+
"El punto del tiempo a partir del cual se comenzará a recuperar los eventos."
|
562 |
+
|
563 |
+
#: views/admin/gce-feed-meta-display.php:108
|
564 |
+
msgid "Retrieve Events Until"
|
565 |
+
msgstr "Recuperar eventos hasta"
|
566 |
+
|
567 |
+
#: views/admin/gce-feed-meta-display.php:115
|
568 |
+
msgid "The end of time"
|
569 |
+
msgstr "El final de la hora"
|
570 |
+
|
571 |
+
#: views/admin/gce-feed-meta-display.php:119
|
572 |
+
msgid "The point in time at which to stop retrieving events."
|
573 |
+
msgstr ""
|
574 |
+
"El punto del tiempo a partir del cual se dejará de recuperar los eventos."
|
575 |
+
|
576 |
+
#: views/admin/gce-feed-meta-display.php:124
|
577 |
+
msgid "Max Number of Events"
|
578 |
+
msgstr "Número máximo de eventos"
|
579 |
+
|
580 |
+
#: views/admin/gce-feed-meta-display.php:127
|
581 |
+
msgid "Maximum number of events to show."
|
582 |
+
msgstr "Número máximo de eventos que se mostrarán"
|
583 |
+
|
584 |
+
#: views/admin/gce-feed-meta-display.php:132
|
585 |
+
msgid "Date Format"
|
586 |
+
msgstr "Formato de fecha"
|
587 |
+
|
588 |
+
#: views/admin/gce-feed-meta-display.php:136
|
589 |
+
#: views/admin/gce-feed-meta-display.php:147
|
590 |
+
#, php-format
|
591 |
+
msgid "Use %sPHP date formatting%s."
|
592 |
+
msgstr "Utilizar el %sformato de fecha de PHP%s."
|
593 |
+
|
594 |
+
#: views/admin/gce-feed-meta-display.php:137
|
595 |
+
msgctxt "References the Date Format option"
|
596 |
+
msgid "Leave blank to use the default."
|
597 |
+
msgstr "Déjalo en blanco para utilizar el valor por defecto."
|
598 |
+
|
599 |
+
#: views/admin/gce-feed-meta-display.php:143
|
600 |
+
msgid "Time Format"
|
601 |
+
msgstr "Formato de hora"
|
602 |
+
|
603 |
+
#: views/admin/gce-feed-meta-display.php:148
|
604 |
+
msgctxt "References the Time Format option"
|
605 |
+
msgid "Leave blank to use the default."
|
606 |
+
msgstr "Déjalo en blanco para utilizar el valor por defecto."
|
607 |
+
|
608 |
+
#: views/admin/gce-feed-meta-display.php:154
|
609 |
+
msgid "Timezone Adjustment"
|
610 |
+
msgstr "Ajuste de zona horaria"
|
611 |
+
|
612 |
+
#: views/admin/gce-feed-meta-display.php:157
|
613 |
+
msgid ""
|
614 |
+
"If you are having problems with dates and times displaying in the wrong "
|
615 |
+
"timezone, select a city in your required timezone here."
|
616 |
+
msgstr ""
|
617 |
+
"Si tienes problemas con las fechas y horas que se muestran en una zona "
|
618 |
+
"horaria incorrecta, selecciona aquí una ciudad que pertenezca a la zona "
|
619 |
+
"horaria requerida."
|
620 |
+
|
621 |
+
#: views/admin/gce-feed-meta-display.php:162
|
622 |
+
msgid "Cache Duration"
|
623 |
+
msgstr "Duración de la caché"
|
624 |
+
|
625 |
+
#: views/admin/gce-feed-meta-display.php:165
|
626 |
+
msgid ""
|
627 |
+
"The length of time, in seconds, to cache the feed (43200 = 12 hours). If "
|
628 |
+
"this feed changes regularly, you may want to reduce the cache duration."
|
629 |
+
msgstr ""
|
630 |
+
"La cantidad de tiempo, en segundos, para mantener la fuente RSS en la caché "
|
631 |
+
"((43200 = 12 horas). Si esta fuente RSS cambia con regularidad, es "
|
632 |
+
"conveniente reducir la duración de la caché."
|
633 |
+
|
634 |
+
#: views/admin/gce-feed-meta-display.php:170
|
635 |
+
msgid "Multiple Day Events"
|
636 |
+
msgstr "Eventos de múltiples días"
|
637 |
+
|
638 |
+
#: views/admin/gce-feed-meta-display.php:172
|
639 |
+
msgid "Show on each day"
|
640 |
+
msgstr "Mostrar cada día"
|
641 |
+
|
642 |
+
#: views/admin/gce-feed-meta-display.php:173
|
643 |
+
msgid ""
|
644 |
+
"Show events that span multiple days on each day that they span, rather than "
|
645 |
+
"just the first day."
|
646 |
+
msgstr ""
|
647 |
+
"Mostrar eventos que abarcan varios días en cada uno de dichos días, en lugar "
|
648 |
+
"de solo en el primer día."
|
649 |
+
|
650 |
+
#: views/admin/gce-feed-meta-display.php:178
|
651 |
+
msgid "Display Mode"
|
652 |
+
msgstr "Modo de presentación"
|
653 |
+
|
654 |
+
#: views/admin/gce-feed-meta-display.php:185
|
655 |
+
msgid "Choose how you want your calendar to be displayed."
|
656 |
+
msgstr "Selecciona cómo quieres que se muestre tu calendario."
|
657 |
+
|
658 |
+
#: views/admin/gce-feed-meta-display.php:190
|
659 |
+
#: views/admin/gce-feed-meta-display.php:192
|
660 |
+
msgid "Clear Cache"
|
661 |
+
msgstr "Vaciar la caché"
|
662 |
+
|
663 |
+
#: views/admin/gce-feed-meta-display.php:195
|
664 |
+
#, php-format
|
665 |
+
msgid ""
|
666 |
+
"This will clear your feed cache. This also automatically happens when you "
|
667 |
+
"save your changes. %sIf you make changes you %sMUST%s save first or your "
|
668 |
+
"changes will be lost."
|
669 |
+
msgstr ""
|
670 |
+
"Esta acción vaciará tu caché de fuentes RSS. Esto también ocurre "
|
671 |
+
"automáticamente cuando guardar tus cambios. %sSi haces cambios, %sDEBES%s "
|
672 |
+
"guardarlos en primer lugar, o tus cambios se perderán."
|
673 |
+
|
674 |
+
#: views/admin/gce-feed-sidebar-help.php:6
|
675 |
+
msgid "Documentation & Getting Started"
|
676 |
+
msgstr "Documentación y comenzar"
|
677 |
+
|
678 |
+
#: views/admin/gce-feed-sidebar-help.php:12
|
679 |
+
msgid "Community Support Forums"
|
680 |
+
msgstr "Foros de soporte de la comunidad"
|
681 |
+
|
682 |
+
#: views/admin/gce-feed-sidebar-help.php:18
|
683 |
+
msgid "Get Notified of Major Updates"
|
684 |
+
msgstr "Consigue notificaciones de las actualizaciones principales"
|
685 |
+
|
686 |
+
#: views/admin/gce-feed-sidebar-help.php:24
|
687 |
+
msgid "Now Accepting 5-Star Reviews!"
|
688 |
+
msgstr "Se aceptan reseñas de 5 estrellas"
|
689 |
+
|
690 |
+
#~ msgid "The XML URL to your feed."
|
691 |
+
#~ msgstr "La URL al fichero XML de tu fuente RSS."
|
692 |
+
|
693 |
+
#~ msgid "Feed Title"
|
694 |
+
#~ msgstr "Título de la fuente RSS"
|
695 |
+
|
696 |
+
#~ msgid "Display Options"
|
697 |
+
#~ msgstr "Opciones de visualización"
|
698 |
+
|
699 |
+
#~ msgid "Select display customization method"
|
700 |
+
#~ msgstr "Selecciona el método de personalización de la visualización"
|
701 |
+
|
702 |
+
#~ msgid "Event Display Builder"
|
703 |
+
#~ msgstr "Constructor de presentación de eventos"
|
704 |
+
|
705 |
+
#~ msgid "Event display builder HTML and shortcodes"
|
706 |
+
#~ msgstr "HTML y shortcodes del constructor de presentación de eventos"
|
707 |
+
|
708 |
+
#~ msgid "Simple Display Options"
|
709 |
+
#~ msgstr "Opciones de visualización sencillas"
|
710 |
+
|
711 |
+
#~ msgid "Separator text / characters"
|
712 |
+
#~ msgstr "Texto de separación / caracteres"
|
713 |
+
|
714 |
+
#~ msgid "Display location?"
|
715 |
+
#~ msgstr "¿Mostrar ubicación?"
|
716 |
+
|
717 |
+
#~ msgid "Display link to event?"
|
718 |
+
#~ msgstr "¿Mostrar enlace al evento?"
|
719 |
+
|
720 |
+
#~ msgid "Enter the feed details below, then click the Add Feed button."
|
721 |
+
#~ msgstr ""
|
722 |
+
#~ "Escribre a continuación los detalles de la fuente RSS. A continuación, "
|
723 |
+
#~ "haz clic en el botón \"Añadir fuente RSS\"."
|
724 |
+
|
725 |
+
#~ msgid "Anything you like. 'Upcoming Club Events', for example."
|
726 |
+
#~ msgstr "Algo que te guste. Por ejemplo: \"Próximos eventos del club\"."
|
727 |
+
|
728 |
+
#~ msgid "This will probably be something like:"
|
729 |
+
#~ msgstr "Será algo parecido a esto:"
|
730 |
+
|
731 |
+
#~ msgid "or:"
|
732 |
+
#~ msgstr "o:"
|
733 |
+
|
734 |
+
#~ msgid ""
|
735 |
+
#~ "The point in time at which to start retrieving events. Use the text-box "
|
736 |
+
#~ "to specify an additional offset from you chosen start point. The offset "
|
737 |
+
#~ "should be provided in seconds (3600 = 1 hour, 86400 = 1 day) and can be "
|
738 |
+
#~ "negative. If you have selected the 'Specific date / time' option, enter a"
|
739 |
+
#~ msgstr ""
|
740 |
+
#~ "El punto en el tiempo a partir del cual se mostrarán los eventos. Utiliza "
|
741 |
+
#~ "la caja de texto para especificar cualquier desplazamiento a partir del "
|
742 |
+
#~ "punto de inicio que hayas escogido. El desplazamiento debe hacerse "
|
743 |
+
#~ "constar en segundos (3600 = 1 hora, 86400 = 1 día), y no puede ser un "
|
744 |
+
#~ "número negativo. Si has seleccionado la opción \"Fecha y hora específicas"
|
745 |
+
#~ "\", escribe una"
|
746 |
+
|
747 |
+
#~ msgid "UNIX timestamp"
|
748 |
+
#~ msgstr "Formato de fecha y hora UNIX"
|
749 |
+
|
750 |
+
#~ msgid "in the text-box."
|
751 |
+
#~ msgstr "en la caja de texto."
|
752 |
+
|
753 |
+
#~ msgid "Now"
|
754 |
+
#~ msgstr "Ahora"
|
755 |
+
|
756 |
+
#~ msgid "00:00 today"
|
757 |
+
#~ msgstr "Las 00:00 horas de hoy"
|
758 |
+
|
759 |
+
#~ msgid ""
|
760 |
+
#~ "Set this to a few more than you actually want to display (due to caching "
|
761 |
+
#~ "and timezone issues). The exact number to display can be configured per "
|
762 |
+
#~ "shortcode / widget."
|
763 |
+
#~ msgstr ""
|
764 |
+
#~ "Define esta opción con un valor algo mayor que el que realmente quieres "
|
765 |
+
#~ "mostrar (esta advertencia se debe a ciertos problemas con la caché y la "
|
766 |
+
#~ "zona horaria). El número exacto de elementos que se mostrarán puede "
|
767 |
+
#~ "configurarse en cada uno de los shortcodes o widgets."
|
768 |
+
|
769 |
+
#~ msgid ""
|
770 |
+
#~ "In <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
|
771 |
+
#~ "\">PHP date format</a>. Leave this blank if you'd rather stick with the "
|
772 |
+
#~ "default format for your blog."
|
773 |
+
#~ msgstr ""
|
774 |
+
#~ "En <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
|
775 |
+
#~ "\">formato de fecha de PHP</a>. Deja este campo en blanco si prefieres "
|
776 |
+
#~ "utilizar el formato de fecha por defecto de tu sitio web."
|
777 |
+
|
778 |
+
#~ msgid ""
|
779 |
+
#~ "In <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
|
780 |
+
#~ "\">PHP date format</a>. Again, leave this blank to stick with the default."
|
781 |
+
#~ msgstr ""
|
782 |
+
#~ "En <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank"
|
783 |
+
#~ "\">formato de fecha de PHP</a>. De nuevo, deja este campo en blanco si "
|
784 |
+
#~ "prefieres utilizar el formato de fecha por defecto."
|
785 |
+
|
786 |
+
#~ msgid ""
|
787 |
+
#~ "These settings control what information will be displayed for this feed "
|
788 |
+
#~ "in the tooltip (for grids), or in a list."
|
789 |
+
#~ msgstr ""
|
790 |
+
#~ "Estas opciones controlan qué información se mostrará para esta fuente RSS "
|
791 |
+
#~ "en el cuadro de información (para rejillas), o en una lista."
|
792 |
+
|
793 |
+
#~ msgid ""
|
794 |
+
#~ "It is recommended that you use the event display builder option, as it "
|
795 |
+
#~ "provides much more flexibility than the simple display options. The event "
|
796 |
+
#~ "display builder can do everything the simple display options can, plus "
|
797 |
+
#~ "lots more!"
|
798 |
+
#~ msgstr ""
|
799 |
+
#~ "Se recomienda que utilices las opciones del constructor de presentación "
|
800 |
+
#~ "de eventos, ya que proporciona una flexibilidad mucho mayor que las "
|
801 |
+
#~ "opciones sencillas de visualización. El constructor de presentación de "
|
802 |
+
#~ "eventos puede hacer todo lo que las opciones de visualización sencillas "
|
803 |
+
#~ "permiten, además de muchas otras cosas."
|
804 |
+
|
805 |
+
#~ msgid "Event display builder"
|
806 |
+
#~ msgstr "Constructor de presentación de eventos"
|
807 |
+
|
808 |
+
#~ msgid "Simple display options"
|
809 |
+
#~ msgstr "Opciones de visualización sencillas"
|
810 |
+
|
811 |
+
#~ msgid ""
|
812 |
+
#~ "Use the event display builder to customize how event information will be "
|
813 |
+
#~ "displayed in the grid tooltips and in lists. Use HTML and the shortcodes "
|
814 |
+
#~ "(explained below) to display the information you require. A basic example "
|
815 |
+
#~ "display format is provided as a starting point. For more information, "
|
816 |
+
#~ "take a look at the"
|
817 |
+
#~ msgstr ""
|
818 |
+
#~ "Utiliza el constructor de presentación de eventos para personalizar la "
|
819 |
+
#~ "forma en que se mostrará la información de eventos en el cuadro de "
|
820 |
+
#~ "información de las rejillas y en las listas. Utiliza HTML y shortcodes "
|
821 |
+
#~ "(que se explican a continuación), para mostrar la información que "
|
822 |
+
#~ "necesites. Se proporciona un ejemplo básico de formato de visualización, "
|
823 |
+
#~ "como punto de partida. Para más información, echa un vistazo a la"
|
824 |
+
|
825 |
+
#~ msgid "event display builder guide"
|
826 |
+
#~ msgstr "Guía del constructor de presentación de eventos"
|
827 |
+
|
828 |
+
#~ msgid ""
|
829 |
+
#~ "(More information on all of the below shortcodes and attributes, and "
|
830 |
+
#~ "working examples, can be found in the"
|
831 |
+
#~ msgstr ""
|
832 |
+
#~ "Se puede encontrar más información sobre todos los shortcodes y atributos "
|
833 |
+
#~ "que aparecen a continuación, así como ejemplos de uso, en la"
|
834 |
+
|
835 |
+
#~ msgid "Event information shortcodes:"
|
836 |
+
#~ msgstr "Shortcodes de información del evento:"
|
837 |
+
|
838 |
+
#~ msgid ""
|
839 |
+
#~ "The event title (possible attributes: <code>html</code>, <code>markdown</"
|
840 |
+
#~ "code>)"
|
841 |
+
#~ msgstr ""
|
842 |
+
#~ "El título del evento (posibles atributos: <code>html</code>, "
|
843 |
+
#~ "<code>markdown</code>)"
|
844 |
+
|
845 |
+
#~ msgid ""
|
846 |
+
#~ "The event start time. Will use the time format specified in the above "
|
847 |
+
#~ "settings"
|
848 |
+
#~ msgstr ""
|
849 |
+
#~ "La hora de comienzo del evento. Se utilizará el formato de fecha "
|
850 |
+
#~ "especificado en las opciones anteriores"
|
851 |
+
|
852 |
+
#~ msgid ""
|
853 |
+
#~ "The event start date. Will use the date format specified in the above "
|
854 |
+
#~ "settings"
|
855 |
+
#~ msgstr ""
|
856 |
+
#~ "La fecha de comienzo del evento. Se utilizará el formato de fecha "
|
857 |
+
#~ "especificado en las opciones anteriores"
|
858 |
+
|
859 |
+
#~ msgid ""
|
860 |
+
#~ "The event start date / time. Will use the format specified in the "
|
861 |
+
#~ "<code>format</code> attribute (possible attributes: <code>format</code>)"
|
862 |
+
#~ msgstr ""
|
863 |
+
#~ "La fecha y hora de comienzo del evento. Se utilizará el formato "
|
864 |
+
#~ "especificado en el atributo <code>format</code>(posibles atributos: "
|
865 |
+
#~ "<code>format</code>)"
|
866 |
+
|
867 |
+
#~ msgid ""
|
868 |
+
#~ "The difference between the start time of the event and the time now, in "
|
869 |
+
#~ "human-readable format, such as '1 hour', '4 days', '15 mins' (possible "
|
870 |
+
#~ "attributes: <code>precision</code>)"
|
871 |
+
#~ msgstr ""
|
872 |
+
#~ "La diferencia entre la hora del comienzo del evento y la hora actual, en "
|
873 |
+
#~ "un formato legible para seres humanos, como \"1 hora\", \"4 días\", \"15 "
|
874 |
+
#~ "minutos\" (posibles atributos: <code>precision</code>)"
|
875 |
+
|
876 |
+
#~ msgid ""
|
877 |
+
#~ "The event end time. Will use the time format specified in the above "
|
878 |
+
#~ "settings"
|
879 |
+
#~ msgstr ""
|
880 |
+
#~ "La hora del fin del evento. Se utilizará el formato de hora especificado "
|
881 |
+
#~ "en las opciones anteriores"
|
882 |
+
|
883 |
+
#~ msgid ""
|
884 |
+
#~ "The event end date. Will use the date format specified in the above "
|
885 |
+
#~ "settings"
|
886 |
+
#~ msgstr ""
|
887 |
+
#~ "La fecha del fin del evento. Se utilizará el formato de hora especificado "
|
888 |
+
#~ "en las opciones anteriores"
|
889 |
+
|
890 |
+
#~ msgid ""
|
891 |
+
#~ "The event end date / time. Will use the format specified in the "
|
892 |
+
#~ "<code>format</code> attribute (possible attributes: <code>format</code>)"
|
893 |
+
#~ msgstr ""
|
894 |
+
#~ "La fecha y hora del fin del evento. Se utilizará el formato especificado "
|
895 |
+
#~ "en el atributo <code>format</code> (posibles atributos: <code>format</"
|
896 |
+
#~ "code>)"
|
897 |
+
|
898 |
+
#~ msgid ""
|
899 |
+
#~ "The difference between the end time of the event and the time now, in "
|
900 |
+
#~ "human-readable format (possible attributes: <code>precision</code>)"
|
901 |
+
#~ msgstr ""
|
902 |
+
#~ "La diferencia entre la hora del fin del evento y la hora actual, en un "
|
903 |
+
#~ "formato legible para seres humanos, como \"1 hora\", \"4 días\", \"15 "
|
904 |
+
#~ "minutos\" (posibles atributos: <code>precision</code>)"
|
905 |
+
|
906 |
+
#~ msgid ""
|
907 |
+
#~ "The event location (possible attributes: <code>html</code>, "
|
908 |
+
#~ "<code>markdown</code>)"
|
909 |
+
#~ msgstr ""
|
910 |
+
#~ "La ubicación del evento (posibles atributos: <code>html</code>, "
|
911 |
+
#~ "<code>markdown</code>)"
|
912 |
+
|
913 |
+
#~ msgid ""
|
914 |
+
#~ "Anything between the opening and closing shortcode tags (inlcuding "
|
915 |
+
#~ "further shortcodes) will be linked to Google Maps, using the event "
|
916 |
+
#~ "location as a search parameter (possible attributes: <code>newwindow</"
|
917 |
+
#~ "code>)"
|
918 |
+
#~ msgstr ""
|
919 |
+
#~ "Cualquier cosa entre las etiquetas de apertura y cierre del shortcode "
|
920 |
+
#~ "(incluyendo shortcodes adicionales) se enlazará con Google Maps, "
|
921 |
+
#~ "utilizando para ello la ubicación del evento como parámetro de búsqueda "
|
922 |
+
#~ "(atributos posibles: <code>newwindow</code>)"
|
923 |
+
|
924 |
+
#~ msgid ""
|
925 |
+
#~ "The event description (possible attributes: <code>html</code>, "
|
926 |
+
#~ "<code>markdown</code>, <code>limit</code>)"
|
927 |
+
#~ msgstr ""
|
928 |
+
#~ "La descripción del evento (atributos posibles: <code>html</code>, "
|
929 |
+
#~ "<code>markdown</code>, <code>limit</code>)"
|
930 |
+
|
931 |
+
#~ msgid ""
|
932 |
+
#~ "Anything between the opening and closing shortcode tags (inlcuding "
|
933 |
+
#~ "further shortcodes) will be linked to the Google Calendar page for the "
|
934 |
+
#~ "event (possible attributes: <code>newwindow</code>)"
|
935 |
+
#~ msgstr ""
|
936 |
+
#~ "Cualquier cosa entre las etiquetas de apertura y cierre del shortcode "
|
937 |
+
#~ "(incluyendo shortcodes adicionales) se enlazará con la página del evento "
|
938 |
+
#~ "de Google Calendar (atributos posibles: <code>newwindow</code>)"
|
939 |
+
|
940 |
+
#~ msgid "The raw URL to the Google Calendar page for the event"
|
941 |
+
#~ msgstr "La URL en bruto de la página de Google Calendar del evento"
|
942 |
+
|
943 |
+
#~ msgid ""
|
944 |
+
#~ "The length of the event, in human-readable format (possible attributes: "
|
945 |
+
#~ "<code>precision</code>)"
|
946 |
+
#~ msgstr ""
|
947 |
+
#~ "La duración del evento, en un formato legible por los seres humanos "
|
948 |
+
#~ "(atributos posibles: <code>precision</code>)"
|
949 |
+
|
950 |
+
#~ msgid ""
|
951 |
+
#~ "The position of the event in the current list, or the position of the "
|
952 |
+
#~ "event in the current month (for grids)"
|
953 |
+
#~ msgstr ""
|
954 |
+
#~ "La posición del evento en la lista actual, o la posición del evento en el "
|
955 |
+
#~ "mes actual (para rejillas)"
|
956 |
+
|
957 |
+
#~ msgid "The event UID (a unique identifier assigned to the event by Google)"
|
958 |
+
#~ msgstr ""
|
959 |
+
#~ "El UID del evento (un identificador único, asignado al evento por Google)"
|
960 |
+
|
961 |
+
#~ msgid "The title of the feed from which the event comes"
|
962 |
+
#~ msgstr "El título de la fuente RSS de la que procede el evento"
|
963 |
+
|
964 |
+
#~ msgid "The ID of the feed from which the event comes"
|
965 |
+
#~ msgstr "El ID de la fuente RSS de la que procede el evento"
|
966 |
+
|
967 |
+
#~ msgid ""
|
968 |
+
#~ "The calendar ID (a unique identifier assigned to the calendar by Google)"
|
969 |
+
#~ msgstr ""
|
970 |
+
#~ "El ID del calendario (un identificador único, asignado al calendario por "
|
971 |
+
#~ "Google)"
|
972 |
+
|
973 |
+
#~ msgid "Conditional shortcodes:"
|
974 |
+
#~ msgstr "Shortcodes condicionales:"
|
975 |
+
|
976 |
+
#~ msgid ""
|
977 |
+
#~ "Anything entered between the opening and closing tags of each of the "
|
978 |
+
#~ "following shortcodes will only be displayed if its condition (below) is "
|
979 |
+
#~ "met."
|
980 |
+
#~ msgstr ""
|
981 |
+
#~ "Cualquier cosa introducida entre las etiquetas de apertura y cierre de "
|
982 |
+
#~ "cada uno de los siguientes shortcodes se mostrará únicamente si se cumple "
|
983 |
+
#~ "la condición definida a continuación."
|
984 |
+
|
985 |
+
#~ msgid "The event is an all-day event"
|
986 |
+
#~ msgstr "El evento dura todo el día"
|
987 |
+
|
988 |
+
#~ msgid "The event is not an all-day event"
|
989 |
+
#~ msgstr "El evento no dura todo el día"
|
990 |
+
|
991 |
+
#~ msgid "The event has a title"
|
992 |
+
#~ msgstr "El evento tiene un título"
|
993 |
+
|
994 |
+
#~ msgid "The event has a description"
|
995 |
+
#~ msgstr "El evento tiene una descripción"
|
996 |
+
|
997 |
+
#~ msgid "The event has a location"
|
998 |
+
#~ msgstr "El evento tiene una ubicación"
|
999 |
+
|
1000 |
+
#~ msgid "The event is to be displayed in a tooltip (not a list)"
|
1001 |
+
#~ msgstr ""
|
1002 |
+
#~ "El evento debe mostrarse en un recuadro de información (no en una lista)"
|
1003 |
+
|
1004 |
+
#~ msgid "The event is to be displayed in a list (not a tooltip)"
|
1005 |
+
#~ msgstr ""
|
1006 |
+
#~ "El evento debe mostrarse en una lista (no en un recuadro de información)"
|
1007 |
+
|
1008 |
+
#~ msgid ""
|
1009 |
+
#~ "The event is taking place now (after the start time, but before the end "
|
1010 |
+
#~ "time)"
|
1011 |
+
#~ msgstr ""
|
1012 |
+
#~ "El evento tiene lugar ahora (después de la hora del comienzo, pero antes "
|
1013 |
+
#~ "de la hora del fin)"
|
1014 |
+
|
1015 |
+
#~ msgid ""
|
1016 |
+
#~ "The event is not taking place now (may have ended or not yet started)"
|
1017 |
+
#~ msgstr ""
|
1018 |
+
#~ "El evento no tiene lugar ahora (puede que ya haya acabado, o que no haya "
|
1019 |
+
#~ "comenzado todavía)"
|
1020 |
+
|
1021 |
+
#~ msgid "The event has started (even if it has also ended)"
|
1022 |
+
#~ msgstr "El evento ha comenzado (incluso si también ha acabado)"
|
1023 |
+
|
1024 |
+
#~ msgid "The event has not started"
|
1025 |
+
#~ msgstr "El evento no ha comenzado"
|
1026 |
+
|
1027 |
+
#~ msgid "The event has ended"
|
1028 |
+
#~ msgstr "El evento ha finalizado"
|
1029 |
+
|
1030 |
+
#~ msgid "The event has not ended (even if it hasn't started)"
|
1031 |
+
#~ msgstr "El evento no ha finalizado (incluso si no ha comenzado)"
|
1032 |
+
|
1033 |
+
#~ msgid "The event is the first of the day"
|
1034 |
+
#~ msgstr "El evento es el primero del día"
|
1035 |
+
|
1036 |
+
#~ msgid "The event is not the first of the day"
|
1037 |
+
#~ msgstr "El evento no es el primero del día"
|
1038 |
+
|
1039 |
+
#~ msgid "The event spans multiple days"
|
1040 |
+
#~ msgstr "El evento abarca varios días"
|
1041 |
+
|
1042 |
+
#~ msgid "The event does not span multiple days"
|
1043 |
+
#~ msgstr "El evento no abarca varios días"
|
1044 |
+
|
1045 |
+
#~ msgid "Attributes:"
|
1046 |
+
#~ msgstr "Atributos:"
|
1047 |
+
|
1048 |
+
#~ msgid "The possible attributes mentioned above are explained here:"
|
1049 |
+
#~ msgstr ""
|
1050 |
+
#~ "Los posibles atributos que se acaban de mencionar se explican a "
|
1051 |
+
#~ "continuación:"
|
1052 |
+
|
1053 |
+
#~ msgid ""
|
1054 |
+
#~ "Whether or not to parse HTML that has been entered in the relevant field. "
|
1055 |
+
#~ "Can be <code>true</code> or <code>false</code>"
|
1056 |
+
#~ msgstr ""
|
1057 |
+
#~ "Si se debe interpretar o no el HTML que se ha introducido en el campo "
|
1058 |
+
#~ "relevante. Puede ser <code>true</code> o <code>false</code>"
|
1059 |
+
|
1060 |
+
#~ msgid ""
|
1061 |
+
#~ "Whether or not to parse <a href=\"http://daringfireball.net/projects/"
|
1062 |
+
#~ "markdown\" target=\"_blank\">Markdown</a> that has been entered in the "
|
1063 |
+
#~ "relevant field. <a href=\"http://michelf.com/projects/php-markdown\" "
|
1064 |
+
#~ "target=\"_blank\">PHP Markdown</a> must be installed for this to work. "
|
1065 |
+
#~ "Can be <code>true</code> or <code>false</code>"
|
1066 |
+
#~ msgstr ""
|
1067 |
+
#~ "Si se debe interpretar o no el código <a href=\"http://daringfireball.net/"
|
1068 |
+
#~ "projects/markdown\" target=\"_blank\">Markdown</a> que se ha introducido "
|
1069 |
+
#~ "en el campo relevante. Para que esto funcione, se debe haber instalado <a "
|
1070 |
+
#~ "href=\"http://michelf.com/projects/php-markdown\" target=\"_blank\">PHP "
|
1071 |
+
#~ "Markdown</a> Puede ser <code>true</code> o <code>false</code>"
|
1072 |
+
|
1073 |
+
#~ msgid ""
|
1074 |
+
#~ "The word limit for the field. Should be specified as a positive integer"
|
1075 |
+
#~ msgstr ""
|
1076 |
+
#~ "El límite de palabras para el campo. Debe especificarse como un entero "
|
1077 |
+
#~ "positivo."
|
1078 |
+
|
1079 |
+
#~ msgid ""
|
1080 |
+
#~ "The date / time format to use. Should specified as a <a href=\"http://php."
|
1081 |
+
#~ "net/manual/en/function.date.php\" target=\"_blank\">PHP date format</a> "
|
1082 |
+
#~ "string"
|
1083 |
+
#~ msgstr ""
|
1084 |
+
#~ "El formato de fecha y hora que se utilizará. Debe especificarse como una "
|
1085 |
+
#~ "cadena en <a href=\"http://php.net/manual/en/function.date.php\" target="
|
1086 |
+
#~ "\"_blank\">formato de fecha de PHP</a>"
|
1087 |
+
|
1088 |
+
#~ msgid ""
|
1089 |
+
#~ "Whether or not the link should open in a new window / tab. Can be "
|
1090 |
+
#~ "<code>true</code> or <code>false</code>"
|
1091 |
+
#~ msgstr ""
|
1092 |
+
#~ "Si el enlace debe abrirse o no en una nueva ventana o pestaña. Puede ser "
|
1093 |
+
#~ "<code>true</code> o <code>false</code>"
|
1094 |
+
|
1095 |
+
#~ msgid ""
|
1096 |
+
#~ "How precise to be when displaying a time difference in human-readable "
|
1097 |
+
#~ "format. Should be specified as a positive integer"
|
1098 |
+
#~ msgstr ""
|
1099 |
+
#~ "Precisión cuando se muestre una diferencia de tiempo, en formato legible "
|
1100 |
+
#~ "por seres humanos. Debe especificarse como un entero positivo."
|
1101 |
+
|
1102 |
+
#~ msgid ""
|
1103 |
+
#~ "An offset (in seconds) to apply to start / end times before display. "
|
1104 |
+
#~ "Should be specified as a (positive or negative) integer"
|
1105 |
+
#~ msgstr ""
|
1106 |
+
#~ "Un desplazamiento (en segundos) que se aplicará a las horas de comienzo y "
|
1107 |
+
#~ "fin, antes de visualizarse. Debe especificarse como un entero, positivo o "
|
1108 |
+
#~ "negativo."
|
1109 |
+
|
1110 |
+
#~ msgid ""
|
1111 |
+
#~ "Whether or not to automatically convert URLs in the description to links. "
|
1112 |
+
#~ "Can be <code>true</code> or <code>false</code>"
|
1113 |
+
#~ msgstr ""
|
1114 |
+
#~ "Si deben convertirse o no de forma automáticamente las URLs en la "
|
1115 |
+
#~ "descripción a enlaces. Puede ser <code>true</code> o <code>false</code>"
|
1116 |
+
|
1117 |
+
#~ msgid ""
|
1118 |
+
#~ "You can use some HTML in the text fields, but ensure it is valid or "
|
1119 |
+
#~ "things might go wonky. Text fields can be empty too."
|
1120 |
+
#~ msgstr ""
|
1121 |
+
#~ "Puedes utilizar HTML en los campos de texto, pero asegúrate de que es "
|
1122 |
+
#~ "válido, o podrías obtener resultados extraños. Los campos de texto "
|
1123 |
+
#~ "también pueden estar vacíos."
|
1124 |
+
|
1125 |
+
#~ msgid "Don't display start time or date"
|
1126 |
+
#~ msgstr "No mostrar la hora o fecha del comienzo"
|
1127 |
+
|
1128 |
+
#~ msgid "Display start time and date (in that order)"
|
1129 |
+
#~ msgstr "Mostrar la hora y fecha del comienzo (en ese orden)"
|
1130 |
+
|
1131 |
+
#~ msgid "Display start date and time (in that order)"
|
1132 |
+
#~ msgstr "Mostrar la fecha y hora del comienzo (en ese orden)"
|
1133 |
+
|
1134 |
+
#~ msgid "Don't display end time or date"
|
1135 |
+
#~ msgstr "No mostrar la hora o fecha del fin"
|
1136 |
+
|
1137 |
+
#~ msgid "Display end date"
|
1138 |
+
#~ msgstr "Mostrar la fecha del fin"
|
1139 |
+
|
1140 |
+
#~ msgid "Display end time and date (in that order)"
|
1141 |
+
#~ msgstr "Mostrar la hora y fecha del fin (en ese orden)"
|
1142 |
+
|
1143 |
+
#~ msgid "Display end date and time (in that order)"
|
1144 |
+
#~ msgstr "Mostrar la fecha y hora del fin (en ese orden)"
|
1145 |
+
|
1146 |
+
#~ msgid "Show the location of events?"
|
1147 |
+
#~ msgstr "¿Mostrar la ubicación de los eventos?"
|
1148 |
+
|
1149 |
+
#~ msgid "Text to display before the location."
|
1150 |
+
#~ msgstr "Texto que se mostrará antes de la ubicación."
|
1151 |
+
|
1152 |
+
#~ msgid "Delete Feed"
|
1153 |
+
#~ msgstr "Borrar fuente RSS"
|
1154 |
+
|
1155 |
+
#~ msgid ""
|
1156 |
+
#~ "Are you want you want to delete this feed? (Remember to remove / adjust "
|
1157 |
+
#~ "any widgets or shortcodes associated with this feed)."
|
1158 |
+
#~ msgstr ""
|
1159 |
+
#~ "¿Estás seguro de que quieres borrar esta fuente RSS? (recuerda que debes "
|
1160 |
+
#~ "eliminar o reconfigurar cualquier widget o shortcode asociado con esta "
|
1161 |
+
#~ "fuente RSS)."
|
1162 |
+
|
1163 |
+
#~ msgid ""
|
1164 |
+
#~ "Make any changes you require to the feed details below, then click the "
|
1165 |
+
#~ "Save Changes button."
|
1166 |
+
#~ msgstr ""
|
1167 |
+
#~ "Haz a continuación los cambios que sean necesarios en los detalles de la "
|
1168 |
+
#~ "fuente RSS, y después pulsa el botón \"Guardar los cambios\"."
|
1169 |
+
|
1170 |
+
#~ msgid ""
|
1171 |
+
#~ "This will probably be something like: <code>http://www.google.com/"
|
1172 |
+
#~ "calendar/feeds/your-email@gmail.com/public/full</code>."
|
1173 |
+
#~ msgstr ""
|
1174 |
+
#~ "Será algo parecido a: <code>http://www.google.com/calendar/feeds/tu-"
|
1175 |
+
#~ "email@gmail.com/public/full</code>."
|
1176 |
+
|
1177 |
+
#~ msgid ""
|
1178 |
+
#~ "or: <code>http://www.google.com/calendar/feeds/your-email@gmail.com/"
|
1179 |
+
#~ "private-d65741b037h695ff274247f90746b2ty/basic</code>."
|
1180 |
+
#~ msgstr ""
|
1181 |
+
#~ "o bien: <code>http://www.google.com/calendar/feeds/tu-email@gmail.com/"
|
1182 |
+
#~ "private-d65741b037h695ff274247f90746b2ty/basic</code>."
|
1183 |
+
|
1184 |
+
#~ msgid ""
|
1185 |
+
#~ "The point in time at which to start retrieving events. Use the text-box "
|
1186 |
+
#~ "to specify an additional offset from you chosen start point. The offset "
|
1187 |
+
#~ "should be provided in seconds (3600 = 1 hour, 86400 = 1 day) and can be "
|
1188 |
+
#~ "negative. If you have selected the 'Specific date / time' option, enter a "
|
1189 |
+
#~ "<a href=\"http://www.timestampgenerator.com\" target=\"_blank\">UNIX "
|
1190 |
+
#~ "timestamp</a> in the text-box."
|
1191 |
+
#~ msgstr ""
|
1192 |
+
#~ "El punto en el tiempo a partir del cual se mostrarán los eventos. Utiliza "
|
1193 |
+
#~ "la caja de texto para especificar cualquier desplazamiento a partir del "
|
1194 |
+
#~ "punto de inicio que hayas escogido. El desplazamiento debe hacerse "
|
1195 |
+
#~ "constar en segundos (3600 = 1 hora, 86400 = 1 día), y no puede ser un "
|
1196 |
+
#~ "número negativo. Si has seleccionado la opción \"Fecha y hora específicas"
|
1197 |
+
#~ "\", escribe una <a href=\"http://www.timestampgenerator.com\" target="
|
1198 |
+
#~ "\"_blank\">fecha y hora en formato UNIX</a> en la caja de texto."
|
1199 |
+
|
1200 |
+
#~ msgid ""
|
1201 |
+
#~ "Use the event display builder to customize how event information will be "
|
1202 |
+
#~ "displayed in the grid tooltips and in lists. Use HTML and the shortcodes "
|
1203 |
+
#~ "(explained below) to display the information you require. A basic example "
|
1204 |
+
#~ "display format is provided as a starting point. For more information, "
|
1205 |
+
#~ "take a look at the <a href=\"http://www.rhanney.co.uk/plugins/google-"
|
1206 |
+
#~ "calendar-events/event-display-builder\" target=\"_blank\">event display "
|
1207 |
+
#~ "builder guide</a>."
|
1208 |
+
#~ msgstr ""
|
1209 |
+
#~ "Utiliza el constructor de presentación de eventos para personalizar cómo "
|
1210 |
+
#~ "se mostrará la información de los eventos en el cuadro de información de "
|
1211 |
+
#~ "la rejilla y en las listas. Utiliza HTML y los shortcodes que se explican "
|
1212 |
+
#~ "a continuación para mostrar la información que necesites. Un jemplo "
|
1213 |
+
#~ "básico de formato de presentación se proporciona como un punto de "
|
1214 |
+
#~ "arranque. Para más información, echa un vistazo a la <a href=\"http://www."
|
1215 |
+
#~ "rhanney.co.uk/plugins/google-calendar-events/event-display-builder\" "
|
1216 |
+
#~ "target=\"_blank\">guía del constructor de presentación de eventos</a>."
|
1217 |
+
|
1218 |
+
#~ msgid ""
|
1219 |
+
#~ "(More information on all of the below shortcodes and attributes, and "
|
1220 |
+
#~ "working examples, can be found in the <a href=\"http://www.rhanney.co.uk/"
|
1221 |
+
#~ "plugins/google-calendar-events/event-display-builder\" target=\"_blank"
|
1222 |
+
#~ "\">event display builder guide</a>)"
|
1223 |
+
#~ msgstr ""
|
1224 |
+
#~ "Se puede encontrar más información sobre todos los shortcodes y atributos "
|
1225 |
+
#~ "que aparecen a continuación, así como ejemplos de uso, en la <a href="
|
1226 |
+
#~ "\"http://www.rhanney.co.uk/plugins/google-calendar-events/event-display-"
|
1227 |
+
#~ "builder\" target=\"_blank\">Guía del constructor de presentación de "
|
1228 |
+
#~ "eventos</a> (en inglés)"
|
1229 |
+
|
1230 |
+
#~ msgid ""
|
1231 |
+
#~ "Show the description of events? (URLs in the description will be made "
|
1232 |
+
#~ "into links)."
|
1233 |
+
#~ msgstr ""
|
1234 |
+
#~ "¿Mostrar la descripción de los eventos? (las URLs de las descripciones se "
|
1235 |
+
#~ "convertirán en enlaces)."
|
1236 |
+
|
1237 |
+
#~ msgid "Click here to add a new feed"
|
1238 |
+
#~ msgstr "Haz clic aquí para añadir una nueva fuente RSS"
|
1239 |
+
|
1240 |
+
#~ msgid "Add Feed"
|
1241 |
+
#~ msgstr "Añadir una fuente RSS"
|
1242 |
+
|
1243 |
+
#~ msgid "Current Feeds"
|
1244 |
+
#~ msgstr "Fuentes RSS actuales"
|
1245 |
+
|
1246 |
+
#~ msgid "ID"
|
1247 |
+
#~ msgstr "ID"
|
1248 |
+
|
1249 |
+
#~ msgid "Title"
|
1250 |
+
#~ msgstr "Título"
|
1251 |
+
|
1252 |
+
#~ msgid "URL"
|
1253 |
+
#~ msgstr "URL"
|
1254 |
+
|
1255 |
+
#~ msgid "Refresh"
|
1256 |
+
#~ msgstr "Actualizar"
|
1257 |
+
|
1258 |
+
#~ msgid "Edit"
|
1259 |
+
#~ msgstr "Editar"
|
1260 |
+
|
1261 |
+
#~ msgid "Delete"
|
1262 |
+
#~ msgstr "Borrar"
|
1263 |
+
|
1264 |
+
#~ msgid "Custom stylesheet URL"
|
1265 |
+
#~ msgstr "URL de la hoja de estilos personalizada"
|
1266 |
+
|
1267 |
+
#~ msgid ""
|
1268 |
+
#~ "If you want to alter the default plugin styling, create a new stylesheet "
|
1269 |
+
#~ "on your server (not in the <code>google-calendar-events</code> directory) "
|
1270 |
+
#~ "and then enter its URL below."
|
1271 |
+
#~ msgstr ""
|
1272 |
+
#~ "Si quieres modificar los estilos por defecto del plugin, crea una nueva "
|
1273 |
+
#~ "hoja de estilos en tu servidor (no en el directorio <code>google-calendar-"
|
1274 |
+
#~ "events</code>) y escribe a continuación su URL."
|
1275 |
+
|
1276 |
+
#~ msgid "Add JavaScript to footer?"
|
1277 |
+
#~ msgstr "¿Añadir JavaScript al pie de página?"
|
1278 |
+
|
1279 |
+
#~ msgid ""
|
1280 |
+
#~ "If you are having issues with tooltips not appearing or the AJAX "
|
1281 |
+
#~ "functionality not working, try ticking the checkbox below."
|
1282 |
+
#~ msgstr ""
|
1283 |
+
#~ "Si tienes problemas con información que no aparece, o bien no funciona la "
|
1284 |
+
#~ "visualización con AJAX, prueba a activar la casilla que tienes a "
|
1285 |
+
#~ "continuación."
|
1286 |
+
|
1287 |
+
#~ msgid "Loading text"
|
1288 |
+
#~ msgstr "Texto de \"Cargando\""
|
1289 |
+
|
1290 |
+
#~ msgid "Text to display while calendar data is loading (on AJAX requests)."
|
1291 |
+
#~ msgstr ""
|
1292 |
+
#~ "Texto que se mostrará mientras los datos del calendario se cargan (en una "
|
1293 |
+
#~ "petición de AJAX)."
|
1294 |
+
|
1295 |
+
#~ msgid "Error message"
|
1296 |
+
#~ msgstr "Mensaje de error"
|
1297 |
+
|
1298 |
+
#~ msgid ""
|
1299 |
+
#~ "An error message to display to non-admin users if events cannot be "
|
1300 |
+
#~ "displayed for any reason (admins will see a message indicating the cause "
|
1301 |
+
#~ "of the problem)."
|
1302 |
+
#~ msgstr ""
|
1303 |
+
#~ "Un mensaje de error que se mostrará a los usuarios no administradores si "
|
1304 |
+
#~ "no se pueden mostrar los eventos por alguna razón (los administradores "
|
1305 |
+
#~ "verán otro mensaje, que indica la causa del problema)."
|
1306 |
+
|
1307 |
+
#~ msgid "Optimise event retrieval?"
|
1308 |
+
#~ msgstr "¿Quieres ptimizar la recuperación del evento?"
|
1309 |
+
|
1310 |
+
#~ msgid ""
|
1311 |
+
#~ "If this option is enabled, the plugin will use an experimental feature of "
|
1312 |
+
#~ "the Google Data API, which can improve performance significantly, "
|
1313 |
+
#~ "especially with large numbers of events. Google could potentially "
|
1314 |
+
#~ "remove / change this feature at any time."
|
1315 |
+
#~ msgstr ""
|
1316 |
+
#~ "Si esta opción está activada, el plugin utilizará una funcionalidad "
|
1317 |
+
#~ "experimental del API de Google Data, que permite mejorar "
|
1318 |
+
#~ "significativamenrte el rendimiento, especialmente con grandes números de "
|
1319 |
+
#~ "eventos. Ten en cuenta que Google podría eliminar o modificar esta "
|
1320 |
+
#~ "funcionalidad en cualquier momento."
|
1321 |
+
|
1322 |
+
#~ msgid "Use old styles?"
|
1323 |
+
#~ msgstr "¿Quieres utilizar los estilos antiguos?"
|
1324 |
+
|
1325 |
+
#~ msgid ""
|
1326 |
+
#~ "Some CSS changes were made in version 0.7. If this option is enabled, the "
|
1327 |
+
#~ "old CSS will still be added along with the main stylesheet. You should "
|
1328 |
+
#~ "consider updating your stylesheet so that you don't need this enabled."
|
1329 |
+
#~ msgstr ""
|
1330 |
+
#~ "En la versión 0.7, se han realizado algunos cambios en los estilos CSS. "
|
1331 |
+
#~ "Si esta opción está activada, los antiguos estilos CSS se añadirán junto "
|
1332 |
+
#~ "con la hoja de estilos principal. Deberías considerar la posibilidad de "
|
1333 |
+
#~ "actualizar tu hoja de estilo, para que no necesites activar esta opción."
|
1334 |
+
|
1335 |
+
#~ msgid "Save settings on uninstall?"
|
1336 |
+
#~ msgstr "¿Quieres guardar la configuración al desinstalar?"
|
1337 |
+
|
1338 |
+
#~ msgid ""
|
1339 |
+
#~ "Normally when you uninstall your plugin your settings are removed also. "
|
1340 |
+
#~ "Checking this option will save your settings even after an uninstall."
|
1341 |
+
#~ msgstr ""
|
1342 |
+
#~ "Normalmente, cuando se desinstalar un plugin, también se elimina la "
|
1343 |
+
#~ "configuración. Si activas esta opción, se guardará la configuración "
|
1344 |
+
#~ "incluso después de desinstalar."
|
1345 |
+
|
1346 |
+
#~ msgid "Save"
|
1347 |
+
#~ msgstr "Guardar"
|
1348 |
+
|
1349 |
+
#~ msgid "Refresh Feed Cache"
|
1350 |
+
#~ msgstr "Recargar la caché de fuentes RSS"
|
1351 |
+
|
1352 |
+
#~ msgid ""
|
1353 |
+
#~ "The plugin will automatically refresh the cache when it expires, but you "
|
1354 |
+
#~ "can manually clear the cache now by clicking the button below."
|
1355 |
+
#~ msgstr ""
|
1356 |
+
#~ "El plugin volverá a cargar automáticamente la caché cuando esta expire, "
|
1357 |
+
#~ "pero puedes borrar manualmente la caché ahora, haciendo clic en el botón "
|
1358 |
+
#~ "que aparece a continuación."
|
1359 |
+
|
1360 |
+
#~ msgid "Are you want you want to clear the cache data for this feed?"
|
1361 |
+
#~ msgstr ""
|
1362 |
+
#~ "¿Estás seguro de que quieres borrar los datos cacheados de esta fuente "
|
1363 |
+
#~ "RSS?"
|
1364 |
+
|
1365 |
+
#~ msgid "Notice:"
|
1366 |
+
#~ msgstr "Aviso:"
|
1367 |
+
|
1368 |
+
#~ msgid ""
|
1369 |
+
#~ "The way in which Google Calendar Events stores cached data has been much "
|
1370 |
+
#~ "improved in version 0.6. As you have upgraded from a previous version of "
|
1371 |
+
#~ "the plugin, there is likely to be some data from the old caching system "
|
1372 |
+
#~ "hanging around in your database that is now useless. Click below to clear "
|
1373 |
+
#~ "expired cached data from your database."
|
1374 |
+
#~ msgstr ""
|
1375 |
+
#~ "La forma en que el plugin Google Calendar Events almacena los datos "
|
1376 |
+
#~ "cacheados se ha mejorado mucho a partir de la versión 0.6. Dado que te "
|
1377 |
+
#~ "has actualizado desde una versión previa del plugin, es probable que en "
|
1378 |
+
#~ "la base de datos haya algunos datos inútiles procedentes del sistema de "
|
1379 |
+
#~ "cacheo anterior. Haz clic en el botón que tienes a continuación para "
|
1380 |
+
#~ "borrar los datos cacheados en tu base de datos."
|
1381 |
+
|
1382 |
+
#~ msgid "Clear expired cached data"
|
1383 |
+
#~ msgstr "Borrar los datos expirados de la caché"
|
1384 |
+
|
1385 |
+
#~ msgid "or"
|
1386 |
+
#~ msgstr "o"
|
1387 |
+
|
1388 |
+
#~ msgid "Ignore this notice"
|
1389 |
+
#~ msgstr "Ignorar esta noticia"
|
1390 |
+
|
1391 |
+
#~ msgid "Cancel"
|
1392 |
+
#~ msgstr "Cancelar"
|
1393 |
+
|
1394 |
+
#~ msgid "Refresh Feed"
|
1395 |
+
#~ msgstr "Recargar la fuente RSS"
|
1396 |
+
|
1397 |
+
#~ msgid "Save Changes"
|
1398 |
+
#~ msgstr "Guardar los cambios"
|
1399 |
+
|
1400 |
+
#~ msgid "Old cached data cleared."
|
1401 |
+
#~ msgstr "Se han borrado los datos antiguos cacheados."
|
1402 |
+
|
1403 |
+
#~ msgid "General options updated."
|
1404 |
+
#~ msgstr "Las opciones generales han sido guardadas"
|
1405 |
+
|
1406 |
+
#~ msgid ""
|
1407 |
+
#~ "No valid Feed IDs have been entered for this shortcode. Please check that "
|
1408 |
+
#~ "you have entered the IDs correctly and that the Feeds have not been "
|
1409 |
+
#~ "deleted."
|
1410 |
+
#~ msgstr ""
|
1411 |
+
#~ "No se ha introducido ningún ID de fuente RSS válida para este shortcode. "
|
1412 |
+
#~ "Por favor, comprueba que has escrito el ID correctamente y que la fuente "
|
1413 |
+
#~ "RSS no ha sido borrada."
|
1414 |
+
|
1415 |
+
#~ msgid ""
|
1416 |
+
#~ "No feeds have been added yet. You can add a feed in the Google Calendar "
|
1417 |
+
#~ "Events settings."
|
1418 |
+
#~ msgstr ""
|
1419 |
+
#~ "Todavía no se ha añadido ninguna fuente RSS. Puedes añadir una fuente RSS "
|
1420 |
+
#~ "en la configuración de Google Calendar Events."
|
1421 |
+
|
1422 |
+
#~ msgid ""
|
1423 |
+
#~ "1 or more of your feeds could not be displayed. The following errors "
|
1424 |
+
#~ "occurred:"
|
1425 |
+
#~ msgstr ""
|
1426 |
+
#~ "No se puede mostrar una o más de tus fuentes RSS. Se han producido los "
|
1427 |
+
#~ "siguientes errores:"
|
1428 |
+
|
1429 |
+
#~ msgid ""
|
1430 |
+
#~ "Major updates are coming to Google Calendar Events on August 23, 2014. "
|
1431 |
+
#~ msgstr ""
|
1432 |
+
#~ "Llegarán actualizaciones importantes al plugin Google Calendar Events el "
|
1433 |
+
#~ "23 de agosto de 2014. "
|
1434 |
+
|
1435 |
+
#~ msgid "Read more about the changes."
|
1436 |
+
#~ msgstr "Más información acerca de los cambios."
|
1437 |
+
|
1438 |
+
#~ msgid "Hide this"
|
1439 |
+
#~ msgstr "Ocultar esto"
|
1440 |
+
|
1441 |
+
#~ msgid ""
|
1442 |
+
#~ "No feeds have been added yet. You can add feeds in the Google Calendar "
|
1443 |
+
#~ "Events settings."
|
1444 |
+
#~ msgstr ""
|
1445 |
+
#~ "Todavía no se ha añadido ninguna fuente RSS. Puedes añadir fuentes en la "
|
1446 |
+
#~ "configuración de Google Calendar Events."
|
1447 |
+
|
1448 |
+
#~ msgid "Calendar Grid"
|
1449 |
+
#~ msgstr "Calendario en rejilla"
|
1450 |
+
|
1451 |
+
#~ msgid "List - grouped by date"
|
1452 |
+
#~ msgstr "Lista agrupada por fechas"
|
1453 |
+
|
1454 |
+
#~ msgid "Previous month"
|
1455 |
+
#~ msgstr "Mes anterior"
|
1456 |
+
|
1457 |
+
#~ msgid "Next month"
|
1458 |
+
#~ msgstr "Mes siguiente"
|
languages/gce.pot
ADDED
@@ -0,0 +1,643 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Google Calendar Events\n"
|
4 |
+
"POT-Creation-Date: 2014-09-16 12:29-0700\n"
|
5 |
+
"PO-Revision-Date: 2014-09-16 12:32-0700\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: en\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.4\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;_x\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: google-calendar-events/class-google-calendar-events-admin.php:67
|
19 |
+
#: google-calendar-events/class-google-calendar-events-admin.php:68
|
20 |
+
#: google-calendar-events/includes/register-settings.php:44
|
21 |
+
msgid "General Settings"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: google-calendar-events/class-google-calendar-events-admin.php:139
|
25 |
+
#: google-calendar-events/views/widgets.php:27
|
26 |
+
msgid "Google Calendar Events"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: google-calendar-events/class-google-calendar-events-admin.php:151
|
30 |
+
msgid "Feeds"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: google-calendar-events/includes/admin/admin-functions.php:20
|
34 |
+
msgid "Cache has been cleared for this feed."
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: google-calendar-events/includes/class-gce-display.php:218
|
38 |
+
msgid "There are currently no events to display."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: google-calendar-events/includes/class-gce-event.php:499
|
42 |
+
#, php-format
|
43 |
+
msgid "%s year"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: google-calendar-events/includes/class-gce-event.php:499
|
47 |
+
#, php-format
|
48 |
+
msgid "%s years"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: google-calendar-events/includes/class-gce-event.php:500
|
52 |
+
#, php-format
|
53 |
+
msgid "%s month"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: google-calendar-events/includes/class-gce-event.php:500
|
57 |
+
#, php-format
|
58 |
+
msgid "%s months"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: google-calendar-events/includes/class-gce-event.php:501
|
62 |
+
#, php-format
|
63 |
+
msgid "%s week"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: google-calendar-events/includes/class-gce-event.php:501
|
67 |
+
#, php-format
|
68 |
+
msgid "%s weeks"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: google-calendar-events/includes/class-gce-event.php:502
|
72 |
+
#, php-format
|
73 |
+
msgid "%s day"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: google-calendar-events/includes/class-gce-event.php:502
|
77 |
+
#, php-format
|
78 |
+
msgid "%s days"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: google-calendar-events/includes/class-gce-event.php:503
|
82 |
+
#, php-format
|
83 |
+
msgid "%s hour"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: google-calendar-events/includes/class-gce-event.php:503
|
87 |
+
#, php-format
|
88 |
+
msgid "%s hours"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: google-calendar-events/includes/class-gce-event.php:504
|
92 |
+
#, php-format
|
93 |
+
msgid "%s min"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: google-calendar-events/includes/class-gce-event.php:504
|
97 |
+
#, php-format
|
98 |
+
msgid "%s mins"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: google-calendar-events/includes/class-gce-event.php:532
|
102 |
+
msgid ", "
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: google-calendar-events/includes/class-gce-feed.php:93
|
106 |
+
msgid ""
|
107 |
+
"The feed URL has not been set. Please make sure to set it correctly in the "
|
108 |
+
"Feed settings."
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: google-calendar-events/includes/class-gce-feed.php:180
|
112 |
+
msgid ""
|
113 |
+
"Some data was retrieved, but could not be parsed successfully. Please ensure "
|
114 |
+
"your feed URL is correct."
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: google-calendar-events/includes/class-gce-feed.php:186
|
118 |
+
msgid ""
|
119 |
+
"The feed could not be found (404). Please ensure your feed URL is correct."
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: google-calendar-events/includes/class-gce-feed.php:189
|
123 |
+
msgid ""
|
124 |
+
"Access to this feed was denied (403). Please ensure you have public sharing "
|
125 |
+
"enabled for your calendar."
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: google-calendar-events/includes/class-gce-feed.php:192
|
129 |
+
#, php-format
|
130 |
+
msgid ""
|
131 |
+
"The feed data could not be retrieved. Error code: %s. Please ensure your "
|
132 |
+
"feed URL is correct."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: google-calendar-events/includes/class-gce-feed.php:197
|
136 |
+
msgid " Please ensure your feed URL is correct."
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:21
|
140 |
+
msgid "Google Calendar Feeds"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:22
|
144 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:24
|
145 |
+
msgid "Feed"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:23
|
149 |
+
msgid "GCal Events"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:25
|
153 |
+
msgid "Add New"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:26
|
157 |
+
msgid "Add New Feed"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:27
|
161 |
+
msgid "New Feed"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:28
|
165 |
+
msgid "Edit Feed"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:29
|
169 |
+
msgid "View Feed"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:30
|
173 |
+
msgid "All GCal Feeds"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:31
|
177 |
+
msgid "Search GCal Feeds"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:32
|
181 |
+
msgid "No feeds found."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:33
|
185 |
+
msgid "No feeds found in Trash."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:75
|
189 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:76
|
190 |
+
#, php-format
|
191 |
+
msgid "%4$s updated. %1$sView %2$s%3$s"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:77
|
195 |
+
#, php-format
|
196 |
+
msgid "%4$s published. %1$sView %2$s%3$s"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:78
|
200 |
+
#, php-format
|
201 |
+
msgid "%4$s saved. %1$sView %2$s%3$s"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:79
|
205 |
+
#, php-format
|
206 |
+
msgid "%4$s submitted. %1$sView %2$s%3$s"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:80
|
210 |
+
#, php-format
|
211 |
+
msgid "%4$s draft updated. %1$sView %2$s%3$s"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:209
|
215 |
+
msgid "Feed ID"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:210
|
219 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:57
|
220 |
+
msgid "Feed Shortcode"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:211
|
224 |
+
msgid "Max Events"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:212
|
228 |
+
msgid "Display Type"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:243
|
232 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:181
|
233 |
+
#: google-calendar-events/views/widgets.php:170
|
234 |
+
msgid "Grid"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:245
|
238 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:182
|
239 |
+
#: google-calendar-events/views/widgets.php:172
|
240 |
+
msgid "List"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: google-calendar-events/includes/gce-feed-cpt.php:247
|
244 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:183
|
245 |
+
#: google-calendar-events/views/widgets.php:173
|
246 |
+
msgid "Grouped List"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: google-calendar-events/includes/register-settings.php:29
|
250 |
+
msgid "Save Settings"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: google-calendar-events/includes/register-settings.php:30
|
254 |
+
msgid ""
|
255 |
+
"Save your settings when uninstalling this plugin. Useful when upgrading or "
|
256 |
+
"re-installing."
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: google-calendar-events/includes/register-settings.php:132
|
260 |
+
#, php-format
|
261 |
+
msgid ""
|
262 |
+
"The callback function used for the <strong>%s</strong> setting is missing."
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: google-calendar-events/views/admin/display-options-meta.php:39
|
266 |
+
msgid ""
|
267 |
+
"Check this box to use the simple display options below instead of the Event "
|
268 |
+
"Builder code on the left."
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: google-calendar-events/views/admin/display-options-meta.php:44
|
272 |
+
msgid "Start date / time display"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: google-calendar-events/views/admin/display-options-meta.php:45
|
276 |
+
msgid "Select how to display the start date / time."
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: google-calendar-events/views/admin/display-options-meta.php:47
|
280 |
+
#: google-calendar-events/views/admin/display-options-meta.php:61
|
281 |
+
msgid "None"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: google-calendar-events/views/admin/display-options-meta.php:48
|
285 |
+
msgid "Start time"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: google-calendar-events/views/admin/display-options-meta.php:49
|
289 |
+
msgid "Start date"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: google-calendar-events/views/admin/display-options-meta.php:50
|
293 |
+
msgid "Start time and date"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: google-calendar-events/views/admin/display-options-meta.php:51
|
297 |
+
msgid "Start date and time"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: google-calendar-events/views/admin/display-options-meta.php:53
|
301 |
+
msgid "Text to display before the start time."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: google-calendar-events/views/admin/display-options-meta.php:58
|
305 |
+
msgid "End time/date display"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: google-calendar-events/views/admin/display-options-meta.php:59
|
309 |
+
msgid "Select how to display the end date / time."
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: google-calendar-events/views/admin/display-options-meta.php:62
|
313 |
+
msgid "End time"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: google-calendar-events/views/admin/display-options-meta.php:63
|
317 |
+
msgid "End date"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: google-calendar-events/views/admin/display-options-meta.php:64
|
321 |
+
msgid "End time and date"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: google-calendar-events/views/admin/display-options-meta.php:65
|
325 |
+
msgid "End date and time"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: google-calendar-events/views/admin/display-options-meta.php:67
|
329 |
+
msgid "Text to display before the end time."
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: google-calendar-events/views/admin/display-options-meta.php:72
|
333 |
+
msgid "Separator"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: google-calendar-events/views/admin/display-options-meta.php:74
|
337 |
+
msgid ""
|
338 |
+
"If you have chosen to display both the time and date above, enter the text / "
|
339 |
+
"characters to display between the time and date here (including any spaces)."
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: google-calendar-events/views/admin/display-options-meta.php:88
|
343 |
+
msgid "Description"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: google-calendar-events/views/admin/display-options-meta.php:91
|
347 |
+
msgid ""
|
348 |
+
"Show the description of events? (URLs in the description will be made into "
|
349 |
+
"links)."
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: google-calendar-events/views/admin/display-options-meta.php:93
|
353 |
+
msgid "Text to display before the description."
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: google-calendar-events/views/admin/display-options-meta.php:95
|
357 |
+
msgid ""
|
358 |
+
"Maximum number of words to show from description. Leave blank for no limit."
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: google-calendar-events/views/admin/display-options-meta.php:100
|
362 |
+
msgid "Event Link"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: google-calendar-events/views/admin/display-options-meta.php:103
|
366 |
+
msgid "Show a link to the Google Calendar page for an event?"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: google-calendar-events/views/admin/display-options-meta.php:107
|
370 |
+
msgid "Links open in a new window / tab?"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: google-calendar-events/views/admin/display-options-meta.php:109
|
374 |
+
msgid "The link text to be displayed."
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:38
|
378 |
+
msgid ""
|
379 |
+
"We're <strong>smack dab</strong> in the middle of building additional "
|
380 |
+
"features for this plugin. Have ideas?"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:41
|
384 |
+
msgid "Visit our roadmap and tell us what you're looking for"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:47
|
388 |
+
msgid "Want to know when we release something new?"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:50
|
392 |
+
msgid "Get notified of major plugin updates"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:60
|
396 |
+
msgid ""
|
397 |
+
"Copy and paste this shortcode to display this Google Calendar feed in any "
|
398 |
+
"post or page."
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:64
|
402 |
+
msgid "GCal Feed URL"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:68
|
406 |
+
msgid "The Google Calendar feed URL."
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:69
|
410 |
+
msgid "Example"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:70
|
414 |
+
msgid "How to find your GCal feed URL"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:76
|
418 |
+
msgid "Search Query"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:79
|
422 |
+
msgid "Find and show events based on a search query."
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:84
|
426 |
+
msgid "Expand Recurring Events?"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:86
|
430 |
+
msgid "Yes"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:87
|
434 |
+
msgid ""
|
435 |
+
"This will show recurring events each time they occur, otherwise it will only "
|
436 |
+
"show the event the first time it occurs."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:92
|
440 |
+
msgid "Retrieve Events From"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:95
|
444 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:111
|
445 |
+
msgid "Today"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:96
|
449 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:112
|
450 |
+
msgid "Start of current week"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:97
|
454 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:113
|
455 |
+
msgid "Start of current month"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:98
|
459 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:114
|
460 |
+
msgid "End of current month"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:99
|
464 |
+
msgid "The beginning of time"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:100
|
468 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:116
|
469 |
+
msgid "Specific date"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:103
|
473 |
+
msgid "The point in time at which to start retrieving events."
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:108
|
477 |
+
msgid "Retrieve Events Until"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:115
|
481 |
+
msgid "The end of time"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:119
|
485 |
+
msgid "The point in time at which to stop retrieving events."
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:124
|
489 |
+
msgid "Max Number of Events"
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:127
|
493 |
+
msgid "Maximum number of events to show."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:132
|
497 |
+
msgid "Date Format"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:136
|
501 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:147
|
502 |
+
#, php-format
|
503 |
+
msgid "Use %sPHP date formatting%s."
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:137
|
507 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:148
|
508 |
+
msgid "Leave blank to use the default."
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:143
|
512 |
+
msgid "Time Format"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:154
|
516 |
+
msgid "Timezone Adjustment"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:157
|
520 |
+
msgid ""
|
521 |
+
"If you are having problems with dates and times displaying in the wrong "
|
522 |
+
"timezone, select a city in your required timezone here."
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:162
|
526 |
+
msgid "Cache Duration"
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:165
|
530 |
+
msgid ""
|
531 |
+
"The length of time, in seconds, to cache the feed (43200 = 12 hours). If "
|
532 |
+
"this feed changes regularly, you may want to reduce the cache duration."
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:170
|
536 |
+
msgid "Multiple Day Events"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:172
|
540 |
+
msgid "Show on each day"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:173
|
544 |
+
msgid ""
|
545 |
+
"Show events that span multiple days on each day that they span, rather than "
|
546 |
+
"just the first day."
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:178
|
550 |
+
msgid "Display Mode"
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:185
|
554 |
+
msgid "Choose how you want your calendar to be displayed."
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:190
|
558 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:192
|
559 |
+
msgid "Clear Cache"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: google-calendar-events/views/admin/gce-feed-meta-display.php:195
|
563 |
+
#, php-format
|
564 |
+
msgid ""
|
565 |
+
"This will clear your feed cache. This also automatically happens when you "
|
566 |
+
"save your changes. %sIf you make changes you %sMUST%s save first or your "
|
567 |
+
"changes will be lost."
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: google-calendar-events/views/admin/gce-feed-sidebar-help.php:6
|
571 |
+
msgid "Documentation & Getting Started"
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: google-calendar-events/views/admin/gce-feed-sidebar-help.php:12
|
575 |
+
msgid "Community Support Forums"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: google-calendar-events/views/admin/gce-feed-sidebar-help.php:18
|
579 |
+
msgid "Get Notified of Major Updates"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: google-calendar-events/views/admin/gce-feed-sidebar-help.php:24
|
583 |
+
msgid "Now Accepting 5-Star Reviews!"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: google-calendar-events/views/widgets.php:28
|
587 |
+
msgid ""
|
588 |
+
"Display a list or calendar grid of events from one or more Google Calendar "
|
589 |
+
"feeds you have added"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: google-calendar-events/views/widgets.php:72
|
593 |
+
msgid ""
|
594 |
+
"No valid Feed IDs have been entered for this widget. Please check that you "
|
595 |
+
"have entered the IDs correctly in the widget settings (Appearance > "
|
596 |
+
"Widgets), and that the Feeds have not been deleted."
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: google-calendar-events/views/widgets.php:104
|
600 |
+
msgid "You have not added any feeds yet."
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: google-calendar-events/views/widgets.php:142
|
604 |
+
msgid "There are no feeds created yet."
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: google-calendar-events/views/widgets.php:143
|
608 |
+
msgid "Add your first feed!"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: google-calendar-events/views/widgets.php:163
|
612 |
+
msgid "Feeds to display, as a comma separated list (e.g. 101,102,103)"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: google-calendar-events/views/widgets.php:168
|
616 |
+
msgid "Display events as:"
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: google-calendar-events/views/widgets.php:171
|
620 |
+
msgid "Calendar Grid - with AJAX"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: google-calendar-events/views/widgets.php:178
|
624 |
+
msgid "Maximum no. events to display. Enter 0 to show all retrieved."
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: google-calendar-events/views/widgets.php:183
|
628 |
+
msgid "Sort order (only applies to lists):"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: google-calendar-events/views/widgets.php:185
|
632 |
+
msgid "Ascending"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: google-calendar-events/views/widgets.php:186
|
636 |
+
msgid "Descending"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: google-calendar-events/views/widgets.php:190
|
640 |
+
msgid ""
|
641 |
+
"Display title on tooltip / list item (e.g. 'Events on 7th March') Grouped "
|
642 |
+
"lists always have a title displayed."
|
643 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -28,11 +28,13 @@ Parses Google Calendar feeds and displays the events as a calendar grid or list
|
|
28 |
###Feature Requests and Updates###
|
29 |
|
30 |
* [Public roadmap/feature requests](https://trello.com/b/ZQSzsarY)
|
31 |
-
* [Get notified
|
32 |
* [Follow this project on Github](https://github.com/pderksen/WP-Google-Calendar-Events)
|
33 |
|
34 |
This plugin was originally created by [Ross Hanney](http://www.rhanney.co.uk), a web developer based in the UK specialising in WordPress and PHP.
|
35 |
|
|
|
|
|
36 |
== Installation ==
|
37 |
|
38 |
There are three ways to install this plugin.
|
@@ -77,6 +79,13 @@ There are three ways to install this plugin.
|
|
77 |
|
78 |
== Changelog ==
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
= 2.0.1 =
|
81 |
|
82 |
* Fixed display errors with certain event builder shortcodes.
|
28 |
###Feature Requests and Updates###
|
29 |
|
30 |
* [Public roadmap/feature requests](https://trello.com/b/ZQSzsarY)
|
31 |
+
* [Get notified when new features are released](http://eepurl.com/0_VsT)
|
32 |
* [Follow this project on Github](https://github.com/pderksen/WP-Google-Calendar-Events)
|
33 |
|
34 |
This plugin was originally created by [Ross Hanney](http://www.rhanney.co.uk), a web developer based in the UK specialising in WordPress and PHP.
|
35 |
|
36 |
+
Spanish translation provided by Eduardo Larequi of [educacion.navarra.es/web/pnte/](http://www.educacion.navarra.es/web/pnte/).
|
37 |
+
|
38 |
== Installation ==
|
39 |
|
40 |
There are three ways to install this plugin.
|
79 |
|
80 |
== Changelog ==
|
81 |
|
82 |
+
= 2.0.2 =
|
83 |
+
|
84 |
+
* Added Spanish translation (thanks to Eduardo Larequi of [educacion.navarra.es/web/pnte/](http://www.educacion.navarra.es/web/pnte/)).
|
85 |
+
* Fixed timezone issues by forcing calendar feeds to use the timezone selected in the site's General Settings. Feed-specific timezone setting removed.
|
86 |
+
* Fixed a bug with recurring events display.
|
87 |
+
* Fixed an upgrade bug with multiple day events.
|
88 |
+
|
89 |
= 2.0.1 =
|
90 |
|
91 |
* Fixed display errors with certain event builder shortcodes.
|
views/admin/gce-feed-meta-display.php
CHANGED
@@ -44,10 +44,10 @@
|
|
44 |
<br/>
|
45 |
<br/>
|
46 |
|
47 |
-
<?php echo __( 'Want to
|
48 |
<strong>
|
49 |
<a href="http://eepurl.com/0_VsT" target="_blank">
|
50 |
-
<?php echo __( 'Get notified
|
51 |
</a>
|
52 |
</strong>
|
53 |
</div>
|
@@ -150,14 +150,6 @@
|
|
150 |
</td>
|
151 |
</tr>
|
152 |
|
153 |
-
<tr>
|
154 |
-
<th scope="row"><label for="gce_timezone_offset"><?php _e( 'Timezone Adjustment', 'gce' ); ?></label></th>
|
155 |
-
<td>
|
156 |
-
<?php echo gce_add_timezone_field(); ?>
|
157 |
-
<p class="description"><?php _e( 'If you are having problems with dates and times displaying in the wrong timezone, select a city in your required timezone here.', 'gce' ); ?></p>
|
158 |
-
</td>
|
159 |
-
</tr>
|
160 |
-
|
161 |
<tr>
|
162 |
<th scope="row"><label for="gce_cache"><?php _e( 'Cache Duration', 'gce' ); ?></label></th>
|
163 |
<td>
|
@@ -199,32 +191,3 @@
|
|
199 |
</td>
|
200 |
</tr>
|
201 |
</table>
|
202 |
-
|
203 |
-
|
204 |
-
<?php
|
205 |
-
/**
|
206 |
-
* Since we have a huge list of Timezones we use this to grab them
|
207 |
-
*
|
208 |
-
* @since 2.0.0
|
209 |
-
*/
|
210 |
-
function gce_add_timezone_field() {
|
211 |
-
global $post;
|
212 |
-
|
213 |
-
$gce_timezone_offset = get_post_meta( $post->ID, 'gce_timezone_offset', true );
|
214 |
-
|
215 |
-
require_once( 'timezone-choices.php' );
|
216 |
-
|
217 |
-
$timezone_list = gce_get_timezone_choices();
|
218 |
-
|
219 |
-
//Set selected="selected" for default option
|
220 |
-
if( ! empty( $gce_timezone_offset ) ) {
|
221 |
-
$timezone_list = str_replace(('<option value="' . $gce_timezone_offset . '"'), ('<option value="' . $gce_timezone_offset . '" selected="selected"'), $timezone_list);
|
222 |
-
} else {
|
223 |
-
$timezone_list = str_replace( '<option value="default">Default</option>', '<option value="default" selected="selected">Default</option>', $timezone_list );
|
224 |
-
}
|
225 |
-
|
226 |
-
return $timezone_list;
|
227 |
-
|
228 |
-
}
|
229 |
-
|
230 |
-
|
44 |
<br/>
|
45 |
<br/>
|
46 |
|
47 |
+
<?php echo __( 'Want to be in the know?', 'gce' ); ?>
|
48 |
<strong>
|
49 |
<a href="http://eepurl.com/0_VsT" target="_blank">
|
50 |
+
<?php echo __( 'Get notified when new features are released', 'gce' ); ?>
|
51 |
</a>
|
52 |
</strong>
|
53 |
</div>
|
150 |
</td>
|
151 |
</tr>
|
152 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
<tr>
|
154 |
<th scope="row"><label for="gce_cache"><?php _e( 'Cache Duration', 'gce' ); ?></label></th>
|
155 |
<td>
|
191 |
</td>
|
192 |
</tr>
|
193 |
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
views/admin/gce-feed-sidebar-help.php
CHANGED
@@ -15,13 +15,13 @@
|
|
15 |
<li>
|
16 |
<div class="dashicons dashicons-arrow-right-alt2"></div>
|
17 |
<a href="http://eepurl.com/0_VsT" target="_blank">
|
18 |
-
<?php _e( 'Get
|
19 |
</li>
|
20 |
|
21 |
<li>
|
22 |
<div class="dashicons dashicons-arrow-right-alt2"></div>
|
23 |
<a href="http://wordpress.org/support/view/plugin-reviews/google-calendar-events" target="_blank">
|
24 |
-
<?php _e( '
|
25 |
</li>
|
26 |
</ul>
|
27 |
</div>
|
15 |
<li>
|
16 |
<div class="dashicons dashicons-arrow-right-alt2"></div>
|
17 |
<a href="http://eepurl.com/0_VsT" target="_blank">
|
18 |
+
<?php _e( 'Get new feature release notifications', 'gce' ); ?></a>
|
19 |
</li>
|
20 |
|
21 |
<li>
|
22 |
<div class="dashicons dashicons-arrow-right-alt2"></div>
|
23 |
<a href="http://wordpress.org/support/view/plugin-reviews/google-calendar-events" target="_blank">
|
24 |
+
<?php _e( 'Mind a plugin rating? Thanks!', 'gce' ); ?></a>
|
25 |
</li>
|
26 |
</ul>
|
27 |
</div>
|
views/admin/timezone-choices.php
DELETED
@@ -1,443 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Timezone functions
|
5 |
-
*
|
6 |
-
* @package GCE
|
7 |
-
* @author Phil Derksen <pderksen@gmail.com>, Nick Young <mycorpweb@gmail.com>
|
8 |
-
* @license GPL-2.0+
|
9 |
-
* @copyright 2014 Phil Derksen
|
10 |
-
*/
|
11 |
-
|
12 |
-
/**
|
13 |
-
* Returns the HTML for the Timezone select box on the CPT screens
|
14 |
-
*
|
15 |
-
* @since 2.0.0
|
16 |
-
*/
|
17 |
-
function gce_get_timezone_choices(){
|
18 |
-
return '
|
19 |
-
<select name="gce_timezone_offset" id="gce_timezone_offset">
|
20 |
-
<option value="default">Default</option>
|
21 |
-
<optgroup label="Africa">
|
22 |
-
<option value="Africa/Abidjan">Abidjan</option>
|
23 |
-
<option value="Africa/Accra">Accra</option>
|
24 |
-
<option value="Africa/Addis_Ababa">Addis Ababa</option>
|
25 |
-
<option value="Africa/Algiers">Algiers</option>
|
26 |
-
<option value="Africa/Asmara">Asmara</option>
|
27 |
-
<option value="Africa/Bamako">Bamako</option>
|
28 |
-
<option value="Africa/Bangui">Bangui</option>
|
29 |
-
<option value="Africa/Banjul">Banjul</option>
|
30 |
-
<option value="Africa/Bissau">Bissau</option>
|
31 |
-
<option value="Africa/Blantyre">Blantyre</option>
|
32 |
-
<option value="Africa/Brazzaville">Brazzaville</option>
|
33 |
-
<option value="Africa/Bujumbura">Bujumbura</option>
|
34 |
-
<option value="Africa/Cairo">Cairo</option>
|
35 |
-
<option value="Africa/Casablanca">Casablanca</option>
|
36 |
-
<option value="Africa/Ceuta">Ceuta</option>
|
37 |
-
<option value="Africa/Conakry">Conakry</option>
|
38 |
-
<option value="Africa/Dakar">Dakar</option>
|
39 |
-
<option value="Africa/Dar_es_Salaam">Dar es Salaam</option>
|
40 |
-
<option value="Africa/Djibouti">Djibouti</option>
|
41 |
-
<option value="Africa/Douala">Douala</option>
|
42 |
-
<option value="Africa/El_Aaiun">El Aaiun</option>
|
43 |
-
<option value="Africa/Freetown">Freetown</option>
|
44 |
-
<option value="Africa/Gaborone">Gaborone</option>
|
45 |
-
<option value="Africa/Harare">Harare</option>
|
46 |
-
<option value="Africa/Johannesburg">Johannesburg</option>
|
47 |
-
<option value="Africa/Kampala">Kampala</option>
|
48 |
-
<option value="Africa/Khartoum">Khartoum</option>
|
49 |
-
<option value="Africa/Kigali">Kigali</option>
|
50 |
-
<option value="Africa/Kinshasa">Kinshasa</option>
|
51 |
-
<option value="Africa/Lagos">Lagos</option>
|
52 |
-
<option value="Africa/Libreville">Libreville</option>
|
53 |
-
<option value="Africa/Lome">Lome</option>
|
54 |
-
<option value="Africa/Luanda">Luanda</option>
|
55 |
-
<option value="Africa/Lubumbashi">Lubumbashi</option>
|
56 |
-
<option value="Africa/Lusaka">Lusaka</option>
|
57 |
-
<option value="Africa/Malabo">Malabo</option>
|
58 |
-
<option value="Africa/Maputo">Maputo</option>
|
59 |
-
<option value="Africa/Maseru">Maseru</option>
|
60 |
-
<option value="Africa/Mbabane">Mbabane</option>
|
61 |
-
<option value="Africa/Mogadishu">Mogadishu</option>
|
62 |
-
<option value="Africa/Monrovia">Monrovia</option>
|
63 |
-
<option value="Africa/Nairobi">Nairobi</option>
|
64 |
-
<option value="Africa/Ndjamena">Ndjamena</option>
|
65 |
-
<option value="Africa/Niamey">Niamey</option>
|
66 |
-
<option value="Africa/Nouakchott">Nouakchott</option>
|
67 |
-
<option value="Africa/Ouagadougou">Ouagadougou</option>
|
68 |
-
<option value="Africa/Porto-Novo">Porto-Novo</option>
|
69 |
-
<option value="Africa/Sao_Tome">Sao Tome</option>
|
70 |
-
<option value="Africa/Tripoli">Tripoli</option>
|
71 |
-
<option value="Africa/Tunis">Tunis</option>
|
72 |
-
<option value="Africa/Windhoek">Windhoek</option>
|
73 |
-
</optgroup>
|
74 |
-
<optgroup label="America">
|
75 |
-
<option value="America/Adak">Adak</option>
|
76 |
-
<option value="America/Anchorage">Anchorage</option>
|
77 |
-
<option value="America/Anguilla">Anguilla</option>
|
78 |
-
<option value="America/Antigua">Antigua</option>
|
79 |
-
<option value="America/Araguaina">Araguaina</option>
|
80 |
-
<option value="America/Argentina/Buenos_Aires">Argentina - Buenos Aires</option>
|
81 |
-
<option value="America/Argentina/Catamarca">Argentina - Catamarca</option>
|
82 |
-
<option value="America/Argentina/Cordoba">Argentina - Cordoba</option>
|
83 |
-
<option value="America/Argentina/Jujuy">Argentina - Jujuy</option>
|
84 |
-
<option value="America/Argentina/La_Rioja">Argentina - La Rioja</option>
|
85 |
-
<option value="America/Argentina/Mendoza">Argentina - Mendoza</option>
|
86 |
-
<option value="America/Argentina/Rio_Gallegos">Argentina - Rio Gallegos</option>
|
87 |
-
<option value="America/Argentina/Salta">Argentina - Salta</option>
|
88 |
-
<option value="America/Argentina/San_Juan">Argentina - San Juan</option>
|
89 |
-
<option value="America/Argentina/San_Luis">Argentina - San Luis</option>
|
90 |
-
<option value="America/Argentina/Tucuman">Argentina - Tucuman</option>
|
91 |
-
<option value="America/Argentina/Ushuaia">Argentina - Ushuaia</option>
|
92 |
-
<option value="America/Aruba">Aruba</option>
|
93 |
-
<option value="America/Asuncion">Asuncion</option>
|
94 |
-
<option value="America/Atikokan">Atikokan</option>
|
95 |
-
<option value="America/Bahia">Bahia</option>
|
96 |
-
<option value="America/Barbados">Barbados</option>
|
97 |
-
<option value="America/Belem">Belem</option>
|
98 |
-
<option value="America/Belize">Belize</option>
|
99 |
-
<option value="America/Blanc-Sablon">Blanc-Sablon</option>
|
100 |
-
<option value="America/Boa_Vista">Boa Vista</option>
|
101 |
-
<option value="America/Bogota">Bogota</option>
|
102 |
-
<option value="America/Boise">Boise</option>
|
103 |
-
<option value="America/Cambridge_Bay">Cambridge Bay</option>
|
104 |
-
<option value="America/Campo_Grande">Campo Grande</option>
|
105 |
-
<option value="America/Cancun">Cancun</option>
|
106 |
-
<option value="America/Caracas">Caracas</option>
|
107 |
-
<option value="America/Cayenne">Cayenne</option>
|
108 |
-
<option value="America/Cayman">Cayman</option>
|
109 |
-
<option value="America/Chicago">Chicago</option>
|
110 |
-
<option value="America/Chihuahua">Chihuahua</option>
|
111 |
-
<option value="America/Costa_Rica">Costa Rica</option>
|
112 |
-
<option value="America/Cuiaba">Cuiaba</option>
|
113 |
-
<option value="America/Curacao">Curacao</option>
|
114 |
-
<option value="America/Danmarkshavn">Danmarkshavn</option>
|
115 |
-
<option value="America/Dawson">Dawson</option>
|
116 |
-
<option value="America/Dawson_Creek">Dawson Creek</option>
|
117 |
-
<option value="America/Denver">Denver</option>
|
118 |
-
<option value="America/Detroit">Detroit</option>
|
119 |
-
<option value="America/Dominica">Dominica</option>
|
120 |
-
<option value="America/Edmonton">Edmonton</option>
|
121 |
-
<option value="America/Eirunepe">Eirunepe</option>
|
122 |
-
<option value="America/El_Salvador">El Salvador</option>
|
123 |
-
<option value="America/Fortaleza">Fortaleza</option>
|
124 |
-
<option value="America/Glace_Bay">Glace Bay</option>
|
125 |
-
<option value="America/Godthab">Godthab</option>
|
126 |
-
<option value="America/Goose_Bay">Goose Bay</option>
|
127 |
-
<option value="America/Grand_Turk">Grand Turk</option>
|
128 |
-
<option value="America/Grenada">Grenada</option>
|
129 |
-
<option value="America/Guadeloupe">Guadeloupe</option>
|
130 |
-
<option value="America/Guatemala">Guatemala</option>
|
131 |
-
<option value="America/Guayaquil">Guayaquil</option>
|
132 |
-
<option value="America/Guyana">Guyana</option>
|
133 |
-
<option value="America/Halifax">Halifax</option>
|
134 |
-
<option value="America/Havana">Havana</option>
|
135 |
-
<option value="America/Hermosillo">Hermosillo</option>
|
136 |
-
<option value="America/Indiana/Indianapolis">Indiana - Indianapolis</option>
|
137 |
-
<option value="America/Indiana/Knox">Indiana - Knox</option>
|
138 |
-
<option value="America/Indiana/Marengo">Indiana - Marengo</option>
|
139 |
-
<option value="America/Indiana/Petersburg">Indiana - Petersburg</option>
|
140 |
-
<option value="America/Indiana/Tell_City">Indiana - Tell City</option>
|
141 |
-
<option value="America/Indiana/Vevay">Indiana - Vevay</option>
|
142 |
-
<option value="America/Indiana/Vincennes">Indiana - Vincennes</option>
|
143 |
-
<option value="America/Indiana/Winamac">Indiana - Winamac</option>
|
144 |
-
<option value="America/Inuvik">Inuvik</option>
|
145 |
-
<option value="America/Iqaluit">Iqaluit</option>
|
146 |
-
<option value="America/Jamaica">Jamaica</option>
|
147 |
-
<option value="America/Juneau">Juneau</option>
|
148 |
-
<option value="America/Kentucky/Louisville">Kentucky - Louisville</option>
|
149 |
-
<option value="America/Kentucky/Monticello">Kentucky - Monticello</option>
|
150 |
-
<option value="America/La_Paz">La Paz</option>
|
151 |
-
<option value="America/Lima">Lima</option>
|
152 |
-
<option value="America/Los_Angeles">Los Angeles</option>
|
153 |
-
<option value="America/Maceio">Maceio</option>
|
154 |
-
<option value="America/Managua">Managua</option>
|
155 |
-
<option value="America/Manaus">Manaus</option>
|
156 |
-
<option value="America/Marigot">Marigot</option>
|
157 |
-
<option value="America/Martinique">Martinique</option>
|
158 |
-
<option value="America/Mazatlan">Mazatlan</option>
|
159 |
-
<option value="America/Menominee">Menominee</option>
|
160 |
-
<option value="America/Merida">Merida</option>
|
161 |
-
<option value="America/Mexico_City">Mexico City</option>
|
162 |
-
<option value="America/Miquelon">Miquelon</option>
|
163 |
-
<option value="America/Moncton">Moncton</option>
|
164 |
-
<option value="America/Monterrey">Monterrey</option>
|
165 |
-
<option value="America/Montevideo">Montevideo</option>
|
166 |
-
<option value="America/Montreal">Montreal</option>
|
167 |
-
<option value="America/Montserrat">Montserrat</option>
|
168 |
-
<option value="America/Nassau">Nassau</option>
|
169 |
-
<option value="America/New_York">New York</option>
|
170 |
-
<option value="America/Nipigon">Nipigon</option>
|
171 |
-
<option value="America/Nome">Nome</option>
|
172 |
-
<option value="America/Noronha">Noronha</option>
|
173 |
-
<option value="America/North_Dakota/Center">North Dakota - Center</option>
|
174 |
-
<option value="America/North_Dakota/New_Salem">North Dakota - New Salem</option>
|
175 |
-
<option value="America/Panama">Panama</option>
|
176 |
-
<option value="America/Pangnirtung">Pangnirtung</option>
|
177 |
-
<option value="America/Paramaribo">Paramaribo</option>
|
178 |
-
<option value="America/Phoenix">Phoenix</option>
|
179 |
-
<option value="America/Port-au-Prince">Port-au-Prince</option>
|
180 |
-
<option value="America/Port_of_Spain">Port of Spain</option>
|
181 |
-
<option value="America/Porto_Velho">Porto Velho</option>
|
182 |
-
<option value="America/Puerto_Rico">Puerto Rico</option>
|
183 |
-
<option value="America/Rainy_River">Rainy River</option>
|
184 |
-
<option value="America/Rankin_Inlet">Rankin Inlet</option>
|
185 |
-
<option value="America/Recife">Recife</option>
|
186 |
-
<option value="America/Regina">Regina</option>
|
187 |
-
<option value="America/Resolute">Resolute</option>
|
188 |
-
<option value="America/Rio_Branco">Rio Branco</option>
|
189 |
-
<option value="America/Santarem">Santarem</option>
|
190 |
-
<option value="America/Santiago">Santiago</option>
|
191 |
-
<option value="America/Santo_Domingo">Santo Domingo</option>
|
192 |
-
<option value="America/Sao_Paulo">Sao Paulo</option>
|
193 |
-
<option value="America/Scoresbysund">Scoresbysund</option>
|
194 |
-
<option value="America/Shiprock">Shiprock</option>
|
195 |
-
<option value="America/St_Barthelemy">St Barthelemy</option>
|
196 |
-
<option value="America/St_Johns">St Johns</option>
|
197 |
-
<option value="America/St_Kitts">St Kitts</option>
|
198 |
-
<option value="America/St_Lucia">St Lucia</option>
|
199 |
-
<option value="America/St_Thomas">St Thomas</option>
|
200 |
-
<option value="America/St_Vincent">St Vincent</option>
|
201 |
-
<option value="America/Swift_Current">Swift Current</option>
|
202 |
-
<option value="America/Tegucigalpa">Tegucigalpa</option>
|
203 |
-
<option value="America/Thule">Thule</option>
|
204 |
-
<option value="America/Thunder_Bay">Thunder Bay</option>
|
205 |
-
<option value="America/Tijuana">Tijuana</option>
|
206 |
-
<option value="America/Toronto">Toronto</option>
|
207 |
-
<option value="America/Tortola">Tortola</option>
|
208 |
-
<option value="America/Vancouver">Vancouver</option>
|
209 |
-
<option value="America/Whitehorse">Whitehorse</option>
|
210 |
-
<option value="America/Winnipeg">Winnipeg</option>
|
211 |
-
<option value="America/Yakutat">Yakutat</option>
|
212 |
-
<option value="America/Yellowknife">Yellowknife</option>
|
213 |
-
</optgroup>
|
214 |
-
<optgroup label="Antarctica">
|
215 |
-
<option value="Antarctica/Casey">Casey</option>
|
216 |
-
<option value="Antarctica/Davis">Davis</option>
|
217 |
-
<option value="Antarctica/DumontDUrville">DumontDUrville</option>
|
218 |
-
<option value="Antarctica/Mawson">Mawson</option>
|
219 |
-
<option value="Antarctica/McMurdo">McMurdo</option>
|
220 |
-
<option value="Antarctica/Palmer">Palmer</option>
|
221 |
-
<option value="Antarctica/Rothera">Rothera</option>
|
222 |
-
<option value="Antarctica/South_Pole">South Pole</option>
|
223 |
-
<option value="Antarctica/Syowa">Syowa</option>
|
224 |
-
<option value="Antarctica/Vostok">Vostok</option>
|
225 |
-
</optgroup>
|
226 |
-
<optgroup label="Arctic">
|
227 |
-
<option value="Arctic/Longyearbyen">Longyearbyen</option>
|
228 |
-
</optgroup>
|
229 |
-
<optgroup label="Asia">
|
230 |
-
<option value="Asia/Aden">Aden</option>
|
231 |
-
<option value="Asia/Almaty">Almaty</option>
|
232 |
-
<option value="Asia/Amman">Amman</option>
|
233 |
-
<option value="Asia/Anadyr">Anadyr</option>
|
234 |
-
<option value="Asia/Aqtau">Aqtau</option>
|
235 |
-
<option value="Asia/Aqtobe">Aqtobe</option>
|
236 |
-
<option value="Asia/Ashgabat">Ashgabat</option>
|
237 |
-
<option value="Asia/Baghdad">Baghdad</option>
|
238 |
-
<option value="Asia/Bahrain">Bahrain</option>
|
239 |
-
<option value="Asia/Baku">Baku</option>
|
240 |
-
<option value="Asia/Bangkok">Bangkok</option>
|
241 |
-
<option value="Asia/Beirut">Beirut</option>
|
242 |
-
<option value="Asia/Bishkek">Bishkek</option>
|
243 |
-
<option value="Asia/Brunei">Brunei</option>
|
244 |
-
<option value="Asia/Choibalsan">Choibalsan</option>
|
245 |
-
<option value="Asia/Chongqing">Chongqing</option>
|
246 |
-
<option value="Asia/Colombo">Colombo</option>
|
247 |
-
<option value="Asia/Damascus">Damascus</option>
|
248 |
-
<option value="Asia/Dhaka">Dhaka</option>
|
249 |
-
<option value="Asia/Dili">Dili</option>
|
250 |
-
<option value="Asia/Dubai">Dubai</option>
|
251 |
-
<option value="Asia/Dushanbe">Dushanbe</option>
|
252 |
-
<option value="Asia/Gaza">Gaza</option>
|
253 |
-
<option value="Asia/Harbin">Harbin</option>
|
254 |
-
<option value="Asia/Ho_Chi_Minh">Ho Chi Minh</option>
|
255 |
-
<option value="Asia/Hong_Kong">Hong Kong</option>
|
256 |
-
<option value="Asia/Hovd">Hovd</option>
|
257 |
-
<option value="Asia/Irkutsk">Irkutsk</option>
|
258 |
-
<option value="Asia/Jakarta">Jakarta</option>
|
259 |
-
<option value="Asia/Jayapura">Jayapura</option>
|
260 |
-
<option value="Asia/Jerusalem">Jerusalem</option>
|
261 |
-
<option value="Asia/Kabul">Kabul</option>
|
262 |
-
<option value="Asia/Kamchatka">Kamchatka</option>
|
263 |
-
<option value="Asia/Karachi">Karachi</option>
|
264 |
-
<option value="Asia/Kashgar">Kashgar</option>
|
265 |
-
<option value="Asia/Kathmandu">Kathmandu</option>
|
266 |
-
<option value="Asia/Kolkata">Kolkata</option>
|
267 |
-
<option value="Asia/Krasnoyarsk">Krasnoyarsk</option>
|
268 |
-
<option value="Asia/Kuala_Lumpur">Kuala Lumpur</option>
|
269 |
-
<option value="Asia/Kuching">Kuching</option>
|
270 |
-
<option value="Asia/Kuwait">Kuwait</option>
|
271 |
-
<option value="Asia/Macau">Macau</option>
|
272 |
-
<option value="Asia/Magadan">Magadan</option>
|
273 |
-
<option value="Asia/Makassar">Makassar</option>
|
274 |
-
<option value="Asia/Manila">Manila</option>
|
275 |
-
<option value="Asia/Muscat">Muscat</option>
|
276 |
-
<option value="Asia/Nicosia">Nicosia</option>
|
277 |
-
<option value="Asia/Novosibirsk">Novosibirsk</option>
|
278 |
-
<option value="Asia/Omsk">Omsk</option>
|
279 |
-
<option value="Asia/Oral">Oral</option>
|
280 |
-
<option value="Asia/Phnom_Penh">Phnom Penh</option>
|
281 |
-
<option value="Asia/Pontianak">Pontianak</option>
|
282 |
-
<option value="Asia/Pyongyang">Pyongyang</option>
|
283 |
-
<option value="Asia/Qatar">Qatar</option>
|
284 |
-
<option value="Asia/Qyzylorda">Qyzylorda</option>
|
285 |
-
<option value="Asia/Rangoon">Rangoon</option>
|
286 |
-
<option value="Asia/Riyadh">Riyadh</option>
|
287 |
-
<option value="Asia/Sakhalin">Sakhalin</option>
|
288 |
-
<option value="Asia/Samarkand">Samarkand</option>
|
289 |
-
<option value="Asia/Seoul">Seoul</option>
|
290 |
-
<option value="Asia/Shanghai">Shanghai</option>
|
291 |
-
<option value="Asia/Singapore">Singapore</option>
|
292 |
-
<option value="Asia/Taipei">Taipei</option>
|
293 |
-
<option value="Asia/Tashkent">Tashkent</option>
|
294 |
-
<option value="Asia/Tbilisi">Tbilisi</option>
|
295 |
-
<option value="Asia/Tehran">Tehran</option>
|
296 |
-
<option value="Asia/Thimphu">Thimphu</option>
|
297 |
-
<option value="Asia/Tokyo">Tokyo</option>
|
298 |
-
<option value="Asia/Ulaanbaatar">Ulaanbaatar</option>
|
299 |
-
<option value="Asia/Urumqi">Urumqi</option>
|
300 |
-
<option value="Asia/Vientiane">Vientiane</option>
|
301 |
-
<option value="Asia/Vladivostok">Vladivostok</option>
|
302 |
-
<option value="Asia/Yakutsk">Yakutsk</option>
|
303 |
-
<option value="Asia/Yekaterinburg">Yekaterinburg</option>
|
304 |
-
<option value="Asia/Yerevan">Yerevan</option>
|
305 |
-
</optgroup>
|
306 |
-
<optgroup label="Atlantic">
|
307 |
-
<option value="Atlantic/Azores">Azores</option>
|
308 |
-
<option value="Atlantic/Bermuda">Bermuda</option>
|
309 |
-
<option value="Atlantic/Canary">Canary</option>
|
310 |
-
<option value="Atlantic/Cape_Verde">Cape Verde</option>
|
311 |
-
<option value="Atlantic/Faroe">Faroe</option>
|
312 |
-
<option value="Atlantic/Madeira">Madeira</option>
|
313 |
-
<option value="Atlantic/Reykjavik">Reykjavik</option>
|
314 |
-
<option value="Atlantic/South_Georgia">South Georgia</option>
|
315 |
-
<option value="Atlantic/Stanley">Stanley</option>
|
316 |
-
<option value="Atlantic/St_Helena">St Helena</option>
|
317 |
-
</optgroup>
|
318 |
-
<optgroup label="Australia">
|
319 |
-
<option value="Australia/Adelaide">Adelaide</option>
|
320 |
-
<option value="Australia/Brisbane">Brisbane</option>
|
321 |
-
<option value="Australia/Broken_Hill">Broken Hill</option>
|
322 |
-
<option value="Australia/Currie">Currie</option>
|
323 |
-
<option value="Australia/Darwin">Darwin</option>
|
324 |
-
<option value="Australia/Eucla">Eucla</option>
|
325 |
-
<option value="Australia/Hobart">Hobart</option>
|
326 |
-
<option value="Australia/Lindeman">Lindeman</option>
|
327 |
-
<option value="Australia/Lord_Howe">Lord Howe</option>
|
328 |
-
<option value="Australia/Melbourne">Melbourne</option>
|
329 |
-
<option value="Australia/Perth">Perth</option>
|
330 |
-
<option value="Australia/Sydney">Sydney</option>
|
331 |
-
</optgroup>
|
332 |
-
<optgroup label="Europe">
|
333 |
-
<option value="Europe/Amsterdam">Amsterdam</option>
|
334 |
-
<option value="Europe/Andorra">Andorra</option>
|
335 |
-
<option value="Europe/Athens">Athens</option>
|
336 |
-
<option value="Europe/Belgrade">Belgrade</option>
|
337 |
-
<option value="Europe/Berlin">Berlin</option>
|
338 |
-
<option value="Europe/Bratislava">Bratislava</option>
|
339 |
-
<option value="Europe/Brussels">Brussels</option>
|
340 |
-
<option value="Europe/Bucharest">Bucharest</option>
|
341 |
-
<option value="Europe/Budapest">Budapest</option>
|
342 |
-
<option value="Europe/Chisinau">Chisinau</option>
|
343 |
-
<option value="Europe/Copenhagen">Copenhagen</option>
|
344 |
-
<option value="Europe/Dublin">Dublin</option>
|
345 |
-
<option value="Europe/Gibraltar">Gibraltar</option>
|
346 |
-
<option value="Europe/Guernsey">Guernsey</option>
|
347 |
-
<option value="Europe/Helsinki">Helsinki</option>
|
348 |
-
<option value="Europe/Isle_of_Man">Isle of Man</option>
|
349 |
-
<option value="Europe/Istanbul">Istanbul</option>
|
350 |
-
<option value="Europe/Jersey">Jersey</option>
|
351 |
-
<option value="Europe/Kaliningrad">Kaliningrad</option>
|
352 |
-
<option value="Europe/Kiev">Kiev</option>
|
353 |
-
<option value="Europe/Lisbon">Lisbon</option>
|
354 |
-
<option value="Europe/Ljubljana">Ljubljana</option>
|
355 |
-
<option value="Europe/London">London</option>
|
356 |
-
<option value="Europe/Luxembourg">Luxembourg</option>
|
357 |
-
<option value="Europe/Madrid">Madrid</option>
|
358 |
-
<option value="Europe/Malta">Malta</option>
|
359 |
-
<option value="Europe/Mariehamn">Mariehamn</option>
|
360 |
-
<option value="Europe/Minsk">Minsk</option>
|
361 |
-
<option value="Europe/Monaco">Monaco</option>
|
362 |
-
<option value="Europe/Moscow">Moscow</option>
|
363 |
-
<option value="Europe/Oslo">Oslo</option>
|
364 |
-
<option value="Europe/Paris">Paris</option>
|
365 |
-
<option value="Europe/Podgorica">Podgorica</option>
|
366 |
-
<option value="Europe/Prague">Prague</option>
|
367 |
-
<option value="Europe/Riga">Riga</option>
|
368 |
-
<option value="Europe/Rome">Rome</option>
|
369 |
-
<option value="Europe/Samara">Samara</option>
|
370 |
-
<option value="Europe/San_Marino">San Marino</option>
|
371 |
-
<option value="Europe/Sarajevo">Sarajevo</option>
|
372 |
-
<option value="Europe/Simferopol">Simferopol</option>
|
373 |
-
<option value="Europe/Skopje">Skopje</option>
|
374 |
-
<option value="Europe/Sofia">Sofia</option>
|
375 |
-
<option value="Europe/Stockholm">Stockholm</option>
|
376 |
-
<option value="Europe/Tallinn">Tallinn</option>
|
377 |
-
<option value="Europe/Tirane">Tirane</option>
|
378 |
-
<option value="Europe/Uzhgorod">Uzhgorod</option>
|
379 |
-
<option value="Europe/Vaduz">Vaduz</option>
|
380 |
-
<option value="Europe/Vatican">Vatican</option>
|
381 |
-
<option value="Europe/Vienna">Vienna</option>
|
382 |
-
<option value="Europe/Vilnius">Vilnius</option>
|
383 |
-
<option value="Europe/Volgograd">Volgograd</option>
|
384 |
-
<option value="Europe/Warsaw">Warsaw</option>
|
385 |
-
<option value="Europe/Zagreb">Zagreb</option>
|
386 |
-
<option value="Europe/Zaporozhye">Zaporozhye</option>
|
387 |
-
<option value="Europe/Zurich">Zurich</option>
|
388 |
-
</optgroup>
|
389 |
-
<optgroup label="Indian">
|
390 |
-
<option value="Indian/Antananarivo">Antananarivo</option>
|
391 |
-
<option value="Indian/Chagos">Chagos</option>
|
392 |
-
<option value="Indian/Christmas">Christmas</option>
|
393 |
-
<option value="Indian/Cocos">Cocos</option>
|
394 |
-
<option value="Indian/Comoro">Comoro</option>
|
395 |
-
<option value="Indian/Kerguelen">Kerguelen</option>
|
396 |
-
<option value="Indian/Mahe">Mahe</option>
|
397 |
-
<option value="Indian/Maldives">Maldives</option>
|
398 |
-
<option value="Indian/Mauritius">Mauritius</option>
|
399 |
-
<option value="Indian/Mayotte">Mayotte</option>
|
400 |
-
<option value="Indian/Reunion">Reunion</option>
|
401 |
-
</optgroup>
|
402 |
-
<optgroup label="Pacific">
|
403 |
-
<option value="Pacific/Apia">Apia</option>
|
404 |
-
<option value="Pacific/Auckland">Auckland</option>
|
405 |
-
<option value="Pacific/Chatham">Chatham</option>
|
406 |
-
<option value="Pacific/Easter">Easter</option>
|
407 |
-
<option value="Pacific/Efate">Efate</option>
|
408 |
-
<option value="Pacific/Enderbury">Enderbury</option>
|
409 |
-
<option value="Pacific/Fakaofo">Fakaofo</option>
|
410 |
-
<option value="Pacific/Fiji">Fiji</option>
|
411 |
-
<option value="Pacific/Funafuti">Funafuti</option>
|
412 |
-
<option value="Pacific/Galapagos">Galapagos</option>
|
413 |
-
<option value="Pacific/Gambier">Gambier</option>
|
414 |
-
<option value="Pacific/Guadalcanal">Guadalcanal</option>
|
415 |
-
<option value="Pacific/Guam">Guam</option>
|
416 |
-
<option value="Pacific/Honolulu">Honolulu</option>
|
417 |
-
<option value="Pacific/Johnston">Johnston</option>
|
418 |
-
<option value="Pacific/Kiritimati">Kiritimati</option>
|
419 |
-
<option value="Pacific/Kosrae">Kosrae</option>
|
420 |
-
<option value="Pacific/Kwajalein">Kwajalein</option>
|
421 |
-
<option value="Pacific/Majuro">Majuro</option>
|
422 |
-
<option value="Pacific/Marquesas">Marquesas</option>
|
423 |
-
<option value="Pacific/Midway">Midway</option>
|
424 |
-
<option value="Pacific/Nauru">Nauru</option>
|
425 |
-
<option value="Pacific/Niue">Niue</option>
|
426 |
-
<option value="Pacific/Norfolk">Norfolk</option>
|
427 |
-
<option value="Pacific/Noumea">Noumea</option>
|
428 |
-
<option value="Pacific/Pago_Pago">Pago Pago</option>
|
429 |
-
<option value="Pacific/Palau">Palau</option>
|
430 |
-
<option value="Pacific/Pitcairn">Pitcairn</option>
|
431 |
-
<option value="Pacific/Ponape">Ponape</option>
|
432 |
-
<option value="Pacific/Port_Moresby">Port Moresby</option>
|
433 |
-
<option value="Pacific/Rarotonga">Rarotonga</option>
|
434 |
-
<option value="Pacific/Saipan">Saipan</option>
|
435 |
-
<option value="Pacific/Tahiti">Tahiti</option>
|
436 |
-
<option value="Pacific/Tarawa">Tarawa</option>
|
437 |
-
<option value="Pacific/Tongatapu">Tongatapu</option>
|
438 |
-
<option value="Pacific/Truk">Truk</option>
|
439 |
-
<option value="Pacific/Wake">Wake</option>
|
440 |
-
<option value="Pacific/Wallis">Wallis</option>
|
441 |
-
</optgroup>
|
442 |
-
</select>';
|
443 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|