Version Description
Download this release
Release Info
| Developer | calvinyeh |
| Plugin | |
| Version | 2.3.10 |
| Comparing to | |
| See all releases | |
Code changes from version 2.3.9 to 2.3.10
- all-in-one-event-calendar.php +1 -1
- app/config/constants.php +1 -1
- app/controller/front.php +15 -1
- app/controller/javascript.php +1 -1
- app/helper/api-settings.php +41 -0
- app/model/settings.php +9 -1
- app/view/admin/add-new-event.php +1 -1
- app/view/admin/all-events.php +1 -1
- app/view/admin/settings.php +1 -1
- app/view/admin/ticketing-invitation.php +130 -0
- app/view/admin/tickets.php +1 -1
- app/view/event/single.php +1 -1
- language/all-in-one-event-calendar-cs_CZ.mo +0 -0
- language/all-in-one-event-calendar-cs_CZ.po +4 -4
- language/all-in-one-event-calendar-de_DE.mo +0 -0
- language/all-in-one-event-calendar-de_DE.po +43 -43
- language/all-in-one-event-calendar.mo +0 -0
- language/all-in-one-event-calendar.po +85 -68
- language/all-in-one-event-calendar.pot +84 -67
- lib/bootstrap/loader-map.php +66 -0
- lib/command/resolver.php +11 -0
- lib/command/save-ticketing-invitation.php +36 -0
- public/admin/box_event_cost.php +2 -2
- public/admin/twig/ticketing-invitation/manage.twig +15 -0
- public/admin/twig/ticketing-invitation/page.twig +13 -0
- readme.txt +4 -1
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.3.
|
| 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.3.10
|
| 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.3.
|
| 54 |
}
|
| 55 |
|
| 56 |
// ================
|
| 50 |
// = Plugin Version =
|
| 51 |
// ==================
|
| 52 |
if ( ! defined( 'AI1EC_VERSION' ) ) {
|
| 53 |
+
define( 'AI1EC_VERSION', '2.3.10' );
|
| 54 |
}
|
| 55 |
|
| 56 |
// ================
|
app/controller/front.php
CHANGED
|
@@ -618,7 +618,7 @@ class Ai1ec_Front_Controller {
|
|
| 618 |
'wp_ajax_ai1ec_rrule_to_text',
|
| 619 |
array( 'view.admin.get-repeat-box', 'convert_rrule_to_text' )
|
| 620 |
);
|
| 621 |
-
if (
|
| 622 |
// display ticketing details in the events list
|
| 623 |
$dispatcher->register_action(
|
| 624 |
'wp_ajax_ai1ec_show_ticket_details',
|
|
@@ -656,6 +656,14 @@ class Ai1ec_Front_Controller {
|
|
| 656 |
'admin_menu',
|
| 657 |
array( 'view.admin.add-ons', 'add_page' )
|
| 658 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 659 |
$dispatcher->register_action(
|
| 660 |
'admin_menu',
|
| 661 |
array( 'view.admin.theme-switching', 'add_page' )
|
|
@@ -736,6 +744,12 @@ class Ai1ec_Front_Controller {
|
|
| 736 |
10,
|
| 737 |
3
|
| 738 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 739 |
$dispatcher->register_action(
|
| 740 |
'pre_post_update',
|
| 741 |
array( 'model.event.creating', 'pre_post_update' ),
|
| 618 |
'wp_ajax_ai1ec_rrule_to_text',
|
| 619 |
array( 'view.admin.get-repeat-box', 'convert_rrule_to_text' )
|
| 620 |
);
|
| 621 |
+
if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
|
| 622 |
// display ticketing details in the events list
|
| 623 |
$dispatcher->register_action(
|
| 624 |
'wp_ajax_ai1ec_show_ticket_details',
|
| 656 |
'admin_menu',
|
| 657 |
array( 'view.admin.add-ons', 'add_page' )
|
| 658 |
);
|
| 659 |
+
$dispatcher->register_action(
|
| 660 |
+
'admin_menu',
|
| 661 |
+
array( 'view.admin.ticketing-invitation', 'add_page' )
|
| 662 |
+
);
|
| 663 |
+
$dispatcher->register_action(
|
| 664 |
+
'admin_menu',
|
| 665 |
+
array( 'view.admin.ticketing-invitation', 'add_meta_box' )
|
| 666 |
+
);
|
| 667 |
$dispatcher->register_action(
|
| 668 |
'admin_menu',
|
| 669 |
array( 'view.admin.theme-switching', 'add_page' )
|
| 744 |
10,
|
| 745 |
3
|
| 746 |
);
|
| 747 |
+
$dispatcher->register_action(
|
| 748 |
+
'save_post',
|
| 749 |
+
array( 'view.admin.ticketing-invitation', 'handle_post' ),
|
| 750 |
+
10,
|
| 751 |
+
3
|
| 752 |
+
);
|
| 753 |
$dispatcher->register_action(
|
| 754 |
'pre_post_update',
|
| 755 |
array( 'model.event.creating', 'pre_post_update' ),
|
app/controller/javascript.php
CHANGED
|
@@ -369,7 +369,7 @@ class Ai1ec_Javascript_Controller {
|
|
| 369 |
$script_to_load[] = self::WIDGET_CREATOR;
|
| 370 |
}
|
| 371 |
|
| 372 |
-
if ( (
|
| 373 |
true === $this->_are_we_managing_tickets() ||
|
| 374 |
true === $this->_are_we_managing_events_list()
|
| 375 |
)
|
| 369 |
$script_to_load[] = self::WIDGET_CREATOR;
|
| 370 |
}
|
| 371 |
|
| 372 |
+
if ( ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) && (
|
| 373 |
true === $this->_are_we_managing_tickets() ||
|
| 374 |
true === $this->_are_we_managing_events_list()
|
| 375 |
)
|
app/helper/api-settings.php
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
|
| 3 |
+
/**
|
| 4 |
+
* Model used for storing/retrieving api settings.
|
| 5 |
+
*
|
| 6 |
+
* @author Time.ly Network, Inc.
|
| 7 |
+
* @since 2.3
|
| 8 |
+
* @package Ai1EC
|
| 9 |
+
* @subpackage Ai1EC.Model
|
| 10 |
+
*/
|
| 11 |
+
class Ai1ec_Api_Settings extends Ai1ec_Settings {
|
| 12 |
+
|
| 13 |
+
/**
|
| 14 |
+
* Set new values for the API ticketing variables.
|
| 15 |
+
* Those values are gonna be persisted in the wordpress db
|
| 16 |
+
* in the table wp_options at the column option_name.
|
| 17 |
+
*
|
| 18 |
+
* @param boolean $status the new ticketing status value.
|
| 19 |
+
*/
|
| 20 |
+
|
| 21 |
+
public function ai1ec_setting_up_api_flags( $status ) {
|
| 22 |
+
|
| 23 |
+
$settings = $this->_registry->get( 'helper.api-settings' );
|
| 24 |
+
$settings->set( 'ai1ec_api', $status );
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
/**
|
| 28 |
+
* Get the current status of the API ticketing variables.
|
| 29 |
+
*
|
| 30 |
+
* @return boolean with the result combination of the two boolean
|
| 31 |
+
* variables ai1ec_api_ticketing and ai1ec_api.
|
| 32 |
+
*/
|
| 33 |
+
|
| 34 |
+
public function ai1ec_api_enabled() {
|
| 35 |
+
|
| 36 |
+
$settings = $this->_registry->get( 'helper.api-settings' );
|
| 37 |
+
$api = $settings->get( 'ai1ec_api' );
|
| 38 |
+
return $api;
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
}
|
app/model/settings.php
CHANGED
|
@@ -347,7 +347,15 @@ class Ai1ec_Settings extends Ai1ec_App {
|
|
| 347 |
*
|
| 348 |
*/
|
| 349 |
protected function _set_standard_values() {
|
| 350 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 351 |
'ai1ec_db_version' => array(
|
| 352 |
'type' => 'int',
|
| 353 |
'default' => false,
|
| 347 |
*
|
| 348 |
*/
|
| 349 |
protected function _set_standard_values() {
|
| 350 |
+
$this->_standard_options = array(
|
| 351 |
+
'enabling_ticket_invitation_page' => array(
|
| 352 |
+
'type' => 'string',
|
| 353 |
+
'default' => false,
|
| 354 |
+
),
|
| 355 |
+
'ai1ec_api' => array(
|
| 356 |
+
'type' => 'boolean',
|
| 357 |
+
'default' => false,
|
| 358 |
+
),
|
| 359 |
'ai1ec_db_version' => array(
|
| 360 |
'type' => 'int',
|
| 361 |
'default' => false,
|
app/view/admin/add-new-event.php
CHANGED
|
@@ -298,7 +298,7 @@ class Ai1ec_View_Add_New_Event extends Ai1ec_Base {
|
|
| 298 |
}
|
| 299 |
}
|
| 300 |
}
|
| 301 |
-
if (
|
| 302 |
$api = $this->_registry->get( 'model.api' );
|
| 303 |
$ticketing = $api->is_signed();
|
| 304 |
$message = $api->get_sign_message();
|
| 298 |
}
|
| 299 |
}
|
| 300 |
}
|
| 301 |
+
if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
|
| 302 |
$api = $this->_registry->get( 'model.api' );
|
| 303 |
$ticketing = $api->is_signed();
|
| 304 |
$message = $api->get_sign_message();
|
app/view/admin/all-events.php
CHANGED
|
@@ -16,7 +16,7 @@ class Ai1ec_View_Admin_All_Events extends Ai1ec_Base {
|
|
| 16 |
$columns['author'] = __( 'Author', AI1EC_PLUGIN_NAME );
|
| 17 |
$columns['date'] = __( 'Post Date', AI1EC_PLUGIN_NAME );
|
| 18 |
$columns['ai1ec_event_date'] = __( 'Event date/time', AI1EC_PLUGIN_NAME );
|
| 19 |
-
if (
|
| 20 |
$api = $this->_registry->get( 'model.api' );
|
| 21 |
if ( $api->is_signed() ) {
|
| 22 |
$columns['tickets'] = __( 'Ticket Types', AI1EC_PLUGIN_NAME );
|
| 16 |
$columns['author'] = __( 'Author', AI1EC_PLUGIN_NAME );
|
| 17 |
$columns['date'] = __( 'Post Date', AI1EC_PLUGIN_NAME );
|
| 18 |
$columns['ai1ec_event_date'] = __( 'Event date/time', AI1EC_PLUGIN_NAME );
|
| 19 |
+
if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
|
| 20 |
$api = $this->_registry->get( 'model.api' );
|
| 21 |
if ( $api->is_signed() ) {
|
| 22 |
$columns['tickets'] = __( 'Ticket Types', AI1EC_PLUGIN_NAME );
|
app/view/admin/settings.php
CHANGED
|
@@ -162,7 +162,7 @@ class Ai1ec_View_Admin_Settings extends Ai1ec_View_Admin_Abstract {
|
|
| 162 |
$tabs = $this->_get_tabs_to_show( $plugin_settings, $tabs );
|
| 163 |
$loader = $this->_registry->get( 'theme.loader' );
|
| 164 |
|
| 165 |
-
if (
|
| 166 |
$api = $this->_registry->get( 'model.api' );
|
| 167 |
$api_signed = $api->is_signed();
|
| 168 |
|
| 162 |
$tabs = $this->_get_tabs_to_show( $plugin_settings, $tabs );
|
| 163 |
$loader = $this->_registry->get( 'theme.loader' );
|
| 164 |
|
| 165 |
+
if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
|
| 166 |
$api = $this->_registry->get( 'model.api' );
|
| 167 |
$api_signed = $api->is_signed();
|
| 168 |
|
app/view/admin/ticketing-invitation.php
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
|
| 3 |
+
/**
|
| 4 |
+
* Tickets page.
|
| 5 |
+
*
|
| 6 |
+
* @author Time.ly Network Inc.
|
| 7 |
+
* @since 2.3
|
| 8 |
+
*
|
| 9 |
+
* @package AI1EC
|
| 10 |
+
* @subpackage AI1EC.View
|
| 11 |
+
*/
|
| 12 |
+
class Ai1ec_View_Admin_Ticketing_Invitation extends Ai1ec_View_Admin_Abstract {
|
| 13 |
+
/**
|
| 14 |
+
* @var string The id/name of the submit button.
|
| 15 |
+
*/
|
| 16 |
+
const SUBMIT_ID = 'ai1ec_ticketing_invitation';
|
| 17 |
+
/**
|
| 18 |
+
* @var string The nonce action
|
| 19 |
+
*/
|
| 20 |
+
CONST NONCE_ACTION = 'ai1ec_ticketing_invitation_save';
|
| 21 |
+
/**
|
| 22 |
+
* @var string The nonce name
|
| 23 |
+
*/
|
| 24 |
+
CONST NONCE_NAME = 'ai1ec_ticketing_invitation_nonce';
|
| 25 |
+
|
| 26 |
+
/**
|
| 27 |
+
* Adds the page to the correct menu.
|
| 28 |
+
*/
|
| 29 |
+
public function add_page() {
|
| 30 |
+
$ticketing_invitation_page = add_submenu_page(
|
| 31 |
+
null,
|
| 32 |
+
Ai1ec_I18n::__( 'Invitation' ),
|
| 33 |
+
Ai1ec_I18n::__( 'Invitation' ),
|
| 34 |
+
'manage_ai1ec_options',
|
| 35 |
+
AI1EC_PLUGIN_NAME . '-invitation',
|
| 36 |
+
array( $this, 'display_page' )
|
| 37 |
+
);
|
| 38 |
+
$this->_registry->get( 'model.settings' )
|
| 39 |
+
->set( 'enabling_ticket_invitation_page', $ticketing_invitation_page );
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
/**
|
| 43 |
+
* Adds the page to the correct menu.
|
| 44 |
+
*/
|
| 45 |
+
public function add_meta_box() {
|
| 46 |
+
add_meta_box(
|
| 47 |
+
'ai1ec-ticketing-invitation',
|
| 48 |
+
Ai1ec_I18n::__( 'Ticketing Beta Invitation' ),
|
| 49 |
+
array( $this, 'display_meta_box' ),
|
| 50 |
+
$this->_registry->get( 'model.settings' )->get( 'enabling_ticket_invitation_page' ),
|
| 51 |
+
'left',
|
| 52 |
+
'default'
|
| 53 |
+
);
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
/**
|
| 57 |
+
* @param $object
|
| 58 |
+
* @param $box
|
| 59 |
+
*
|
| 60 |
+
* @throws Ai1ec_Bootstrap_Exception
|
| 61 |
+
*/
|
| 62 |
+
public function display_meta_box( $object, $box ) {
|
| 63 |
+
$api_settings = $this->_registry->get( 'helper.api-settings' );
|
| 64 |
+
$invitation_checked = ( $api_settings->ai1ec_api_enabled() ) ? 'checked' : '';
|
| 65 |
+
$args = array(
|
| 66 |
+
'stacked' => true,
|
| 67 |
+
'content_class' => 'ai1ec-form-horizontal',
|
| 68 |
+
'enable_ticketing_text' => Ai1ec_I18n::__( 'Enable Ticketing Beta' ),
|
| 69 |
+
'submit' => array(
|
| 70 |
+
'id' => self::SUBMIT_ID,
|
| 71 |
+
'value' => '<i class="ai1ec-fa ai1ec-fa-save ai1ec-fa-fw"></i> ' .
|
| 72 |
+
Ai1ec_I18n::__( 'Save Settings' ),
|
| 73 |
+
'args' => array(
|
| 74 |
+
'class' => 'ai1ec-btn ai1ec-btn-primary ai1ec-btn-lg',
|
| 75 |
+
),
|
| 76 |
+
),
|
| 77 |
+
'invitation_chk' => array(
|
| 78 |
+
'id' => 'ai1ec_ticketing',
|
| 79 |
+
'name' => 'ai1ec_ticketing',
|
| 80 |
+
'value' => '1',
|
| 81 |
+
'checked' => $invitation_checked,
|
| 82 |
+
),
|
| 83 |
+
);
|
| 84 |
+
$loader = $this->_registry->get( 'theme.loader' );
|
| 85 |
+
$file = $loader->get_file( 'ticketing-invitation/manage.twig', $args, true );
|
| 86 |
+
return $file->render();
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
/**
|
| 90 |
+
* Display the page html
|
| 91 |
+
*/
|
| 92 |
+
public function display_page() {
|
| 93 |
+
$settings = $this->_registry->get( 'model.settings' );
|
| 94 |
+
$args = array(
|
| 95 |
+
'title' => Ai1ec_I18n::__( 'Time.ly Ticketing beta' ),
|
| 96 |
+
'nonce' => array(
|
| 97 |
+
'action' => self::NONCE_ACTION,
|
| 98 |
+
'name' => self::NONCE_NAME,
|
| 99 |
+
'referrer' => false,
|
| 100 |
+
),
|
| 101 |
+
'metabox' => array(
|
| 102 |
+
'screen' => $settings->get( 'enabling_ticket_invitation_page' ),
|
| 103 |
+
'action' => 'left',
|
| 104 |
+
'object' => null
|
| 105 |
+
),
|
| 106 |
+
'action' =>
|
| 107 |
+
ai1ec_admin_url(
|
| 108 |
+
'?controller=front&action=ai1ec_ticketing_invitation_save&plugin=' .
|
| 109 |
+
AI1EC_PLUGIN_NAME
|
| 110 |
+
),
|
| 111 |
+
);
|
| 112 |
+
$loader = $this->_registry->get( 'theme.loader' );
|
| 113 |
+
$file = $loader->get_file( 'ticketing-invitation/page.twig', $args, true );
|
| 114 |
+
$this->_registry->get( 'css.admin' )->admin_enqueue_scripts(
|
| 115 |
+
'ai1ec_event_page_all-in-one-event-calendar-settings'
|
| 116 |
+
);
|
| 117 |
+
$this->_registry->get( 'css.admin' )->process_enqueue(
|
| 118 |
+
array(
|
| 119 |
+
array( 'style', 'ticketing.css', ),
|
| 120 |
+
)
|
| 121 |
+
);
|
| 122 |
+
return $file->render();
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
/**
|
| 126 |
+
* Handle post, likely to be deprecated to use commands.
|
| 127 |
+
*/
|
| 128 |
+
public function handle_post() {
|
| 129 |
+
}
|
| 130 |
+
}
|
app/view/admin/tickets.php
CHANGED
|
@@ -30,7 +30,7 @@ class Ai1ec_View_Tickets extends Ai1ec_View_Admin_Abstract {
|
|
| 30 |
* Adds the page to the correct menu.
|
| 31 |
*/
|
| 32 |
public function add_page() {
|
| 33 |
-
if (
|
| 34 |
add_submenu_page(
|
| 35 |
AI1EC_ADMIN_BASE_URL,
|
| 36 |
__( 'Ticketing', AI1EC_PLUGIN_NAME ),
|
| 30 |
* Adds the page to the correct menu.
|
| 31 |
*/
|
| 32 |
public function add_page() {
|
| 33 |
+
if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
|
| 34 |
add_submenu_page(
|
| 35 |
AI1EC_ADMIN_BASE_URL,
|
| 36 |
__( 'Ticketing', AI1EC_PLUGIN_NAME ),
|
app/view/event/single.php
CHANGED
|
@@ -152,7 +152,7 @@ class Ai1ec_View_Event_Single extends Ai1ec_Base {
|
|
| 152 |
);
|
| 153 |
}
|
| 154 |
|
| 155 |
-
if (
|
| 156 |
$api_event_id = get_post_meta(
|
| 157 |
$event->get( 'post_id' ),
|
| 158 |
Ai1ec_Api::EVENT_ID_METADATA,
|
| 152 |
);
|
| 153 |
}
|
| 154 |
|
| 155 |
+
if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ) {
|
| 156 |
$api_event_id = get_post_meta(
|
| 157 |
$event->get( 'post_id' ),
|
| 158 |
Ai1ec_Api::EVENT_ID_METADATA,
|
language/all-in-one-event-calendar-cs_CZ.mo
CHANGED
|
Binary file
|
language/all-in-one-event-calendar-cs_CZ.po
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
# This file is distributed under the same license as the 2.3 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"PO-Revision-Date: 2016-02-
|
| 6 |
"MIME-Version: 1.0\n"
|
| 7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 8 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -718,7 +718,7 @@ msgstr "Cena události a vstupenky"
|
|
| 718 |
|
| 719 |
#: public/admin/box_event_cost.php:20
|
| 720 |
msgid "Ticket options not available - event imported from external calendar."
|
| 721 |
-
msgstr ""
|
| 722 |
|
| 723 |
#: public/admin/box_event_cost.php:28
|
| 724 |
msgid "Free event"
|
|
@@ -730,7 +730,7 @@ msgstr "Odkaz na vstupenky z externího zdroje"
|
|
| 730 |
|
| 731 |
#: public/admin/box_event_cost.php:52
|
| 732 |
msgid "Ticketing allows you to sell tickets directly to the users."
|
| 733 |
-
msgstr ""
|
| 734 |
|
| 735 |
#: public/admin/box_event_cost.php:55
|
| 736 |
msgid "Sign Up for Timely Network"
|
|
@@ -1073,7 +1073,7 @@ msgstr "Štítky"
|
|
| 1073 |
#: lib/post/custom-type.php:95
|
| 1074 |
msgctxt "Event tags taxonomy (singular)"
|
| 1075 |
msgid "Tag"
|
| 1076 |
-
msgstr "
|
| 1077 |
|
| 1078 |
#: lib/post/custom-type.php:102
|
| 1079 |
msgctxt "Event feeds taxonomy"
|
| 2 |
# This file is distributed under the same license as the 2.3 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"PO-Revision-Date: 2016-02-18 05:23:19+0000\n"
|
| 6 |
"MIME-Version: 1.0\n"
|
| 7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 8 |
"Content-Transfer-Encoding: 8bit\n"
|
| 718 |
|
| 719 |
#: public/admin/box_event_cost.php:20
|
| 720 |
msgid "Ticket options not available - event imported from external calendar."
|
| 721 |
+
msgstr "Možnosti lístků nejsou k dispozici - událost byla importována z externího kalendáře."
|
| 722 |
|
| 723 |
#: public/admin/box_event_cost.php:28
|
| 724 |
msgid "Free event"
|
| 730 |
|
| 731 |
#: public/admin/box_event_cost.php:52
|
| 732 |
msgid "Ticketing allows you to sell tickets directly to the users."
|
| 733 |
+
msgstr "Prodej lístků vám umožní prodávat lístky přímo uživatelům."
|
| 734 |
|
| 735 |
#: public/admin/box_event_cost.php:55
|
| 736 |
msgid "Sign Up for Timely Network"
|
| 1073 |
#: lib/post/custom-type.php:95
|
| 1074 |
msgctxt "Event tags taxonomy (singular)"
|
| 1075 |
msgid "Tag"
|
| 1076 |
+
msgstr "Štítek"
|
| 1077 |
|
| 1078 |
#: lib/post/custom-type.php:102
|
| 1079 |
msgctxt "Event feeds taxonomy"
|
language/all-in-one-event-calendar-de_DE.mo
CHANGED
|
Binary file
|
language/all-in-one-event-calendar-de_DE.po
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
# This file is distributed under the same license as the 2.3 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"PO-Revision-Date: 2016-02-
|
| 6 |
"MIME-Version: 1.0\n"
|
| 7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 8 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -328,7 +328,7 @@ msgstr "Neues Abonnement hinzufügen"
|
|
| 328 |
|
| 329 |
#: public/admin/plugins/ics/display_feeds.php:96
|
| 330 |
msgid "Update subscription"
|
| 331 |
-
msgstr ""
|
| 332 |
|
| 333 |
#: public/admin/row_custom.php:3
|
| 334 |
msgid "Custom dates:"
|
|
@@ -626,19 +626,19 @@ msgstr "Status:"
|
|
| 626 |
|
| 627 |
#: public/admin/box_event_cost.php:235
|
| 628 |
msgid "Open"
|
| 629 |
-
msgstr ""
|
| 630 |
|
| 631 |
#: public/admin/box_event_cost.php:239
|
| 632 |
msgid "Closed"
|
| 633 |
-
msgstr ""
|
| 634 |
|
| 635 |
#: public/admin/box_event_cost.php:254
|
| 636 |
msgid "Add New Ticket Type"
|
| 637 |
-
msgstr ""
|
| 638 |
|
| 639 |
#: public/admin/box_event_cost.php:274
|
| 640 |
msgid "Tickets URL:"
|
| 641 |
-
msgstr ""
|
| 642 |
|
| 643 |
#: public/admin/box_event_location.php:6
|
| 644 |
msgid "Event location details"
|
|
@@ -722,7 +722,7 @@ msgstr "Veranstaltungspreis und Karten"
|
|
| 722 |
|
| 723 |
#: public/admin/box_event_cost.php:20
|
| 724 |
msgid "Ticket options not available - event imported from external calendar."
|
| 725 |
-
msgstr ""
|
| 726 |
|
| 727 |
#: public/admin/box_event_cost.php:28
|
| 728 |
msgid "Free event"
|
|
@@ -730,23 +730,23 @@ msgstr "keine Eintrittsgebühr"
|
|
| 730 |
|
| 731 |
#: public/admin/box_event_cost.php:41
|
| 732 |
msgid "External Tickets URL"
|
| 733 |
-
msgstr ""
|
| 734 |
|
| 735 |
#: public/admin/box_event_cost.php:52
|
| 736 |
msgid "Ticketing allows you to sell tickets directly to the users."
|
| 737 |
-
msgstr ""
|
| 738 |
|
| 739 |
#: public/admin/box_event_cost.php:55
|
| 740 |
msgid "Sign Up for Timely Network"
|
| 741 |
-
msgstr ""
|
| 742 |
|
| 743 |
#: public/admin/box_event_cost.php:80
|
| 744 |
msgid "Remove Ticket Type"
|
| 745 |
-
msgstr ""
|
| 746 |
|
| 747 |
#: public/admin/box_event_cost.php:101
|
| 748 |
msgid "Ex.: Regular Ticket"
|
| 749 |
-
msgstr ""
|
| 750 |
|
| 751 |
#: public/admin/box_event_cost.php:105
|
| 752 |
msgid "Description:"
|
|
@@ -766,7 +766,7 @@ msgstr "US-Dollar"
|
|
| 766 |
|
| 767 |
#: public/admin/box_event_cost.php:128
|
| 768 |
msgid "Limits:"
|
| 769 |
-
msgstr ""
|
| 770 |
|
| 771 |
#: public/admin/box_event_cost.php:131
|
| 772 |
msgid "This fields are required."
|
|
@@ -804,11 +804,11 @@ msgstr "Ok, klar!"
|
|
| 804 |
|
| 805 |
#: public/admin/box_ask_customer_review.php:66
|
| 806 |
msgid "Would you mind giving us some feedback?"
|
| 807 |
-
msgstr ""
|
| 808 |
|
| 809 |
#: public/admin/box_ask_customer_review.php:101
|
| 810 |
msgid "Please provide some feedback"
|
| 811 |
-
msgstr ""
|
| 812 |
|
| 813 |
#: public/admin/box_ask_customer_review.php:108
|
| 814 |
msgid "Message:"
|
|
@@ -837,19 +837,19 @@ msgstr "Adresse der Website ist ungültig."
|
|
| 837 |
|
| 838 |
#: public/admin/box_ask_customer_review.php:173
|
| 839 |
msgid "Thank you for being our customer,"
|
| 840 |
-
msgstr ""
|
| 841 |
|
| 842 |
#: public/admin/box_ask_customer_review.php:174
|
| 843 |
msgid "Aristotel Dascal, VP of Product, Time.ly"
|
| 844 |
-
msgstr ""
|
| 845 |
|
| 846 |
#: public/admin/box_ask_customer_review.php:180
|
| 847 |
msgid "Sending..."
|
| 848 |
-
msgstr ""
|
| 849 |
|
| 850 |
#: public/admin/box_ask_customer_review.php:181
|
| 851 |
msgid "Send Message"
|
| 852 |
-
msgstr ""
|
| 853 |
|
| 854 |
#: public/admin/box_event_children.php:12
|
| 855 |
msgid "Base recurrence event"
|
|
@@ -945,19 +945,19 @@ msgstr "Dieses Widget auf der Kalenderseite verstecken"
|
|
| 945 |
|
| 946 |
#: public/admin/box_ask_customer_review.php:5
|
| 947 |
msgid "Enjoying All-in-One Event Calendar?"
|
| 948 |
-
msgstr ""
|
| 949 |
|
| 950 |
#: public/admin/box_ask_customer_review.php:13
|
| 951 |
msgid "Not really"
|
| 952 |
-
msgstr ""
|
| 953 |
|
| 954 |
#: public/admin/box_ask_customer_review.php:20
|
| 955 |
msgid "Yes!"
|
| 956 |
-
msgstr ""
|
| 957 |
|
| 958 |
#: public/admin/box_ask_customer_review.php:33
|
| 959 |
msgid "How about a rating on the Wordpress?"
|
| 960 |
-
msgstr ""
|
| 961 |
|
| 962 |
#: lib/recurrence/rule.php:397
|
| 963 |
msgid "Every %d weeks"
|
|
@@ -1230,7 +1230,7 @@ msgstr "Es wird momentan nicht unterstützt, mehr als einen Kalender auf der sel
|
|
| 1230 |
|
| 1231 |
#: lib/import-export/ics.php:831
|
| 1232 |
msgid "Tickets: "
|
| 1233 |
-
msgstr ""
|
| 1234 |
|
| 1235 |
#: lib/html/element/setting/html.php:41
|
| 1236 |
msgid "Day view:"
|
|
@@ -1502,7 +1502,7 @@ msgstr "Veranstaltungen entfernen"
|
|
| 1502 |
|
| 1503 |
#: lib/calendar-feed/ics.php:519
|
| 1504 |
msgid "Oh, submission was not accepted."
|
| 1505 |
-
msgstr ""
|
| 1506 |
|
| 1507 |
#: lib/calendar-feed/ics.php:699
|
| 1508 |
msgid "Deleted %d events"
|
|
@@ -1571,7 +1571,7 @@ msgstr "Du hast Frontend-Rendering aktiviert und verwendest ein benutzerdefinier
|
|
| 1571 |
|
| 1572 |
#: app/view/event/single.php:123
|
| 1573 |
msgid "Tickets:"
|
| 1574 |
-
msgstr ""
|
| 1575 |
|
| 1576 |
#: app/view/event/single.php:124
|
| 1577 |
msgid "Free"
|
|
@@ -1621,11 +1621,11 @@ msgstr ", und"
|
|
| 1621 |
|
| 1622 |
#: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
|
| 1623 |
msgid "Excludes: "
|
| 1624 |
-
msgstr ""
|
| 1625 |
|
| 1626 |
#: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
|
| 1627 |
msgid "Repeats"
|
| 1628 |
-
msgstr ""
|
| 1629 |
|
| 1630 |
#: lib/calendar-feed/ics.php:38
|
| 1631 |
msgid "ICS"
|
|
@@ -1922,15 +1922,15 @@ msgstr "Verkäufe"
|
|
| 1922 |
|
| 1923 |
#: app/view/admin/tickets.php:87
|
| 1924 |
msgid "How do you want the tickets revenue to be sent to you?"
|
| 1925 |
-
msgstr ""
|
| 1926 |
|
| 1927 |
#: app/view/admin/tickets.php:88
|
| 1928 |
msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
|
| 1929 |
-
msgstr ""
|
| 1930 |
|
| 1931 |
#: app/view/admin/tickets.php:91
|
| 1932 |
msgid "Cheque"
|
| 1933 |
-
msgstr ""
|
| 1934 |
|
| 1935 |
#: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
|
| 1936 |
msgid "Paypal"
|
|
@@ -2009,7 +2009,7 @@ msgstr "Telefonnumer:"
|
|
| 2009 |
|
| 2010 |
#: app/view/admin/settings.php:194
|
| 2011 |
msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
|
| 2012 |
-
msgstr ""
|
| 2013 |
|
| 2014 |
#: app/view/admin/settings.php:197
|
| 2015 |
msgid "Sign Up"
|
|
@@ -2082,7 +2082,7 @@ msgstr "All-in-One Event Kalender: Themes"
|
|
| 2082 |
|
| 2083 |
#: app/view/admin/tickets.php:36
|
| 2084 |
msgid "Ticketing"
|
| 2085 |
-
msgstr ""
|
| 2086 |
|
| 2087 |
#: app/view/admin/tickets.php:37
|
| 2088 |
msgid "Ticketing<sup>beta</sup>"
|
|
@@ -2647,15 +2647,15 @@ msgstr ""
|
|
| 2647 |
|
| 2648 |
#: app/model/api.php:664
|
| 2649 |
msgid "API URL: %s.<br/>Detail: %s - %s"
|
| 2650 |
-
msgstr ""
|
| 2651 |
|
| 2652 |
#: app/model/api.php:672
|
| 2653 |
msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
|
| 2654 |
-
msgstr ""
|
| 2655 |
|
| 2656 |
#: app/model/api.php:679
|
| 2657 |
msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
|
| 2658 |
-
msgstr ""
|
| 2659 |
|
| 2660 |
#: app/model/event/parent.php:186
|
| 2661 |
msgid "Edit “%s”"
|
|
@@ -2667,7 +2667,7 @@ msgstr "Standard Veranstaltung"
|
|
| 2667 |
|
| 2668 |
#: app/model/review.php:169
|
| 2669 |
msgid "Feedback provided by user"
|
| 2670 |
-
msgstr ""
|
| 2671 |
|
| 2672 |
#: app/model/review.php:171 public/admin/box_eventbrite.php:32
|
| 2673 |
msgid "Name"
|
|
@@ -2675,15 +2675,15 @@ msgstr "Name"
|
|
| 2675 |
|
| 2676 |
#: app/model/review.php:173
|
| 2677 |
msgid "E-mail"
|
| 2678 |
-
msgstr ""
|
| 2679 |
|
| 2680 |
#: app/model/review.php:175
|
| 2681 |
msgid "Site URL"
|
| 2682 |
-
msgstr ""
|
| 2683 |
|
| 2684 |
#: app/model/review.php:177
|
| 2685 |
msgid "Message"
|
| 2686 |
-
msgstr ""
|
| 2687 |
|
| 2688 |
#: app/model/settings.php:401
|
| 2689 |
#: lib/html/element/setting/calendar-page-selector.php:50
|
|
@@ -2744,15 +2744,15 @@ msgstr "Für die Wochen- und Tagesansicht muss ein Intervall von mindestens 6 St
|
|
| 2744 |
|
| 2745 |
#: app/model/api.php:40
|
| 2746 |
msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
|
| 2747 |
-
msgstr ""
|
| 2748 |
|
| 2749 |
#: app/model/api.php:41
|
| 2750 |
msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
|
| 2751 |
-
msgstr ""
|
| 2752 |
|
| 2753 |
#: app/model/api.php:42
|
| 2754 |
msgid "We were unable to Sign you Up for Time.ly Ticketing"
|
| 2755 |
-
msgstr ""
|
| 2756 |
|
| 2757 |
#: app/model/api.php:43
|
| 2758 |
msgid "We were unable to Sign you In for Time.ly Ticketing"
|
| 2 |
# This file is distributed under the same license as the 2.3 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"PO-Revision-Date: 2016-02-18 05:22:59+0000\n"
|
| 6 |
"MIME-Version: 1.0\n"
|
| 7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 8 |
"Content-Transfer-Encoding: 8bit\n"
|
| 328 |
|
| 329 |
#: public/admin/plugins/ics/display_feeds.php:96
|
| 330 |
msgid "Update subscription"
|
| 331 |
+
msgstr "Abonnement erneuern"
|
| 332 |
|
| 333 |
#: public/admin/row_custom.php:3
|
| 334 |
msgid "Custom dates:"
|
| 626 |
|
| 627 |
#: public/admin/box_event_cost.php:235
|
| 628 |
msgid "Open"
|
| 629 |
+
msgstr "Offen"
|
| 630 |
|
| 631 |
#: public/admin/box_event_cost.php:239
|
| 632 |
msgid "Closed"
|
| 633 |
+
msgstr "geschlossen"
|
| 634 |
|
| 635 |
#: public/admin/box_event_cost.php:254
|
| 636 |
msgid "Add New Ticket Type"
|
| 637 |
+
msgstr "Neuen Ticket-Typ hinzufügen"
|
| 638 |
|
| 639 |
#: public/admin/box_event_cost.php:274
|
| 640 |
msgid "Tickets URL:"
|
| 641 |
+
msgstr "Tickets URL:"
|
| 642 |
|
| 643 |
#: public/admin/box_event_location.php:6
|
| 644 |
msgid "Event location details"
|
| 722 |
|
| 723 |
#: public/admin/box_event_cost.php:20
|
| 724 |
msgid "Ticket options not available - event imported from external calendar."
|
| 725 |
+
msgstr "Ticket-Optionen nicht verfügbar - Event wurde von externem Kalender importiert."
|
| 726 |
|
| 727 |
#: public/admin/box_event_cost.php:28
|
| 728 |
msgid "Free event"
|
| 730 |
|
| 731 |
#: public/admin/box_event_cost.php:41
|
| 732 |
msgid "External Tickets URL"
|
| 733 |
+
msgstr "Externe Ticket-URL"
|
| 734 |
|
| 735 |
#: public/admin/box_event_cost.php:52
|
| 736 |
msgid "Ticketing allows you to sell tickets directly to the users."
|
| 737 |
+
msgstr "Ticketing erlaubt Dir Tickets direkt an den Nutzer zu verkaufen."
|
| 738 |
|
| 739 |
#: public/admin/box_event_cost.php:55
|
| 740 |
msgid "Sign Up for Timely Network"
|
| 741 |
+
msgstr "Melde Dich an für Timely Network"
|
| 742 |
|
| 743 |
#: public/admin/box_event_cost.php:80
|
| 744 |
msgid "Remove Ticket Type"
|
| 745 |
+
msgstr "Entferne Ticket-Typ"
|
| 746 |
|
| 747 |
#: public/admin/box_event_cost.php:101
|
| 748 |
msgid "Ex.: Regular Ticket"
|
| 749 |
+
msgstr "Bsp.: Normales Ticket"
|
| 750 |
|
| 751 |
#: public/admin/box_event_cost.php:105
|
| 752 |
msgid "Description:"
|
| 766 |
|
| 767 |
#: public/admin/box_event_cost.php:128
|
| 768 |
msgid "Limits:"
|
| 769 |
+
msgstr "Einschränkungen:"
|
| 770 |
|
| 771 |
#: public/admin/box_event_cost.php:131
|
| 772 |
msgid "This fields are required."
|
| 804 |
|
| 805 |
#: public/admin/box_ask_customer_review.php:66
|
| 806 |
msgid "Would you mind giving us some feedback?"
|
| 807 |
+
msgstr "Würdest Du uns ein Feedback geben?"
|
| 808 |
|
| 809 |
#: public/admin/box_ask_customer_review.php:101
|
| 810 |
msgid "Please provide some feedback"
|
| 811 |
+
msgstr "Bitte stelle ein Feedback zur Verfügung"
|
| 812 |
|
| 813 |
#: public/admin/box_ask_customer_review.php:108
|
| 814 |
msgid "Message:"
|
| 837 |
|
| 838 |
#: public/admin/box_ask_customer_review.php:173
|
| 839 |
msgid "Thank you for being our customer,"
|
| 840 |
+
msgstr "Vielen Dank für Deinen Einkauf,"
|
| 841 |
|
| 842 |
#: public/admin/box_ask_customer_review.php:174
|
| 843 |
msgid "Aristotel Dascal, VP of Product, Time.ly"
|
| 844 |
+
msgstr "Aristotel Dascal, VP of Product, Time.ly"
|
| 845 |
|
| 846 |
#: public/admin/box_ask_customer_review.php:180
|
| 847 |
msgid "Sending..."
|
| 848 |
+
msgstr "Übertrage ..."
|
| 849 |
|
| 850 |
#: public/admin/box_ask_customer_review.php:181
|
| 851 |
msgid "Send Message"
|
| 852 |
+
msgstr "Sende Nachricht"
|
| 853 |
|
| 854 |
#: public/admin/box_event_children.php:12
|
| 855 |
msgid "Base recurrence event"
|
| 945 |
|
| 946 |
#: public/admin/box_ask_customer_review.php:5
|
| 947 |
msgid "Enjoying All-in-One Event Calendar?"
|
| 948 |
+
msgstr "Gefällt Dir All-in-One Event Calendar?"
|
| 949 |
|
| 950 |
#: public/admin/box_ask_customer_review.php:13
|
| 951 |
msgid "Not really"
|
| 952 |
+
msgstr "Nicht wirklich"
|
| 953 |
|
| 954 |
#: public/admin/box_ask_customer_review.php:20
|
| 955 |
msgid "Yes!"
|
| 956 |
+
msgstr "Ja!"
|
| 957 |
|
| 958 |
#: public/admin/box_ask_customer_review.php:33
|
| 959 |
msgid "How about a rating on the Wordpress?"
|
| 960 |
+
msgstr "Wie wäre es mit einem Rating auf Wordpress?"
|
| 961 |
|
| 962 |
#: lib/recurrence/rule.php:397
|
| 963 |
msgid "Every %d weeks"
|
| 1230 |
|
| 1231 |
#: lib/import-export/ics.php:831
|
| 1232 |
msgid "Tickets: "
|
| 1233 |
+
msgstr "Tickets:"
|
| 1234 |
|
| 1235 |
#: lib/html/element/setting/html.php:41
|
| 1236 |
msgid "Day view:"
|
| 1502 |
|
| 1503 |
#: lib/calendar-feed/ics.php:519
|
| 1504 |
msgid "Oh, submission was not accepted."
|
| 1505 |
+
msgstr "Oh, die Eingabe wurde nicht akzeptiert."
|
| 1506 |
|
| 1507 |
#: lib/calendar-feed/ics.php:699
|
| 1508 |
msgid "Deleted %d events"
|
| 1571 |
|
| 1572 |
#: app/view/event/single.php:123
|
| 1573 |
msgid "Tickets:"
|
| 1574 |
+
msgstr "Tickets:"
|
| 1575 |
|
| 1576 |
#: app/view/event/single.php:124
|
| 1577 |
msgid "Free"
|
| 1621 |
|
| 1622 |
#: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:37
|
| 1623 |
msgid "Excludes: "
|
| 1624 |
+
msgstr "Ausschlüsse:"
|
| 1625 |
|
| 1626 |
#: cache/twig/dc/78/b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php:48
|
| 1627 |
msgid "Repeats"
|
| 1628 |
+
msgstr "Wiederholungen"
|
| 1629 |
|
| 1630 |
#: lib/calendar-feed/ics.php:38
|
| 1631 |
msgid "ICS"
|
| 1922 |
|
| 1923 |
#: app/view/admin/tickets.php:87
|
| 1924 |
msgid "How do you want the tickets revenue to be sent to you?"
|
| 1925 |
+
msgstr "Wie sollen wir Dir die Ticketeinnahmen zusenden?"
|
| 1926 |
|
| 1927 |
#: app/view/admin/tickets.php:88
|
| 1928 |
msgid "If no payout method is selected, Time.ly will collect the revenue on behalf of you. Please contact payouts@time.ly for any outstanding payouts."
|
| 1929 |
+
msgstr "Falls keine Zahlungsart ausgewählt ist, wird Time.ly die Zahlungen in Deinem Namen annehmen. Kontaktiere bitte payouts@time.ly für ausstehende Zahluingen."
|
| 1930 |
|
| 1931 |
#: app/view/admin/tickets.php:91
|
| 1932 |
msgid "Cheque"
|
| 1933 |
+
msgstr "Scheck"
|
| 1934 |
|
| 1935 |
#: app/view/admin/tickets.php:92 public/admin/box_eventbrite.php:103
|
| 1936 |
msgid "Paypal"
|
| 2009 |
|
| 2010 |
#: app/view/admin/settings.php:194
|
| 2011 |
msgid "I confirm that I have read, understand and agree with the <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>."
|
| 2012 |
+
msgstr "Ich bestätige, dass ich die <a href=\"https://ticketing.time.ly/terms\">terms and conditions</a>. gelesen und verstanden habe und damit einverstanden bin."
|
| 2013 |
|
| 2014 |
#: app/view/admin/settings.php:197
|
| 2015 |
msgid "Sign Up"
|
| 2082 |
|
| 2083 |
#: app/view/admin/tickets.php:36
|
| 2084 |
msgid "Ticketing"
|
| 2085 |
+
msgstr "Ticketing"
|
| 2086 |
|
| 2087 |
#: app/view/admin/tickets.php:37
|
| 2088 |
msgid "Ticketing<sup>beta</sup>"
|
| 2647 |
|
| 2648 |
#: app/model/api.php:664
|
| 2649 |
msgid "API URL: %s.<br/>Detail: %s - %s"
|
| 2650 |
+
msgstr "API URL: %s.<br/>Detail: %s - %s"
|
| 2651 |
|
| 2652 |
#: app/model/api.php:672
|
| 2653 |
msgid "%s. Please reload this page to try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
|
| 2654 |
+
msgstr "%s. Bitte lade diese Seite neu und versuche es noch einmal. Falls der Fehler weiterhin besteht, kontaktiere uns bitte unter %s. Bitte füge in Deinen Bericht die unten stehenden Informationen ein.<br/>%s."
|
| 2655 |
|
| 2656 |
#: app/model/api.php:679
|
| 2657 |
msgid "%s. Please try again. If this error persists, please contact us at %s. In your report please include the information below.<br/>%s."
|
| 2658 |
+
msgstr "%s. Bitte versuch es noch einmal. Wenn der Fehler erneut auftritt, kontaktiere uns bitte unter %s. Bitte füge in Deinen Bericht die unten stehenden Informationen ein.<br/>%s."
|
| 2659 |
|
| 2660 |
#: app/model/event/parent.php:186
|
| 2661 |
msgid "Edit “%s”"
|
| 2667 |
|
| 2668 |
#: app/model/review.php:169
|
| 2669 |
msgid "Feedback provided by user"
|
| 2670 |
+
msgstr "Feedback wurde von Nutzer bereitgestellt"
|
| 2671 |
|
| 2672 |
#: app/model/review.php:171 public/admin/box_eventbrite.php:32
|
| 2673 |
msgid "Name"
|
| 2675 |
|
| 2676 |
#: app/model/review.php:173
|
| 2677 |
msgid "E-mail"
|
| 2678 |
+
msgstr "Email"
|
| 2679 |
|
| 2680 |
#: app/model/review.php:175
|
| 2681 |
msgid "Site URL"
|
| 2682 |
+
msgstr "Site URL"
|
| 2683 |
|
| 2684 |
#: app/model/review.php:177
|
| 2685 |
msgid "Message"
|
| 2686 |
+
msgstr "Nachricht"
|
| 2687 |
|
| 2688 |
#: app/model/settings.php:401
|
| 2689 |
#: lib/html/element/setting/calendar-page-selector.php:50
|
| 2744 |
|
| 2745 |
#: app/model/api.php:40
|
| 2746 |
msgid "We were unable to get the Tickets Details from Time.ly Ticketing"
|
| 2747 |
+
msgstr "Wir sind nicht in der Lage, die Ticket-Details von Time.ly-Ticketing zu erhalten"
|
| 2748 |
|
| 2749 |
#: app/model/api.php:41
|
| 2750 |
msgid "We were unable to get the Tickets Attendees from Time.ly Ticketing"
|
| 2751 |
+
msgstr "Wir sind nicht in der Lage, die Ticket-Teilnehmer von Time.ly-Ticketing zu erhalten"
|
| 2752 |
|
| 2753 |
#: app/model/api.php:42
|
| 2754 |
msgid "We were unable to Sign you Up for Time.ly Ticketing"
|
| 2755 |
+
msgstr "Wir sind nicht in der Lage, Dich für Time.ly-Ticketing anzumelden"
|
| 2756 |
|
| 2757 |
#: app/model/api.php:43
|
| 2758 |
msgid "We were unable to Sign you In for Time.ly Ticketing"
|
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.3.
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
| 7 |
-
"POT-Creation-Date: 2016-02-
|
| 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-02-
|
| 12 |
"Last-Translator: Timely <support@time.ly>\n"
|
| 13 |
"Language-Team:\n"
|
| 14 |
|
|
@@ -32,7 +32,7 @@ msgstr ""
|
|
| 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."
|
|
@@ -421,52 +421,52 @@ msgstr "Site URL"
|
|
| 421 |
msgid "Message"
|
| 422 |
msgstr "Message"
|
| 423 |
|
| 424 |
-
#: app/model/settings.php:
|
| 425 |
#: lib/html/element/setting/calendar-page-selector.php:50
|
| 426 |
msgid "Calendar page"
|
| 427 |
msgstr "Calendar page"
|
| 428 |
|
| 429 |
-
#: app/model/settings.php:
|
| 430 |
msgid "Week starts on"
|
| 431 |
msgstr "Week starts on"
|
| 432 |
|
| 433 |
-
#: app/model/settings.php:
|
| 434 |
msgid "Available views"
|
| 435 |
msgstr "Available views"
|
| 436 |
|
| 437 |
-
#: app/model/settings.php:
|
| 438 |
msgid "Agenda"
|
| 439 |
msgid_plural "Agenda"
|
| 440 |
msgstr[0] "Agenda"
|
| 441 |
msgstr[1] "Agenda"
|
| 442 |
|
| 443 |
-
#: app/model/settings.php:
|
| 444 |
msgid "Day"
|
| 445 |
msgid_plural "Day"
|
| 446 |
msgstr[0] "Day"
|
| 447 |
msgstr[1] "Day"
|
| 448 |
|
| 449 |
-
#: app/model/settings.php:
|
| 450 |
msgid "Month"
|
| 451 |
msgid_plural "Month"
|
| 452 |
msgstr[0] "Month"
|
| 453 |
msgstr[1] "Month"
|
| 454 |
|
| 455 |
-
#: app/model/settings.php:
|
| 456 |
msgid "Week"
|
| 457 |
msgid_plural "Week"
|
| 458 |
msgstr[0] "Week"
|
| 459 |
msgstr[1] "Week"
|
| 460 |
|
| 461 |
-
#: app/model/settings.php:
|
| 462 |
msgid "Timezone"
|
| 463 |
msgstr "Timezone"
|
| 464 |
|
| 465 |
-
#: app/model/settings.php:
|
| 466 |
msgid "Preselected calendar filters"
|
| 467 |
msgstr "Preselected calendar filters"
|
| 468 |
|
| 469 |
-
#: app/model/settings.php:
|
| 470 |
msgid ""
|
| 471 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
| 472 |
"selection."
|
|
@@ -474,31 +474,31 @@ msgstr ""
|
|
| 474 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
| 475 |
"selection."
|
| 476 |
|
| 477 |
-
#: app/model/settings.php:
|
| 478 |
msgid "Default calendar start date (optional)"
|
| 479 |
msgstr "Default calendar start date (optional)"
|
| 480 |
|
| 481 |
-
#: app/model/settings.php:
|
| 482 |
msgid "Agenda pages show at most"
|
| 483 |
msgstr "Agenda pages show at most"
|
| 484 |
|
| 485 |
-
#: app/model/settings.php:
|
| 486 |
msgid "Week/Day view starts at"
|
| 487 |
msgstr "Week/Day view starts at"
|
| 488 |
|
| 489 |
-
#: app/model/settings.php:
|
| 490 |
msgid "Week/Day view ends at"
|
| 491 |
msgstr "Week/Day view ends at"
|
| 492 |
|
| 493 |
-
#: app/model/settings.php:
|
| 494 |
msgid "<strong>Word-wrap event stubs</strong> in Month view"
|
| 495 |
msgstr "<strong>Word-wrap event stubs</strong> in Month view"
|
| 496 |
|
| 497 |
-
#: app/model/settings.php:
|
| 498 |
msgid "Only applies to events that span a single day."
|
| 499 |
msgstr "Only applies to events that span a single day."
|
| 500 |
|
| 501 |
-
#: app/model/settings.php:
|
| 502 |
msgid ""
|
| 503 |
"In <span class=\"ai1ec-tooltip-toggle\"\n"
|
| 504 |
"\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
|
|
@@ -512,23 +512,23 @@ msgstr ""
|
|
| 512 |
"\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
|
| 513 |
"\t\t\t\t\t\tfrom last day shown</strong>"
|
| 514 |
|
| 515 |
-
#: app/model/settings.php:
|
| 516 |
msgid "Keep all events <strong>expanded</strong> in Agenda view"
|
| 517 |
msgstr "Keep all events <strong>expanded</strong> in Agenda view"
|
| 518 |
|
| 519 |
-
#: app/model/settings.php:
|
| 520 |
msgid "<strong>Show year</strong> in calendar date labels"
|
| 521 |
msgstr "<strong>Show year</strong> in calendar date labels"
|
| 522 |
|
| 523 |
-
#: app/model/settings.php:
|
| 524 |
msgid "<strong>Show location in event titles</strong> in calendar views"
|
| 525 |
msgstr "<strong>Show location in event titles</strong> in calendar views"
|
| 526 |
|
| 527 |
-
#: app/model/settings.php:
|
| 528 |
msgid "<strong>Exclude</strong> events from search results"
|
| 529 |
msgstr "<strong>Exclude</strong> events from search results"
|
| 530 |
|
| 531 |
-
#: app/model/settings.php:
|
| 532 |
msgid ""
|
| 533 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
| 534 |
"calendar and single event views "
|
|
@@ -536,15 +536,15 @@ msgstr ""
|
|
| 536 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
| 537 |
"calendar and single event views "
|
| 538 |
|
| 539 |
-
#: app/model/settings.php:
|
| 540 |
msgid "Hide <strong>Get a Timely Calendar</strong> button"
|
| 541 |
msgstr "Hide <strong>Get a Timely Calendar</strong> button"
|
| 542 |
|
| 543 |
-
#: app/model/settings.php:
|
| 544 |
msgid " Hide <strong>Google Maps</strong> until clicked"
|
| 545 |
msgstr " Hide <strong>Google Maps</strong> until clicked"
|
| 546 |
|
| 547 |
-
#: app/model/settings.php:
|
| 548 |
msgid ""
|
| 549 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
| 550 |
"view"
|
|
@@ -552,69 +552,69 @@ msgstr ""
|
|
| 552 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
| 553 |
"view"
|
| 554 |
|
| 555 |
-
#: app/model/settings.php:
|
| 556 |
msgid "Only applies to first visible calendar found on the page."
|
| 557 |
msgstr "Only applies to first visible calendar found on the page."
|
| 558 |
|
| 559 |
-
#: app/model/settings.php:
|
| 560 |
msgid "Offset affixed filter bar vertically by"
|
| 561 |
msgstr "Offset affixed filter bar vertically by"
|
| 562 |
|
| 563 |
-
#: app/model/settings.php:
|
| 564 |
msgid "Wide screens only (≥ 1200px)"
|
| 565 |
msgstr "Wide screens only (≥ 1200px)"
|
| 566 |
|
| 567 |
-
#: app/model/settings.php:
|
| 568 |
msgid "Tablets only (< 980px)"
|
| 569 |
msgstr "Tablets only (< 980px)"
|
| 570 |
|
| 571 |
-
#: app/model/settings.php:
|
| 572 |
msgid "Phones only (< 768px)"
|
| 573 |
msgstr "Phones only (< 768px)"
|
| 574 |
|
| 575 |
-
#: app/model/settings.php:
|
| 576 |
msgid "Strict compatibility content filtering"
|
| 577 |
msgstr "Strict compatibility content filtering"
|
| 578 |
|
| 579 |
-
#: app/model/settings.php:
|
| 580 |
msgid " <strong>Hide featured image</strong> from event details page"
|
| 581 |
msgstr " <strong>Hide featured image</strong> from event details page"
|
| 582 |
|
| 583 |
-
#: app/model/settings.php:
|
| 584 |
msgid ""
|
| 585 |
"Select this option if your theme already displays each post's featured image."
|
| 586 |
msgstr ""
|
| 587 |
"Select this option if your theme already displays each post's featured image."
|
| 588 |
|
| 589 |
-
#: app/model/settings.php:
|
| 590 |
msgid "Input dates in this format"
|
| 591 |
msgstr "Input dates in this format"
|
| 592 |
|
| 593 |
-
#: app/model/settings.php:
|
| 594 |
msgid "Default (d/m/yyyy)"
|
| 595 |
msgstr "Default (d/m/yyyy)"
|
| 596 |
|
| 597 |
-
#: app/model/settings.php:
|
| 598 |
msgid "US (m/d/yyyy)"
|
| 599 |
msgstr "US (m/d/yyyy)"
|
| 600 |
|
| 601 |
-
#: app/model/settings.php:
|
| 602 |
msgid "ISO 8601 (yyyy-m-d)"
|
| 603 |
msgstr "ISO 8601 (yyyy-m-d)"
|
| 604 |
|
| 605 |
-
#: app/model/settings.php:
|
| 606 |
msgid "Dotted (m.d.yyyy)"
|
| 607 |
msgstr "Dotted (m.d.yyyy)"
|
| 608 |
|
| 609 |
-
#: app/model/settings.php:
|
| 610 |
msgid " Use <strong>24h time</strong> in time pickers"
|
| 611 |
msgstr " Use <strong>24h time</strong> in time pickers"
|
| 612 |
|
| 613 |
-
#: app/model/settings.php:
|
| 614 |
msgid "<strong>Disable address autocomplete</strong> function"
|
| 615 |
msgstr "<strong>Disable address autocomplete</strong> function"
|
| 616 |
|
| 617 |
-
#: app/model/settings.php:
|
| 618 |
msgid ""
|
| 619 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
| 620 |
"address autocomplete function "
|
|
@@ -622,7 +622,7 @@ msgstr ""
|
|
| 622 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
| 623 |
"address autocomplete function "
|
| 624 |
|
| 625 |
-
#: app/model/settings.php:
|
| 626 |
msgid ""
|
| 627 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
| 628 |
"privileged users"
|
|
@@ -630,7 +630,7 @@ msgstr ""
|
|
| 630 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
| 631 |
"privileged users"
|
| 632 |
|
| 633 |
-
#: app/model/settings.php:
|
| 634 |
msgid ""
|
| 635 |
"Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive "
|
| 636 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
|
@@ -640,11 +640,11 @@ msgstr ""
|
|
| 640 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
| 641 |
"strong>."
|
| 642 |
|
| 643 |
-
#: app/model/settings.php:
|
| 644 |
msgid "Move calendar into this DOM element"
|
| 645 |
msgstr "Move calendar into this DOM element"
|
| 646 |
|
| 647 |
-
#: app/model/settings.php:
|
| 648 |
msgid ""
|
| 649 |
"Optional. Use this JavaScript-based shortcut to place the\n"
|
| 650 |
"\t\t\t\t\t\tcalendar a DOM element other than the usual page content "
|
|
@@ -668,7 +668,7 @@ msgstr ""
|
|
| 668 |
"\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
|
| 669 |
"\t\t\t\t\t\tby the calendar."
|
| 670 |
|
| 671 |
-
#: app/model/settings.php:
|
| 672 |
msgid ""
|
| 673 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
| 674 |
"multiple calendar output"
|
|
@@ -676,7 +676,7 @@ msgstr ""
|
|
| 676 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
| 677 |
"multiple calendar output"
|
| 678 |
|
| 679 |
-
#: app/model/settings.php:
|
| 680 |
msgid ""
|
| 681 |
"Try enabling this option if your calendar does not appear on the calendar "
|
| 682 |
"page. It is needed for compatibility with a small number of themes that call "
|
|
@@ -686,11 +686,11 @@ msgstr ""
|
|
| 686 |
"page. It is needed for compatibility with a small number of themes that call "
|
| 687 |
"<tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
|
| 688 |
|
| 689 |
-
#: app/model/settings.php:
|
| 690 |
msgid "Disable <strong>gzip</strong> compression."
|
| 691 |
msgstr "Disable <strong>gzip</strong> compression."
|
| 692 |
|
| 693 |
-
#: app/model/settings.php:
|
| 694 |
msgid ""
|
| 695 |
"Use this option if calendar is unresponsive. <a href=\"http://support.time."
|
| 696 |
"ly/disable-gzip-compression/\">Read more</a> about the issue. (From version "
|
|
@@ -700,11 +700,11 @@ msgstr ""
|
|
| 700 |
"ly/disable-gzip-compression/\">Read more</a> about the issue. (From version "
|
| 701 |
"2.1 onwards, gzip is disabled by default for maximum compatibility.)"
|
| 702 |
|
| 703 |
-
#: app/model/settings.php:
|
| 704 |
msgid "Use frontend rendering."
|
| 705 |
msgstr "Use frontend rendering."
|
| 706 |
|
| 707 |
-
#: app/model/settings.php:
|
| 708 |
msgid ""
|
| 709 |
"Renders calendar views on the client rather than the server; can improve "
|
| 710 |
"performance."
|
|
@@ -712,15 +712,15 @@ msgstr ""
|
|
| 712 |
"Renders calendar views on the client rather than the server; can improve "
|
| 713 |
"performance."
|
| 714 |
|
| 715 |
-
#: app/model/settings.php:
|
| 716 |
msgid "Use advanced JS cache."
|
| 717 |
msgstr "Use advanced JS cache."
|
| 718 |
|
| 719 |
-
#: app/model/settings.php:
|
| 720 |
msgid "Cache dynamically generated JS files. Improves performance."
|
| 721 |
msgstr "Cache dynamically generated JS files. Improves performance."
|
| 722 |
|
| 723 |
-
#: app/model/settings.php:
|
| 724 |
msgid ""
|
| 725 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
| 726 |
"cache is unavailable."
|
|
@@ -728,7 +728,7 @@ msgstr ""
|
|
| 728 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
| 729 |
"cache is unavailable."
|
| 730 |
|
| 731 |
-
#: app/model/settings.php:
|
| 732 |
msgid ""
|
| 733 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
| 734 |
"CSS as a link rather than have it output inline."
|
|
@@ -736,11 +736,11 @@ msgstr ""
|
|
| 736 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
| 737 |
"CSS as a link rather than have it output inline."
|
| 738 |
|
| 739 |
-
#: app/model/settings.php:
|
| 740 |
msgid "Current <strong>robots.txt</strong> on this site"
|
| 741 |
msgstr "Current <strong>robots.txt</strong> on this site"
|
| 742 |
|
| 743 |
-
#: app/model/settings.php:
|
| 744 |
msgid ""
|
| 745 |
"The Robot Exclusion Standard, also known as the Robots Exclusion Protocol "
|
| 746 |
"or\n"
|
|
@@ -764,7 +764,7 @@ msgstr ""
|
|
| 764 |
"\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in "
|
| 765 |
"your root WordPress directory."
|
| 766 |
|
| 767 |
-
#: app/model/settings.php:
|
| 768 |
msgid ""
|
| 769 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
| 770 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
|
@@ -772,15 +772,15 @@ msgstr ""
|
|
| 772 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
| 773 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
| 774 |
|
| 775 |
-
#: app/model/settings.php:
|
| 776 |
msgid "Templates cache improves site performance"
|
| 777 |
msgstr "Templates cache improves site performance"
|
| 778 |
|
| 779 |
-
#: app/model/settings.php:
|
| 780 |
msgid "Display events in <strong>calendar time zone</strong>"
|
| 781 |
msgstr "Display events in <strong>calendar time zone</strong>"
|
| 782 |
|
| 783 |
-
#: app/model/settings.php:
|
| 784 |
msgid ""
|
| 785 |
"If this box is checked events will appear in the calendar time zone with "
|
| 786 |
"time zone information displayed on the event details page."
|
|
@@ -1132,7 +1132,7 @@ msgstr "Sign Up"
|
|
| 1132 |
msgid "Sign In"
|
| 1133 |
msgstr "Sign In"
|
| 1134 |
|
| 1135 |
-
#: app/view/admin/settings.php:212
|
| 1136 |
msgid "Save Settings"
|
| 1137 |
msgstr "Save Settings"
|
| 1138 |
|
|
@@ -1195,6 +1195,23 @@ msgstr "Reset to Defaults"
|
|
| 1195 |
msgid "All-in-One Event Calendar: Themes"
|
| 1196 |
msgstr "All-in-One Event Calendar: Themes"
|
| 1197 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1198 |
#: app/view/admin/tickets.php:36
|
| 1199 |
msgid "Ticketing"
|
| 1200 |
msgstr "Ticketing"
|
|
@@ -3452,9 +3469,9 @@ msgstr "Today background"
|
|
| 3452 |
msgid "All-in-One Event Calendar by Time.ly"
|
| 3453 |
msgstr "All-in-One Event Calendar by Time.ly"
|
| 3454 |
|
| 3455 |
-
#. #-#-#-#-# all-in-one-event-calendar.pot (All-in-One Event Calendar by Time.ly 2.3.
|
| 3456 |
#. Plugin URI of the plugin/theme
|
| 3457 |
-
#. #-#-#-#-# all-in-one-event-calendar.pot (All-in-One Event Calendar by Time.ly 2.3.
|
| 3458 |
#. Author URI of the plugin/theme
|
| 3459 |
msgid "http://time.ly/"
|
| 3460 |
msgstr "http://time.ly/"
|
| 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.3.10\n"
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
| 7 |
+
"POT-Creation-Date: 2016-02-18 05:32:36+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-02-18 05:32+0000\n"
|
| 12 |
"Last-Translator: Timely <support@time.ly>\n"
|
| 13 |
"Language-Team:\n"
|
| 14 |
|
| 32 |
msgid "Calendar Themes"
|
| 33 |
msgstr "Calendar Themes"
|
| 34 |
|
| 35 |
+
#: app/controller/front.php:1053
|
| 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."
|
| 421 |
msgid "Message"
|
| 422 |
msgstr "Message"
|
| 423 |
|
| 424 |
+
#: app/model/settings.php:409
|
| 425 |
#: lib/html/element/setting/calendar-page-selector.php:50
|
| 426 |
msgid "Calendar page"
|
| 427 |
msgstr "Calendar page"
|
| 428 |
|
| 429 |
+
#: app/model/settings.php:419
|
| 430 |
msgid "Week starts on"
|
| 431 |
msgstr "Week starts on"
|
| 432 |
|
| 433 |
+
#: app/model/settings.php:432
|
| 434 |
msgid "Available views"
|
| 435 |
msgstr "Available views"
|
| 436 |
|
| 437 |
+
#: app/model/settings.php:440
|
| 438 |
msgid "Agenda"
|
| 439 |
msgid_plural "Agenda"
|
| 440 |
msgstr[0] "Agenda"
|
| 441 |
msgstr[1] "Agenda"
|
| 442 |
|
| 443 |
+
#: app/model/settings.php:451
|
| 444 |
msgid "Day"
|
| 445 |
msgid_plural "Day"
|
| 446 |
msgstr[0] "Day"
|
| 447 |
msgstr[1] "Day"
|
| 448 |
|
| 449 |
+
#: app/model/settings.php:462
|
| 450 |
msgid "Month"
|
| 451 |
msgid_plural "Month"
|
| 452 |
msgstr[0] "Month"
|
| 453 |
msgstr[1] "Month"
|
| 454 |
|
| 455 |
+
#: app/model/settings.php:473
|
| 456 |
msgid "Week"
|
| 457 |
msgid_plural "Week"
|
| 458 |
msgstr[0] "Week"
|
| 459 |
msgstr[1] "Week"
|
| 460 |
|
| 461 |
+
#: app/model/settings.php:487
|
| 462 |
msgid "Timezone"
|
| 463 |
msgstr "Timezone"
|
| 464 |
|
| 465 |
+
#: app/model/settings.php:500
|
| 466 |
msgid "Preselected calendar filters"
|
| 467 |
msgstr "Preselected calendar filters"
|
| 468 |
|
| 469 |
+
#: app/model/settings.php:501 app/view/calendar/widget.php:128
|
| 470 |
msgid ""
|
| 471 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
| 472 |
"selection."
|
| 474 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
| 475 |
"selection."
|
| 476 |
|
| 477 |
+
#: app/model/settings.php:516
|
| 478 |
msgid "Default calendar start date (optional)"
|
| 479 |
msgstr "Default calendar start date (optional)"
|
| 480 |
|
| 481 |
+
#: app/model/settings.php:527
|
| 482 |
msgid "Agenda pages show at most"
|
| 483 |
msgstr "Agenda pages show at most"
|
| 484 |
|
| 485 |
+
#: app/model/settings.php:540
|
| 486 |
msgid "Week/Day view starts at"
|
| 487 |
msgstr "Week/Day view starts at"
|
| 488 |
|
| 489 |
+
#: app/model/settings.php:553
|
| 490 |
msgid "Week/Day view ends at"
|
| 491 |
msgstr "Week/Day view ends at"
|
| 492 |
|
| 493 |
+
#: app/model/settings.php:566
|
| 494 |
msgid "<strong>Word-wrap event stubs</strong> in Month view"
|
| 495 |
msgstr "<strong>Word-wrap event stubs</strong> in Month view"
|
| 496 |
|
| 497 |
+
#: app/model/settings.php:569
|
| 498 |
msgid "Only applies to events that span a single day."
|
| 499 |
msgstr "Only applies to events that span a single day."
|
| 500 |
|
| 501 |
+
#: app/model/settings.php:581
|
| 502 |
msgid ""
|
| 503 |
"In <span class=\"ai1ec-tooltip-toggle\"\n"
|
| 504 |
"\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
|
| 512 |
"\t\t\t\t\t\tAgenda-like views</span>, <strong>include all events\n"
|
| 513 |
"\t\t\t\t\t\tfrom last day shown</strong>"
|
| 514 |
|
| 515 |
+
#: app/model/settings.php:597
|
| 516 |
msgid "Keep all events <strong>expanded</strong> in Agenda view"
|
| 517 |
msgstr "Keep all events <strong>expanded</strong> in Agenda view"
|
| 518 |
|
| 519 |
+
#: app/model/settings.php:609
|
| 520 |
msgid "<strong>Show year</strong> in calendar date labels"
|
| 521 |
msgstr "<strong>Show year</strong> in calendar date labels"
|
| 522 |
|
| 523 |
+
#: app/model/settings.php:621
|
| 524 |
msgid "<strong>Show location in event titles</strong> in calendar views"
|
| 525 |
msgstr "<strong>Show location in event titles</strong> in calendar views"
|
| 526 |
|
| 527 |
+
#: app/model/settings.php:633
|
| 528 |
msgid "<strong>Exclude</strong> events from search results"
|
| 529 |
msgstr "<strong>Exclude</strong> events from search results"
|
| 530 |
|
| 531 |
+
#: app/model/settings.php:645
|
| 532 |
msgid ""
|
| 533 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
| 534 |
"calendar and single event views "
|
| 536 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
| 537 |
"calendar and single event views "
|
| 538 |
|
| 539 |
+
#: app/model/settings.php:657
|
| 540 |
msgid "Hide <strong>Get a Timely Calendar</strong> button"
|
| 541 |
msgstr "Hide <strong>Get a Timely Calendar</strong> button"
|
| 542 |
|
| 543 |
+
#: app/model/settings.php:669
|
| 544 |
msgid " Hide <strong>Google Maps</strong> until clicked"
|
| 545 |
msgstr " Hide <strong>Google Maps</strong> until clicked"
|
| 546 |
|
| 547 |
+
#: app/model/settings.php:681
|
| 548 |
msgid ""
|
| 549 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
| 550 |
"view"
|
| 552 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
| 553 |
"view"
|
| 554 |
|
| 555 |
+
#: app/model/settings.php:684
|
| 556 |
msgid "Only applies to first visible calendar found on the page."
|
| 557 |
msgstr "Only applies to first visible calendar found on the page."
|
| 558 |
|
| 559 |
+
#: app/model/settings.php:696
|
| 560 |
msgid "Offset affixed filter bar vertically by"
|
| 561 |
msgstr "Offset affixed filter bar vertically by"
|
| 562 |
|
| 563 |
+
#: app/model/settings.php:711
|
| 564 |
msgid "Wide screens only (≥ 1200px)"
|
| 565 |
msgstr "Wide screens only (≥ 1200px)"
|
| 566 |
|
| 567 |
+
#: app/model/settings.php:726
|
| 568 |
msgid "Tablets only (< 980px)"
|
| 569 |
msgstr "Tablets only (< 980px)"
|
| 570 |
|
| 571 |
+
#: app/model/settings.php:741
|
| 572 |
msgid "Phones only (< 768px)"
|
| 573 |
msgstr "Phones only (< 768px)"
|
| 574 |
|
| 575 |
+
#: app/model/settings.php:754
|
| 576 |
msgid "Strict compatibility content filtering"
|
| 577 |
msgstr "Strict compatibility content filtering"
|
| 578 |
|
| 579 |
+
#: app/model/settings.php:766
|
| 580 |
msgid " <strong>Hide featured image</strong> from event details page"
|
| 581 |
msgstr " <strong>Hide featured image</strong> from event details page"
|
| 582 |
|
| 583 |
+
#: app/model/settings.php:769
|
| 584 |
msgid ""
|
| 585 |
"Select this option if your theme already displays each post's featured image."
|
| 586 |
msgstr ""
|
| 587 |
"Select this option if your theme already displays each post's featured image."
|
| 588 |
|
| 589 |
+
#: app/model/settings.php:780
|
| 590 |
msgid "Input dates in this format"
|
| 591 |
msgstr "Input dates in this format"
|
| 592 |
|
| 593 |
+
#: app/model/settings.php:785
|
| 594 |
msgid "Default (d/m/yyyy)"
|
| 595 |
msgstr "Default (d/m/yyyy)"
|
| 596 |
|
| 597 |
+
#: app/model/settings.php:789
|
| 598 |
msgid "US (m/d/yyyy)"
|
| 599 |
msgstr "US (m/d/yyyy)"
|
| 600 |
|
| 601 |
+
#: app/model/settings.php:793
|
| 602 |
msgid "ISO 8601 (yyyy-m-d)"
|
| 603 |
msgstr "ISO 8601 (yyyy-m-d)"
|
| 604 |
|
| 605 |
+
#: app/model/settings.php:797
|
| 606 |
msgid "Dotted (m.d.yyyy)"
|
| 607 |
msgstr "Dotted (m.d.yyyy)"
|
| 608 |
|
| 609 |
+
#: app/model/settings.php:809
|
| 610 |
msgid " Use <strong>24h time</strong> in time pickers"
|
| 611 |
msgstr " Use <strong>24h time</strong> in time pickers"
|
| 612 |
|
| 613 |
+
#: app/model/settings.php:820
|
| 614 |
msgid "<strong>Disable address autocomplete</strong> function"
|
| 615 |
msgstr "<strong>Disable address autocomplete</strong> function"
|
| 616 |
|
| 617 |
+
#: app/model/settings.php:831
|
| 618 |
msgid ""
|
| 619 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
| 620 |
"address autocomplete function "
|
| 622 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
| 623 |
"address autocomplete function "
|
| 624 |
|
| 625 |
+
#: app/model/settings.php:847
|
| 626 |
msgid ""
|
| 627 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
| 628 |
"privileged users"
|
| 630 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
| 631 |
"privileged users"
|
| 632 |
|
| 633 |
+
#: app/model/settings.php:850
|
| 634 |
msgid ""
|
| 635 |
"Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive "
|
| 636 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
| 640 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
| 641 |
"strong>."
|
| 642 |
|
| 643 |
+
#: app/model/settings.php:871
|
| 644 |
msgid "Move calendar into this DOM element"
|
| 645 |
msgstr "Move calendar into this DOM element"
|
| 646 |
|
| 647 |
+
#: app/model/settings.php:873
|
| 648 |
msgid ""
|
| 649 |
"Optional. Use this JavaScript-based shortcut to place the\n"
|
| 650 |
"\t\t\t\t\t\tcalendar a DOM element other than the usual page content "
|
| 668 |
"\t\t\t\t\t\tAny existing markup found within the target will be replaced\n"
|
| 669 |
"\t\t\t\t\t\tby the calendar."
|
| 670 |
|
| 671 |
+
#: app/model/settings.php:892
|
| 672 |
msgid ""
|
| 673 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
| 674 |
"multiple calendar output"
|
| 676 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
| 677 |
"multiple calendar output"
|
| 678 |
|
| 679 |
+
#: app/model/settings.php:895
|
| 680 |
msgid ""
|
| 681 |
"Try enabling this option if your calendar does not appear on the calendar "
|
| 682 |
"page. It is needed for compatibility with a small number of themes that call "
|
| 686 |
"page. It is needed for compatibility with a small number of themes that call "
|
| 687 |
"<tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
|
| 688 |
|
| 689 |
+
#: app/model/settings.php:907
|
| 690 |
msgid "Disable <strong>gzip</strong> compression."
|
| 691 |
msgstr "Disable <strong>gzip</strong> compression."
|
| 692 |
|
| 693 |
+
#: app/model/settings.php:910
|
| 694 |
msgid ""
|
| 695 |
"Use this option if calendar is unresponsive. <a href=\"http://support.time."
|
| 696 |
"ly/disable-gzip-compression/\">Read more</a> about the issue. (From version "
|
| 700 |
"ly/disable-gzip-compression/\">Read more</a> about the issue. (From version "
|
| 701 |
"2.1 onwards, gzip is disabled by default for maximum compatibility.)"
|
| 702 |
|
| 703 |
+
#: app/model/settings.php:922
|
| 704 |
msgid "Use frontend rendering."
|
| 705 |
msgstr "Use frontend rendering."
|
| 706 |
|
| 707 |
+
#: app/model/settings.php:925
|
| 708 |
msgid ""
|
| 709 |
"Renders calendar views on the client rather than the server; can improve "
|
| 710 |
"performance."
|
| 712 |
"Renders calendar views on the client rather than the server; can improve "
|
| 713 |
"performance."
|
| 714 |
|
| 715 |
+
#: app/model/settings.php:937
|
| 716 |
msgid "Use advanced JS cache."
|
| 717 |
msgstr "Use advanced JS cache."
|
| 718 |
|
| 719 |
+
#: app/model/settings.php:940
|
| 720 |
msgid "Cache dynamically generated JS files. Improves performance."
|
| 721 |
msgstr "Cache dynamically generated JS files. Improves performance."
|
| 722 |
|
| 723 |
+
#: app/model/settings.php:952
|
| 724 |
msgid ""
|
| 725 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
| 726 |
"cache is unavailable."
|
| 728 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
| 729 |
"cache is unavailable."
|
| 730 |
|
| 731 |
+
#: app/model/settings.php:955
|
| 732 |
msgid ""
|
| 733 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
| 734 |
"CSS as a link rather than have it output inline."
|
| 736 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
| 737 |
"CSS as a link rather than have it output inline."
|
| 738 |
|
| 739 |
+
#: app/model/settings.php:967
|
| 740 |
msgid "Current <strong>robots.txt</strong> on this site"
|
| 741 |
msgstr "Current <strong>robots.txt</strong> on this site"
|
| 742 |
|
| 743 |
+
#: app/model/settings.php:971
|
| 744 |
msgid ""
|
| 745 |
"The Robot Exclusion Standard, also known as the Robots Exclusion Protocol "
|
| 746 |
"or\n"
|
| 764 |
"\t\t\t\t\t\tYou can change it manually by editing <code>robots.txt</code> in "
|
| 765 |
"your root WordPress directory."
|
| 766 |
|
| 767 |
+
#: app/model/settings.php:988
|
| 768 |
msgid ""
|
| 769 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
| 770 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
| 772 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
| 773 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
| 774 |
|
| 775 |
+
#: app/model/settings.php:1011
|
| 776 |
msgid "Templates cache improves site performance"
|
| 777 |
msgstr "Templates cache improves site performance"
|
| 778 |
|
| 779 |
+
#: app/model/settings.php:1024
|
| 780 |
msgid "Display events in <strong>calendar time zone</strong>"
|
| 781 |
msgstr "Display events in <strong>calendar time zone</strong>"
|
| 782 |
|
| 783 |
+
#: app/model/settings.php:1027
|
| 784 |
msgid ""
|
| 785 |
"If this box is checked events will appear in the calendar time zone with "
|
| 786 |
"time zone information displayed on the event details page."
|
| 1132 |
msgid "Sign In"
|
| 1133 |
msgstr "Sign In"
|
| 1134 |
|
| 1135 |
+
#: app/view/admin/settings.php:212 app/view/admin/ticketing-invitation.php:72
|
| 1136 |
msgid "Save Settings"
|
| 1137 |
msgstr "Save Settings"
|
| 1138 |
|
| 1195 |
msgid "All-in-One Event Calendar: Themes"
|
| 1196 |
msgstr "All-in-One Event Calendar: Themes"
|
| 1197 |
|
| 1198 |
+
#: app/view/admin/ticketing-invitation.php:32
|
| 1199 |
+
#: app/view/admin/ticketing-invitation.php:33
|
| 1200 |
+
msgid "Invitation"
|
| 1201 |
+
msgstr "Invitation"
|
| 1202 |
+
|
| 1203 |
+
#: app/view/admin/ticketing-invitation.php:48
|
| 1204 |
+
msgid "Ticketing Beta Invitation"
|
| 1205 |
+
msgstr "Ticketing Beta Invitation"
|
| 1206 |
+
|
| 1207 |
+
#: app/view/admin/ticketing-invitation.php:68
|
| 1208 |
+
msgid "Enable Ticketing Beta"
|
| 1209 |
+
msgstr "Enable Ticketing Beta"
|
| 1210 |
+
|
| 1211 |
+
#: app/view/admin/ticketing-invitation.php:95
|
| 1212 |
+
msgid "Time.ly Ticketing beta"
|
| 1213 |
+
msgstr "Time.ly Ticketing beta"
|
| 1214 |
+
|
| 1215 |
#: app/view/admin/tickets.php:36
|
| 1216 |
msgid "Ticketing"
|
| 1217 |
msgstr "Ticketing"
|
| 3469 |
msgid "All-in-One Event Calendar by Time.ly"
|
| 3470 |
msgstr "All-in-One Event Calendar by Time.ly"
|
| 3471 |
|
| 3472 |
+
#. #-#-#-#-# all-in-one-event-calendar.pot (All-in-One Event Calendar by Time.ly 2.3.10) #-#-#-#-#
|
| 3473 |
#. Plugin URI of the plugin/theme
|
| 3474 |
+
#. #-#-#-#-# all-in-one-event-calendar.pot (All-in-One Event Calendar by Time.ly 2.3.10) #-#-#-#-#
|
| 3475 |
#. Author URI of the plugin/theme
|
| 3476 |
msgid "http://time.ly/"
|
| 3477 |
msgstr "http://time.ly/"
|
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.3.
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
| 7 |
-
"POT-Creation-Date: 2016-02-
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
|
@@ -29,7 +29,7 @@ msgstr ""
|
|
| 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."
|
|
@@ -386,82 +386,82 @@ msgstr ""
|
|
| 386 |
msgid "Message"
|
| 387 |
msgstr ""
|
| 388 |
|
| 389 |
-
#: app/model/settings.php:
|
| 390 |
#: lib/html/element/setting/calendar-page-selector.php:50
|
| 391 |
msgid "Calendar page"
|
| 392 |
msgstr ""
|
| 393 |
|
| 394 |
-
#: app/model/settings.php:
|
| 395 |
msgid "Week starts on"
|
| 396 |
msgstr ""
|
| 397 |
|
| 398 |
-
#: app/model/settings.php:
|
| 399 |
msgid "Available views"
|
| 400 |
msgstr ""
|
| 401 |
|
| 402 |
-
#: app/model/settings.php:
|
| 403 |
msgid "Agenda"
|
| 404 |
msgid_plural "Agenda"
|
| 405 |
msgstr[0] ""
|
| 406 |
msgstr[1] ""
|
| 407 |
|
| 408 |
-
#: app/model/settings.php:
|
| 409 |
msgid "Day"
|
| 410 |
msgid_plural "Day"
|
| 411 |
msgstr[0] ""
|
| 412 |
msgstr[1] ""
|
| 413 |
|
| 414 |
-
#: app/model/settings.php:
|
| 415 |
msgid "Month"
|
| 416 |
msgid_plural "Month"
|
| 417 |
msgstr[0] ""
|
| 418 |
msgstr[1] ""
|
| 419 |
|
| 420 |
-
#: app/model/settings.php:
|
| 421 |
msgid "Week"
|
| 422 |
msgid_plural "Week"
|
| 423 |
msgstr[0] ""
|
| 424 |
msgstr[1] ""
|
| 425 |
|
| 426 |
-
#: app/model/settings.php:
|
| 427 |
msgid "Timezone"
|
| 428 |
msgstr ""
|
| 429 |
|
| 430 |
-
#: app/model/settings.php:
|
| 431 |
msgid "Preselected calendar filters"
|
| 432 |
msgstr ""
|
| 433 |
|
| 434 |
-
#: app/model/settings.php:
|
| 435 |
msgid ""
|
| 436 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
| 437 |
"selection."
|
| 438 |
msgstr ""
|
| 439 |
|
| 440 |
-
#: app/model/settings.php:
|
| 441 |
msgid "Default calendar start date (optional)"
|
| 442 |
msgstr ""
|
| 443 |
|
| 444 |
-
#: app/model/settings.php:
|
| 445 |
msgid "Agenda pages show at most"
|
| 446 |
msgstr ""
|
| 447 |
|
| 448 |
-
#: app/model/settings.php:
|
| 449 |
msgid "Week/Day view starts at"
|
| 450 |
msgstr ""
|
| 451 |
|
| 452 |
-
#: app/model/settings.php:
|
| 453 |
msgid "Week/Day view ends at"
|
| 454 |
msgstr ""
|
| 455 |
|
| 456 |
-
#: app/model/settings.php:
|
| 457 |
msgid "<strong>Word-wrap event stubs</strong> in Month view"
|
| 458 |
msgstr ""
|
| 459 |
|
| 460 |
-
#: app/model/settings.php:
|
| 461 |
msgid "Only applies to events that span a single day."
|
| 462 |
msgstr ""
|
| 463 |
|
| 464 |
-
#: app/model/settings.php:
|
| 465 |
msgid ""
|
| 466 |
"In <span class=\"ai1ec-tooltip-toggle\"\n"
|
| 467 |
"\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
|
|
@@ -470,127 +470,127 @@ msgid ""
|
|
| 470 |
"\t\t\t\t\t\tfrom last day shown</strong>"
|
| 471 |
msgstr ""
|
| 472 |
|
| 473 |
-
#: app/model/settings.php:
|
| 474 |
msgid "Keep all events <strong>expanded</strong> in Agenda view"
|
| 475 |
msgstr ""
|
| 476 |
|
| 477 |
-
#: app/model/settings.php:
|
| 478 |
msgid "<strong>Show year</strong> in calendar date labels"
|
| 479 |
msgstr ""
|
| 480 |
|
| 481 |
-
#: app/model/settings.php:
|
| 482 |
msgid "<strong>Show location in event titles</strong> in calendar views"
|
| 483 |
msgstr ""
|
| 484 |
|
| 485 |
-
#: app/model/settings.php:
|
| 486 |
msgid "<strong>Exclude</strong> events from search results"
|
| 487 |
msgstr ""
|
| 488 |
|
| 489 |
-
#: app/model/settings.php:
|
| 490 |
msgid ""
|
| 491 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
| 492 |
"calendar and single event views "
|
| 493 |
msgstr ""
|
| 494 |
|
| 495 |
-
#: app/model/settings.php:
|
| 496 |
msgid "Hide <strong>Get a Timely Calendar</strong> button"
|
| 497 |
msgstr ""
|
| 498 |
|
| 499 |
-
#: app/model/settings.php:
|
| 500 |
msgid " Hide <strong>Google Maps</strong> until clicked"
|
| 501 |
msgstr ""
|
| 502 |
|
| 503 |
-
#: app/model/settings.php:
|
| 504 |
msgid ""
|
| 505 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
| 506 |
"view"
|
| 507 |
msgstr ""
|
| 508 |
|
| 509 |
-
#: app/model/settings.php:
|
| 510 |
msgid "Only applies to first visible calendar found on the page."
|
| 511 |
msgstr ""
|
| 512 |
|
| 513 |
-
#: app/model/settings.php:
|
| 514 |
msgid "Offset affixed filter bar vertically by"
|
| 515 |
msgstr ""
|
| 516 |
|
| 517 |
-
#: app/model/settings.php:
|
| 518 |
msgid "Wide screens only (≥ 1200px)"
|
| 519 |
msgstr ""
|
| 520 |
|
| 521 |
-
#: app/model/settings.php:
|
| 522 |
msgid "Tablets only (< 980px)"
|
| 523 |
msgstr ""
|
| 524 |
|
| 525 |
-
#: app/model/settings.php:
|
| 526 |
msgid "Phones only (< 768px)"
|
| 527 |
msgstr ""
|
| 528 |
|
| 529 |
-
#: app/model/settings.php:
|
| 530 |
msgid "Strict compatibility content filtering"
|
| 531 |
msgstr ""
|
| 532 |
|
| 533 |
-
#: app/model/settings.php:
|
| 534 |
msgid " <strong>Hide featured image</strong> from event details page"
|
| 535 |
msgstr ""
|
| 536 |
|
| 537 |
-
#: app/model/settings.php:
|
| 538 |
msgid ""
|
| 539 |
"Select this option if your theme already displays each post's featured image."
|
| 540 |
msgstr ""
|
| 541 |
|
| 542 |
-
#: app/model/settings.php:
|
| 543 |
msgid "Input dates in this format"
|
| 544 |
msgstr ""
|
| 545 |
|
| 546 |
-
#: app/model/settings.php:
|
| 547 |
msgid "Default (d/m/yyyy)"
|
| 548 |
msgstr ""
|
| 549 |
|
| 550 |
-
#: app/model/settings.php:
|
| 551 |
msgid "US (m/d/yyyy)"
|
| 552 |
msgstr ""
|
| 553 |
|
| 554 |
-
#: app/model/settings.php:
|
| 555 |
msgid "ISO 8601 (yyyy-m-d)"
|
| 556 |
msgstr ""
|
| 557 |
|
| 558 |
-
#: app/model/settings.php:
|
| 559 |
msgid "Dotted (m.d.yyyy)"
|
| 560 |
msgstr ""
|
| 561 |
|
| 562 |
-
#: app/model/settings.php:
|
| 563 |
msgid " Use <strong>24h time</strong> in time pickers"
|
| 564 |
msgstr ""
|
| 565 |
|
| 566 |
-
#: app/model/settings.php:
|
| 567 |
msgid "<strong>Disable address autocomplete</strong> function"
|
| 568 |
msgstr ""
|
| 569 |
|
| 570 |
-
#: app/model/settings.php:
|
| 571 |
msgid ""
|
| 572 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
| 573 |
"address autocomplete function "
|
| 574 |
msgstr ""
|
| 575 |
|
| 576 |
-
#: app/model/settings.php:
|
| 577 |
msgid ""
|
| 578 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
| 579 |
"privileged users"
|
| 580 |
msgstr ""
|
| 581 |
|
| 582 |
-
#: app/model/settings.php:
|
| 583 |
msgid ""
|
| 584 |
"Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive "
|
| 585 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
| 586 |
"strong>."
|
| 587 |
msgstr ""
|
| 588 |
|
| 589 |
-
#: app/model/settings.php:
|
| 590 |
msgid "Move calendar into this DOM element"
|
| 591 |
msgstr ""
|
| 592 |
|
| 593 |
-
#: app/model/settings.php:
|
| 594 |
msgid ""
|
| 595 |
"Optional. Use this JavaScript-based shortcut to place the\n"
|
| 596 |
"\t\t\t\t\t\tcalendar a DOM element other than the usual page content "
|
|
@@ -604,65 +604,65 @@ msgid ""
|
|
| 604 |
"\t\t\t\t\t\tby the calendar."
|
| 605 |
msgstr ""
|
| 606 |
|
| 607 |
-
#: app/model/settings.php:
|
| 608 |
msgid ""
|
| 609 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
| 610 |
"multiple calendar output"
|
| 611 |
msgstr ""
|
| 612 |
|
| 613 |
-
#: app/model/settings.php:
|
| 614 |
msgid ""
|
| 615 |
"Try enabling this option if your calendar does not appear on the calendar "
|
| 616 |
"page. It is needed for compatibility with a small number of themes that call "
|
| 617 |
"<tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
|
| 618 |
msgstr ""
|
| 619 |
|
| 620 |
-
#: app/model/settings.php:
|
| 621 |
msgid "Disable <strong>gzip</strong> compression."
|
| 622 |
msgstr ""
|
| 623 |
|
| 624 |
-
#: app/model/settings.php:
|
| 625 |
msgid ""
|
| 626 |
"Use this option if calendar is unresponsive. <a href=\"http://support.time."
|
| 627 |
"ly/disable-gzip-compression/\">Read more</a> about the issue. (From version "
|
| 628 |
"2.1 onwards, gzip is disabled by default for maximum compatibility.)"
|
| 629 |
msgstr ""
|
| 630 |
|
| 631 |
-
#: app/model/settings.php:
|
| 632 |
msgid "Use frontend rendering."
|
| 633 |
msgstr ""
|
| 634 |
|
| 635 |
-
#: app/model/settings.php:
|
| 636 |
msgid ""
|
| 637 |
"Renders calendar views on the client rather than the server; can improve "
|
| 638 |
"performance."
|
| 639 |
msgstr ""
|
| 640 |
|
| 641 |
-
#: app/model/settings.php:
|
| 642 |
msgid "Use advanced JS cache."
|
| 643 |
msgstr ""
|
| 644 |
|
| 645 |
-
#: app/model/settings.php:
|
| 646 |
msgid "Cache dynamically generated JS files. Improves performance."
|
| 647 |
msgstr ""
|
| 648 |
|
| 649 |
-
#: app/model/settings.php:
|
| 650 |
msgid ""
|
| 651 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
| 652 |
"cache is unavailable."
|
| 653 |
msgstr ""
|
| 654 |
|
| 655 |
-
#: app/model/settings.php:
|
| 656 |
msgid ""
|
| 657 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
| 658 |
"CSS as a link rather than have it output inline."
|
| 659 |
msgstr ""
|
| 660 |
|
| 661 |
-
#: app/model/settings.php:
|
| 662 |
msgid "Current <strong>robots.txt</strong> on this site"
|
| 663 |
msgstr ""
|
| 664 |
|
| 665 |
-
#: app/model/settings.php:
|
| 666 |
msgid ""
|
| 667 |
"The Robot Exclusion Standard, also known as the Robots Exclusion Protocol "
|
| 668 |
"or\n"
|
|
@@ -676,21 +676,21 @@ msgid ""
|
|
| 676 |
"your root WordPress directory."
|
| 677 |
msgstr ""
|
| 678 |
|
| 679 |
-
#: app/model/settings.php:
|
| 680 |
msgid ""
|
| 681 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
| 682 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
| 683 |
msgstr ""
|
| 684 |
|
| 685 |
-
#: app/model/settings.php:
|
| 686 |
msgid "Templates cache improves site performance"
|
| 687 |
msgstr ""
|
| 688 |
|
| 689 |
-
#: app/model/settings.php:
|
| 690 |
msgid "Display events in <strong>calendar time zone</strong>"
|
| 691 |
msgstr ""
|
| 692 |
|
| 693 |
-
#: app/model/settings.php:
|
| 694 |
msgid ""
|
| 695 |
"If this box is checked events will appear in the calendar time zone with "
|
| 696 |
"time zone information displayed on the event details page."
|
|
@@ -1033,7 +1033,7 @@ msgstr ""
|
|
| 1033 |
msgid "Sign In"
|
| 1034 |
msgstr ""
|
| 1035 |
|
| 1036 |
-
#: app/view/admin/settings.php:212
|
| 1037 |
msgid "Save Settings"
|
| 1038 |
msgstr ""
|
| 1039 |
|
|
@@ -1095,6 +1095,23 @@ msgstr ""
|
|
| 1095 |
msgid "All-in-One Event Calendar: Themes"
|
| 1096 |
msgstr ""
|
| 1097 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1098 |
#: app/view/admin/tickets.php:36
|
| 1099 |
msgid "Ticketing"
|
| 1100 |
msgstr ""
|
|
@@ -3222,9 +3239,9 @@ msgstr ""
|
|
| 3222 |
msgid "All-in-One Event Calendar by Time.ly"
|
| 3223 |
msgstr ""
|
| 3224 |
|
| 3225 |
-
#. #-#-#-#-# all-in-one-event-calendar.pot (All-in-One Event Calendar by Time.ly 2.3.
|
| 3226 |
#. Plugin URI of the plugin/theme
|
| 3227 |
-
#. #-#-#-#-# all-in-one-event-calendar.pot (All-in-One Event Calendar by Time.ly 2.3.
|
| 3228 |
#. Author URI of the plugin/theme
|
| 3229 |
msgid "http://time.ly/"
|
| 3230 |
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.3.10\n"
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
| 7 |
+
"POT-Creation-Date: 2016-02-18 05:32:36+00:00\n"
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 29 |
msgid "Calendar Themes"
|
| 30 |
msgstr ""
|
| 31 |
|
| 32 |
+
#: app/controller/front.php:1053
|
| 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."
|
| 386 |
msgid "Message"
|
| 387 |
msgstr ""
|
| 388 |
|
| 389 |
+
#: app/model/settings.php:409
|
| 390 |
#: lib/html/element/setting/calendar-page-selector.php:50
|
| 391 |
msgid "Calendar page"
|
| 392 |
msgstr ""
|
| 393 |
|
| 394 |
+
#: app/model/settings.php:419
|
| 395 |
msgid "Week starts on"
|
| 396 |
msgstr ""
|
| 397 |
|
| 398 |
+
#: app/model/settings.php:432
|
| 399 |
msgid "Available views"
|
| 400 |
msgstr ""
|
| 401 |
|
| 402 |
+
#: app/model/settings.php:440
|
| 403 |
msgid "Agenda"
|
| 404 |
msgid_plural "Agenda"
|
| 405 |
msgstr[0] ""
|
| 406 |
msgstr[1] ""
|
| 407 |
|
| 408 |
+
#: app/model/settings.php:451
|
| 409 |
msgid "Day"
|
| 410 |
msgid_plural "Day"
|
| 411 |
msgstr[0] ""
|
| 412 |
msgstr[1] ""
|
| 413 |
|
| 414 |
+
#: app/model/settings.php:462
|
| 415 |
msgid "Month"
|
| 416 |
msgid_plural "Month"
|
| 417 |
msgstr[0] ""
|
| 418 |
msgstr[1] ""
|
| 419 |
|
| 420 |
+
#: app/model/settings.php:473
|
| 421 |
msgid "Week"
|
| 422 |
msgid_plural "Week"
|
| 423 |
msgstr[0] ""
|
| 424 |
msgstr[1] ""
|
| 425 |
|
| 426 |
+
#: app/model/settings.php:487
|
| 427 |
msgid "Timezone"
|
| 428 |
msgstr ""
|
| 429 |
|
| 430 |
+
#: app/model/settings.php:500
|
| 431 |
msgid "Preselected calendar filters"
|
| 432 |
msgstr ""
|
| 433 |
|
| 434 |
+
#: app/model/settings.php:501 app/view/calendar/widget.php:128
|
| 435 |
msgid ""
|
| 436 |
"To clear, hold ⌘/<abbr class=\"initialism\">CTRL</abbr> and click "
|
| 437 |
"selection."
|
| 438 |
msgstr ""
|
| 439 |
|
| 440 |
+
#: app/model/settings.php:516
|
| 441 |
msgid "Default calendar start date (optional)"
|
| 442 |
msgstr ""
|
| 443 |
|
| 444 |
+
#: app/model/settings.php:527
|
| 445 |
msgid "Agenda pages show at most"
|
| 446 |
msgstr ""
|
| 447 |
|
| 448 |
+
#: app/model/settings.php:540
|
| 449 |
msgid "Week/Day view starts at"
|
| 450 |
msgstr ""
|
| 451 |
|
| 452 |
+
#: app/model/settings.php:553
|
| 453 |
msgid "Week/Day view ends at"
|
| 454 |
msgstr ""
|
| 455 |
|
| 456 |
+
#: app/model/settings.php:566
|
| 457 |
msgid "<strong>Word-wrap event stubs</strong> in Month view"
|
| 458 |
msgstr ""
|
| 459 |
|
| 460 |
+
#: app/model/settings.php:569
|
| 461 |
msgid "Only applies to events that span a single day."
|
| 462 |
msgstr ""
|
| 463 |
|
| 464 |
+
#: app/model/settings.php:581
|
| 465 |
msgid ""
|
| 466 |
"In <span class=\"ai1ec-tooltip-toggle\"\n"
|
| 467 |
"\t\t\t\t\t\tdata-original-title=\"These include Agenda view,\n"
|
| 470 |
"\t\t\t\t\t\tfrom last day shown</strong>"
|
| 471 |
msgstr ""
|
| 472 |
|
| 473 |
+
#: app/model/settings.php:597
|
| 474 |
msgid "Keep all events <strong>expanded</strong> in Agenda view"
|
| 475 |
msgstr ""
|
| 476 |
|
| 477 |
+
#: app/model/settings.php:609
|
| 478 |
msgid "<strong>Show year</strong> in calendar date labels"
|
| 479 |
msgstr ""
|
| 480 |
|
| 481 |
+
#: app/model/settings.php:621
|
| 482 |
msgid "<strong>Show location in event titles</strong> in calendar views"
|
| 483 |
msgstr ""
|
| 484 |
|
| 485 |
+
#: app/model/settings.php:633
|
| 486 |
msgid "<strong>Exclude</strong> events from search results"
|
| 487 |
msgstr ""
|
| 488 |
|
| 489 |
+
#: app/model/settings.php:645
|
| 490 |
msgid ""
|
| 491 |
"Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in "
|
| 492 |
"calendar and single event views "
|
| 493 |
msgstr ""
|
| 494 |
|
| 495 |
+
#: app/model/settings.php:657
|
| 496 |
msgid "Hide <strong>Get a Timely Calendar</strong> button"
|
| 497 |
msgstr ""
|
| 498 |
|
| 499 |
+
#: app/model/settings.php:669
|
| 500 |
msgid " Hide <strong>Google Maps</strong> until clicked"
|
| 501 |
msgstr ""
|
| 502 |
|
| 503 |
+
#: app/model/settings.php:681
|
| 504 |
msgid ""
|
| 505 |
" <strong>Affix filter menu</strong> to top of window when it scrolls out of "
|
| 506 |
"view"
|
| 507 |
msgstr ""
|
| 508 |
|
| 509 |
+
#: app/model/settings.php:684
|
| 510 |
msgid "Only applies to first visible calendar found on the page."
|
| 511 |
msgstr ""
|
| 512 |
|
| 513 |
+
#: app/model/settings.php:696
|
| 514 |
msgid "Offset affixed filter bar vertically by"
|
| 515 |
msgstr ""
|
| 516 |
|
| 517 |
+
#: app/model/settings.php:711
|
| 518 |
msgid "Wide screens only (≥ 1200px)"
|
| 519 |
msgstr ""
|
| 520 |
|
| 521 |
+
#: app/model/settings.php:726
|
| 522 |
msgid "Tablets only (< 980px)"
|
| 523 |
msgstr ""
|
| 524 |
|
| 525 |
+
#: app/model/settings.php:741
|
| 526 |
msgid "Phones only (< 768px)"
|
| 527 |
msgstr ""
|
| 528 |
|
| 529 |
+
#: app/model/settings.php:754
|
| 530 |
msgid "Strict compatibility content filtering"
|
| 531 |
msgstr ""
|
| 532 |
|
| 533 |
+
#: app/model/settings.php:766
|
| 534 |
msgid " <strong>Hide featured image</strong> from event details page"
|
| 535 |
msgstr ""
|
| 536 |
|
| 537 |
+
#: app/model/settings.php:769
|
| 538 |
msgid ""
|
| 539 |
"Select this option if your theme already displays each post's featured image."
|
| 540 |
msgstr ""
|
| 541 |
|
| 542 |
+
#: app/model/settings.php:780
|
| 543 |
msgid "Input dates in this format"
|
| 544 |
msgstr ""
|
| 545 |
|
| 546 |
+
#: app/model/settings.php:785
|
| 547 |
msgid "Default (d/m/yyyy)"
|
| 548 |
msgstr ""
|
| 549 |
|
| 550 |
+
#: app/model/settings.php:789
|
| 551 |
msgid "US (m/d/yyyy)"
|
| 552 |
msgstr ""
|
| 553 |
|
| 554 |
+
#: app/model/settings.php:793
|
| 555 |
msgid "ISO 8601 (yyyy-m-d)"
|
| 556 |
msgstr ""
|
| 557 |
|
| 558 |
+
#: app/model/settings.php:797
|
| 559 |
msgid "Dotted (m.d.yyyy)"
|
| 560 |
msgstr ""
|
| 561 |
|
| 562 |
+
#: app/model/settings.php:809
|
| 563 |
msgid " Use <strong>24h time</strong> in time pickers"
|
| 564 |
msgstr ""
|
| 565 |
|
| 566 |
+
#: app/model/settings.php:820
|
| 567 |
msgid "<strong>Disable address autocomplete</strong> function"
|
| 568 |
msgstr ""
|
| 569 |
|
| 570 |
+
#: app/model/settings.php:831
|
| 571 |
msgid ""
|
| 572 |
"Use the configured <strong>region</strong> (WordPress locale) to bias the "
|
| 573 |
"address autocomplete function "
|
| 574 |
msgstr ""
|
| 575 |
|
| 576 |
+
#: app/model/settings.php:847
|
| 577 |
msgid ""
|
| 578 |
" Show the old <strong>Post Your Event</strong> button above the calendar to "
|
| 579 |
"privileged users"
|
| 580 |
msgstr ""
|
| 581 |
|
| 582 |
+
#: app/model/settings.php:850
|
| 583 |
msgid ""
|
| 584 |
"Install the <a target=\"_blank\" href=\"http://time.ly/\">Interactive "
|
| 585 |
"Frontend Extension</a> for the <strong>frontend Post Your Event form</"
|
| 586 |
"strong>."
|
| 587 |
msgstr ""
|
| 588 |
|
| 589 |
+
#: app/model/settings.php:871
|
| 590 |
msgid "Move calendar into this DOM element"
|
| 591 |
msgstr ""
|
| 592 |
|
| 593 |
+
#: app/model/settings.php:873
|
| 594 |
msgid ""
|
| 595 |
"Optional. Use this JavaScript-based shortcut to place the\n"
|
| 596 |
"\t\t\t\t\t\tcalendar a DOM element other than the usual page content "
|
| 604 |
"\t\t\t\t\t\tby the calendar."
|
| 605 |
msgstr ""
|
| 606 |
|
| 607 |
+
#: app/model/settings.php:892
|
| 608 |
msgid ""
|
| 609 |
"<strong>Skip <tt>in_the_loop()</tt> check </strong> that protects against "
|
| 610 |
"multiple calendar output"
|
| 611 |
msgstr ""
|
| 612 |
|
| 613 |
+
#: app/model/settings.php:895
|
| 614 |
msgid ""
|
| 615 |
"Try enabling this option if your calendar does not appear on the calendar "
|
| 616 |
"page. It is needed for compatibility with a small number of themes that call "
|
| 617 |
"<tt>the_content()</tt> from outside of The Loop. Leave disabled otherwise."
|
| 618 |
msgstr ""
|
| 619 |
|
| 620 |
+
#: app/model/settings.php:907
|
| 621 |
msgid "Disable <strong>gzip</strong> compression."
|
| 622 |
msgstr ""
|
| 623 |
|
| 624 |
+
#: app/model/settings.php:910
|
| 625 |
msgid ""
|
| 626 |
"Use this option if calendar is unresponsive. <a href=\"http://support.time."
|
| 627 |
"ly/disable-gzip-compression/\">Read more</a> about the issue. (From version "
|
| 628 |
"2.1 onwards, gzip is disabled by default for maximum compatibility.)"
|
| 629 |
msgstr ""
|
| 630 |
|
| 631 |
+
#: app/model/settings.php:922
|
| 632 |
msgid "Use frontend rendering."
|
| 633 |
msgstr ""
|
| 634 |
|
| 635 |
+
#: app/model/settings.php:925
|
| 636 |
msgid ""
|
| 637 |
"Renders calendar views on the client rather than the server; can improve "
|
| 638 |
"performance."
|
| 639 |
msgstr ""
|
| 640 |
|
| 641 |
+
#: app/model/settings.php:937
|
| 642 |
msgid "Use advanced JS cache."
|
| 643 |
msgstr ""
|
| 644 |
|
| 645 |
+
#: app/model/settings.php:940
|
| 646 |
msgid "Cache dynamically generated JS files. Improves performance."
|
| 647 |
msgstr ""
|
| 648 |
|
| 649 |
+
#: app/model/settings.php:952
|
| 650 |
msgid ""
|
| 651 |
"<strong>Link CSS</strong> in <code><head></code> section when file "
|
| 652 |
"cache is unavailable."
|
| 653 |
msgstr ""
|
| 654 |
|
| 655 |
+
#: app/model/settings.php:955
|
| 656 |
msgid ""
|
| 657 |
"Use this option if file cache is unavailable and you would prefer to serve "
|
| 658 |
"CSS as a link rather than have it output inline."
|
| 659 |
msgstr ""
|
| 660 |
|
| 661 |
+
#: app/model/settings.php:967
|
| 662 |
msgid "Current <strong>robots.txt</strong> on this site"
|
| 663 |
msgstr ""
|
| 664 |
|
| 665 |
+
#: app/model/settings.php:971
|
| 666 |
msgid ""
|
| 667 |
"The Robot Exclusion Standard, also known as the Robots Exclusion Protocol "
|
| 668 |
"or\n"
|
| 676 |
"your root WordPress directory."
|
| 677 |
msgstr ""
|
| 678 |
|
| 679 |
+
#: app/model/settings.php:988
|
| 680 |
msgid ""
|
| 681 |
"<strong>Publicize, promote, and share my events</strong> marked as public on "
|
| 682 |
"the Timely network. (<a href=\"%s\" target=\"_blank\">Learn more »</a>)"
|
| 683 |
msgstr ""
|
| 684 |
|
| 685 |
+
#: app/model/settings.php:1011
|
| 686 |
msgid "Templates cache improves site performance"
|
| 687 |
msgstr ""
|
| 688 |
|
| 689 |
+
#: app/model/settings.php:1024
|
| 690 |
msgid "Display events in <strong>calendar time zone</strong>"
|
| 691 |
msgstr ""
|
| 692 |
|
| 693 |
+
#: app/model/settings.php:1027
|
| 694 |
msgid ""
|
| 695 |
"If this box is checked events will appear in the calendar time zone with "
|
| 696 |
"time zone information displayed on the event details page."
|
| 1033 |
msgid "Sign In"
|
| 1034 |
msgstr ""
|
| 1035 |
|
| 1036 |
+
#: app/view/admin/settings.php:212 app/view/admin/ticketing-invitation.php:72
|
| 1037 |
msgid "Save Settings"
|
| 1038 |
msgstr ""
|
| 1039 |
|
| 1095 |
msgid "All-in-One Event Calendar: Themes"
|
| 1096 |
msgstr ""
|
| 1097 |
|
| 1098 |
+
#: app/view/admin/ticketing-invitation.php:32
|
| 1099 |
+
#: app/view/admin/ticketing-invitation.php:33
|
| 1100 |
+
msgid "Invitation"
|
| 1101 |
+
msgstr ""
|
| 1102 |
+
|
| 1103 |
+
#: app/view/admin/ticketing-invitation.php:48
|
| 1104 |
+
msgid "Ticketing Beta Invitation"
|
| 1105 |
+
msgstr ""
|
| 1106 |
+
|
| 1107 |
+
#: app/view/admin/ticketing-invitation.php:68
|
| 1108 |
+
msgid "Enable Ticketing Beta"
|
| 1109 |
+
msgstr ""
|
| 1110 |
+
|
| 1111 |
+
#: app/view/admin/ticketing-invitation.php:95
|
| 1112 |
+
msgid "Time.ly Ticketing beta"
|
| 1113 |
+
msgstr ""
|
| 1114 |
+
|
| 1115 |
#: app/view/admin/tickets.php:36
|
| 1116 |
msgid "Ticketing"
|
| 1117 |
msgstr ""
|
| 3239 |
msgid "All-in-One Event Calendar by Time.ly"
|
| 3240 |
msgstr ""
|
| 3241 |
|
| 3242 |
+
#. #-#-#-#-# all-in-one-event-calendar.pot (All-in-One Event Calendar by Time.ly 2.3.10) #-#-#-#-#
|
| 3243 |
#. Plugin URI of the plugin/theme
|
| 3244 |
+
#. #-#-#-#-# all-in-one-event-calendar.pot (All-in-One Event Calendar by Time.ly 2.3.10) #-#-#-#-#
|
| 3245 |
#. Author URI of the plugin/theme
|
| 3246 |
msgid "http://time.ly/"
|
| 3247 |
msgstr ""
|
lib/bootstrap/loader-map.php
CHANGED
|
@@ -44,6 +44,13 @@
|
|
| 44 |
'i' => 'g',
|
| 45 |
'r' => 'y',
|
| 46 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
'Ai1ec_App' =>
|
| 48 |
array (
|
| 49 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'model' . DIRECTORY_SEPARATOR . 'app.php',
|
|
@@ -1399,6 +1406,13 @@
|
|
| 1399 |
'i' => 'g',
|
| 1400 |
'r' => 'y',
|
| 1401 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1402 |
'Ai1ec_Time_I18n_Utility' =>
|
| 1403 |
array (
|
| 1404 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'date' . DIRECTORY_SEPARATOR . 'time-i18n.php',
|
|
@@ -1553,6 +1567,13 @@
|
|
| 1553 |
'i' => 'g',
|
| 1554 |
'r' => 'y',
|
| 1555 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1556 |
'Ai1ec_View_Admin_Widget' =>
|
| 1557 |
array (
|
| 1558 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'view' . DIRECTORY_SEPARATOR . 'calendar' . DIRECTORY_SEPARATOR . 'widget.php',
|
|
@@ -2913,6 +2934,12 @@
|
|
| 2913 |
'c' => '__TwigTemplate_788a05e53df23570bd080700c3d94ab1071e6da70305581541040dbcedef230f',
|
| 2914 |
'i' => 'g',
|
| 2915 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2916 |
'__TwigTemplate_84a6c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740' =>
|
| 2917 |
array (
|
| 2918 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '84' . DIRECTORY_SEPARATOR . 'a6' . DIRECTORY_SEPARATOR . 'c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740.php',
|
|
@@ -3027,6 +3054,12 @@
|
|
| 3027 |
'c' => '__TwigTemplate_b69bc1a2e974a2cc888cbb54b361d86981c0c2cc33fd8a93ba2368fb485deacb',
|
| 3028 |
'i' => 'g',
|
| 3029 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3030 |
'__TwigTemplate_c1804f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c' =>
|
| 3031 |
array (
|
| 3032 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'c1' . DIRECTORY_SEPARATOR . '80' . DIRECTORY_SEPARATOR . '4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c.php',
|
|
@@ -3400,6 +3433,13 @@
|
|
| 3400 |
'i' => 'g',
|
| 3401 |
'r' => 'y',
|
| 3402 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3403 |
'compatibility.check' =>
|
| 3404 |
array (
|
| 3405 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'compatibility' . DIRECTORY_SEPARATOR . 'check.php',
|
|
@@ -3763,6 +3803,13 @@
|
|
| 3763 |
'i' => 'g',
|
| 3764 |
'r' => 'y',
|
| 3765 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3766 |
'html.element.href' =>
|
| 3767 |
array (
|
| 3768 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'html' . DIRECTORY_SEPARATOR . 'element' . DIRECTORY_SEPARATOR . 'href.php',
|
|
@@ -4836,6 +4883,12 @@
|
|
| 4836 |
'c' => '__TwigTemplate_788a05e53df23570bd080700c3d94ab1071e6da70305581541040dbcedef230f',
|
| 4837 |
'i' => 'g',
|
| 4838 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4839 |
'twig.84.a6.c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740' =>
|
| 4840 |
array (
|
| 4841 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '84' . DIRECTORY_SEPARATOR . 'a6' . DIRECTORY_SEPARATOR . 'c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740.php',
|
|
@@ -5892,6 +5945,12 @@
|
|
| 5892 |
'c' => '__TwigTemplate_b69bc1a2e974a2cc888cbb54b361d86981c0c2cc33fd8a93ba2368fb485deacb',
|
| 5893 |
'i' => 'g',
|
| 5894 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5895 |
'twig.c1.80.4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c' =>
|
| 5896 |
array (
|
| 5897 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'c1' . DIRECTORY_SEPARATOR . '80' . DIRECTORY_SEPARATOR . '4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c.php',
|
|
@@ -6150,6 +6209,13 @@
|
|
| 6150 |
'i' => 'g',
|
| 6151 |
'r' => 'y',
|
| 6152 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6153 |
'view.admin.tickets' =>
|
| 6154 |
array (
|
| 6155 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'view' . DIRECTORY_SEPARATOR . 'admin' . DIRECTORY_SEPARATOR . 'tickets.php',
|
| 44 |
'i' => 'g',
|
| 45 |
'r' => 'y',
|
| 46 |
),
|
| 47 |
+
'Ai1ec_Api_Settings' =>
|
| 48 |
+
array (
|
| 49 |
+
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'helper' . DIRECTORY_SEPARATOR . 'api-settings.php',
|
| 50 |
+
'c' => 'Ai1ec_Api_Settings',
|
| 51 |
+
'i' => 'g',
|
| 52 |
+
'r' => 'y',
|
| 53 |
+
),
|
| 54 |
'Ai1ec_App' =>
|
| 55 |
array (
|
| 56 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'model' . DIRECTORY_SEPARATOR . 'app.php',
|
| 1406 |
'i' => 'g',
|
| 1407 |
'r' => 'y',
|
| 1408 |
),
|
| 1409 |
+
'Ai1ec_Ticketing_Invitation_Save' =>
|
| 1410 |
+
array (
|
| 1411 |
+
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'command' . DIRECTORY_SEPARATOR . 'save-ticketing-invitation.php',
|
| 1412 |
+
'c' => 'Ai1ec_Ticketing_Invitation_Save',
|
| 1413 |
+
'i' => 'g',
|
| 1414 |
+
'r' => 'y',
|
| 1415 |
+
),
|
| 1416 |
'Ai1ec_Time_I18n_Utility' =>
|
| 1417 |
array (
|
| 1418 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'date' . DIRECTORY_SEPARATOR . 'time-i18n.php',
|
| 1567 |
'i' => 'g',
|
| 1568 |
'r' => 'y',
|
| 1569 |
),
|
| 1570 |
+
'Ai1ec_View_Admin_Ticketing_Invitation' =>
|
| 1571 |
+
array (
|
| 1572 |
+
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'view' . DIRECTORY_SEPARATOR . 'admin' . DIRECTORY_SEPARATOR . 'ticketing-invitation.php',
|
| 1573 |
+
'c' => 'Ai1ec_View_Admin_Ticketing_Invitation',
|
| 1574 |
+
'i' => 'g',
|
| 1575 |
+
'r' => 'y',
|
| 1576 |
+
),
|
| 1577 |
'Ai1ec_View_Admin_Widget' =>
|
| 1578 |
array (
|
| 1579 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'view' . DIRECTORY_SEPARATOR . 'calendar' . DIRECTORY_SEPARATOR . 'widget.php',
|
| 2934 |
'c' => '__TwigTemplate_788a05e53df23570bd080700c3d94ab1071e6da70305581541040dbcedef230f',
|
| 2935 |
'i' => 'g',
|
| 2936 |
),
|
| 2937 |
+
'__TwigTemplate_7a6dd3c9340526e7a2f9357b3af96bd5f5f309d4a5fe349a1e5de81bc6b63f6d' =>
|
| 2938 |
+
array (
|
| 2939 |
+
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '7a' . DIRECTORY_SEPARATOR . '6d' . DIRECTORY_SEPARATOR . 'd3c9340526e7a2f9357b3af96bd5f5f309d4a5fe349a1e5de81bc6b63f6d.php',
|
| 2940 |
+
'c' => '__TwigTemplate_7a6dd3c9340526e7a2f9357b3af96bd5f5f309d4a5fe349a1e5de81bc6b63f6d',
|
| 2941 |
+
'i' => 'g',
|
| 2942 |
+
),
|
| 2943 |
'__TwigTemplate_84a6c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740' =>
|
| 2944 |
array (
|
| 2945 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '84' . DIRECTORY_SEPARATOR . 'a6' . DIRECTORY_SEPARATOR . 'c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740.php',
|
| 3054 |
'c' => '__TwigTemplate_b69bc1a2e974a2cc888cbb54b361d86981c0c2cc33fd8a93ba2368fb485deacb',
|
| 3055 |
'i' => 'g',
|
| 3056 |
),
|
| 3057 |
+
'__TwigTemplate_bb015d4e90dc3cf259594244ba3abc1467b0bdfce6d4bb5b7471c129fc7adefb' =>
|
| 3058 |
+
array (
|
| 3059 |
+
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'bb' . DIRECTORY_SEPARATOR . '01' . DIRECTORY_SEPARATOR . '5d4e90dc3cf259594244ba3abc1467b0bdfce6d4bb5b7471c129fc7adefb.php',
|
| 3060 |
+
'c' => '__TwigTemplate_bb015d4e90dc3cf259594244ba3abc1467b0bdfce6d4bb5b7471c129fc7adefb',
|
| 3061 |
+
'i' => 'g',
|
| 3062 |
+
),
|
| 3063 |
'__TwigTemplate_c1804f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c' =>
|
| 3064 |
array (
|
| 3065 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'c1' . DIRECTORY_SEPARATOR . '80' . DIRECTORY_SEPARATOR . '4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c.php',
|
| 3433 |
'i' => 'g',
|
| 3434 |
'r' => 'y',
|
| 3435 |
),
|
| 3436 |
+
'command.save-ticketing-invitation' =>
|
| 3437 |
+
array (
|
| 3438 |
+
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'command' . DIRECTORY_SEPARATOR . 'save-ticketing-invitation.php',
|
| 3439 |
+
'c' => 'Ai1ec_Ticketing_Invitation_Save',
|
| 3440 |
+
'i' => 'g',
|
| 3441 |
+
'r' => 'y',
|
| 3442 |
+
),
|
| 3443 |
'compatibility.check' =>
|
| 3444 |
array (
|
| 3445 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'compatibility' . DIRECTORY_SEPARATOR . 'check.php',
|
| 3803 |
'i' => 'g',
|
| 3804 |
'r' => 'y',
|
| 3805 |
),
|
| 3806 |
+
'helper.api-settings' =>
|
| 3807 |
+
array (
|
| 3808 |
+
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'helper' . DIRECTORY_SEPARATOR . 'api-settings.php',
|
| 3809 |
+
'c' => 'Ai1ec_Api_Settings',
|
| 3810 |
+
'i' => 'g',
|
| 3811 |
+
'r' => 'y',
|
| 3812 |
+
),
|
| 3813 |
'html.element.href' =>
|
| 3814 |
array (
|
| 3815 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'html' . DIRECTORY_SEPARATOR . 'element' . DIRECTORY_SEPARATOR . 'href.php',
|
| 4883 |
'c' => '__TwigTemplate_788a05e53df23570bd080700c3d94ab1071e6da70305581541040dbcedef230f',
|
| 4884 |
'i' => 'g',
|
| 4885 |
),
|
| 4886 |
+
'twig.7a.6d.d3c9340526e7a2f9357b3af96bd5f5f309d4a5fe349a1e5de81bc6b63f6d' =>
|
| 4887 |
+
array (
|
| 4888 |
+
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '7a' . DIRECTORY_SEPARATOR . '6d' . DIRECTORY_SEPARATOR . 'd3c9340526e7a2f9357b3af96bd5f5f309d4a5fe349a1e5de81bc6b63f6d.php',
|
| 4889 |
+
'c' => '__TwigTemplate_7a6dd3c9340526e7a2f9357b3af96bd5f5f309d4a5fe349a1e5de81bc6b63f6d',
|
| 4890 |
+
'i' => 'g',
|
| 4891 |
+
),
|
| 4892 |
'twig.84.a6.c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740' =>
|
| 4893 |
array (
|
| 4894 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '84' . DIRECTORY_SEPARATOR . 'a6' . DIRECTORY_SEPARATOR . 'c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740.php',
|
| 5945 |
'c' => '__TwigTemplate_b69bc1a2e974a2cc888cbb54b361d86981c0c2cc33fd8a93ba2368fb485deacb',
|
| 5946 |
'i' => 'g',
|
| 5947 |
),
|
| 5948 |
+
'twig.bb.01.5d4e90dc3cf259594244ba3abc1467b0bdfce6d4bb5b7471c129fc7adefb' =>
|
| 5949 |
+
array (
|
| 5950 |
+
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'bb' . DIRECTORY_SEPARATOR . '01' . DIRECTORY_SEPARATOR . '5d4e90dc3cf259594244ba3abc1467b0bdfce6d4bb5b7471c129fc7adefb.php',
|
| 5951 |
+
'c' => '__TwigTemplate_bb015d4e90dc3cf259594244ba3abc1467b0bdfce6d4bb5b7471c129fc7adefb',
|
| 5952 |
+
'i' => 'g',
|
| 5953 |
+
),
|
| 5954 |
'twig.c1.80.4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c' =>
|
| 5955 |
array (
|
| 5956 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'c1' . DIRECTORY_SEPARATOR . '80' . DIRECTORY_SEPARATOR . '4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c.php',
|
| 6209 |
'i' => 'g',
|
| 6210 |
'r' => 'y',
|
| 6211 |
),
|
| 6212 |
+
'view.admin.ticketing-invitation' =>
|
| 6213 |
+
array (
|
| 6214 |
+
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'view' . DIRECTORY_SEPARATOR . 'admin' . DIRECTORY_SEPARATOR . 'ticketing-invitation.php',
|
| 6215 |
+
'c' => 'Ai1ec_View_Admin_Ticketing_Invitation',
|
| 6216 |
+
'i' => 'g',
|
| 6217 |
+
'r' => 'y',
|
| 6218 |
+
),
|
| 6219 |
'view.admin.tickets' =>
|
| 6220 |
array (
|
| 6221 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'view' . DIRECTORY_SEPARATOR . 'admin' . DIRECTORY_SEPARATOR . 'tickets.php',
|
lib/command/resolver.php
CHANGED
|
@@ -78,6 +78,17 @@ class Ai1ec_Command_Resolver {
|
|
| 78 |
)
|
| 79 |
)
|
| 80 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
$this->add_command(
|
| 82 |
$registry->get(
|
| 83 |
'command.save-theme-options',
|
| 78 |
)
|
| 79 |
)
|
| 80 |
);
|
| 81 |
+
$this->add_command(
|
| 82 |
+
$registry->get(
|
| 83 |
+
'command.save-ticketing-invitation',
|
| 84 |
+
$request,
|
| 85 |
+
array(
|
| 86 |
+
'action' => 'ai1ec_ticketing_invitation_save',
|
| 87 |
+
'nonce_action' => Ai1ec_View_Admin_Ticketing_Invitation::NONCE_ACTION,
|
| 88 |
+
'nonce_name' => Ai1ec_View_Admin_Ticketing_Invitation::NONCE_NAME,
|
| 89 |
+
)
|
| 90 |
+
)
|
| 91 |
+
);
|
| 92 |
$this->add_command(
|
| 93 |
$registry->get(
|
| 94 |
'command.save-theme-options',
|
lib/command/save-ticketing-invitation.php
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
|
| 3 |
+
/**
|
| 4 |
+
* The concrete command that save settings.
|
| 5 |
+
*
|
| 6 |
+
* @author Time.ly Network Inc.
|
| 7 |
+
* @since 2.3
|
| 8 |
+
*
|
| 9 |
+
* @package AI1EC
|
| 10 |
+
* @subpackage AI1EC.Command
|
| 11 |
+
*/
|
| 12 |
+
class Ai1ec_Ticketing_Invitation_Save extends Ai1ec_Command_Save_Abstract {
|
| 13 |
+
|
| 14 |
+
/* (non-PHPdoc)
|
| 15 |
+
* @see Ai1ec_Command::do_execute()
|
| 16 |
+
*/
|
| 17 |
+
public function do_execute() {
|
| 18 |
+
|
| 19 |
+
$api_settings = $this->_registry->get( 'helper.api-settings' );
|
| 20 |
+
|
| 21 |
+
if ( isset( $_POST['ai1ec_ticketing'] ) && $_POST['ai1ec_ticketing'] == '1' ) {
|
| 22 |
+
$api_settings->ai1ec_setting_up_api_flags( true );
|
| 23 |
+
} else {
|
| 24 |
+
$api_settings->ai1ec_setting_up_api_flags( false );
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
return array(
|
| 28 |
+
'url' => ai1ec_admin_url(
|
| 29 |
+
'edit.php?post_type=ai1ec_event&page=all-in-one-event-calendar-invitation'
|
| 30 |
+
),
|
| 31 |
+
'query_args' => array(
|
| 32 |
+
'updated' => 1
|
| 33 |
+
)
|
| 34 |
+
);
|
| 35 |
+
}
|
| 36 |
+
}
|
public/admin/box_event_cost.php
CHANGED
|
@@ -28,7 +28,7 @@
|
|
| 28 |
<?php _e( 'Free event', AI1EC_PLUGIN_NAME ); ?>
|
| 29 |
</label>
|
| 30 |
<?php
|
| 31 |
-
if (
|
| 32 |
<label for="ai1ec_has_tickets">
|
| 33 |
<input type="radio" value="tickets" id="ai1ec_has_tickets"
|
| 34 |
name="ai1ec_cost_type" <?php if ( 'tickets' == $cost_type ) { echo 'checked'; } ?>>
|
|
@@ -43,7 +43,7 @@
|
|
| 43 |
</div>
|
| 44 |
|
| 45 |
<?php
|
| 46 |
-
if (
|
| 47 |
|
| 48 |
if ( ! $ticketing ): ?>
|
| 49 |
<div class="ai1ec-panel ai1ec-tickets-panel ai1ec-tickets-form">
|
| 28 |
<?php _e( 'Free event', AI1EC_PLUGIN_NAME ); ?>
|
| 29 |
</label>
|
| 30 |
<?php
|
| 31 |
+
if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ):?>
|
| 32 |
<label for="ai1ec_has_tickets">
|
| 33 |
<input type="radio" value="tickets" id="ai1ec_has_tickets"
|
| 34 |
name="ai1ec_cost_type" <?php if ( 'tickets' == $cost_type ) { echo 'checked'; } ?>>
|
| 43 |
</div>
|
| 44 |
|
| 45 |
<?php
|
| 46 |
+
if ( $this->_registry->get( 'helper.api-settings' )->ai1ec_api_enabled() ):
|
| 47 |
|
| 48 |
if ( ! $ticketing ): ?>
|
| 49 |
<div class="ai1ec-panel ai1ec-tickets-panel ai1ec-tickets-form">
|
public/admin/twig/ticketing-invitation/manage.twig
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{% if submit is defined %}
|
| 2 |
+
{% from 'form-elements/input.twig' import button %}
|
| 3 |
+
|
| 4 |
+
<br>
|
| 5 |
+
<input type="checkbox"
|
| 6 |
+
id={{ invitation_chk.id }}
|
| 7 |
+
name={{ invitation_chk.name }}
|
| 8 |
+
value={{ invitation_chk.value }}
|
| 9 |
+
{{ invitation_chk.checked }}> {{ enable_ticketing_text }}
|
| 10 |
+
|
| 11 |
+
<div class="span12 ai1ec-text-right">
|
| 12 |
+
{{ button( submit.id, submit.id, submit.value, 'submit', submit.args ) }}
|
| 13 |
+
</div>
|
| 14 |
+
|
| 15 |
+
{% endif %}
|
public/admin/twig/ticketing-invitation/page.twig
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<div class="wrap">
|
| 2 |
+
<h2>{{ title }}</h2>
|
| 3 |
+
<div id="poststuff">
|
| 4 |
+
<form method="post" action="{{ action }}">
|
| 5 |
+
{{ wp_nonce_field( nonce.action, nonce.name, nonce.referrer ) }}
|
| 6 |
+
<div class="metabox-holder">
|
| 7 |
+
<div class="post-box-container column-1-ai1ec left-side timely">
|
| 8 |
+
{{ do_meta_boxes( metabox.screen, metabox.action, metabox.object ) }}
|
| 9 |
+
</div>
|
| 10 |
+
</div>
|
| 11 |
+
</form>
|
| 12 |
+
</div>
|
| 13 |
+
</div>
|
readme.txt
CHANGED
|
@@ -5,7 +5,7 @@ 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.4.2
|
| 8 |
-
Stable tag: 2.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
|
|
@@ -142,6 +142,9 @@ https://vimeo.com/135004810
|
|
| 142 |
|
| 143 |
== Changelog ==
|
| 144 |
|
|
|
|
|
|
|
|
|
|
| 145 |
= Version 2.3.9 =
|
| 146 |
* Improved JS caching stability in different environments
|
| 147 |
* Improved automatically detection of line ending style and fixed CSV import issues for files created in Mac OS X
|
| 5 |
calendar widget
|
| 6 |
Requires WordPress at least: 3.5
|
| 7 |
Tested up to: 4.4.2
|
| 8 |
+
Stable tag: 2.3.10
|
| 9 |
License: GNU General Public License, version 3 (GPL-3.0)
|
| 10 |
|
| 11 |
A calendar system with many views, upcoming events widget, color-coded
|
| 142 |
|
| 143 |
== Changelog ==
|
| 144 |
|
| 145 |
+
= Version 2.3.10 =
|
| 146 |
+
* Initial ticketing implementation - If you want to be a Beta user for this exciting new feature, then please visit [this page](https://time.ly/ticketing_beta).
|
| 147 |
+
|
| 148 |
= Version 2.3.9 =
|
| 149 |
* Improved JS caching stability in different environments
|
| 150 |
* Improved automatically detection of line ending style and fixed CSV import issues for files created in Mac OS X
|
