Version Description
Download this release
Release Info
Developer | calvinyeh |
Plugin | All-in-One Event Calendar |
Version | 2.5.3 |
Comparing to | |
See all releases |
Code changes from version 2.5.2 to 2.5.3
- all-in-one-event-calendar.php +1 -1
- app/config/constants.php +1 -1
- app/controller/front.php +29 -0
- app/model/search.php +23 -8
- app/model/settings.php +0 -17
- app/view/admin/settings.php +2 -1
- language/all-in-one-event-calendar.mo +0 -0
- language/all-in-one-event-calendar.po +90 -92
- language/all-in-one-event-calendar.pot +85 -86
- lib/html/element/href.php +1 -1
- lib/iCal/iCalcreator-2.20/iCalcreator.class.php +1 -1
- lib/import-export/api-ics.php +5 -0
- lib/routing/uri-helper.php +1 -1
- public/admin/twig/setting/api-signup.twig +4 -2
- readme.txt +10 -2
all-in-one-event-calendar.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
6 |
* Author: Time.ly Network Inc.
|
7 |
* Author URI: http://time.ly/
|
8 |
-
* Version: 2.5.
|
9 |
* Text Domain: all-in-one-event-calendar
|
10 |
* Domain Path: /language
|
11 |
*/
|
5 |
* Description: A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
6 |
* Author: Time.ly Network Inc.
|
7 |
* Author URI: http://time.ly/
|
8 |
+
* Version: 2.5.3
|
9 |
* Text Domain: all-in-one-event-calendar
|
10 |
* Domain Path: /language
|
11 |
*/
|
app/config/constants.php
CHANGED
@@ -50,7 +50,7 @@ function ai1ec_initiate_constants( $ai1ec_base_dir, $ai1ec_base_url ) {
|
|
50 |
// = Plugin Version =
|
51 |
// ==================
|
52 |
if ( ! defined( 'AI1EC_VERSION' ) ) {
|
53 |
-
define( 'AI1EC_VERSION', '2.5.
|
54 |
}
|
55 |
|
56 |
// ================
|
50 |
// = Plugin Version =
|
51 |
// ==================
|
52 |
if ( ! defined( 'AI1EC_VERSION' ) ) {
|
53 |
+
define( 'AI1EC_VERSION', '2.5.3' );
|
54 |
}
|
55 |
|
56 |
// ================
|
app/controller/front.php
CHANGED
@@ -281,6 +281,8 @@ class Ai1ec_Front_Controller {
|
|
281 |
'ai1ec_perform_scheme_update',
|
282 |
array( 'database.datetime-migration', 'filter_scheme_update' )
|
283 |
);
|
|
|
|
|
284 |
// Load the css if needed
|
285 |
$this->_load_css_if_needed();
|
286 |
// Initialize the crons
|
@@ -1116,6 +1118,33 @@ class Ai1ec_Front_Controller {
|
|
1116 |
}
|
1117 |
}
|
1118 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1119 |
/**
|
1120 |
* Get current database schema as a multi SQL statement.
|
1121 |
*
|
281 |
'ai1ec_perform_scheme_update',
|
282 |
array( 'database.datetime-migration', 'filter_scheme_update' )
|
283 |
);
|
284 |
+
// Procedures to take when upgrading plugin version
|
285 |
+
$this->_plugin_upgrade_procedures();
|
286 |
// Load the css if needed
|
287 |
$this->_load_css_if_needed();
|
288 |
// Initialize the crons
|
1118 |
}
|
1119 |
}
|
1120 |
|
1121 |
+
/**
|
1122 |
+
* Procedures to take when upgrading plugin version
|
1123 |
+
*
|
1124 |
+
* @return void
|
1125 |
+
*/
|
1126 |
+
protected function _plugin_upgrade_procedures() {
|
1127 |
+
$option = $this->_registry->get( 'model.option' );
|
1128 |
+
$version = AI1EC_VERSION;
|
1129 |
+
|
1130 |
+
if ( $option->get( 'ai1ec_version' ) != $version ) {
|
1131 |
+
try {
|
1132 |
+
// Force regeneration of JS cache
|
1133 |
+
$this->_registry->get( 'controller.javascript' )->revalidate_cache();
|
1134 |
+
$this->_registry->get( 'controller.javascript-widget' )->revalidate_cache();
|
1135 |
+
|
1136 |
+
// Invalidade CSS
|
1137 |
+
$option->set( 'ai1ec_force_flush_rewrite_rules', true, true );
|
1138 |
+
$option->set( 'ai1ec_invalidate_css_cache', true, true );
|
1139 |
+
$option->set( Ai1ec_Theme_Loader::OPTION_FORCE_CLEAN, true, true );
|
1140 |
+
} catch ( Exception $e ) {
|
1141 |
+
}
|
1142 |
+
|
1143 |
+
// Update plugin version
|
1144 |
+
$option->set( 'ai1ec_version', $version );
|
1145 |
+
}
|
1146 |
+
}
|
1147 |
+
|
1148 |
/**
|
1149 |
* Get current database schema as a multi SQL statement.
|
1150 |
*
|
app/model/search.php
CHANGED
@@ -418,7 +418,10 @@ class Ai1ec_Event_Search extends Ai1ec_Base {
|
|
418 |
|
419 |
// Convert timestamp to GMT time
|
420 |
if ( 0 == $date_reference ) {
|
421 |
-
$
|
|
|
|
|
|
|
422 |
} else {
|
423 |
$time = $date_reference;
|
424 |
}
|
@@ -434,17 +437,29 @@ class Ai1ec_Event_Search extends Ai1ec_Base {
|
|
434 |
// Query arguments
|
435 |
$args = array( $time );
|
436 |
$args = array_merge( $args, $where_parameters['args'] );
|
437 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
438 |
if ( $page_offset >= 0 ) {
|
439 |
$first_record = $page_offset * $limit;
|
440 |
-
|
441 |
-
$order_direction = 'ASC';
|
442 |
-
} else {
|
443 |
$first_record = ( - $page_offset - 1 ) * $limit;
|
444 |
-
$filter_date_clause = 'i.start < %d ';
|
445 |
-
$order_direction = 'DESC';
|
446 |
}
|
447 |
-
|
448 |
$wpml_join_particle = $localization_helper->get_wpml_table_join( 'p.ID' );
|
449 |
$wpml_where_particle = $localization_helper->get_wpml_table_where();
|
450 |
|
418 |
|
419 |
// Convert timestamp to GMT time
|
420 |
if ( 0 == $date_reference ) {
|
421 |
+
$timezone = $this->_registry->get( 'date.timezone' )->get( $settings->get( 'timezone_string' ) );
|
422 |
+
$current_time = new DateTime( 'now' );
|
423 |
+
$current_time->setTimezone( $timezone );
|
424 |
+
$time = $current_time->format( 'U' );
|
425 |
} else {
|
426 |
$time = $date_reference;
|
427 |
}
|
437 |
// Query arguments
|
438 |
$args = array( $time );
|
439 |
$args = array_merge( $args, $where_parameters['args'] );
|
440 |
+
|
441 |
+
if ( 0 == $date_reference ) {
|
442 |
+
if ( $page_offset >= 0 ) {
|
443 |
+
$filter_date_clause = 'i.end >= %d ';
|
444 |
+
$order_direction = 'ASC';
|
445 |
+
} else {
|
446 |
+
$filter_date_clause = 'i.start < %d ';
|
447 |
+
$order_direction = 'DESC';
|
448 |
+
}
|
449 |
+
} else {
|
450 |
+
if ( $page_offset < 0 ) {
|
451 |
+
$filter_date_clause = 'i.end < %d ';
|
452 |
+
$order_direction = 'DESC';
|
453 |
+
} else {
|
454 |
+
$filter_date_clause = 'i.end >= %d ';
|
455 |
+
$order_direction = 'ASC';
|
456 |
+
}
|
457 |
+
}
|
458 |
if ( $page_offset >= 0 ) {
|
459 |
$first_record = $page_offset * $limit;
|
460 |
+
} else {
|
|
|
|
|
461 |
$first_record = ( - $page_offset - 1 ) * $limit;
|
|
|
|
|
462 |
}
|
|
|
463 |
$wpml_join_particle = $localization_helper->get_wpml_table_join( 'p.ID' );
|
464 |
$wpml_where_particle = $localization_helper->get_wpml_table_where();
|
465 |
|
app/model/settings.php
CHANGED
@@ -225,17 +225,6 @@ class Ai1ec_Settings extends Ai1ec_App {
|
|
225 |
}
|
226 |
}
|
227 |
|
228 |
-
|
229 |
-
/**
|
230 |
-
* Do things needed on every plugin upgrade.
|
231 |
-
*/
|
232 |
-
public function perform_upgrade_actions() {
|
233 |
-
$option = $this->_registry->get( 'model.option' );
|
234 |
-
$option->set( 'ai1ec_force_flush_rewrite_rules', true, true );
|
235 |
-
$option->set( 'ai1ec_invalidate_css_cache', true, true );
|
236 |
-
$option->set( Ai1ec_Theme_Loader::OPTION_FORCE_CLEAN, true, true );
|
237 |
-
}
|
238 |
-
|
239 |
/**
|
240 |
* Hide an option by unsetting it's renderer
|
241 |
*
|
@@ -316,7 +305,6 @@ class Ai1ec_Settings extends Ai1ec_App {
|
|
316 |
$test_version = $values['calendar_page_id']['version'];
|
317 |
}
|
318 |
}
|
319 |
-
$upgrade = false;
|
320 |
// check for updated translations
|
321 |
$this->_register_standard_values();
|
322 |
if ( // process meta updates changes
|
@@ -328,14 +316,9 @@ class Ai1ec_Settings extends Ai1ec_App {
|
|
328 |
$this->_register_standard_values();
|
329 |
$this->_update_name_translations();
|
330 |
$this->_change_update_status( true );
|
331 |
-
$upgrade = true;
|
332 |
} else if ( $values instanceof Ai1ec_Settings ) { // process legacy
|
333 |
$this->_parse_legacy( $values );
|
334 |
$this->_change_update_status( true );
|
335 |
-
$upgrade = true;
|
336 |
-
}
|
337 |
-
if ( true === $upgrade ) {
|
338 |
-
$this->perform_upgrade_actions();
|
339 |
}
|
340 |
$this->_registry->get( 'controller.shutdown' )->register(
|
341 |
array( $this, 'shutdown' )
|
225 |
}
|
226 |
}
|
227 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
/**
|
229 |
* Hide an option by unsetting it's renderer
|
230 |
*
|
305 |
$test_version = $values['calendar_page_id']['version'];
|
306 |
}
|
307 |
}
|
|
|
308 |
// check for updated translations
|
309 |
$this->_register_standard_values();
|
310 |
if ( // process meta updates changes
|
316 |
$this->_register_standard_values();
|
317 |
$this->_update_name_translations();
|
318 |
$this->_change_update_status( true );
|
|
|
319 |
} else if ( $values instanceof Ai1ec_Settings ) { // process legacy
|
320 |
$this->_parse_legacy( $values );
|
321 |
$this->_change_update_status( true );
|
|
|
|
|
|
|
|
|
322 |
}
|
323 |
$this->_registry->get( 'controller.shutdown' )->register(
|
324 |
array( $this, 'shutdown' )
|
app/view/admin/settings.php
CHANGED
@@ -188,6 +188,7 @@ class Ai1ec_View_Admin_Settings extends Ai1ec_View_Admin_Abstract {
|
|
188 |
'You are signed in to <b>Timely Network</b> as ' . $account
|
189 |
),
|
190 |
'sign_out_text' => Ai1ec_I18n::__( 'Sign out' ),
|
|
|
191 |
'full_name_text' => Ai1ec_I18n::__( 'Full Name:' ),
|
192 |
'hide_form_text' => Ai1ec_I18n::__( 'Hide form' ),
|
193 |
'show_form_text' => Ai1ec_I18n::__( 'Show form' ),
|
@@ -199,7 +200,7 @@ class Ai1ec_View_Admin_Settings extends Ai1ec_View_Admin_Abstract {
|
|
199 |
'I confirm that I have read, understand and agree with the <a href="https://time.ly/tos">terms of service</a>.'
|
200 |
),
|
201 |
'sign_out_warning' => Ai1ec_I18n::__(
|
202 |
-
'<h4>Attention Required:</h4>If you sign
|
203 |
),
|
204 |
'sign_out_cancel' => Ai1ec_I18n::__( 'Cancel' ),
|
205 |
'sign_out_confirm' => Ai1ec_I18n::__( 'Sign Out' ),
|
188 |
'You are signed in to <b>Timely Network</b> as ' . $account
|
189 |
),
|
190 |
'sign_out_text' => Ai1ec_I18n::__( 'Sign out' ),
|
191 |
+
'can_sign_out' => apply_filters( 'ai1ec_api_can_sign_out', true ),
|
192 |
'full_name_text' => Ai1ec_I18n::__( 'Full Name:' ),
|
193 |
'hide_form_text' => Ai1ec_I18n::__( 'Hide form' ),
|
194 |
'show_form_text' => Ai1ec_I18n::__( 'Show form' ),
|
200 |
'I confirm that I have read, understand and agree with the <a href="https://time.ly/tos">terms of service</a>.'
|
201 |
),
|
202 |
'sign_out_warning' => Ai1ec_I18n::__(
|
203 |
+
'<h4>Attention Required:</h4>If you choose to sign-out of the API Timely Network this will close all the created tickets and remove user access to them. In this case, on the event page, users will see the status “Event closed”.'
|
204 |
),
|
205 |
'sign_out_cancel' => Ai1ec_I18n::__( 'Cancel' ),
|
206 |
'sign_out_confirm' => Ai1ec_I18n::__( 'Sign Out' ),
|
language/all-in-one-event-calendar.mo
CHANGED
Binary file
|
language/all-in-one-event-calendar.po
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
-
"POT-Creation-Date: 2016-06-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date: 2016-06-
|
12 |
"Last-Translator: Timely <support@time.ly>\n"
|
13 |
"Language-Team:\n"
|
14 |
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
msgid "Add-ons"
|
18 |
msgstr "Add-ons"
|
19 |
|
20 |
-
#: app/controller/front.php:
|
21 |
msgid ""
|
22 |
"Your active calendar theme could not be properly initialized. The default "
|
23 |
"theme has been activated instead. Please visit %s and try reactivating your "
|
@@ -27,12 +27,12 @@ msgstr ""
|
|
27 |
"theme has been activated instead. Please visit %s and try reactivating your "
|
28 |
"theme manually."
|
29 |
|
30 |
-
#: app/controller/front.php:
|
31 |
#: app/view/admin/theme-switching.php:55
|
32 |
msgid "Calendar Themes"
|
33 |
msgstr "Calendar Themes"
|
34 |
|
35 |
-
#: app/controller/front.php:
|
36 |
msgid ""
|
37 |
"Your database is found to be corrupt. Likely previous update has failed. "
|
38 |
"Please restore All-in-One Event Calendar tables from a backup and retry."
|
@@ -556,52 +556,52 @@ msgstr "Site URL"
|
|
556 |
msgid "Message"
|
557 |
msgstr "Message"
|
558 |
|
559 |
-
#: app/model/settings.php:
|
560 |
#: lib/html/element/setting/calendar-page-selector.php:50
|
561 |
msgid "Calendar page"
|
562 |
msgstr "Calendar page"
|
563 |
|
564 |
-
#: app/model/settings.php:
|
565 |
msgid "Week starts on"
|
566 |
msgstr "Week starts on"
|
567 |
|
568 |
-
#: app/model/settings.php:
|
569 |
msgid "Available views"
|
570 |
msgstr "Available views"
|
571 |
|
572 |
-
#: app/model/settings.php:
|
573 |
msgid "Agenda"
|
574 |
msgid_plural "Agenda"
|
575 |
msgstr[0] "Agenda"
|
576 |
msgstr[1] "Agenda"
|
577 |
|
578 |
-
#: app/model/settings.php:
|
579 |
msgid "Day"
|
580 |
msgid_plural "Day"
|
581 |
msgstr[0] "Day"
|
582 |
msgstr[1] "Day"
|
583 |
|
584 |
-
#: app/model/settings.php:
|
585 |
msgid "Month"
|
586 |
msgid_plural "Month"
|
587 |
msgstr[0] "Month"
|
588 |
msgstr[1] "Month"
|
589 |
|
590 |
-
#: app/model/settings.php:
|
591 |
msgid "Week"
|
592 |
msgid_plural "Week"
|
593 |
msgstr[0] "Week"
|
594 |
msgstr[1] "Week"
|
595 |
|
596 |
-
#: app/model/settings.php:
|
597 |
msgid "Timezone"
|
598 |
msgstr "Timezone"
|
599 |
|
600 |
-
#: app/model/settings.php:
|
601 |
msgid "Preselected calendar filters"
|
602 |
msgstr "Preselected calendar filters"
|
603 |
|
604 |
-
#: app/model/settings.php:
|
605 |
msgid ""
|
606 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
607 |
"selection."
|
@@ -609,31 +609,31 @@ msgstr ""
|
|
609 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
610 |
"selection."
|
611 |
|
612 |
-
#: app/model/settings.php:
|
613 |
msgid "Default calendar start date (optional)"
|
614 |
msgstr "Default calendar start date (optional)"
|
615 |
|
616 |
-
#: app/model/settings.php:
|
617 |
msgid "Agenda pages show at most"
|
618 |
msgstr "Agenda pages show at most"
|
619 |
|
620 |
-
#: app/model/settings.php:
|
621 |
msgid "Week/Day view starts at"
|
622 |
msgstr "Week/Day view starts at"
|
623 |
|
624 |
-
#: app/model/settings.php:
|
625 |
msgid "Week/Day view ends at"
|
626 |
msgstr "Week/Day view ends at"
|
627 |
|
628 |
-
#: app/model/settings.php:
|
629 |
msgid "<strong>Word-wrap event stubs</strong> in Month view"
|
630 |
msgstr "<strong>Word-wrap event stubs</strong> in Month view"
|
631 |
|
632 |
-
#: app/model/settings.php:
|
633 |
msgid "Only applies to events that span a single day."
|
634 |
msgstr "Only applies to events that span a single day."
|
635 |
|
636 |
-
#: app/model/settings.php:
|
637 |
msgid ""
|
638 |
"In <span class=\"ai1ec-tooltip-toggle\"\n"
|
639 |
"\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
|
@@ -647,23 +647,23 @@ msgstr ""
|
|
647 |
"\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
|
648 |
"\t\t\t\t\t\tfrom last day shown</strong>"
|
649 |
|
650 |
-
#: app/model/settings.php:
|
651 |
msgid "Keep all events <strong>expanded</strong> in Agenda view"
|
652 |
msgstr "Keep all events <strong>expanded</strong> in Agenda view"
|
653 |
|
654 |
-
#: app/model/settings.php:
|
655 |
msgid "<strong>Show year</strong> in calendar date labels"
|
656 |
msgstr "<strong>Show year</strong> in calendar date labels"
|
657 |
|
658 |
-
#: app/model/settings.php:
|
659 |
msgid "<strong>Show location in event titles</strong> in calendar views"
|
660 |
msgstr "<strong>Show location in event titles</strong> in calendar views"
|
661 |
|
662 |
-
#: app/model/settings.php:
|
663 |
msgid "<strong>Exclude</strong> events from search results"
|
664 |
msgstr "<strong>Exclude</strong> events from search results"
|
665 |
|
666 |
-
#: app/model/settings.php:
|
667 |
msgid ""
|
668 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
669 |
"calendar and single event views "
|
@@ -671,15 +671,15 @@ msgstr ""
|
|
671 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
672 |
"calendar and single event views "
|
673 |
|
674 |
-
#: app/model/settings.php:
|
675 |
msgid "Hide <strong>Get a Timely Calendar</strong> button"
|
676 |
msgstr "Hide <strong>Get a Timely Calendar</strong> button"
|
677 |
|
678 |
-
#: app/model/settings.php:
|
679 |
msgid " Hide <strong>Google Maps</strong> until clicked"
|
680 |
msgstr " Hide <strong>Google Maps</strong> until clicked"
|
681 |
|
682 |
-
#: app/model/settings.php:
|
683 |
msgid ""
|
684 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
685 |
"view"
|
@@ -687,69 +687,69 @@ msgstr ""
|
|
687 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
688 |
"view"
|
689 |
|
690 |
-
#: app/model/settings.php:
|
691 |
msgid "Only applies to first visible calendar found on the page."
|
692 |
msgstr "Only applies to first visible calendar found on the page."
|
693 |
|
694 |
-
#: app/model/settings.php:
|
695 |
msgid "Offset affixed filter bar vertically by"
|
696 |
msgstr "Offset affixed filter bar vertically by"
|
697 |
|
698 |
-
#: app/model/settings.php:
|
699 |
msgid "Wide screens only (≥ 1200px)"
|
700 |
msgstr "Wide screens only (≥ 1200px)"
|
701 |
|
702 |
-
#: app/model/settings.php:
|
703 |
msgid "Tablets only (< 980px)"
|
704 |
msgstr "Tablets only (< 980px)"
|
705 |
|
706 |
-
#: app/model/settings.php:
|
707 |
msgid "Phones only (< 768px)"
|
708 |
msgstr "Phones only (< 768px)"
|
709 |
|
710 |
-
#: app/model/settings.php:
|
711 |
msgid "Strict compatibility content filtering"
|
712 |
msgstr "Strict compatibility content filtering"
|
713 |
|
714 |
-
#: app/model/settings.php:
|
715 |
msgid " <strong>Hide featured image</strong> from event details page"
|
716 |
msgstr " <strong>Hide featured image</strong> from event details page"
|
717 |
|
718 |
-
#: app/model/settings.php:
|
719 |
msgid ""
|
720 |
"Select this option if your theme already displays each post's featured image."
|
721 |
msgstr ""
|
722 |
"Select this option if your theme already displays each post's featured image."
|
723 |
|
724 |
-
#: app/model/settings.php:
|
725 |
msgid "Input dates in this format"
|
726 |
msgstr "Input dates in this format"
|
727 |
|
728 |
-
#: app/model/settings.php:
|
729 |
msgid "Default (d/m/yyyy)"
|
730 |
msgstr "Default (d/m/yyyy)"
|
731 |
|
732 |
-
#: app/model/settings.php:
|
733 |
msgid "US (m/d/yyyy)"
|
734 |
msgstr "US (m/d/yyyy)"
|
735 |
|
736 |
-
#: app/model/settings.php:
|
737 |
msgid "ISO 8601 (yyyy-m-d)"
|
738 |
msgstr "ISO 8601 (yyyy-m-d)"
|
739 |
|
740 |
-
#: app/model/settings.php:
|
741 |
msgid "Dotted (m.d.yyyy)"
|
742 |
msgstr "Dotted (m.d.yyyy)"
|
743 |
|
744 |
-
#: app/model/settings.php:
|
745 |
msgid " Use <strong>24h time</strong> in time pickers"
|
746 |
msgstr " Use <strong>24h time</strong> in time pickers"
|
747 |
|
748 |
-
#: app/model/settings.php:
|
749 |
msgid "<strong>Disable address autocomplete</strong> function"
|
750 |
msgstr "<strong>Disable address autocomplete</strong> function"
|
751 |
|
752 |
-
#: app/model/settings.php:
|
753 |
msgid ""
|
754 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
755 |
"address autocomplete function "
|
@@ -757,7 +757,7 @@ msgstr ""
|
|
757 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
758 |
"address autocomplete function "
|
759 |
|
760 |
-
#: app/model/settings.php:
|
761 |
msgid ""
|
762 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
763 |
"privileged users"
|
@@ -765,7 +765,7 @@ msgstr ""
|
|
765 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
766 |
"privileged users"
|
767 |
|
768 |
-
#: app/model/settings.php:
|
769 |
msgid ""
|
770 |
"Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive "
|
771 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
@@ -775,11 +775,11 @@ msgstr ""
|
|
775 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
776 |
"strong>."
|
777 |
|
778 |
-
#: app/model/settings.php:
|
779 |
msgid "Move calendar into this DOM element"
|
780 |
msgstr "Move calendar into this DOM element"
|
781 |
|
782 |
-
#: app/model/settings.php:
|
783 |
msgid ""
|
784 |
"Optional. Use this JavaScript-based shortcut to place the\n"
|
785 |
"\t\t\t\t\t\tcalendar a DOM element other than the usual page content "
|
@@ -803,7 +803,7 @@ msgstr ""
|
|
803 |
"\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
|
804 |
"\t\t\t\t\t\tby the calendar."
|
805 |
|
806 |
-
#: app/model/settings.php:
|
807 |
msgid ""
|
808 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
809 |
"multiple calendar output"
|
@@ -811,7 +811,7 @@ msgstr ""
|
|
811 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
812 |
"multiple calendar output"
|
813 |
|
814 |
-
#: app/model/settings.php:
|
815 |
msgid ""
|
816 |
"Try enabling this option if your calendar does not appear on the calendar "
|
817 |
"page. It is needed for compatibility with a small number of themes that call "
|
@@ -821,11 +821,11 @@ msgstr ""
|
|
821 |
"page. It is needed for compatibility with a small number of themes that call "
|
822 |
"<tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
|
823 |
|
824 |
-
#: app/model/settings.php:
|
825 |
msgid "Disable <strong>gzip</strong> compression."
|
826 |
msgstr "Disable <strong>gzip</strong> compression."
|
827 |
|
828 |
-
#: app/model/settings.php:
|
829 |
msgid ""
|
830 |
"Use this option if calendar is unresponsive. <a target=\"_blank\" href="
|
831 |
"\"http://time.ly/document/user-guide/troubleshooting/disable-gzip-"
|
@@ -837,11 +837,11 @@ msgstr ""
|
|
837 |
"compression/\">Read more</a> about the issue. (From version 2.1 onwards, "
|
838 |
"gzip is disabled by default for maximum compatibility.)"
|
839 |
|
840 |
-
#: app/model/settings.php:
|
841 |
msgid "Use frontend rendering."
|
842 |
msgstr "Use frontend rendering."
|
843 |
|
844 |
-
#: app/model/settings.php:
|
845 |
msgid ""
|
846 |
"Renders calendar views on the client rather than the server; can improve "
|
847 |
"performance."
|
@@ -849,15 +849,15 @@ msgstr ""
|
|
849 |
"Renders calendar views on the client rather than the server; can improve "
|
850 |
"performance."
|
851 |
|
852 |
-
#: app/model/settings.php:
|
853 |
msgid "Use advanced JS cache."
|
854 |
msgstr "Use advanced JS cache."
|
855 |
|
856 |
-
#: app/model/settings.php:
|
857 |
msgid "Cache dynamically generated JS files. Improves performance."
|
858 |
msgstr "Cache dynamically generated JS files. Improves performance."
|
859 |
|
860 |
-
#: app/model/settings.php:
|
861 |
msgid ""
|
862 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
863 |
"cache is unavailable."
|
@@ -865,7 +865,7 @@ msgstr ""
|
|
865 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
866 |
"cache is unavailable."
|
867 |
|
868 |
-
#: app/model/settings.php:
|
869 |
msgid ""
|
870 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
871 |
"CSS as a link rather than have it output inline."
|
@@ -873,11 +873,11 @@ msgstr ""
|
|
873 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
874 |
"CSS as a link rather than have it output inline."
|
875 |
|
876 |
-
#: app/model/settings.php:
|
877 |
msgid "Current <strong>robots.txt</strong> on this site"
|
878 |
msgstr "Current <strong>robots.txt</strong> on this site"
|
879 |
|
880 |
-
#: app/model/settings.php:
|
881 |
msgid ""
|
882 |
"The Robot Exclusion Standard, also known as the Robots Exclusion Protocol "
|
883 |
"or\n"
|
@@ -901,7 +901,7 @@ msgstr ""
|
|
901 |
"\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in "
|
902 |
"your root WordPress directory."
|
903 |
|
904 |
-
#: app/model/settings.php:
|
905 |
msgid ""
|
906 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
907 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
@@ -909,15 +909,15 @@ msgstr ""
|
|
909 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
910 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
911 |
|
912 |
-
#: app/model/settings.php:
|
913 |
msgid "Templates cache improves site performance"
|
914 |
msgstr "Templates cache improves site performance"
|
915 |
|
916 |
-
#: app/model/settings.php:
|
917 |
msgid "Display events in <strong>calendar time zone</strong>"
|
918 |
msgstr "Display events in <strong>calendar time zone</strong>"
|
919 |
|
920 |
-
#: app/model/settings.php:
|
921 |
msgid ""
|
922 |
"If this box is checked events will appear in the calendar time zone with "
|
923 |
"time zone information displayed on the event details page."
|
@@ -1247,35 +1247,35 @@ msgstr "Sign in"
|
|
1247 |
msgid "Sign out"
|
1248 |
msgstr "Sign out"
|
1249 |
|
1250 |
-
#: app/view/admin/settings.php:
|
1251 |
msgid "Full Name:"
|
1252 |
msgstr "Full Name:"
|
1253 |
|
1254 |
-
#: app/view/admin/settings.php:
|
1255 |
msgid "Hide form"
|
1256 |
msgstr "Hide form"
|
1257 |
|
1258 |
-
#: app/view/admin/settings.php:
|
1259 |
msgid "Show form"
|
1260 |
msgstr "Show form"
|
1261 |
|
1262 |
-
#: app/view/admin/settings.php:
|
1263 |
msgid "Email:"
|
1264 |
msgstr "Email:"
|
1265 |
|
1266 |
-
#: app/view/admin/settings.php:
|
1267 |
msgid "Password:"
|
1268 |
msgstr "Password:"
|
1269 |
|
1270 |
-
#: app/view/admin/settings.php:
|
1271 |
msgid "Confirm Password:"
|
1272 |
msgstr "Confirm Password:"
|
1273 |
|
1274 |
-
#: app/view/admin/settings.php:
|
1275 |
msgid "Phone Number:"
|
1276 |
msgstr "Phone Number:"
|
1277 |
|
1278 |
-
#: app/view/admin/settings.php:
|
1279 |
msgid ""
|
1280 |
"I confirm that I have read, understand and agree with the <a href=\"https://"
|
1281 |
"time.ly/tos\">terms of service</a>."
|
@@ -1283,42 +1283,40 @@ msgstr ""
|
|
1283 |
"I confirm that I have read, understand and agree with the <a href=\"https://"
|
1284 |
"time.ly/tos\">terms of service</a>."
|
1285 |
|
1286 |
-
#: app/view/admin/settings.php:
|
1287 |
msgid ""
|
1288 |
-
"<h4>Attention Required:</h4>If you sign
|
1289 |
-
"Network will
|
1290 |
-
"
|
1291 |
-
"
|
1292 |
-
"Conditions</a> for more details."
|
1293 |
msgstr ""
|
1294 |
-
"<h4>Attention Required:</h4>If you sign
|
1295 |
-
"Network will
|
1296 |
-
"
|
1297 |
-
"
|
1298 |
-
"Conditions</a> for more details."
|
1299 |
|
1300 |
-
#: app/view/admin/settings.php:
|
1301 |
#: public/admin/plugins/ics/import_feed.php:103
|
1302 |
msgid "Cancel"
|
1303 |
msgstr "Cancel"
|
1304 |
|
1305 |
-
#: app/view/admin/settings.php:
|
1306 |
msgid "Sign Out"
|
1307 |
msgstr "Sign Out"
|
1308 |
|
1309 |
-
#: app/view/admin/settings.php:
|
1310 |
msgid "Sign Up"
|
1311 |
msgstr "Sign Up"
|
1312 |
|
1313 |
-
#: app/view/admin/settings.php:
|
1314 |
msgid "Sign In"
|
1315 |
msgstr "Sign In"
|
1316 |
|
1317 |
-
#: app/view/admin/settings.php:
|
1318 |
msgid "Save Settings"
|
1319 |
msgstr "Save Settings"
|
1320 |
|
1321 |
-
#: app/view/admin/settings.php:
|
1322 |
msgid ""
|
1323 |
"If the form below is not working please follow <a href=\"%s\">this link</a>."
|
1324 |
msgstr ""
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
+
"POT-Creation-Date: 2016-06-20 20:56:48+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2016-06-20 20:56+0000\n"
|
12 |
"Last-Translator: Timely <support@time.ly>\n"
|
13 |
"Language-Team:\n"
|
14 |
|
17 |
msgid "Add-ons"
|
18 |
msgstr "Add-ons"
|
19 |
|
20 |
+
#: app/controller/front.php:355
|
21 |
msgid ""
|
22 |
"Your active calendar theme could not be properly initialized. The default "
|
23 |
"theme has been activated instead. Please visit %s and try reactivating your "
|
27 |
"theme has been activated instead. Please visit %s and try reactivating your "
|
28 |
"theme manually."
|
29 |
|
30 |
+
#: app/controller/front.php:359 app/view/admin/theme-switching.php:54
|
31 |
#: app/view/admin/theme-switching.php:55
|
32 |
msgid "Calendar Themes"
|
33 |
msgstr "Calendar Themes"
|
34 |
|
35 |
+
#: app/controller/front.php:1063
|
36 |
msgid ""
|
37 |
"Your database is found to be corrupt. Likely previous update has failed. "
|
38 |
"Please restore All-in-One Event Calendar tables from a backup and retry."
|
556 |
msgid "Message"
|
557 |
msgstr "Message"
|
558 |
|
559 |
+
#: app/model/settings.php:392
|
560 |
#: lib/html/element/setting/calendar-page-selector.php:50
|
561 |
msgid "Calendar page"
|
562 |
msgstr "Calendar page"
|
563 |
|
564 |
+
#: app/model/settings.php:402
|
565 |
msgid "Week starts on"
|
566 |
msgstr "Week starts on"
|
567 |
|
568 |
+
#: app/model/settings.php:415
|
569 |
msgid "Available views"
|
570 |
msgstr "Available views"
|
571 |
|
572 |
+
#: app/model/settings.php:423
|
573 |
msgid "Agenda"
|
574 |
msgid_plural "Agenda"
|
575 |
msgstr[0] "Agenda"
|
576 |
msgstr[1] "Agenda"
|
577 |
|
578 |
+
#: app/model/settings.php:434
|
579 |
msgid "Day"
|
580 |
msgid_plural "Day"
|
581 |
msgstr[0] "Day"
|
582 |
msgstr[1] "Day"
|
583 |
|
584 |
+
#: app/model/settings.php:445
|
585 |
msgid "Month"
|
586 |
msgid_plural "Month"
|
587 |
msgstr[0] "Month"
|
588 |
msgstr[1] "Month"
|
589 |
|
590 |
+
#: app/model/settings.php:456
|
591 |
msgid "Week"
|
592 |
msgid_plural "Week"
|
593 |
msgstr[0] "Week"
|
594 |
msgstr[1] "Week"
|
595 |
|
596 |
+
#: app/model/settings.php:470
|
597 |
msgid "Timezone"
|
598 |
msgstr "Timezone"
|
599 |
|
600 |
+
#: app/model/settings.php:483
|
601 |
msgid "Preselected calendar filters"
|
602 |
msgstr "Preselected calendar filters"
|
603 |
|
604 |
+
#: app/model/settings.php:484 app/view/calendar/widget.php:128
|
605 |
msgid ""
|
606 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
607 |
"selection."
|
609 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
610 |
"selection."
|
611 |
|
612 |
+
#: app/model/settings.php:499
|
613 |
msgid "Default calendar start date (optional)"
|
614 |
msgstr "Default calendar start date (optional)"
|
615 |
|
616 |
+
#: app/model/settings.php:510
|
617 |
msgid "Agenda pages show at most"
|
618 |
msgstr "Agenda pages show at most"
|
619 |
|
620 |
+
#: app/model/settings.php:523
|
621 |
msgid "Week/Day view starts at"
|
622 |
msgstr "Week/Day view starts at"
|
623 |
|
624 |
+
#: app/model/settings.php:536
|
625 |
msgid "Week/Day view ends at"
|
626 |
msgstr "Week/Day view ends at"
|
627 |
|
628 |
+
#: app/model/settings.php:549
|
629 |
msgid "<strong>Word-wrap event stubs</strong> in Month view"
|
630 |
msgstr "<strong>Word-wrap event stubs</strong> in Month view"
|
631 |
|
632 |
+
#: app/model/settings.php:552
|
633 |
msgid "Only applies to events that span a single day."
|
634 |
msgstr "Only applies to events that span a single day."
|
635 |
|
636 |
+
#: app/model/settings.php:564
|
637 |
msgid ""
|
638 |
"In <span class=\"ai1ec-tooltip-toggle\"\n"
|
639 |
"\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
|
647 |
"\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
|
648 |
"\t\t\t\t\t\tfrom last day shown</strong>"
|
649 |
|
650 |
+
#: app/model/settings.php:580
|
651 |
msgid "Keep all events <strong>expanded</strong> in Agenda view"
|
652 |
msgstr "Keep all events <strong>expanded</strong> in Agenda view"
|
653 |
|
654 |
+
#: app/model/settings.php:592
|
655 |
msgid "<strong>Show year</strong> in calendar date labels"
|
656 |
msgstr "<strong>Show year</strong> in calendar date labels"
|
657 |
|
658 |
+
#: app/model/settings.php:604
|
659 |
msgid "<strong>Show location in event titles</strong> in calendar views"
|
660 |
msgstr "<strong>Show location in event titles</strong> in calendar views"
|
661 |
|
662 |
+
#: app/model/settings.php:616
|
663 |
msgid "<strong>Exclude</strong> events from search results"
|
664 |
msgstr "<strong>Exclude</strong> events from search results"
|
665 |
|
666 |
+
#: app/model/settings.php:628
|
667 |
msgid ""
|
668 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
669 |
"calendar and single event views "
|
671 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
672 |
"calendar and single event views "
|
673 |
|
674 |
+
#: app/model/settings.php:640
|
675 |
msgid "Hide <strong>Get a Timely Calendar</strong> button"
|
676 |
msgstr "Hide <strong>Get a Timely Calendar</strong> button"
|
677 |
|
678 |
+
#: app/model/settings.php:652
|
679 |
msgid " Hide <strong>Google Maps</strong> until clicked"
|
680 |
msgstr " Hide <strong>Google Maps</strong> until clicked"
|
681 |
|
682 |
+
#: app/model/settings.php:664
|
683 |
msgid ""
|
684 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
685 |
"view"
|
687 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
688 |
"view"
|
689 |
|
690 |
+
#: app/model/settings.php:667
|
691 |
msgid "Only applies to first visible calendar found on the page."
|
692 |
msgstr "Only applies to first visible calendar found on the page."
|
693 |
|
694 |
+
#: app/model/settings.php:679
|
695 |
msgid "Offset affixed filter bar vertically by"
|
696 |
msgstr "Offset affixed filter bar vertically by"
|
697 |
|
698 |
+
#: app/model/settings.php:694
|
699 |
msgid "Wide screens only (≥ 1200px)"
|
700 |
msgstr "Wide screens only (≥ 1200px)"
|
701 |
|
702 |
+
#: app/model/settings.php:709
|
703 |
msgid "Tablets only (< 980px)"
|
704 |
msgstr "Tablets only (< 980px)"
|
705 |
|
706 |
+
#: app/model/settings.php:724
|
707 |
msgid "Phones only (< 768px)"
|
708 |
msgstr "Phones only (< 768px)"
|
709 |
|
710 |
+
#: app/model/settings.php:737
|
711 |
msgid "Strict compatibility content filtering"
|
712 |
msgstr "Strict compatibility content filtering"
|
713 |
|
714 |
+
#: app/model/settings.php:749
|
715 |
msgid " <strong>Hide featured image</strong> from event details page"
|
716 |
msgstr " <strong>Hide featured image</strong> from event details page"
|
717 |
|
718 |
+
#: app/model/settings.php:752
|
719 |
msgid ""
|
720 |
"Select this option if your theme already displays each post's featured image."
|
721 |
msgstr ""
|
722 |
"Select this option if your theme already displays each post's featured image."
|
723 |
|
724 |
+
#: app/model/settings.php:763
|
725 |
msgid "Input dates in this format"
|
726 |
msgstr "Input dates in this format"
|
727 |
|
728 |
+
#: app/model/settings.php:768
|
729 |
msgid "Default (d/m/yyyy)"
|
730 |
msgstr "Default (d/m/yyyy)"
|
731 |
|
732 |
+
#: app/model/settings.php:772
|
733 |
msgid "US (m/d/yyyy)"
|
734 |
msgstr "US (m/d/yyyy)"
|
735 |
|
736 |
+
#: app/model/settings.php:776
|
737 |
msgid "ISO 8601 (yyyy-m-d)"
|
738 |
msgstr "ISO 8601 (yyyy-m-d)"
|
739 |
|
740 |
+
#: app/model/settings.php:780
|
741 |
msgid "Dotted (m.d.yyyy)"
|
742 |
msgstr "Dotted (m.d.yyyy)"
|
743 |
|
744 |
+
#: app/model/settings.php:792
|
745 |
msgid " Use <strong>24h time</strong> in time pickers"
|
746 |
msgstr " Use <strong>24h time</strong> in time pickers"
|
747 |
|
748 |
+
#: app/model/settings.php:803
|
749 |
msgid "<strong>Disable address autocomplete</strong> function"
|
750 |
msgstr "<strong>Disable address autocomplete</strong> function"
|
751 |
|
752 |
+
#: app/model/settings.php:814
|
753 |
msgid ""
|
754 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
755 |
"address autocomplete function "
|
757 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
758 |
"address autocomplete function "
|
759 |
|
760 |
+
#: app/model/settings.php:830
|
761 |
msgid ""
|
762 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
763 |
"privileged users"
|
765 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
766 |
"privileged users"
|
767 |
|
768 |
+
#: app/model/settings.php:833
|
769 |
msgid ""
|
770 |
"Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive "
|
771 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
775 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
776 |
"strong>."
|
777 |
|
778 |
+
#: app/model/settings.php:854
|
779 |
msgid "Move calendar into this DOM element"
|
780 |
msgstr "Move calendar into this DOM element"
|
781 |
|
782 |
+
#: app/model/settings.php:856
|
783 |
msgid ""
|
784 |
"Optional. Use this JavaScript-based shortcut to place the\n"
|
785 |
"\t\t\t\t\t\tcalendar a DOM element other than the usual page content "
|
803 |
"\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
|
804 |
"\t\t\t\t\t\tby the calendar."
|
805 |
|
806 |
+
#: app/model/settings.php:875
|
807 |
msgid ""
|
808 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
809 |
"multiple calendar output"
|
811 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
812 |
"multiple calendar output"
|
813 |
|
814 |
+
#: app/model/settings.php:878
|
815 |
msgid ""
|
816 |
"Try enabling this option if your calendar does not appear on the calendar "
|
817 |
"page. It is needed for compatibility with a small number of themes that call "
|
821 |
"page. It is needed for compatibility with a small number of themes that call "
|
822 |
"<tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
|
823 |
|
824 |
+
#: app/model/settings.php:890
|
825 |
msgid "Disable <strong>gzip</strong> compression."
|
826 |
msgstr "Disable <strong>gzip</strong> compression."
|
827 |
|
828 |
+
#: app/model/settings.php:893
|
829 |
msgid ""
|
830 |
"Use this option if calendar is unresponsive. <a target=\"_blank\" href="
|
831 |
"\"http://time.ly/document/user-guide/troubleshooting/disable-gzip-"
|
837 |
"compression/\">Read more</a> about the issue. (From version 2.1 onwards, "
|
838 |
"gzip is disabled by default for maximum compatibility.)"
|
839 |
|
840 |
+
#: app/model/settings.php:905
|
841 |
msgid "Use frontend rendering."
|
842 |
msgstr "Use frontend rendering."
|
843 |
|
844 |
+
#: app/model/settings.php:908
|
845 |
msgid ""
|
846 |
"Renders calendar views on the client rather than the server; can improve "
|
847 |
"performance."
|
849 |
"Renders calendar views on the client rather than the server; can improve "
|
850 |
"performance."
|
851 |
|
852 |
+
#: app/model/settings.php:920
|
853 |
msgid "Use advanced JS cache."
|
854 |
msgstr "Use advanced JS cache."
|
855 |
|
856 |
+
#: app/model/settings.php:923
|
857 |
msgid "Cache dynamically generated JS files. Improves performance."
|
858 |
msgstr "Cache dynamically generated JS files. Improves performance."
|
859 |
|
860 |
+
#: app/model/settings.php:935
|
861 |
msgid ""
|
862 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
863 |
"cache is unavailable."
|
865 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
866 |
"cache is unavailable."
|
867 |
|
868 |
+
#: app/model/settings.php:938
|
869 |
msgid ""
|
870 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
871 |
"CSS as a link rather than have it output inline."
|
873 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
874 |
"CSS as a link rather than have it output inline."
|
875 |
|
876 |
+
#: app/model/settings.php:950
|
877 |
msgid "Current <strong>robots.txt</strong> on this site"
|
878 |
msgstr "Current <strong>robots.txt</strong> on this site"
|
879 |
|
880 |
+
#: app/model/settings.php:954
|
881 |
msgid ""
|
882 |
"The Robot Exclusion Standard, also known as the Robots Exclusion Protocol "
|
883 |
"or\n"
|
901 |
"\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in "
|
902 |
"your root WordPress directory."
|
903 |
|
904 |
+
#: app/model/settings.php:971
|
905 |
msgid ""
|
906 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
907 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
909 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
910 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
911 |
|
912 |
+
#: app/model/settings.php:994
|
913 |
msgid "Templates cache improves site performance"
|
914 |
msgstr "Templates cache improves site performance"
|
915 |
|
916 |
+
#: app/model/settings.php:1007
|
917 |
msgid "Display events in <strong>calendar time zone</strong>"
|
918 |
msgstr "Display events in <strong>calendar time zone</strong>"
|
919 |
|
920 |
+
#: app/model/settings.php:1010
|
921 |
msgid ""
|
922 |
"If this box is checked events will appear in the calendar time zone with "
|
923 |
"time zone information displayed on the event details page."
|
1247 |
msgid "Sign out"
|
1248 |
msgstr "Sign out"
|
1249 |
|
1250 |
+
#: app/view/admin/settings.php:192
|
1251 |
msgid "Full Name:"
|
1252 |
msgstr "Full Name:"
|
1253 |
|
1254 |
+
#: app/view/admin/settings.php:193
|
1255 |
msgid "Hide form"
|
1256 |
msgstr "Hide form"
|
1257 |
|
1258 |
+
#: app/view/admin/settings.php:194
|
1259 |
msgid "Show form"
|
1260 |
msgstr "Show form"
|
1261 |
|
1262 |
+
#: app/view/admin/settings.php:195
|
1263 |
msgid "Email:"
|
1264 |
msgstr "Email:"
|
1265 |
|
1266 |
+
#: app/view/admin/settings.php:196
|
1267 |
msgid "Password:"
|
1268 |
msgstr "Password:"
|
1269 |
|
1270 |
+
#: app/view/admin/settings.php:197
|
1271 |
msgid "Confirm Password:"
|
1272 |
msgstr "Confirm Password:"
|
1273 |
|
1274 |
+
#: app/view/admin/settings.php:198
|
1275 |
msgid "Phone Number:"
|
1276 |
msgstr "Phone Number:"
|
1277 |
|
1278 |
+
#: app/view/admin/settings.php:199
|
1279 |
msgid ""
|
1280 |
"I confirm that I have read, understand and agree with the <a href=\"https://"
|
1281 |
"time.ly/tos\">terms of service</a>."
|
1283 |
"I confirm that I have read, understand and agree with the <a href=\"https://"
|
1284 |
"time.ly/tos\">terms of service</a>."
|
1285 |
|
1286 |
+
#: app/view/admin/settings.php:202
|
1287 |
msgid ""
|
1288 |
+
"<h4>Attention Required:</h4>If you choose to sign-out of the API Timely "
|
1289 |
+
"Network this will close all the created tickets and remove user access to "
|
1290 |
+
"them. In this case, on the event page, users will see the status “Event "
|
1291 |
+
"closed”."
|
|
|
1292 |
msgstr ""
|
1293 |
+
"<h4>Attention Required:</h4>If you choose to sign-out of the API Timely "
|
1294 |
+
"Network this will close all the created tickets and remove user access to "
|
1295 |
+
"them. In this case, on the event page, users will see the status “Event "
|
1296 |
+
"closed”."
|
|
|
1297 |
|
1298 |
+
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1299 |
#: public/admin/plugins/ics/import_feed.php:103
|
1300 |
msgid "Cancel"
|
1301 |
msgstr "Cancel"
|
1302 |
|
1303 |
+
#: app/view/admin/settings.php:206 app/view/admin/tickets.php:118
|
1304 |
msgid "Sign Out"
|
1305 |
msgstr "Sign Out"
|
1306 |
|
1307 |
+
#: app/view/admin/settings.php:207
|
1308 |
msgid "Sign Up"
|
1309 |
msgstr "Sign Up"
|
1310 |
|
1311 |
+
#: app/view/admin/settings.php:208
|
1312 |
msgid "Sign In"
|
1313 |
msgstr "Sign In"
|
1314 |
|
1315 |
+
#: app/view/admin/settings.php:219
|
1316 |
msgid "Save Settings"
|
1317 |
msgstr "Save Settings"
|
1318 |
|
1319 |
+
#: app/view/admin/settings.php:226
|
1320 |
msgid ""
|
1321 |
"If the form below is not working please follow <a href=\"%s\">this link</a>."
|
1322 |
msgstr ""
|
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 by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
-
"POT-Creation-Date: 2016-06-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -17,19 +17,19 @@ msgstr ""
|
|
17 |
msgid "Add-ons"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: app/controller/front.php:
|
21 |
msgid ""
|
22 |
"Your active calendar theme could not be properly initialized. The default "
|
23 |
"theme has been activated instead. Please visit %s and try reactivating your "
|
24 |
"theme manually."
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: app/controller/front.php:
|
28 |
#: app/view/admin/theme-switching.php:55
|
29 |
msgid "Calendar Themes"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: app/controller/front.php:
|
33 |
msgid ""
|
34 |
"Your database is found to be corrupt. Likely previous update has failed. "
|
35 |
"Please restore All-in-One Event Calendar tables from a backup and retry."
|
@@ -509,82 +509,82 @@ msgstr ""
|
|
509 |
msgid "Message"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: app/model/settings.php:
|
513 |
#: lib/html/element/setting/calendar-page-selector.php:50
|
514 |
msgid "Calendar page"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: app/model/settings.php:
|
518 |
msgid "Week starts on"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: app/model/settings.php:
|
522 |
msgid "Available views"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: app/model/settings.php:
|
526 |
msgid "Agenda"
|
527 |
msgid_plural "Agenda"
|
528 |
msgstr[0] ""
|
529 |
msgstr[1] ""
|
530 |
|
531 |
-
#: app/model/settings.php:
|
532 |
msgid "Day"
|
533 |
msgid_plural "Day"
|
534 |
msgstr[0] ""
|
535 |
msgstr[1] ""
|
536 |
|
537 |
-
#: app/model/settings.php:
|
538 |
msgid "Month"
|
539 |
msgid_plural "Month"
|
540 |
msgstr[0] ""
|
541 |
msgstr[1] ""
|
542 |
|
543 |
-
#: app/model/settings.php:
|
544 |
msgid "Week"
|
545 |
msgid_plural "Week"
|
546 |
msgstr[0] ""
|
547 |
msgstr[1] ""
|
548 |
|
549 |
-
#: app/model/settings.php:
|
550 |
msgid "Timezone"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: app/model/settings.php:
|
554 |
msgid "Preselected calendar filters"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: app/model/settings.php:
|
558 |
msgid ""
|
559 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
560 |
"selection."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: app/model/settings.php:
|
564 |
msgid "Default calendar start date (optional)"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: app/model/settings.php:
|
568 |
msgid "Agenda pages show at most"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: app/model/settings.php:
|
572 |
msgid "Week/Day view starts at"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: app/model/settings.php:
|
576 |
msgid "Week/Day view ends at"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: app/model/settings.php:
|
580 |
msgid "<strong>Word-wrap event stubs</strong> in Month view"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: app/model/settings.php:
|
584 |
msgid "Only applies to events that span a single day."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: app/model/settings.php:
|
588 |
msgid ""
|
589 |
"In <span class=\"ai1ec-tooltip-toggle\"\n"
|
590 |
"\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
|
@@ -593,127 +593,127 @@ msgid ""
|
|
593 |
"\t\t\t\t\t\tfrom last day shown</strong>"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: app/model/settings.php:
|
597 |
msgid "Keep all events <strong>expanded</strong> in Agenda view"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: app/model/settings.php:
|
601 |
msgid "<strong>Show year</strong> in calendar date labels"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: app/model/settings.php:
|
605 |
msgid "<strong>Show location in event titles</strong> in calendar views"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: app/model/settings.php:
|
609 |
msgid "<strong>Exclude</strong> events from search results"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: app/model/settings.php:
|
613 |
msgid ""
|
614 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
615 |
"calendar and single event views "
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: app/model/settings.php:
|
619 |
msgid "Hide <strong>Get a Timely Calendar</strong> button"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: app/model/settings.php:
|
623 |
msgid " Hide <strong>Google Maps</strong> until clicked"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: app/model/settings.php:
|
627 |
msgid ""
|
628 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
629 |
"view"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: app/model/settings.php:
|
633 |
msgid "Only applies to first visible calendar found on the page."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: app/model/settings.php:
|
637 |
msgid "Offset affixed filter bar vertically by"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: app/model/settings.php:
|
641 |
msgid "Wide screens only (≥ 1200px)"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: app/model/settings.php:
|
645 |
msgid "Tablets only (< 980px)"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: app/model/settings.php:
|
649 |
msgid "Phones only (< 768px)"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: app/model/settings.php:
|
653 |
msgid "Strict compatibility content filtering"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: app/model/settings.php:
|
657 |
msgid " <strong>Hide featured image</strong> from event details page"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: app/model/settings.php:
|
661 |
msgid ""
|
662 |
"Select this option if your theme already displays each post's featured image."
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: app/model/settings.php:
|
666 |
msgid "Input dates in this format"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: app/model/settings.php:
|
670 |
msgid "Default (d/m/yyyy)"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: app/model/settings.php:
|
674 |
msgid "US (m/d/yyyy)"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: app/model/settings.php:
|
678 |
msgid "ISO 8601 (yyyy-m-d)"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: app/model/settings.php:
|
682 |
msgid "Dotted (m.d.yyyy)"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: app/model/settings.php:
|
686 |
msgid " Use <strong>24h time</strong> in time pickers"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: app/model/settings.php:
|
690 |
msgid "<strong>Disable address autocomplete</strong> function"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: app/model/settings.php:
|
694 |
msgid ""
|
695 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
696 |
"address autocomplete function "
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: app/model/settings.php:
|
700 |
msgid ""
|
701 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
702 |
"privileged users"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: app/model/settings.php:
|
706 |
msgid ""
|
707 |
"Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive "
|
708 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
709 |
"strong>."
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: app/model/settings.php:
|
713 |
msgid "Move calendar into this DOM element"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: app/model/settings.php:
|
717 |
msgid ""
|
718 |
"Optional. Use this JavaScript-based shortcut to place the\n"
|
719 |
"\t\t\t\t\t\tcalendar a DOM element other than the usual page content "
|
@@ -727,24 +727,24 @@ msgid ""
|
|
727 |
"\t\t\t\t\t\tby the calendar."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: app/model/settings.php:
|
731 |
msgid ""
|
732 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
733 |
"multiple calendar output"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: app/model/settings.php:
|
737 |
msgid ""
|
738 |
"Try enabling this option if your calendar does not appear on the calendar "
|
739 |
"page. It is needed for compatibility with a small number of themes that call "
|
740 |
"<tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: app/model/settings.php:
|
744 |
msgid "Disable <strong>gzip</strong> compression."
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: app/model/settings.php:
|
748 |
msgid ""
|
749 |
"Use this option if calendar is unresponsive. <a target=\"_blank\" href="
|
750 |
"\"http://time.ly/document/user-guide/troubleshooting/disable-gzip-"
|
@@ -752,41 +752,41 @@ msgid ""
|
|
752 |
"gzip is disabled by default for maximum compatibility.)"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: app/model/settings.php:
|
756 |
msgid "Use frontend rendering."
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: app/model/settings.php:
|
760 |
msgid ""
|
761 |
"Renders calendar views on the client rather than the server; can improve "
|
762 |
"performance."
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: app/model/settings.php:
|
766 |
msgid "Use advanced JS cache."
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: app/model/settings.php:
|
770 |
msgid "Cache dynamically generated JS files. Improves performance."
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: app/model/settings.php:
|
774 |
msgid ""
|
775 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
776 |
"cache is unavailable."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: app/model/settings.php:
|
780 |
msgid ""
|
781 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
782 |
"CSS as a link rather than have it output inline."
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: app/model/settings.php:
|
786 |
msgid "Current <strong>robots.txt</strong> on this site"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: app/model/settings.php:
|
790 |
msgid ""
|
791 |
"The Robot Exclusion Standard, also known as the Robots Exclusion Protocol "
|
792 |
"or\n"
|
@@ -800,21 +800,21 @@ msgid ""
|
|
800 |
"your root WordPress directory."
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: app/model/settings.php:
|
804 |
msgid ""
|
805 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
806 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: app/model/settings.php:
|
810 |
msgid "Templates cache improves site performance"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: app/model/settings.php:
|
814 |
msgid "Display events in <strong>calendar time zone</strong>"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: app/model/settings.php:
|
818 |
msgid ""
|
819 |
"If this box is checked events will appear in the calendar time zone with "
|
820 |
"time zone information displayed on the event details page."
|
@@ -1133,71 +1133,70 @@ msgstr ""
|
|
1133 |
msgid "Sign out"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: app/view/admin/settings.php:
|
1137 |
msgid "Full Name:"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: app/view/admin/settings.php:
|
1141 |
msgid "Hide form"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: app/view/admin/settings.php:
|
1145 |
msgid "Show form"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: app/view/admin/settings.php:
|
1149 |
msgid "Email:"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: app/view/admin/settings.php:
|
1153 |
msgid "Password:"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: app/view/admin/settings.php:
|
1157 |
msgid "Confirm Password:"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: app/view/admin/settings.php:
|
1161 |
msgid "Phone Number:"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: app/view/admin/settings.php:
|
1165 |
msgid ""
|
1166 |
"I confirm that I have read, understand and agree with the <a href=\"https://"
|
1167 |
"time.ly/tos\">terms of service</a>."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: app/view/admin/settings.php:
|
1171 |
msgid ""
|
1172 |
-
"<h4>Attention Required:</h4>If you sign
|
1173 |
-
"Network will
|
1174 |
-
"
|
1175 |
-
"
|
1176 |
-
"Conditions</a> for more details."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: app/view/admin/settings.php:
|
1180 |
#: public/admin/plugins/ics/import_feed.php:103
|
1181 |
msgid "Cancel"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: app/view/admin/settings.php:
|
1185 |
msgid "Sign Out"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: app/view/admin/settings.php:
|
1189 |
msgid "Sign Up"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: app/view/admin/settings.php:
|
1193 |
msgid "Sign In"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: app/view/admin/settings.php:
|
1197 |
msgid "Save Settings"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: app/view/admin/settings.php:
|
1201 |
msgid ""
|
1202 |
"If the form below is not working please follow <a href=\"%s\">this link</a>."
|
1203 |
msgstr ""
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.3\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
+
"POT-Creation-Date: 2016-06-20 20:56:48+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
msgid "Add-ons"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: app/controller/front.php:355
|
21 |
msgid ""
|
22 |
"Your active calendar theme could not be properly initialized. The default "
|
23 |
"theme has been activated instead. Please visit %s and try reactivating your "
|
24 |
"theme manually."
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: app/controller/front.php:359 app/view/admin/theme-switching.php:54
|
28 |
#: app/view/admin/theme-switching.php:55
|
29 |
msgid "Calendar Themes"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: app/controller/front.php:1063
|
33 |
msgid ""
|
34 |
"Your database is found to be corrupt. Likely previous update has failed. "
|
35 |
"Please restore All-in-One Event Calendar tables from a backup and retry."
|
509 |
msgid "Message"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: app/model/settings.php:392
|
513 |
#: lib/html/element/setting/calendar-page-selector.php:50
|
514 |
msgid "Calendar page"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: app/model/settings.php:402
|
518 |
msgid "Week starts on"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: app/model/settings.php:415
|
522 |
msgid "Available views"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: app/model/settings.php:423
|
526 |
msgid "Agenda"
|
527 |
msgid_plural "Agenda"
|
528 |
msgstr[0] ""
|
529 |
msgstr[1] ""
|
530 |
|
531 |
+
#: app/model/settings.php:434
|
532 |
msgid "Day"
|
533 |
msgid_plural "Day"
|
534 |
msgstr[0] ""
|
535 |
msgstr[1] ""
|
536 |
|
537 |
+
#: app/model/settings.php:445
|
538 |
msgid "Month"
|
539 |
msgid_plural "Month"
|
540 |
msgstr[0] ""
|
541 |
msgstr[1] ""
|
542 |
|
543 |
+
#: app/model/settings.php:456
|
544 |
msgid "Week"
|
545 |
msgid_plural "Week"
|
546 |
msgstr[0] ""
|
547 |
msgstr[1] ""
|
548 |
|
549 |
+
#: app/model/settings.php:470
|
550 |
msgid "Timezone"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: app/model/settings.php:483
|
554 |
msgid "Preselected calendar filters"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: app/model/settings.php:484 app/view/calendar/widget.php:128
|
558 |
msgid ""
|
559 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
560 |
"selection."
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: app/model/settings.php:499
|
564 |
msgid "Default calendar start date (optional)"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: app/model/settings.php:510
|
568 |
msgid "Agenda pages show at most"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: app/model/settings.php:523
|
572 |
msgid "Week/Day view starts at"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: app/model/settings.php:536
|
576 |
msgid "Week/Day view ends at"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: app/model/settings.php:549
|
580 |
msgid "<strong>Word-wrap event stubs</strong> in Month view"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: app/model/settings.php:552
|
584 |
msgid "Only applies to events that span a single day."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: app/model/settings.php:564
|
588 |
msgid ""
|
589 |
"In <span class=\"ai1ec-tooltip-toggle\"\n"
|
590 |
"\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
|
593 |
"\t\t\t\t\t\tfrom last day shown</strong>"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: app/model/settings.php:580
|
597 |
msgid "Keep all events <strong>expanded</strong> in Agenda view"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: app/model/settings.php:592
|
601 |
msgid "<strong>Show year</strong> in calendar date labels"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: app/model/settings.php:604
|
605 |
msgid "<strong>Show location in event titles</strong> in calendar views"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: app/model/settings.php:616
|
609 |
msgid "<strong>Exclude</strong> events from search results"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: app/model/settings.php:628
|
613 |
msgid ""
|
614 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
615 |
"calendar and single event views "
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: app/model/settings.php:640
|
619 |
msgid "Hide <strong>Get a Timely Calendar</strong> button"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: app/model/settings.php:652
|
623 |
msgid " Hide <strong>Google Maps</strong> until clicked"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: app/model/settings.php:664
|
627 |
msgid ""
|
628 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
629 |
"view"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: app/model/settings.php:667
|
633 |
msgid "Only applies to first visible calendar found on the page."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: app/model/settings.php:679
|
637 |
msgid "Offset affixed filter bar vertically by"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: app/model/settings.php:694
|
641 |
msgid "Wide screens only (≥ 1200px)"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: app/model/settings.php:709
|
645 |
msgid "Tablets only (< 980px)"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: app/model/settings.php:724
|
649 |
msgid "Phones only (< 768px)"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: app/model/settings.php:737
|
653 |
msgid "Strict compatibility content filtering"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: app/model/settings.php:749
|
657 |
msgid " <strong>Hide featured image</strong> from event details page"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: app/model/settings.php:752
|
661 |
msgid ""
|
662 |
"Select this option if your theme already displays each post's featured image."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: app/model/settings.php:763
|
666 |
msgid "Input dates in this format"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: app/model/settings.php:768
|
670 |
msgid "Default (d/m/yyyy)"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: app/model/settings.php:772
|
674 |
msgid "US (m/d/yyyy)"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: app/model/settings.php:776
|
678 |
msgid "ISO 8601 (yyyy-m-d)"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: app/model/settings.php:780
|
682 |
msgid "Dotted (m.d.yyyy)"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: app/model/settings.php:792
|
686 |
msgid " Use <strong>24h time</strong> in time pickers"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: app/model/settings.php:803
|
690 |
msgid "<strong>Disable address autocomplete</strong> function"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: app/model/settings.php:814
|
694 |
msgid ""
|
695 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
696 |
"address autocomplete function "
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: app/model/settings.php:830
|
700 |
msgid ""
|
701 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
702 |
"privileged users"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: app/model/settings.php:833
|
706 |
msgid ""
|
707 |
"Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive "
|
708 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
709 |
"strong>."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: app/model/settings.php:854
|
713 |
msgid "Move calendar into this DOM element"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: app/model/settings.php:856
|
717 |
msgid ""
|
718 |
"Optional. Use this JavaScript-based shortcut to place the\n"
|
719 |
"\t\t\t\t\t\tcalendar a DOM element other than the usual page content "
|
727 |
"\t\t\t\t\t\tby the calendar."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: app/model/settings.php:875
|
731 |
msgid ""
|
732 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
733 |
"multiple calendar output"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: app/model/settings.php:878
|
737 |
msgid ""
|
738 |
"Try enabling this option if your calendar does not appear on the calendar "
|
739 |
"page. It is needed for compatibility with a small number of themes that call "
|
740 |
"<tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: app/model/settings.php:890
|
744 |
msgid "Disable <strong>gzip</strong> compression."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: app/model/settings.php:893
|
748 |
msgid ""
|
749 |
"Use this option if calendar is unresponsive. <a target=\"_blank\" href="
|
750 |
"\"http://time.ly/document/user-guide/troubleshooting/disable-gzip-"
|
752 |
"gzip is disabled by default for maximum compatibility.)"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: app/model/settings.php:905
|
756 |
msgid "Use frontend rendering."
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: app/model/settings.php:908
|
760 |
msgid ""
|
761 |
"Renders calendar views on the client rather than the server; can improve "
|
762 |
"performance."
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: app/model/settings.php:920
|
766 |
msgid "Use advanced JS cache."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: app/model/settings.php:923
|
770 |
msgid "Cache dynamically generated JS files. Improves performance."
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: app/model/settings.php:935
|
774 |
msgid ""
|
775 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
776 |
"cache is unavailable."
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: app/model/settings.php:938
|
780 |
msgid ""
|
781 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
782 |
"CSS as a link rather than have it output inline."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: app/model/settings.php:950
|
786 |
msgid "Current <strong>robots.txt</strong> on this site"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: app/model/settings.php:954
|
790 |
msgid ""
|
791 |
"The Robot Exclusion Standard, also known as the Robots Exclusion Protocol "
|
792 |
"or\n"
|
800 |
"your root WordPress directory."
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: app/model/settings.php:971
|
804 |
msgid ""
|
805 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
806 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: app/model/settings.php:994
|
810 |
msgid "Templates cache improves site performance"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: app/model/settings.php:1007
|
814 |
msgid "Display events in <strong>calendar time zone</strong>"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: app/model/settings.php:1010
|
818 |
msgid ""
|
819 |
"If this box is checked events will appear in the calendar time zone with "
|
820 |
"time zone information displayed on the event details page."
|
1133 |
msgid "Sign out"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: app/view/admin/settings.php:192
|
1137 |
msgid "Full Name:"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: app/view/admin/settings.php:193
|
1141 |
msgid "Hide form"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: app/view/admin/settings.php:194
|
1145 |
msgid "Show form"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: app/view/admin/settings.php:195
|
1149 |
msgid "Email:"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: app/view/admin/settings.php:196
|
1153 |
msgid "Password:"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: app/view/admin/settings.php:197
|
1157 |
msgid "Confirm Password:"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: app/view/admin/settings.php:198
|
1161 |
msgid "Phone Number:"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: app/view/admin/settings.php:199
|
1165 |
msgid ""
|
1166 |
"I confirm that I have read, understand and agree with the <a href=\"https://"
|
1167 |
"time.ly/tos\">terms of service</a>."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: app/view/admin/settings.php:202
|
1171 |
msgid ""
|
1172 |
+
"<h4>Attention Required:</h4>If you choose to sign-out of the API Timely "
|
1173 |
+
"Network this will close all the created tickets and remove user access to "
|
1174 |
+
"them. In this case, on the event page, users will see the status “Event "
|
1175 |
+
"closed”."
|
|
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1179 |
#: public/admin/plugins/ics/import_feed.php:103
|
1180 |
msgid "Cancel"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: app/view/admin/settings.php:206 app/view/admin/tickets.php:118
|
1184 |
msgid "Sign Out"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: app/view/admin/settings.php:207
|
1188 |
msgid "Sign Up"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: app/view/admin/settings.php:208
|
1192 |
msgid "Sign In"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: app/view/admin/settings.php:219
|
1196 |
msgid "Save Settings"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: app/view/admin/settings.php:226
|
1200 |
msgid ""
|
1201 |
"If the form below is not working please follow <a href=\"%s\">this link</a>."
|
1202 |
msgstr ""
|
lib/html/element/href.php
CHANGED
@@ -174,7 +174,7 @@ class Ai1ec_Html_Element_Href {
|
|
174 |
$full_url = $this->calendar_page . $href;
|
175 |
// persist the `lang` parameter if present
|
176 |
if ( isset( $_REQUEST['lang'] ) ) {
|
177 |
-
$full_url =
|
178 |
}
|
179 |
return $full_url;
|
180 |
}
|
174 |
$full_url = $this->calendar_page . $href;
|
175 |
// persist the `lang` parameter if present
|
176 |
if ( isset( $_REQUEST['lang'] ) ) {
|
177 |
+
$full_url = esc_url_raw( add_query_arg( 'lang', $_REQUEST['lang'], $full_url ) );
|
178 |
}
|
179 |
return $full_url;
|
180 |
}
|
lib/iCal/iCalcreator-2.20/iCalcreator.class.php
CHANGED
@@ -75,7 +75,7 @@ class vcalendar {
|
|
75 |
* @param array $config
|
76 |
* @return void
|
77 |
*/
|
78 |
-
function
|
79 |
$this->_makeVersion();
|
80 |
$this->calscale = null;
|
81 |
$this->method = null;
|
75 |
* @param array $config
|
76 |
* @return void
|
77 |
*/
|
78 |
+
public function __construct( $config = array()) {
|
79 |
$this->_makeVersion();
|
80 |
$this->calscale = null;
|
81 |
$this->method = null;
|
lib/import-export/api-ics.php
CHANGED
@@ -177,6 +177,11 @@ class Ai1ec_Api_Ics_Import_Export_Engine
|
|
177 |
$allday = true;
|
178 |
}
|
179 |
$event_timezone = $e->timezone;
|
|
|
|
|
|
|
|
|
|
|
180 |
if ( $allday ) {
|
181 |
$event_timezone = $local_timezone;
|
182 |
}
|
177 |
$allday = true;
|
178 |
}
|
179 |
$event_timezone = $e->timezone;
|
180 |
+
if ( ! empty( $event_timezone ) ) {
|
181 |
+
$timezone = $event_timezone;
|
182 |
+
} else {
|
183 |
+
$event_timezone = $timezone;
|
184 |
+
}
|
185 |
if ( $allday ) {
|
186 |
$event_timezone = $local_timezone;
|
187 |
}
|
lib/routing/uri-helper.php
CHANGED
@@ -32,7 +32,7 @@ class Ai1ec_Wp_Uri_Helper {
|
|
32 |
array $extra = array(),
|
33 |
$status = 302
|
34 |
) {
|
35 |
-
$target_uri =
|
36 |
wp_safe_redirect( $target_uri, $status );
|
37 |
exit( 0 );
|
38 |
}
|
32 |
array $extra = array(),
|
33 |
$status = 302
|
34 |
) {
|
35 |
+
$target_uri = esc_url_raw( add_query_arg( $extra, $target_uri ) );
|
36 |
wp_safe_redirect( $target_uri, $status );
|
37 |
exit( 0 );
|
38 |
}
|
public/admin/twig/setting/api-signup.twig
CHANGED
@@ -2,8 +2,10 @@
|
|
2 |
<div class="ai1ec-well" id="ai1ec-api-signed-in">
|
3 |
<i class="ai1ec-fa ai1ec-fa-check ai1ec-fa-fw"></i>
|
4 |
{{ signed_in_text | raw }}
|
5 |
-
|
6 |
-
|
|
|
|
|
7 |
{{ wp_nonce_field( nonce.action, nonce.name, nonce.referrer ) }}
|
8 |
<div id="ai1ec-api-signout-confirm">
|
9 |
{{ sign_out_warning | raw }}
|
2 |
<div class="ai1ec-well" id="ai1ec-api-signed-in">
|
3 |
<i class="ai1ec-fa ai1ec-fa-check ai1ec-fa-fw"></i>
|
4 |
{{ signed_in_text | raw }}
|
5 |
+
{% if can_sign_out %}
|
6 |
+
<a href="#" id="ai1ec-api-signout" class="ai1ec-pull-right"
|
7 |
+
data-action="{{ api_action }}">{{ sign_out_text }}</a>
|
8 |
+
{% endif %}
|
9 |
{{ wp_nonce_field( nonce.action, nonce.name, nonce.referrer ) }}
|
10 |
<div id="ai1ec-api-signout-confirm">
|
11 |
{{ sign_out_warning | raw }}
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Tags: calendar, events, ics, ics feed, wordpress ical importer, google
|
|
4 |
calendar, ical, iCalendar, all-in-one, events sync, events widget,
|
5 |
calendar widget
|
6 |
Requires WordPress at least: 3.5
|
7 |
-
Tested up to: 4.5
|
8 |
-
Stable tag: 2.5.
|
9 |
License: GNU General Public License, version 3 (GPL-3.0)
|
10 |
|
11 |
A calendar system with many views, upcoming events widget, color-coded
|
@@ -149,6 +149,14 @@ https://vimeo.com/135004810
|
|
149 |
|
150 |
== Changelog ==
|
151 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
= Version 2.5.2 =
|
153 |
|
154 |
* Fixed compatibility with PHP 5.2
|
4 |
calendar, ical, iCalendar, all-in-one, events sync, events widget,
|
5 |
calendar widget
|
6 |
Requires WordPress at least: 3.5
|
7 |
+
Tested up to: 4.5.2
|
8 |
+
Stable tag: 2.5.3
|
9 |
License: GNU General Public License, version 3 (GPL-3.0)
|
10 |
|
11 |
A calendar system with many views, upcoming events widget, color-coded
|
149 |
|
150 |
== Changelog ==
|
151 |
|
152 |
+
= Version 2.5.3 =
|
153 |
+
|
154 |
+
* Fixed: When using Agenda view some calendars were not showing today's events, only the next ones.
|
155 |
+
* Fixed: Timezone of imported events was not being considered correctly.
|
156 |
+
* Fixed: Compatibility with PHP 7.
|
157 |
+
* Improved: Add option to Sign out of Timely Network.
|
158 |
+
* Improved: Cached CSS files will be automatically regenerated after version upgrade.
|
159 |
+
|
160 |
= Version 2.5.2 =
|
161 |
|
162 |
* Fixed compatibility with PHP 5.2
|