Simple Calendar – Google Calendar Plugin - Version 2.0.7.1

Version Description

  • As of Nov. 17, 2014 the GCal API v2 is deprecated, which breaks all calendar feed displays. This update will temporarily hide the display while we work on a solution that uses GCal API v3.
Download this release

Release Info

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

Code changes from version 2.0.7 to 2.0.7.1

README.txt CHANGED
@@ -87,6 +87,10 @@ There are three ways to install this plugin.
87
 
88
  == Changelog ==
89
 
 
 
 
 
90
  = 2.0.7 =
91
 
92
  * Events will now display if it hasn't ended yet for list views.
@@ -304,6 +308,7 @@ There are three ways to install this plugin.
304
 
305
  == Upgrade Notice ==
306
 
307
- = 2.0.0 =
 
 
308
 
309
- This is a major upgrade to a new code base and structure. PLEASE make sure you backup your site before upgrading.
87
 
88
  == Changelog ==
89
 
90
+ = 2.0.7.1 =
91
+
92
+ * As of Nov. 17, 2014 the GCal API v2 is deprecated, which breaks all calendar feed displays. This update will temporarily hide the display while we work on a solution that uses GCal API v3.
93
+
94
  = 2.0.7 =
95
 
96
  * Events will now display if it hasn't ended yet for list views.
308
 
309
  == Upgrade Notice ==
310
 
311
+ = 2.0.7.1 =
312
+
313
+ As of Nov. 17, 2014 the GCal API v2 is deprecated, which breaks all calendar feed displays. v2.0.7.1 will temporarily hide the display while we work on a solution that uses GCal API v3.
314
 
 
class-google-calendar-events-admin.php CHANGED
@@ -55,6 +55,12 @@ class Google_Calendar_Events_Admin {
55
 
56
  // Add the options page and menu item.
57
  add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ), 2 );
 
 
 
 
 
 
58
  }
59
 
60
  public function add_plugin_admin_menu() {
@@ -136,6 +142,22 @@ class Google_Calendar_Events_Admin {
136
  ),
137
  $links
138
  );
 
139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
  }
141
  }
55
 
56
  // Add the options page and menu item.
57
  add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ), 2 );
58
+
59
+ // Add temporary admin notice for a particular version.
60
+ // TODO Remove this after GCal API v3 update, but leave commented out for future admin notices.
61
+ if( version_compare( $this->version, '2.1.0', '<' ) ) {
62
+ add_action( 'admin_notices', array( $this, 'show_admin_notice' ) );
63
+ }
64
  }
65
 
66
  public function add_plugin_admin_menu() {
142
  ),
143
  $links
144
  );
145
+ }
146
 
147
+ /**
148
+ * Use to show an important admin notice.
149
+ *
150
+ * @since 2.0.7.1
151
+ */
152
+
153
+ /**
154
+ * Example use in constructor:
155
+
156
+ if( version_compare( $this->version, '2.1.0', '<' ) ) {
157
+ add_action( 'admin_notices', array( $this, 'show_admin_notice' ) );
158
+ }
159
+ */
160
+ function show_admin_notice() {
161
+ include_once( 'includes/admin/admin-notice.php' );
162
  }
163
  }
class-google-calendar-events.php CHANGED
@@ -18,7 +18,7 @@ class Google_Calendar_Events {
18
  *
19
  * @var string
20
  */
21
- protected $version = '2.0.7';
22
 
23
  /**
24
  * Unique identifier for the plugin.
18
  *
19
  * @var string
20
  */
21
+ protected $version = '2.0.7.1';
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: Parses Google Calendar feeds and displays the events as a calendar grid or list on a page, post or widget.
15
- * Version: 2.0.7
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.7.1
16
  * Author: Phil Derksen
17
  * Author URI: http://philderksen.com
18
  * License: GPL-2.0+
includes/admin/admin-notice.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Show important upgrade notice.
4
+ *
5
+ * @package GCE
6
+ * @author Phil Derksen <pderksen@gmail.com>, Nick Young <mycorpweb@gmail.com>
7
+ * @license GPL-2.0+
8
+ * @copyright 2014 Phil Derksen
9
+ */
10
+
11
+ // Exit if accessed directly.
12
+ if ( ! defined( 'ABSPATH' ) ) {
13
+ exit;
14
+ }
15
+
16
+ ?>
17
+
18
+ <!-- class="updated" or class="error" -->
19
+ <div id="gce-admin-notice" class="error">
20
+ <p>
21
+ <strong>GCal Events Important Update Nov. 17, 2014:</strong><br/>
22
+ Google took version 2 of the GCal API offline, which breaks all calendar feed displays.<br/>
23
+ <strong><a href="https://wordpress.org/support/topic/nov-17-temporary-easy-embed-display-fix" target="_blank">Here's a temporary fix for your calendar display</a></strong>
24
+ while we move the plugin to using the new GCal API this week. Thanks for your patience.
25
+ </p>
26
+ </div>
includes/misc-functions.php CHANGED
@@ -6,6 +6,10 @@
6
  * @since 2.0.0
7
  */
8
  function gce_print_calendar( $feed_ids, $display = 'grid', $args = array(), $widget = false ) {
 
 
 
 
9
 
10
  $defaults = array(
11
  'title_text' => '',
@@ -94,7 +98,7 @@ function gce_print_calendar( $feed_ids, $display = 'grid', $args = array(), $wid
94
  $i++;
95
  }
96
  }
97
-
98
  return $markup;
99
  }
100
 
6
  * @since 2.0.0
7
  */
8
  function gce_print_calendar( $feed_ids, $display = 'grid', $args = array(), $widget = false ) {
9
+
10
+ // Temporarily hide all shortcode output.
11
+ // TODO Remove this after GCal API v3 update..
12
+ return '';
13
 
14
  $defaults = array(
15
  'title_text' => '',
98
  $i++;
99
  }
100
  }
101
+
102
  return $markup;
103
  }
