Simple Calendar – Google Calendar Plugin - Version 2.2.3

Version Description

  • March 26, 2015 =

  • Tested up to WordPress 4.2.

  • Fixed bug with the "More details..." link encoding.

  • Added note about total event limit of 2,500 now enforced by the Google Calendar API.

  • Updated earliest feed event date default to 1 (one) month back.

  • 0 (zero) value now allowed for earliest and latest feed event dates (sets them to the current date).

  • Minor public script improvements.

  • Added Brazilian Portuguese translation files.

  • Updated jQuery UI datepicker CSS CDN reference for feed settings pages.

Download this release

Release Info

Developer pderksen
Plugin Icon 128x128 Simple Calendar – Google Calendar Plugin
Version 2.2.3
Comparing to
See all releases

Code changes from version 2.2.2.1 to 2.2.3

README.txt CHANGED
@@ -1,8 +1,8 @@
1
  === Google Calendar Events ===
2
  Contributors: pderksen, nickyoung87, rosshanney
3
  Tags: google calendar, google, calendar, events, gcal
4
- Requires at least: 3.8.5
5
- Tested up to: 4.1
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -89,6 +89,17 @@ There are three ways to install this plugin.
89
 
90
  == Changelog ==
91
 
 
 
 
 
 
 
 
 
 
 
 
92
  = 2.2.2.1 - March 17, 2015 =
93
 
94
  * The option to always enqueue scripts & styles should now be enabled by default for new installs and upgrades.
1
  === Google Calendar Events ===
2
  Contributors: pderksen, nickyoung87, rosshanney
3
  Tags: google calendar, google, calendar, events, gcal
4
+ Requires at least: 3.9.3
5
+ Tested up to: 4.2
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
89
 
90
  == Changelog ==
91
 
92
+ = 2.2.3 - March 26, 2015 =
93
+
94
+ * Tested up to WordPress 4.2.
95
+ * Fixed bug with the "More details..." link encoding.
96
+ * Added note about total event limit of 2,500 now enforced by the Google Calendar API.
97
+ * Updated earliest feed event date default to 1 (one) month back.
98
+ * 0 (zero) value now allowed for earliest and latest feed event dates (sets them to the current date).
99
+ * Minor public script improvements.
100
+ * Added Brazilian Portuguese translation files.
101
+ * Updated jQuery UI datepicker CSS CDN reference for feed settings pages.
102
+
103
  = 2.2.2.1 - March 17, 2015 =
104
 
105
  * The option to always enqueue scripts & styles should now be enabled by default for new installs and upgrades.
