Version Description
Download this release
Release Info
Developer | calvinyeh |
Plugin | All-in-One Event Calendar |
Version | 2.5.22 |
Comparing to | |
See all releases |
Code changes from version 2.5.21 to 2.5.22
- all-in-one-event-calendar.php +1 -1
- app/config/constants.php +1 -1
- app/view/event/content.php +2 -11
- language/all-in-one-event-calendar-ar.po +2 -2
- language/all-in-one-event-calendar-bg_BG.po +2 -2
- language/all-in-one-event-calendar-ca.po +2 -2
- language/all-in-one-event-calendar-cs_CZ.mo +0 -0
- language/all-in-one-event-calendar-cs_CZ.po +11 -11
- language/all-in-one-event-calendar-da_DK.mo +0 -0
- language/all-in-one-event-calendar-da_DK.po +3 -3
- language/all-in-one-event-calendar-de_CH.po +2 -2
- language/all-in-one-event-calendar-de_DE.po +2 -2
- language/all-in-one-event-calendar-el.po +2 -2
- language/all-in-one-event-calendar-en_AU.po +2 -2
- language/all-in-one-event-calendar-en_GB.po +2 -2
- language/all-in-one-event-calendar-es_ES.po +2 -2
- language/all-in-one-event-calendar-et.po +2 -2
- language/all-in-one-event-calendar-eu.po +2 -2
- language/all-in-one-event-calendar-fi.po +2 -2
- language/all-in-one-event-calendar-fr_FR.po +2 -2
- language/all-in-one-event-calendar-gl_ES.po +2 -2
- language/all-in-one-event-calendar-he_IL.po +2 -2
- language/all-in-one-event-calendar-hi.po +2 -2
- language/all-in-one-event-calendar-hr.po +2 -2
- language/all-in-one-event-calendar-hu_HU.po +2 -2
- language/all-in-one-event-calendar-id_ID.po +2 -2
- language/all-in-one-event-calendar-is.po +2 -2
- language/all-in-one-event-calendar-it_IT.po +2 -2
- language/all-in-one-event-calendar-ja.po +2 -2
- language/all-in-one-event-calendar-lv.po +2 -2
- language/all-in-one-event-calendar-nb_NO.po +2 -2
- language/all-in-one-event-calendar-nl_NL.po +2 -2
- language/all-in-one-event-calendar-pl_PL.po +2 -2
- language/all-in-one-event-calendar-pt_BR.po +2 -2
- language/all-in-one-event-calendar-pt_PT.po +2 -2
- language/all-in-one-event-calendar-ro_RO.po +2 -2
- language/all-in-one-event-calendar-ru_RU.po +2 -2
- language/all-in-one-event-calendar-sk_SK.po +2 -2
- language/all-in-one-event-calendar-sl_SI.po +2 -2
- language/all-in-one-event-calendar-sv_SE.mo +0 -0
- language/all-in-one-event-calendar-sv_SE.po +8 -8
- language/all-in-one-event-calendar-th.po +2 -2
- language/all-in-one-event-calendar-tr_TR.po +2 -2
- language/all-in-one-event-calendar-uk.po +2 -2
- language/all-in-one-event-calendar-zh_CN.po +2 -2
- language/all-in-one-event-calendar.mo +0 -0
- language/all-in-one-event-calendar.po +6 -6
- language/all-in-one-event-calendar.pot +4 -4
- lib/import-export/api-ics.php +7 -2
- lib/import-export/ics.php +7 -2
- public/admin/box_event_cost.php +1 -1
- readme.txt +6 -2
all-in-one-event-calendar.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
6 |
* Author: Time.ly Network Inc.
|
7 |
* Author URI: https://time.ly/
|
8 |
-
* Version: 2.5.
|
9 |
* Text Domain: all-in-one-event-calendar
|
10 |
* Domain Path: /language
|
11 |
*/
|
5 |
* Description: A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
6 |
* Author: Time.ly Network Inc.
|
7 |
* Author URI: https://time.ly/
|
8 |
+
* Version: 2.5.22
|
9 |
* Text Domain: all-in-one-event-calendar
|
10 |
* Domain Path: /language
|
11 |
*/
|
app/config/constants.php
CHANGED
@@ -50,7 +50,7 @@ function ai1ec_initiate_constants( $ai1ec_base_dir, $ai1ec_base_url ) {
|
|
50 |
// = Plugin Version =
|
51 |
// ==================
|
52 |
if ( ! defined( 'AI1EC_VERSION' ) ) {
|
53 |
-
define( 'AI1EC_VERSION', '2.5.
|
54 |
}
|
55 |
|
56 |
// ================
|
50 |
// = Plugin Version =
|
51 |
// ==================
|
52 |
if ( ! defined( 'AI1EC_VERSION' ) ) {
|
53 |
+
define( 'AI1EC_VERSION', '2.5.22' );
|
54 |
}
|
55 |
|
56 |
// ================
|
app/view/event/content.php
CHANGED
@@ -147,22 +147,13 @@ HTML;
|
|
147 |
* @return string|null
|
148 |
*/
|
149 |
public function get_content_img_url( Ai1ec_Event $event, &$size = null ) {
|
150 |
-
|
151 |
-
$attachment_url = wp_get_attachment_url( get_post_thumbnail_id( get_the_ID() ) );
|
152 |
-
|
153 |
-
// Try to find a featured image
|
154 |
-
$url_featured_image = ( ! empty ( $attachment_url ) ? wp_get_attachment_url( get_post_thumbnail_id( get_the_ID() ) ) : null );
|
155 |
-
|
156 |
-
if ( ! empty( $url_featured_image ) ) {
|
157 |
-
return $url_featured_image;
|
158 |
-
}
|
159 |
-
|
160 |
preg_match(
|
161 |
'/<img([^>]+)src=["\']?([^"\'\ >]+)([^>]*)>/i',
|
162 |
$event->get( 'post' )->post_content,
|
163 |
$matches
|
164 |
);
|
165 |
-
|
|
|
166 |
if ( empty( $matches ) ) {
|
167 |
return null;
|
168 |
}
|
147 |
* @return string|null
|
148 |
*/
|
149 |
public function get_content_img_url( Ai1ec_Event $event, &$size = null ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
preg_match(
|
151 |
'/<img([^>]+)src=["\']?([^"\'\ >]+)([^>]*)>/i',
|
152 |
$event->get( 'post' )->post_content,
|
153 |
$matches
|
154 |
);
|
155 |
+
|
156 |
+
// Check if we have a result, otherwise a notice is issued.
|
157 |
if ( empty( $matches ) ) {
|
158 |
return null;
|
159 |
}
|
language/all-in-one-event-calendar-ar.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-bg_BG.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Предупреждение:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "В момента не поддържаме опцията да се вграждат повече от един календар на една страница. Не се опитвайте да позиционирате втори календар чрез Super Widget на страница, която вече показва календар."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Билети:"
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "В момента не поддържаме опцията да се вграждат повече от един календар на една страница. Не се опитвайте да позиционирате втори календар чрез Super Widget на страница, която вече показва календар."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Билети:"
|
1804 |
|
language/all-in-one-event-calendar-ca.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Avís:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
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: 2017-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,11 +12,11 @@ msgstr ""
|
|
12 |
|
13 |
#: app/controller/javascript.php:462
|
14 |
msgid "Please enter a valid Registration URL, starting with https:// or http://."
|
15 |
-
msgstr ""
|
16 |
|
17 |
#: app/view/event/single.php:206
|
18 |
msgid "No data"
|
19 |
-
msgstr ""
|
20 |
|
21 |
#: public/admin/plugins/ics/import_feed.php:8
|
22 |
msgid "unlimited"
|
@@ -50,19 +50,19 @@ msgstr "Vzdělání"
|
|
50 |
|
51 |
#: app/view/admin/settings.php:215
|
52 |
msgid "Venue/Business"
|
53 |
-
msgstr ""
|
54 |
|
55 |
#: app/view/admin/settings.php:216
|
56 |
msgid "Artist/Performer"
|
57 |
-
msgstr ""
|
58 |
|
59 |
#: app/view/admin/settings.php:217
|
60 |
msgid "Church/Spiritual"
|
61 |
-
msgstr ""
|
62 |
|
63 |
#: app/view/admin/settings.php:218
|
64 |
msgid "Association/Group"
|
65 |
-
msgstr ""
|
66 |
|
67 |
#: app/view/admin/settings.php:219
|
68 |
msgid "Other"
|
@@ -74,7 +74,7 @@ msgstr ""
|
|
74 |
|
75 |
#: app/view/event/single.php:228
|
76 |
msgid "This post was imported from a CSV/ICS file."
|
77 |
-
msgstr ""
|
78 |
|
79 |
#: app/view/admin/tickets.php:71 app/view/admin/tickets.php:86
|
80 |
#: app/view/admin/tickets.php:96 app/view/admin/tickets.php:107
|
@@ -528,8 +528,8 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
528 |
msgstr "Možnosti nákladů nejsou k dispozici, tato událost byla importována z externího kalendáře."
|
529 |
|
530 |
#: public/admin/box_event_cost.php:35
|
531 |
-
msgid "This event was created using Timely Network. Sign in with the
|
532 |
-
msgstr "
|
533 |
|
534 |
#: public/admin/box_event_cost.php:39
|
535 |
msgid "Sign In for Timely Network"
|
@@ -1806,7 +1806,7 @@ msgstr "Varování:"
|
|
1806 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1807 |
msgstr "Momentálně není možné vložit více než jeden kalendář na stejnou stránku. Nevkládejte shortkódy k zobrazení kalendáře na stránku, která již nějaký kalendář zobrazuje."
|
1808 |
|
1809 |
-
#: lib/import-export/ics.php:
|
1810 |
msgid "Tickets: "
|
1811 |
msgstr "Vstupenky:"
|
1812 |
|
2 |
# This file is distributed under the same license as the 2.3 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2017-08-09 20:19:18+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
|
13 |
#: app/controller/javascript.php:462
|
14 |
msgid "Please enter a valid Registration URL, starting with https:// or http://."
|
15 |
+
msgstr "Zadejte, prosím, platnou URL adresu registrace, začínající https:// nebo http://"
|
16 |
|
17 |
#: app/view/event/single.php:206
|
18 |
msgid "No data"
|
19 |
+
msgstr "Žádná data"
|
20 |
|
21 |
#: public/admin/plugins/ics/import_feed.php:8
|
22 |
msgid "unlimited"
|
50 |
|
51 |
#: app/view/admin/settings.php:215
|
52 |
msgid "Venue/Business"
|
53 |
+
msgstr "Místo konání"
|
54 |
|
55 |
#: app/view/admin/settings.php:216
|
56 |
msgid "Artist/Performer"
|
57 |
+
msgstr "Umělec/Účinkující"
|
58 |
|
59 |
#: app/view/admin/settings.php:217
|
60 |
msgid "Church/Spiritual"
|
61 |
+
msgstr "Církev/Duchovní"
|
62 |
|
63 |
#: app/view/admin/settings.php:218
|
64 |
msgid "Association/Group"
|
65 |
+
msgstr "Sdružení/Skupina"
|
66 |
|
67 |
#: app/view/admin/settings.php:219
|
68 |
msgid "Other"
|
74 |
|
75 |
#: app/view/event/single.php:228
|
76 |
msgid "This post was imported from a CSV/ICS file."
|
77 |
+
msgstr "Tento příspěvek byl importován z CSV/ICS souboru."
|
78 |
|
79 |
#: app/view/admin/tickets.php:71 app/view/admin/tickets.php:86
|
80 |
#: app/view/admin/tickets.php:96 app/view/admin/tickets.php:107
|
528 |
msgstr "Možnosti nákladů nejsou k dispozici, tato událost byla importována z externího kalendáře."
|
529 |
|
530 |
#: public/admin/box_event_cost.php:35
|
531 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
532 |
+
msgstr ""
|
533 |
|
534 |
#: public/admin/box_event_cost.php:39
|
535 |
msgid "Sign In for Timely Network"
|
1806 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1807 |
msgstr "Momentálně není možné vložit více než jeden kalendář na stejnou stránku. Nevkládejte shortkódy k zobrazení kalendáře na stránku, která již nějaký kalendář zobrazuje."
|
1808 |
|
1809 |
+
#: lib/import-export/ics.php:881
|
1810 |
msgid "Tickets: "
|
1811 |
msgstr "Vstupenky:"
|
1812 |
|
language/all-in-one-event-calendar-da_DK.mo
CHANGED
Binary file
|
language/all-in-one-event-calendar-da_DK.po
CHANGED
@@ -528,8 +528,8 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
528 |
msgstr "Prisindstillinger ikke tilgængelig idet begivenheden er importeret fra en ekstern kalender."
|
529 |
|
530 |
#: public/admin/box_event_cost.php:35
|
531 |
-
msgid "This event was created using Timely Network. Sign in with the
|
532 |
-
msgstr "
|
533 |
|
534 |
#: public/admin/box_event_cost.php:39
|
535 |
msgid "Sign In for Timely Network"
|
@@ -1806,7 +1806,7 @@ msgstr "Advarsel"
|
|
1806 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1807 |
msgstr "Det er i øjeblikket ikke muligt at indlejre mere end én kalender på den samme side. Forsøg ikke at indlejre kalenderen med genvejskode på en side, som allerede viser kalenderen."
|
1808 |
|
1809 |
-
#: lib/import-export/ics.php:
|
1810 |
msgid "Tickets: "
|
1811 |
msgstr "Billetter:"
|
1812 |
|
528 |
msgstr "Prisindstillinger ikke tilgængelig idet begivenheden er importeret fra en ekstern kalender."
|
529 |
|
530 |
#: public/admin/box_event_cost.php:35
|
531 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
532 |
+
msgstr ""
|
533 |
|
534 |
#: public/admin/box_event_cost.php:39
|
535 |
msgid "Sign In for Timely Network"
|
1806 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1807 |
msgstr "Det er i øjeblikket ikke muligt at indlejre mere end én kalender på den samme side. Forsøg ikke at indlejre kalenderen med genvejskode på en side, som allerede viser kalenderen."
|
1808 |
|
1809 |
+
#: lib/import-export/ics.php:881
|
1810 |
msgid "Tickets: "
|
1811 |
msgstr "Billetter:"
|
1812 |
|
language/all-in-one-event-calendar-de_CH.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Achtung:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Es wird momentan nicht unterstützt, mehr als einen Kalender auf der selben Seite einzubetten. Bitte nicht versuchen einen Kalender via Shortcode in eine Seite einzubetten, auf der bereits ein Kalender angezeigt wird."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Tickets:"
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Es wird momentan nicht unterstützt, mehr als einen Kalender auf der selben Seite einzubetten. Bitte nicht versuchen einen Kalender via Shortcode in eine Seite einzubetten, auf der bereits ein Kalender angezeigt wird."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Tickets:"
|
1804 |
|
language/all-in-one-event-calendar-de_DE.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Achtung:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Es wird momentan nicht unterstützt, mehr als einen Kalender auf der selben Seite einzubetten. Bitte nicht versuchen einen Kalender via Shortcode in eine Seite einzubetten, auf der bereits ein Kalender angezeigt wird."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Tickets:"
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Es wird momentan nicht unterstützt, mehr als einen Kalender auf der selben Seite einzubetten. Bitte nicht versuchen einen Kalender via Shortcode in eine Seite einzubetten, auf der bereits ein Kalender angezeigt wird."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Tickets:"
|
1804 |
|
language/all-in-one-event-calendar-el.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Προειδοποιήσης:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Αυτή την στιγμή δεν υποστηρίζεται η ενσωμάτωση περισσότερων από ένα ημερολογίων στην ίδια σελίδα.Μην δοκιμάσετε να ενσωματώσετε το ημερολόγιο με μικρό-κώδικα στην σελίδα που εμφανίζεται ήδη το ημερολόγιο."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Αυτή την στιγμή δεν υποστηρίζεται η ενσωμάτωση περισσότερων από ένα ημερολογίων στην ίδια σελίδα.Μην δοκιμάσετε να ενσωματώσετε το ημερολόγιο με μικρό-κώδικα στην σελίδα που εμφανίζεται ήδη το ημερολόγιο."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-en_AU.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Warning:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-en_GB.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Warning:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-es_ES.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Advertencia:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Actualmente no se permite incrustar más de un calendario en la misma página. No intente incrustar el calendario con shortcodes en una página que ya incluye un calendario."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Actualmente no se permite incrustar más de un calendario en la misma página. No intente incrustar el calendario con shortcodes en una página que ya incluye un calendario."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-et.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-eu.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-fi.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Varoitus:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Useamman kalenterin lisääminen yhdelle sivulle ei tällä hetkellä ole mahdollista. Älä yritä lisätä kalenteria lyhytkoodin avulla sivulle, jolla on jo kalenteri."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Useamman kalenterin lisääminen yhdelle sivulle ei tällä hetkellä ole mahdollista. Älä yritä lisätä kalenteria lyhytkoodin avulla sivulle, jolla on jo kalenteri."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-fr_FR.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Avertissement :"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Il n'est pour l'instant pas possible d'inclure plus d'un calendrier par page. N'essayez pas d'inclure le calendrier via un shortcode dans une page qui affiche déjà le calendrier."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Tickets:"
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Il n'est pour l'instant pas possible d'inclure plus d'un calendrier par page. N'essayez pas d'inclure le calendrier via un shortcode dans une page qui affiche déjà le calendrier."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Tickets:"
|
1804 |
|
language/all-in-one-event-calendar-gl_ES.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-he_IL.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1800,7 +1800,7 @@ msgstr "אזהרה:"
|
|
1800 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1801 |
msgstr "אין כרגע תמיכה בהטמעת יותר מלוח אחד באותו עמוד. אל תנסה להטמיע את הלוח באמצעות shortcode בעמוד שמציג כבר את הלוח."
|
1802 |
|
1803 |
-
#: lib/import-export/ics.php:
|
1804 |
msgid "Tickets: "
|
1805 |
msgstr ""
|
1806 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1800 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1801 |
msgstr "אין כרגע תמיכה בהטמעת יותר מלוח אחד באותו עמוד. אל תנסה להטמיע את הלוח באמצעות shortcode בעמוד שמציג כבר את הלוח."
|
1802 |
|
1803 |
+
#: lib/import-export/ics.php:881
|
1804 |
msgid "Tickets: "
|
1805 |
msgstr ""
|
1806 |
|
language/all-in-one-event-calendar-hi.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-hr.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-hu_HU.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Figyelmeztetés:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Jelenleg nem támogatott beágyazni több naptárt ugyanazon az oldalon. Ne próbálkozzunk beágyazni naptárt rövidkód segítségével oldalba, amely már megjelenít naptárt."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Jelenleg nem támogatott beágyazni több naptárt ugyanazon az oldalon. Ne próbálkozzunk beágyazni naptárt rövidkód segítségével oldalba, amely már megjelenít naptárt."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-id_ID.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-is.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-it_IT.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Attenzione:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Non è correntemente supportato l'incorporamento di più di un calendario nella stessa pagina. Non provare ad incorporare il calendario via shortcode in una pagina che già visualizza il calendario."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Biglietti:"
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Non è correntemente supportato l'incorporamento di più di un calendario nella stessa pagina. Non provare ad incorporare il calendario via shortcode in una pagina che già visualizza il calendario."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Biglietti:"
|
1804 |
|
language/all-in-one-event-calendar-ja.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "警告:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "一つを超えるカレンダーを同じページに組み込むことは、今のところはサポート外です。すでにカレンダーを表示しているページに、ショートコードでさらにカレンダーを組み込もうとしないでください。"
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "一つを超えるカレンダーを同じページに組み込むことは、今のところはサポート外です。すでにカレンダーを表示しているページに、ショートコードでさらにカレンダーを組み込もうとしないでください。"
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-lv.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Brīdinājums:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Patreiz nav atļauts iegultnēt vairāk kā vienu kalendāru vienā lapā. Nemēģiniet iegultnēt ar īskodu palīdzību kalendāru lapā, kurā jau redzams kalendārs."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Patreiz nav atļauts iegultnēt vairāk kā vienu kalendāru vienā lapā. Nemēģiniet iegultnēt ar īskodu palīdzību kalendāru lapā, kurā jau redzams kalendārs."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-nb_NO.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Advarsel:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Det er for tiden ikke støtte for å bygge inn mer enn en kalender på samme side. Ikke forsøk å inkludere kalenderen via hurtigkode på en side som allerede viser kalenderen."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Billetter:"
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Det er for tiden ikke støtte for å bygge inn mer enn en kalender på samme side. Ikke forsøk å inkludere kalenderen via hurtigkode på en side som allerede viser kalenderen."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr "Billetter:"
|
1804 |
|
language/all-in-one-event-calendar-nl_NL.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Waarschuwing:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Invoegen van meer dan één agenda op dezelfde pagina wordt momenteel niet ondersteund. Probeer niet een agenda met een verkorte code in te voegen op een pagina waar de agenda al wordt getoond."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Invoegen van meer dan één agenda op dezelfde pagina wordt momenteel niet ondersteund. Probeer niet een agenda met een verkorte code in te voegen op een pagina waar de agenda al wordt getoond."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-pl_PL.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Ostrzeżenie:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Obecnie nie można wstawić więcej niż jednego kalendarza na stronie. Nie należy także wstawiać innego kalendarza poprzez kod na stronie, gdzie już jest inny kalendarz. "
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Obecnie nie można wstawić więcej niż jednego kalendarza na stronie. Nie należy także wstawiać innego kalendarza poprzez kod na stronie, gdzie już jest inny kalendarz. "
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-pt_BR.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Aviso:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Atualmente não é possível incorporar mais de um calendário na mesma página. Não tente adicionar o calendário via shortcode em uma página que já exiba um calendário."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Atualmente não é possível incorporar mais de um calendário na mesma página. Não tente adicionar o calendário via shortcode em uma página que já exiba um calendário."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-pt_PT.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Aviso:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Actualmente não é suportado embutir mais do que um calendário na mesma página. Não tente embutir o calendário via shortcode numa página onde já existe um calendário."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Actualmente não é suportado embutir mais do que um calendário na mesma página. Não tente embutir o calendário via shortcode numa página onde já existe um calendário."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-ro_RO.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Avertisment:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "În prezent nu se pot încorpora mai mult de un calendar pe aceeași pagină. Nu încercați să încorporați calendarul prin cod-scurtătură pe o pagină care deja afișează calendarul."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "În prezent nu se pot încorpora mai mult de un calendar pe aceeași pagină. Nu încercați să încorporați calendarul prin cod-scurtătură pe o pagină care deja afișează calendarul."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-ru_RU.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Внимание:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "На данный момент не поддерживается использование более одного календаря на той же странице. Не пытайтесь включить календарь через Шорткод на страницу, которая уже содержит календарь."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "На данный момент не поддерживается использование более одного календаря на той же странице. Не пытайтесь включить календарь через Шорткод на страницу, которая уже содержит календарь."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-sk_SK.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Upozornenie:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-sl_SI.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Opozorilo:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-sv_SE.mo
CHANGED
Binary file
|
language/all-in-one-event-calendar-sv_SE.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:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr "Varning:"
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Det går för närvarande inte att bädda in mer än en kalender på samma sida. Försök inte att bädda in kalendern via snabbkod på en sida som redan visar kalendern."
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
@@ -2448,11 +2448,11 @@ msgstr "Etiketter"
|
|
2448 |
|
2449 |
#: app/view/calendar/view/agenda.php:180
|
2450 |
msgid "Collapse All"
|
2451 |
-
msgstr "
|
2452 |
|
2453 |
#: app/view/calendar/view/agenda.php:181
|
2454 |
msgid "Expand All"
|
2455 |
-
msgstr "
|
2456 |
|
2457 |
#: app/view/calendar/view/agenda.php:204
|
2458 |
msgid "There are no upcoming events to display at this time."
|
@@ -2600,7 +2600,7 @@ msgstr "Månad/vecka/dag"
|
|
2600 |
|
2601 |
#: app/view/admin/theme-options.php:151
|
2602 |
msgid "Agenda view"
|
2603 |
-
msgstr "
|
2604 |
|
2605 |
#: app/view/admin/theme-options.php:169
|
2606 |
msgid "Save Options"
|
@@ -3205,8 +3205,8 @@ msgstr "Tillgängliga vyer"
|
|
3205 |
#: app/model/settings.php:432
|
3206 |
msgid "Agenda"
|
3207 |
msgid_plural "Agenda"
|
3208 |
-
msgstr[0] "
|
3209 |
-
msgstr[1] ""
|
3210 |
|
3211 |
#: app/model/settings.php:443
|
3212 |
msgid "Day"
|
2 |
# This file is distributed under the same license as the 2.3 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2017-08-09 20:19:26+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr "Det går för närvarande inte att bädda in mer än en kalender på samma sida. Försök inte att bädda in kalendern via snabbkod på en sida som redan visar kalendern."
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
2448 |
|
2449 |
#: app/view/calendar/view/agenda.php:180
|
2450 |
msgid "Collapse All"
|
2451 |
+
msgstr "Kollapsa alla"
|
2452 |
|
2453 |
#: app/view/calendar/view/agenda.php:181
|
2454 |
msgid "Expand All"
|
2455 |
+
msgstr "Expandera alla"
|
2456 |
|
2457 |
#: app/view/calendar/view/agenda.php:204
|
2458 |
msgid "There are no upcoming events to display at this time."
|
2600 |
|
2601 |
#: app/view/admin/theme-options.php:151
|
2602 |
msgid "Agenda view"
|
2603 |
+
msgstr "Programvy"
|
2604 |
|
2605 |
#: app/view/admin/theme-options.php:169
|
2606 |
msgid "Save Options"
|
3205 |
#: app/model/settings.php:432
|
3206 |
msgid "Agenda"
|
3207 |
msgid_plural "Agenda"
|
3208 |
+
msgstr[0] "Program"
|
3209 |
+
msgstr[1] "Program"
|
3210 |
|
3211 |
#: app/model/settings.php:443
|
3212 |
msgid "Day"
|
language/all-in-one-event-calendar-th.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-tr_TR.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-uk.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar-zh_CN.po
CHANGED
@@ -522,7 +522,7 @@ msgid "Cost options not available, this event was imported from an external cale
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
-
msgid "This event was created using Timely Network. Sign in with the
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
@@ -1798,7 +1798,7 @@ msgstr ""
|
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: lib/import-export/ics.php:
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
522 |
msgstr ""
|
523 |
|
524 |
#: public/admin/box_event_cost.php:35
|
525 |
+
msgid "This event was created using Timely Network. Sign in with the account %s to see the Ticket options."
|
526 |
msgstr ""
|
527 |
|
528 |
#: public/admin/box_event_cost.php:39
|
1798 |
msgid "It is currently not supported to embed more than one calendar in the same page. Do not attempt to embed the calendar via shortcode in a page that already displays the calendar."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: lib/import-export/ics.php:881
|
1802 |
msgid "Tickets: "
|
1803 |
msgstr ""
|
1804 |
|
language/all-in-one-event-calendar.mo
CHANGED
Binary file
|
language/all-in-one-event-calendar.po
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
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: 2017-
|
12 |
"Last-Translator: Timely <support@time.ly>\n"
|
13 |
"Language-Team:\n"
|
14 |
|
@@ -2583,7 +2583,7 @@ msgstr ""
|
|
2583 |
"page. Do not attempt to embed the calendar via shortcode in a page that "
|
2584 |
"already displays the calendar."
|
2585 |
|
2586 |
-
#: lib/import-export/ics.php:
|
2587 |
msgid "Tickets: "
|
2588 |
msgstr "Tickets: "
|
2589 |
|
@@ -3101,10 +3101,10 @@ msgstr ""
|
|
3101 |
|
3102 |
#: public/admin/box_event_cost.php:35
|
3103 |
msgid ""
|
3104 |
-
"This event was created using Timely Network. Sign in with the
|
3105 |
"see the Ticket options."
|
3106 |
msgstr ""
|
3107 |
-
"This event was created using Timely Network. Sign in with the
|
3108 |
"see the Ticket options."
|
3109 |
|
3110 |
#: public/admin/box_event_cost.php:39
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.22\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
+
"POT-Creation-Date: 2017-08-09 20:21:00+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: 2017-08-09 20:21+0000\n"
|
12 |
"Last-Translator: Timely <support@time.ly>\n"
|
13 |
"Language-Team:\n"
|
14 |
|
2583 |
"page. Do not attempt to embed the calendar via shortcode in a page that "
|
2584 |
"already displays the calendar."
|
2585 |
|
2586 |
+
#: lib/import-export/ics.php:881
|
2587 |
msgid "Tickets: "
|
2588 |
msgstr "Tickets: "
|
2589 |
|
3101 |
|
3102 |
#: public/admin/box_event_cost.php:35
|
3103 |
msgid ""
|
3104 |
+
"This event was created using Timely Network. Sign in with the account %s to "
|
3105 |
"see the Ticket options."
|
3106 |
msgstr ""
|
3107 |
+
"This event was created using Timely Network. Sign in with the account %s to "
|
3108 |
"see the Ticket options."
|
3109 |
|
3110 |
#: public/admin/box_event_cost.php:39
|
language/all-in-one-event-calendar.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -2356,7 +2356,7 @@ msgid ""
|
|
2356 |
"already displays the calendar."
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: lib/import-export/ics.php:
|
2360 |
msgid "Tickets: "
|
2361 |
msgstr ""
|
2362 |
|
@@ -2838,7 +2838,7 @@ msgstr ""
|
|
2838 |
|
2839 |
#: public/admin/box_event_cost.php:35
|
2840 |
msgid ""
|
2841 |
-
"This event was created using Timely Network. Sign in with the
|
2842 |
"see the Ticket options."
|
2843 |
msgstr ""
|
2844 |
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.22\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
+
"POT-Creation-Date: 2017-08-09 20:21:00+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
2356 |
"already displays the calendar."
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: lib/import-export/ics.php:881
|
2360 |
msgid "Tickets: "
|
2361 |
msgstr ""
|
2362 |
|
2838 |
|
2839 |
#: public/admin/box_event_cost.php:35
|
2840 |
msgid ""
|
2841 |
+
"This event was created using Timely Network. Sign in with the account %s to "
|
2842 |
"see the Ticket options."
|
2843 |
msgstr ""
|
2844 |
|
lib/import-export/api-ics.php
CHANGED
@@ -176,7 +176,12 @@ class Ai1ec_Api_Ics_Import_Export_Engine
|
|
176 |
$allday = true;
|
177 |
}
|
178 |
$event_timezone = $e->timezone;
|
179 |
-
|
|
|
|
|
|
|
|
|
|
|
180 |
$event_timezone = $local_timezone;
|
181 |
}
|
182 |
$start = $this->_time_array_to_datetime(
|
@@ -788,4 +793,4 @@ class Ai1ec_Api_Ics_Import_Export_Engine
|
|
788 |
return null;
|
789 |
}
|
790 |
|
791 |
-
}
|
176 |
$allday = true;
|
177 |
}
|
178 |
$event_timezone = $e->timezone;
|
179 |
+
|
180 |
+
// Check if the timezone is a recognized TZ in PHP
|
181 |
+
// Note: the TZ may be perfectly valid, but it may not be an accepted value in the PHP version the plugin is running on
|
182 |
+
$tz = @timezone_open( $event_timezone );
|
183 |
+
|
184 |
+
if ( ! $tz || $allday || preg_match( "/GMT[+|-][0-9]{4}.*/", $event_timezone ) ) {
|
185 |
$event_timezone = $local_timezone;
|
186 |
}
|
187 |
$start = $this->_time_array_to_datetime(
|
793 |
return null;
|
794 |
}
|
795 |
|
796 |
+
}
|
lib/import-export/ics.php
CHANGED
@@ -253,7 +253,12 @@ class Ai1ec_Ics_Import_Export_Engine
|
|
253 |
$allday = true;
|
254 |
}
|
255 |
$event_timezone = $timezone;
|
256 |
-
|
|
|
|
|
|
|
|
|
|
|
257 |
$event_timezone = $local_timezone;
|
258 |
}
|
259 |
$start = $this->_time_array_to_datetime(
|
@@ -925,7 +930,7 @@ class Ai1ec_Ics_Import_Export_Engine
|
|
925 |
if ( ! empty( $matchesWidth ) && ! empty( $matchesHeight ) ) {
|
926 |
|
927 |
foreach ( array( 'thumbnail', 'medium', 'large', 'full' ) as $_size ) {
|
928 |
-
$attributes =
|
929 |
$images[] = implode( ';', $attributes );
|
930 |
}
|
931 |
}
|
253 |
$allday = true;
|
254 |
}
|
255 |
$event_timezone = $timezone;
|
256 |
+
|
257 |
+
// Check if the timezone is a recognized TZ in PHP
|
258 |
+
// Note: the TZ may be perfectly valid, but it may not be an accepted value in the PHP version the plugin is running on
|
259 |
+
$tztest = @timezone_open( $event_timezone );
|
260 |
+
|
261 |
+
if ( ! $tztest || $allday || preg_match( "/GMT[+|-][0-9]{4}.*/", $event_timezone ) ) {
|
262 |
$event_timezone = $local_timezone;
|
263 |
}
|
264 |
$start = $this->_time_array_to_datetime(
|
930 |
if ( ! empty( $matchesWidth ) && ! empty( $matchesHeight ) ) {
|
931 |
|
932 |
foreach ( array( 'thumbnail', 'medium', 'large', 'full' ) as $_size ) {
|
933 |
+
$attributes = array( $_size, $matches[2], $matchesWidth['width'], $matchesHeight['height'] );
|
934 |
$images[] = implode( ';', $attributes );
|
935 |
}
|
936 |
}
|
public/admin/box_event_cost.php
CHANGED
@@ -32,7 +32,7 @@
|
|
32 |
<p><?php echo $tickets_loading_error; ?></p>
|
33 |
<?php elseif ( $is_ticket_event && ! $ticketing ): ?>
|
34 |
<p><?php echo sprintf(
|
35 |
-
__( 'This event was created using Timely Network. Sign in with the
|
36 |
$ticket_event_account ); ?></p>
|
37 |
<a href="edit.php?post_type=ai1ec_event&page=all-in-one-event-calendar-tickets"
|
38 |
class="ai1ec-btn ai1ec-btn-primary ai1ec-btn-lg">
|
32 |
<p><?php echo $tickets_loading_error; ?></p>
|
33 |
<?php elseif ( $is_ticket_event && ! $ticketing ): ?>
|
34 |
<p><?php echo sprintf(
|
35 |
+
__( 'This event was created using Timely Network. Sign in with the account %s to see the Ticket options.', AI1EC_PLUGIN_NAME ),
|
36 |
$ticket_event_account ); ?></p>
|
37 |
<a href="edit.php?post_type=ai1ec_event&page=all-in-one-event-calendar-tickets"
|
38 |
class="ai1ec-btn ai1ec-btn-primary ai1ec-btn-lg">
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: uchu, calvinyeh, raquelleira, renatotbueno, domanb, elirenato, hub
|
|
3 |
Tags: calendar, event, ical, feed, ics, icalendar, sync, aggregator, google, venue, calendar widget, events widget
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.8.1
|
6 |
-
Stable tag: 2.5.
|
7 |
License: GNU General Public License, version 3 (GPL-3.0)
|
8 |
|
9 |
An events calendar system with multiple views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
@@ -129,8 +129,12 @@ https://vimeo.com/135004810
|
|
129 |
|
130 |
== Changelog ==
|
131 |
|
|
|
|
|
|
|
|
|
132 |
= Version 2.5.21 =
|
133 |
-
* Fixed: One code implemented in Core 2.5.20 was incompatible with PHP 5.
|
134 |
|
135 |
= Version 2.5.20 =
|
136 |
* Fixed: Monthly view would fill up with empty lines if there are no events for the current month.
|
3 |
Tags: calendar, event, ical, feed, ics, icalendar, sync, aggregator, google, venue, calendar widget, events widget
|
4 |
Requires at least: 3.5
|
5 |
Tested up to: 4.8.1
|
6 |
+
Stable tag: 2.5.22
|
7 |
License: GNU General Public License, version 3 (GPL-3.0)
|
8 |
|
9 |
An events calendar system with multiple views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
129 |
|
130 |
== Changelog ==
|
131 |
|
132 |
+
= Version 2.5.22 =
|
133 |
+
* Fixed: On some PHP installations a specific code for exporting events wouldn't work. Thanks to @vralfy.
|
134 |
+
* Fixed: On some events the featured image was missing.
|
135 |
+
|
136 |
= Version 2.5.21 =
|
137 |
+
* Fixed: One code implemented in Core 2.5.20 was incompatible with PHP 5. Thanks to @nelero.
|
138 |
|
139 |
= Version 2.5.20 =
|
140 |
* Fixed: Monthly view would fill up with empty lines if there are no events for the current month.
|