104
 
languages/gce-pl_PL.mo CHANGED
Binary file
languages/gce-pl_PL.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Calendar Events\n"
4
- "POT-Creation-Date: 2014-10-09 13:21-0700\n"
5
- "PO-Revision-Date: 2014-10-17 13:30+0100\n"
6
  "Last-Translator: Michał Pasternak <michal.dtz@gmail.com>\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.9\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
@@ -30,92 +30,124 @@ msgstr "Wydarzenia w kalendarzu Google"
30
  msgid "Feeds"
31
  msgstr "Kalendarze"
32
 
 
 
 
 
33
  #: google-calendar-events/includes/admin/admin-functions.php:20
34
  msgid "Cache has been cleared for this feed."
35
  msgstr "Pamięć podręczna została wyczyszczona dla tego kalendarza."
36
 
37
- #: google-calendar-events/includes/admin/admin-functions.php:74
38
- #: google-calendar-events/includes/gce-feed-cpt.php:252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  msgid "Clear Cache"
40
  msgstr "Wyczyść pamięć podręczną"
41
 
42
- #: google-calendar-events/includes/class-gce-display.php:188
43
- #: google-calendar-events/includes/class-gce-display.php:277
44
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:170
45
  #: google-calendar-events/views/widgets.php:252
46
  msgid "Back"
47
  msgstr "Wstecz"
48
 
49
- #: google-calendar-events/includes/class-gce-display.php:192
50
- #: google-calendar-events/includes/class-gce-display.php:278
51
  msgid "Next"
52
  msgstr "Następny"
53
 
54
- #: google-calendar-events/includes/class-gce-display.php:372
55
  msgid "No events to display."
56
  msgstr "Brak zdarzeń do wyświetlenia."
57
 
58
- #: google-calendar-events/includes/class-gce-event.php:496
59
  #, php-format
60
  msgid "%s year"
61
  msgstr "%s rok"
62
 
63
- #: google-calendar-events/includes/class-gce-event.php:496
64
  #, php-format
65
  msgid "%s years"
66
  msgstr "%s lat"
67
 
68
- #: google-calendar-events/includes/class-gce-event.php:497
69
  #, php-format
70
  msgid "%s month"
71
  msgstr "%s miesiąc"
72
 
73
- #: google-calendar-events/includes/class-gce-event.php:497
74
  #, php-format
75
  msgid "%s months"
76
  msgstr "%s miesiące"
77
 
78
- #: google-calendar-events/includes/class-gce-event.php:498
79
  #, php-format
80
  msgid "%s week"
81
  msgstr "%s tydzień"
82
 
83
- #: google-calendar-events/includes/class-gce-event.php:498
84
  #, php-format
85
  msgid "%s weeks"
86
  msgstr "%s tygodnie"
87
 
88
- #: google-calendar-events/includes/class-gce-event.php:499
89
  #, php-format
90
  msgid "%s day"
91
  msgstr "%s dzień"
92
 
93
- #: google-calendar-events/includes/class-gce-event.php:499
94
  #, php-format
95
  msgid "%s days"
96
  msgstr "%s dni"
97
 
98
- #: google-calendar-events/includes/class-gce-event.php:500
99
  #, php-format
100
  msgid "%s hour"
101
  msgstr "%s godzina"
102
 
103
- #: google-calendar-events/includes/class-gce-event.php:500
104
  #, php-format
105
  msgid "%s hours"
106
  msgstr "%s godziny"
107
 
108
- #: google-calendar-events/includes/class-gce-event.php:501
109
  #, php-format
110
  msgid "%s min"
111
  msgstr "%s minuta"
112
 
113
- #: google-calendar-events/includes/class-gce-event.php:501
114
  #, php-format
115
  msgid "%s mins"
116
  msgstr "%s minuty"
117
 
118
- #: google-calendar-events/includes/class-gce-feed.php:82
119
  msgid ""
120
  "The feed URL has not been set. Please make sure to set it correctly in the "
121
  "Feed settings."
@@ -123,7 +155,7 @@ msgstr ""
123
  "Adres URL kalendarza nie został ustawiony. Upewnij się, że wpisałeś/aś go "
124
  "poprawnie w Ustawieniach kalendarza."
125
 
126
- #: google-calendar-events/includes/class-gce-feed.php:162
127
  msgid ""
128
  "Some data was retrieved, but could not be parsed successfully. Please ensure "
129
  "your feed URL is correct."
@@ -131,14 +163,14 @@ msgstr ""
131
  "Otrzymano część danych, ale nie mogły być one zanalizowane prawidłowo. "
132
  "Upewnij się, że adres URL kalendarza jest poprawny."
133
 
134
- #: google-calendar-events/includes/class-gce-feed.php:168
135
  msgid ""
136
  "The feed could not be found (404). Please ensure your feed URL is correct."
137
  msgstr ""
138
  "Nie znaleziono kalendarza (błąd 404 Not found). Upewnij się, że adres URL "
139
  "jest prawidłowy."
140
 
141
- #: google-calendar-events/includes/class-gce-feed.php:171
142
  msgid ""