class-google-calendar-events-admin.php CHANGED
@@ -155,15 +155,14 @@ class Google_Calendar_Events_Admin {
155
  */
156
  public function enqueue_admin_styles() {
157
 
158
- //wp_enqueue_style( 'jquery-ui-datepicker-css', plugins_url( 'css/jquery-ui-1.10.4.custom.min.css', __FILE__ ), array(), $this->version );
159
-
160
  if( $this->viewing_this_plugin() ) {
161
  global $wp_scripts;
162
 
163
  // get the jquery ui object
164
  $queryui = $wp_scripts->query( 'jquery-ui-datepicker' );
165
-
166
- wp_enqueue_style( 'jquery-ui-smoothness', '//ajax.googleapis.com/ajax/libs/jqueryui/' . $queryui->ver . '/themes/smoothness/jquery-ui.css', array(), $this->version );
 
167
 
168
  wp_enqueue_style( 'gce-admin', plugins_url( 'css/admin.css', __FILE__ ), array(), $this->version, 'all' );
169
  }
155
  */
156
  public function enqueue_admin_styles() {
157
 
 
 
158
  if( $this->viewing_this_plugin() ) {
159
  global $wp_scripts;
160
 
161
  // get the jquery ui object
162
  $queryui = $wp_scripts->query( 'jquery-ui-datepicker' );
163
+
164
+ // Use minified CSS from CDN referenced at https://code.jquery.com/ui/
165
+ wp_enqueue_style( 'jquery-ui-smoothness', '//code.jquery.com/ui/' . $queryui->ver . '/themes/smoothness/jquery-ui.min.css', array(), $this->version );
166
 
167
  wp_enqueue_style( 'gce-admin', plugins_url( 'css/admin.css', __FILE__ ), array(), $this->version, 'all' );
168
  }
class-google-calendar-events.php CHANGED
@@ -18,7 +18,7 @@ class Google_Calendar_Events {
18
  *
19
  * @var string
20
  */
21
- protected $version = '2.2.2.1';
22
 
23
  /**
24
  * Unique identifier for the plugin.
18
  *
19
  * @var string
20
  */
21
+ protected $version = '2.2.3';
22
 
23
  /**
24
  * Unique identifier for the plugin.
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: Show off your Google calendar in grid (month) or list view, in a post, page or widget, and in a style that matches your site.
15
- * Version: 2.2.2.1
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: Show off your Google calendar in grid (month) or list view, in a post, page or widget, and in a style that matches your site.
15
+ * Version: 2.2.3
16
  * Author: Phil Derksen
17
  * Author URI: http://philderksen.com
18
  * License: GPL-2.0+
includes/admin/admin-functions.php CHANGED
@@ -47,7 +47,8 @@ function gce_default_editor_content( $content, $post ) {
47
  add_post_meta( $post->ID, 'gce_list_start_offset_num', '0' );
48
  add_post_meta( $post->ID, 'gce_feed_end_num', 2 );
49
  add_post_meta( $post->ID, 'gce_feed_start_num', 1 );
50
- add_post_meta( $post->ID, 'gce_feed_end_interval', 'years' );
 
51
  add_post_meta( $post->ID, 'gce_show_tooltips', 1 );
52
 
53
  // Default Simple Display Options
47
  add_post_meta( $post->ID, 'gce_list_start_offset_num', '0' );
48
  add_post_meta( $post->ID, 'gce_feed_end_num', 2 );
49
  add_post_meta( $post->ID, 'gce_feed_start_num', 1 );
50
+ add_post_meta( $post->ID, 'gce_feed_end', 'years' );
51
+ add_post_meta( $post->ID, 'gce_feed_start', 'months' );
52
  add_post_meta( $post->ID, 'gce_show_tooltips', 1 );
53
 
54
  // Default Simple Display Options
includes/class-gce-event.php CHANGED
@@ -384,7 +384,7 @@ class GCE_Event {
384
  $link = $this->link . ( ! empty( $ctz ) ? '&ctz=' . $ctz : '' );
385
  }
386
 
387
- return $m[1] . '<a href="' . esc_url( $link ) . '"' . esc_attr( $new_window ) . '>' . $this->look_for_shortcodes( $m[5] ) . '</a>' . $m[6];
388
 
389
  case 'url':
390
  return $m[1] . esc_url( $this->link ) . $m[6];
384
  $link = $this->link . ( ! empty( $ctz ) ? '&ctz=' . $ctz : '' );
385
  }
386
 
387
+ return $m[1] . '<a href="' . esc_url( $link ) . '"' . $new_window . '>' . $this->look_for_shortcodes( $m[5] ) . '</a>' . $m[6];
388
 
389
  case 'url':
390
  return $m[1] . esc_url( $this->link ) . $m[6];
includes/class-gce-feed.php CHANGED
@@ -114,7 +114,7 @@ class GCE_Feed {
114
 
115
  $args['timeMax'] = urlencode( date( 'c', $this->feed_end ) );
116
 
117
- $args['maxResults'] = 10000;
118
 
119
  $ctz = get_option( 'timezone_string' );
120
 
@@ -244,7 +244,7 @@ class GCE_Feed {
244
  $start = get_post_meta( $this->id, 'gce_feed_start_num', true );
245
  $interval = get_post_meta( $this->id, 'gce_feed_start', true );
246
 
247
- if( empty( $start ) ) {
248
  $start = 1;
249
  }
250
  }
@@ -280,7 +280,7 @@ class GCE_Feed {
280
  $end = get_post_meta( $this->id, 'gce_feed_end_num', true );
281
  $interval = get_post_meta( $this->id, 'gce_feed_end', true );
282
 
283
- if( empty( $end ) ) {
284
  $end = 1;
285
  }
286
  }
114
 
115
  $args['timeMax'] = urlencode( date( 'c', $this->feed_end ) );
116
 
117
+ $args['maxResults'] = 2500;
118
 
119
  $ctz = get_option( 'timezone_string' );
120
 
244
  $start = get_post_meta( $this->id, 'gce_feed_start_num', true );
245
  $interval = get_post_meta( $this->id, 'gce_feed_start', true );
246
 
247
+ if( empty( $start ) && $start !== '0' ) {
248
  $start = 1;
249
  }
250
  }
280
  $end = get_post_meta( $this->id, 'gce_feed_end_num', true );
281
  $interval = get_post_meta( $this->id, 'gce_feed_end', true );
282
 
283
+ if( empty( $end ) && $end !== '0' ) {
284
  $end = 1;
285
  }
286
  }
includes/gce-feed-cpt.php CHANGED
@@ -192,7 +192,7 @@ function gce_save_meta( $post_id ) {
192
  if ( current_user_can( 'edit_post', $post_id ) ) {
193
  // Loop through our array and make sure it is posted and not empty in order to update it, otherwise we delete it
194
  foreach ( $post_meta_fields as $pmf ) {
195
- if ( isset( $_POST[$pmf] ) && ! empty( $_POST[$pmf] ) ) {
196
  if( $pmf == 'gce_feed_url' ) {
197
 
198
  $id = $_POST[$pmf];
192
  if ( current_user_can( 'edit_post', $post_id ) ) {
193
  // Loop through our array and make sure it is posted and not empty in order to update it, otherwise we delete it
194
  foreach ( $post_meta_fields as $pmf ) {
195
+ if ( isset( $_POST[$pmf] ) && ( ! empty( $_POST[$pmf] ) || $_POST[$pmf] == 0 ) ) {
196
  if( $pmf == 'gce_feed_url' ) {
197
 
198
  $id = $_POST[$pmf];
js/gce-script.js CHANGED
@@ -114,7 +114,7 @@
114
  var paging_type = navLink.data('gce-paging-type');
115
 
116
  //Add loading text to table caption
117
- navLink.parent().parent().parent().find('.gce-month-title').html(gce.loadingText);
118
 
119
  //Send AJAX request
120
  $.post(gce.ajaxurl,{
@@ -146,7 +146,7 @@
146
 
147
  //Add qtip to all target items
148
  $(this).qtip({
149
- content: $(this).children('.gce-event-info'),
150
  position: {
151
  my: 'bottom left',
152
  at: 'center',
114
  var paging_type = navLink.data('gce-paging-type');
115
 
116
  //Add loading text to table caption
117
+ navLink.parents('.gce-navbar').find('.gce-month-title').html(gce.loadingText);
118
 
119
  //Send AJAX request
120
  $.post(gce.ajaxurl,{
146
 
147
  //Add qtip to all target items
148
  $(this).qtip({
149
+ content: $(this).find('.gce-event-info'),
150
  position: {
151
  my: 'bottom left',
152
  at: 'center',
languages/gce-pt_BR.mo ADDED
Binary file
languages/gce-pt_BR.po ADDED
@@ -0,0 +1,884 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 WebPress - CodeLayer
2
+ # This file is distributed under the same license as the WordPress package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Google Calendar Events\n"
6
+ "Report-Msgid-Bugs-To: http://support.codelayer.org\n"
7
+ "POT-Creation-Date: 2015-03-24 01:49-0300\n"
8
+ "PO-Revision-Date: \n"
9
+ "Last-Translator: CodeLayer <codelayer@codelayer.org>\n"
10
+ "Language-Team: CodeLayer <info@codelayer.org>\n"
11
+ "Language: pt_BR\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-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
18
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
19
+ "esc_html_e\n"
20
+ "X-Poedit-Basepath: ../\n"
21
+ "X-Textdomain-Support: yes\n"
22
+ "X-Generator: Poedit 1.7.5\n"
23
+ "X-Poedit-SearchPath-0: .\n"
24
+
25
+ #: class-google-calendar-events-admin.php:126
26
+ #: class-google-calendar-events-admin.php:127
27
+ #: class-google-calendar-events-admin.php:218
28
+ #: includes/register-settings.php:66
29
+ msgid "General Settings"
30
+ msgstr "Configurações Gerais"
31
+
32
+ #: class-google-calendar-events-admin.php:206 views/widgets.php:27
33
+ msgid "Google Calendar Events"
34
+ msgstr "Google Calendar Events"
35
+
36
+ #: class-google-calendar-events-admin.php:219
37
+ msgid "Feeds"
38
+ msgstr "Feeds"
39
+
40
+ #: class-google-calendar-events.php:90
41
+ msgid "Loading..."
42
+ msgstr "Carregando..."
43
+
44
+ #: includes/admin/admin-functions.php:20
45
+ msgid "Cache has been cleared for this feed."
46
+ msgstr "Cache foi esvaziado para este feed."
47
+
48
+ #: includes/admin/admin-functions.php:35 includes/admin/admin-functions.php:55
49
+ msgid "Starts:"
50
+ msgstr "Inicia:"
51
+
52
+ #: includes/admin/admin-functions.php:36 includes/admin/admin-functions.php:57
53
+ msgid "Ends:"
54
+ msgstr "Termina:"
55
+
56
+ #: includes/admin/admin-functions.php:37 includes/admin/admin-functions.php:59
57
+ msgid "Location:"
58
+ msgstr "Local:"
59
+
60
+ #: includes/admin/admin-functions.php:38 includes/admin/admin-functions.php:60
61
+ msgid "Description:"
62
+ msgstr "Descrição:"
63
+
64
+ #: includes/admin/admin-functions.php:39
65
+ msgid "More details..."
66
+ msgstr "Mais detalhes..."
67
+
68
+ #: includes/admin/admin-functions.php:62
69
+ msgid "More Details"
70
+ msgstr "Mais Detalhes"
71
+
72
+ #: includes/admin/admin-functions.php:76 includes/gce-feed-cpt.php:291
73
+ msgid "Clear Cache"
74
+ msgstr "Limpar Cache"
75
+
76
+ #: includes/admin/admin-notice.php:26
77
+ msgid "GCal API Key Notice"
78
+ msgstr "GCal API Key Notice"
79
+
80
+ #: includes/admin/admin-notice.php:28
81
+ msgid ""
82
+ "GCal Events uses the Google Calendar API version 3. By default this plugin "
83
+ "uses a public shared key across all plugin users."
84
+ msgstr ""
85
+ "GCal Events usa a API versão 3 do Google Calendar. Por padrão este plugin "
86
+ "usa uma chave compartilhada pública para todos os usuários deste plugin."
87
+
88
+ #: includes/admin/admin-notice.php:30
89
+ msgid ""
90
+ "This key is limited to 500,000 requests per day and 5 requests per second. "
91
+ "To avoid running into any potential limits you can use your own Google API "
92
+ "key."
93
+ msgstr ""
94
+ "Esta chave é limitada a 500.000 requisições por dia e 5 requisições por "
95
+ "segundo. Para evitar ultrapassar limites você pode usar a sua própria chave "
96
+ "API."
97
+
98
+ #: includes/admin/admin-notice.php:33
99
+ msgid "Enter your GCal API key"
100
+ msgstr "Digite a sua chave GCal API"
101
+
102
+ #: includes/admin/admin-notice.php:34
103
+ msgid "Configure GCal feeds"
104
+ msgstr "Configurar feeds GCal"
105
+
106
+ #: includes/admin/admin-notice.php:35
107
+ msgid "Hide this"
108
+ msgstr "Esconder isto"
109
+
110
+ #: includes/class-gce-display.php:179 includes/class-gce-display.php:289
111
+ msgid "Back"
112
+ msgstr "Voltar"
113
+
114
+ #: includes/class-gce-display.php:183 includes/class-gce-display.php:290
115
+ msgid "Next"
116
+ msgstr "Próximo"
117
+
118
+ #: includes/class-gce-display.php:392
119
+ msgid "No events to display."
120
+ msgstr "Nenhum evento para exibir"
121
+
122
+ #: includes/class-gce-event.php:522
123
+ #, php-format
124
+ msgid "%s year"
125
+ msgstr "%s ano"
126
+
127
+ #: includes/class-gce-event.php:522
128
+ #, php-format
129
+ msgid "%s years"
130
+ msgstr "%s anos"
131
+
132
+ #: includes/class-gce-event.php:523
133
+ #, php-format
134
+ msgid "%s month"
135
+ msgstr "%s mês"
136
+
137
+ #: includes/class-gce-event.php:523
138
+ #, php-format
139
+ msgid "%s months"
140
+ msgstr "%s meses"
141
+
142
+ #: includes/class-gce-event.php:524
143
+ #, php-format
144
+ msgid "%s week"
145
+ msgstr "%s semana"
146
+
147
+ #: includes/class-gce-event.php:524
148
+ #, php-format
149
+ msgid "%s weeks"
150
+ msgstr "%s semanas"
151
+
152
+ #: includes/class-gce-event.php:525
153
+ #, php-format
154
+ msgid "%s day"
155
+ msgstr "%s dia"
156
+
157
+ #: includes/class-gce-event.php:525
158
+ #, php-format
159
+ msgid "%s days"
160
+ msgstr "%s dias"
161
+
162
+ #: includes/class-gce-event.php:526
163
+ #, php-format
164
+ msgid "%s hour"
165
+ msgstr "%s hora"
166
+
167
+ #: includes/class-gce-event.php:526
168
+ #, php-format
169
+ msgid "%s hours"
170
+ msgstr "%s horas"
171
+
172
+ #: includes/class-gce-event.php:527
173
+ #, php-format
174
+ msgid "%s min"
175
+ msgstr "%s min"
176
+
177
+ #: includes/class-gce-event.php:527
178
+ #, php-format
179
+ msgid "%s mins"
180
+ msgstr "%s mins"
181
+
182
+ #: includes/class-gce-event.php:555
183
+ msgctxt "human_time_diff"
184
+ msgid ", "
185
+ msgstr ", "
186
+
187
+ #: includes/class-gce-feed.php:93
188
+ msgid ""
189
+ "The Google Calendar ID has not been set. Please make sure to set it "
190
+ "correctly in the Feed settings."
191
+ msgstr ""
192
+ "A ID do Google Calendar não foi definida. Por favor certifique-se de definí-"
193
+ "la corretamente nas configurações do Feed."
194
+
195
+ #: includes/class-gce-feed.php:197
196
+ msgid ""
197
+ "Some data was retrieved, but could not be parsed successfully. Please ensure "
198
+ "your feed settings are correct."
199
+ msgstr ""
200
+ "Dados foram recebidos, mas não foi possível interpretá-los corretamente. "
201
+ "Certifique-se que suas configurações do feed estão corretas."
202
+
203
+ #: includes/class-gce-feed.php:200
204
+ msgid "An error has occured."
205
+ msgstr "Um erro ocorreu."
206
+
207
+ #: includes/class-gce-feed.php:205
208
+ msgid " Please ensure your calendar ID is correct."
209
+ msgstr "Por favor certifique-se que a ID do calendário está correta"
210
+
211
+ #: includes/gce-feed-cpt.php:21
212
+ msgid "Google Calendar Feeds"
213
+ msgstr "Feeds do Google Calendas"
214
+
215
+ #: includes/gce-feed-cpt.php:22 includes/gce-feed-cpt.php:24
216
+ #: includes/gce-feed-cpt.php:72
217
+ msgid "Feed"
218
+ msgstr "Feed"
219
+
220
+ #: includes/gce-feed-cpt.php:23
221
+ msgid "GCal Events"
222
+ msgstr "Eventos GCal"
223
+
224
+ #: includes/gce-feed-cpt.php:25
225
+ msgid "Add New"
226
+ msgstr "Adicionar Novo"
227
+
228
+ #: includes/gce-feed-cpt.php:26
229
+ msgid "Add New Feed"
230
+ msgstr "Adicionar novo feed"
231
+
232
+ #: includes/gce-feed-cpt.php:27
233
+ msgid "New Feed"
234
+ msgstr "Novo feed"
235
+
236
+ #: includes/gce-feed-cpt.php:28
237
+ msgid "Edit Feed"
238
+ msgstr "Editar feed"
239
+
240
+ #: includes/gce-feed-cpt.php:29
241
+ msgid "View Feed"
242
+ msgstr "Visualizar feed"
243
+
244
+ #: includes/gce-feed-cpt.php:30
245
+ msgid "All GCal Feeds"
246
+ msgstr "Todos os feeds GCal"
247
+
248
+ #: includes/gce-feed-cpt.php:31
249
+ msgid "Search GCal Feeds"
250
+ msgstr "Pesquisar Feeds GCal"
251
+
252
+ #: includes/gce-feed-cpt.php:32
253
+ msgid "No feeds found."
254
+ msgstr "Nenhum fed encontrado."
255
+
256
+ #: includes/gce-feed-cpt.php:33
257
+ msgid "No feeds found in Trash."
258
+ msgstr "Nenhum feed encontrado na lixeira."
259
+
260
+ #: includes/gce-feed-cpt.php:70
261
+ msgid "feed"
262
+ msgstr "feed"
263
+
264
+ #: includes/gce-feed-cpt.php:75 includes/gce-feed-cpt.php:76
265
+ #, php-format
266
+ msgid "%4$s updated. %1$sView %2$s%3$s"
267
+ msgstr "%4$s atualizado. %1$sVer %2$s%3$s"
268
+
269
+ #: includes/gce-feed-cpt.php:77
270
+ #, php-format
271
+ msgid "%4$s published. %1$sView %2$s%3$s"
272
+ msgstr "%4$s publicado. %1$sVer %2$s%3$s"
273
+
274
+ #: includes/gce-feed-cpt.php:78
275
+ #, php-format
276
+ msgid "%4$s saved. %1$sView %2$s%3$s"
277
+ msgstr "%4$s salvo. %1$sVer %2$s%3$s"
278
+
279
+ #: includes/gce-feed-cpt.php:79
280
+ #, php-format
281
+ msgid "%4$s submitted. %1$sView %2$s%3$s"
282
+ msgstr "%4$s submetido. %1$sVer %2$s%3$s"
283
+
284
+ #: includes/gce-feed-cpt.php:80
285
+ #, php-format
286
+ msgid "%4$s draft updated. %1$sView %2$s%3$s"
287
+ msgstr "Rascunho %4$s atualizado. %1$sVer %2$s%3$s"
288
+
289
+ #: includes/gce-feed-cpt.php:94
290
+ msgid "Feed Settings"
291
+ msgstr "Configurações de Feed"
292
+
293
+ #: includes/gce-feed-cpt.php:97
294
+ msgid "Helpful Links"
295
+ msgstr "Links úteis"
296
+
297
+ #: includes/gce-feed-cpt.php:99
298
+ msgid "Display Options"
299
+ msgstr "Opções de exibição"
300
+
301
+ #: includes/gce-feed-cpt.php:241
302
+ msgid "Feed ID"
303
+ msgstr "ID Feed"
304
+
305
+ #: includes/gce-feed-cpt.php:242 views/admin/gce-feed-meta-display.php:87
306
+ msgid "Feed Shortcode"
307
+ msgstr "Shortcode Feed"
308
+
309
+ #: includes/gce-feed-cpt.php:243
310
+ msgid "Display Type"
311
+ msgstr "Tipo de exibição"
312
+
313
+ #: includes/gce-feed-cpt.php:270
314
+ msgid "Grid"
315
+ msgstr "Grid"
316
+
317
+ #: includes/gce-feed-cpt.php:272 views/admin/gce-feed-meta-display.php:137
318
+ #: views/widgets.php:295
319
+ msgid "List"
320
+ msgstr "Lista"
321
+
322
+ #: includes/gce-feed-cpt.php:274 views/admin/gce-feed-meta-display.php:138
323
+ #: views/widgets.php:296
324
+ msgid "Grouped List"
325
+ msgstr "Lista agrupada"
326
+
327
+ #: includes/gce-feed-cpt.php:276
328
+ msgid "Custom Date Range"
329
+ msgstr "Faixa de datas personalizada"
330
+
331
+ #: includes/register-settings.php:29
332
+ msgid "Google API Key"
333
+ msgstr "Chave API Google"
334
+
335
+ #: includes/register-settings.php:30
336
+ msgid ""
337
+ "If left blank all displayed Google calendars will use a public Google API "
338
+ "key shared across all plugin users."
339
+ msgstr ""
340
+ "Se deixado em branco todos os Google Calendars usarão uma chave de API "
341
+ "pública, compartilhada entre todos os usuários do plugin. "
342
+
343
+ #: includes/register-settings.php:31
344
+ msgid ""
345
+ "Currently the shared key is limited to 500,000 requests per day and 5 "
346
+ "requests per second."
347
+ msgstr ""
348
+ "Atualmente a chave compartilhada é limitada a 500.000 requisições por dia e "
349
+ "5 por segundo."
350
+
351
+ #: includes/register-settings.php:32
352
+ #, php-format
353
+ msgid ""
354
+ "To avoid these limits <a href=\"%s\" target=\"_blank\">click here for "
355
+ "instructions on how to generate and use your own Google API key.</a>"
356
+ msgstr ""
357
+ "Para evitar ultrapassar limites você pode usar a sua <a href=\"%s\" target="
358
+ "\"_blank\">própria chave API</a>."
359
+
360
+ #: includes/register-settings.php:39
361
+ msgid "Always Enqueue Scripts & Styles"
362
+ msgstr "Sempre carregar scripts e estilos"
363
+
364
+ #: includes/register-settings.php:45
365
+ msgid "Disable Plugin CSS"
366
+ msgstr "Desativar CSS do plugin"
367
+
368
+ #: includes/register-settings.php:46
369
+ msgid ""
370
+ "If this option is checked, this plugin's CSS file will not be referenced."
371
+ msgstr "Se a opção é marcada, o CSS deste plugin não será referenciado."
372
+
373
+ #: includes/register-settings.php:51
374
+ msgid "Save Settings"
375
+ msgstr "Salvar Configurações"
376
+
377
+ #: includes/register-settings.php:52
378
+ msgid ""
379
+ "Save your settings when uninstalling this plugin. Useful when upgrading or "
380
+ "re-installing."
381
+ msgstr ""
382
+ "Salvar suas configurações ao desinstalar este plugin, útil ao atualizar ou "
383
+ "reinstalar."
384
+
385
+ #: includes/register-settings.php:181
386
+ #, php-format
387
+ msgid ""
388
+ "The callback function used for the <strong>%s</strong> setting is missing."
389
+ msgstr ""
390
+ "A função de callback usada para configuração <strong>%s</strong> está "
391
+ "ausente."
392
+
393
+ #: includes/shortcodes.php:95
394
+ msgid ""
395
+ "There was a problem with one or more of your feed IDs. Please check your "
396
+ "shortcode settings and make sure they are correct."
397
+ msgstr ""
398
+ "Há um problema com um ou mais IDs de feed. Verifique se a configuração do "
399
+ "shortcode está correta."
400
+
401
+ #: views/admin/display-options-meta.php:39
402
+ msgid ""
403
+ "Check this box to use the simple display options below instead of the Event "
404
+ "Builder code on the left."
405
+ msgstr ""
406
+ "Marque esta cauxa para usar as opções de exição simples abaixo ao invés do "
407
+ "código do Contrutor de Evento à esquerda."
408
+
409
+ #: views/admin/display-options-meta.php:44
410
+ msgid "Start date / time display"
411
+ msgstr "Exibição data / hora inicial"
412
+
413
+ #: views/admin/display-options-meta.php:45
414
+ msgid "Select how to display the start date / time."
415
+ msgstr "Selecione como exibir data / hora inicial."
416
+
417
+ #: views/admin/display-options-meta.php:47
418
+ #: views/admin/display-options-meta.php:61
419
+ msgid "None"
420
+ msgstr "Nenhuma"
421
+
422
+ #: views/admin/display-options-meta.php:48
423
+ msgid "Start time"
424
+ msgstr "Hora inicial"
425
+
426
+ #: views/admin/display-options-meta.php:49
427
+ msgid "Start date"
428
+ msgstr "Data inicial"
429
+
430
+ #: views/admin/display-options-meta.php:50
431
+ msgid "Start time and date"
432
+ msgstr "Hora e data inicial"
433
+
434
+ #: views/admin/display-options-meta.php:51
435
+ msgid "Start date and time"
436
+ msgstr "Data e hora inicial"
437
+
438
+ #: views/admin/display-options-meta.php:53
439
+ msgid "Text to display before the start time."
440
+ msgstr "Texto para exibir antes da hora inicial."
441
+
442
+ #: views/admin/display-options-meta.php:58
443
+ msgid "End time/date display"
444
+ msgstr "Exibição data / hora final"
445
+
446
+ #: views/admin/display-options-meta.php:59
447
+ msgid "Select how to display the end date / time."
448
+ msgstr "Selecione como exibir data / hora final."
449
+
450
+ #: views/admin/display-options-meta.php:62
451
+ msgid "End time"
452
+ msgstr "Hora final"
453
+
454
+ #: views/admin/display-options-meta.php:63
455
+ msgid "End date"
456
+ msgstr "Data final"
457
+
458
+ #: views/admin/display-options-meta.php:64
459
+ msgid "End time and date"
460
+ msgstr "Hora e data final"
461
+
462
+ #: views/admin/display-options-meta.php:65
463
+ msgid "End date and time"
464
+ msgstr "Data e hora final"
465
+
466
+ #: views/admin/display-options-meta.php:67
467
+ msgid "Text to display before the end time."
468
+ msgstr "Texto para exibir antes da hora final."
469
+
470
+ #: views/admin/display-options-meta.php:72
471
+ msgid "Separator"
472
+ msgstr "Separador"
473
+
474
+ #: views/admin/display-options-meta.php:74
475
+ msgid ""
476
+ "If you have chosen to display both the time and date above, enter the text / "
477
+ "characters to display between the time and date here (including any spaces)."
478
+ msgstr ""
479
+ "Se você escolher para exibir data e hora acima, digite o texto/caracteres "
480
+ "para exibir entre a hora e data aqui (incluindo espaços)."
481
+
482
+ #: views/admin/display-options-meta.php:80
483
+ msgid "Location"
484
+ msgstr "Local"
485
+
486
+ #: views/admin/display-options-meta.php:82
487
+ msgid "Show the location of events?"
488
+ msgstr "Exibir local de eventos?"
489
+
490
+ #: views/admin/display-options-meta.php:83
491
+ msgid "Text to display before the location."
492
+ msgstr "Texto para exibir antes do local."
493
+
494
+ #: views/admin/display-options-meta.php:88
495
+ msgid "Description"
496
+ msgstr "Descrição"
497
+
498
+ #: views/admin/display-options-meta.php:91
499
+ msgid ""
500
+ "Show the description of events? (URLs in the description will be made into "
501
+ "links)."
502
+ msgstr ""
503
+ "Exibir a descrição dos eventos? (URLS na descrição serão transformadas em "
504
+ "links)."
505
+
506
+ #: views/admin/display-options-meta.php:93
507
+ msgid "Text to display before the description."
508
+ msgstr "Texto para exibir antes da descrição."
509
+
510
+ #: views/admin/display-options-meta.php:95
511
+ msgid ""
512
+ "Maximum number of words to show from description. Leave blank for no limit."
513
+ msgstr ""
514
+ "Número máximo de palavras para exibir na descrição. Deixe em branco para "
515
+ "nenhum limite."
516
+
517
+ #: views/admin/display-options-meta.php:100
518
+ msgid "Event Link"
519
+ msgstr "Link do evento"
520
+
521
+ #: views/admin/display-options-meta.php:103
522
+ msgid "Show a link to the Google Calendar page for an event?"
523
+ msgstr "Exibir um link para a página do Google Calendar para um evento?"
524
+
525
+ #: views/admin/display-options-meta.php:107
526
+ msgid "Links open in a new window / tab?"
527
+ msgstr "Links abertos em nova aba / janela?"
528
+
529
+ #: views/admin/display-options-meta.php:109
530
+ msgid "The link text to be displayed."
531
+ msgstr "O texto do link para ser exibido."
532
+
533
+ #: views/admin/gce-feed-meta-display.php:77
534
+ msgid "Want to be in the know?"
535
+ msgstr "Quer estar a saber?"
536
+
537
+ #: views/admin/gce-feed-meta-display.php:80
538
+ msgid "Get notified when new features are released"
539
+ msgstr "Seja notificado quando novos recursos forem lançados"
540
+
541
+ #: views/admin/gce-feed-meta-display.php:91
542
+ msgid ""
543
+ "Copy and paste this shortcode to display this Google Calendar feed on any "
544
+ "post or page."
545
+ msgstr ""
546
+ "Copie e cole este shortcode para exibir este Feed do Google Calendar em "
547
+ "qualquer post ou página."
548
+
549
+ #: views/admin/gce-feed-meta-display.php:92
550
+ msgid ""
551
+ "To avoid display issues, make sure to paste the shortcode in the Text tab of "
552
+ "the post editor."
553
+ msgstr ""
554
+ "Para evitar problemas de exibição, certifique-se de colar o shortcode na aba "
555
+ "texto do editor do post/página."
556
+
557
+ #: views/admin/gce-feed-meta-display.php:97
558
+ msgid "Google Calendar ID"
559
+ msgstr "ID Google Calendar"
560
+
561
+ #: views/admin/gce-feed-meta-display.php:101
562
+ msgid "The Google Calendar ID."
563
+ msgstr "A ID do Google Calendar."
564
+
565
+ #: views/admin/gce-feed-meta-display.php:101
566
+ msgid "Example"
567
+ msgstr "Exemplo"
568
+
569
+ #: views/admin/gce-feed-meta-display.php:103
570
+ msgid "How to find your Google Calendar ID"
571
+ msgstr "Como encontrar ID do Google Calendar"
572
+
573
+ #: views/admin/gce-feed-meta-display.php:109
574
+ msgid "Search Query"
575
+ msgstr "Consulta"
576
+
577
+ #: views/admin/gce-feed-meta-display.php:112
578
+ msgid "Find and show events based on a search query."
579
+ msgstr "Enontre e exiba eventos baseado em consulta."
580
+
581
+ #: views/admin/gce-feed-meta-display.php:117
582
+ msgid "Expand Recurring Events?"
583
+ msgstr "Expandir eventos recorrentes?"
584
+
585
+ #: views/admin/gce-feed-meta-display.php:119
586
+ msgid "Yes"
587
+ msgstr "Sim"
588
+
589
+ #: views/admin/gce-feed-meta-display.php:120
590
+ msgid ""
591
+ "Display recurring events each time they occur. If disabled, events will be "
592
+ "displayed only the first time they occur."
593
+ msgstr ""
594
+ "Exibir eventos recorrentes cada vez que ocorrer. Se desativado, eventos "
595
+ "aparecerão apenas na primeira vez que ocorre."
596
+
597
+ #: views/admin/gce-feed-meta-display.php:125
598
+ msgid "Multiple Day Events"
599
+ msgstr "Eventos de múltiplos dias."
600
+
601
+ #: views/admin/gce-feed-meta-display.php:127
602
+ msgid "Show on each day"
603
+ msgstr "Exibir em cada dia"
604
+
605
+ #: views/admin/gce-feed-meta-display.php:128
606
+ msgid ""
607
+ "Display multiple day events on each day that they span. If disabled, "
608
+ "multiple day events will be displayed only on the first day they occur."
609
+ msgstr ""
610
+ "Exibir eventos de múltiplos dias em cada dia de sua duração. Se desativado, "
611
+ "eventos de múltiplos dias serão exibidos apenas no primeiro dia que ocorrem. "
612
+
613
+ #: views/admin/gce-feed-meta-display.php:133
614
+ msgid "Display Mode"
615
+ msgstr "Modo de exibição"
616
+
617
+ #: views/admin/gce-feed-meta-display.php:136 views/widgets.php:294
618
+ msgid "Grid (Month view)"
619
+ msgstr "Grade (Mês)"
620
+
621
+ #: views/admin/gce-feed-meta-display.php:139 views/widgets.php:297
622
+ msgid "Custom Date Range (List)"
623
+ msgstr "Intervalo de datas personalizado (lista)"
624
+
625
+ #: views/admin/gce-feed-meta-display.php:140 views/widgets.php:298
626
+ msgid "Custom Date Range (Grid)"
627
+ msgstr "Intervalo de datas personalizado (grade)"
628
+
629
+ #: views/admin/gce-feed-meta-display.php:142
630
+ msgid "Select how to display this feed."
631
+ msgstr "Selecione como exibir este feed."
632
+
633
+ #: views/admin/gce-feed-meta-display.php:147
634
+ msgid "Events per Page"
635
+ msgstr "Eventos por págian"
636
+
637
+ #: views/admin/gce-feed-meta-display.php:150 views/widgets.php:313
638
+ msgid "Number of Days"
639
+ msgstr "Número de dias"
640
+
641
+ #: views/admin/gce-feed-meta-display.php:151 views/widgets.php:314
642
+ msgid "Number of Events"
643
+ msgstr "Número de eventos"
644
+
645
+ #: views/admin/gce-feed-meta-display.php:152 views/widgets.php:315
646
+ msgid "One Week"
647
+ msgstr "Uma semana"
648
+
649
+ #: views/admin/gce-feed-meta-display.php:153 views/widgets.php:316
650
+ msgid "One Month"
651
+ msgstr "Um mês"
652
+
653
+ #: views/admin/gce-feed-meta-display.php:158
654
+ msgid "How many events to display per page (List View only)."
655
+ msgstr "Quantos eventos exibir por página (apenas lista)."
656
+
657
+ #: views/admin/gce-feed-meta-display.php:163
658
+ msgid "Display Start Date Offset"
659
+ msgstr "Offset de exibição de data inicial"
660
+
661
+ #: views/admin/gce-feed-meta-display.php:166
662
+ #: views/admin/gce-feed-meta-display.php:178 views/widgets.php:330
663
+ msgid "Number of Days Back"
664
+ msgstr "Número de dias antes"
665
+
666
+ #: views/admin/gce-feed-meta-display.php:167
667
+ #: views/admin/gce-feed-meta-display.php:193 views/widgets.php:331
668
+ msgid "Number of Days Forward"
669
+ msgstr "Número de dias depois"
670
+
671
+ #: views/admin/gce-feed-meta-display.php:170 views/widgets.php:335
672
+ msgid ""
673
+ "Change to initially display events on a date other than today (List View "
674
+ "only)."
675
+ msgstr ""
676
+ "Mudar para exibir inicialmente eventos em uma data diferente de hoje (apenas "
677
+ "lista)."
678
+
679
+ #: views/admin/gce-feed-meta-display.php:175
680
+ msgid "Earliest Feed Event Date"
681
+ msgstr "Primeira Data de evento do Feed"
682
+
683
+ #: views/admin/gce-feed-meta-display.php:179
684
+ msgid "Number of Months Back"
685
+ msgstr "Número de meses antes"
686
+
687
+ #: views/admin/gce-feed-meta-display.php:180
688
+ msgid "Number of Years Back"
689
+ msgstr "Número de anos antes"
690
+
691
+ #: views/admin/gce-feed-meta-display.php:185
692
+ msgid "Set how far back to retrieve events regardless of initial display."
693
+ msgstr ""
694
+ "Defina o quão longe no passado para recuperar eventos independente da "
695
+ "exibição inicial."
696
+
697
+ #: views/admin/gce-feed-meta-display.php:190
698
+ msgid "Latest Feed Event Date"
699
+ msgstr "Última Data de evento do Feed"
700
+
701
+ #: views/admin/gce-feed-meta-display.php:194
702
+ msgid "Number of Months Forward"
703
+ msgstr "Número de meses depois"
704
+
705
+ #: views/admin/gce-feed-meta-display.php:195
706
+ msgid "Number of Years Forward"
707
+ msgstr "Número de anos depois"
708
+
709
+ #: views/admin/gce-feed-meta-display.php:200
710
+ msgid ""
711
+ "Set how far in the future to retrieve events regardless of initial display."
712
+ msgstr ""
713
+ "Defina o quão longe no futuro para recuperar eventos independente da "
714
+ "exibição inicial."
715
+
716
+ #: views/admin/gce-feed-meta-display.php:205
717
+ msgid "Use Custom Date Range"
718
+ msgstr "Usar intervalo de datas personalizado"
719
+
720
+ #: views/admin/gce-feed-meta-display.php:209
721
+ msgctxt "separator between custom date range fields"
722
+ msgid "to"
723
+ msgstr "à"
724
+
725
+ #: views/admin/gce-feed-meta-display.php:211
726
+ msgid "Set a specific range of events to retrieve."
727
+ msgstr "Definir um intervalo específico de eventos para coletar."
728
+
729
+ #: views/admin/gce-feed-meta-display.php:217 views/widgets.php:345
730
+ msgid "Show Paging Links"
731
+ msgstr "Exibir links de paginação"
732
+
733
+ #: views/admin/gce-feed-meta-display.php:220
734
+ msgid "Display Next and Back navigation links."
735
+ msgstr "Exibir links de navegação Próximo e Anterior"
736
+
737
+ #: views/admin/gce-feed-meta-display.php:225 views/widgets.php:348
738
+ msgid "Show Tooltips"
739
+ msgstr "Exibir Tooltips"
740
+
741
+ #: views/admin/gce-feed-meta-display.php:228
742
+ msgid "Display tooltips when hovering over events (Grid View only)."
743
+ msgstr "Exibir dicas ao pair sobre eventos (apenas grade)."
744
+
745
+ #: views/admin/gce-feed-meta-display.php:233
746
+ msgid "Date Format"
747
+ msgstr "Formato de Data"
748
+
749
+ #: views/admin/gce-feed-meta-display.php:237
750
+ #: views/admin/gce-feed-meta-display.php:248
751
+ #, php-format
752
+ msgid "Use %sPHP date formatting%s."
753
+ msgstr "Usar %sformato de data PHP%s."
754
+
755
+ #: views/admin/gce-feed-meta-display.php:238
756
+ #: views/admin/gce-feed-meta-display.php:249
757
+ msgid "Leave blank to use the default."
758
+ msgstr "Deixar em branco para padrão."
759
+
760
+ #: views/admin/gce-feed-meta-display.php:244
761
+ msgid "Time Format"
762
+ msgstr "Formato de Hora"
763
+
764
+ #: views/admin/gce-feed-meta-display.php:255
765
+ msgid "Cache Duration"
766
+ msgstr "Duração do cache"
767
+
768
+ #: views/admin/gce-feed-meta-display.php:258
769
+ msgid ""
770
+ "The length of time, in seconds, to cache the feed (43200 = 12 hours). If "
771
+ "this feed changes regularly, you may want to reduce the cache duration."
772
+ msgstr ""
773
+ "A duração do tempo, em segundos do cache do feed (43200 = 12 horas). Se este "
774
+ "feed se altera regularmente, você vai querer reduzir a duração do cache."
775
+
776
+ #: views/admin/gce-feed-sidebar-help.php:6
777
+ msgid "Documentation & getting started"
778
+ msgstr "Documentação & Primeiros passos"
779
+
780
+ #: views/admin/gce-feed-sidebar-help.php:11
781
+ msgid "Community support forums"
782
+ msgstr "Fóruns de suporte"
783
+
784
+ #: views/admin/gce-feed-sidebar-help.php:16
785
+ msgid "Rate this plugin"
786
+ msgstr "Avalie este plugin"
787
+
788
+ #: views/admin/gce-feed-sidebar-help.php:21
789
+ msgid "View our roadmap & vote"
790
+ msgstr "Veja nossos planos & vote"
791
+
792
+ #: views/admin/gce-feed-sidebar-help.php:26
793
+ msgid "Get notified of new features"
794
+ msgstr "Seja notificado de novos recursos"
795
+
796
+ #: views/widgets.php:28
797
+ msgid ""
798
+ "Display a list or calendar grid of events from one or more Google Calendar "
799
+ "feeds you have added"
800
+ msgstr ""
801
+ "Exibir uma lista ou grade de calendário de eventos de um ou mais feeds do "
802
+ "Google Calendar adicionado"
803
+
804
+ #: views/widgets.php:167
805
+ msgid ""
806
+ "No valid Feed IDs have been entered for this widget. Please check that you "
807
+ "have entered the IDs correctly in the widget settings (Appearance > "
808
+ "Widgets), and that the Feeds have not been deleted."
809
+ msgstr ""
810
+ "Nenhum ID de feed válido foi digitado para este widget. Por favor verifique "
811
+ "se você digitou corretamente na configuração do widget (Aparência > "
812
+ "Widgets), e que os seus feeds não foram excluídos."
813
+
814
+ #: views/widgets.php:207
815
+ msgid ""
816
+ "There was a problem with one or more of your feed IDs. Please check your "
817
+ "widget settings and make sure they are correct."
818
+ msgstr ""
819
+ "Há um problema com um ou mais IDs de Feed. Por favor verifique se as "
820
+ "configurações do widget estão corretas."
821
+
822
+ #: views/widgets.php:213
823
+ msgid "You have not added any feeds yet."
824
+ msgstr "Você não adicionou nenhum feed ainda."
825
+
826
+ #: views/widgets.php:256
827
+ msgid "There are no feeds created yet."
828
+ msgstr "Não foram criados feeds ainda."
829
+
830
+ #: views/widgets.php:257
831
+ msgid "Add your first feed!"
832
+ msgstr "Adicione seu primeiro feed!"
833
+
834
+ #: views/widgets.php:267
835
+ msgid "Events on"
836
+ msgstr "Eventos em"
837
+
838
+ #: views/widgets.php:281
839
+ msgid "Title:"
840
+ msgstr "Título:"
841
+
842
+ #: views/widgets.php:286
843
+ msgid "Feeds to Display (comma separated list - i.e. 101,102,103):"
844
+ msgstr "Feeds para Exibir (separados por vírgula, ex.: 101,102,103):"
845
+
846
+ #: views/widgets.php:292
847
+ msgid "Display Events as:"
848
+ msgstr "Exibir eventos como:"
849
+
850
+ #: views/widgets.php:303
851
+ msgid "Sort Order (List View only):"
852
+ msgstr "Ordenação (apenas lista):"
853
+
854
+ #: views/widgets.php:305
855
+ msgid "Ascending"
856
+ msgstr "Ascendente"
857
+
858
+ #: views/widgets.php:306
859
+ msgid "Descending"
860
+ msgstr "Descendente"
861
+
862
+ #: views/widgets.php:311
863
+ msgid "Events per Page (List View only):"
864
+ msgstr "Eventos por página (apenas lista):"
865
+
866
+ #: views/widgets.php:324
867
+ msgid ""
868
+ "This setting will pull from the custom date range set in the main feed "
869
+ "settings and cannot be changed here."
870
+ msgstr ""
871
+ "Essa configuração vai puxar a partir do intervalo de datas personalizado "
872
+ "definido nas configurações principais do feed e não pode ser alterada aqui."
873
+
874
+ #: views/widgets.php:328
875
+ msgid "Display Start Date Offset (List View only):"
876
+ msgstr "Exibir offset de data incial (apenas lista):"
877
+
878
+ #: views/widgets.php:339
879
+ msgid ""
880
+ "Display Title on Tooltip/List Item (e.g. 'Events on 7th March'). Grouped "
881
+ "lists always have a title displayed."
882
+ msgstr ""
883
+ "Exibir título na tooltop/lista (ex.: 'Eventos em 7 de março'). Listas "
884
+ "agrupadas sempre tem um título exibido."
views/admin/gce-feed-meta-display.php CHANGED
@@ -60,14 +60,6 @@
60
  $gce_feed_end = 'years';
61
  }
62
 
63
- if( empty( $gce_feed_start_num ) ) {
64
- $gce_feed_start_num = 1;
65
- }
66
-
67
- if( empty( $gce_feed_end_num ) ) {
68
- $gce_feed_end_num = 1;
69
- }
70
-
71
  if( empty( $gce_per_page_num ) ) {
72
  $gce_per_page_num = 7;
73
  }
@@ -182,7 +174,11 @@
182
  <span class="gce_feed_start_num_wrap <?php echo ( $gce_feed_start == 'custom' ? 'gce-admin-hidden' : '' ); ?>">
183
  <input type="number" min="0" step="1" class="small-text" id="gce_feed_start_num" name="gce_feed_start_num" value="<?php echo esc_attr( $gce_feed_start_num ); ?>" />
184
  </span>
185
- <p class="description"><?php _e( 'Set how far back to retrieve events regardless of initial display.', 'gce' ); ?></p>
 
 
 
 
186
  </td>
187
  </tr>
188
 
60
  $gce_feed_end = 'years';
61
  }
62
 
 
 
 
 
 
 
 
 
63
  if( empty( $gce_per_page_num ) ) {
64
  $gce_per_page_num = 7;
65
  }
174
  <span class="gce_feed_start_num_wrap <?php echo ( $gce_feed_start == 'custom' ? 'gce-admin-hidden' : '' ); ?>">
175
  <input type="number" min="0" step="1" class="small-text" id="gce_feed_start_num" name="gce_feed_start_num" value="<?php echo esc_attr( $gce_feed_start_num ); ?>" />
176
  </span>
177
+ <p class="description">
178
+ <?php _e( 'Set how far back to retrieve events regardless of initial display.', 'gce' ); ?>
179
+ <br>
180
+ <?php _e( '<strong>Note:</strong> Total events are currently limited to 2,500 by the Google Calendar API.', 'gce' ); ?>
181
+ </p>
182
  </td>
183
  </tr>
184