All-in-One Event Calendar - Version 1.2.5

Version Description

Download this release

Release Info

Developer yani.iliev
Plugin Icon 128x128 All-in-One Event Calendar
Version 1.2.5
Comparing to
See all releases

Code changes from version 1.2.4 to 1.2.5

all-in-one-event-calendar.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
6
  * Author: The Seed Studio
7
  * Author URI: http://theseednetwork.com/
8
- * Version: 1.2.4
9
  */ // NOTE: When updating version number also update first line of app/view/calendar.php
10
  @set_time_limit( 0 );
11
  @ini_set( "memory_limit", "256M" );
5
  * Description: An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
6
  * Author: The Seed Studio
7
  * Author URI: http://theseednetwork.com/
8
+ * Version: 1.2.5
9
  */ // NOTE: When updating version number also update first line of app/view/calendar.php
10
  @set_time_limit( 0 );
11
  @ini_set( "memory_limit", "256M" );
app/controller/class-ai1ec-events-controller.php CHANGED
@@ -723,7 +723,7 @@ class Ai1ec_Events_Controller {
723
  global $ai1ec_view_helper, $wpdb;
724
 
725
  $table_name = $wpdb->prefix . 'ai1ec_event_category_colors';
726
- $color = $wpdb->get_var( "SELECT term_color FROM {$table_name} WHERE term_id = {$term->term_id}" );
727
 
728
  $style = '';
729
  $clr = '';
@@ -766,7 +766,7 @@ class Ai1ec_Events_Controller {
766
  }
767
 
768
  $table_name = $wpdb->prefix . 'ai1ec_event_category_colors';
769
- $term = $wpdb->get_var( "SELECT term_id FROM {$table_name} WHERE term_id = {$term_id}" );
770
 
771
  if( is_null( $term ) ) {
772
  // term doesn't exist, create it
723
  global $ai1ec_view_helper, $wpdb;
724
 
725
  $table_name = $wpdb->prefix . 'ai1ec_event_category_colors';
726
+ $color = $wpdb->get_var( $wpdb->prepare( "SELECT term_color FROM {$table_name} WHERE term_id = %d ", $term->term_id ) );
727
 
728
  $style = '';
729
  $clr = '';
766
  }
767
 
768
  $table_name = $wpdb->prefix . 'ai1ec_event_category_colors';
769
+ $term = $wpdb->get_var( $wpdb->prepare( "SELECT term_id FROM {$table_name} WHERE term_id = %d", $term_id ) );
770
 
771
  if( is_null( $term ) ) {
772
  // term doesn't exist, create it
app/helper/class-ai1ec-app-helper.php CHANGED
@@ -163,7 +163,7 @@ class Ai1ec_App_Helper {
163
  // ================================
164
  // = support for custom post type =
165
  // ================================
166
- $supports = array( 'title', 'editor', 'comments' );
167
 
168
  // =============================
169
  // = args for custom post type =
163
  // ================================
164
  // = support for custom post type =
165
  // ================================
166
+ $supports = array( 'title', 'editor', 'comments', 'custom-fields' );
167
 
168
  // =============================
169
  // = args for custom post type =
app/helper/class-ai1ec-events-helper.php CHANGED
@@ -848,7 +848,7 @@ class Ai1ec_Events_Helper {
848
  **/
849
  function fuzzy_string_compare( $a, $b ) {
850
  $percent = 0;
851
- similar_text( $a, $b, &$percent );
852
  return ( $percent > 50 );
853
  }
854
 
@@ -1189,7 +1189,7 @@ class Ai1ec_Events_Helper {
1189
 
1190
  $term_id = (int) $term_id;
1191
  $table_name = $wpdb->prefix . 'ai1ec_event_category_colors';
1192
- $color = $wpdb->get_var( "SELECT term_color FROM {$table_name} WHERE term_id = {$term_id}" );
1193
  return $color;
1194
  }
1195
 
848
  **/
849
  function fuzzy_string_compare( $a, $b ) {
850
  $percent = 0;
851
+ similar_text( $a, $b, $percent );
852
  return ( $percent > 50 );
853
  }
854
 
1189
 
1190
  $term_id = (int) $term_id;
1191
  $table_name = $wpdb->prefix . 'ai1ec_event_category_colors';
1192
+ $color = $wpdb->get_var( $wpdb->prepare( "SELECT term_color FROM {$table_name} WHERE term_id = %d", $term_id ) );
1193
  return $color;
1194
  }
1195
 
app/model/class-ai1ec-event.php CHANGED
@@ -319,11 +319,12 @@ class Ai1ec_Event {
319
  "GROUP_CONCAT( ttc.term_id ) AS categories, " .
320
  "GROUP_CONCAT( ttt.term_id ) AS tags ";
321
 
322
- if( $instance ) {
323
- $select_sql .= ", UNIX_TIMESTAMP( aei.start ) as start, UNIX_TIMESTAMP( aei.end ) as end ";
 
324
 
325
  $instance = (int) $instance;
326
- $left_join = "LEFT JOIN {$wpdb->prefix}ai1ec_event_instances aei ON aei.id = $instance ";
327
  } else {
328
  $select_sql .= ", UNIX_TIMESTAMP( e.start ) as start, UNIX_TIMESTAMP( e.end ) as end, e.allday ";
329
  }
319
  "GROUP_CONCAT( ttc.term_id ) AS categories, " .
320
  "GROUP_CONCAT( ttt.term_id ) AS tags ";
321
 
322
+ if( $instance != false && is_numeric( $instance ) ) {
323
+ $select_sql .= ", IF( aei.start IS NOT NULL, UNIX_TIMESTAMP( aei.start ), UNIX_TIMESTAMP( e.start ) ) as start," .
324
+ " IF( aei.start IS NOT NULL, UNIX_TIMESTAMP( aei.end ), UNIX_TIMESTAMP( e.end ) ) as end ";
325
 
326
  $instance = (int) $instance;
327
+ $left_join = "LEFT JOIN {$wpdb->prefix}ai1ec_event_instances aei ON aei.id = $instance AND e.post_id = aei.post_id ";
328
  } else {
329
  $select_sql .= ", UNIX_TIMESTAMP( e.start ) as start, UNIX_TIMESTAMP( e.end ) as end, e.allday ";
330
  }
app/view/calendar.php CHANGED
@@ -1,4 +1,4 @@
1
- <!-- START All-in-One Event Calendar Plugin - Version 1.2.4 -->
2
  <table class="ai1ec-calendar-toolbar">
3
  <tbody>
4
  <tr>
1
+ <!-- START All-in-One Event Calendar Plugin - Version 1.2.5 -->
2
  <table class="ai1ec-calendar-toolbar">
3
  <tbody>
4
  <tr>
app/view/week.php CHANGED
@@ -90,7 +90,7 @@
90
  <div class="ai1ec-grid-container">
91
  <?php for( $hour = 0; $hour < 24; $hour++ ) : ?>
92
  <div class="ai1ec-hour-marker <?php if( $hour >= 8 && $hour < 18 ) echo 'ai1ec-business-hour' ?>" style="top: <?php echo $hour * 60 ?>px;">
93
- <div><?php echo esc_html( date_i18n( $time_format, gmmktime( $hour, 0 ) ) ) ?></div>
94
  </div>
95
  <?php for( $quarter = 1; $quarter < 4; $quarter++ ) : ?>
96
  <div class="ai1ec-quarter-marker" style="top: <?php echo $hour * 60 + $quarter * 15 ?>px;"></div>
90
  <div class="ai1ec-grid-container">
91
  <?php for( $hour = 0; $hour < 24; $hour++ ) : ?>
92
  <div class="ai1ec-hour-marker <?php if( $hour >= 8 && $hour < 18 ) echo 'ai1ec-business-hour' ?>" style="top: <?php echo $hour * 60 ?>px;">
93
+ <div><?php echo esc_html( date_i18n( $time_format, gmmktime( $hour, 0 ), true ) ) ?></div>
94
  </div>
95
  <?php for( $quarter = 1; $quarter < 4; $quarter++ ) : ?>
96
  <div class="ai1ec-quarter-marker" style="top: <?php echo $hour * 60 + $quarter * 15 ?>px;"></div>
language/all-in-one-event-calendar.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the All-in-One Event Calendar package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: All-in-One Event Calendar 1.2.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
7
- "POT-Creation-Date: 2012-01-19 19:04:49+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,163 +12,215 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: app/controller/class-ai1ec-importer-controller.php:91
16
- msgid "The Events Calendar → All-in-One Event Calendar"
17
  msgstr ""
18
 
19
- #: app/controller/class-ai1ec-importer-controller.php:92
20
- msgid ""
21
- "Imports events created using The Events Calendar plugin into the All-in-One "
22
- "Event Calendar"
23
  msgstr ""
24
 
25
- #: app/controller/class-ai1ec-settings-controller.php:82
26
- msgid "Settings Updated."
27
  msgstr ""
28
 
29
- #: app/controller/class-ai1ec-settings-controller.php:173
30
- msgid "Flushed %d events"
 
31
  msgstr ""
32
 
33
- #: app/controller/class-ai1ec-settings-controller.php:181
34
- #: app/controller/class-ai1ec-settings-controller.php:231
35
- msgid "Invalid ICS feed ID"
36
  msgstr ""
37
 
38
- #: app/controller/class-ai1ec-settings-controller.php:216
39
- msgid "No events were found"
 
 
40
  msgstr ""
41
 
42
- #: app/controller/class-ai1ec-settings-controller.php:221
43
- msgid "Imported %d events"
44
  msgstr ""
45
 
46
- #: app/controller/class-ai1ec-settings-controller.php:222
47
- #: app/view/feed_row.php:22
48
- msgid "Flush 1 event"
49
- msgid_plural "Flush %s events"
50
- msgstr[0] ""
51
- msgstr[1] ""
52
 
53
- #: app/controller/class-ai1ec-settings-controller.php:274
54
- msgctxt "meta box"
55
- msgid "General Settings"
56
  msgstr ""
57
 
58
- #: app/controller/class-ai1ec-settings-controller.php:282
59
- msgctxt "meta box"
60
- msgid "The Seed Studio Support"
61
  msgstr ""
62
 
63
- #: app/controller/class-ai1ec-settings-controller.php:289
64
- msgctxt "meta box"
65
- msgid "ICS Import Settings"
66
  msgstr ""
67
 
68
- #: app/controller/class-ai1ec-settings-controller.php:338
69
- msgid "<a href=\"%s\">Settings</a>"
70
  msgstr ""
71
 
72
- #: app/controller/class-ai1ec-settings-controller.php:352
73
- msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
 
 
 
 
74
  msgstr ""
75
 
76
- #: app/controller/class-ai1ec-settings-controller.php:353
77
- msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
78
  msgstr ""
79
 
80
- #. translators: "%s" represents the week's starting date
81
- #: app/controller/class-ai1ec-calendar-controller.php:326
82
- #: app/helper/class-ai1ec-calendar-helper.php:717
83
- #: app/helper/class-ai1ec-calendar-helper.php:726
84
- msgid "Week of %s"
85
  msgstr ""
86
 
87
- #: app/controller/class-ai1ec-calendar-controller.php:326
88
- msgid "F j"
 
89
  msgstr ""
90
 
91
- #: app/controller/class-ai1ec-calendar-controller.php:383
92
- #: app/helper/class-ai1ec-settings-helper.php:155 app/view/calendar.php:26
93
- msgid "Agenda"
94
  msgstr ""
95
 
96
- #: app/controller/class-ai1ec-events-controller.php:149
97
- msgid "This feed is already being imported."
98
  msgstr ""
99
 
100
- #: app/controller/class-ai1ec-events-controller.php:150
101
- msgid "Please enter a valid iCalendar URL."
102
  msgstr ""
103
 
104
- #: app/controller/class-ai1ec-events-controller.php:285
105
- msgid "times"
106
  msgstr ""
107
 
108
- #: app/controller/class-ai1ec-events-controller.php:334
109
- msgid "Publish"
110
  msgstr ""
111
 
112
- #: app/controller/class-ai1ec-events-controller.php:334
113
- #: app/view/feed_row.php:20
114
- msgid "Update"
115
  msgstr ""
116
 
117
- #: app/controller/class-ai1ec-events-controller.php:336
118
- msgid "Submit for Review"
119
  msgstr ""
120
 
121
- #: app/controller/class-ai1ec-events-controller.php:449
122
- msgid "Event updated. <a href=\"%s\">View event</a>"
123
  msgstr ""
124
 
125
- #: app/controller/class-ai1ec-events-controller.php:450
126
- msgid "Custom field updated."
127
  msgstr ""
128
 
129
- #: app/controller/class-ai1ec-events-controller.php:451
130
- msgid "Custom field deleted."
131
  msgstr ""
132
 
133
- #: app/controller/class-ai1ec-events-controller.php:452
134
- msgid "Event updated."
 
135
  msgstr ""
136
 
137
- #. translators: %s: date and time of the revision
138
- #: app/controller/class-ai1ec-events-controller.php:454
139
- msgid "Event restored to revision from %s"
140
  msgstr ""
141
 
142
- #: app/controller/class-ai1ec-events-controller.php:455
143
- msgid "Event published. <a href=\"%s\">View event</a>"
 
144
  msgstr ""
145
 
146
- #: app/controller/class-ai1ec-events-controller.php:456
147
- msgid "Event saved."
 
148
  msgstr ""
149
 
150
- #: app/controller/class-ai1ec-events-controller.php:457
151
- msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
152
  msgstr ""
153
 
154
- #: app/controller/class-ai1ec-events-controller.php:458
155
  msgid ""
156
- "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
157
- "\">Preview event</a>"
158
  msgstr ""
159
 
160
- #. translators: Publish box date format, see http:php.net/date
161
- #: app/controller/class-ai1ec-events-controller.php:460
162
- msgid "M j, Y @ G:i"
163
  msgstr ""
164
 
165
- #: app/controller/class-ai1ec-events-controller.php:461
166
- msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
167
  msgstr ""
168
 
169
- #: app/controller/class-ai1ec-app-controller.php:354
170
- #: app/controller/class-ai1ec-app-controller.php:355
171
- msgid "Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  msgstr ""
173
 
174
  #: app/helper/class-ai1ec-events-helper.php:319
@@ -261,14 +313,6 @@ msgstr ""
261
  msgid "weekend day"
262
  msgstr ""
263
 
264
- #: app/helper/class-ai1ec-events-helper.php:554
265
- #: app/helper/class-ai1ec-events-helper.php:573
266
- #: app/helper/class-ai1ec-events-helper.php:1502
267
- #: app/helper/class-ai1ec-settings-helper.php:237
268
- #: app/view/box_time_and_date.php:58
269
- msgid "Daily"
270
- msgstr ""
271
-
272
  #: app/helper/class-ai1ec-events-helper.php:555
273
  #: app/helper/class-ai1ec-events-helper.php:574
274
  #: app/helper/class-ai1ec-events-helper.php:1514
@@ -397,232 +441,203 @@ msgstr ""
397
  msgid "forever"
398
  msgstr ""
399
 
400
- #: app/helper/class-ai1ec-app-helper.php:147
401
- msgctxt "Custom post type name"
402
- msgid "Events"
403
  msgstr ""
404
 
405
- #: app/helper/class-ai1ec-app-helper.php:148
406
- msgctxt "Custom post type name (singular)"
407
- msgid "Event"
408
  msgstr ""
409
 
410
- #: app/helper/class-ai1ec-app-helper.php:149
411
- msgid "Add New"
 
412
  msgstr ""
413
 
414
- #: app/helper/class-ai1ec-app-helper.php:150
415
- msgid "Add New Event"
416
  msgstr ""
417
 
418
- #: app/helper/class-ai1ec-app-helper.php:151
419
- msgid "Edit Event"
420
- msgstr ""
421
-
422
- #: app/helper/class-ai1ec-app-helper.php:152
423
- msgid "New Event"
424
- msgstr ""
425
-
426
- #: app/helper/class-ai1ec-app-helper.php:153
427
- msgid "View Event"
428
- msgstr ""
429
-
430
- #: app/helper/class-ai1ec-app-helper.php:154
431
- msgid "Search Events"
432
- msgstr ""
433
-
434
- #: app/helper/class-ai1ec-app-helper.php:155
435
- msgid "No Events found"
436
- msgstr ""
437
-
438
- #: app/helper/class-ai1ec-app-helper.php:156
439
- msgid "No Events found in Trash"
440
- msgstr ""
441
-
442
- #: app/helper/class-ai1ec-app-helper.php:157
443
- msgid "Parent Event"
444
  msgstr ""
445
 
446
- #: app/helper/class-ai1ec-app-helper.php:158
447
- msgid "Events"
448
- msgstr ""
 
 
 
449
 
450
- #: app/helper/class-ai1ec-app-helper.php:205
451
- msgctxt "Event categories taxonomy"
452
- msgid "Event Categories"
453
  msgstr ""
454
 
455
- #: app/helper/class-ai1ec-app-helper.php:206
456
- msgctxt "Event categories taxonomy (singular)"
457
- msgid "Event Category"
458
  msgstr ""
459
 
460
- #: app/helper/class-ai1ec-app-helper.php:213
461
- msgctxt "Event tags taxonomy"
462
- msgid "Event Tags"
463
  msgstr ""
464
 
465
- #: app/helper/class-ai1ec-app-helper.php:214
466
- msgctxt "Event tags taxonomy (singular)"
467
- msgid "Event Tag"
468
  msgstr ""
469
 
470
- #: app/helper/class-ai1ec-app-helper.php:281
471
- msgid "Show All "
472
  msgstr ""
473
 
474
- #: app/helper/class-ai1ec-app-helper.php:313
475
- msgid ""
476
- "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events"
477
- "\"><span class=\"update-count\">%d</span></span>"
478
  msgstr ""
479
 
480
- #: app/helper/class-ai1ec-app-helper.php:319
481
- msgid "All Events"
482
  msgstr ""
483
 
484
- #: app/helper/class-ai1ec-app-helper.php:395
485
- msgid "Event Details"
486
  msgstr ""
487
 
488
- #: app/helper/class-ai1ec-app-helper.php:428
489
- msgid "Post Date"
490
  msgstr ""
491
 
492
- #: app/helper/class-ai1ec-app-helper.php:429
493
- msgid "Event date/time"
494
  msgstr ""
495
 
496
- #: app/helper/class-ai1ec-app-helper.php:653
497
- msgid ""
498
- "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</"
499
- "strong> dropdown list. %s 2. Select an option in the <strong>Timezone</"
500
- "strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
501
  msgstr ""
502
 
503
- #: app/helper/class-ai1ec-app-helper.php:655
504
- msgid ""
505
- "To set up the plugin: Select an option in the <strong>Calendar page</strong> "
506
- "dropdown list, the click <strong>Update Settings</strong>."
507
  msgstr ""
508
 
509
- #: app/helper/class-ai1ec-app-helper.php:657
510
- msgid ""
511
- "To set up the plugin: Select an option in the <strong>Timezone</strong> "
512
- "dropdown list, the click <strong>Update Settings</strong>."
513
  msgstr ""
514
 
515
- #: app/helper/class-ai1ec-app-helper.php:661
516
- msgid ""
517
- "The plugin is installed, but has not been configured. <a href=\"%s\">Click "
518
- "here to set it up now »</a>"
519
  msgstr ""
520
 
521
- #: app/helper/class-ai1ec-app-helper.php:667
522
- msgid ""
523
- "The plugin is installed, but has not been configured. Please log in as a "
524
- "WordPress Administrator to set it up."
525
  msgstr ""
526
 
527
- #: app/helper/class-ai1ec-calendar-helper.php:718
528
- #: app/helper/class-ai1ec-calendar-helper.php:727
529
- msgid "M j"
530
  msgstr ""
531
 
532
- #: app/helper/class-ai1ec-calendar-helper.php:759
533
- msgid "« Previous Events"
 
534
  msgstr ""
535
 
536
- #: app/helper/class-ai1ec-calendar-helper.php:766
537
- msgid "Next Events »"
538
  msgstr ""
539
 
540
- #: app/helper/class-ai1ec-settings-helper.php:85
541
- msgid "- Auto-Create New Page -"
542
  msgstr ""
543
 
544
- #: app/helper/class-ai1ec-settings-helper.php:107
545
- msgid "View \"%s\" »"
546
  msgstr ""
547
 
548
- #: app/helper/class-ai1ec-settings-helper.php:149 app/view/calendar.php:11
549
- #: app/view/calendar.php:12 app/view/calendar.php:25
550
- msgid "Month"
 
551
  msgstr ""
552
 
553
- #: app/helper/class-ai1ec-settings-helper.php:152 app/view/calendar.php:18
554
- #: app/view/calendar.php:19
555
- msgid "Week"
556
  msgstr ""
557
 
558
- #: app/helper/class-ai1ec-settings-helper.php:204
559
- msgid "Default (d/m/y)"
560
  msgstr ""
561
 
562
- #: app/helper/class-ai1ec-settings-helper.php:207
563
- msgid "US (m/d/y)"
564
  msgstr ""
565
 
566
- #: app/helper/class-ai1ec-settings-helper.php:210
567
- msgid "ISO 8601 (y-m-d)"
 
568
  msgstr ""
569
 
570
- #: app/helper/class-ai1ec-settings-helper.php:213
571
- msgid "Dotted (m.d.y)"
572
  msgstr ""
573
 
574
- #: app/helper/class-ai1ec-settings-helper.php:231
575
- msgid "Hourly"
 
 
576
  msgstr ""
577
 
578
- #: app/helper/class-ai1ec-settings-helper.php:234
579
- msgid "Twice Daily"
 
580
  msgstr ""
581
 
582
- #: app/helper/class-ai1ec-settings-helper.php:321
583
- msgid "Calendar"
584
  msgstr ""
585
 
586
- #: app/view/settings.php:5
587
- msgid "All-in-one Event Calendar"
588
  msgstr ""
589
 
590
- #: app/view/settings.php:16
591
- msgid "Update Settings"
 
592
  msgstr ""
593
 
594
- #: app/view/box_event_cost.php:1
595
- msgid "Event cost"
596
  msgstr ""
597
 
598
- #: app/view/box_event_cost.php:7
599
- msgid "Cost"
600
  msgstr ""
601
 
602
- #: app/view/event-excerpt.php:2 app/view/event-single.php:5
603
- #: app/view/event-multi.php:4
604
- msgid "When:"
605
  msgstr ""
606
 
607
- #: app/view/event-excerpt.php:4 app/view/event-single.php:20
608
- #: app/view/event-multi.php:20
609
- msgid "Where:"
610
  msgstr ""
611
 
612
- #: app/view/feed_row.php:3 app/view/box_ics_import_settings.php:8
613
- msgid "iCalendar/.ics Feed URL:"
614
  msgstr ""
615
 
616
- #: app/view/feed_row.php:9
617
- msgid "Event category:"
618
  msgstr ""
619
 
620
- #: app/view/feed_row.php:15 app/view/box_ics_import_settings.php:18
621
- msgid "Tag with"
 
622
  msgstr ""
623
 
624
- #: app/view/feed_row.php:19
625
- msgid "× Delete"
 
626
  msgstr ""
627
 
628
  #: app/view/event-map.php:2
@@ -633,528 +648,503 @@ msgstr ""
633
  msgid "View Full-Size Map »"
634
  msgstr ""
635
 
636
- #: app/view/box_event_location.php:1
637
- msgid "Event location details"
638
- msgstr ""
639
-
640
- #: app/view/box_event_location.php:7
641
- msgid "Venue name:"
642
- msgstr ""
643
-
644
- #: app/view/box_event_location.php:17
645
- msgid "Address:"
646
- msgstr ""
647
-
648
- #: app/view/box_event_location.php:27
649
- msgid "Show Google Map:"
650
- msgstr ""
651
-
652
- #: app/view/class-ai1ec-agenda-widget.php:18
653
- #: app/view/class-ai1ec-agenda-widget.php:39
654
- msgid "Upcoming Events"
655
- msgstr ""
656
-
657
- #: app/view/class-ai1ec-agenda-widget.php:20
658
- msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
659
- msgstr ""
660
-
661
- #: app/view/month.php:4 app/view/agenda.php:12 app/view/week.php:4
662
- msgid "Today"
663
  msgstr ""
664
 
665
- #: app/view/month.php:50 app/view/week.php:55 app/view/week.php:127
666
- msgid "Summary:"
667
  msgstr ""
668
 
669
- #: app/view/month.php:53 app/view/week.php:58 app/view/week.php:130
670
- msgid "click anywhere for details"
671
  msgstr ""
672
 
673
- #: app/view/month.php:68 app/view/agenda.php:59 app/view/agenda.php:109
674
- #: app/view/week.php:69
675
- msgid "(all-day)"
676
  msgstr ""
677
 
678
- #: app/view/import.php:6
679
- msgid "Successfully imported events:"
680
  msgstr ""
681
 
682
- #: app/view/event-single.php:8
683
- msgid "Back to Calendar »"
 
 
684
  msgstr ""
685
 
686
- #: app/view/event-single.php:15 app/view/event-multi.php:14
687
- msgid "Repeats:"
 
688
  msgstr ""
689
 
690
- #: app/view/event-single.php:27
691
- msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
 
692
  msgstr ""
693
 
694
- #: app/view/event-single.php:28
695
- msgid " Add to Calendar"
696
  msgstr ""
697
 
698
- #: app/view/event-single.php:31
699
- msgid "Add this event to your Google Calendar"
700
  msgstr ""
701
 
702
- #: app/view/event-single.php:33
703
- msgid "Add to Google Calendar"
 
 
704
  msgstr ""
705
 
706
- #: app/view/event-single.php:40 app/view/event-multi.php:33
707
- msgid "Cost:"
708
  msgstr ""
709
 
710
- #: app/view/event-single.php:46 app/view/event-multi.php:39
711
- msgid "Contact:"
712
  msgstr ""
713
 
714
- #: app/view/event-single.php:52 app/view/event-multi.php:45
715
- #: app/view/agenda.php:81
716
- msgid "Categories:"
717
  msgstr ""
718
 
719
- #: app/view/event-single.php:59 app/view/event-multi.php:51
720
- #: app/view/agenda.php:87
721
- msgid "Tags:"
722
  msgstr ""
723
 
724
- #: app/view/row_weekly.php:3 app/view/row_monthly.php:3
725
- #: app/view/row_monthly.php:22 app/view/row_yearly.php:3
726
- #: app/view/row_daily.php:3
727
- msgid "Every"
728
  msgstr ""
729
 
730
- #: app/view/row_weekly.php:6
731
- msgctxt "Recurrence editor - weekly tab"
732
- msgid "On"
733
  msgstr ""
734
 
735
- #: app/view/box_eventbrite.php:1
736
- msgid "Eventbrite Ticketing"
737
  msgstr ""
738
 
739
- #: app/view/box_eventbrite.php:7
740
- msgid "Register this event with Eventbrite.com?"
741
  msgstr ""
742
 
743
- #: app/view/box_eventbrite.php:12
744
- msgid "Yes"
745
  msgstr ""
746
 
747
- #: app/view/box_eventbrite.php:14
748
- msgid "No"
749
  msgstr ""
750
 
751
- #: app/view/box_eventbrite.php:22
752
- msgid "Set up your first ticket"
753
  msgstr ""
754
 
755
- #: app/view/box_eventbrite.php:24
756
- msgid ""
757
- "To create multiple tickets per event, submit this form, then follow the link "
758
- "to Eventbrite."
759
  msgstr ""
760
 
761
- #: app/view/box_eventbrite.php:32
762
- msgid "Name"
763
  msgstr ""
764
 
765
- #: app/view/box_eventbrite.php:42
766
- msgid "Description"
767
  msgstr ""
768
 
769
- #: app/view/box_eventbrite.php:53
770
- msgid "Type"
771
  msgstr ""
772
 
773
- #: app/view/box_eventbrite.php:58
774
- msgid "Set Price"
775
  msgstr ""
776
 
777
- #: app/view/box_eventbrite.php:60
778
- msgid "Donation Based"
779
  msgstr ""
780
 
781
- #: app/view/box_eventbrite.php:68
782
  msgid ""
783
- "The price for this event's first ticket will be taken from the Cost field "
784
- "above."
 
 
785
  msgstr ""
786
 
787
- #: app/view/box_eventbrite.php:75
788
- msgid "Quantity"
789
  msgstr ""
790
 
791
- #: app/view/box_eventbrite.php:85
792
- msgid "Include Fee in Price"
793
  msgstr ""
794
 
795
- #: app/view/box_eventbrite.php:90
796
- msgid "Add Service Fee on top of price"
797
  msgstr ""
798
 
799
- #: app/view/box_eventbrite.php:92
800
- msgid "Include Service fee in price"
801
  msgstr ""
802
 
803
- #: app/view/box_eventbrite.php:98
804
- msgid "Payment Options"
805
  msgstr ""
806
 
807
- #: app/view/box_eventbrite.php:103
808
- msgid "Paypal"
 
 
809
  msgstr ""
810
 
811
- #: app/view/box_eventbrite.php:105
812
- msgid "Google Checkout"
 
 
813
  msgstr ""
814
 
815
- #: app/view/box_eventbrite.php:107
816
- msgid "Check"
817
  msgstr ""
818
 
819
- #: app/view/box_eventbrite.php:109
820
- msgid "Cash"
 
 
821
  msgstr ""
822
 
823
- #: app/view/box_eventbrite.php:111
824
- msgid "Send an Invoice"
825
  msgstr ""
826
 
827
- #: app/view/row_monthly.php:9
828
- msgid "On day of the month"
829
  msgstr ""
830
 
831
- #: app/view/row_monthly.php:13
832
- msgid "On day of the week"
833
  msgstr ""
834
 
835
- #. #-#-#-#-# plugin.pot (All-in-One Event Calendar 1.2.4) #-#-#-#-#
836
- #. Author of the plugin/theme
837
- #: app/view/box_the_seed_studio.php:4
838
- msgid "The Seed Studio"
839
  msgstr ""
840
 
841
- #: app/view/box_the_seed_studio.php:7
842
- msgid ""
843
- "The Seed Studio provides web development and support services for clients "
844
- "and web developers."
845
  msgstr ""
846
 
847
- #: app/view/box_the_seed_studio.php:14
848
- msgid "Follow @theseednet"
 
849
  msgstr ""
850
 
851
- #: app/view/box_the_seed_studio.php:20
852
- msgid "Get Support<span> from one of our experienced pros</span>"
853
  msgstr ""
854
 
855
- #: app/view/box_the_seed_studio.php:23
856
- msgid "Support"
857
  msgstr ""
858
 
859
- #: app/view/box_the_seed_studio.php:25
860
- msgid "View plugin documentation"
861
  msgstr ""
862
 
863
- #: app/view/box_the_seed_studio.php:28
864
- msgid ""
865
- "You can also hire The Seed for support on a contract or per-hour basis for "
866
- "this plugin, for your website or for any of your Internet marketing needs "
867
- "(we can really help!)."
868
  msgstr ""
869
 
870
- #: app/view/box_the_seed_studio.php:31
871
- msgid ""
872
- "Plugin users: The Seed gives support priority to clients. For free support "
873
- "from other WordPress users, visit the plugin's forum."
874
  msgstr ""
875
 
876
- #: app/view/box_the_seed_studio.php:34
877
- msgid "Vote and Share"
878
  msgstr ""
879
 
880
- #: app/view/box_the_seed_studio.php:36
881
- msgid ""
882
- "This plugin is offered free to the Wordpress Community under the GPL3 "
883
- "license. All we ask is that you:"
884
  msgstr ""
885
 
886
- #: app/view/box_the_seed_studio.php:38
887
- msgid ""
888
- "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" "
889
- "target=\"_blank\">Give it a five-star rating on wordpress.org</a> (if you "
890
- "think it deserves it!)"
891
  msgstr ""
892
 
893
- #: app/view/box_the_seed_studio.php:39
894
- msgid "Link to the plugin page on our website"
895
  msgstr ""
896
 
897
- #: app/view/box_the_seed_studio.php:40
898
- msgid "Become a Fan on Facebook"
899
  msgstr ""
900
 
901
- #: app/view/box_the_seed_studio.php:41
902
- msgid "Follow us on Twitter"
903
  msgstr ""
904
 
905
- #: app/view/box_the_seed_studio.php:46
906
- msgid "Latest from the Seed Network"
907
  msgstr ""
908
 
909
- #: app/view/event-multi.php:7
910
- msgid "View in Calendar »"
911
  msgstr ""
912
 
913
- #: app/view/event-multi.php:24
914
- msgid "View Map »"
915
  msgstr ""
916
 
917
- #: app/view/box_general_settings.php:1
918
- msgid "Viewing Events"
919
  msgstr ""
920
 
921
- #: app/view/box_general_settings.php:3
922
- msgid "Calendar page:"
923
  msgstr ""
924
 
925
- #: app/view/box_general_settings.php:7
926
- msgid "Default calendar view:"
927
  msgstr ""
928
 
929
- #: app/view/box_general_settings.php:12
930
- msgid "Timezone:"
931
  msgstr ""
932
 
933
- #: app/view/box_general_settings.php:17
934
- msgid "Contain calendar in this DOM element:"
935
  msgstr ""
936
 
937
- #: app/view/box_general_settings.php:19
938
- msgid ""
939
- "Optional. Provide a <a href=\"http://api.jquery.com/category/selectors/\" "
940
- "target=\"_blank\">jQuery selector</a> that evaluates to a single DOM "
941
- "element. Replaces any existing markup found within target. If left empty, "
942
- "calendar is shown in normal page content container."
943
  msgstr ""
944
 
945
- #: app/view/box_general_settings.php:21
946
- msgid "Week starts on"
947
  msgstr ""
948
 
949
- #: app/view/box_general_settings.php:25
950
- msgid "Agenda pages show at most"
951
  msgstr ""
952
 
953
- #: app/view/box_general_settings.php:26
954
- msgid "events"
955
  msgstr ""
956
-
957
- #: app/view/box_general_settings.php:31
958
- msgid "Keep all events <strong>expanded</strong> in the agenda view"
959
  msgstr ""
960
 
961
- #: app/view/box_general_settings.php:37
962
- msgid "<strong>Exclude</strong> events from search results"
963
  msgstr ""
964
 
965
- #: app/view/box_general_settings.php:43
966
- msgid ""
967
- "Show <strong>Post Your Event</strong> button above the calendar to "
968
- "privileged users"
969
  msgstr ""
970
 
971
- #: app/view/box_general_settings.php:49
972
- msgid ""
973
- "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
974
- "calendar and single event views"
975
  msgstr ""
976
 
977
- #: app/view/box_general_settings.php:55
978
- msgid "Hide <strong>Google Maps</strong> until clicked"
 
979
  msgstr ""
980
 
981
- #: app/view/box_general_settings.php:61
982
- msgid ""
983
- "Use the configured <strong>region</strong> (WordPress locale) to bias the "
984
- "address autocomplete function"
985
  msgstr ""
986
 
987
- #: app/view/box_general_settings.php:67
988
- msgid "Include <strong>event categories</strong> in post category lists"
 
 
989
  msgstr ""
990
 
991
- #: app/view/box_general_settings.php:71
992
- msgid "Adding/Editing Events"
 
 
993
  msgstr ""
994
 
995
- #: app/view/box_general_settings.php:73
996
- msgid "Input dates in this format:"
997
  msgstr ""
998
 
999
- #: app/view/box_general_settings.php:79
1000
- msgid "Use <strong>24h time</strong> in time pickers"
1001
  msgstr ""
1002
 
1003
- #: app/view/box_general_settings.php:85
1004
- msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
1005
  msgstr ""
1006
 
1007
- #: app/view/agenda-widget.php:11
1008
- msgid "There are no upcoming events."
1009
  msgstr ""
1010
 
1011
- #: app/view/agenda-widget.php:59
1012
- msgid "View Calendar »"
 
 
 
1013
  msgstr ""
1014
 
1015
- #: app/view/agenda-widget.php:67 app/view/calendar.php:110
1016
  msgid ""
1017
- "Subscribe to this calendar using your favourite calendar program (iCal, "
1018
- "Outlook, etc.)"
1019
  msgstr ""
1020
 
1021
- #: app/view/agenda-widget.php:68 app/view/calendar.php:111
1022
- msgid " Subscribe"
1023
  msgstr ""
1024
 
1025
- #: app/view/agenda-widget.php:72 app/view/calendar.php:116
1026
- msgid "Subscribe to this calendar in your Google Calendar"
 
 
1027
  msgstr ""
1028
 
1029
- #: app/view/agenda-widget.php:74
1030
- msgid "Add to Google"
 
 
 
1031
  msgstr ""
1032
 
1033
- #: app/view/box_event_contact.php:1
1034
- msgid "Organizer contact info"
1035
  msgstr ""
1036
 
1037
- #: app/view/box_event_contact.php:7
1038
- msgid "Contact name:"
1039
  msgstr ""
1040
 
1041
- #: app/view/box_event_contact.php:17
1042
- msgid "Phone:"
1043
  msgstr ""
1044
 
1045
- #: app/view/box_event_contact.php:27
1046
- msgid "E-mail:"
1047
  msgstr ""
1048
 
1049
- #: app/view/admin_notices.php:2
1050
- msgid "All-in-One Event Calendar Notice:"
1051
  msgstr ""
1052
 
1053
- #: app/view/calendar.php:35
1054
- msgid "+ Post Your Event"
1055
  msgstr ""
1056
 
1057
- #: app/view/calendar.php:44
1058
- msgid "Clear Filters"
1059
  msgstr ""
1060
 
1061
- #: app/view/calendar.php:44
1062
- msgid ""
1063
  msgstr ""
1064
 
1065
- #: app/view/calendar.php:45
1066
- msgid "Filter:"
1067
  msgstr ""
1068
 
1069
- #: app/view/calendar.php:50
1070
- msgid "Categories ▾"
1071
  msgstr ""
1072
 
1073
- #: app/view/calendar.php:72
1074
- msgid "Tags ▾"
1075
  msgstr ""
1076
 
1077
- #: app/view/calendar.php:112
1078
- msgid "to this filtered calendar"
1079
  msgstr ""
1080
 
1081
- #: app/view/calendar.php:118
1082
- msgid "Subscribe in Google Calendar"
 
 
1083
  msgstr ""
1084
 
1085
- #: app/view/row_yearly.php:7
1086
- msgctxt "Recurrence editor - yearly tab"
1087
- msgid "In"
1088
  msgstr ""
1089
 
1090
- #: app/view/agenda.php:5
1091
- msgid "+ Expand All"
1092
  msgstr ""
1093
 
1094
- #: app/view/agenda.php:8
1095
- msgid "− Collapse All"
1096
  msgstr ""
1097
 
1098
- #: app/view/agenda.php:29
1099
- msgid "There are no upcoming events to display at this time."
1100
  msgstr ""
1101
 
1102
- #: app/view/agenda.php:77
1103
- msgid "Read more »"
1104
  msgstr ""
1105
 
1106
- #: app/view/event-single-footer.php:4
1107
  msgid ""
1108
- "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" "
1109
- "href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
1110
  msgstr ""
1111
 
1112
- #: app/view/event-single-footer.php:8
1113
- msgid "View original post »"
1114
  msgstr ""
1115
 
1116
- #: app/view/agenda-widget-form.php:2
1117
- msgid "Title:"
1118
  msgstr ""
1119
 
1120
- #: app/view/agenda-widget-form.php:6
1121
- msgid "Number of events to show:"
1122
  msgstr ""
1123
 
1124
- #: app/view/agenda-widget-form.php:14
1125
- msgid "Events with these <strong>Categories</strong>"
1126
  msgstr ""
1127
 
1128
- #: app/view/agenda-widget-form.php:23
1129
- msgid "No categories found."
1130
  msgstr ""
1131
 
1132
- #: app/view/agenda-widget-form.php:30
1133
- msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
1134
  msgstr ""
1135
 
1136
- #: app/view/agenda-widget-form.php:39
1137
- msgid "No tags found."
1138
  msgstr ""
1139
 
1140
- #: app/view/agenda-widget-form.php:46
1141
- msgid "<strong>Or</strong> any of these <strong>Events</strong>"
1142
  msgstr ""
1143
 
1144
- #: app/view/agenda-widget-form.php:55
1145
- msgid "No events found."
1146
  msgstr ""
1147
 
1148
- #: app/view/agenda-widget-form.php:62
1149
- msgid "Show <strong>View Calendar</strong> button"
1150
  msgstr ""
1151
 
1152
- #: app/view/agenda-widget-form.php:65
1153
- msgid "Show <strong>Subscribe</strong> buttons"
 
 
1154
  msgstr ""
1155
 
1156
- #: app/view/agenda-widget-form.php:68
1157
- msgid "Hide this widget on calendar page"
1158
  msgstr ""
1159
 
1160
  #: app/view/box_time_and_date.php:2
@@ -1193,34 +1183,45 @@ msgstr ""
1193
  msgid "Cancel"
1194
  msgstr ""
1195
 
1196
- #: app/view/box_ics_import_settings.php:2
1197
- msgid "Auto-refresh"
 
1198
  msgstr ""
1199
 
1200
- #: app/view/box_ics_import_settings.php:12
1201
- msgid "Event category"
1202
  msgstr ""
1203
 
1204
- #: app/view/box_ics_import_settings.php:22
1205
- msgid "+ Add new subscription"
1206
  msgstr ""
1207
 
1208
- #: app/view/week.php:33
1209
- msgid "All-day"
1210
  msgstr ""
1211
 
1212
- #: app/view/event_categories-color_picker.php:5
1213
- #: app/view/event_categories-color_picker.php:19
1214
- msgid "Category Color"
1215
  msgstr ""
1216
 
1217
- #: app/view/event_categories-color_picker.php:13
1218
- #: app/view/event_categories-color_picker.php:25
1219
- msgid "Events in this category will be identified by this color"
1220
  msgstr ""
1221
 
1222
- #: app/model/class-ai1ec-event.php:486
1223
- msgid " (all-day)"
 
 
 
 
 
 
 
 
 
 
 
 
1224
  msgstr ""
1225
 
1226
  #. Plugin Name of the plugin/theme
2
  # This file is distributed under the same license as the All-in-One Event Calendar package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: All-in-One Event Calendar 1.2.5\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
7
+ "POT-Creation-Date: 2012-01-31 12:01:34+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: app/model/class-ai1ec-event.php:487
16
+ msgid " (all-day)"
17
  msgstr ""
18
 
19
+ #: app/helper/class-ai1ec-settings-helper.php:85
20
+ msgid "- Auto-Create New Page -"
 
 
21
  msgstr ""
22
 
23
+ #: app/helper/class-ai1ec-settings-helper.php:107
24
+ msgid "View \"%s\" »"
25
  msgstr ""
26
 
27
+ #: app/helper/class-ai1ec-settings-helper.php:149 app/view/calendar.php:11
28
+ #: app/view/calendar.php:12 app/view/calendar.php:25
29
+ msgid "Month"
30
  msgstr ""
31
 
32
+ #: app/helper/class-ai1ec-settings-helper.php:152 app/view/calendar.php:18
33
+ #: app/view/calendar.php:19
34
+ msgid "Week"
35
  msgstr ""
36
 
37
+ #: app/helper/class-ai1ec-settings-helper.php:155
38
+ #: app/controller/class-ai1ec-calendar-controller.php:383
39
+ #: app/view/calendar.php:26
40
+ msgid "Agenda"
41
  msgstr ""
42
 
43
+ #: app/helper/class-ai1ec-settings-helper.php:204
44
+ msgid "Default (d/m/y)"
45
  msgstr ""
46
 
47
+ #: app/helper/class-ai1ec-settings-helper.php:207
48
+ msgid "US (m/d/y)"
49
+ msgstr ""
 
 
 
50
 
51
+ #: app/helper/class-ai1ec-settings-helper.php:210
52
+ msgid "ISO 8601 (y-m-d)"
 
53
  msgstr ""
54
 
55
+ #: app/helper/class-ai1ec-settings-helper.php:213
56
+ msgid "Dotted (m.d.y)"
 
57
  msgstr ""
58
 
59
+ #: app/helper/class-ai1ec-settings-helper.php:231
60
+ msgid "Hourly"
 
61
  msgstr ""
62
 
63
+ #: app/helper/class-ai1ec-settings-helper.php:234
64
+ msgid "Twice Daily"
65
  msgstr ""
66
 
67
+ #: app/helper/class-ai1ec-settings-helper.php:237
68
+ #: app/helper/class-ai1ec-events-helper.php:554
69
+ #: app/helper/class-ai1ec-events-helper.php:573
70
+ #: app/helper/class-ai1ec-events-helper.php:1502
71
+ #: app/view/box_time_and_date.php:58
72
+ msgid "Daily"
73
  msgstr ""
74
 
75
+ #: app/helper/class-ai1ec-settings-helper.php:321
76
+ msgid "Calendar"
77
  msgstr ""
78
 
79
+ #: app/helper/class-ai1ec-app-helper.php:147
80
+ msgctxt "Custom post type name"
81
+ msgid "Events"
 
 
82
  msgstr ""
83
 
84
+ #: app/helper/class-ai1ec-app-helper.php:148
85
+ msgctxt "Custom post type name (singular)"
86
+ msgid "Event"
87
  msgstr ""
88
 
89
+ #: app/helper/class-ai1ec-app-helper.php:149
90
+ msgid "Add New"
 
91
  msgstr ""
92
 
93
+ #: app/helper/class-ai1ec-app-helper.php:150
94
+ msgid "Add New Event"
95
  msgstr ""
96
 
97
+ #: app/helper/class-ai1ec-app-helper.php:151
98
+ msgid "Edit Event"
99
  msgstr ""
100
 
101
+ #: app/helper/class-ai1ec-app-helper.php:152
102
+ msgid "New Event"
103
  msgstr ""
104
 
105
+ #: app/helper/class-ai1ec-app-helper.php:153
106
+ msgid "View Event"
107
  msgstr ""
108
 
109
+ #: app/helper/class-ai1ec-app-helper.php:154
110
+ msgid "Search Events"
 
111
  msgstr ""
112
 
113
+ #: app/helper/class-ai1ec-app-helper.php:155
114
+ msgid "No Events found"
115
  msgstr ""
116
 
117
+ #: app/helper/class-ai1ec-app-helper.php:156
118
+ msgid "No Events found in Trash"
119
  msgstr ""
120
 
121
+ #: app/helper/class-ai1ec-app-helper.php:157
122
+ msgid "Parent Event"
123
  msgstr ""
124
 
125
+ #: app/helper/class-ai1ec-app-helper.php:158
126
+ msgid "Events"
127
  msgstr ""
128
 
129
+ #: app/helper/class-ai1ec-app-helper.php:205
130
+ msgctxt "Event categories taxonomy"
131
+ msgid "Event Categories"
132
  msgstr ""
133
 
134
+ #: app/helper/class-ai1ec-app-helper.php:206
135
+ msgctxt "Event categories taxonomy (singular)"
136
+ msgid "Event Category"
137
  msgstr ""
138
 
139
+ #: app/helper/class-ai1ec-app-helper.php:213
140
+ msgctxt "Event tags taxonomy"
141
+ msgid "Event Tags"
142
  msgstr ""
143
 
144
+ #: app/helper/class-ai1ec-app-helper.php:214
145
+ msgctxt "Event tags taxonomy (singular)"
146
+ msgid "Event Tag"
147
  msgstr ""
148
 
149
+ #: app/helper/class-ai1ec-app-helper.php:281
150
+ msgid "Show All "
151
  msgstr ""
152
 
153
+ #: app/helper/class-ai1ec-app-helper.php:313
154
  msgid ""
155
+ "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events"
156
+ "\"><span class=\"update-count\">%d</span></span>"
157
  msgstr ""
158
 
159
+ #: app/helper/class-ai1ec-app-helper.php:319
160
+ msgid "All Events"
 
161
  msgstr ""
162
 
163
+ #: app/helper/class-ai1ec-app-helper.php:395
164
+ msgid "Event Details"
165
  msgstr ""
166
 
167
+ #: app/helper/class-ai1ec-app-helper.php:428
168
+ msgid "Post Date"
169
+ msgstr ""
170
+
171
+ #: app/helper/class-ai1ec-app-helper.php:429
172
+ msgid "Event date/time"
173
+ msgstr ""
174
+
175
+ #: app/helper/class-ai1ec-app-helper.php:653
176
+ msgid ""
177
+ "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</"
178
+ "strong> dropdown list. %s 2. Select an option in the <strong>Timezone</"
179
+ "strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
180
+ msgstr ""
181
+
182
+ #: app/helper/class-ai1ec-app-helper.php:655
183
+ msgid ""
184
+ "To set up the plugin: Select an option in the <strong>Calendar page</strong> "
185
+ "dropdown list, the click <strong>Update Settings</strong>."
186
+ msgstr ""
187
+
188
+ #: app/helper/class-ai1ec-app-helper.php:657
189
+ msgid ""
190
+ "To set up the plugin: Select an option in the <strong>Timezone</strong> "
191
+ "dropdown list, the click <strong>Update Settings</strong>."
192
+ msgstr ""
193
+
194
+ #: app/helper/class-ai1ec-app-helper.php:661
195
+ msgid ""
196
+ "The plugin is installed, but has not been configured. <a href=\"%s\">Click "
197
+ "here to set it up now »</a>"
198
+ msgstr ""
199
+
200
+ #: app/helper/class-ai1ec-app-helper.php:667
201
+ msgid ""
202
+ "The plugin is installed, but has not been configured. Please log in as a "
203
+ "WordPress Administrator to set it up."
204
+ msgstr ""
205
+
206
+ #. translators: "%s" represents the week's starting date
207
+ #: app/helper/class-ai1ec-calendar-helper.php:717
208
+ #: app/helper/class-ai1ec-calendar-helper.php:726
209
+ #: app/controller/class-ai1ec-calendar-controller.php:326
210
+ msgid "Week of %s"
211
+ msgstr ""
212
+
213
+ #: app/helper/class-ai1ec-calendar-helper.php:718
214
+ #: app/helper/class-ai1ec-calendar-helper.php:727
215
+ msgid "M j"
216
+ msgstr ""
217
+
218
+ #: app/helper/class-ai1ec-calendar-helper.php:759
219
+ msgid "« Previous Events"
220
+ msgstr ""
221
+
222
+ #: app/helper/class-ai1ec-calendar-helper.php:766
223
+ msgid "Next Events »"
224
  msgstr ""
225
 
226
  #: app/helper/class-ai1ec-events-helper.php:319
313
  msgid "weekend day"
314
  msgstr ""
315
 
 
 
 
 
 
 
 
 
316
  #: app/helper/class-ai1ec-events-helper.php:555
317
  #: app/helper/class-ai1ec-events-helper.php:574
318
  #: app/helper/class-ai1ec-events-helper.php:1514
441
  msgid "forever"
442
  msgstr ""
443
 
444
+ #: app/controller/class-ai1ec-settings-controller.php:82
445
+ msgid "Settings Updated."
 
446
  msgstr ""
447
 
448
+ #: app/controller/class-ai1ec-settings-controller.php:173
449
+ msgid "Flushed %d events"
 
450
  msgstr ""
451
 
452
+ #: app/controller/class-ai1ec-settings-controller.php:181
453
+ #: app/controller/class-ai1ec-settings-controller.php:231
454
+ msgid "Invalid ICS feed ID"
455
  msgstr ""
456
 
457
+ #: app/controller/class-ai1ec-settings-controller.php:216
458
+ msgid "No events were found"
459
  msgstr ""
460
 
461
+ #: app/controller/class-ai1ec-settings-controller.php:221
462
+ msgid "Imported %d events"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
463
  msgstr ""
464
 
465
+ #: app/controller/class-ai1ec-settings-controller.php:222
466
+ #: app/view/feed_row.php:22
467
+ msgid "Flush 1 event"
468
+ msgid_plural "Flush %s events"
469
+ msgstr[0] ""
470
+ msgstr[1] ""
471
 
472
+ #: app/controller/class-ai1ec-settings-controller.php:274
473
+ msgctxt "meta box"
474
+ msgid "General Settings"
475
  msgstr ""
476
 
477
+ #: app/controller/class-ai1ec-settings-controller.php:282
478
+ msgctxt "meta box"
479
+ msgid "The Seed Studio Support"
480
  msgstr ""
481
 
482
+ #: app/controller/class-ai1ec-settings-controller.php:289
483
+ msgctxt "meta box"
484
+ msgid "ICS Import Settings"
485
  msgstr ""
486
 
487
+ #: app/controller/class-ai1ec-settings-controller.php:338
488
+ msgid "<a href=\"%s\">Settings</a>"
 
489
  msgstr ""
490
 
491
+ #: app/controller/class-ai1ec-settings-controller.php:352
492
+ msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
493
  msgstr ""
494
 
495
+ #: app/controller/class-ai1ec-settings-controller.php:353
496
+ msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
 
 
497
  msgstr ""
498
 
499
+ #: app/controller/class-ai1ec-events-controller.php:149
500
+ msgid "This feed is already being imported."
501
  msgstr ""
502
 
503
+ #: app/controller/class-ai1ec-events-controller.php:150
504
+ msgid "Please enter a valid iCalendar URL."
505
  msgstr ""
506
 
507
+ #: app/controller/class-ai1ec-events-controller.php:285
508
+ msgid "times"
509
  msgstr ""
510
 
511
+ #: app/controller/class-ai1ec-events-controller.php:334
512
+ msgid "Publish"
513
  msgstr ""
514
 
515
+ #: app/controller/class-ai1ec-events-controller.php:334
516
+ #: app/view/feed_row.php:20
517
+ msgid "Update"
 
 
518
  msgstr ""
519
 
520
+ #: app/controller/class-ai1ec-events-controller.php:336
521
+ msgid "Submit for Review"
 
 
522
  msgstr ""
523
 
524
+ #: app/controller/class-ai1ec-events-controller.php:449
525
+ msgid "Event updated. <a href=\"%s\">View event</a>"
 
 
526
  msgstr ""
527
 
528
+ #: app/controller/class-ai1ec-events-controller.php:450
529
+ msgid "Custom field updated."
 
 
530
  msgstr ""
531
 
532
+ #: app/controller/class-ai1ec-events-controller.php:451
533
+ msgid "Custom field deleted."
 
 
534
  msgstr ""
535
 
536
+ #: app/controller/class-ai1ec-events-controller.php:452
537
+ msgid "Event updated."
 
538
  msgstr ""
539
 
540
+ #. translators: %s: date and time of the revision
541
+ #: app/controller/class-ai1ec-events-controller.php:454
542
+ msgid "Event restored to revision from %s"
543
  msgstr ""
544
 
545
+ #: app/controller/class-ai1ec-events-controller.php:455
546
+ msgid "Event published. <a href=\"%s\">View event</a>"
547
  msgstr ""
548
 
549
+ #: app/controller/class-ai1ec-events-controller.php:456
550
+ msgid "Event saved."
551
  msgstr ""
552
 
553
+ #: app/controller/class-ai1ec-events-controller.php:457
554
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
555
  msgstr ""
556
 
557
+ #: app/controller/class-ai1ec-events-controller.php:458
558
+ msgid ""
559
+ "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
560
+ "\">Preview event</a>"
561
  msgstr ""
562
 
563
+ #. translators: Publish box date format, see http:php.net/date
564
+ #: app/controller/class-ai1ec-events-controller.php:460
565
+ msgid "M j, Y @ G:i"
566
  msgstr ""
567
 
568
+ #: app/controller/class-ai1ec-events-controller.php:461
569
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
570
  msgstr ""
571
 
572
+ #: app/controller/class-ai1ec-calendar-controller.php:326
573
+ msgid "F j"
574
  msgstr ""
575
 
576
+ #: app/controller/class-ai1ec-app-controller.php:354
577
+ #: app/controller/class-ai1ec-app-controller.php:355
578
+ msgid "Settings"
579
  msgstr ""
580
 
581
+ #: app/controller/class-ai1ec-importer-controller.php:91
582
+ msgid "The Events Calendar → All-in-One Event Calendar"
583
  msgstr ""
584
 
585
+ #: app/controller/class-ai1ec-importer-controller.php:92
586
+ msgid ""
587
+ "Imports events created using The Events Calendar plugin into the All-in-One "
588
+ "Event Calendar"
589
  msgstr ""
590
 
591
+ #: app/view/event-single.php:5 app/view/event-multi.php:4
592
+ #: app/view/event-excerpt.php:2
593
+ msgid "When:"
594
  msgstr ""
595
 
596
+ #: app/view/event-single.php:8
597
+ msgid "Back to Calendar »"
598
  msgstr ""
599
 
600
+ #: app/view/event-single.php:15 app/view/event-multi.php:14
601
+ msgid "Repeats:"
602
  msgstr ""
603
 
604
+ #: app/view/event-single.php:20 app/view/event-multi.php:20
605
+ #: app/view/event-excerpt.php:4
606
+ msgid "Where:"
607
  msgstr ""
608
 
609
+ #: app/view/event-single.php:27
610
+ msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
611
  msgstr ""
612
 
613
+ #: app/view/event-single.php:28
614
+ msgid "✔ Add to Calendar"
615
  msgstr ""
616
 
617
+ #: app/view/event-single.php:31
618
+ msgid "Add this event to your Google Calendar"
 
619
  msgstr ""
620
 
621
+ #: app/view/event-single.php:33
622
+ msgid "Add to Google Calendar"
 
623
  msgstr ""
624
 
625
+ #: app/view/event-single.php:40 app/view/event-multi.php:33
626
+ msgid "Cost:"
627
  msgstr ""
628
 
629
+ #: app/view/event-single.php:46 app/view/event-multi.php:39
630
+ msgid "Contact:"
631
  msgstr ""
632
 
633
+ #: app/view/event-single.php:52 app/view/event-multi.php:45
634
+ #: app/view/agenda.php:81
635
+ msgid "Categories:"
636
  msgstr ""
637
 
638
+ #: app/view/event-single.php:59 app/view/event-multi.php:51
639
+ #: app/view/agenda.php:87
640
+ msgid "Tags:"
641
  msgstr ""
642
 
643
  #: app/view/event-map.php:2
648
  msgid "View Full-Size Map »"
649
  msgstr ""
650
 
651
+ #: app/view/box_event_cost.php:1
652
+ msgid "Event cost"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
653
  msgstr ""
654
 
655
+ #: app/view/box_event_cost.php:7
656
+ msgid "Cost"
657
  msgstr ""
658
 
659
+ #: app/view/event-multi.php:7
660
+ msgid "View in Calendar »"
661
  msgstr ""
662
 
663
+ #: app/view/event-multi.php:24
664
+ msgid "View Map »"
 
665
  msgstr ""
666
 
667
+ #: app/view/admin_notices.php:2
668
+ msgid "All-in-One Event Calendar Notice:"
669
  msgstr ""
670
 
671
+ #: app/view/row_daily.php:3 app/view/row_yearly.php:3
672
+ #: app/view/row_weekly.php:3 app/view/row_monthly.php:3
673
+ #: app/view/row_monthly.php:22
674
+ msgid "Every"
675
  msgstr ""
676
 
677
+ #: app/view/event_categories-color_picker.php:5
678
+ #: app/view/event_categories-color_picker.php:19
679
+ msgid "Category Color"
680
  msgstr ""
681
 
682
+ #: app/view/event_categories-color_picker.php:13
683
+ #: app/view/event_categories-color_picker.php:25
684
+ msgid "Events in this category will be identified by this color"
685
  msgstr ""
686
 
687
+ #: app/view/agenda-widget.php:11
688
+ msgid "There are no upcoming events."
689
  msgstr ""
690
 
691
+ #: app/view/agenda-widget.php:59
692
+ msgid "View Calendar »"
693
  msgstr ""
694
 
695
+ #: app/view/agenda-widget.php:67 app/view/calendar.php:110
696
+ msgid ""
697
+ "Subscribe to this calendar using your favourite calendar program (iCal, "
698
+ "Outlook, etc.)"
699
  msgstr ""
700
 
701
+ #: app/view/agenda-widget.php:68 app/view/calendar.php:111
702
+ msgid "✔ Subscribe"
703
  msgstr ""
704
 
705
+ #: app/view/agenda-widget.php:72 app/view/calendar.php:116
706
+ msgid "Subscribe to this calendar in your Google Calendar"
707
  msgstr ""
708
 
709
+ #: app/view/agenda-widget.php:74
710
+ msgid "Add to Google"
 
711
  msgstr ""
712
 
713
+ #: app/view/box_event_contact.php:1
714
+ msgid "Organizer contact info"
 
715
  msgstr ""
716
 
717
+ #: app/view/box_event_contact.php:7
718
+ msgid "Contact name:"
 
 
719
  msgstr ""
720
 
721
+ #: app/view/box_event_contact.php:17
722
+ msgid "Phone:"
 
723
  msgstr ""
724
 
725
+ #: app/view/box_event_contact.php:27
726
+ msgid "E-mail:"
727
  msgstr ""
728
 
729
+ #: app/view/box_ics_import_settings.php:2
730
+ msgid "Auto-refresh"
731
  msgstr ""
732
 
733
+ #: app/view/box_ics_import_settings.php:8 app/view/feed_row.php:3
734
+ msgid "iCalendar/.ics Feed URL:"
735
  msgstr ""
736
 
737
+ #: app/view/box_ics_import_settings.php:12
738
+ msgid "Event category"
739
  msgstr ""
740
 
741
+ #: app/view/box_ics_import_settings.php:18 app/view/feed_row.php:15
742
+ msgid "Tag with"
743
  msgstr ""
744
 
745
+ #: app/view/box_ics_import_settings.php:22
746
+ msgid "+ Add new subscription"
 
 
747
  msgstr ""
748
 
749
+ #: app/view/box_general_settings.php:1
750
+ msgid "Viewing Events"
751
  msgstr ""
752
 
753
+ #: app/view/box_general_settings.php:3
754
+ msgid "Calendar page:"
755
  msgstr ""
756
 
757
+ #: app/view/box_general_settings.php:7
758
+ msgid "Default calendar view:"
759
  msgstr ""
760
 
761
+ #: app/view/box_general_settings.php:12
762
+ msgid "Timezone:"
763
  msgstr ""
764
 
765
+ #: app/view/box_general_settings.php:17
766
+ msgid "Contain calendar in this DOM element:"
767
  msgstr ""
768
 
769
+ #: app/view/box_general_settings.php:19
770
  msgid ""
771
+ "Optional. Provide a <a href=\"http://api.jquery.com/category/selectors/\" "
772
+ "target=\"_blank\">jQuery selector</a> that evaluates to a single DOM "
773
+ "element. Replaces any existing markup found within target. If left empty, "
774
+ "calendar is shown in normal page content container."
775
  msgstr ""
776
 
777
+ #: app/view/box_general_settings.php:21
778
+ msgid "Week starts on"
779
  msgstr ""
780
 
781
+ #: app/view/box_general_settings.php:25
782
+ msgid "Agenda pages show at most"
783
  msgstr ""
784
 
785
+ #: app/view/box_general_settings.php:26
786
+ msgid "events"
787
  msgstr ""
788
 
789
+ #: app/view/box_general_settings.php:31
790
+ msgid "Keep all events <strong>expanded</strong> in the agenda view"
791
  msgstr ""
792
 
793
+ #: app/view/box_general_settings.php:37
794
+ msgid "<strong>Exclude</strong> events from search results"
795
  msgstr ""
796
 
797
+ #: app/view/box_general_settings.php:43
798
+ msgid ""
799
+ "Show <strong>Post Your Event</strong> button above the calendar to "
800
+ "privileged users"
801
  msgstr ""
802
 
803
+ #: app/view/box_general_settings.php:49
804
+ msgid ""
805
+ "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
806
+ "calendar and single event views"
807
  msgstr ""
808
 
809
+ #: app/view/box_general_settings.php:55
810
+ msgid "Hide <strong>Google Maps</strong> until clicked"
811
  msgstr ""
812
 
813
+ #: app/view/box_general_settings.php:61
814
+ msgid ""
815
+ "Use the configured <strong>region</strong> (WordPress locale) to bias the "
816
+ "address autocomplete function"
817
  msgstr ""
818
 
819
+ #: app/view/box_general_settings.php:67
820
+ msgid "Include <strong>event categories</strong> in post category lists"
821
  msgstr ""
822
 
823
+ #: app/view/box_general_settings.php:71
824
+ msgid "Adding/Editing Events"
825
  msgstr ""
826
 
827
+ #: app/view/box_general_settings.php:73
828
+ msgid "Input dates in this format:"
829
  msgstr ""
830
 
831
+ #: app/view/box_general_settings.php:79
832
+ msgid "Use <strong>24h time</strong> in time pickers"
 
 
833
  msgstr ""
834
 
835
+ #: app/view/box_general_settings.php:85
836
+ msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
 
 
837
  msgstr ""
838
 
839
+ #: app/view/row_yearly.php:7
840
+ msgctxt "Recurrence editor - yearly tab"
841
+ msgid "In"
842
  msgstr ""
843
 
844
+ #: app/view/feed_row.php:9
845
+ msgid "Event category:"
846
  msgstr ""
847
 
848
+ #: app/view/feed_row.php:19
849
+ msgid "× Delete"
850
  msgstr ""
851
 
852
+ #: app/view/agenda-widget-form.php:2
853
+ msgid "Title:"
854
  msgstr ""
855
 
856
+ #: app/view/agenda-widget-form.php:6
857
+ msgid "Number of events to show:"
 
 
 
858
  msgstr ""
859
 
860
+ #: app/view/agenda-widget-form.php:14
861
+ msgid "Events with these <strong>Categories</strong>"
 
 
862
  msgstr ""
863
 
864
+ #: app/view/agenda-widget-form.php:23
865
+ msgid "No categories found."
866
  msgstr ""
867
 
868
+ #: app/view/agenda-widget-form.php:30
869
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
 
 
870
  msgstr ""
871
 
872
+ #: app/view/agenda-widget-form.php:39
873
+ msgid "No tags found."
 
 
 
874
  msgstr ""
875
 
876
+ #: app/view/agenda-widget-form.php:46
877
+ msgid "<strong>Or</strong> any of these <strong>Events</strong>"
878
  msgstr ""
879
 
880
+ #: app/view/agenda-widget-form.php:55
881
+ msgid "No events found."
882
  msgstr ""
883
 
884
+ #: app/view/agenda-widget-form.php:62
885
+ msgid "Show <strong>View Calendar</strong> button"
886
  msgstr ""
887
 
888
+ #: app/view/agenda-widget-form.php:65
889
+ msgid "Show <strong>Subscribe</strong> buttons"
890
  msgstr ""
891
 
892
+ #: app/view/agenda-widget-form.php:68
893
+ msgid "Hide this widget on calendar page"
894
  msgstr ""
895
 
896
+ #: app/view/calendar.php:35
897
+ msgid "+ Post Your Event"
898
  msgstr ""
899
 
900
+ #: app/view/calendar.php:44
901
+ msgid "Clear Filters"
902
  msgstr ""
903
 
904
+ #: app/view/calendar.php:44
905
+ msgid ""
906
  msgstr ""
907
 
908
+ #: app/view/calendar.php:45
909
+ msgid "Filter:"
910
  msgstr ""
911
 
912
+ #: app/view/calendar.php:50
913
+ msgid "Categories ▾"
914
  msgstr ""
915
 
916
+ #: app/view/calendar.php:72
917
+ msgid "Tags "
918
  msgstr ""
919
 
920
+ #: app/view/calendar.php:112
921
+ msgid "to this filtered calendar"
 
 
 
 
922
  msgstr ""
923
 
924
+ #: app/view/calendar.php:118
925
+ msgid "Subscribe in Google Calendar"
926
  msgstr ""
927
 
928
+ #: app/view/agenda.php:5
929
+ msgid "+ Expand All"
930
  msgstr ""
931
 
932
+ #: app/view/agenda.php:8
933
+ msgid "− Collapse All"
934
  msgstr ""
935
+
936
+ #: app/view/agenda.php:12 app/view/week.php:4 app/view/month.php:4
937
+ msgid "Today"
938
  msgstr ""
939
 
940
+ #: app/view/agenda.php:29
941
+ msgid "There are no upcoming events to display at this time."
942
  msgstr ""
943
 
944
+ #: app/view/agenda.php:59 app/view/agenda.php:109 app/view/week.php:69
945
+ #: app/view/month.php:68
946
+ msgid "(all-day)"
 
947
  msgstr ""
948
 
949
+ #: app/view/agenda.php:77
950
+ msgid "Read more »"
 
 
951
  msgstr ""
952
 
953
+ #: app/view/class-ai1ec-agenda-widget.php:18
954
+ #: app/view/class-ai1ec-agenda-widget.php:39
955
+ msgid "Upcoming Events"
956
  msgstr ""
957
 
958
+ #: app/view/class-ai1ec-agenda-widget.php:20
959
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
 
 
960
  msgstr ""
961
 
962
+ #. #-#-#-#-# plugin.pot (All-in-One Event Calendar 1.2.5) #-#-#-#-#
963
+ #. Author of the plugin/theme
964
+ #: app/view/box_the_seed_studio.php:4
965
+ msgid "The Seed Studio"
966
  msgstr ""
967
 
968
+ #: app/view/box_the_seed_studio.php:7
969
+ msgid ""
970
+ "The Seed Studio provides web development and support services for clients "
971
+ "and web developers."
972
  msgstr ""
973
 
974
+ #: app/view/box_the_seed_studio.php:14
975
+ msgid "Follow @theseednet"
976
  msgstr ""
977
 
978
+ #: app/view/box_the_seed_studio.php:20
979
+ msgid "Get Support<span> from one of our experienced pros</span>"
980
  msgstr ""
981
 
982
+ #: app/view/box_the_seed_studio.php:23
983
+ msgid "Support"
984
  msgstr ""
985
 
986
+ #: app/view/box_the_seed_studio.php:25
987
+ msgid "View plugin documentation"
988
  msgstr ""
989
 
990
+ #: app/view/box_the_seed_studio.php:28
991
+ msgid ""
992
+ "You can also hire The Seed for support on a contract or per-hour basis for "
993
+ "this plugin, for your website or for any of your Internet marketing needs "
994
+ "(we can really help!)."
995
  msgstr ""
996
 
997
+ #: app/view/box_the_seed_studio.php:31
998
  msgid ""
999
+ "Plugin users: The Seed gives support priority to clients. For free support "
1000
+ "from other WordPress users, visit the plugin's forum."
1001
  msgstr ""
1002
 
1003
+ #: app/view/box_the_seed_studio.php:34
1004
+ msgid "Vote and Share"
1005
  msgstr ""
1006
 
1007
+ #: app/view/box_the_seed_studio.php:36
1008
+ msgid ""
1009
+ "This plugin is offered free to the Wordpress Community under the GPL3 "
1010
+ "license. All we ask is that you:"
1011
  msgstr ""
1012
 
1013
+ #: app/view/box_the_seed_studio.php:38
1014
+ msgid ""
1015
+ "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" "
1016
+ "target=\"_blank\">Give it a five-star rating on wordpress.org</a> (if you "
1017
+ "think it deserves it!)"
1018
  msgstr ""
1019
 
1020
+ #: app/view/box_the_seed_studio.php:39
1021
+ msgid "Link to the plugin page on our website"
1022
  msgstr ""
1023
 
1024
+ #: app/view/box_the_seed_studio.php:40
1025
+ msgid "Become a Fan on Facebook"
1026
  msgstr ""
1027
 
1028
+ #: app/view/box_the_seed_studio.php:41
1029
+ msgid "Follow us on Twitter"
1030
  msgstr ""
1031
 
1032
+ #: app/view/box_the_seed_studio.php:46
1033
+ msgid "Latest from the Seed Network"
1034
  msgstr ""
1035
 
1036
+ #: app/view/week.php:33
1037
+ msgid "All-day"
1038
  msgstr ""
1039
 
1040
+ #: app/view/week.php:55 app/view/week.php:127 app/view/month.php:50
1041
+ msgid "Summary:"
1042
  msgstr ""
1043
 
1044
+ #: app/view/week.php:58 app/view/week.php:130 app/view/month.php:53
1045
+ msgid "click anywhere for details"
1046
  msgstr ""
1047
 
1048
+ #: app/view/box_eventbrite.php:1
1049
+ msgid "Eventbrite Ticketing"
1050
  msgstr ""
1051
 
1052
+ #: app/view/box_eventbrite.php:7
1053
+ msgid "Register this event with Eventbrite.com?"
1054
  msgstr ""
1055
 
1056
+ #: app/view/box_eventbrite.php:12
1057
+ msgid "Yes"
1058
  msgstr ""
1059
 
1060
+ #: app/view/box_eventbrite.php:14
1061
+ msgid "No"
1062
  msgstr ""
1063
 
1064
+ #: app/view/box_eventbrite.php:22
1065
+ msgid "Set up your first ticket"
1066
  msgstr ""
1067
 
1068
+ #: app/view/box_eventbrite.php:24
1069
+ msgid ""
1070
+ "To create multiple tickets per event, submit this form, then follow the link "
1071
+ "to Eventbrite."
1072
  msgstr ""
1073
 
1074
+ #: app/view/box_eventbrite.php:32
1075
+ msgid "Name"
 
1076
  msgstr ""
1077
 
1078
+ #: app/view/box_eventbrite.php:42
1079
+ msgid "Description"
1080
  msgstr ""
1081
 
1082
+ #: app/view/box_eventbrite.php:53
1083
+ msgid "Type"
1084
  msgstr ""
1085
 
1086
+ #: app/view/box_eventbrite.php:58
1087
+ msgid "Set Price"
1088
  msgstr ""
1089
 
1090
+ #: app/view/box_eventbrite.php:60
1091
+ msgid "Donation Based"
1092
  msgstr ""
1093
 
1094
+ #: app/view/box_eventbrite.php:68
1095
  msgid ""
1096
+ "The price for this event's first ticket will be taken from the Cost field "
1097
+ "above."
1098
  msgstr ""
1099
 
1100
+ #: app/view/box_eventbrite.php:75
1101
+ msgid "Quantity"
1102
  msgstr ""
1103
 
1104
+ #: app/view/box_eventbrite.php:85
1105
+ msgid "Include Fee in Price"
1106
  msgstr ""
1107
 
1108
+ #: app/view/box_eventbrite.php:90
1109
+ msgid "Add Service Fee on top of price"
1110
  msgstr ""
1111
 
1112
+ #: app/view/box_eventbrite.php:92
1113
+ msgid "Include Service fee in price"
1114
  msgstr ""
1115
 
1116
+ #: app/view/box_eventbrite.php:98
1117
+ msgid "Payment Options"
1118
  msgstr ""
1119
 
1120
+ #: app/view/box_eventbrite.php:103
1121
+ msgid "Paypal"
1122
  msgstr ""
1123
 
1124
+ #: app/view/box_eventbrite.php:105
1125
+ msgid "Google Checkout"
1126
  msgstr ""
1127
 
1128
+ #: app/view/box_eventbrite.php:107
1129
+ msgid "Check"
1130
  msgstr ""
1131
 
1132
+ #: app/view/box_eventbrite.php:109
1133
+ msgid "Cash"
1134
  msgstr ""
1135
 
1136
+ #: app/view/box_eventbrite.php:111
1137
+ msgid "Send an Invoice"
1138
  msgstr ""
1139
 
1140
+ #: app/view/event-single-footer.php:4
1141
+ msgid ""
1142
+ "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" "
1143
+ "href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
1144
  msgstr ""
1145
 
1146
+ #: app/view/event-single-footer.php:8
1147
+ msgid "View original post »"
1148
  msgstr ""
1149
 
1150
  #: app/view/box_time_and_date.php:2
1183
  msgid "Cancel"
1184
  msgstr ""
1185
 
1186
+ #: app/view/row_weekly.php:6
1187
+ msgctxt "Recurrence editor - weekly tab"
1188
+ msgid "On"
1189
  msgstr ""
1190
 
1191
+ #: app/view/row_monthly.php:9
1192
+ msgid "On day of the month"
1193
  msgstr ""
1194
 
1195
+ #: app/view/row_monthly.php:13
1196
+ msgid "On day of the week"
1197
  msgstr ""
1198
 
1199
+ #: app/view/settings.php:5
1200
+ msgid "All-in-one Event Calendar"
1201
  msgstr ""
1202
 
1203
+ #: app/view/settings.php:16
1204
+ msgid "Update Settings"
 
1205
  msgstr ""
1206
 
1207
+ #: app/view/box_event_location.php:1
1208
+ msgid "Event location details"
 
1209
  msgstr ""
1210
 
1211
+ #: app/view/box_event_location.php:7
1212
+ msgid "Venue name:"
1213
+ msgstr ""
1214
+
1215
+ #: app/view/box_event_location.php:17
1216
+ msgid "Address:"
1217
+ msgstr ""
1218
+
1219
+ #: app/view/box_event_location.php:27
1220
+ msgid "Show Google Map:"
1221
+ msgstr ""
1222
+
1223
+ #: app/view/import.php:6
1224
+ msgid "Successfully imported events:"
1225
  msgstr ""
1226
 
1227
  #. Plugin Name of the plugin/theme
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: calendar, event, events, ics, ics calendar, ical-feed, ics feed, wordpress ics importer, wordpress ical importer, upcoming events, todo, notes, journal, freebusy, availability, web calendar, web events, webcal, google calendar, ical, iCalendar, all-in-one, ai1ec, google calendar sync, ical sync, events sync, holiday calendar, calendar 2011, events 2011, widget, events widget, upcoming events widget, calendar widget, agenda widget
5
  Requires at least: 3.1.3
6
  Tested up to: 3.3
7
- Stable tag: 1.2.4
8
 
9
  An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
10
 
@@ -57,6 +57,12 @@ The All-in-One Event Calendar Plugin also has a few features that will prove use
57
  * [**Get Premium Support »**](http://theseednetwork.com/get-supported) from [The Seed Studio](http://theseednetwork.com/)
58
 
59
  == Changelog ==
 
 
 
 
 
 
60
  = Version 1.2.4 =
61
  * Improvement: Added a lower version of iCalcreator for environments with PHP versions below 5.3.0
62
 
4
  Tags: calendar, event, events, ics, ics calendar, ical-feed, ics feed, wordpress ics importer, wordpress ical importer, upcoming events, todo, notes, journal, freebusy, availability, web calendar, web events, webcal, google calendar, ical, iCalendar, all-in-one, ai1ec, google calendar sync, ical sync, events sync, holiday calendar, calendar 2011, events 2011, widget, events widget, upcoming events widget, calendar widget, agenda widget
5
  Requires at least: 3.1.3
6
  Tested up to: 3.3
7
+ Stable tag: 1.2.5
8
 
9
  An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
10
 
57
  * [**Get Premium Support »**](http://theseednetwork.com/get-supported) from [The Seed Studio](http://theseednetwork.com/)
58
 
59
  == Changelog ==
60
+ = Version 1.2.5 =
61
+ * Reviewed plugin's security. The plugin is as safe to use as is WordPress itself.
62
+ * Fixed: instance_id not corresponding with correct data [#275](http://trac.the-seed.ca/ticket/275)
63
+ * Fixed: Call-time pass-by-reference warning [#268](http://trac.the-seed.ca/ticket/268)
64
+ * Improvement: Added support for custom fields
65
+
66
  = Version 1.2.4 =
67
  * Improvement: Added a lower version of iCalcreator for environments with PHP versions below 5.3.0
68