143
  "Access to this feed was denied (403). Please ensure you have public sharing "
144
  "enabled for your calendar."
@@ -146,7 +178,7 @@ msgstr ""
146
  "Brak dostępu (błąd 403 Forbidden). Upewnij się, że ten kalendarz jest "
147
  "publicznie dostępny."
148
 
149
- #: google-calendar-events/includes/class-gce-feed.php:174
150
  #, php-format
151
  msgid ""
152
  "The feed data could not be retrieved. Error code: %s. Please ensure your "
@@ -155,7 +187,7 @@ msgstr ""
155
  "Nie otrzymano danych kalendarza. Kod błędu: %s. Upewnij się, że adres URL "
156
  "kalendarza jest poprawny."
157
 
158
- #: google-calendar-events/includes/class-gce-feed.php:179
159
  msgid " Please ensure your feed URL is correct."
160
  msgstr "Upewnij się, że adres URL kalendarza jest poprawny."
161
 
@@ -165,6 +197,7 @@ msgstr "Kalendarze Google"
165
 
166
  #: google-calendar-events/includes/gce-feed-cpt.php:22
167
  #: google-calendar-events/includes/gce-feed-cpt.php:24
 
168
  msgid "Feed"
169
  msgstr "Kalendarz"
170
 
@@ -208,6 +241,11 @@ msgstr "Nie znaleziono kalendarzy."
208
  msgid "No feeds found in Trash."
209
  msgstr "Nie znaleziono kalendarzy w Śmietniku."
210
 
 
 
 
 
 
211
  #: google-calendar-events/includes/gce-feed-cpt.php:75
212
  #: google-calendar-events/includes/gce-feed-cpt.php:76
213
  #, php-format
@@ -234,33 +272,37 @@ msgstr "%4$s wysłano. %1$sObejrzyj %2$s%3$s"
234
  msgid "%4$s draft updated. %1$sView %2$s%3$s"
235
  msgstr "%4$s szkiców zaktualizowano. %1$sObejrzyj %2$s%3$s"
236
 
237
- #: google-calendar-events/includes/gce-feed-cpt.php:205
 
 
 
 
238
  msgid "Feed ID"
239
  msgstr "ID kalendarza"
240
 
241
- #: google-calendar-events/includes/gce-feed-cpt.php:206
242
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:61
243
  msgid "Feed Shortcode"
244
  msgstr "Krótki kod kalednarza"
245
 
246
- #: google-calendar-events/includes/gce-feed-cpt.php:207
247
  msgid "Display Type"
248
  msgstr "Rodzaj widoku"
249
 
250
- #: google-calendar-events/includes/gce-feed-cpt.php:234
251
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:137
252
  #: google-calendar-events/views/widgets.php:218
253
  msgid "Grid"
254
  msgstr "Siatka"
255
 
256
- #: google-calendar-events/includes/gce-feed-cpt.php:236
257
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:138
258
  #: google-calendar-events/views/widgets.php:219
259
  msgid "List"
260
  msgstr "Lista"
261
 
262
- #: google-calendar-events/includes/gce-feed-cpt.php:238
263
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:139
264
  #: google-calendar-events/views/widgets.php:220
265
  msgid "Grouped List"
266
  msgstr "Zgrupowana lista"
@@ -364,6 +406,18 @@ msgstr ""
364
  "Jeżeli wybrałeś/aś aby wyświetlać zarówno czas i datę powyżej, wpisz tekst / "
365
  "znaki do wyświetlenia pomiędzy czasem i datą (ze spacjami włącznie)."
366
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  #: google-calendar-events/views/admin/display-options-meta.php:88
368
  msgid "Description"
369
  msgstr "Opis"
@@ -403,65 +457,74 @@ msgstr "Odnośniki otwierają się w nowym oknie / zakładce?"
403
  msgid "The link text to be displayed."
404
  msgstr "Tekst odnośnika do wyświetlenia."
405
 
406
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:42
407
  msgid ""
408
  "We're <strong>smack dab</strong> in the middle of building additional "
409
  "features for this plugin. Have ideas?"
410
  msgstr "Obecnie rozbudowujemy tą wtyczkę. Masz jakieś pomysły?"
411
 
412
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:45
413
  msgid "Visit our roadmap and tell us what you're looking for"
414
  msgstr "Obejrzyj nasz plan pracy i powiedz nam, czego poszukujesz"
415
 
416
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:51
417
  msgid "Want to be in the know?"
418
  msgstr "Chcesz być poinformowany?"
419
 
420
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:54
421
  msgid "Get notified when new features are released"
422
  msgstr "Bądź poinformowany, gdy nowe funkcje będą dostępne"
423
 
424
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:64
 
425
  msgid ""
426
- "Copy and paste this shortcode to display this Google Calendar feed in any "
427
  "post or page."
428
  msgstr ""
429
  "Skopiuj i wklej ten krótki kod, aby wyświetlić ten kalendarz Google na "
430
  "dowolnej stronie lub wpisie."
431
 
432
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:68
 
 
 
 
 
 
 
 
433
  msgid "GCal Feed URL"
434
  msgstr "Adres kalendarza"
435
 
436
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:72
437
  msgid "The Google Calendar feed URL."
438
  msgstr "Adres kalendarza w Google Calendar"
439
 
440
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:73
441
  msgid "Example"
442
  msgstr "Przykład"
443
 
444
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:74
445
  msgid "How to find your GCal feed URL"
446
  msgstr "Jak odnaleźć adres kalendarza Google?"
