Version Description
Download this release
Release Info
Developer | yani.iliev |
Plugin | 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 +1 -1
- app/controller/class-ai1ec-events-controller.php +2 -2
- app/helper/class-ai1ec-app-helper.php +1 -1
- app/helper/class-ai1ec-events-helper.php +2 -2
- app/model/class-ai1ec-event.php +4 -3
- app/view/calendar.php +1 -1
- app/view/week.php +1 -1
- language/all-in-one-event-calendar.pot +547 -546
- readme.txt +7 -1
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.
|
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 =
|
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 =
|
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,
|
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 =
|
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 .= ",
|
|
|
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.
|
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.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
-
"POT-Creation-Date: 2012-01-
|
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/
|
16 |
-
msgid "
|
17 |
msgstr ""
|
18 |
|
19 |
-
#: app/
|
20 |
-
msgid ""
|
21 |
-
"Imports events created using The Events Calendar plugin into the All-in-One "
|
22 |
-
"Event Calendar"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: app/
|
26 |
-
msgid "
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: app/
|
30 |
-
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: app/
|
34 |
-
#: app/
|
35 |
-
msgid "
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: app/
|
39 |
-
|
|
|
|
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: app/
|
43 |
-
msgid "
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: app/
|
47 |
-
|
48 |
-
|
49 |
-
msgid_plural "Flush %s events"
|
50 |
-
msgstr[0] ""
|
51 |
-
msgstr[1] ""
|
52 |
|
53 |
-
#: app/
|
54 |
-
|
55 |
-
msgid "General Settings"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: app/
|
59 |
-
|
60 |
-
msgid "The Seed Studio Support"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: app/
|
64 |
-
|
65 |
-
msgid "ICS Import Settings"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: app/
|
69 |
-
msgid "
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: app/
|
73 |
-
|
|
|
|
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: app/
|
77 |
-
msgid "
|
78 |
msgstr ""
|
79 |
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
#: app/helper/class-ai1ec-calendar-helper.php:726
|
84 |
-
msgid "Week of %s"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: app/
|
88 |
-
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: app/
|
92 |
-
|
93 |
-
msgid "Agenda"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: app/
|
97 |
-
msgid "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: app/
|
101 |
-
msgid "
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: app/
|
105 |
-
msgid "
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: app/
|
109 |
-
msgid "
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: app/
|
113 |
-
|
114 |
-
msgid "Update"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: app/
|
118 |
-
msgid "
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: app/
|
122 |
-
msgid "
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: app/
|
126 |
-
msgid "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: app/
|
130 |
-
msgid "
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: app/
|
134 |
-
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
-
|
138 |
-
|
139 |
-
msgid "Event
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: app/
|
143 |
-
|
|
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: app/
|
147 |
-
|
|
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: app/
|
151 |
-
msgid "
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: app/
|
155 |
msgid ""
|
156 |
-
"
|
157 |
-
"\"
|
158 |
msgstr ""
|
159 |
|
160 |
-
|
161 |
-
|
162 |
-
msgid "M j, Y @ G:i"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: app/
|
166 |
-
msgid "Event
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: app/
|
170 |
-
|
171 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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/
|
401 |
-
|
402 |
-
msgid "Events"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: app/
|
406 |
-
|
407 |
-
msgid "Event"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: app/
|
411 |
-
|
|
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: app/
|
415 |
-
msgid "
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: app/
|
419 |
-
msgid "
|
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/
|
447 |
-
|
448 |
-
|
|
|
|
|
|
|
449 |
|
450 |
-
#: app/
|
451 |
-
msgctxt "
|
452 |
-
msgid "
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: app/
|
456 |
-
msgctxt "
|
457 |
-
msgid "
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: app/
|
461 |
-
msgctxt "
|
462 |
-
msgid "
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: app/
|
466 |
-
|
467 |
-
msgid "Event Tag"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: app/
|
471 |
-
msgid "
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: app/
|
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/
|
481 |
-
msgid "
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: app/
|
485 |
-
msgid "
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: app/
|
489 |
-
msgid "
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: app/
|
493 |
-
msgid "
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: app/
|
497 |
-
|
498 |
-
|
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/
|
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/
|
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/
|
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/
|
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/
|
528 |
-
|
529 |
-
msgid "M j"
|
530 |
msgstr ""
|
531 |
|
532 |
-
|
533 |
-
|
|
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: app/
|
537 |
-
msgid "
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: app/
|
541 |
-
msgid "
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: app/
|
545 |
-
msgid "
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: app/
|
549 |
-
|
550 |
-
|
|
|
551 |
msgstr ""
|
552 |
|
553 |
-
|
554 |
-
#: app/
|
555 |
-
msgid "
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: app/
|
559 |
-
msgid "
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: app/
|
563 |
-
msgid "
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: app/
|
567 |
-
|
|
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: app/
|
571 |
-
msgid "
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: app/
|
575 |
-
msgid "
|
|
|
|
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: app/
|
579 |
-
|
|
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: app/
|
583 |
-
msgid "Calendar"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: app/view/
|
587 |
-
msgid "
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: app/view/
|
591 |
-
|
|
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: app/view/
|
595 |
-
msgid "
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: app/view/
|
599 |
-
msgid "
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: app/view/event-
|
603 |
-
|
604 |
-
msgid "When:"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: app/view/event-
|
608 |
-
|
609 |
-
msgid "Where:"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: app/view/
|
613 |
-
msgid "
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: app/view/
|
617 |
-
msgid "
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: app/view/
|
621 |
-
|
|
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: app/view/
|
625 |
-
|
|
|
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/
|
637 |
-
msgid "Event
|
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/
|
666 |
-
msgid "
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: app/view/
|
670 |
-
msgid "
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: app/view/
|
674 |
-
|
675 |
-
msgid "(all-day)"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: app/view/
|
679 |
-
msgid "
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: app/view/
|
683 |
-
|
|
|
|
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: app/view/
|
687 |
-
|
|
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: app/view/
|
691 |
-
|
|
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: app/view/
|
695 |
-
msgid "
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: app/view/
|
699 |
-
msgid "
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: app/view/
|
703 |
-
msgid "
|
|
|
|
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: app/view/
|
707 |
-
msgid "
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: app/view/
|
711 |
-
msgid "
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: app/view/
|
715 |
-
|
716 |
-
msgid "Categories:"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: app/view/
|
720 |
-
|
721 |
-
msgid "Tags:"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: app/view/
|
725 |
-
|
726 |
-
#: app/view/row_daily.php:3
|
727 |
-
msgid "Every"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: app/view/
|
731 |
-
|
732 |
-
msgid "On"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: app/view/
|
736 |
-
msgid "
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: app/view/
|
740 |
-
msgid "
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: app/view/
|
744 |
-
msgid "
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: app/view/
|
748 |
-
msgid "
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: app/view/
|
752 |
-
msgid "
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: app/view/
|
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/
|
762 |
-
msgid "
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: app/view/
|
766 |
-
msgid "
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: app/view/
|
770 |
-
msgid "
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: app/view/
|
774 |
-
msgid "
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: app/view/
|
778 |
-
msgid "
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: app/view/
|
782 |
msgid ""
|
783 |
-
"
|
784 |
-
"
|
|
|
|
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: app/view/
|
788 |
-
msgid "
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: app/view/
|
792 |
-
msgid "
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: app/view/
|
796 |
-
msgid "
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: app/view/
|
800 |
-
msgid "
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: app/view/
|
804 |
-
msgid "
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: app/view/
|
808 |
-
msgid "
|
|
|
|
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: app/view/
|
812 |
-
msgid "
|
|
|
|
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: app/view/
|
816 |
-
msgid "
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: app/view/
|
820 |
-
msgid "
|
|
|
|
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: app/view/
|
824 |
-
msgid "
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: app/view/
|
828 |
-
msgid "
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: app/view/
|
832 |
-
msgid "
|
833 |
msgstr ""
|
834 |
|
835 |
-
|
836 |
-
|
837 |
-
#: app/view/box_the_seed_studio.php:4
|
838 |
-
msgid "The Seed Studio"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: app/view/
|
842 |
-
msgid ""
|
843 |
-
"The Seed Studio provides web development and support services for clients "
|
844 |
-
"and web developers."
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: app/view/
|
848 |
-
|
|
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: app/view/
|
852 |
-
msgid "
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: app/view/
|
856 |
-
msgid "
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: app/view/
|
860 |
-
msgid "
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: app/view/
|
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/
|
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/
|
877 |
-
msgid "
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: app/view/
|
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/
|
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/
|
894 |
-
msgid "
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: app/view/
|
898 |
-
msgid "
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: app/view/
|
902 |
-
msgid "
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: app/view/
|
906 |
-
msgid "
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: app/view/
|
910 |
-
msgid "
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: app/view/
|
914 |
-
msgid "
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: app/view/
|
918 |
-
msgid "
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: app/view/
|
922 |
-
msgid "
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: app/view/
|
926 |
-
msgid "
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: app/view/
|
930 |
-
msgid "
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: app/view/
|
934 |
-
msgid "
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: app/view/
|
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/
|
946 |
-
msgid "
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: app/view/
|
950 |
-
msgid "
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: app/view/
|
954 |
-
msgid "
|
955 |
msgstr ""
|
956 |
-
|
957 |
-
#: app/view/
|
958 |
-
msgid "
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: app/view/
|
962 |
-
msgid "
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: app/view/
|
966 |
-
|
967 |
-
|
968 |
-
"privileged users"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: app/view/
|
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/
|
978 |
-
|
|
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: app/view/
|
982 |
-
msgid ""
|
983 |
-
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
984 |
-
"address autocomplete function"
|
985 |
msgstr ""
|
986 |
|
987 |
-
|
988 |
-
|
|
|
|
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: app/view/
|
992 |
-
msgid "
|
|
|
|
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: app/view/
|
996 |
-
msgid "
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: app/view/
|
1000 |
-
msgid "
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: app/view/
|
1004 |
-
msgid "
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: app/view/
|
1008 |
-
msgid "
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: app/view/
|
1012 |
-
msgid "
|
|
|
|
|
|
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: app/view/
|
1016 |
msgid ""
|
1017 |
-
"
|
1018 |
-
"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: app/view/
|
1022 |
-
msgid "
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: app/view/
|
1026 |
-
msgid "
|
|
|
|
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: app/view/
|
1030 |
-
msgid "
|
|
|
|
|
|
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: app/view/
|
1034 |
-
msgid "
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: app/view/
|
1038 |
-
msgid "
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: app/view/
|
1042 |
-
msgid "
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: app/view/
|
1046 |
-
msgid "
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: app/view/
|
1050 |
-
msgid "All-
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: app/view/
|
1054 |
-
msgid "
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: app/view/
|
1058 |
-
msgid "
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: app/view/
|
1062 |
-
msgid "
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: app/view/
|
1066 |
-
msgid "
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: app/view/
|
1070 |
-
msgid "
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: app/view/
|
1074 |
-
msgid "
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: app/view/
|
1078 |
-
msgid "
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: app/view/
|
1082 |
-
msgid "
|
|
|
|
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: app/view/
|
1086 |
-
|
1087 |
-
msgid "In"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: app/view/
|
1091 |
-
msgid "
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: app/view/
|
1095 |
-
msgid "
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: app/view/
|
1099 |
-
msgid "
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: app/view/
|
1103 |
-
msgid "
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: app/view/
|
1107 |
msgid ""
|
1108 |
-
"
|
1109 |
-
"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: app/view/
|
1113 |
-
msgid "
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: app/view/
|
1117 |
-
msgid "
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: app/view/
|
1121 |
-
msgid "
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: app/view/
|
1125 |
-
msgid "
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: app/view/
|
1129 |
-
msgid "
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: app/view/
|
1133 |
-
msgid "
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: app/view/
|
1137 |
-
msgid "
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: app/view/
|
1141 |
-
msgid "
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: app/view/
|
1145 |
-
msgid "
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: app/view/
|
1149 |
-
msgid "
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: app/view/
|
1153 |
-
msgid "
|
|
|
|
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: app/view/
|
1157 |
-
msgid "
|
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/
|
1197 |
-
|
|
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: app/view/
|
1201 |
-
msgid "
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: app/view/
|
1205 |
-
msgid "
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: app/view/
|
1209 |
-
msgid "All-
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: app/view/
|
1213 |
-
|
1214 |
-
msgid "Category Color"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: app/view/
|
1218 |
-
|
1219 |
-
msgid "Events in this category will be identified by this color"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: app/
|
1223 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
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 |
|