447
 
448
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:80
449
  msgid "Search Query"
450
  msgstr "Zapytanie"
451
 
452
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:83
453
  msgid "Find and show events based on a search query."
454
  msgstr "Znajdź i wyświetl wydarzenia, bazując na wyszukiwaniu"
455
 
456
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:88
457
  msgid "Expand Recurring Events?"
458
  msgstr "Wyświetlać wszystkie powtórzenia dla powtarzającego się wydarzenia?"
459
 
460
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:90
461
  msgid "Yes"
462
  msgstr "Tak"
463
 
464
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:91
465
  msgid ""
466
  "This will show recurring events each time they occur, otherwise it will only "
467
  "show the event the first time it occurs."
@@ -469,25 +532,30 @@ msgstr ""
469
  "Ta opcja pokaże wydarzenia powtarzające się za każdym razem, gdy występują, "
470
  "w przeciwnym wypadku pokaże tylko pierwsze wystąpienie danego wydarzenia."
471
 
472
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:96
473
  msgid "Date Format"
474
  msgstr "Format daty"
475
 
476
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:100
477
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:111
478
  #, php-format
479
  msgid "Use %sPHP date formatting%s."
480
  msgstr "Użyj %sPHP date formatting%s."
481
 
482
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:107
 
 
 
 
 
483
  msgid "Time Format"
484
  msgstr "Format czasu"
485
 
486
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:118
487
  msgid "Cache Duration"
488
  msgstr "Okres pamięci podręcznej"
489
 
490
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:121
491
  msgid ""
492
  "The length of time, in seconds, to cache the feed (43200 = 12 hours). If "
493
  "this feed changes regularly, you may want to reduce the cache duration."
@@ -496,15 +564,15 @@ msgstr ""
496
  "pamięci podręcznej. Jeżeli ten kalendarz zmienia się często, możesz "
497
  "zmniejszyć tą wartość. 43200 = 12 godzin. "
498
 
499
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:126
500
  msgid "Multiple Day Events"
501
  msgstr "Wydarzenia kilkudniowe"
502
 
503
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:128
504
  msgid "Show on each day"
505
  msgstr "Pokazuj każdego dnia"
506
 
507
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:129
508
  msgid ""
509
  "Show events that span multiple days on each day that they span, rather than "
510
  "just the first day."
@@ -512,61 +580,110 @@ msgstr ""
512
  "Pokazuj wydarzenia, które rozciągają się na klika dni, przez wszystkie dni, "
513
  "zamiast tylko pierwszego dnia."
514
 
515
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:134
516
  msgid "Display Mode"
517
  msgstr "Tryb wyświetlania"
518
 
519
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:141
520
  msgid "Choose how you want your calendar to be displayed."
521
  msgstr "Wybierz, jak chcesz wyświetlać swój kalendarz."
522
 
523
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:146
524
  msgid "Show Paging Links"
525
  msgstr "Pokaż przewijanie"
526
 
527
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:148
528
  #: google-calendar-events/views/widgets.php:227
529
  msgid "Check this option to display Next and Back navigation links."
530
  msgstr ""
531
  "Zaznacz tą opcję, aby pokazywać nawigację (\"poprzedni\", \"następny\")"
532
 
533
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:153
534
  msgid "Number of Events per Page"
535
  msgstr "Ilość wydarzeń na stronę"
536
 
537
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:157
538
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:168
 
 
539
  #: google-calendar-events/views/widgets.php:242
540
  #: google-calendar-events/views/widgets.php:250
541
  msgid "Days"
542
  msgstr "Dni"
543
 
544
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:158
545
  #: google-calendar-events/views/widgets.php:243
546
  msgid "Events"
547
  msgstr "Wydarzenia"
548
 
549
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:160
550
  msgid "How many events to display per page (List View only)."
551
  msgstr "Jak dużo wydarzeń wyświetlać na stronie (tylko widok listy). "
552
 
553
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:165
554
- msgid "Start Date Offset"
 
555
  msgstr "Przesunięcie daty początkowej"
556
 
557
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:171
558
  #: google-calendar-events/views/widgets.php:253
559
  msgid "Ahead"
560
  msgstr "W przód"
561
 
562
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:173
 
563
  msgid ""
564
- "If you need to show events starting on a day other than today. (List View "
565
- "only)."
566
  msgstr ""
567
  "Jeżeli potrzebujesz pokazać zdarzenia zaczynające się innego dnia, niż "
568
  "dzisiaj (tylko widok listy)."
569
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
570
  #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:6
571
  msgid "Documentation & getting started"
572
  msgstr "Dokumentacja & konfiguracja wstępna"
@@ -613,22 +730,23 @@ msgid "Add your first feed!"
613
  msgstr "Dodaj swój pierwszy kalendarz!"
614
 
615
  #: google-calendar-events/views/widgets.php:211
616
- msgid "Feeds to display, as a comma separated list (e.g. 101,102,103):"
617
  msgstr ""
618
- "Kalendarze do wyświetlenia, w formacie listy oddzielanej przecinkami (np. "
619
  "101,102,103):"
620
 
621
  #: google-calendar-events/views/widgets.php:216
622
- msgid "Display events as:"
 
623
  msgstr "Wyświetlaj wydarzenia jako:"
624
 
625
  #: google-calendar-events/views/widgets.php:225
626
- msgid "Show paging links:"
627
- msgstr "Pokazuj przyciski przewijania stron:"
628
 
629
  #: google-calendar-events/views/widgets.php:231
630
- msgid "Sort order (List View only):"
631
- msgstr "Kolejność sortowania (tylko widok listy):"
632
 
633
  #: google-calendar-events/views/widgets.php:233
634
  msgid "Ascending"
@@ -639,17 +757,22 @@ msgid "Descending"
639
  msgstr "Malejąco"
640
 
641
  #: google-calendar-events/views/widgets.php:239
642
- msgid "Number of events per page (List View only):"
 
643
  msgstr "Ilość zdarzeń na stronę (tylko widok listy):"
644
 
645
  #: google-calendar-events/views/widgets.php:248
646
- msgid "Start date offset (List View only):"
 
647
  msgstr "Przesunięcie daty początkowej (tylko widok listy):"
648
 
649
  #: google-calendar-events/views/widgets.php:258
650
  msgid ""
651
- "Display title on tooltip/list item (e.g. 'Events on 7th March'). Grouped "
652
  "lists always have a title displayed."
653
  msgstr ""
654
- "Wyświetlaj tytuł na etykiecie narzędzia/elemencie listy (np. \"Wydarzenia 7. "
655
- "marca\"). Etykieta narzędziowa zawsze wyświetlana jest dla list zgrupowanych."
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Calendar Events\n"
4
+ "POT-Creation-Date: 2014-10-28 10:39-0700\n"
5
+ "PO-Revision-Date: 2014-10-31 19:32+0100\n"
6
  "Last-Translator: Michał Pasternak <michal.dtz@gmail.com>\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.10\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
30
  msgid "Feeds"
31
  msgstr "Kalendarze"
32
 
33
+ #: google-calendar-events/class-google-calendar-events.php:142
34
+ msgid "Loading..."
35
+ msgstr "Wczytuję..."
36
+
37
  #: google-calendar-events/includes/admin/admin-functions.php:20
38
  msgid "Cache has been cleared for this feed."
39
  msgstr "Pamięć podręczna została wyczyszczona dla tego kalendarza."
40
 
41
+ #: google-calendar-events/includes/admin/admin-functions.php:35
42
+ #: google-calendar-events/includes/admin/admin-functions.php:57
43
+ msgid "Starts:"
44
+ msgstr "Początek: "
45
+
46
+ #: google-calendar-events/includes/admin/admin-functions.php:36
47
+ #: google-calendar-events/includes/admin/admin-functions.php:59
48
+ msgid "Ends:"
49
+ msgstr "Koniec: "
50
+
51
+ #: google-calendar-events/includes/admin/admin-functions.php:37
52
+ #: google-calendar-events/includes/admin/admin-functions.php:61
53
+ msgid "Location:"
54
+ msgstr "Miejsce: "
55
+
56
+ #: google-calendar-events/includes/admin/admin-functions.php:38
57
+ #: google-calendar-events/includes/admin/admin-functions.php:62
58
+ msgid "Description:"
59
+ msgstr "Opis:"
60
+
61
+ #: google-calendar-events/includes/admin/admin-functions.php:39
62
+ msgid "More details..."
63
+ msgstr "Więcej szczegółów..."
64
+
65
+ #: google-calendar-events/includes/admin/admin-functions.php:64
66
+ msgid "More Details"
67
+ msgstr "Więcej szczegółów"
68
+
69
+ #: google-calendar-events/includes/admin/admin-functions.php:78
70
+ #: google-calendar-events/includes/gce-feed-cpt.php:256
71
  msgid "Clear Cache"
72
  msgstr "Wyczyść pamięć podręczną"
73
 
74
+ #: google-calendar-events/includes/class-gce-display.php:179
75
+ #: google-calendar-events/includes/class-gce-display.php:270
76
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:185
77
  #: google-calendar-events/views/widgets.php:252
78
  msgid "Back"
79
  msgstr "Wstecz"
80
 
81
+ #: google-calendar-events/includes/class-gce-display.php:183
82
+ #: google-calendar-events/includes/class-gce-display.php:271
83
  msgid "Next"
84
  msgstr "Następny"
85
 
86
+ #: google-calendar-events/includes/class-gce-display.php:366
87
  msgid "No events to display."
88
  msgstr "Brak zdarzeń do wyświetlenia."
89
 
90
+ #: google-calendar-events/includes/class-gce-event.php:504
91
  #, php-format
92
  msgid "%s year"
93
  msgstr "%s rok"
94
 
95
+ #: google-calendar-events/includes/class-gce-event.php:504
96
  #, php-format
97
  msgid "%s years"
98
  msgstr "%s lat"
99
 
100
+ #: google-calendar-events/includes/class-gce-event.php:505
101
  #, php-format
102
  msgid "%s month"
103
  msgstr "%s miesiąc"
104
 
105
+ #: google-calendar-events/includes/class-gce-event.php:505
106
  #, php-format
107
  msgid "%s months"
108
  msgstr "%s miesiące"
109
 
110
+ #: google-calendar-events/includes/class-gce-event.php:506
111
  #, php-format
112
  msgid "%s week"
113
  msgstr "%s tydzień"
114
 
115
+ #: google-calendar-events/includes/class-gce-event.php:506
116
  #, php-format
117
  msgid "%s weeks"
118
  msgstr "%s tygodnie"
119
 
120
+ #: google-calendar-events/includes/class-gce-event.php:507
121
  #, php-format
122
  msgid "%s day"
123
  msgstr "%s dzień"
124
 
125
+ #: google-calendar-events/includes/class-gce-event.php:507
126
  #, php-format
127
  msgid "%s days"
128
  msgstr "%s dni"
129
 
130
+ #: google-calendar-events/includes/class-gce-event.php:508
131
  #, php-format
132
  msgid "%s hour"
133
  msgstr "%s godzina"
134
 
135
+ #: google-calendar-events/includes/class-gce-event.php:508
136
  #, php-format
137
  msgid "%s hours"
138
  msgstr "%s godziny"
139
 
140
+ #: google-calendar-events/includes/class-gce-event.php:509
141
  #, php-format
142
  msgid "%s min"
143
  msgstr "%s minuta"
144
 
145
+ #: google-calendar-events/includes/class-gce-event.php:509
146
  #, php-format
147
  msgid "%s mins"
148
  msgstr "%s minuty"
149
 
150
+ #: google-calendar-events/includes/class-gce-feed.php:81
151
  msgid ""
152
  "The feed URL has not been set. Please make sure to set it correctly in the "
153
  "Feed settings."
155
  "Adres URL kalendarza nie został ustawiony. Upewnij się, że wpisałeś/aś go "
156
  "poprawnie w Ustawieniach kalendarza."
157
 
158
+ #: google-calendar-events/includes/class-gce-feed.php:177
159
  msgid ""
160
  "Some data was retrieved, but could not be parsed successfully. Please ensure "
161
  "your feed URL is correct."
163
  "Otrzymano część danych, ale nie mogły być one zanalizowane prawidłowo. "
164
  "Upewnij się, że adres URL kalendarza jest poprawny."
165
 
166
+ #: google-calendar-events/includes/class-gce-feed.php:183
167
  msgid ""
168
  "The feed could not be found (404). Please ensure your feed URL is correct."
169
  msgstr ""
170
  "Nie znaleziono kalendarza (błąd 404 Not found). Upewnij się, że adres URL "
171
  "jest prawidłowy."
172
 
173
+ #: google-calendar-events/includes/class-gce-feed.php:186
174
  msgid ""
175
  "Access to this feed was denied (403). Please ensure you have public sharing "
176
  "enabled for your calendar."
178
  "Brak dostępu (błąd 403 Forbidden). Upewnij się, że ten kalendarz jest "
179
  "publicznie dostępny."
180
 
181
+ #: google-calendar-events/includes/class-gce-feed.php:189
182
  #, php-format
183
  msgid ""
184
  "The feed data could not be retrieved. Error code: %s. Please ensure your "
187
  "Nie otrzymano danych kalendarza. Kod błędu: %s. Upewnij się, że adres URL "
188
  "kalendarza jest poprawny."
189
 
190
+ #: google-calendar-events/includes/class-gce-feed.php:194
191
  msgid " Please ensure your feed URL is correct."
192
  msgstr "Upewnij się, że adres URL kalendarza jest poprawny."
193
 
197
 
198
  #: google-calendar-events/includes/gce-feed-cpt.php:22
199
  #: google-calendar-events/includes/gce-feed-cpt.php:24
200
+ #: google-calendar-events/includes/gce-feed-cpt.php:72
201
  msgid "Feed"
202
  msgstr "Kalendarz"
203
 
241
  msgid "No feeds found in Trash."
242
  msgstr "Nie znaleziono kalendarzy w Śmietniku."
243
 
244
+ #: google-calendar-events/includes/gce-feed-cpt.php:70
245
+ #, fuzzy
246
+ msgid "feed"
247
+ msgstr "Kalendarz"
248
+
249
  #: google-calendar-events/includes/gce-feed-cpt.php:75
250
  #: google-calendar-events/includes/gce-feed-cpt.php:76
251
  #, php-format
272
  msgid "%4$s draft updated. %1$sView %2$s%3$s"
273
  msgstr "%4$s szkiców zaktualizowano. %1$sObejrzyj %2$s%3$s"
274
 
275
+ #: google-calendar-events/includes/gce-feed-cpt.php:97
276
+ msgid "Helpful Links"
277
+ msgstr "Pomocne adresy"
278
+
279
+ #: google-calendar-events/includes/gce-feed-cpt.php:209
280
  msgid "Feed ID"
281
  msgstr "ID kalendarza"
282
 
283
+ #: google-calendar-events/includes/gce-feed-cpt.php:210
284
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:73
285
  msgid "Feed Shortcode"
286
  msgstr "Krótki kod kalednarza"
287
 
288
+ #: google-calendar-events/includes/gce-feed-cpt.php:211
289
  msgid "Display Type"
290
  msgstr "Rodzaj widoku"
291
 
292
+ #: google-calendar-events/includes/gce-feed-cpt.php:238
293
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:152
294
  #: google-calendar-events/views/widgets.php:218
295
  msgid "Grid"
296
  msgstr "Siatka"
297
 
298
+ #: google-calendar-events/includes/gce-feed-cpt.php:240
299
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:153
300
  #: google-calendar-events/views/widgets.php:219
301
  msgid "List"
302
  msgstr "Lista"
303
 
304
+ #: google-calendar-events/includes/gce-feed-cpt.php:242
305
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:154
306
  #: google-calendar-events/views/widgets.php:220
307
  msgid "Grouped List"
308
  msgstr "Zgrupowana lista"
406
  "Jeżeli wybrałeś/aś aby wyświetlać zarówno czas i datę powyżej, wpisz tekst / "
407
  "znaki do wyświetlenia pomiędzy czasem i datą (ze spacjami włącznie)."
408
 
409
+ #: google-calendar-events/views/admin/display-options-meta.php:80
410
+ msgid "Location"
411
+ msgstr "Miejsce"
412
+
413
+ #: google-calendar-events/views/admin/display-options-meta.php:82
414
+ msgid "Show the location of events?"
415
+ msgstr "Wyświetlać miejsce zdarzenia?"
416
+
417
+ #: google-calendar-events/views/admin/display-options-meta.php:83
418
+ msgid "Text to display before the location."
419
+ msgstr "Tekst do wyświetlenia przed miejscem."
420
+
421
  #: google-calendar-events/views/admin/display-options-meta.php:88
422
  msgid "Description"
423
  msgstr "Opis"
457
  msgid "The link text to be displayed."
458
  msgstr "Tekst odnośnika do wyświetlenia."
459
 
460
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:54
461
  msgid ""
462
  "We're <strong>smack dab</strong> in the middle of building additional "
463
  "features for this plugin. Have ideas?"
464
  msgstr "Obecnie rozbudowujemy tą wtyczkę. Masz jakieś pomysły?"
465
 
466
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:57
467
  msgid "Visit our roadmap and tell us what you're looking for"
468
  msgstr "Obejrzyj nasz plan pracy i powiedz nam, czego poszukujesz"
469
 
470
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:63
471
  msgid "Want to be in the know?"
472
  msgstr "Chcesz być poinformowany?"
473
 
474
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:66
475
  msgid "Get notified when new features are released"
476
  msgstr "Bądź poinformowany, gdy nowe funkcje będą dostępne"
477
 
478
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:77
479
+ #, fuzzy
480
  msgid ""
481
+ "Copy and paste this shortcode to display this Google Calendar feed on any "
482
  "post or page."
483
  msgstr ""
484
  "Skopiuj i wklej ten krótki kod, aby wyświetlić ten kalendarz Google na "
485
  "dowolnej stronie lub wpisie."
486
 
487
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:78
488
+ msgid ""
489
+ "To avoid display issues, make sure to paste the shortcode in the Text tab of "
490
+ "the post editor."
491
+ msgstr ""
492
+ "Aby uniknąć problemów z wyświetlaniem, upewnij się, że wklejasz ten krótki "
493
+ "kod do zakładki \"Tekst\" edytora wpisów."
494
+
495
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:83
496
  msgid "GCal Feed URL"
497
  msgstr "Adres kalendarza"
498
 
499
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:87
500
  msgid "The Google Calendar feed URL."
501
  msgstr "Adres kalendarza w Google Calendar"
502
 
503
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:87
504
  msgid "Example"
505
  msgstr "Przykład"
506
 
507
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:89
508
  msgid "How to find your GCal feed URL"
509
  msgstr "Jak odnaleźć adres kalendarza Google?"
510
 
511
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:95
512
  msgid "Search Query"
513
  msgstr "Zapytanie"
514
 
515
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:98
516
  msgid "Find and show events based on a search query."
517
  msgstr "Znajdź i wyświetl wydarzenia, bazując na wyszukiwaniu"
518
 
519
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:103
520
  msgid "Expand Recurring Events?"
521
  msgstr "Wyświetlać wszystkie powtórzenia dla powtarzającego się wydarzenia?"
522
 
523
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:105
524
  msgid "Yes"
525
  msgstr "Tak"
526
 
527
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:106
528
  msgid ""
529
  "This will show recurring events each time they occur, otherwise it will only "
530
  "show the event the first time it occurs."
532
  "Ta opcja pokaże wydarzenia powtarzające się za każdym razem, gdy występują, "
533
  "w przeciwnym wypadku pokaże tylko pierwsze wystąpienie danego wydarzenia."
534
 
535
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:111
536
  msgid "Date Format"
537
  msgstr "Format daty"
538
 
539
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:115
540
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:126
541
  #, php-format
542
  msgid "Use %sPHP date formatting%s."
543
  msgstr "Użyj %sPHP date formatting%s."
544
 
545
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:116
546
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:127
547
+ msgid "Leave blank to use the default."
548
+ msgstr "Pozostaw puste, aby użyć wartości domyślnej."
549
+
550
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:122
551
  msgid "Time Format"
552
  msgstr "Format czasu"
553
 
554
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:133
555
  msgid "Cache Duration"
556
  msgstr "Okres pamięci podręcznej"
557
 
558
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:136
559
  msgid ""
560
  "The length of time, in seconds, to cache the feed (43200 = 12 hours). If "
561
  "this feed changes regularly, you may want to reduce the cache duration."
564
  "pamięci podręcznej. Jeżeli ten kalendarz zmienia się często, możesz "
565
  "zmniejszyć tą wartość. 43200 = 12 godzin. "
566
 
567
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:141
568
  msgid "Multiple Day Events"
569
  msgstr "Wydarzenia kilkudniowe"
570
 
571
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:143
572
  msgid "Show on each day"
573
  msgstr "Pokazuj każdego dnia"
574
 
575
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:144
576
  msgid ""
577
  "Show events that span multiple days on each day that they span, rather than "
578
  "just the first day."
580
  "Pokazuj wydarzenia, które rozciągają się na klika dni, przez wszystkie dni, "
581
  "zamiast tylko pierwszego dnia."
582
 
583
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:149
584
  msgid "Display Mode"
585
  msgstr "Tryb wyświetlania"
586
 
587
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:156
588
  msgid "Choose how you want your calendar to be displayed."
589
  msgstr "Wybierz, jak chcesz wyświetlać swój kalendarz."
590
 
591
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:161
592
  msgid "Show Paging Links"
593
  msgstr "Pokaż przewijanie"
594
 
595
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:163
596
  #: google-calendar-events/views/widgets.php:227
597
  msgid "Check this option to display Next and Back navigation links."
598
  msgstr ""
599
  "Zaznacz tą opcję, aby pokazywać nawigację (\"poprzedni\", \"następny\")"
600
 
601
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:168
602
  msgid "Number of Events per Page"
603
  msgstr "Ilość wydarzeń na stronę"
604
 
605
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:172
606
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:183
607
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:197
608
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:211
609
  #: google-calendar-events/views/widgets.php:242
610
  #: google-calendar-events/views/widgets.php:250
611
  msgid "Days"
612
  msgstr "Dni"
613
 
614
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:173
615
  #: google-calendar-events/views/widgets.php:243
616
  msgid "Events"
617
  msgstr "Wydarzenia"
618
 
619
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:175
620
  msgid "How many events to display per page (List View only)."
621
  msgstr "Jak dużo wydarzeń wyświetlać na stronie (tylko widok listy). "
622
 
623
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:180
624
+ #, fuzzy
625
+ msgid "Display Start Date Offset"
626
  msgstr "Przesunięcie daty początkowej"
627
 
628
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:186
629
  #: google-calendar-events/views/widgets.php:253
630
  msgid "Ahead"
631
  msgstr "W przód"
632
 
633
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:188
634
+ #, fuzzy
635
  msgid ""
636
+ "Change if you need to initially display events on a date other than today "
637
+ "(List View only)."
638
  msgstr ""
639
  "Jeżeli potrzebujesz pokazać zdarzenia zaczynające się innego dnia, niż "
640
  "dzisiaj (tylko widok listy)."
641
 
642
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:193
643
+ msgid "Minimum Feed Start Date"
644
+ msgstr "Minimalna początkowa data"
645
+
646
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:198
647
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:212
648
+ #, fuzzy
649
+ msgid "Months"
650
+ msgstr "%s miesiące"
651
+
652
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:199
653
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:213
654
+ #, fuzzy
655
+ msgid "Years"
656
+ msgstr "%s lat"
657
+
658
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:201
659
+ msgid "back"
660
+ msgstr "wstecz"
661
+
662
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:202
663
+ msgid ""
664
+ "Set how far back to retrieve events regardless of month or page being "
665
+ "displayed."
666
+ msgstr ""
667
+ "Ustal, jak dawne wydarzenia pobierać, niezależnie od wyświetlanego miesiąca "
668
+ "lub strony. "
669
+
670
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:207
671
+ #, fuzzy
672
+ msgid "Maximum Feed End Date"
673
+ msgstr "Końcowa data"
674
+
675
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:215
676
+ msgid "forward"
677
+ msgstr "naprzód"
678
+
679
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:216
680
+ msgid ""
681
+ "Set how far in the future to retrieve events regardless of month or page "
682
+ "being displayed."
683
+ msgstr ""
684
+ "Ustaw, jak daleko w przyszłość wybiegać pobierając wydarzenia, niezależnie "
685
+ "od wyświetlanego miesiąca lub strony."
686
+
687
  #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:6
688
  msgid "Documentation & getting started"
689
  msgstr "Dokumentacja & konfiguracja wstępna"
730
  msgstr "Dodaj swój pierwszy kalendarz!"
731
 
732
  #: google-calendar-events/views/widgets.php:211
733
+ msgid "Feeds to Display (comma separated list - i.e. 101,102,103):"
734
  msgstr ""
735
+ "Kalendarze do wyświetlenia (w formacie listy oddzielanej przecinkami, czyli "
736
  "101,102,103):"
737
 
738
  #: google-calendar-events/views/widgets.php:216
739
+ #, fuzzy
740
+ msgid "Display Events as:"
741
  msgstr "Wyświetlaj wydarzenia jako:"
742
 
743
  #: google-calendar-events/views/widgets.php:225
744
+ msgid "Show Paging Links:"
745
+ msgstr "Pokaż przewijanie"
746
 
747
  #: google-calendar-events/views/widgets.php:231
748
+ msgid "Sort Order (List View only):"
749
+ msgstr "Porządek wyświetlania (tylko widok listy):"
750
 
751
  #: google-calendar-events/views/widgets.php:233
752
  msgid "Ascending"
757
  msgstr "Malejąco"
758
 
759
  #: google-calendar-events/views/widgets.php:239
760
+ #, fuzzy
761
+ msgid "Number of Events per Page (List View only):"
762
  msgstr "Ilość zdarzeń na stronę (tylko widok listy):"
763
 
764
  #: google-calendar-events/views/widgets.php:248
765
+ #, fuzzy
766
+ msgid "Display Start Date Offset (List View only):"
767
  msgstr "Przesunięcie daty początkowej (tylko widok listy):"
768
 
769
  #: google-calendar-events/views/widgets.php:258
770
  msgid ""
771
+ "Display Title on Tooltip/List Item (e.g. 'Events on 7th March'). Grouped "
772
  "lists always have a title displayed."
773
  msgstr ""
774
+ "Wyświetlaj tytuł na etykiecie narzędzia/elemencie listy (np. 'Wydarzenia 7. "
775
+ "marca'). Etykieta narzędziowa zawsze wyświetlana jest dla list zgrupowanych."
776
+
777
+ #~ msgid "Show paging links:"
778
+ #~ msgstr "Pokazuj przyciski przewijania stron:"