Version Description
- Bug fix: upcoming events timestamps were converted to UTC.
Download this release
Release Info
Developer | joedolson |
Plugin | My Calendar |
Version | 2.1.5 |
Comparing to | |
See all releases |
Code changes from version 2.0.12 to 2.1.5
- button/generator.php +1 -1
- date-utilities.php +13 -7
- lang/my-calendar-eu.mo +0 -0
- lang/my-calendar-eu.po +3404 -0
- lang/my-calendar-it_IT.mo +0 -0
- lang/my-calendar-it_IT.po +896 -756
- lang/my-calendar-ru_RU.mo +0 -0
- lang/my-calendar-ru_RU.po +3404 -3841
- mc-styles.css +4 -2
- my-calendar-categories.php +3 -3
- my-calendar-core.php +18 -52
- my-calendar-event-manager.php +5 -3
- my-calendar-events.php +41 -21
- my-calendar-group-manager.php +1 -1
- my-calendar-help.php +50 -11
- my-calendar-install.php +24 -2
- my-calendar-limits.php +78 -10
- my-calendar-output.php +13 -39
- my-calendar-rss.php +1 -0
- my-calendar-settings.php +81 -51
- my-calendar-shortcodes.php +5 -4
- my-calendar-styles.php +4 -3
- my-calendar-templates.php +29 -16
- my-calendar-templating.php +37 -1
- my-calendar-widgets.php +174 -131
- my-calendar.php +23 -3
- readme.txt +56 -26
- styles/dark.css +5 -3
- styles/inherit.css +2 -2
- styles/light.css +8 -6
- styles/my-calendar.css +3 -3
- styles/refresh.css +3 -3
- templates/dark.css +5 -3
- templates/inherit.css +2 -2
- templates/light.css +3 -3
- templates/my-calendar.css +3 -3
- templates/refresh.css +3 -3
button/generator.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
$iswin = preg_match('/:\\\/', dirname(__file__));
|
4 |
$slash = ($iswin) ? "\\" : "/";
|
5 |
$wp_path = preg_split('/(?=((\\\|\/)wp-content)).*/', dirname(__file__));
|
6 |
-
$wp_path = (isset($wp_path[0]) && $wp_path[0] != "") ? $wp_path[0] : $_SERVER["DOCUMENT_ROOT"];
|
7 |
require_once($wp_path . $slash . 'wp-load.php');
|
8 |
require_once($wp_path . $slash . 'wp-admin' . $slash . 'admin.php');
|
9 |
|
3 |
$iswin = preg_match('/:\\\/', dirname(__file__));
|
4 |
$slash = ($iswin) ? "\\" : "/";
|
5 |
$wp_path = preg_split('/(?=((\\\|\/)wp-content)).*/', dirname(__file__));
|
6 |
+
$wp_path = ( isset($wp_path[0]) && $wp_path[0] != "" && $wp_path[0] != dirname(__FILE__) ) ? $wp_path[0] : $_SERVER["DOCUMENT_ROOT"];
|
7 |
require_once($wp_path . $slash . 'wp-load.php');
|
8 |
require_once($wp_path . $slash . 'wp-admin' . $slash . 'admin.php');
|
9 |
|
date-utilities.php
CHANGED
@@ -39,15 +39,19 @@ function my_calendar_date_xcomp($early,$late) {
|
|
39 |
}
|
40 |
// true if dates are the same
|
41 |
function my_calendar_date_equal($early,$late) {
|
42 |
-
|
43 |
-
$
|
44 |
-
|
|
|
45 |
return true;
|
46 |
} else {
|
47 |
return false;
|
48 |
}
|
49 |
}
|
50 |
-
|
|
|
|
|
|
|
51 |
// Function to compare time in event objects
|
52 |
function my_calendar_time_cmp($a, $b) {
|
53 |
if ( $a->occur_begin == $b->occur_begin ) {
|
@@ -79,9 +83,11 @@ function my_calendar_reverse_datetime_cmp($b, $a) {
|
|
79 |
return ( $event_dt_a < $event_dt_b ) ? -1 : 1;
|
80 |
}
|
81 |
|
82 |
-
function my_calendar_timediff_cmp($a, $b) {
|
83 |
-
$
|
84 |
-
$
|
|
|
|
|
85 |
$diff_a = jd_date_diff_precise($event_dt_a);
|
86 |
$diff_b = jd_date_diff_precise($event_dt_b);
|
87 |
|
39 |
}
|
40 |
// true if dates are the same
|
41 |
function my_calendar_date_equal($early,$late) {
|
42 |
+
// convert full datetime to date only
|
43 |
+
$firstdate = strtotime( date( 'Y-m-d',strtotime($early) ) );
|
44 |
+
$lastdate = strtotime( date( 'Y-m-d',strtotime($late) ) );
|
45 |
+
if ($firstdate == $lastdate) {
|
46 |
return true;
|
47 |
} else {
|
48 |
return false;
|
49 |
}
|
50 |
}
|
51 |
+
// test whether two dates are day-consecutive
|
52 |
+
function mc_dates_consecutive( $current, $last_date ) {
|
53 |
+
if ( strtotime( $last_date.'+ 1 day' ) == strtotime( $current ) ) { return true; } else { return false; }
|
54 |
+
}
|
55 |
// Function to compare time in event objects
|
56 |
function my_calendar_time_cmp($a, $b) {
|
57 |
if ( $a->occur_begin == $b->occur_begin ) {
|
83 |
return ( $event_dt_a < $event_dt_b ) ? -1 : 1;
|
84 |
}
|
85 |
|
86 |
+
function my_calendar_timediff_cmp( $a, $b ) {
|
87 |
+
$a = $a.date(' H:i:s',current_time( 'timestamp' ) );
|
88 |
+
$b = $b.date(' H:i:s',current_time( 'timestamp' ) );
|
89 |
+
$event_dt_a = strtotime($a);
|
90 |
+
$event_dt_b = strtotime($b);
|
91 |
$diff_a = jd_date_diff_precise($event_dt_a);
|
92 |
$diff_b = jd_date_diff_precise($event_dt_b);
|
93 |
|
lang/my-calendar-eu.mo
ADDED
Binary file
|
lang/my-calendar-eu.po
ADDED
@@ -0,0 +1,3404 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of My Calendar in Basque
|
2 |
+
# This file is distributed under the same license as the My Calendar package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-12-04 21:01:30+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: My Calendar\n"
|
12 |
+
|
13 |
+
#: my-calendar-event-manager.php:467
|
14 |
+
msgid "Edit events"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: my-calendar-event-manager.php:1270
|
18 |
+
msgid "The time field must either be blank or be entered in the format hh:mm am/pm"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: my-calendar-event-manager.php:1277
|
22 |
+
msgid "The end time field must either be blank or be entered in the format hh:mm am/pm"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: my-calendar-help.php:13
|
26 |
+
msgid "Shortcodes"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: my-calendar-help.php:14
|
30 |
+
msgid "Icons"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: my-calendar-help.php:15
|
34 |
+
msgid "Styles"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: my-calendar-help.php:16
|
38 |
+
msgid "Templating"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: my-calendar-help.php:17
|
42 |
+
msgid "Support Form"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: my-calendar-help.php:26 my-calendar.php:153
|
46 |
+
msgid "Getting Started"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: my-calendar-help.php:29
|
50 |
+
msgid "Although the My Calendar plug-in is very complicated in terms of what can be customized, the basic usage is quite simple."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: my-calendar-help.php:32
|
54 |
+
msgid "Add the My Calendar shortcode (<code>[my_calendar]</code>) to a page."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: my-calendar-help.php:33
|
58 |
+
msgid "Add events by clicking on the Add/Edit Events link in the admin sidebar or on \"Add Events\" in the admin toolbar."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: my-calendar-help.php:34
|
62 |
+
msgid "Select your preferred stylesheet in the Styles Editor"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: my-calendar-help.php:37
|
66 |
+
msgid "Read more of the basic help documentation on this page or purchase the My Calendar User's Guide to customize further -- but the above is all that you need to do to begin using the calendar."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: my-calendar-help.php:57
|
70 |
+
msgid "The shortcode supports these attributes:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: my-calendar-help.php:70
|
74 |
+
msgid "Host or comma-separated list of hosts (WordPress usernames or IDs) to show events from."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: my-calendar-help.php:178
|
78 |
+
msgid "Displays the date on which the series of events began (for recurring events)."
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: my-calendar-help.php:217
|
82 |
+
msgid "Displays short description with any HTML stripped out."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: my-calendar-help.php:226
|
86 |
+
msgid "Displays description with any HTML stripped out."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: my-calendar-settings.php:84
|
90 |
+
msgid "Dropping occurrences database table"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: my-calendar-settings.php:87
|
94 |
+
msgid "Reinstalling occurrences database table."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: my-calendar-settings.php:90
|
98 |
+
msgid "Generating event occurrences."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: my-calendar-settings.php:92
|
102 |
+
msgid "Event generation completed."
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: my-calendar-settings.php:194
|
106 |
+
msgid "Date/Time Format Settings saved"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: my-calendar-settings.php:345
|
110 |
+
msgid "Date/Time"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: my-calendar-settings.php:397
|
114 |
+
msgid "Number of events per page in admin events list"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: my-calendar-settings.php:411
|
118 |
+
msgid "Re-generate event occurrences table."
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: my-calendar-settings.php:489
|
122 |
+
msgid "Calendar Link Targets"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: my-calendar-settings.php:503
|
126 |
+
msgid "Modify date and event link behaviors:"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: my-calendar-settings.php:516
|
130 |
+
msgid "Show links to alternate formats:"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: my-calendar-settings.php:605
|
134 |
+
msgid "Event Scheduling Defaults"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: my-calendar-settings.php:645
|
138 |
+
msgid "Calendar Time Formats"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: my-calendar-settings.php:650
|
142 |
+
msgid "Set default date/time formats"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: my-calendar-settings.php:654
|
146 |
+
msgid "Month format (calendar headings)"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: my-calendar-settings.php:654 my-calendar-settings.php:656
|
150 |
+
#: my-calendar-settings.php:659 my-calendar-settings.php:662
|
151 |
+
msgid "Now:"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: my-calendar-settings.php:670
|
155 |
+
msgid "Save Date/Time Settings"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: my-calendar-templating.php:31
|
159 |
+
msgid "RSS Feed Output Template saved"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: my-calendar-templating.php:173
|
163 |
+
msgid "My Calendar: RSS Event Template"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: my-calendar-templating.php:175
|
167 |
+
msgid "Notice: HTML templates are very forgiving of errors. RSS templates are not. Be sure to test your changes."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: my-calendar-templating.php:179
|
171 |
+
msgid "Use this custom RSS event template"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: my-calendar-templating.php:182
|
175 |
+
msgid "Your custom template for events in the RSS feed."
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: my-calendar-templating.php:185
|
179 |
+
msgid "Save RSS Template"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: my-calendar-widgets.php:62 my-calendar-widgets.php:174
|
183 |
+
msgid "Widget title links to:"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: my-calendar-widgets.php:78 my-calendar-widgets.php:212
|
187 |
+
msgid "Host or hosts to show:"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: my-calendar-widgets.php:625
|
191 |
+
msgid "Widget Title Link"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: my-calendar.php:123
|
195 |
+
msgid "Buy the <a href='http://www.joedolson.com/articles/my-calendar/submissions/' rel='external'>My Calendar: Submissions add-on</a> — let your site's visitors help build your calendar."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: my-calendar.php:158
|
199 |
+
msgid "Help translate this plug-in!"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: my-calendar-event-manager.php:630
|
203 |
+
msgid "All day event"
|
204 |
+
msgstr "Egun osoko deialdia"
|
205 |
+
|
206 |
+
#: my-calendar-categories.php:106 my-calendar-categories.php:146
|
207 |
+
msgid "Default category changed."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: my-calendar-categories.php:151
|
211 |
+
msgid "Category edited successfully."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: my-calendar-categories.php:153
|
215 |
+
msgid "Category was not edited."
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: my-calendar-categories.php:230
|
219 |
+
msgid "Default category"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: my-calendar-categories.php:232
|
223 |
+
msgid "Private category (logged-in users only)"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: my-calendar-categories.php:286
|
227 |
+
msgid "Private"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: my-calendar-event-manager.php:104
|
231 |
+
msgid "%1$d events approved successfully out of %2$d selected"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: my-calendar-event-manager.php:106
|
235 |
+
msgid "Your events have not been approved. Please investigate."
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: my-calendar-event-manager.php:274
|
239 |
+
msgid "Event saved. An administrator will review and approve your event."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: my-calendar-event-manager.php:314
|
243 |
+
msgid "Date/time information for this event has been updated."
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: my-calendar-event-manager.php:480
|
247 |
+
msgid "There was an error acquiring information about this event instance. The ID for this event instance was not provided. <strong>You are editing this entire recurrence set.</strong>"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: my-calendar-event-manager.php:638
|
251 |
+
msgid "Hide end time"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: my-calendar-event-manager.php:653
|
255 |
+
msgid "Dates for this event:"
|
256 |
+
msgstr "Deialdi honetarako datak"
|
257 |
+
|
258 |
+
#: my-calendar-event-manager.php:654
|
259 |
+
msgid "Editing a single date of an event changes only that event. Editing the root event changes all events in the series."
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: my-calendar-event-manager.php:664
|
263 |
+
msgid "Related Events:"
|
264 |
+
msgstr "Lotutako deialdiak:"
|
265 |
+
|
266 |
+
#: my-calendar-event-manager.php:664
|
267 |
+
msgid "Edit group"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: my-calendar-event-manager.php:775
|
271 |
+
msgid "Copy this location into the locations table"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: my-calendar-event-manager.php:949
|
275 |
+
msgid "Clear filters"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: my-calendar-event-manager.php:978
|
279 |
+
msgid "« Previous Page"
|
280 |
+
msgstr "Aurreko orrialdea"
|
281 |
+
|
282 |
+
#: my-calendar-event-manager.php:979
|
283 |
+
msgid "Next Page »"
|
284 |
+
msgstr "Hurrengo orrialdea"
|
285 |
+
|
286 |
+
#: my-calendar-event-manager.php:1022
|
287 |
+
msgid "Filter by location"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: my-calendar-event-manager.php:1045
|
291 |
+
msgid "Filter by author"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: my-calendar-event-manager.php:1054
|
295 |
+
msgid "Filter by category"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: my-calendar-event-manager.php:1093
|
299 |
+
msgid "Approve checked events"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: my-calendar-event-manager.php:1304
|
303 |
+
msgid "That event conflicts with a previously scheduled event."
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: my-calendar-event-manager.php:1493
|
307 |
+
msgid "Editing: "
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: my-calendar-event-manager.php:1529 my-calendar-event-manager.php:1542
|
311 |
+
msgid "No related events"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: my-calendar-group-manager.php:300 my-calendar-group-manager.php:308
|
315 |
+
#: my-calendar-group-manager.php:314 my-calendar-group-manager.php:327
|
316 |
+
#: my-calendar-group-manager.php:339 my-calendar-group-manager.php:343
|
317 |
+
#: my-calendar-group-manager.php:362 my-calendar-group-manager.php:374
|
318 |
+
#: my-calendar-group-manager.php:388 my-calendar-group-manager.php:448
|
319 |
+
#: my-calendar-group-manager.php:451 my-calendar-group-manager.php:454
|
320 |
+
#: my-calendar-group-manager.php:457 my-calendar-group-manager.php:460
|
321 |
+
#: my-calendar-group-manager.php:463 my-calendar-group-manager.php:464
|
322 |
+
#: my-calendar-group-manager.php:467 my-calendar-group-manager.php:470
|
323 |
+
#: my-calendar-group-manager.php:481 my-calendar-group-manager.php:489
|
324 |
+
msgid "Fields do not match"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: my-calendar-group-manager.php:710
|
328 |
+
msgid "Grouped Events"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: my-calendar-group-manager.php:711
|
332 |
+
msgid "Ungrouped Events"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: my-calendar-help.php:69
|
336 |
+
msgid "Author or comma-separated list of authors (usernames or IDs) to show events from."
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: my-calendar-help.php:78
|
340 |
+
msgid "This shortcode displays the output of the Upcoming Events widget. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either \"event\" or \"days\", and the <code>category</code> and <code>author</code> attributes work the same way as on the main calendar shortcode. Templates work using the template codes listed below. <code>fallback</code> provides text in case there are no events meeting your criteria. Order provides a sort order for the events list – either ascending (<code>asc</code>) or descending (<code>desc</code>). <code>show_today</code> is an indicator whether or not to include today's events in the list. <code>Skip</code> is the number of events to skip in the upcoming events."
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: my-calendar-help.php:82
|
344 |
+
msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with four configurable attributes: category, author, template and fallback text."
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: my-calendar-help.php:89
|
348 |
+
msgid "Displays a single event and/or all dates for that event. If template is set to a blank value, will only display the list of occurrences. If the list attribute is set blank, will only show the event template"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: my-calendar-help.php:101
|
352 |
+
msgid "Use the <code>template</code> attribute to show your own customized set of data. The data will be sorted by the <code>datatype</code> value."
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: my-calendar-help.php:190
|
356 |
+
msgid "Displays the beginning and end times for events. Does not show end time if same as start or if marked as hidden."
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: my-calendar-help.php:286
|
360 |
+
msgid "Output the stored phone number for the location."
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: my-calendar-settings.php:185
|
364 |
+
msgid "Visit your <a href=\"%s\">permalinks settings</a> and re-save them."
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: my-calendar-settings.php:375
|
368 |
+
msgid "You will need to allow remote connections from this site to the site hosting your My Calendar events. Replace the above placeholders with the host-site information. The two sites must have the same WP table prefix. While this option is enabled, you may not enter or edit events through this installation."
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: my-calendar-settings.php:521
|
372 |
+
msgid "iCal times are UTC"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: my-calendar-settings.php:561
|
376 |
+
msgid "Show author's name"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: my-calendar-settings.php:564
|
380 |
+
msgid "Show link to single event iCal download"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: my-calendar-settings.php:567
|
384 |
+
msgid "Show category icons"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: my-calendar-settings.php:576
|
388 |
+
msgid "Show short description"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: my-calendar-settings.php:579
|
392 |
+
msgid "Show full description"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: my-calendar-settings.php:582
|
396 |
+
msgid "Process WordPress shortcodes in description fields"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: my-calendar-settings.php:585
|
400 |
+
msgid "Show link to single-event details (requires <a href='#mc_uri'>URL</a>)"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: my-calendar-settings.php:588
|
404 |
+
msgid "Show external link"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: my-calendar-settings.php:690
|
408 |
+
msgid "Show Event Image field"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: my-calendar-settings.php:690
|
412 |
+
msgid "Show Event Registration options"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: my-calendar-settings.php:690
|
416 |
+
msgid "Show Event Location fields"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: my-calendar-settings.php:690
|
420 |
+
msgid "Set Special Scheduling options"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: my-calendar-styles.php:84
|
424 |
+
msgid "Styles are disabled, and were not edited."
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: my-calendar-styles.php:197
|
428 |
+
msgid "Apply CSS on these pages (comma separated IDs)"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: my-calendar-widgets.php:74 my-calendar-widgets.php:208
|
432 |
+
msgid "Author or authors to show:"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: my-calendar.php:121
|
436 |
+
msgid "My Calendar: Submissions"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: my-calendar.php:124
|
440 |
+
msgid "Learn more!"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: my-calendar.php:340
|
444 |
+
msgid "Event Submissions"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: my-calendar.php:341
|
448 |
+
msgid "Payments"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: button/generator.php:12
|
452 |
+
msgid "You don't have access to this function."
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: button/generator.php:18 button/generator.php:44
|
456 |
+
msgid "My Calendar Shortcode Generator"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: button/generator.php:47
|
460 |
+
msgid "Shortcode Attributes"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: button/generator.php:52
|
464 |
+
msgid "Location filter type:"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: button/generator.php:54
|
468 |
+
msgid "All locations"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: button/generator.php:55 my-calendar-settings.php:393
|
472 |
+
#: my-calendar-settings.php:904
|
473 |
+
msgid "Location Name"
|
474 |
+
msgstr "Tokiaren izena"
|
475 |
+
|
476 |
+
#: button/generator.php:56 my-calendar-event-manager.php:795
|
477 |
+
#: my-calendar-group-manager.php:460 my-calendar-locations.php:152
|
478 |
+
#: my-calendar-settings.php:905
|
479 |
+
msgid "City"
|
480 |
+
msgstr "Hiria"
|
481 |
+
|
482 |
+
#: button/generator.php:57 my-calendar-event-manager.php:842
|
483 |
+
#: my-calendar-group-manager.php:476 my-calendar-locations.php:197
|
484 |
+
msgid "State"
|
485 |
+
msgstr "Probintzia"
|
486 |
+
|
487 |
+
#: button/generator.php:58 my-calendar-event-manager.php:811
|
488 |
+
#: my-calendar-group-manager.php:463 my-calendar-locations.php:168
|
489 |
+
#: my-calendar-settings.php:908
|
490 |
+
msgid "Postal Code"
|
491 |
+
msgstr "Posta kodea"
|
492 |
+
|
493 |
+
#: button/generator.php:59 my-calendar-event-manager.php:827
|
494 |
+
#: my-calendar-group-manager.php:467 my-calendar-locations.php:184
|
495 |
+
#: my-calendar-settings.php:907
|
496 |
+
msgid "Country"
|
497 |
+
msgstr "Herria"
|
498 |
+
|
499 |
+
#: button/generator.php:60 my-calendar-event-manager.php:818
|
500 |
+
#: my-calendar-event-manager.php:843 my-calendar-group-manager.php:464
|
501 |
+
#: my-calendar-group-manager.php:477 my-calendar-locations.php:175
|
502 |
+
#: my-calendar-locations.php:198 my-calendar-settings.php:909
|
503 |
+
msgid "Region"
|
504 |
+
msgstr "Eskualdea"
|
505 |
+
|
506 |
+
#: button/generator.php:64
|
507 |
+
msgid "Location filter value:"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: button/generator.php:68
|
511 |
+
msgid "Format"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: button/generator.php:70
|
515 |
+
msgid "Grid"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: button/generator.php:71
|
519 |
+
msgid "List"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: button/generator.php:75
|
523 |
+
msgid "Show Category Key"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: button/generator.php:77 button/generator.php:84 button/generator.php:91
|
527 |
+
#: button/generator.php:98 my-calendar-widgets.php:634
|
528 |
+
#: my-calendar-widgets.php:640 my-calendar-widgets.php:646
|
529 |
+
msgid "Yes"
|
530 |
+
msgstr "Bai"
|
531 |
+
|
532 |
+
#: button/generator.php:78 button/generator.php:85 button/generator.php:92
|
533 |
+
#: button/generator.php:99 my-calendar-widgets.php:635
|
534 |
+
#: my-calendar-widgets.php:641 my-calendar-widgets.php:647
|
535 |
+
msgid "No"
|
536 |
+
msgstr "Ez"
|
537 |
+
|
538 |
+
#: button/generator.php:82
|
539 |
+
msgid "Show Previous/Next Links"
|
540 |
+
msgstr "Aurreko/Hurrengo estekak erakutsi"
|
541 |
+
|
542 |
+
#: button/generator.php:89 my-calendar-widgets.php:639
|
543 |
+
msgid "Show Jumpbox"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: button/generator.php:96
|
547 |
+
msgid "Show Format Toggle"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: button/generator.php:103
|
551 |
+
msgid "Time Segment"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: button/generator.php:105 my-calendar-output.php:383
|
555 |
+
#: my-calendar-widgets.php:652
|
556 |
+
msgid "Month"
|
557 |
+
msgstr "Hilabetea"
|
558 |
+
|
559 |
+
#: button/generator.php:106 my-calendar-widgets.php:653
|
560 |
+
msgid "Week"
|
561 |
+
msgstr "Astea"
|
562 |
+
|
563 |
+
#: button/generator.php:107
|
564 |
+
msgid "Day"
|
565 |
+
msgstr "Eguna"
|
566 |
+
|
567 |
+
#: button/generator.php:112
|
568 |
+
msgid "Generate Shortcode"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: button/generator.php:114
|
572 |
+
msgid "<strong>Note:</strong> If you provide a location filter value, it must be an exact match for that information as saved with your events. (e.g. \"Saint Paul\" is not equivalent to \"saint paul\" or \"St. Paul\")"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: button/generator.php:124
|
576 |
+
msgid "My Calendar: this generator isn't going to put the shortcode in your page. Sorry!"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: my-calendar-behaviors.php:44
|
580 |
+
msgid "Behavior Settings saved"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: my-calendar-behaviors.php:68
|
584 |
+
msgid "My Calendar Behaviors"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: my-calendar-behaviors.php:75
|
588 |
+
msgid "Calendar Behavior Settings"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: my-calendar-behaviors.php:80
|
592 |
+
msgid "Insert scripts on these pages (comma separated post IDs)"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: my-calendar-behaviors.php:83
|
596 |
+
msgid "Details boxes are draggable"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: my-calendar-behaviors.php:86
|
600 |
+
msgid "Calendar Behaviors: Calendar View"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: my-calendar-behaviors.php:88
|
604 |
+
msgid "Update/Reset the My Calendar Calendar Javascript"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: my-calendar-behaviors.php:88
|
608 |
+
msgid "Disable Calendar Javascript Effects"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: my-calendar-behaviors.php:91
|
612 |
+
msgid "Edit the jQuery scripts for My Calendar in Calendar format"
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
616 |
+
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
617 |
+
msgid "Comparing scripts with latest installed version of My Calendar"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
621 |
+
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
622 |
+
#: my-calendar-styles.php:217
|
623 |
+
msgid "Latest (from plugin)"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
627 |
+
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
628 |
+
#: my-calendar-styles.php:217
|
629 |
+
msgid "Current (in use)"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: my-calendar-behaviors.php:102
|
633 |
+
msgid "There have been updates to the calendar view scripts."
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: my-calendar-behaviors.php:102 my-calendar-behaviors.php:134
|
637 |
+
#: my-calendar-behaviors.php:165 my-calendar-behaviors.php:197
|
638 |
+
msgid "Compare your scripts with latest installed version of My Calendar."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: my-calendar-behaviors.php:106 my-calendar-behaviors.php:138
|
642 |
+
#: my-calendar-behaviors.php:169 my-calendar-behaviors.php:201
|
643 |
+
msgid "Your script matches that included with My Calendar."
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: my-calendar-behaviors.php:111 my-calendar-behaviors.php:143
|
647 |
+
#: my-calendar-behaviors.php:174 my-calendar-behaviors.php:206
|
648 |
+
#: my-calendar-behaviors.php:211
|
649 |
+
msgid "Save"
|
650 |
+
msgstr "Gorde"
|
651 |
+
|
652 |
+
#: my-calendar-behaviors.php:118
|
653 |
+
msgid "Calendar Behaviors: List View"
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: my-calendar-behaviors.php:120
|
657 |
+
msgid "Update/Reset the My Calendar List Javascript"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: my-calendar-behaviors.php:120
|
661 |
+
msgid "Disable List Javascript Effects"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: my-calendar-behaviors.php:123
|
665 |
+
msgid "Edit the jQuery scripts for My Calendar in List format"
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: my-calendar-behaviors.php:134
|
669 |
+
msgid "There have been updates to the list view scripts."
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: my-calendar-behaviors.php:149
|
673 |
+
msgid "Calendar Behaviors: Mini Calendar View"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: my-calendar-behaviors.php:151
|
677 |
+
msgid "Update/Reset the My Calendar Mini Format Javascript"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: my-calendar-behaviors.php:151
|
681 |
+
msgid "Disable Mini Javascript Effects"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: my-calendar-behaviors.php:154
|
685 |
+
msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: my-calendar-behaviors.php:165
|
689 |
+
msgid "There have been updates to the mini view scripts."
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: my-calendar-behaviors.php:181
|
693 |
+
msgid "Calendar Behaviors: AJAX Navigation"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: my-calendar-behaviors.php:183
|
697 |
+
msgid "Update/Reset the My Calendar AJAX Javascript"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: my-calendar-behaviors.php:183
|
701 |
+
msgid "Disable AJAX Effects"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: my-calendar-behaviors.php:186
|
705 |
+
msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: my-calendar-behaviors.php:197
|
709 |
+
msgid "There have been updates to the AJAX scripts."
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: my-calendar-behaviors.php:217
|
713 |
+
msgid "Resetting JavaScript will set that script to the version currently distributed with the plug-in."
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: my-calendar-categories.php:109
|
717 |
+
msgid "Category added successfully"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: my-calendar-categories.php:111
|
721 |
+
msgid "Category addition failed."
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: my-calendar-categories.php:126
|
725 |
+
msgid "Category deleted successfully. Categories in calendar updated."
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: my-calendar-categories.php:128
|
729 |
+
msgid "Category deleted successfully. Categories in calendar not updated."
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: my-calendar-categories.php:130
|
733 |
+
msgid "Category not deleted. Categories in calendar updated."
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: my-calendar-categories.php:187 my-calendar-categories.php:213
|
737 |
+
#: my-calendar-categories.php:236
|
738 |
+
msgid "Add Category"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: my-calendar-categories.php:189 my-calendar-categories.php:213
|
742 |
+
msgid "Edit Category"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: my-calendar-categories.php:197
|
746 |
+
msgid "Category Editor"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: my-calendar-categories.php:214 my-calendar-categories.php:283
|
750 |
+
msgid "Category Name"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: my-calendar-categories.php:215
|
754 |
+
msgid "Category Color (Hex format)"
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: my-calendar-categories.php:216 my-calendar-categories.php:285
|
758 |
+
msgid "Category Icon"
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: my-calendar-categories.php:236 my-calendar-locations.php:215
|
762 |
+
#: my-calendar-styles.php:206
|
763 |
+
msgid "Save Changes"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: my-calendar-categories.php:243
|
767 |
+
msgid "Add a New Category"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: my-calendar-categories.php:248
|
771 |
+
msgid "Category List"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: my-calendar-categories.php:266 my-calendar.php:327
|
775 |
+
msgid "Manage Categories"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: my-calendar-categories.php:282 my-calendar-event-manager.php:993
|
779 |
+
#: my-calendar-group-manager.php:731 my-calendar-locations.php:288
|
780 |
+
msgid "ID"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: my-calendar-categories.php:284
|
784 |
+
msgid "Category Color"
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: my-calendar-categories.php:287 my-calendar-categories.php:303
|
788 |
+
#: my-calendar-event-manager.php:1059 my-calendar-group-manager.php:740
|
789 |
+
#: my-calendar-locations.php:290 my-calendar-locations.php:302
|
790 |
+
#: my-calendar-output.php:318
|
791 |
+
msgid "Edit"
|
792 |
+
msgstr "Editatu"
|
793 |
+
|
794 |
+
#: my-calendar-categories.php:288 my-calendar-categories.php:309
|
795 |
+
#: my-calendar-event-manager.php:133 my-calendar-event-manager.php:1062
|
796 |
+
#: my-calendar-locations.php:291 my-calendar-locations.php:303
|
797 |
+
#: my-calendar-output.php:319
|
798 |
+
msgid "Delete"
|
799 |
+
msgstr "Ezabatu"
|
800 |
+
|
801 |
+
#: my-calendar-categories.php:306 my-calendar-event-manager.php:1040
|
802 |
+
#: my-calendar-group-manager.php:780 my-calendar-output.php:208
|
803 |
+
#: my-calendar-settings.php:436
|
804 |
+
msgid "N/A"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: my-calendar-categories.php:309 my-calendar-locations.php:303
|
808 |
+
msgid "Are you sure you want to delete this category?"
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: my-calendar-categories.php:320
|
812 |
+
msgid "There are no categories in the database - something has gone wrong!"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: my-calendar-core.php:58 my-calendar.php:331
|
816 |
+
msgid "Settings"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: my-calendar-core.php:59 my-calendar.php:335
|
820 |
+
msgid "Help"
|
821 |
+
msgstr "Laguntza"
|
822 |
+
|
823 |
+
#: my-calendar-core.php:199
|
824 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: my-calendar-core.php:1053 my-calendar-event-manager.php:233
|
828 |
+
msgid "Add Event"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: my-calendar-core.php:1299
|
832 |
+
msgid "Is this your calendar page?"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: my-calendar-core.php:1302
|
836 |
+
msgid "I tried to guess, but don't have a suggestion for you."
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: my-calendar-core.php:1396
|
840 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: my-calendar-core.php:1398
|
844 |
+
msgid "Please describe your problem in detail. I'm not psychic."
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: my-calendar-core.php:1403
|
848 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: my-calendar-core.php:1405
|
852 |
+
msgid "I'll get back to you as soon as I can, after dealing with any support requests from plug-in supporters."
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: my-calendar-core.php:1415
|
856 |
+
msgid "Please note: I do keep records of those who have donated, <strong>but if your donation came from somebody other than your account at this web site, please note this in your message.</strong>"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: my-calendar-core.php:1417
|
860 |
+
msgid "From:"
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: my-calendar-core.php:1420
|
864 |
+
msgid "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">the FAQ for this plug-in</a>."
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: my-calendar-core.php:1423
|
868 |
+
msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: my-calendar-core.php:1426
|
872 |
+
msgid "I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">purchased the User's Guide</a>, but could not find an answer to this question."
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: my-calendar-core.php:1432
|
876 |
+
msgid "Send Support Request"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: my-calendar-core.php:1435
|
880 |
+
msgid "The following additional information will be sent with your support request:"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: my-calendar-event-manager.php:13 my-calendar-settings.php:322
|
884 |
+
msgid "My Calendar has identified that you have the Calendar plugin by Kieran O'Shea installed. You can import those events and categories into the My Calendar database. Would you like to import these events?"
|
885 |
+
msgstr ""
|
886 |
+
|
887 |
+
#: my-calendar-event-manager.php:20 my-calendar-settings.php:328
|
888 |
+
msgid "Import from Calendar"
|
889 |
+
msgstr ""
|
890 |
+
|
891 |
+
#: my-calendar-event-manager.php:25
|
892 |
+
msgid "Although it is possible that this import could fail to import your events correctly, it should not have any impact on your existing Calendar database. If you encounter any problems, <a href=\"http://www.joedolson.com/contact.php\">please contact me</a>!"
|
893 |
+
msgstr ""
|
894 |
+
|
895 |
+
#: my-calendar-event-manager.php:74
|
896 |
+
msgid "%1$d events deleted successfully out of %2$d selected"
|
897 |
+
msgstr ""
|
898 |
+
|
899 |
+
#: my-calendar-event-manager.php:76 my-calendar-event-manager.php:106
|
900 |
+
#: my-calendar-event-manager.php:264 my-calendar-event-manager.php:335
|
901 |
+
#: my-calendar-event-manager.php:352 my-calendar-event-manager.php:371
|
902 |
+
#: my-calendar-event-manager.php:1257 my-calendar-event-manager.php:1260
|
903 |
+
#: my-calendar-event-manager.php:1270 my-calendar-event-manager.php:1277
|
904 |
+
#: my-calendar-event-manager.php:1293 my-calendar-event-manager.php:1299
|
905 |
+
#: my-calendar-event-manager.php:1304 my-calendar-group-manager.php:58
|
906 |
+
#: my-calendar-group-manager.php:84 my-calendar-group-manager.php:148
|
907 |
+
#: my-calendar-group-manager.php:585
|
908 |
+
msgid "Error"
|
909 |
+
msgstr ""
|
910 |
+
|
911 |
+
#: my-calendar-event-manager.php:76
|
912 |
+
msgid "Your events have not been deleted. Please investigate."
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: my-calendar-event-manager.php:126
|
916 |
+
msgid "Delete Event"
|
917 |
+
msgstr ""
|
918 |
+
|
919 |
+
#: my-calendar-event-manager.php:126
|
920 |
+
msgid "Are you sure you want to delete this event?"
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: my-calendar-event-manager.php:138
|
924 |
+
msgid "You do not have permission to delete that event."
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: my-calendar-event-manager.php:152
|
928 |
+
msgid "You do not have permission to approve that event."
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: my-calendar-event-manager.php:167
|
932 |
+
msgid "You do not have permission to reject that event."
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: my-calendar-event-manager.php:204
|
936 |
+
msgid "Currently editing your local calendar"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: my-calendar-event-manager.php:206
|
940 |
+
msgid "Currently editing your central calendar"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: my-calendar-event-manager.php:214 my-calendar-group-manager.php:798
|
944 |
+
msgid "Edit Event"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: my-calendar-event-manager.php:217 my-calendar-event-manager.php:226
|
948 |
+
msgid "You must provide an event id in order to edit it"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: my-calendar-event-manager.php:223
|
952 |
+
msgid "Copy Event"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: my-calendar-event-manager.php:264
|
956 |
+
msgid "I'm sorry! I couldn't add that event to the database."
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: my-calendar-event-manager.php:276
|
960 |
+
msgid "Event added. It will now show in your calendar."
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: my-calendar-event-manager.php:282 my-calendar-group-manager.php:56
|
964 |
+
#: my-calendar-group-manager.php:146
|
965 |
+
msgid "View <a href=\"%s\">your calendar</a>."
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: my-calendar-event-manager.php:335 my-calendar-group-manager.php:148
|
969 |
+
msgid "Your event was not updated."
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: my-calendar-event-manager.php:310 my-calendar-event-manager.php:337
|
973 |
+
#: my-calendar-group-manager.php:60 my-calendar-group-manager.php:86
|
974 |
+
#: my-calendar-group-manager.php:150
|
975 |
+
msgid "Nothing was changed in that update."
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: my-calendar-event-manager.php:341 my-calendar-group-manager.php:62
|
979 |
+
#: my-calendar-group-manager.php:152
|
980 |
+
msgid "Event updated successfully"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: my-calendar-event-manager.php:345 my-calendar-group-manager.php:156
|
984 |
+
msgid "You do not have sufficient permissions to edit that event."
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: my-calendar-event-manager.php:352
|
988 |
+
msgid "You can't delete an event if you haven't submitted an event id"
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: my-calendar-event-manager.php:369
|
992 |
+
msgid "Event deleted successfully"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: my-calendar-event-manager.php:371
|
996 |
+
msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: my-calendar-event-manager.php:384 my-calendar-group-manager.php:168
|
1000 |
+
msgid "Sorry! That's an invalid event key."
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: my-calendar-event-manager.php:388 my-calendar-group-manager.php:172
|
1004 |
+
msgid "Sorry! We couldn't find an event with that ID."
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: my-calendar-event-manager.php:414
|
1008 |
+
msgid "This event must be approved in order for it to appear on the calendar."
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: my-calendar-event-manager.php:467
|
1012 |
+
msgid "Add/Edit Event"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: my-calendar-event-manager.php:470 my-calendar-event-manager.php:889
|
1016 |
+
msgid "Save Event"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: my-calendar-event-manager.php:484 my-calendar-group-manager.php:298
|
1020 |
+
msgid "Enter your Event Information"
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: my-calendar-event-manager.php:486 my-calendar-group-manager.php:300
|
1024 |
+
msgid "Event Title"
|
1025 |
+
msgstr "Deialdiaren izena"
|
1026 |
+
|
1027 |
+
#: my-calendar-event-manager.php:486 my-calendar-event-manager.php:624
|
1028 |
+
#: my-calendar-group-manager.php:300
|
1029 |
+
msgid "(required)"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: my-calendar-event-manager.php:490
|
1033 |
+
msgid "Publish"
|
1034 |
+
msgstr "Argitaratu"
|
1035 |
+
|
1036 |
+
#: my-calendar-event-manager.php:490
|
1037 |
+
msgid "You must approve this event to promote it to the calendar."
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: my-calendar-event-manager.php:492
|
1041 |
+
msgid "An administrator must approve your new event."
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: my-calendar-event-manager.php:505
|
1045 |
+
msgid "This event is not spam"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: my-calendar-event-manager.php:512 my-calendar-group-manager.php:314
|
1049 |
+
msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: my-calendar-event-manager.php:534 my-calendar-event-manager.php:547
|
1053 |
+
#: my-calendar-group-manager.php:325 my-calendar-group-manager.php:333
|
1054 |
+
msgid "This event's image:"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: my-calendar-event-manager.php:536 my-calendar-group-manager.php:327
|
1058 |
+
msgid "Add an image:"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: my-calendar-event-manager.php:538
|
1062 |
+
msgid "(URL to Event image)"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: my-calendar-event-manager.php:540 my-calendar-group-manager.php:327
|
1066 |
+
msgid "Upload Image"
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: my-calendar-event-manager.php:540 my-calendar-group-manager.php:327
|
1070 |
+
msgid "Include your image URL or upload an image."
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: my-calendar-event-manager.php:553 my-calendar-group-manager.php:339
|
1074 |
+
msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: my-calendar-event-manager.php:557 my-calendar-group-manager.php:343
|
1078 |
+
msgid "Event Host"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: my-calendar-event-manager.php:576 my-calendar-group-manager.php:362
|
1082 |
+
msgid "Event Category"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: my-calendar-event-manager.php:588 my-calendar-group-manager.php:374
|
1086 |
+
msgid "Event Link (Optional)"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: my-calendar-event-manager.php:588 my-calendar-group-manager.php:374
|
1090 |
+
msgid "This link will expire when the event passes."
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: my-calendar-event-manager.php:598 my-calendar-event-manager.php:606
|
1094 |
+
msgid "Event Date and Time"
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: my-calendar-event-manager.php:624
|
1098 |
+
msgid "Start Date (YYYY-MM-DD)"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: my-calendar-event-manager.php:624
|
1102 |
+
msgid "Time (hh:mm am/pm)"
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: my-calendar-event-manager.php:633
|
1106 |
+
msgid "End Date (YYYY-MM-DD)"
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: my-calendar-event-manager.php:633
|
1110 |
+
msgid "End Time (hh:mm am/pm)"
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: my-calendar-event-manager.php:644
|
1114 |
+
msgid "This is a multi-day event."
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: my-calendar-event-manager.php:646
|
1118 |
+
msgid "Enter the beginning and ending dates/times for each occurrence of the event."
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: my-calendar-event-manager.php:646
|
1122 |
+
msgid "If this is a multi-day event, it creates a single event with multiple dates/times; otherwise it creates separate events for each occurrence."
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: my-calendar-event-manager.php:648
|
1126 |
+
msgid "Add another occurrence"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: my-calendar-event-manager.php:649
|
1130 |
+
msgid "Remove last occurrence"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: my-calendar-event-manager.php:671
|
1134 |
+
msgid "Current time difference from GMT is "
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
+
#: my-calendar-event-manager.php:671
|
1138 |
+
msgid " hour(s)"
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
+
#: my-calendar-event-manager.php:681 my-calendar-event-manager.php:688
|
1142 |
+
msgid "Recurring Events"
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: my-calendar-event-manager.php:691
|
1146 |
+
msgid "Repeats for"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: my-calendar-event-manager.php:692
|
1150 |
+
msgid "Units"
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
#: my-calendar-core.php:1456 my-calendar-templates.php:151
|
1154 |
+
msgid "Does not recur"
|
1155 |
+
msgstr ""
|
1156 |
+
|
1157 |
+
#: my-calendar-core.php:1457 my-calendar-event-manager.php:1031
|
1158 |
+
#: my-calendar-group-manager.php:772 my-calendar-templates.php:152
|
1159 |
+
msgid "Daily"
|
1160 |
+
msgstr ""
|
1161 |
+
|
1162 |
+
#: my-calendar-core.php:1458 my-calendar-templates.php:153
|
1163 |
+
msgid "Daily, weekdays only"
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: my-calendar-core.php:1459 my-calendar-event-manager.php:1033
|
1167 |
+
#: my-calendar-group-manager.php:774 my-calendar-templates.php:154
|
1168 |
+
msgid "Weekly"
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: my-calendar-core.php:1460 my-calendar-templates.php:155
|
1172 |
+
msgid "Bi-weekly"
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: my-calendar-core.php:1461
|
1176 |
+
msgid "Date of Month (e.g., the 24th of each month)"
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: my-calendar-core.php:1462
|
1180 |
+
msgid "Day of Month (e.g., the 3rd Monday of each month)"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: my-calendar-core.php:1463 my-calendar-templates.php:158
|
1184 |
+
msgid "Annually"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: my-calendar-event-manager.php:698
|
1188 |
+
msgid "Your entry is the number of events after the first occurrence of the event: a recurrence of <em>2</em> means the event will happen three times."
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: my-calendar-event-manager.php:719
|
1192 |
+
msgid "Event Registration Settings"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: my-calendar-event-manager.php:722 my-calendar-group-manager.php:388
|
1196 |
+
msgid "Event Registration Status"
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: my-calendar-event-manager.php:723 my-calendar-group-manager.php:389
|
1200 |
+
msgid "My Calendar does not manage event registrations. Use this for information only."
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: my-calendar-event-manager.php:725 my-calendar-group-manager.php:391
|
1204 |
+
msgid "Open"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: my-calendar-event-manager.php:726 my-calendar-group-manager.php:392
|
1208 |
+
msgid "Closed"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: my-calendar-event-manager.php:727 my-calendar-group-manager.php:393
|
1212 |
+
msgid "Does not apply"
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: my-calendar-event-manager.php:730 my-calendar-group-manager.php:396
|
1216 |
+
msgid "If this event recurs, it can only be registered for as a complete series."
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: my-calendar-event-manager.php:747 my-calendar-event-manager.php:750
|
1220 |
+
#: my-calendar-group-manager.php:413 my-calendar-group-manager.php:416
|
1221 |
+
#: my-calendar-locations.php:129
|
1222 |
+
msgid "Event Location"
|
1223 |
+
msgstr ""
|
1224 |
+
|
1225 |
+
#: my-calendar-event-manager.php:757 my-calendar-group-manager.php:423
|
1226 |
+
msgid "Choose a preset location:"
|
1227 |
+
msgstr ""
|
1228 |
+
|
1229 |
+
#: my-calendar-event-manager.php:766 my-calendar-group-manager.php:436
|
1230 |
+
msgid "Add recurring locations for later use."
|
1231 |
+
msgstr ""
|
1232 |
+
|
1233 |
+
#: my-calendar-event-manager.php:773 my-calendar-group-manager.php:445
|
1234 |
+
#: my-calendar-locations.php:131
|
1235 |
+
msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: my-calendar-event-manager.php:777 my-calendar-group-manager.php:448
|
1239 |
+
#: my-calendar-locations.php:134
|
1240 |
+
msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
|
1241 |
+
msgstr "Tokiaren izena "
|
1242 |
+
|
1243 |
+
#: my-calendar-event-manager.php:786 my-calendar-group-manager.php:451
|
1244 |
+
#: my-calendar-locations.php:143
|
1245 |
+
msgid "Street Address"
|
1246 |
+
msgstr "Helbidea"
|
1247 |
+
|
1248 |
+
#: my-calendar-event-manager.php:789 my-calendar-group-manager.php:454
|
1249 |
+
#: my-calendar-locations.php:146
|
1250 |
+
msgid "Street Address (2)"
|
1251 |
+
msgstr "Helbidea (2)"
|
1252 |
+
|
1253 |
+
#: my-calendar-event-manager.php:792 my-calendar-group-manager.php:457
|
1254 |
+
#: my-calendar-locations.php:149
|
1255 |
+
msgid "Phone"
|
1256 |
+
msgstr "Telefonoa"
|
1257 |
+
|
1258 |
+
#: my-calendar-event-manager.php:802 my-calendar-group-manager.php:460
|
1259 |
+
#: my-calendar-locations.php:159 my-calendar-settings.php:906
|
1260 |
+
msgid "State/Province"
|
1261 |
+
msgstr "Probintzia"
|
1262 |
+
|
1263 |
+
#: my-calendar-event-manager.php:836 my-calendar-group-manager.php:470
|
1264 |
+
#: my-calendar-locations.php:191
|
1265 |
+
msgid "Initial Zoom"
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: my-calendar-event-manager.php:838 my-calendar-group-manager.php:472
|
1269 |
+
#: my-calendar-locations.php:193
|
1270 |
+
msgid "Neighborhood"
|
1271 |
+
msgstr "Auzoa"
|
1272 |
+
|
1273 |
+
#: my-calendar-event-manager.php:839 my-calendar-group-manager.php:473
|
1274 |
+
#: my-calendar-locations.php:194
|
1275 |
+
msgid "Small City"
|
1276 |
+
msgstr "Herria"
|
1277 |
+
|
1278 |
+
#: my-calendar-event-manager.php:840 my-calendar-group-manager.php:474
|
1279 |
+
#: my-calendar-locations.php:195
|
1280 |
+
msgid "Large City"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: my-calendar-event-manager.php:841 my-calendar-group-manager.php:475
|
1284 |
+
#: my-calendar-locations.php:196
|
1285 |
+
msgid "Greater Metro Area"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: my-calendar-event-manager.php:847 my-calendar-group-manager.php:481
|
1289 |
+
msgid "Location URL"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: my-calendar-event-manager.php:850 my-calendar-group-manager.php:484
|
1293 |
+
#: my-calendar-locations.php:205
|
1294 |
+
msgid "GPS Coordinates (optional)"
|
1295 |
+
msgstr ""
|
1296 |
+
|
1297 |
+
#: my-calendar-event-manager.php:852 my-calendar-group-manager.php:486
|
1298 |
+
msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to provide your map link."
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: my-calendar-event-manager.php:855 my-calendar-group-manager.php:489
|
1302 |
+
#: my-calendar-locations.php:210
|
1303 |
+
msgid "Latitude"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: my-calendar-event-manager.php:855 my-calendar-group-manager.php:489
|
1307 |
+
#: my-calendar-locations.php:211
|
1308 |
+
msgid "Longitude"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: my-calendar-event-manager.php:868
|
1312 |
+
msgid "Special scheduling options"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: my-calendar-event-manager.php:871
|
1316 |
+
msgid "Special Options"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: my-calendar-event-manager.php:873
|
1320 |
+
msgid "Cancel this event if it occurs on a date with an event in the Holidays category"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: my-calendar-event-manager.php:876
|
1324 |
+
msgid "If this event recurs, and falls on the 5th week of the month in a month with only four weeks, move it back one week."
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: my-calendar-event-manager.php:956 my-calendar-settings.php:121
|
1328 |
+
#: my-calendar-settings.php:770
|
1329 |
+
msgid "Manage Events"
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: my-calendar-event-manager.php:959 my-calendar-templates.php:244
|
1333 |
+
msgid "Published"
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: my-calendar-event-manager.php:960 my-calendar-templates.php:244
|
1337 |
+
msgid "Reserved"
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: my-calendar-event-manager.php:961 my-calendar-group-manager.php:712
|
1341 |
+
msgid "All"
|
1342 |
+
msgstr "Guztia"
|
1343 |
+
|
1344 |
+
#: my-calendar-event-manager.php:994 my-calendar-group-manager.php:733
|
1345 |
+
#: my-calendar-settings.php:388 my-calendar-widgets.php:47
|
1346 |
+
#: my-calendar-widgets.php:156 my-calendar-widgets.php:621
|
1347 |
+
msgid "Title"
|
1348 |
+
msgstr "Izenburua"
|
1349 |
+
|
1350 |
+
#: my-calendar-event-manager.php:995 my-calendar-group-manager.php:734
|
1351 |
+
msgid "Where"
|
1352 |
+
msgstr "Non"
|
1353 |
+
|
1354 |
+
#: my-calendar-event-manager.php:996 my-calendar-group-manager.php:735
|
1355 |
+
#: my-calendar-settings.php:389
|
1356 |
+
msgid "Description"
|
1357 |
+
msgstr "Azalpena"
|
1358 |
+
|
1359 |
+
#: my-calendar-event-manager.php:997 my-calendar-group-manager.php:736
|
1360 |
+
msgid "Starts"
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: my-calendar-event-manager.php:998 my-calendar-group-manager.php:737
|
1364 |
+
msgid "Recurs"
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: my-calendar-event-manager.php:999 my-calendar-group-manager.php:738
|
1368 |
+
#: my-calendar-settings.php:391
|
1369 |
+
msgid "Author"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: my-calendar-event-manager.php:1000 my-calendar-group-manager.php:739
|
1373 |
+
#: my-calendar-output.php:137 my-calendar-settings.php:392
|
1374 |
+
#: my-calendar-templates.php:242
|
1375 |
+
msgid "Category"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: my-calendar-event-manager.php:1001
|
1379 |
+
msgid "Edit / Delete"
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: my-calendar-event-manager.php:1030 my-calendar-group-manager.php:771
|
1383 |
+
msgid "Never"
|
1384 |
+
msgstr "Inoiz ez"
|
1385 |
+
|
1386 |
+
#: my-calendar-event-manager.php:1032 my-calendar-group-manager.php:773
|
1387 |
+
msgid "Weekdays"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: my-calendar-event-manager.php:1034 my-calendar-group-manager.php:775
|
1391 |
+
msgid "Bi-Weekly"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: my-calendar-event-manager.php:1035 my-calendar-group-manager.php:776
|
1395 |
+
msgid "Monthly (by date)"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: my-calendar-event-manager.php:1036 my-calendar-group-manager.php:777
|
1399 |
+
msgid "Monthly (by day)"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: my-calendar-event-manager.php:1037 my-calendar-group-manager.php:778
|
1403 |
+
msgid "Yearly"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: my-calendar-group-manager.php:781
|
1407 |
+
msgid "Forever"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: my-calendar-event-manager.php:1041 my-calendar-event-manager.php:1042
|
1411 |
+
#: my-calendar-group-manager.php:782
|
1412 |
+
msgid "%d Times"
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: my-calendar-event-manager.php:1057
|
1416 |
+
msgid "Copy"
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: my-calendar-event-manager.php:1060 my-calendar-group-manager.php:800
|
1420 |
+
#: my-calendar-output.php:313
|
1421 |
+
msgid "Edit Group"
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: my-calendar-event-manager.php:1063 my-calendar-group-manager.php:804
|
1425 |
+
msgid "Not editable."
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: my-calendar-event-manager.php:1069
|
1429 |
+
msgid "Reject"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: my-calendar-event-manager.php:1071
|
1433 |
+
msgid "Approve"
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: my-calendar-event-manager.php:1076
|
1437 |
+
msgid "Approved"
|
1438 |
+
msgstr ""
|
1439 |
+
|
1440 |
+
#: my-calendar-event-manager.php:1078
|
1441 |
+
msgid "Rejected"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: my-calendar-event-manager.php:1080
|
1445 |
+
msgid "Awaiting Approval"
|
1446 |
+
msgstr ""
|
1447 |
+
|
1448 |
+
#: my-calendar-event-manager.php:1091
|
1449 |
+
msgid "Delete checked events"
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: my-calendar-event-manager.php:1105 my-calendar-group-manager.php:818
|
1453 |
+
msgid "There are no events in the database!"
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: my-calendar-event-manager.php:1257
|
1457 |
+
msgid "Your event end date must be either after or the same as your event begin date"
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: my-calendar-event-manager.php:1260
|
1461 |
+
msgid "Your date formatting is correct but one or more of your dates is invalid. Check for number of days in month and leap year related errors."
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: my-calendar-event-manager.php:1293 my-calendar-group-manager.php:585
|
1465 |
+
msgid "The event title must be between 1 and 255 characters in length."
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: my-calendar-event-manager.php:1299
|
1469 |
+
msgid "The repetition value must be 0 unless a type of recurrence is selected."
|
1470 |
+
msgstr ""
|
1471 |
+
|
1472 |
+
#: my-calendar-group-manager.php:58
|
1473 |
+
msgid "Event not updated."
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: my-calendar-group-manager.php:84
|
1477 |
+
msgid "Event not grouped."
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: my-calendar-group-manager.php:88
|
1481 |
+
msgid "Event grouped successfully"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: my-calendar-group-manager.php:103 my-calendar-group-manager.php:295
|
1485 |
+
#: my-calendar-group-manager.php:500
|
1486 |
+
msgid "Edit Event Group"
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: my-calendar-group-manager.php:106
|
1490 |
+
msgid "You must provide an event group id in order to edit it"
|
1491 |
+
msgstr ""
|
1492 |
+
|
1493 |
+
#: my-calendar-group-manager.php:113 my-calendar-group-manager.php:292
|
1494 |
+
#: my-calendar.php:328
|
1495 |
+
msgid "Manage Event Groups"
|
1496 |
+
msgstr ""
|
1497 |
+
|
1498 |
+
#: my-calendar-group-manager.php:114
|
1499 |
+
msgid "Grouped events can be edited simultaneously. When you choose a group of events to edit, the form will be pre-filled with the content applicable to the member of the event group you started from. (e.g., if you click on the \"Edit Group\" link for the 3rd of a set of events, the boxes will use the content applicable to that event.). You will also receive a set of checkboxes which will indicate which events in the group should have these changes applied. (All grouped events can also be edited individually.)"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: my-calendar-group-manager.php:115
|
1503 |
+
msgid "The following fields will never be changed when editing groups: registration availability, event publication status, spam flagging, event recurrence, event repetitions, and the start and end dates and times for that event."
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: my-calendar-group-manager.php:220
|
1507 |
+
msgid "<strong>NOTE:</strong> The group editable fields for the events in this group do not match"
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: my-calendar-group-manager.php:220
|
1511 |
+
msgid "The group editable fields for the events in this group match."
|
1512 |
+
msgstr ""
|
1513 |
+
|
1514 |
+
#: my-calendar-group-manager.php:227
|
1515 |
+
msgid "Apply these changes to:"
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: my-calendar-group-manager.php:238
|
1519 |
+
msgid "Check/Uncheck all"
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: my-calendar-group-manager.php:240
|
1523 |
+
msgid "Remove checked events from this group"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: my-calendar-group-manager.php:258
|
1527 |
+
msgid "You must provide a group ID to edit groups"
|
1528 |
+
msgstr ""
|
1529 |
+
|
1530 |
+
#: my-calendar-group-manager.php:308
|
1531 |
+
msgid "Selected dates are a single multi-day event."
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: my-calendar-group-manager.php:385
|
1535 |
+
msgid "Event Registration Options"
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: my-calendar-group-manager.php:707
|
1539 |
+
msgid "Create/Modify Groups"
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: my-calendar-group-manager.php:716
|
1543 |
+
msgid "Check a set of events to group them for mass editing."
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: my-calendar-group-manager.php:726 my-calendar-group-manager.php:812
|
1547 |
+
msgid "Group checked events for mass editing"
|
1548 |
+
msgstr ""
|
1549 |
+
|
1550 |
+
#: my-calendar-group-manager.php:732
|
1551 |
+
msgid "Group"
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: my-calendar-group-manager.php:802
|
1555 |
+
msgid "Ungrouped"
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: my-calendar-help.php:4
|
1559 |
+
msgid "How to use My Calendar"
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: my-calendar-help.php:45
|
1563 |
+
msgid "Shortcode Syntax"
|
1564 |
+
msgstr ""
|
1565 |
+
|
1566 |
+
#: my-calendar-help.php:48
|
1567 |
+
msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: my-calendar-help.php:50
|
1571 |
+
msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
|
1572 |
+
msgstr ""
|
1573 |
+
|
1574 |
+
#: my-calendar-help.php:53
|
1575 |
+
msgid "This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format."
|
1576 |
+
msgstr ""
|
1577 |
+
|
1578 |
+
#: my-calendar-help.php:60
|
1579 |
+
msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
|
1580 |
+
msgstr ""
|
1581 |
+
|
1582 |
+
#: my-calendar-help.php:61
|
1583 |
+
msgid "Either \"list\" or \"mini\" to show the list view or the mini calendar; exclude or any other value to show the main grid calendar."
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: my-calendar-help.php:62
|
1587 |
+
msgid "Set as \"no\" to hide the category key."
|
1588 |
+
msgstr ""
|
1589 |
+
|
1590 |
+
#: my-calendar-help.php:63
|
1591 |
+
msgid "Set as \"no\" to hide the month-by-month navigation."
|
1592 |
+
msgstr ""
|
1593 |
+
|
1594 |
+
#: my-calendar-help.php:64
|
1595 |
+
msgid "Set to \"no\" or \"yes\" to override the default settings."
|
1596 |
+
msgstr ""
|
1597 |
+
|
1598 |
+
#: my-calendar-help.php:65
|
1599 |
+
msgid "Set as \"yes\" to show a link to switch between list and grid formats."
|
1600 |
+
msgstr ""
|
1601 |
+
|
1602 |
+
#: my-calendar-help.php:66
|
1603 |
+
msgid "Set to \"week\" to show a one week view or to \"day\" to show a single day view. Any other value will show a month view. (Day view shows as a list regardless of format setting.)"
|
1604 |
+
msgstr ""
|
1605 |
+
|
1606 |
+
#: my-calendar-help.php:67
|
1607 |
+
msgid "The type of location data to restrict by."
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: my-calendar-help.php:68
|
1611 |
+
msgid "The specific location information to filter to."
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: my-calendar-help.php:73
|
1615 |
+
msgid "The main My Calendar short code can be generated from a button in your post and page editor. The mini calendar can also be accessed and configured as a widget."
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: my-calendar-help.php:75
|
1619 |
+
msgid "Additional Calendar Views (Upcoming events, today's events)"
|
1620 |
+
msgstr ""
|
1621 |
+
|
1622 |
+
#: my-calendar-help.php:85
|
1623 |
+
msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
|
1624 |
+
msgstr ""
|
1625 |
+
|
1626 |
+
#: my-calendar-help.php:92
|
1627 |
+
msgid "Supplement Features (Locations filter, Categories filter)"
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: my-calendar-help.php:96
|
1631 |
+
msgid "This shortcode produces a list of event locations, either as a list of links or as a select dropdown form. The <code>show</code> attribute can either be <code>list</code> or <code>form</code>, <code>type</code> is either <code>saved</code> (to show items from your stored locations), or <code>custom</code> (to show the options configured in your user settings). <code>datatype</code> must be the type of data your limits are choosing from: <code>name</code> (business name), <code>city</code>, <code>state</code>, <code>country</code>, <code>zip</code> (postal code), or <code>region</code>."
|
1632 |
+
msgstr ""
|
1633 |
+
|
1634 |
+
#: my-calendar-help.php:100
|
1635 |
+
msgid "If you want to display a list of locations in your database, use this shortcode. The <code>datatype</code> is the type of data displayed; all lists will include a link to the map of that location. In addition to basic location information as in the above shortcode, you can also use \"hcard\" to display all available location information."
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: my-calendar-help.php:105
|
1639 |
+
msgid "This shortcode produces a list of event categories, either as a list of links or as a select dropdown form. The <code>show</code> attribute can either be <code>list</code> or <code>form</code>."
|
1640 |
+
msgstr ""
|
1641 |
+
|
1642 |
+
#: my-calendar-help.php:113
|
1643 |
+
msgid "Category Icons"
|
1644 |
+
msgstr ""
|
1645 |
+
|
1646 |
+
#: my-calendar-help.php:116
|
1647 |
+
msgid "My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc."
|
1648 |
+
msgstr ""
|
1649 |
+
|
1650 |
+
#: my-calendar-help.php:119
|
1651 |
+
msgid "The pre-installed category icons may not be especially useful for your needs or design. I'm assuming that you're going to upload your own icons -- all you need to do is upload them to the plugin's icons folder, and they'll be available for immediate use, or place them in a folder at \"my-calendar-custom\" to avoid having them overwritten by upgrades."
|
1652 |
+
msgstr ""
|
1653 |
+
|
1654 |
+
#: my-calendar-help.php:119
|
1655 |
+
msgid "Your icons folder is:"
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: my-calendar-help.php:119
|
1659 |
+
msgid "You can alternately place icons in:"
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
+
#: my-calendar-help.php:128
|
1663 |
+
msgid "Custom Styles"
|
1664 |
+
msgstr ""
|
1665 |
+
|
1666 |
+
#: my-calendar-help.php:131
|
1667 |
+
msgid "My Calendar comes with four basic stylesheets. My Calendar will retain changes to these basic stylesheets on upgrade, but if you want to add an entirely new stylesheet, you may wish to store it in the My Calendar custom styles directory."
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: my-calendar-help.php:134
|
1671 |
+
msgid "Your stylesheet directory is"
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: my-calendar-help.php:135
|
1675 |
+
msgid "Your custom stylesheets directory is"
|
1676 |
+
msgstr ""
|
1677 |
+
|
1678 |
+
#: my-calendar-help.php:138
|
1679 |
+
msgid "You can also add custom styles to your theme directory to provide print styles, mobile styles, and tablet styles. <code>mc-print.css</code>, <code>mc-mobile.css</code>, and <code>mc-tablet.css</code>."
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: my-calendar-help.php:146
|
1683 |
+
msgid "Widget Templating"
|
1684 |
+
msgstr ""
|
1685 |
+
|
1686 |
+
#: my-calendar-help.php:149
|
1687 |
+
msgid "All template tags support two attributes: before=\"value\" and after=\"value\". The values of the attributes will be placed before and after the output value. These attribute values <strong>must</strong> be wrapped in double quotes."
|
1688 |
+
msgstr ""
|
1689 |
+
|
1690 |
+
#: my-calendar-help.php:152
|
1691 |
+
msgid "Date/Time template tags support the \"format\" attribute: format=\"M, Y\", where the value is a PHP formatted date string. Only <code>dtstart</code> and <code>dtend</code> include the full date/time information for formatting."
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
+
#: my-calendar-help.php:155
|
1695 |
+
msgid "Example:"
|
1696 |
+
msgstr ""
|
1697 |
+
|
1698 |
+
#: my-calendar-help.php:157 my-calendar.php:179
|
1699 |
+
msgid "Event Template Tags"
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: my-calendar-help.php:160
|
1703 |
+
msgid "Displays the title of the event."
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
+
#: my-calendar-help.php:163
|
1707 |
+
msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
#: my-calendar-help.php:166
|
1711 |
+
msgid "Displays the start time for the event."
|
1712 |
+
msgstr ""
|
1713 |
+
|
1714 |
+
#: my-calendar-help.php:169
|
1715 |
+
msgid "Displays the start time for the event adjusted to the current user's time zone settings. Returns <code>{time}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1716 |
+
msgstr ""
|
1717 |
+
|
1718 |
+
#: my-calendar-help.php:172
|
1719 |
+
msgid "Displays the end time for the event adjusted to the current user's time zone settings. Returns <code>{endtime}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1720 |
+
msgstr ""
|
1721 |
+
|
1722 |
+
#: my-calendar-help.php:175
|
1723 |
+
msgid "Displays the date on which the event begins."
|
1724 |
+
msgstr ""
|
1725 |
+
|
1726 |
+
#: my-calendar-help.php:181
|
1727 |
+
msgid "Displays the date on which the event ends."
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: my-calendar-help.php:184
|
1731 |
+
msgid "Displays the time at which the event ends."
|
1732 |
+
msgstr ""
|
1733 |
+
|
1734 |
+
#: my-calendar-help.php:187
|
1735 |
+
msgid "Displays the beginning date to the end date for events. Does not show end date if same as start date."
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: my-calendar-help.php:193
|
1739 |
+
msgid "Timestamp for beginning of event."
|
1740 |
+
msgstr ""
|
1741 |
+
|
1742 |
+
#: my-calendar-help.php:196
|
1743 |
+
msgid "Timestamp for end of event."
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: my-calendar-help.php:199
|
1747 |
+
msgid "For multi-day events displays an unordered list of dates and times for events in this group. Otherwise, beginning date/time."
|
1748 |
+
msgstr ""
|
1749 |
+
|
1750 |
+
#: my-calendar-help.php:202
|
1751 |
+
msgid "Displays the WordPress author who posted the event."
|
1752 |
+
msgstr ""
|
1753 |
+
|
1754 |
+
#: my-calendar-help.php:205
|
1755 |
+
msgid "Displays the name of the person assigned as host for the event."
|
1756 |
+
msgstr ""
|
1757 |
+
|
1758 |
+
#: my-calendar-help.php:208
|
1759 |
+
msgid "Displays the email address of the person assigned as host for the event."
|
1760 |
+
msgstr ""
|
1761 |
+
|
1762 |
+
#: my-calendar-help.php:211
|
1763 |
+
msgid "Displays the short version of the event description."
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: my-calendar-help.php:214
|
1767 |
+
msgid "Displays short description without converting paragraphs."
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: my-calendar-help.php:220
|
1771 |
+
msgid "Displays the description of the event."
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: my-calendar-help.php:223
|
1775 |
+
msgid "Displays description without converting paragraphs."
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: my-calendar-help.php:229 my-calendar.php:225
|
1779 |
+
msgid "Image associated with the event."
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: my-calendar-help.php:232
|
1783 |
+
msgid "Displays the URL provided for the event."
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: my-calendar-help.php:235
|
1787 |
+
msgid "Produces the URL to download an iCal formatted record for the event."
|
1788 |
+
msgstr ""
|
1789 |
+
|
1790 |
+
#: my-calendar-help.php:238
|
1791 |
+
msgid "Produces a hyperlink to download an iCal formatted record for the event."
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: my-calendar-help.php:241
|
1795 |
+
msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: my-calendar-help.php:244
|
1799 |
+
msgid "Shows the number of repetitions of the event."
|
1800 |
+
msgstr ""
|
1801 |
+
|
1802 |
+
#: my-calendar-help.php:247
|
1803 |
+
msgid "Provides a link to an auto-generated page containing all information on the given event."
|
1804 |
+
msgstr ""
|
1805 |
+
|
1806 |
+
#: my-calendar-help.php:247
|
1807 |
+
msgid "Requires that the site URL has been provided on the Settings page"
|
1808 |
+
msgstr ""
|
1809 |
+
|
1810 |
+
#: my-calendar-help.php:250
|
1811 |
+
msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
|
1812 |
+
msgstr ""
|
1813 |
+
|
1814 |
+
#: my-calendar-help.php:253
|
1815 |
+
msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
|
1816 |
+
msgstr ""
|
1817 |
+
|
1818 |
+
#: my-calendar-help.php:255 my-calendar.php:239
|
1819 |
+
msgid "Location Template Tags"
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#: my-calendar-help.php:259
|
1823 |
+
msgid "Displays the name of the location of the event."
|
1824 |
+
msgstr ""
|
1825 |
+
|
1826 |
+
#: my-calendar-help.php:262
|
1827 |
+
msgid "Displays the first line of the site address."
|
1828 |
+
msgstr ""
|
1829 |
+
|
1830 |
+
#: my-calendar-help.php:265
|
1831 |
+
msgid "Displays the second line of the site address."
|
1832 |
+
msgstr ""
|
1833 |
+
|
1834 |
+
#: my-calendar-help.php:268
|
1835 |
+
msgid "Displays the city for the location."
|
1836 |
+
msgstr ""
|
1837 |
+
|
1838 |
+
#: my-calendar-help.php:271
|
1839 |
+
msgid "Displays the state for the location."
|
1840 |
+
msgstr ""
|
1841 |
+
|
1842 |
+
#: my-calendar-help.php:274
|
1843 |
+
msgid "Displays the postcode for the location."
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: my-calendar-help.php:277
|
1847 |
+
msgid "Shows the custom region entered for the location."
|
1848 |
+
msgstr ""
|
1849 |
+
|
1850 |
+
#: my-calendar-help.php:280
|
1851 |
+
msgid "Displays the country for the event location."
|
1852 |
+
msgstr ""
|
1853 |
+
|
1854 |
+
#: my-calendar-help.php:283
|
1855 |
+
msgid "Output the URL for the location link."
|
1856 |
+
msgstr ""
|
1857 |
+
|
1858 |
+
#: my-calendar-help.php:289
|
1859 |
+
msgid "Output a hyperlink to the location's listed link with default link text."
|
1860 |
+
msgstr ""
|
1861 |
+
|
1862 |
+
#: my-calendar-help.php:292
|
1863 |
+
msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
1864 |
+
msgstr ""
|
1865 |
+
|
1866 |
+
#: my-calendar-help.php:295
|
1867 |
+
msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
|
1868 |
+
msgstr ""
|
1869 |
+
|
1870 |
+
#: my-calendar-help.php:297 my-calendar.php:275
|
1871 |
+
msgid "Category Template Tags"
|
1872 |
+
msgstr ""
|
1873 |
+
|
1874 |
+
#: my-calendar-help.php:301
|
1875 |
+
msgid "Displays the name of the category the event is in."
|
1876 |
+
msgstr ""
|
1877 |
+
|
1878 |
+
#: my-calendar-help.php:304
|
1879 |
+
msgid "Produces the address of the current event's category icon."
|
1880 |
+
msgstr ""
|
1881 |
+
|
1882 |
+
#: my-calendar-help.php:307
|
1883 |
+
msgid "Produces the HTML for the current event's category icon."
|
1884 |
+
msgstr ""
|
1885 |
+
|
1886 |
+
#: my-calendar-help.php:310
|
1887 |
+
msgid "Produces the hex code for the current event's category color."
|
1888 |
+
msgstr ""
|
1889 |
+
|
1890 |
+
#: my-calendar-help.php:313
|
1891 |
+
msgid ""
|
1892 |
+
"Displays the ID forr\n"
|
1893 |
+
"\t\t the category the event is in."
|
1894 |
+
msgstr ""
|
1895 |
+
|
1896 |
+
#: my-calendar-help.php:317
|
1897 |
+
msgid "Special use Template Tags"
|
1898 |
+
msgstr ""
|
1899 |
+
|
1900 |
+
#: my-calendar-help.php:321
|
1901 |
+
msgid "A unique ID for the current instance of an event."
|
1902 |
+
msgstr ""
|
1903 |
+
|
1904 |
+
#: my-calendar-help.php:324
|
1905 |
+
msgid "The ID for the event record associated with the current instance of an event."
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: my-calendar-help.php:334
|
1909 |
+
msgid "Get Plug-in Support"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: my-calendar-help.php:339
|
1913 |
+
msgid "My Calendar support requests can only be sent by administrators."
|
1914 |
+
msgstr ""
|
1915 |
+
|
1916 |
+
#: my-calendar-help.php:18 my-calendar-help.php:346
|
1917 |
+
msgid "Helpful Information"
|
1918 |
+
msgstr ""
|
1919 |
+
|
1920 |
+
#: my-calendar-help.php:349
|
1921 |
+
msgid "<strong>Uninstalling the plugin</strong>: Although the WordPress standard and expectation is for plug-ins to delete any custom database tables when they're uninstalled, My Calendar <em>does not do this</em>. This was a conscious decision on my part -- the data stored in your My Calendar tables is yours; with the sole exception of the \"General\" category, you added every piece of it yourself. As such, I feel it would be a major disservice to you to delete this information if you uninstall the plug-in. As a result, if you wish to get rid of the plug-in completely, you'll need to remove those tables yourself. All your My Calendar settings will be deleted, however."
|
1922 |
+
msgstr ""
|
1923 |
+
|
1924 |
+
#: my-calendar-help.php:352
|
1925 |
+
msgid "<strong>Donations</strong>: I appreciate anything you can give. $2 may not seem like much, but it can really add up when thousands of people are using the software. Please note that I am not a non-profit organization, and your gifts are not tax deductible. Thank you!"
|
1926 |
+
msgstr ""
|
1927 |
+
|
1928 |
+
#: my-calendar-install.php:246
|
1929 |
+
msgid "My Calendar Default Timezone"
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: my-calendar-install.php:291
|
1933 |
+
msgid "My Calendar Default Location"
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: my-calendar-locations.php:43
|
1937 |
+
msgid "Location added successfully"
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: my-calendar-locations.php:45
|
1941 |
+
msgid "Location could not be added to database"
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: my-calendar-locations.php:51
|
1945 |
+
msgid "Location deleted successfully"
|
1946 |
+
msgstr ""
|
1947 |
+
|
1948 |
+
#: my-calendar-locations.php:53
|
1949 |
+
msgid "Location could not be deleted"
|
1950 |
+
msgstr ""
|
1951 |
+
|
1952 |
+
#: my-calendar-locations.php:79
|
1953 |
+
msgid "Location could not be edited."
|
1954 |
+
msgstr ""
|
1955 |
+
|
1956 |
+
#: my-calendar-locations.php:81
|
1957 |
+
msgid "Location was not changed."
|
1958 |
+
msgstr ""
|
1959 |
+
|
1960 |
+
#: my-calendar-locations.php:83
|
1961 |
+
msgid "Location edited successfully"
|
1962 |
+
msgstr ""
|
1963 |
+
|
1964 |
+
#: my-calendar-locations.php:104
|
1965 |
+
msgid "Add New Location"
|
1966 |
+
msgstr ""
|
1967 |
+
|
1968 |
+
#: my-calendar-locations.php:106
|
1969 |
+
msgid "Edit Location"
|
1970 |
+
msgstr ""
|
1971 |
+
|
1972 |
+
#: my-calendar-locations.php:113
|
1973 |
+
msgid "Location Editor"
|
1974 |
+
msgstr ""
|
1975 |
+
|
1976 |
+
#: my-calendar-locations.php:202
|
1977 |
+
msgid "Website"
|
1978 |
+
msgstr ""
|
1979 |
+
|
1980 |
+
#: my-calendar-locations.php:207
|
1981 |
+
msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
|
1982 |
+
msgstr ""
|
1983 |
+
|
1984 |
+
#: my-calendar-locations.php:215
|
1985 |
+
msgid "Add Location"
|
1986 |
+
msgstr ""
|
1987 |
+
|
1988 |
+
#: my-calendar-locations.php:223
|
1989 |
+
msgid "Add a New Location"
|
1990 |
+
msgstr ""
|
1991 |
+
|
1992 |
+
#: my-calendar-locations.php:228 my-calendar.php:329
|
1993 |
+
msgid "Manage Locations"
|
1994 |
+
msgstr ""
|
1995 |
+
|
1996 |
+
#: my-calendar-locations.php:289
|
1997 |
+
msgid "Location"
|
1998 |
+
msgstr ""
|
1999 |
+
|
2000 |
+
#: my-calendar-locations.php:311
|
2001 |
+
msgid "There are no locations in the database yet!"
|
2002 |
+
msgstr ""
|
2003 |
+
|
2004 |
+
#: my-calendar-locations.php:315
|
2005 |
+
msgid "Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records."
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: my-calendar-output.php:191 my-calendar-output.php:308
|
2009 |
+
msgid "Close"
|
2010 |
+
msgstr ""
|
2011 |
+
|
2012 |
+
#: my-calendar-output.php:202
|
2013 |
+
msgid "(%s in your time zone)"
|
2014 |
+
msgstr ""
|
2015 |
+
|
2016 |
+
#: my-calendar-output.php:208
|
2017 |
+
msgid "Not Applicable"
|
2018 |
+
msgstr ""
|
2019 |
+
|
2020 |
+
#: my-calendar-output.php:223
|
2021 |
+
msgid "Posted by"
|
2022 |
+
msgstr ""
|
2023 |
+
|
2024 |
+
#: my-calendar-output.php:231 my-calendar-templates.php:246
|
2025 |
+
msgid "Details about"
|
2026 |
+
msgstr ""
|
2027 |
+
|
2028 |
+
#: my-calendar-output.php:253 my-calendar-templates.php:193
|
2029 |
+
msgid "iCal"
|
2030 |
+
msgstr ""
|
2031 |
+
|
2032 |
+
#: my-calendar-output.php:288
|
2033 |
+
msgid "This class is part of a series. You must register for the first event in this series to attend."
|
2034 |
+
msgstr ""
|
2035 |
+
|
2036 |
+
#: my-calendar-output.php:293
|
2037 |
+
msgid "View full calendar"
|
2038 |
+
msgstr ""
|
2039 |
+
|
2040 |
+
#: my-calendar-output.php:326
|
2041 |
+
msgid "Edit This Date"
|
2042 |
+
msgstr ""
|
2043 |
+
|
2044 |
+
#: my-calendar-output.php:327
|
2045 |
+
msgid "Edit All"
|
2046 |
+
msgstr ""
|
2047 |
+
|
2048 |
+
#: my-calendar-output.php:328
|
2049 |
+
msgid "Delete This Date"
|
2050 |
+
msgstr ""
|
2051 |
+
|
2052 |
+
#: my-calendar-output.php:329
|
2053 |
+
msgid "Delete All"
|
2054 |
+
msgstr ""
|
2055 |
+
|
2056 |
+
#: my-calendar-output.php:388
|
2057 |
+
msgid "Year"
|
2058 |
+
msgstr "Urtea"
|
2059 |
+
|
2060 |
+
#: my-calendar-output.php:416
|
2061 |
+
msgid "Go"
|
2062 |
+
msgstr ""
|
2063 |
+
|
2064 |
+
#: my-calendar-output.php:445
|
2065 |
+
msgid "Calendar: Print View"
|
2066 |
+
msgstr ""
|
2067 |
+
|
2068 |
+
#: my-calendar-output.php:460
|
2069 |
+
msgid "Return to site"
|
2070 |
+
msgstr ""
|
2071 |
+
|
2072 |
+
#: my-calendar-output.php:473
|
2073 |
+
msgid "View as Grid"
|
2074 |
+
msgstr ""
|
2075 |
+
|
2076 |
+
#: my-calendar-output.php:477
|
2077 |
+
msgid "View as List"
|
2078 |
+
msgstr ""
|
2079 |
+
|
2080 |
+
#: my-calendar-output.php:581
|
2081 |
+
msgid "<abbr title=\"Sunday\">Sun</abbr>"
|
2082 |
+
msgstr ""
|
2083 |
+
|
2084 |
+
#: my-calendar-output.php:582
|
2085 |
+
msgid "<abbr title=\"Monday\">Mon</abbr>"
|
2086 |
+
msgstr ""
|
2087 |
+
|
2088 |
+
#: my-calendar-output.php:583
|
2089 |
+
msgid "<abbr title=\"Tuesday\">Tues</abbr>"
|
2090 |
+
msgstr ""
|
2091 |
+
|
2092 |
+
#: my-calendar-output.php:584
|
2093 |
+
msgid "<abbr title=\"Wednesday\">Wed</abbr>"
|
2094 |
+
msgstr ""
|
2095 |
+
|
2096 |
+
#: my-calendar-output.php:585
|
2097 |
+
msgid "<abbr title=\"Thursday\">Thur</abbr>"
|
2098 |
+
msgstr ""
|
2099 |
+
|
2100 |
+
#: my-calendar-output.php:586
|
2101 |
+
msgid "<abbr title=\"Friday\">Fri</abbr>"
|
2102 |
+
msgstr ""
|
2103 |
+
|
2104 |
+
#: my-calendar-output.php:587
|
2105 |
+
msgid "<abbr title=\"Saturday\">Sat</abbr>"
|
2106 |
+
msgstr ""
|
2107 |
+
|
2108 |
+
#: my-calendar-output.php:592
|
2109 |
+
msgid "<abbr title=\"Sunday\">S</abbr>"
|
2110 |
+
msgstr ""
|
2111 |
+
|
2112 |
+
#: my-calendar-output.php:593
|
2113 |
+
msgid "<abbr title=\"Monday\">M</abbr>"
|
2114 |
+
msgstr ""
|
2115 |
+
|
2116 |
+
#: my-calendar-output.php:594
|
2117 |
+
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
2118 |
+
msgstr ""
|
2119 |
+
|
2120 |
+
#: my-calendar-output.php:595
|
2121 |
+
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
2122 |
+
msgstr ""
|
2123 |
+
|
2124 |
+
#: my-calendar-output.php:596
|
2125 |
+
msgid "<abbr title=\"Thursday\">T</abbr>"
|
2126 |
+
msgstr ""
|
2127 |
+
|
2128 |
+
#: my-calendar-output.php:597
|
2129 |
+
msgid "<abbr title=\"Friday\">F</abbr>"
|
2130 |
+
msgstr ""
|
2131 |
+
|
2132 |
+
#: my-calendar-output.php:598
|
2133 |
+
msgid "<abbr title=\"Saturday\">S</abbr>"
|
2134 |
+
msgstr ""
|
2135 |
+
|
2136 |
+
#: my-calendar-output.php:700
|
2137 |
+
msgid "Print View"
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: my-calendar-output.php:752
|
2141 |
+
msgid "No events scheduled for today!"
|
2142 |
+
msgstr ""
|
2143 |
+
|
2144 |
+
#: my-calendar-output.php:767
|
2145 |
+
msgid "and"
|
2146 |
+
msgstr ""
|
2147 |
+
|
2148 |
+
#: my-calendar-output.php:784
|
2149 |
+
msgid "Events in"
|
2150 |
+
msgstr ""
|
2151 |
+
|
2152 |
+
#: my-calendar-output.php:536
|
2153 |
+
msgid " and %d other event"
|
2154 |
+
msgstr ""
|
2155 |
+
|
2156 |
+
#: my-calendar-output.php:538
|
2157 |
+
msgid " and %d other events"
|
2158 |
+
msgstr ""
|
2159 |
+
|
2160 |
+
#: my-calendar-output.php:817
|
2161 |
+
msgid "There are no events scheduled during this period."
|
2162 |
+
msgstr ""
|
2163 |
+
|
2164 |
+
#: my-calendar-output.php:920
|
2165 |
+
msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#: my-calendar-output.php:948
|
2169 |
+
msgid "Category Key"
|
2170 |
+
msgstr ""
|
2171 |
+
|
2172 |
+
#: my-calendar-output.php:972
|
2173 |
+
msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
2174 |
+
msgstr ""
|
2175 |
+
|
2176 |
+
#: my-calendar-output.php:973
|
2177 |
+
msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
|
2178 |
+
msgstr ""
|
2179 |
+
|
2180 |
+
#: my-calendar-output.php:998
|
2181 |
+
msgid "Next events »"
|
2182 |
+
msgstr ""
|
2183 |
+
|
2184 |
+
#: my-calendar-output.php:1024 my-calendar-output.php:1068
|
2185 |
+
msgid "Week of "
|
2186 |
+
msgstr ""
|
2187 |
+
|
2188 |
+
#: my-calendar-output.php:1042
|
2189 |
+
msgid "« Previous events"
|
2190 |
+
msgstr ""
|
2191 |
+
|
2192 |
+
#: my-calendar-output.php:1094
|
2193 |
+
msgid "(select to include)"
|
2194 |
+
msgstr ""
|
2195 |
+
|
2196 |
+
#: my-calendar-output.php:1118 my-calendar-output.php:1121
|
2197 |
+
msgid "All Categories"
|
2198 |
+
msgstr ""
|
2199 |
+
|
2200 |
+
#: my-calendar-output.php:1119
|
2201 |
+
msgid "Categories"
|
2202 |
+
msgstr ""
|
2203 |
+
|
2204 |
+
#: my-calendar-output.php:1140 my-calendar-output.php:1333
|
2205 |
+
msgid "Submit"
|
2206 |
+
msgstr ""
|
2207 |
+
|
2208 |
+
#: my-calendar-output.php:1274 my-calendar-output.php:1295
|
2209 |
+
msgid "Show all"
|
2210 |
+
msgstr ""
|
2211 |
+
|
2212 |
+
#: my-calendar-output.php:1293
|
2213 |
+
msgid "Show events in:"
|
2214 |
+
msgstr ""
|
2215 |
+
|
2216 |
+
#: my-calendar-settings.php:58
|
2217 |
+
msgid "Categories imported successfully."
|
2218 |
+
msgstr ""
|
2219 |
+
|
2220 |
+
#: my-calendar-settings.php:58
|
2221 |
+
msgid "Categories not imported."
|
2222 |
+
msgstr ""
|
2223 |
+
|
2224 |
+
#: my-calendar-settings.php:59
|
2225 |
+
msgid "Events imported successfully."
|
2226 |
+
msgstr ""
|
2227 |
+
|
2228 |
+
#: my-calendar-settings.php:59
|
2229 |
+
msgid "Events not imported."
|
2230 |
+
msgstr ""
|
2231 |
+
|
2232 |
+
#: my-calendar-settings.php:103
|
2233 |
+
msgid "My Calendar Cache cleared"
|
2234 |
+
msgstr ""
|
2235 |
+
|
2236 |
+
#: my-calendar-settings.php:114
|
2237 |
+
msgid "My Calendar Management Settings saved"
|
2238 |
+
msgstr ""
|
2239 |
+
|
2240 |
+
#: my-calendar-settings.php:119 my-calendar-settings.php:768
|
2241 |
+
msgid "Add Events"
|
2242 |
+
msgstr ""
|
2243 |
+
|
2244 |
+
#: my-calendar-settings.php:120 my-calendar-settings.php:769
|
2245 |
+
msgid "Approve Events"
|
2246 |
+
msgstr ""
|
2247 |
+
|
2248 |
+
#: my-calendar-settings.php:122 my-calendar-settings.php:771
|
2249 |
+
msgid "Edit Categories"
|
2250 |
+
msgstr ""
|
2251 |
+
|
2252 |
+
#: my-calendar-settings.php:123 my-calendar-settings.php:772
|
2253 |
+
msgid "Edit Locations"
|
2254 |
+
msgstr ""
|
2255 |
+
|
2256 |
+
#: my-calendar-settings.php:124 my-calendar-settings.php:773
|
2257 |
+
msgid "Edit Styles"
|
2258 |
+
msgstr ""
|
2259 |
+
|
2260 |
+
#: my-calendar-settings.php:125 my-calendar-settings.php:774
|
2261 |
+
msgid "Edit Behaviors"
|
2262 |
+
msgstr ""
|
2263 |
+
|
2264 |
+
#: my-calendar-settings.php:126 my-calendar-settings.php:775
|
2265 |
+
msgid "Edit Templates"
|
2266 |
+
msgstr ""
|
2267 |
+
|
2268 |
+
#: my-calendar-settings.php:127 my-calendar-settings.php:776
|
2269 |
+
msgid "Edit Settings"
|
2270 |
+
msgstr ""
|
2271 |
+
|
2272 |
+
#: my-calendar-settings.php:128 my-calendar-settings.php:777
|
2273 |
+
msgid "View Help"
|
2274 |
+
msgstr ""
|
2275 |
+
|
2276 |
+
#: my-calendar-settings.php:142
|
2277 |
+
msgid "My Calendar Permissions Updated"
|
2278 |
+
msgstr ""
|
2279 |
+
|
2280 |
+
#: my-calendar-settings.php:186
|
2281 |
+
msgid "Output Settings saved"
|
2282 |
+
msgstr ""
|
2283 |
+
|
2284 |
+
#: my-calendar-settings.php:212
|
2285 |
+
msgid "Input Settings saved"
|
2286 |
+
msgstr ""
|
2287 |
+
|
2288 |
+
#: my-calendar-settings.php:220
|
2289 |
+
msgid "Multisite settings saved"
|
2290 |
+
msgstr ""
|
2291 |
+
|
2292 |
+
#: my-calendar-settings.php:248
|
2293 |
+
msgid "Custom text settings saved"
|
2294 |
+
msgstr ""
|
2295 |
+
|
2296 |
+
#: my-calendar-settings.php:260
|
2297 |
+
msgid "Email notice settings saved"
|
2298 |
+
msgstr ""
|
2299 |
+
|
2300 |
+
#: my-calendar-settings.php:274
|
2301 |
+
msgid "User custom settings saved"
|
2302 |
+
msgstr ""
|
2303 |
+
|
2304 |
+
#: my-calendar-settings.php:307
|
2305 |
+
msgid "My Calendar Options"
|
2306 |
+
msgstr ""
|
2307 |
+
|
2308 |
+
#: my-calendar-settings.php:339
|
2309 |
+
msgid "My Calendar Settings"
|
2310 |
+
msgstr ""
|
2311 |
+
|
2312 |
+
#: my-calendar-settings.php:342
|
2313 |
+
msgid "Management"
|
2314 |
+
msgstr ""
|
2315 |
+
|
2316 |
+
#: my-calendar-settings.php:343
|
2317 |
+
msgid "Customizable Text"
|
2318 |
+
msgstr ""
|
2319 |
+
|
2320 |
+
#: my-calendar-settings.php:344
|
2321 |
+
msgid "Output"
|
2322 |
+
msgstr ""
|
2323 |
+
|
2324 |
+
#: my-calendar-settings.php:346
|
2325 |
+
msgid "Input"
|
2326 |
+
msgstr ""
|
2327 |
+
|
2328 |
+
#: my-calendar-settings.php:348
|
2329 |
+
msgid "Multi-site"
|
2330 |
+
msgstr ""
|
2331 |
+
|
2332 |
+
#: my-calendar-settings.php:350
|
2333 |
+
msgid "Permissions"
|
2334 |
+
msgstr ""
|
2335 |
+
|
2336 |
+
#: my-calendar-settings.php:351
|
2337 |
+
msgid "Email Notifications"
|
2338 |
+
msgstr ""
|
2339 |
+
|
2340 |
+
#: my-calendar-settings.php:352
|
2341 |
+
msgid "Individual Users"
|
2342 |
+
msgstr ""
|
2343 |
+
|
2344 |
+
#: my-calendar-settings.php:360
|
2345 |
+
msgid "Calendar Management Settings"
|
2346 |
+
msgstr ""
|
2347 |
+
|
2348 |
+
#: my-calendar-settings.php:366
|
2349 |
+
msgid "Calendar Options: Management"
|
2350 |
+
msgstr ""
|
2351 |
+
|
2352 |
+
#: my-calendar-settings.php:368
|
2353 |
+
msgid "Get data (events, categories and locations) from a remote database."
|
2354 |
+
msgstr ""
|
2355 |
+
|
2356 |
+
#: my-calendar-settings.php:370
|
2357 |
+
msgid "Add this code to your theme's <code>functions.php</code> file:"
|
2358 |
+
msgstr ""
|
2359 |
+
|
2360 |
+
#: my-calendar-settings.php:378
|
2361 |
+
msgid "Enable approval options."
|
2362 |
+
msgstr ""
|
2363 |
+
|
2364 |
+
#: my-calendar-settings.php:379
|
2365 |
+
msgid "Enable caching."
|
2366 |
+
msgstr ""
|
2367 |
+
|
2368 |
+
#: my-calendar-settings.php:379
|
2369 |
+
msgid "<em>Cannot use caching while accessing a remote database.</em>"
|
2370 |
+
msgstr ""
|
2371 |
+
|
2372 |
+
#: my-calendar-settings.php:381
|
2373 |
+
msgid "Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)"
|
2374 |
+
msgstr ""
|
2375 |
+
|
2376 |
+
#: my-calendar-settings.php:385
|
2377 |
+
msgid "Default Sort order for Admin Events List"
|
2378 |
+
msgstr ""
|
2379 |
+
|
2380 |
+
#: my-calendar-settings.php:387
|
2381 |
+
msgid "Event ID"
|
2382 |
+
msgstr ""
|
2383 |
+
|
2384 |
+
#: my-calendar-settings.php:390
|
2385 |
+
msgid "Start Date"
|
2386 |
+
msgstr "Hasiera data"
|
2387 |
+
|
2388 |
+
#: my-calendar-settings.php:401
|
2389 |
+
msgid "Currently editing my local calendar"
|
2390 |
+
msgstr ""
|
2391 |
+
|
2392 |
+
#: my-calendar-settings.php:404
|
2393 |
+
msgid "Currently editing the network calendar"
|
2394 |
+
msgstr ""
|
2395 |
+
|
2396 |
+
#: my-calendar-settings.php:408
|
2397 |
+
msgid "You are currently working in the primary site for this network; your local calendar is also the global table."
|
2398 |
+
msgstr ""
|
2399 |
+
|
2400 |
+
#: my-calendar-settings.php:416
|
2401 |
+
msgid "Save Management Settings"
|
2402 |
+
msgstr ""
|
2403 |
+
|
2404 |
+
#: my-calendar-settings.php:420
|
2405 |
+
msgid "My Calendar management settings are only available to administrators."
|
2406 |
+
msgstr ""
|
2407 |
+
|
2408 |
+
#: my-calendar-settings.php:428
|
2409 |
+
msgid "Calendar Text Settings"
|
2410 |
+
msgstr ""
|
2411 |
+
|
2412 |
+
#: my-calendar-settings.php:433
|
2413 |
+
msgid "Calendar Options: Customizable Text Fields"
|
2414 |
+
msgstr ""
|
2415 |
+
|
2416 |
+
#: my-calendar-settings.php:436
|
2417 |
+
msgid "Label for events without a set time"
|
2418 |
+
msgstr ""
|
2419 |
+
|
2420 |
+
#: my-calendar-settings.php:439
|
2421 |
+
msgid "Previous events link"
|
2422 |
+
msgstr ""
|
2423 |
+
|
2424 |
+
#: my-calendar-settings.php:439
|
2425 |
+
msgid "Previous Events"
|
2426 |
+
msgstr ""
|
2427 |
+
|
2428 |
+
#: my-calendar-settings.php:439 my-calendar-settings.php:442
|
2429 |
+
msgid "Use <code>{date}</code> to display the appropriate date in navigation."
|
2430 |
+
msgstr ""
|
2431 |
+
|
2432 |
+
#: my-calendar-settings.php:442
|
2433 |
+
msgid "Next events link"
|
2434 |
+
msgstr ""
|
2435 |
+
|
2436 |
+
#: my-calendar-settings.php:442
|
2437 |
+
msgid "Next Events"
|
2438 |
+
msgstr ""
|
2439 |
+
|
2440 |
+
#: my-calendar-settings.php:445
|
2441 |
+
msgid "If events are open"
|
2442 |
+
msgstr ""
|
2443 |
+
|
2444 |
+
#: my-calendar-settings.php:445
|
2445 |
+
msgid "Registration is open"
|
2446 |
+
msgstr ""
|
2447 |
+
|
2448 |
+
#: my-calendar-settings.php:448
|
2449 |
+
msgid "If events are closed"
|
2450 |
+
msgstr ""
|
2451 |
+
|
2452 |
+
#: my-calendar-settings.php:448
|
2453 |
+
msgid "Registration is closed"
|
2454 |
+
msgstr ""
|
2455 |
+
|
2456 |
+
#: my-calendar-settings.php:451
|
2457 |
+
msgid "Week view caption:"
|
2458 |
+
msgstr ""
|
2459 |
+
|
2460 |
+
#: my-calendar-settings.php:454
|
2461 |
+
msgid "Extended caption:"
|
2462 |
+
msgstr ""
|
2463 |
+
|
2464 |
+
#: my-calendar-settings.php:454
|
2465 |
+
msgid "The calendar caption shows month and year in list and grid formats. This text is displayed after the month/year."
|
2466 |
+
msgstr ""
|
2467 |
+
|
2468 |
+
#: my-calendar-settings.php:472
|
2469 |
+
msgid "Save Custom Text Settings"
|
2470 |
+
msgstr ""
|
2471 |
+
|
2472 |
+
#: my-calendar-settings.php:481
|
2473 |
+
msgid "Calendar Output Settings"
|
2474 |
+
msgstr ""
|
2475 |
+
|
2476 |
+
#: my-calendar-settings.php:485 my-calendar-settings.php:636
|
2477 |
+
msgid "Save Output Settings"
|
2478 |
+
msgstr ""
|
2479 |
+
|
2480 |
+
#: my-calendar-settings.php:487
|
2481 |
+
msgid "Calendar Options: Customize the Output of your Calendar"
|
2482 |
+
msgstr ""
|
2483 |
+
|
2484 |
+
#: my-calendar-settings.php:492
|
2485 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details links:"
|
2486 |
+
msgstr ""
|
2487 |
+
|
2488 |
+
#: my-calendar-settings.php:493
|
2489 |
+
msgid "Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode."
|
2490 |
+
msgstr ""
|
2491 |
+
|
2492 |
+
#: my-calendar-settings.php:496
|
2493 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's timeline links."
|
2494 |
+
msgstr ""
|
2495 |
+
|
2496 |
+
#: my-calendar-settings.php:497
|
2497 |
+
msgid "Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> shortcode."
|
2498 |
+
msgstr ""
|
2499 |
+
|
2500 |
+
#: my-calendar-settings.php:500
|
2501 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar in-page anchors:"
|
2502 |
+
msgstr ""
|
2503 |
+
|
2504 |
+
#: my-calendar-settings.php:501
|
2505 |
+
msgid "Can be any Page or Post with the <code>[my_calendar]</code> shortcode using format selected below"
|
2506 |
+
msgstr ""
|
2507 |
+
|
2508 |
+
#: my-calendar-settings.php:505
|
2509 |
+
msgid "Open calendar links to event details URL"
|
2510 |
+
msgstr ""
|
2511 |
+
|
2512 |
+
#: my-calendar-settings.php:505
|
2513 |
+
msgid "Replaces pop-up in grid view."
|
2514 |
+
msgstr ""
|
2515 |
+
|
2516 |
+
#: my-calendar-settings.php:508
|
2517 |
+
msgid "Mini calendar widget date links to:"
|
2518 |
+
msgstr ""
|
2519 |
+
|
2520 |
+
#: my-calendar-settings.php:509
|
2521 |
+
msgid "jQuery pop-up view"
|
2522 |
+
msgstr ""
|
2523 |
+
|
2524 |
+
#: my-calendar-settings.php:510
|
2525 |
+
msgid "daily view page (above)"
|
2526 |
+
msgstr ""
|
2527 |
+
|
2528 |
+
#: my-calendar-settings.php:511
|
2529 |
+
msgid "in-page anchor on main calendar page (list)"
|
2530 |
+
msgstr ""
|
2531 |
+
|
2532 |
+
#: my-calendar-settings.php:512
|
2533 |
+
msgid "in-page anchor on main calendar page (grid)"
|
2534 |
+
msgstr ""
|
2535 |
+
|
2536 |
+
#: my-calendar-settings.php:514
|
2537 |
+
msgid "Replaces pop-up in mini calendar"
|
2538 |
+
msgstr ""
|
2539 |
+
|
2540 |
+
#: my-calendar-settings.php:656
|
2541 |
+
msgid "Time format"
|
2542 |
+
msgstr ""
|
2543 |
+
|
2544 |
+
#: my-calendar-settings.php:659
|
2545 |
+
msgid "Date in grid mode, week view"
|
2546 |
+
msgstr ""
|
2547 |
+
|
2548 |
+
#: my-calendar-settings.php:662
|
2549 |
+
msgid "Date Format in other views"
|
2550 |
+
msgstr ""
|
2551 |
+
|
2552 |
+
#: my-calendar-settings.php:665
|
2553 |
+
msgid "Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
|
2554 |
+
msgstr ""
|
2555 |
+
|
2556 |
+
#: my-calendar-settings.php:518
|
2557 |
+
msgid "Show link to My Calendar RSS feed."
|
2558 |
+
msgstr ""
|
2559 |
+
|
2560 |
+
#: my-calendar-settings.php:518
|
2561 |
+
msgid "RSS feed shows recently added events."
|
2562 |
+
msgstr ""
|
2563 |
+
|
2564 |
+
#: my-calendar-settings.php:521
|
2565 |
+
msgid "Show link to iCal format download."
|
2566 |
+
msgstr ""
|
2567 |
+
|
2568 |
+
#: my-calendar-settings.php:521
|
2569 |
+
msgid "iCal outputs events occurring in the current calendar month."
|
2570 |
+
msgstr ""
|
2571 |
+
|
2572 |
+
#: my-calendar-settings.php:525
|
2573 |
+
msgid "Show link to print-formatted view of calendar"
|
2574 |
+
msgstr ""
|
2575 |
+
|
2576 |
+
#: my-calendar-settings.php:532
|
2577 |
+
msgid "Grid Layout Options"
|
2578 |
+
msgstr ""
|
2579 |
+
|
2580 |
+
#: my-calendar-settings.php:535
|
2581 |
+
msgid "Show Weekends on Calendar"
|
2582 |
+
msgstr ""
|
2583 |
+
|
2584 |
+
#: my-calendar-settings.php:538
|
2585 |
+
msgid "Switch to list view on mobile devices"
|
2586 |
+
msgstr ""
|
2587 |
+
|
2588 |
+
#: my-calendar-settings.php:545
|
2589 |
+
msgid "List Layout Options"
|
2590 |
+
msgstr ""
|
2591 |
+
|
2592 |
+
#: my-calendar-settings.php:548
|
2593 |
+
msgid "How many months of events to show at a time:"
|
2594 |
+
msgstr ""
|
2595 |
+
|
2596 |
+
#: my-calendar-settings.php:551
|
2597 |
+
msgid "Show the first event's title and the number of events that day next to the date."
|
2598 |
+
msgstr ""
|
2599 |
+
|
2600 |
+
#: my-calendar-settings.php:558
|
2601 |
+
msgid "Event Details Options"
|
2602 |
+
msgstr ""
|
2603 |
+
|
2604 |
+
#: my-calendar-settings.php:457
|
2605 |
+
msgid "Event title template"
|
2606 |
+
msgstr ""
|
2607 |
+
|
2608 |
+
#: my-calendar-settings.php:458 my-calendar-settings.php:468
|
2609 |
+
msgid "Templating Help"
|
2610 |
+
msgstr ""
|
2611 |
+
|
2612 |
+
#: my-calendar-settings.php:458 my-calendar-settings.php:468
|
2613 |
+
msgid "All template tags are available."
|
2614 |
+
msgstr ""
|
2615 |
+
|
2616 |
+
#: my-calendar-settings.php:461
|
2617 |
+
msgid "Event details link text"
|
2618 |
+
msgstr ""
|
2619 |
+
|
2620 |
+
#: my-calendar-settings.php:463
|
2621 |
+
msgid "Available tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
2622 |
+
msgstr ""
|
2623 |
+
|
2624 |
+
#: my-calendar-settings.php:466
|
2625 |
+
msgid "Event URL link text"
|
2626 |
+
msgstr ""
|
2627 |
+
|
2628 |
+
#: my-calendar-settings.php:570
|
2629 |
+
msgid "Show Link to Google Map"
|
2630 |
+
msgstr ""
|
2631 |
+
|
2632 |
+
#: my-calendar-settings.php:573
|
2633 |
+
msgid "Show Event Address"
|
2634 |
+
msgstr ""
|
2635 |
+
|
2636 |
+
#: my-calendar-settings.php:591
|
2637 |
+
msgid "Event links expire after event passes."
|
2638 |
+
msgstr ""
|
2639 |
+
|
2640 |
+
#: my-calendar-settings.php:594
|
2641 |
+
msgid "Show availability status"
|
2642 |
+
msgstr ""
|
2643 |
+
|
2644 |
+
#: my-calendar-settings.php:597
|
2645 |
+
msgid "Default usage of category colors."
|
2646 |
+
msgstr ""
|
2647 |
+
|
2648 |
+
#: my-calendar-settings.php:598
|
2649 |
+
msgid "Event titles are category colors."
|
2650 |
+
msgstr ""
|
2651 |
+
|
2652 |
+
#: my-calendar-settings.php:599
|
2653 |
+
msgid "Event titles have category color as background."
|
2654 |
+
msgstr ""
|
2655 |
+
|
2656 |
+
#: my-calendar-settings.php:608
|
2657 |
+
msgid "Default setting for event input: If a recurring event is scheduled for a date which doesn't exist (such as the 5th Wednesday in February), move it back one week."
|
2658 |
+
msgstr ""
|
2659 |
+
|
2660 |
+
#: my-calendar-settings.php:611
|
2661 |
+
msgid "Holiday Category"
|
2662 |
+
msgstr ""
|
2663 |
+
|
2664 |
+
#: my-calendar-settings.php:613
|
2665 |
+
msgid "None"
|
2666 |
+
msgstr ""
|
2667 |
+
|
2668 |
+
#: my-calendar-settings.php:629
|
2669 |
+
msgid "Default setting for event input: If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
|
2670 |
+
msgstr ""
|
2671 |
+
|
2672 |
+
#: my-calendar-settings.php:680
|
2673 |
+
msgid "Calendar Input Settings"
|
2674 |
+
msgstr ""
|
2675 |
+
|
2676 |
+
#: my-calendar-settings.php:685
|
2677 |
+
msgid "Select which input fields will be available when adding or editing events."
|
2678 |
+
msgstr ""
|
2679 |
+
|
2680 |
+
#: my-calendar-settings.php:690
|
2681 |
+
msgid "Show Event Location Dropdown Menu"
|
2682 |
+
msgstr ""
|
2683 |
+
|
2684 |
+
#: my-calendar-settings.php:690
|
2685 |
+
msgid "Show Event Short Description field"
|
2686 |
+
msgstr ""
|
2687 |
+
|
2688 |
+
#: my-calendar-settings.php:690
|
2689 |
+
msgid "Show Event Description Field"
|
2690 |
+
msgstr ""
|
2691 |
+
|
2692 |
+
#: my-calendar-settings.php:690
|
2693 |
+
msgid "Show Event Category field"
|
2694 |
+
msgstr ""
|
2695 |
+
|
2696 |
+
#: my-calendar-settings.php:690
|
2697 |
+
msgid "Show Event Link field"
|
2698 |
+
msgstr ""
|
2699 |
+
|
2700 |
+
#: my-calendar-settings.php:690
|
2701 |
+
msgid "Show Event Recurrence Options"
|
2702 |
+
msgstr ""
|
2703 |
+
|
2704 |
+
#: my-calendar-settings.php:690
|
2705 |
+
msgid "Use HTML Editor in Event Description Field"
|
2706 |
+
msgstr ""
|
2707 |
+
|
2708 |
+
#: my-calendar-settings.php:703
|
2709 |
+
msgid "Administrators see all input options"
|
2710 |
+
msgstr ""
|
2711 |
+
|
2712 |
+
#: my-calendar-settings.php:708
|
2713 |
+
msgid "Save Input Settings"
|
2714 |
+
msgstr ""
|
2715 |
+
|
2716 |
+
#: my-calendar-settings.php:718
|
2717 |
+
msgid "Multisite Settings (Network Administrators only)"
|
2718 |
+
msgstr ""
|
2719 |
+
|
2720 |
+
#: my-calendar-settings.php:720
|
2721 |
+
msgid "Multisite support is a beta feature - use with caution."
|
2722 |
+
msgstr ""
|
2723 |
+
|
2724 |
+
#: my-calendar-settings.php:725
|
2725 |
+
msgid "Settings for WP MultiSite configurations"
|
2726 |
+
msgstr ""
|
2727 |
+
|
2728 |
+
#: my-calendar-settings.php:726
|
2729 |
+
msgid "The central calendar is the calendar associated with the primary site in your WordPress Multisite network."
|
2730 |
+
msgstr ""
|
2731 |
+
|
2732 |
+
#: my-calendar-settings.php:728
|
2733 |
+
msgid "Site owners may only post to their local calendar"
|
2734 |
+
msgstr ""
|
2735 |
+
|
2736 |
+
#: my-calendar-settings.php:729
|
2737 |
+
msgid "Site owners may only post to the central calendar"
|
2738 |
+
msgstr ""
|
2739 |
+
|
2740 |
+
#: my-calendar-settings.php:730
|
2741 |
+
msgid "Site owners may manage either calendar"
|
2742 |
+
msgstr ""
|
2743 |
+
|
2744 |
+
#: my-calendar-settings.php:732
|
2745 |
+
msgid "Changes only effect input permissions. Public-facing calendars will be unchanged."
|
2746 |
+
msgstr ""
|
2747 |
+
|
2748 |
+
#: my-calendar-settings.php:734
|
2749 |
+
msgid "Sub-site calendars show events from their local calendar."
|
2750 |
+
msgstr ""
|
2751 |
+
|
2752 |
+
#: my-calendar-settings.php:735
|
2753 |
+
msgid "Sub-site calendars show events from the central calendar."
|
2754 |
+
msgstr ""
|
2755 |
+
|
2756 |
+
#: my-calendar-settings.php:739
|
2757 |
+
msgid "Save Multisite Settings"
|
2758 |
+
msgstr ""
|
2759 |
+
|
2760 |
+
#: my-calendar-settings.php:749
|
2761 |
+
msgid "My Calendar Permissions"
|
2762 |
+
msgstr ""
|
2763 |
+
|
2764 |
+
#: my-calendar-settings.php:756
|
2765 |
+
msgid "Calendar Options: Permissions"
|
2766 |
+
msgstr ""
|
2767 |
+
|
2768 |
+
#: my-calendar-settings.php:792
|
2769 |
+
msgid "Save Permissions"
|
2770 |
+
msgstr ""
|
2771 |
+
|
2772 |
+
#: my-calendar-settings.php:796
|
2773 |
+
msgid "My Calendar permission settings are only available to administrators."
|
2774 |
+
msgstr ""
|
2775 |
+
|
2776 |
+
#: my-calendar-settings.php:804
|
2777 |
+
msgid "Calendar Email Settings"
|
2778 |
+
msgstr ""
|
2779 |
+
|
2780 |
+
#: my-calendar-settings.php:809
|
2781 |
+
msgid "Calendar Options: Email Notifications"
|
2782 |
+
msgstr ""
|
2783 |
+
|
2784 |
+
#: my-calendar-settings.php:813
|
2785 |
+
msgid "Send Email Notifications when new events are scheduled or reserved."
|
2786 |
+
msgstr ""
|
2787 |
+
|
2788 |
+
#: my-calendar-settings.php:816
|
2789 |
+
msgid "Notification messages are sent to: "
|
2790 |
+
msgstr ""
|
2791 |
+
|
2792 |
+
#: my-calendar-settings.php:819
|
2793 |
+
msgid "Email subject"
|
2794 |
+
msgstr ""
|
2795 |
+
|
2796 |
+
#: my-calendar-settings.php:819
|
2797 |
+
msgid "New event Added"
|
2798 |
+
msgstr ""
|
2799 |
+
|
2800 |
+
#: my-calendar-settings.php:822
|
2801 |
+
msgid "Message Body"
|
2802 |
+
msgstr ""
|
2803 |
+
|
2804 |
+
#: my-calendar-settings.php:822
|
2805 |
+
msgid "New Event:"
|
2806 |
+
msgstr "Deialdi berria"
|
2807 |
+
|
2808 |
+
#: my-calendar-settings.php:823
|
2809 |
+
msgid "Shortcode Help"
|
2810 |
+
msgstr ""
|
2811 |
+
|
2812 |
+
#: my-calendar-settings.php:823
|
2813 |
+
msgid "All template shortcodes are available."
|
2814 |
+
msgstr ""
|
2815 |
+
|
2816 |
+
#: my-calendar-settings.php:828
|
2817 |
+
msgid "Save Email Settings"
|
2818 |
+
msgstr ""
|
2819 |
+
|
2820 |
+
#: my-calendar-settings.php:837
|
2821 |
+
msgid "Calendar User Settings"
|
2822 |
+
msgstr ""
|
2823 |
+
|
2824 |
+
#: my-calendar-settings.php:845
|
2825 |
+
msgid "Settings which can be configured in registered user's accounts"
|
2826 |
+
msgstr ""
|
2827 |
+
|
2828 |
+
#: my-calendar-settings.php:847
|
2829 |
+
msgid "Allow registered users to provide timezone or location presets in their user profiles."
|
2830 |
+
msgstr ""
|
2831 |
+
|
2832 |
+
#: my-calendar-settings.php:859
|
2833 |
+
msgid "Timezone Settings"
|
2834 |
+
msgstr ""
|
2835 |
+
|
2836 |
+
#: my-calendar-settings.php:860
|
2837 |
+
msgid "These settings provide registered users with the ability to select a time zone in their user profile. When they view your calendar, the times for events will display the time the event happens in their time zone as well as the entered value."
|
2838 |
+
msgstr ""
|
2839 |
+
|
2840 |
+
#: my-calendar-settings.php:862
|
2841 |
+
msgid "Enable Timezone"
|
2842 |
+
msgstr ""
|
2843 |
+
|
2844 |
+
#: my-calendar-settings.php:865
|
2845 |
+
msgid "Select Timezone Label"
|
2846 |
+
msgstr ""
|
2847 |
+
|
2848 |
+
#: my-calendar-settings.php:868
|
2849 |
+
msgid "Timezone Options"
|
2850 |
+
msgstr ""
|
2851 |
+
|
2852 |
+
#: my-calendar-settings.php:868 my-calendar-settings.php:892
|
2853 |
+
msgid "Value, Label; one per line"
|
2854 |
+
msgstr ""
|
2855 |
+
|
2856 |
+
#: my-calendar-settings.php:880
|
2857 |
+
msgid "Location Settings"
|
2858 |
+
msgstr ""
|
2859 |
+
|
2860 |
+
#: my-calendar-settings.php:881
|
2861 |
+
msgid "These settings provide registered users with the ability to select a location in their user profile. When they view your calendar, their initial view will be limited to locations which include that location parameter. These values can also be used to generate custom location filtering options using the <code>my_calendar_locations</code> shortcode. It is not necessary to enable these settings for users to use the custom filtering options."
|
2862 |
+
msgstr ""
|
2863 |
+
|
2864 |
+
#: my-calendar-settings.php:883
|
2865 |
+
msgid "Enable Location"
|
2866 |
+
msgstr ""
|
2867 |
+
|
2868 |
+
#: my-calendar-settings.php:886
|
2869 |
+
msgid "Use this location list as input control"
|
2870 |
+
msgstr ""
|
2871 |
+
|
2872 |
+
#: my-calendar-settings.php:886
|
2873 |
+
msgid "The normal text entry for this location type will be replaced by a drop down containing these choices."
|
2874 |
+
msgstr ""
|
2875 |
+
|
2876 |
+
#: my-calendar-settings.php:889
|
2877 |
+
msgid "Select Location Label"
|
2878 |
+
msgstr ""
|
2879 |
+
|
2880 |
+
#: my-calendar-settings.php:892
|
2881 |
+
msgid "Location Options"
|
2882 |
+
msgstr ""
|
2883 |
+
|
2884 |
+
#: my-calendar-settings.php:902
|
2885 |
+
msgid "Location Type"
|
2886 |
+
msgstr ""
|
2887 |
+
|
2888 |
+
#: my-calendar-settings.php:915
|
2889 |
+
msgid "Save User Settings"
|
2890 |
+
msgstr ""
|
2891 |
+
|
2892 |
+
#: my-calendar-settings.php:919
|
2893 |
+
msgid "Only users with the ability to edit user accounts may modify user settings."
|
2894 |
+
msgstr ""
|
2895 |
+
|
2896 |
+
#: my-calendar-styles.php:86
|
2897 |
+
msgid "The stylesheet has been updated."
|
2898 |
+
msgstr ""
|
2899 |
+
|
2900 |
+
#: my-calendar-styles.php:86
|
2901 |
+
msgid "Write Error! Please verify write permissions on the style file."
|
2902 |
+
msgstr ""
|
2903 |
+
|
2904 |
+
#: my-calendar-styles.php:100
|
2905 |
+
msgid "Stylesheet reset to default."
|
2906 |
+
msgstr ""
|
2907 |
+
|
2908 |
+
#: my-calendar-styles.php:103
|
2909 |
+
msgid "Style Settings Saved"
|
2910 |
+
msgstr ""
|
2911 |
+
|
2912 |
+
#: my-calendar-styles.php:112
|
2913 |
+
msgid "New theme selected."
|
2914 |
+
msgstr ""
|
2915 |
+
|
2916 |
+
#: my-calendar-styles.php:127
|
2917 |
+
msgid "Sorry. The file you are looking for doesn't appear to exist. Please check your file name and location!"
|
2918 |
+
msgstr ""
|
2919 |
+
|
2920 |
+
#: my-calendar-styles.php:135
|
2921 |
+
msgid "My Calendar Styles"
|
2922 |
+
msgstr ""
|
2923 |
+
|
2924 |
+
#: my-calendar-styles.php:141
|
2925 |
+
msgid "Calendar Style Settings"
|
2926 |
+
msgstr ""
|
2927 |
+
|
2928 |
+
#: my-calendar-styles.php:149
|
2929 |
+
msgid "Select My Calendar Theme"
|
2930 |
+
msgstr ""
|
2931 |
+
|
2932 |
+
#: my-calendar-styles.php:157
|
2933 |
+
msgid "Your Custom Stylesheets"
|
2934 |
+
msgstr ""
|
2935 |
+
|
2936 |
+
#: my-calendar-styles.php:166
|
2937 |
+
msgid "Installed Stylesheets"
|
2938 |
+
msgstr ""
|
2939 |
+
|
2940 |
+
#: my-calendar-styles.php:174
|
2941 |
+
msgid "Choose Style"
|
2942 |
+
msgstr ""
|
2943 |
+
|
2944 |
+
#: my-calendar-styles.php:187
|
2945 |
+
msgid "My Calendar was unable to update your CSS files during the upgrade. Please check your file permissions if you wish to edit your My Calendar styles. Your previously stored styles are below. This message and these styles will be deleted from the database when you successfully update your stylesheet."
|
2946 |
+
msgstr ""
|
2947 |
+
|
2948 |
+
#: my-calendar-styles.php:195
|
2949 |
+
msgid "CSS Style Options"
|
2950 |
+
msgstr ""
|
2951 |
+
|
2952 |
+
#: my-calendar-styles.php:200
|
2953 |
+
msgid "Restore My Calendar stylesheet"
|
2954 |
+
msgstr ""
|
2955 |
+
|
2956 |
+
#: my-calendar-styles.php:200
|
2957 |
+
msgid "Disable My Calendar Stylesheet"
|
2958 |
+
msgstr ""
|
2959 |
+
|
2960 |
+
#: my-calendar-styles.php:203
|
2961 |
+
msgid "Edit the stylesheet for My Calendar"
|
2962 |
+
msgstr ""
|
2963 |
+
|
2964 |
+
#: my-calendar-styles.php:217
|
2965 |
+
msgid "Comparing Your Style with latest installed version of My Calendar"
|
2966 |
+
msgstr ""
|
2967 |
+
|
2968 |
+
#: my-calendar-styles.php:221
|
2969 |
+
msgid "There have been updates to the stylesheet."
|
2970 |
+
msgstr ""
|
2971 |
+
|
2972 |
+
#: my-calendar-styles.php:221
|
2973 |
+
msgid "Compare Your Stylesheet with latest installed version of My Calendar."
|
2974 |
+
msgstr ""
|
2975 |
+
|
2976 |
+
#: my-calendar-styles.php:225
|
2977 |
+
msgid "Your stylesheet matches that included with My Calendar."
|
2978 |
+
msgstr ""
|
2979 |
+
|
2980 |
+
#: my-calendar-styles.php:234
|
2981 |
+
msgid "Resetting your stylesheet will set your stylesheet to the version of that style currently distributed with the plug-in."
|
2982 |
+
msgstr ""
|
2983 |
+
|
2984 |
+
#: my-calendar-templates.php:72
|
2985 |
+
msgid "Map<span> to %s</span>"
|
2986 |
+
msgstr ""
|
2987 |
+
|
2988 |
+
#: my-calendar-templates.php:93 my-calendar-templates.php:147
|
2989 |
+
msgid "Visit web site<span>: %s</span>"
|
2990 |
+
msgstr ""
|
2991 |
+
|
2992 |
+
#: my-calendar-templates.php:156
|
2993 |
+
msgid "Date of Month (the %s of each month)"
|
2994 |
+
msgstr ""
|
2995 |
+
|
2996 |
+
#: my-calendar-templates.php:157
|
2997 |
+
msgid "Day of Month (the %s %s of each month)"
|
2998 |
+
msgstr ""
|
2999 |
+
|
3000 |
+
#: my-calendar-templating.php:19
|
3001 |
+
msgid "Grid Output Template saved"
|
3002 |
+
msgstr ""
|
3003 |
+
|
3004 |
+
#: my-calendar-templating.php:43
|
3005 |
+
msgid "List Output Template saved"
|
3006 |
+
msgstr ""
|
3007 |
+
|
3008 |
+
#: my-calendar-templating.php:54
|
3009 |
+
msgid "Mini Output Template saved"
|
3010 |
+
msgstr ""
|
3011 |
+
|
3012 |
+
#: my-calendar-templating.php:65
|
3013 |
+
msgid "Event Details Template saved"
|
3014 |
+
msgstr ""
|
3015 |
+
|
3016 |
+
#: my-calendar-templating.php:83
|
3017 |
+
msgid "My Calendar Information Templates"
|
3018 |
+
msgstr ""
|
3019 |
+
|
3020 |
+
#: my-calendar-templating.php:88
|
3021 |
+
msgid "Advanced users may customize the HTML template for each event. This page lets you create a customized view of your events in each context. All available template tags are documented on the Help page. These default templates are based on the default views with all output enabled. <strong>Custom templates will override any other output rules in your settings.</strong>"
|
3022 |
+
msgstr ""
|
3023 |
+
|
3024 |
+
#: my-calendar-templating.php:88
|
3025 |
+
msgid "Templates Help"
|
3026 |
+
msgstr ""
|
3027 |
+
|
3028 |
+
#: my-calendar-templating.php:93
|
3029 |
+
msgid "My Calendar: Grid Event Template"
|
3030 |
+
msgstr ""
|
3031 |
+
|
3032 |
+
#: my-calendar-templating.php:98
|
3033 |
+
msgid "Use this grid event template"
|
3034 |
+
msgstr ""
|
3035 |
+
|
3036 |
+
#: my-calendar-templating.php:101
|
3037 |
+
msgid "Your custom template for events in the calendar grid output."
|
3038 |
+
msgstr ""
|
3039 |
+
|
3040 |
+
#: my-calendar-templating.php:104
|
3041 |
+
msgid "Save Grid Template"
|
3042 |
+
msgstr ""
|
3043 |
+
|
3044 |
+
#: my-calendar-templating.php:113
|
3045 |
+
msgid "My Calendar: List Event Template"
|
3046 |
+
msgstr ""
|
3047 |
+
|
3048 |
+
#: my-calendar-templating.php:118
|
3049 |
+
msgid "Use this list event template"
|
3050 |
+
msgstr ""
|
3051 |
+
|
3052 |
+
#: my-calendar-templating.php:121
|
3053 |
+
msgid "Your custom template for events in calendar list output."
|
3054 |
+
msgstr ""
|
3055 |
+
|
3056 |
+
#: my-calendar-templating.php:124
|
3057 |
+
msgid "Save List Template"
|
3058 |
+
msgstr ""
|
3059 |
+
|
3060 |
+
#: my-calendar-templating.php:133
|
3061 |
+
msgid "My Calendar: Mini Calendar Template"
|
3062 |
+
msgstr ""
|
3063 |
+
|
3064 |
+
#: my-calendar-templating.php:138
|
3065 |
+
msgid "Use this mini event template"
|
3066 |
+
msgstr ""
|
3067 |
+
|
3068 |
+
#: my-calendar-templating.php:141
|
3069 |
+
msgid "Your custom template for events in sidebar/mini calendar output."
|
3070 |
+
msgstr ""
|
3071 |
+
|
3072 |
+
#: my-calendar-templating.php:144
|
3073 |
+
msgid "Save Mini Template"
|
3074 |
+
msgstr ""
|
3075 |
+
|
3076 |
+
#: my-calendar-templating.php:153
|
3077 |
+
msgid "My Calendar: Event Details Page Template"
|
3078 |
+
msgstr ""
|
3079 |
+
|
3080 |
+
#: my-calendar-templating.php:158
|
3081 |
+
msgid "Use this details template"
|
3082 |
+
msgstr ""
|
3083 |
+
|
3084 |
+
#: my-calendar-templating.php:161
|
3085 |
+
msgid "Your custom template for events on the event details page."
|
3086 |
+
msgstr ""
|
3087 |
+
|
3088 |
+
#: my-calendar-templating.php:164
|
3089 |
+
msgid "Save Details Template"
|
3090 |
+
msgstr ""
|
3091 |
+
|
3092 |
+
#: my-calendar-upgrade-db.php:25 my-calendar-upgrade-db.php:33
|
3093 |
+
msgid "The My Calendar database needs to be updated."
|
3094 |
+
msgstr ""
|
3095 |
+
|
3096 |
+
#: my-calendar-upgrade-db.php:26 my-calendar-upgrade-db.php:46
|
3097 |
+
msgid "Update now"
|
3098 |
+
msgstr ""
|
3099 |
+
|
3100 |
+
#: my-calendar-upgrade-db.php:33
|
3101 |
+
msgid "Update now."
|
3102 |
+
msgstr ""
|
3103 |
+
|
3104 |
+
#: my-calendar-upgrade-db.php:45
|
3105 |
+
msgid "You haven't entered any events, so My Calendar can't tell whether your database is up to date. If you can't add events, upgrade your database!"
|
3106 |
+
msgstr ""
|
3107 |
+
|
3108 |
+
#: my-calendar-upgrade-db.php:12
|
3109 |
+
msgid "My Calendar Database is updated."
|
3110 |
+
msgstr ""
|
3111 |
+
|
3112 |
+
#: my-calendar-user.php:36
|
3113 |
+
msgid "My Calendar User Settings"
|
3114 |
+
msgstr ""
|
3115 |
+
|
3116 |
+
#: my-calendar-widgets.php:5
|
3117 |
+
msgid "My Calendar: Today's Events"
|
3118 |
+
msgstr ""
|
3119 |
+
|
3120 |
+
#: my-calendar-widgets.php:51 my-calendar-widgets.php:160
|
3121 |
+
msgid "Template"
|
3122 |
+
msgstr ""
|
3123 |
+
|
3124 |
+
#: my-calendar-widgets.php:54
|
3125 |
+
msgid "Add calendar URL to use this option."
|
3126 |
+
msgstr ""
|
3127 |
+
|
3128 |
+
#: my-calendar-widgets.php:66
|
3129 |
+
msgid "Show this text if there are no events today:"
|
3130 |
+
msgstr ""
|
3131 |
+
|
3132 |
+
#: my-calendar-widgets.php:70 my-calendar-widgets.php:204
|
3133 |
+
#: my-calendar-widgets.php:629
|
3134 |
+
msgid "Category or categories to display:"
|
3135 |
+
msgstr ""
|
3136 |
+
|
3137 |
+
#: my-calendar-widgets.php:102
|
3138 |
+
msgid "My Calendar: Upcoming Events"
|
3139 |
+
msgstr ""
|
3140 |
+
|
3141 |
+
#: my-calendar-widgets.php:164
|
3142 |
+
msgid "Widget Options"
|
3143 |
+
msgstr ""
|
3144 |
+
|
3145 |
+
#: my-calendar-widgets.php:178
|
3146 |
+
msgid "Display upcoming events by:"
|
3147 |
+
msgstr ""
|
3148 |
+
|
3149 |
+
#: my-calendar-widgets.php:179
|
3150 |
+
msgid "Events (e.g. 2 past, 3 future)"
|
3151 |
+
msgstr ""
|
3152 |
+
|
3153 |
+
#: my-calendar-widgets.php:180
|
3154 |
+
msgid "Dates (e.g. 4 days past, 5 forward)"
|
3155 |
+
msgstr ""
|
3156 |
+
|
3157 |
+
#: my-calendar-widgets.php:184
|
3158 |
+
msgid "Skip the first <em>n</em> events"
|
3159 |
+
msgstr ""
|
3160 |
+
|
3161 |
+
#: my-calendar-widgets.php:187
|
3162 |
+
msgid "Events sort order:"
|
3163 |
+
msgstr ""
|
3164 |
+
|
3165 |
+
#: my-calendar-widgets.php:188
|
3166 |
+
msgid "Ascending (near to far)"
|
3167 |
+
msgstr ""
|
3168 |
+
|
3169 |
+
#: my-calendar-widgets.php:189
|
3170 |
+
msgid "Descending (far to near)"
|
3171 |
+
msgstr ""
|
3172 |
+
|
3173 |
+
#: my-calendar-widgets.php:197
|
3174 |
+
msgid "Include today's events"
|
3175 |
+
msgstr ""
|
3176 |
+
|
3177 |
+
#: my-calendar-widgets.php:200
|
3178 |
+
msgid "Show this text if there are no events meeting your criteria:"
|
3179 |
+
msgstr ""
|
3180 |
+
|
3181 |
+
#: my-calendar-widgets.php:575
|
3182 |
+
msgid "My Calendar: Mini Calendar"
|
3183 |
+
msgstr ""
|
3184 |
+
|
3185 |
+
#: my-calendar-widgets.php:599
|
3186 |
+
msgid "Calendar"
|
3187 |
+
msgstr ""
|
3188 |
+
|
3189 |
+
#: my-calendar-widgets.php:633
|
3190 |
+
msgid "Show Next/Previous Navigation:"
|
3191 |
+
msgstr ""
|
3192 |
+
|
3193 |
+
#: my-calendar-widgets.php:645
|
3194 |
+
msgid "Show Category Key:"
|
3195 |
+
msgstr ""
|
3196 |
+
|
3197 |
+
#: my-calendar-widgets.php:651
|
3198 |
+
msgid "Mini-Calendar Timespan:"
|
3199 |
+
msgstr ""
|
3200 |
+
|
3201 |
+
#: my-calendar.php:131
|
3202 |
+
msgid "Support This Plug-in"
|
3203 |
+
msgstr ""
|
3204 |
+
|
3205 |
+
#: my-calendar.php:133
|
3206 |
+
msgid "Help me help you:"
|
3207 |
+
msgstr ""
|
3208 |
+
|
3209 |
+
#: my-calendar.php:133
|
3210 |
+
msgid "Buy the My Calendar User's Guide"
|
3211 |
+
msgstr ""
|
3212 |
+
|
3213 |
+
#: my-calendar.php:134
|
3214 |
+
msgid "<strong>Or make a donation today!</strong> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
|
3215 |
+
msgstr ""
|
3216 |
+
|
3217 |
+
#: my-calendar.php:139 my-calendar.php:142
|
3218 |
+
msgid "Make a Donation"
|
3219 |
+
msgstr ""
|
3220 |
+
|
3221 |
+
#: my-calendar.php:150
|
3222 |
+
msgid "Get Help"
|
3223 |
+
msgstr ""
|
3224 |
+
|
3225 |
+
#: my-calendar.php:154
|
3226 |
+
msgid "Get Support"
|
3227 |
+
msgstr ""
|
3228 |
+
|
3229 |
+
#: my-calendar-help.php:10 my-calendar.php:155 my-calendar.php:335
|
3230 |
+
msgid "My Calendar Help"
|
3231 |
+
msgstr ""
|
3232 |
+
|
3233 |
+
#: my-calendar.php:156
|
3234 |
+
msgid "Check out my other plug-ins"
|
3235 |
+
msgstr ""
|
3236 |
+
|
3237 |
+
#: my-calendar.php:157
|
3238 |
+
msgid "Rate this plug-in 5 stars!"
|
3239 |
+
msgstr ""
|
3240 |
+
|
3241 |
+
#: my-calendar.php:183
|
3242 |
+
msgid "Title of the event."
|
3243 |
+
msgstr ""
|
3244 |
+
|
3245 |
+
#: my-calendar.php:186
|
3246 |
+
msgid "Title of the event as a link if a URL is present, or the title alone if not."
|
3247 |
+
msgstr ""
|
3248 |
+
|
3249 |
+
#: my-calendar.php:189
|
3250 |
+
msgid "Start time for the event."
|
3251 |
+
msgstr ""
|
3252 |
+
|
3253 |
+
#: my-calendar.php:192
|
3254 |
+
msgid "Event times adjusted to the current user's time zone if set."
|
3255 |
+
msgstr ""
|
3256 |
+
|
3257 |
+
#: my-calendar.php:195
|
3258 |
+
msgid "Date on which the event begins."
|
3259 |
+
msgstr ""
|
3260 |
+
|
3261 |
+
#: my-calendar.php:198
|
3262 |
+
msgid "Date on which the event ends."
|
3263 |
+
msgstr ""
|
3264 |
+
|
3265 |
+
#: my-calendar.php:201
|
3266 |
+
msgid "Time at which the event ends."
|
3267 |
+
msgstr ""
|
3268 |
+
|
3269 |
+
#: my-calendar.php:204
|
3270 |
+
msgid "Beginning date to end date; excludes end date if same as beginning."
|
3271 |
+
msgstr ""
|
3272 |
+
|
3273 |
+
#: my-calendar.php:207
|
3274 |
+
msgid "Multi-day events: an unordered list of dates/times. Otherwise, beginning date/time."
|
3275 |
+
msgstr ""
|
3276 |
+
|
3277 |
+
#: my-calendar.php:210
|
3278 |
+
msgid "Author who posted the event."
|
3279 |
+
msgstr ""
|
3280 |
+
|
3281 |
+
#: my-calendar.php:213
|
3282 |
+
msgid "Name of the assigned host for the event."
|
3283 |
+
msgstr ""
|
3284 |
+
|
3285 |
+
#: my-calendar.php:216
|
3286 |
+
msgid "Email for the person assigned as host."
|
3287 |
+
msgstr ""
|
3288 |
+
|
3289 |
+
#: my-calendar.php:219
|
3290 |
+
msgid "Short event description."
|
3291 |
+
msgstr ""
|
3292 |
+
|
3293 |
+
#: my-calendar.php:222
|
3294 |
+
msgid "Description of the event."
|
3295 |
+
msgstr ""
|
3296 |
+
|
3297 |
+
#: my-calendar.php:228
|
3298 |
+
msgid "URL provided for the event."
|
3299 |
+
msgstr ""
|
3300 |
+
|
3301 |
+
#: my-calendar.php:231
|
3302 |
+
msgid "Link to an auto-generated page containing information about the event."
|
3303 |
+
msgstr ""
|
3304 |
+
|
3305 |
+
#: my-calendar.php:234
|
3306 |
+
msgid "Whether event is currently open for registration."
|
3307 |
+
msgstr ""
|
3308 |
+
|
3309 |
+
#: my-calendar.php:237
|
3310 |
+
msgid "Current status of event: either \"Published\" or \"Reserved.\""
|
3311 |
+
msgstr ""
|
3312 |
+
|
3313 |
+
#: my-calendar.php:243
|
3314 |
+
msgid "Name of the location of the event."
|
3315 |
+
msgstr ""
|
3316 |
+
|
3317 |
+
#: my-calendar.php:246
|
3318 |
+
msgid "First line of the site address."
|
3319 |
+
msgstr ""
|
3320 |
+
|
3321 |
+
#: my-calendar.php:249
|
3322 |
+
msgid "Second line of the site address."
|
3323 |
+
msgstr ""
|
3324 |
+
|
3325 |
+
#: my-calendar.php:252
|
3326 |
+
msgid "City."
|
3327 |
+
msgstr ""
|
3328 |
+
|
3329 |
+
#: my-calendar.php:255
|
3330 |
+
msgid "State."
|
3331 |
+
msgstr ""
|
3332 |
+
|
3333 |
+
#: my-calendar.php:258
|
3334 |
+
msgid "Postal code/zip code."
|
3335 |
+
msgstr ""
|
3336 |
+
|
3337 |
+
#: my-calendar.php:261
|
3338 |
+
msgid "Custom region."
|
3339 |
+
msgstr ""
|
3340 |
+
|
3341 |
+
#: my-calendar.php:264
|
3342 |
+
msgid "Country for the event location."
|
3343 |
+
msgstr ""
|
3344 |
+
|
3345 |
+
#: my-calendar.php:267
|
3346 |
+
msgid "Output the URL for the location."
|
3347 |
+
msgstr ""
|
3348 |
+
|
3349 |
+
#: my-calendar.php:270
|
3350 |
+
msgid "Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
3351 |
+
msgstr ""
|
3352 |
+
|
3353 |
+
#: my-calendar.php:273
|
3354 |
+
msgid "Link to Google Map to the event, if address information is available."
|
3355 |
+
msgstr ""
|
3356 |
+
|
3357 |
+
#: my-calendar.php:279
|
3358 |
+
msgid "Name of the category of the event."
|
3359 |
+
msgstr ""
|
3360 |
+
|
3361 |
+
#: my-calendar.php:282
|
3362 |
+
msgid "URL for the event's category icon."
|
3363 |
+
msgstr ""
|
3364 |
+
|
3365 |
+
#: my-calendar.php:285
|
3366 |
+
msgid "Hex code for the event's category color."
|
3367 |
+
msgstr ""
|
3368 |
+
|
3369 |
+
#: my-calendar.php:288
|
3370 |
+
msgid "ID of the category of the event."
|
3371 |
+
msgstr ""
|
3372 |
+
|
3373 |
+
#: my-calendar.php:308 my-calendar.php:310 my-calendar.php:315
|
3374 |
+
#: my-calendar.php:317
|
3375 |
+
msgid "My Calendar"
|
3376 |
+
msgstr ""
|
3377 |
+
|
3378 |
+
#: my-calendar.php:326
|
3379 |
+
msgid "Add/Edit Events"
|
3380 |
+
msgstr ""
|
3381 |
+
|
3382 |
+
#: my-calendar.php:332
|
3383 |
+
msgid "Style Editor"
|
3384 |
+
msgstr ""
|
3385 |
+
|
3386 |
+
#: my-calendar.php:333
|
3387 |
+
msgid "Behavior Editor"
|
3388 |
+
msgstr ""
|
3389 |
+
|
3390 |
+
#: my-calendar.php:334
|
3391 |
+
msgid "Template Editor"
|
3392 |
+
msgstr ""
|
3393 |
+
|
3394 |
+
msgid "http://www.joedolson.com/articles/my-calendar/"
|
3395 |
+
msgstr ""
|
3396 |
+
|
3397 |
+
msgid "Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets."
|
3398 |
+
msgstr ""
|
3399 |
+
|
3400 |
+
msgid "Joseph C Dolson"
|
3401 |
+
msgstr ""
|
3402 |
+
|
3403 |
+
msgid "http://www.joedolson.com"
|
3404 |
+
msgstr ""
|
lang/my-calendar-it_IT.mo
CHANGED
Binary file
|
lang/my-calendar-it_IT.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the My Calendar package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2012-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,7 +10,196 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: My Calendar\n"
|
12 |
|
13 |
-
#: my-calendar-event-manager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
msgid "All day event"
|
15 |
msgstr "Tutto il giorno"
|
16 |
|
@@ -34,7 +223,7 @@ msgstr "Categoria di default"
|
|
34 |
msgid "Private category (logged-in users only)"
|
35 |
msgstr "Categoria riservata (solo utenti loggati)"
|
36 |
|
37 |
-
#: my-calendar-categories.php:
|
38 |
msgid "Private"
|
39 |
msgstr "Riservata"
|
40 |
|
@@ -46,79 +235,79 @@ msgstr "%1$d eventi approvati con successo su %2$d selezionati"
|
|
46 |
msgid "Your events have not been approved. Please investigate."
|
47 |
msgstr "I tuoi eventi non sono stati approvati. Per favore verifica."
|
48 |
|
49 |
-
#: my-calendar-event-manager.php:
|
50 |
msgid "Event saved. An administrator will review and approve your event."
|
51 |
msgstr "Evento salvato. Un amministratore visionerà e approverà il tuo evento."
|
52 |
|
53 |
-
#: my-calendar-event-manager.php:
|
54 |
msgid "Date/time information for this event has been updated."
|
55 |
msgstr "Le informazioni di data/ora per questo evento sono state aggiornate."
|
56 |
|
57 |
-
#: my-calendar-event-manager.php:
|
58 |
msgid "There was an error acquiring information about this event instance. The ID for this event instance was not provided. <strong>You are editing this entire recurrence set.</strong>"
|
59 |
msgstr "C'è stato un errore nell'acquisire le informazioni su questo evento. L'ID per questo evento non è stato fornito. <strong>Stai modificando tutti i dati dell'occurrenza.</strong>"
|
60 |
|
61 |
-
#: my-calendar-event-manager.php:
|
62 |
msgid "Hide end time"
|
63 |
msgstr "Nascondi l'orario finale"
|
64 |
|
65 |
-
#: my-calendar-event-manager.php:
|
66 |
msgid "Dates for this event:"
|
67 |
msgstr "Date per questo evento:"
|
68 |
|
69 |
-
#: my-calendar-event-manager.php:
|
70 |
msgid "Editing a single date of an event changes only that event. Editing the root event changes all events in the series."
|
71 |
msgstr "Modificare una singola data di un evento cambia solo quell'evento. Modificare l'evento principale cambia tutti gli eventi della serie."
|
72 |
|
73 |
-
#: my-calendar-event-manager.php:
|
74 |
msgid "Related Events:"
|
75 |
msgstr "Eventi collegati:"
|
76 |
|
77 |
-
#: my-calendar-event-manager.php:
|
78 |
msgid "Edit group"
|
79 |
msgstr "Modifica gruppo"
|
80 |
|
81 |
-
#: my-calendar-event-manager.php:
|
82 |
msgid "Copy this location into the locations table"
|
83 |
msgstr "Copia questa località nella tabella delle località"
|
84 |
|
85 |
-
#: my-calendar-event-manager.php:
|
86 |
msgid "Clear filters"
|
87 |
msgstr "Elimina i filtri"
|
88 |
|
89 |
-
#: my-calendar-event-manager.php:
|
90 |
msgid "« Previous Page"
|
91 |
msgstr "« Pagina precedente"
|
92 |
|
93 |
-
#: my-calendar-event-manager.php:
|
94 |
msgid "Next Page »"
|
95 |
msgstr "Pagina successiva »"
|
96 |
|
97 |
-
#: my-calendar-event-manager.php:
|
98 |
msgid "Filter by location"
|
99 |
msgstr "Filtro per località"
|
100 |
|
101 |
-
#: my-calendar-event-manager.php:
|
102 |
msgid "Filter by author"
|
103 |
msgstr "Filtro per autore"
|
104 |
|
105 |
-
#: my-calendar-event-manager.php:
|
106 |
msgid "Filter by category"
|
107 |
msgstr "Filtro per categoria"
|
108 |
|
109 |
-
#: my-calendar-event-manager.php:
|
110 |
msgid "Approve checked events"
|
111 |
msgstr "Approva gli eventi selezionati"
|
112 |
|
113 |
-
#: my-calendar-event-manager.php:
|
114 |
msgid "That event conflicts with a previously scheduled event."
|
115 |
msgstr "Questo evento è in conflitto con un evento già previsto"
|
116 |
|
117 |
-
#: my-calendar-event-manager.php:
|
118 |
msgid "Editing: "
|
119 |
msgstr "Modifica:"
|
120 |
|
121 |
-
#: my-calendar-event-manager.php:
|
122 |
msgid "No related events"
|
123 |
msgstr "Nessun evento correlato"
|
124 |
|
@@ -143,123 +332,119 @@ msgstr "Eventi raggruppati"
|
|
143 |
msgid "Ungrouped Events"
|
144 |
msgstr "Eventi non raggruppati"
|
145 |
|
146 |
-
#: my-calendar-help.php:
|
147 |
msgid "Author or comma-separated list of authors (usernames or IDs) to show events from."
|
148 |
msgstr "Autore o lista di autori (username o ID) separata da virgole di cui mostrare gli eventi."
|
149 |
|
150 |
-
#: my-calendar-help.php:
|
151 |
msgid "This shortcode displays the output of the Upcoming Events widget. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either \"event\" or \"days\", and the <code>category</code> and <code>author</code> attributes work the same way as on the main calendar shortcode. Templates work using the template codes listed below. <code>fallback</code> provides text in case there are no events meeting your criteria. Order provides a sort order for the events list – either ascending (<code>asc</code>) or descending (<code>desc</code>). <code>show_today</code> is an indicator whether or not to include today's events in the list. <code>Skip</code> is the number of events to skip in the upcoming events."
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: my-calendar-help.php:
|
155 |
msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with four configurable attributes: category, author, template and fallback text."
|
156 |
msgstr "Come prevedibile, questa abbreviazione mostra ciò che è prodotto dal widget Eventi di oggi, con quattro attributi configurabili: categoria, autore, modello e testo alternativo."
|
157 |
|
158 |
-
#: my-calendar-help.php:
|
159 |
msgid "Displays a single event and/or all dates for that event. If template is set to a blank value, will only display the list of occurrences. If the list attribute is set blank, will only show the event template"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: my-calendar-help.php:
|
163 |
msgid "Use the <code>template</code> attribute to show your own customized set of data. The data will be sorted by the <code>datatype</code> value."
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: my-calendar-help.php:
|
167 |
msgid "Displays the beginning and end times for events. Does not show end time if same as start or if marked as hidden."
|
168 |
-
msgstr ""
|
169 |
|
170 |
-
#: my-calendar-help.php:
|
171 |
msgid "Output the stored phone number for the location."
|
172 |
msgstr "Restituisce il numero di telefono memorizzato per la località."
|
173 |
|
174 |
-
#: my-calendar-settings.php:
|
175 |
msgid "Visit your <a href=\"%s\">permalinks settings</a> and re-save them."
|
176 |
msgstr "Visita le tue <a href=\"%s\">opzioni permalink</a> e risalvale."
|
177 |
|
178 |
-
#: my-calendar-settings.php:
|
179 |
msgid "You will need to allow remote connections from this site to the site hosting your My Calendar events. Replace the above placeholders with the host-site information. The two sites must have the same WP table prefix. While this option is enabled, you may not enter or edit events through this installation."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: my-calendar-settings.php:
|
183 |
msgid "iCal times are UTC"
|
184 |
msgstr "Le ore su iCal sono UTC"
|
185 |
|
186 |
-
#: my-calendar-settings.php:
|
187 |
msgid "Show author's name"
|
188 |
msgstr "Mostra il nome dell'autore"
|
189 |
|
190 |
-
#: my-calendar-settings.php:
|
191 |
msgid "Show link to single event iCal download"
|
192 |
msgstr "Mostra link per scaricare in formato iCal. "
|
193 |
|
194 |
-
#: my-calendar-settings.php:
|
195 |
msgid "Show category icons"
|
196 |
msgstr "Mostra le icone di categoria"
|
197 |
|
198 |
-
#: my-calendar-settings.php:
|
199 |
msgid "Show short description"
|
200 |
msgstr "Mostra descrizione abbreviata"
|
201 |
|
202 |
-
#: my-calendar-settings.php:
|
203 |
msgid "Show full description"
|
204 |
msgstr "Mostra la descrizione completa"
|
205 |
|
206 |
-
#: my-calendar-settings.php:
|
207 |
msgid "Process WordPress shortcodes in description fields"
|
208 |
msgstr "Utilizza le abbreviazioni WordPress nei campi descrizione"
|
209 |
|
210 |
-
#: my-calendar-settings.php:
|
211 |
msgid "Show link to single-event details (requires <a href='#mc_uri'>URL</a>)"
|
212 |
msgstr "Mostra i collegamenti ai dettagli degli eventi singoli (richiede <a href='#mc_uri'>URL</a>)"
|
213 |
|
214 |
-
#: my-calendar-settings.php:
|
215 |
msgid "Show external link"
|
216 |
msgstr "Mostra collegamenti esterni"
|
217 |
|
218 |
-
#: my-calendar-settings.php:
|
219 |
msgid "Show Event Image field"
|
220 |
msgstr "Mostra il campo Immagine Evento"
|
221 |
|
222 |
-
#: my-calendar-settings.php:
|
223 |
msgid "Show Event Registration options"
|
224 |
msgstr "Mostra le opzioni Registrazione evento"
|
225 |
|
226 |
-
#: my-calendar-settings.php:
|
227 |
msgid "Show Event Location fields"
|
228 |
msgstr "Mostra i campi Luogo evento"
|
229 |
|
230 |
-
#: my-calendar-settings.php:
|
231 |
msgid "Set Special Scheduling options"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: my-calendar-styles.php:
|
235 |
msgid "Styles are disabled, and were not edited."
|
236 |
msgstr "Gli stili sono disabilitati e non sono stati modificati"
|
237 |
|
238 |
-
#: my-calendar-styles.php:
|
239 |
msgid "Apply CSS on these pages (comma separated IDs)"
|
240 |
msgstr "Utilizza i CSS in queste pagine (ID separati da virgola)"
|
241 |
|
242 |
-
#: my-calendar-widgets.php:
|
243 |
msgid "Author or authors to show:"
|
244 |
msgstr "Autore od autori da mostrare:"
|
245 |
|
246 |
-
#: my-calendar.php:
|
247 |
msgid "My Calendar: Submissions"
|
248 |
msgstr "My Calendar: sottoscrizioni"
|
249 |
|
250 |
-
#: my-calendar.php:
|
251 |
-
msgid "Buy the <a href='http://www.joedolson.com/articles/my-calendar/users-guide/' rel='external'>My Calendar: Submissions add-on</a> — let your site's visitors help build your calendar."
|
252 |
-
msgstr "Compra <a href='http://www.joedolson.com/articles/my-calendar/users-guide/' rel='external'>l'add on My Calendar: sottoscrizioni</a> — fa che il visitatore del tuo sito aiuti a costruire il tuo calendario."
|
253 |
-
|
254 |
-
#: my-calendar.php:137
|
255 |
msgid "Learn more!"
|
256 |
msgstr "Maggiori informazioni!"
|
257 |
|
258 |
-
#: my-calendar.php:
|
259 |
msgid "Event Submissions"
|
260 |
msgstr "Sottoscrizioni agli eventi"
|
261 |
|
262 |
-
#: my-calendar.php:
|
263 |
msgid "Payments"
|
264 |
msgstr "Pagamenti"
|
265 |
|
@@ -283,38 +468,38 @@ msgstr "Tipo di filtro località:"
|
|
283 |
msgid "All locations"
|
284 |
msgstr "Tutte le località"
|
285 |
|
286 |
-
#: button/generator.php:55 my-calendar-settings.php:
|
287 |
-
#: my-calendar-settings.php:
|
288 |
msgid "Location Name"
|
289 |
msgstr "Nome Località"
|
290 |
|
291 |
-
#: button/generator.php:56 my-calendar-event-manager.php:
|
292 |
#: my-calendar-group-manager.php:460 my-calendar-locations.php:152
|
293 |
-
#: my-calendar-settings.php:
|
294 |
msgid "City"
|
295 |
msgstr "Città"
|
296 |
|
297 |
-
#: button/generator.php:57 my-calendar-event-manager.php:
|
298 |
#: my-calendar-group-manager.php:476 my-calendar-locations.php:197
|
299 |
msgid "State"
|
300 |
msgstr "Stato"
|
301 |
|
302 |
-
#: button/generator.php:58 my-calendar-event-manager.php:
|
303 |
#: my-calendar-group-manager.php:463 my-calendar-locations.php:168
|
304 |
-
#: my-calendar-settings.php:
|
305 |
msgid "Postal Code"
|
306 |
msgstr "Codice Postale"
|
307 |
|
308 |
-
#: button/generator.php:59 my-calendar-event-manager.php:
|
309 |
#: my-calendar-group-manager.php:467 my-calendar-locations.php:184
|
310 |
-
#: my-calendar-settings.php:
|
311 |
msgid "Country"
|
312 |
msgstr "Paese"
|
313 |
|
314 |
-
#: button/generator.php:60 my-calendar-event-manager.php:
|
315 |
-
#: my-calendar-event-manager.php:
|
316 |
#: my-calendar-group-manager.php:477 my-calendar-locations.php:175
|
317 |
-
#: my-calendar-locations.php:198 my-calendar-settings.php:
|
318 |
msgid "Region"
|
319 |
msgstr "Regione"
|
320 |
|
@@ -339,14 +524,14 @@ msgid "Show Category Key"
|
|
339 |
msgstr "Mostra la chiave della categoria"
|
340 |
|
341 |
#: button/generator.php:77 button/generator.php:84 button/generator.php:91
|
342 |
-
#: button/generator.php:98 my-calendar-widgets.php:
|
343 |
-
#: my-calendar-widgets.php:
|
344 |
msgid "Yes"
|
345 |
msgstr "Sì"
|
346 |
|
347 |
#: button/generator.php:78 button/generator.php:85 button/generator.php:92
|
348 |
-
#: button/generator.php:99 my-calendar-widgets.php:
|
349 |
-
#: my-calendar-widgets.php:
|
350 |
msgid "No"
|
351 |
msgstr "No"
|
352 |
|
@@ -354,7 +539,7 @@ msgstr "No"
|
|
354 |
msgid "Show Previous/Next Links"
|
355 |
msgstr "Mostra i collegamenti Precedente/Successivo"
|
356 |
|
357 |
-
#: button/generator.php:89 my-calendar-widgets.php:
|
358 |
msgid "Show Jumpbox"
|
359 |
msgstr ""
|
360 |
|
@@ -366,12 +551,12 @@ msgstr ""
|
|
366 |
msgid "Time Segment"
|
367 |
msgstr "Segmento orario"
|
368 |
|
369 |
-
#: button/generator.php:105 my-calendar-output.php:
|
370 |
-
#: my-calendar-widgets.php:
|
371 |
msgid "Month"
|
372 |
msgstr "Mese"
|
373 |
|
374 |
-
#: button/generator.php:106 my-calendar-widgets.php:
|
375 |
msgid "Week"
|
376 |
msgstr "Settimana"
|
377 |
|
@@ -434,15 +619,15 @@ msgstr ""
|
|
434 |
|
435 |
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
436 |
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
437 |
-
#: my-calendar-styles.php:
|
438 |
msgid "Latest (from plugin)"
|
439 |
msgstr "Ultimo (da plugin)"
|
440 |
|
441 |
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
442 |
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
443 |
-
#: my-calendar-styles.php:
|
444 |
msgid "Current (in use)"
|
445 |
-
msgstr ""
|
446 |
|
447 |
#: my-calendar-behaviors.php:102
|
448 |
msgid "There have been updates to the calendar view scripts."
|
@@ -451,7 +636,7 @@ msgstr "CI sono degli aggiornamenti agli script di vista del calendario"
|
|
451 |
#: my-calendar-behaviors.php:102 my-calendar-behaviors.php:134
|
452 |
#: my-calendar-behaviors.php:165 my-calendar-behaviors.php:197
|
453 |
msgid "Compare your scripts with latest installed version of My Calendar."
|
454 |
-
msgstr ""
|
455 |
|
456 |
#: my-calendar-behaviors.php:106 my-calendar-behaviors.php:138
|
457 |
#: my-calendar-behaviors.php:169 my-calendar-behaviors.php:201
|
@@ -470,7 +655,7 @@ msgstr "Stile Calendario: Vista Lista"
|
|
470 |
|
471 |
#: my-calendar-behaviors.php:120
|
472 |
msgid "Update/Reset the My Calendar List Javascript"
|
473 |
-
msgstr ""
|
474 |
|
475 |
#: my-calendar-behaviors.php:120
|
476 |
msgid "Disable List Javascript Effects"
|
@@ -482,7 +667,7 @@ msgstr "Modificare gli script jQuery per My Calendar in formato Lista"
|
|
482 |
|
483 |
#: my-calendar-behaviors.php:134
|
484 |
msgid "There have been updates to the list view scripts."
|
485 |
-
msgstr ""
|
486 |
|
487 |
#: my-calendar-behaviors.php:149
|
488 |
msgid "Calendar Behaviors: Mini Calendar View"
|
@@ -502,7 +687,7 @@ msgstr "Modificare gli script jQuery per My calendar in formato mini-calendario"
|
|
502 |
|
503 |
#: my-calendar-behaviors.php:165
|
504 |
msgid "There have been updates to the mini view scripts."
|
505 |
-
msgstr ""
|
506 |
|
507 |
#: my-calendar-behaviors.php:181
|
508 |
msgid "Calendar Behaviors: AJAX Navigation"
|
@@ -510,7 +695,7 @@ msgstr "Comportamento del calendario: navigazione AJAX"
|
|
510 |
|
511 |
#: my-calendar-behaviors.php:183
|
512 |
msgid "Update/Reset the My Calendar AJAX Javascript"
|
513 |
-
msgstr ""
|
514 |
|
515 |
#: my-calendar-behaviors.php:183
|
516 |
msgid "Disable AJAX Effects"
|
@@ -561,7 +746,7 @@ msgstr "Modifica Categoria"
|
|
561 |
msgid "Category Editor"
|
562 |
msgstr "Editore di Categoria"
|
563 |
|
564 |
-
#: my-calendar-categories.php:214 my-calendar-categories.php:
|
565 |
msgid "Category Name"
|
566 |
msgstr "Nome della categoria"
|
567 |
|
@@ -569,12 +754,12 @@ msgstr "Nome della categoria"
|
|
569 |
msgid "Category Color (Hex format)"
|
570 |
msgstr "Colore Categoria (Formato Hex)"
|
571 |
|
572 |
-
#: my-calendar-categories.php:216 my-calendar-categories.php:
|
573 |
msgid "Category Icon"
|
574 |
msgstr "Icona Categoria"
|
575 |
|
576 |
#: my-calendar-categories.php:236 my-calendar-locations.php:215
|
577 |
-
#: my-calendar-styles.php:
|
578 |
msgid "Save Changes"
|
579 |
msgstr "Salva le modifiche"
|
580 |
|
@@ -586,120 +771,120 @@ msgstr "Aggiungi una nuova categoria"
|
|
586 |
msgid "Category List"
|
587 |
msgstr "Elenco categorie"
|
588 |
|
589 |
-
#: my-calendar-categories.php:
|
590 |
msgid "Manage Categories"
|
591 |
msgstr "Gestione categorie"
|
592 |
|
593 |
-
#: my-calendar-categories.php:
|
594 |
#: my-calendar-group-manager.php:731 my-calendar-locations.php:288
|
595 |
msgid "ID"
|
596 |
msgstr "ID"
|
597 |
|
598 |
-
#: my-calendar-categories.php:
|
599 |
msgid "Category Color"
|
600 |
msgstr "Colore Categoria"
|
601 |
|
602 |
-
#: my-calendar-categories.php:
|
603 |
-
#: my-calendar-event-manager.php:
|
604 |
#: my-calendar-locations.php:290 my-calendar-locations.php:302
|
605 |
-
#: my-calendar-output.php:
|
606 |
msgid "Edit"
|
607 |
msgstr "Modifica"
|
608 |
|
609 |
-
#: my-calendar-categories.php:
|
610 |
-
#: my-calendar-event-manager.php:
|
611 |
#: my-calendar-locations.php:291 my-calendar-locations.php:303
|
612 |
-
#: my-calendar-output.php:
|
613 |
msgid "Delete"
|
614 |
msgstr "Cancella"
|
615 |
|
616 |
-
#: my-calendar-categories.php:
|
617 |
-
#: my-calendar-group-manager.php:780 my-calendar-output.php:
|
618 |
-
#: my-calendar-settings.php:
|
619 |
msgid "N/A"
|
620 |
msgstr "n.d."
|
621 |
|
622 |
-
#: my-calendar-categories.php:
|
623 |
msgid "Are you sure you want to delete this category?"
|
624 |
msgstr "Sei sicuro di voler cancellare questa categoria?"
|
625 |
|
626 |
-
#: my-calendar-categories.php:
|
627 |
msgid "There are no categories in the database - something has gone wrong!"
|
628 |
msgstr "Non esistono categorie nel database - qualcosa non ha funzionato!"
|
629 |
|
630 |
-
#: my-calendar-core.php:58 my-calendar.php:
|
631 |
msgid "Settings"
|
632 |
msgstr "Impostazioni"
|
633 |
|
634 |
-
#: my-calendar-core.php:59 my-calendar.php:
|
635 |
msgid "Help"
|
636 |
msgstr "Aiuto"
|
637 |
|
638 |
-
#: my-calendar-core.php:
|
639 |
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
640 |
msgstr "<br /><strong>Nota:</strong> Per favore verifica il <a class=\"thickbox\" href=\"%1$s\">changelog</a> prima di aggiornare."
|
641 |
|
642 |
-
#: my-calendar-core.php:
|
643 |
msgid "Add Event"
|
644 |
msgstr "Aggiungi Evento"
|
645 |
|
646 |
-
#: my-calendar-core.php:
|
647 |
msgid "Is this your calendar page?"
|
648 |
msgstr "È la pagina del tuo calendario?"
|
649 |
|
650 |
-
#: my-calendar-core.php:
|
651 |
msgid "I tried to guess, but don't have a suggestion for you."
|
652 |
msgstr "Ho tirato ad indovinare, ma non ho nulla da suggerire."
|
653 |
|
654 |
-
#: my-calendar-core.php:
|
655 |
msgid "Please read the FAQ and other Help documents before making a support request."
|
656 |
msgstr "Per favore leggi le FAQ e il resto della documentazione di aiuto prima di inviare una richiesta di assistenza."
|
657 |
|
658 |
-
#: my-calendar-core.php:
|
659 |
msgid "Please describe your problem in detail. I'm not psychic."
|
660 |
msgstr "Per favore descrivi dettagliatamente il problema. Non leggo nella mente."
|
661 |
|
662 |
-
#: my-calendar-core.php:
|
663 |
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
|
664 |
msgstr "Grazie per sostenere lo sviluppo di questo plug-in! Risponderò appena possibile."
|
665 |
|
666 |
-
#: my-calendar-core.php:
|
667 |
msgid "I'll get back to you as soon as I can, after dealing with any support requests from plug-in supporters."
|
668 |
msgstr "Risponderò appena possibile dopo aver esaurito le richieste di assistenza per il plug-in."
|
669 |
|
670 |
-
#: my-calendar-core.php:
|
671 |
msgid "Please note: I do keep records of those who have donated, <strong>but if your donation came from somebody other than your account at this web site, please note this in your message.</strong>"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: my-calendar-core.php:
|
675 |
msgid "From:"
|
676 |
msgstr "Da:"
|
677 |
|
678 |
-
#: my-calendar-core.php:
|
679 |
msgid "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">the FAQ for this plug-in</a>."
|
680 |
msgstr "Ho letto <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">le FAQ per questo plug-in</a>."
|
681 |
|
682 |
-
#: my-calendar-core.php:
|
683 |
msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
|
684 |
msgstr "Ho <a href=\"http://www.joedolson.com/donate.php\">fatto una donazione per sostenere questo plug-in</a>."
|
685 |
|
686 |
-
#: my-calendar-core.php:
|
687 |
msgid "I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">purchased the User's Guide</a>, but could not find an answer to this question."
|
688 |
msgstr "Ho <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">comprato la Guida Utente</a>, ma non ho trovato una risposta a questo problema."
|
689 |
|
690 |
-
#: my-calendar-core.php:
|
691 |
msgid "Send Support Request"
|
692 |
msgstr "Invia richiesta di assistenza"
|
693 |
|
694 |
-
#: my-calendar-core.php:
|
695 |
msgid "The following additional information will be sent with your support request:"
|
696 |
msgstr "Le seguenti informazioni aggiuntive verranno inviate con la tua richiesta di assistenza:"
|
697 |
|
698 |
-
#: my-calendar-event-manager.php:13 my-calendar-settings.php:
|
699 |
msgid "My Calendar has identified that you have the Calendar plugin by Kieran O'Shea installed. You can import those events and categories into the My Calendar database. Would you like to import these events?"
|
700 |
msgstr "My calendar ha identificato che hai il plugin the calendar di Kieran O'Shea installato. È possibile importare gli eventi e le categorie nel database di My calendar. Ti piacerebbe importare questi eventi?"
|
701 |
|
702 |
-
#: my-calendar-event-manager.php:20 my-calendar-settings.php:
|
703 |
msgid "Import from Calendar"
|
704 |
msgstr "Importa da calendario"
|
705 |
|
@@ -712,12 +897,12 @@ msgid "%1$d events deleted successfully out of %2$d selected"
|
|
712 |
msgstr "%1$d eventi cancellati con successo su %2$d selezionati"
|
713 |
|
714 |
#: my-calendar-event-manager.php:76 my-calendar-event-manager.php:106
|
715 |
-
#: my-calendar-event-manager.php:
|
716 |
-
#: my-calendar-event-manager.php:
|
717 |
-
#: my-calendar-event-manager.php:
|
718 |
-
#: my-calendar-event-manager.php:
|
719 |
-
#: my-calendar-event-manager.php:
|
720 |
-
#: my-calendar-event-manager.php:
|
721 |
#: my-calendar-group-manager.php:84 my-calendar-group-manager.php:148
|
722 |
#: my-calendar-group-manager.php:585
|
723 |
msgid "Error"
|
@@ -727,494 +912,494 @@ msgstr "Errore"
|
|
727 |
msgid "Your events have not been deleted. Please investigate."
|
728 |
msgstr "I tuoi eventi non sono stati cancellati. Si prega di indagare."
|
729 |
|
730 |
-
#: my-calendar-event-manager.php:
|
731 |
msgid "Delete Event"
|
732 |
msgstr "Cancellare evento"
|
733 |
|
734 |
-
#: my-calendar-event-manager.php:
|
735 |
msgid "Are you sure you want to delete this event?"
|
736 |
msgstr "Sei sicuro di voler cancellare questo evento?"
|
737 |
|
738 |
-
#: my-calendar-event-manager.php:
|
739 |
msgid "You do not have permission to delete that event."
|
740 |
msgstr "Non hai il permesso per cancellare l'evento."
|
741 |
|
742 |
-
#: my-calendar-event-manager.php:
|
743 |
msgid "You do not have permission to approve that event."
|
744 |
msgstr "Non hai il permesso per approvare questo evento."
|
745 |
|
746 |
-
#: my-calendar-event-manager.php:
|
747 |
msgid "You do not have permission to reject that event."
|
748 |
msgstr "Non hai il permesso per rifiutare questo evento."
|
749 |
|
750 |
-
#: my-calendar-event-manager.php:
|
751 |
msgid "Currently editing your local calendar"
|
752 |
msgstr "Sto modificando il tuo calendario locale"
|
753 |
|
754 |
-
#: my-calendar-event-manager.php:
|
755 |
msgid "Currently editing your central calendar"
|
756 |
msgstr "Sto modificando il tuo calendario centrale"
|
757 |
|
758 |
-
#: my-calendar-event-manager.php:
|
759 |
msgid "Edit Event"
|
760 |
msgstr "Modifica evento"
|
761 |
|
762 |
-
#: my-calendar-event-manager.php:
|
763 |
msgid "You must provide an event id in order to edit it"
|
764 |
msgstr "È necessario fornire un ID evento al fine di modificarlo"
|
765 |
|
766 |
-
#: my-calendar-event-manager.php:
|
767 |
msgid "Copy Event"
|
768 |
msgstr "Copia Evento"
|
769 |
|
770 |
-
#: my-calendar-event-manager.php:
|
771 |
msgid "I'm sorry! I couldn't add that event to the database."
|
772 |
msgstr "Spiacente! Non ho potuto aggiungere l'evento al database."
|
773 |
|
774 |
-
#: my-calendar-event-manager.php:
|
775 |
msgid "Event added. It will now show in your calendar."
|
776 |
msgstr "Evento aggiunto. Adesso sarà visibile nel tuo calendario."
|
777 |
|
778 |
-
#: my-calendar-event-manager.php:
|
779 |
#: my-calendar-group-manager.php:146
|
780 |
msgid "View <a href=\"%s\">your calendar</a>."
|
781 |
msgstr "Visualizza <a href=\"%s\">il tuo calendario</a>."
|
782 |
|
783 |
-
#: my-calendar-event-manager.php:
|
784 |
msgid "Your event was not updated."
|
785 |
msgstr "L'evento non è stato aggiornato."
|
786 |
|
787 |
-
#: my-calendar-event-manager.php:
|
788 |
#: my-calendar-group-manager.php:60 my-calendar-group-manager.php:86
|
789 |
#: my-calendar-group-manager.php:150
|
790 |
msgid "Nothing was changed in that update."
|
791 |
msgstr "Niente è stato modificato in questo aggiornamento."
|
792 |
|
793 |
-
#: my-calendar-event-manager.php:
|
794 |
#: my-calendar-group-manager.php:152
|
795 |
msgid "Event updated successfully"
|
796 |
msgstr "Evento aggiornato con successo"
|
797 |
|
798 |
-
#: my-calendar-event-manager.php:
|
799 |
msgid "You do not have sufficient permissions to edit that event."
|
800 |
msgstr "Non si dispone di permessi sufficienti per modificare tale evento."
|
801 |
|
802 |
-
#: my-calendar-event-manager.php:
|
803 |
msgid "You can't delete an event if you haven't submitted an event id"
|
804 |
msgstr "Non è possibile eliminare un evento se non viene indicato un ID evento"
|
805 |
|
806 |
-
#: my-calendar-event-manager.php:
|
807 |
msgid "Event deleted successfully"
|
808 |
msgstr "Evento cancellato con successo"
|
809 |
|
810 |
-
#: my-calendar-event-manager.php:
|
811 |
msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
|
812 |
msgstr "Despite issuing a request to delete, the event still remains in the database. Please investigate."
|
813 |
|
814 |
-
#: my-calendar-event-manager.php:
|
815 |
msgid "Sorry! That's an invalid event key."
|
816 |
msgstr "Spiacente! Questa chiave di evento non è valida."
|
817 |
|
818 |
-
#: my-calendar-event-manager.php:
|
819 |
msgid "Sorry! We couldn't find an event with that ID."
|
820 |
msgstr "Spiacente! Non riusciamo a trovare un evento con questo ID."
|
821 |
|
822 |
-
#: my-calendar-event-manager.php:
|
823 |
msgid "This event must be approved in order for it to appear on the calendar."
|
824 |
msgstr "Questo evento deve essere approvato in modo che venga visualizzato sul calendario."
|
825 |
|
826 |
-
#: my-calendar-event-manager.php:
|
827 |
msgid "Add/Edit Event"
|
828 |
msgstr "Aggiungi/Modifica evento"
|
829 |
|
830 |
-
#: my-calendar-event-manager.php:
|
831 |
msgid "Save Event"
|
832 |
msgstr "Salva Evento"
|
833 |
|
834 |
-
#: my-calendar-event-manager.php:
|
835 |
msgid "Enter your Event Information"
|
836 |
msgstr "Inserisci le informazioni del tuo evento"
|
837 |
|
838 |
-
#: my-calendar-event-manager.php:
|
839 |
msgid "Event Title"
|
840 |
msgstr "Titolo dell'evento"
|
841 |
|
842 |
-
#: my-calendar-event-manager.php:
|
843 |
#: my-calendar-group-manager.php:300
|
844 |
msgid "(required)"
|
845 |
msgstr "(obbligatorio)"
|
846 |
|
847 |
-
#: my-calendar-event-manager.php:
|
848 |
msgid "Publish"
|
849 |
msgstr "Pubblica"
|
850 |
|
851 |
-
#: my-calendar-event-manager.php:
|
852 |
msgid "You must approve this event to promote it to the calendar."
|
853 |
msgstr "È necessario approvare questo evento per promuovere al calendario."
|
854 |
|
855 |
-
#: my-calendar-event-manager.php:
|
856 |
msgid "An administrator must approve your new event."
|
857 |
msgstr "Un amministratore deve approvare il nuovo evento."
|
858 |
|
859 |
-
#: my-calendar-event-manager.php:
|
860 |
msgid "This event is not spam"
|
861 |
msgstr "Questo evento non è spam"
|
862 |
|
863 |
-
#: my-calendar-event-manager.php:
|
864 |
msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
865 |
msgstr "Descrizione Evento (<abbr title=\"hypertext markup language\">HTML</abbr> permesso)"
|
866 |
|
867 |
-
#: my-calendar-event-manager.php:
|
868 |
#: my-calendar-group-manager.php:325 my-calendar-group-manager.php:333
|
869 |
msgid "This event's image:"
|
870 |
msgstr "Immagine per questo evento:"
|
871 |
|
872 |
-
#: my-calendar-event-manager.php:
|
873 |
msgid "Add an image:"
|
874 |
msgstr "Aggiungi un'immagine:"
|
875 |
|
876 |
-
#: my-calendar-event-manager.php:
|
877 |
msgid "(URL to Event image)"
|
878 |
msgstr "(URL dell'immagine dell'evento)"
|
879 |
|
880 |
-
#: my-calendar-event-manager.php:
|
881 |
msgid "Upload Image"
|
882 |
msgstr "Carica immagine"
|
883 |
|
884 |
-
#: my-calendar-event-manager.php:
|
885 |
msgid "Include your image URL or upload an image."
|
886 |
msgstr "Aggiungi l'URL della tua immagine o caricane una."
|
887 |
|
888 |
-
#: my-calendar-event-manager.php:
|
889 |
msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
890 |
msgstr "Descrizione breve Evento (<abbr title=\"hypertext markup language\">HTML</abbr> permesso)"
|
891 |
|
892 |
-
#: my-calendar-event-manager.php:
|
893 |
msgid "Event Host"
|
894 |
msgstr "Assegna Evento a"
|
895 |
|
896 |
-
#: my-calendar-event-manager.php:
|
897 |
msgid "Event Category"
|
898 |
msgstr "Categoria dell'evento "
|
899 |
|
900 |
-
#: my-calendar-event-manager.php:
|
901 |
msgid "Event Link (Optional)"
|
902 |
msgstr "Link dell'evento (opzionale)"
|
903 |
|
904 |
-
#: my-calendar-event-manager.php:
|
905 |
msgid "This link will expire when the event passes."
|
906 |
msgstr "Questo link scade quando l'evento passa."
|
907 |
|
908 |
-
#: my-calendar-event-manager.php:
|
909 |
msgid "Event Date and Time"
|
910 |
msgstr "Data e Ora dell'Evento"
|
911 |
|
912 |
-
#: my-calendar-event-manager.php:
|
913 |
msgid "Start Date (YYYY-MM-DD)"
|
914 |
msgstr "Data Inizio (YYYY-MM-DD)"
|
915 |
|
916 |
-
#: my-calendar-event-manager.php:
|
917 |
msgid "Time (hh:mm am/pm)"
|
918 |
msgstr "Ora (hh:mm am/pm)"
|
919 |
|
920 |
-
#: my-calendar-event-manager.php:
|
921 |
msgid "End Date (YYYY-MM-DD)"
|
922 |
msgstr "Data Fine (YYYY-MM-DD)"
|
923 |
|
924 |
-
#: my-calendar-event-manager.php:
|
925 |
msgid "End Time (hh:mm am/pm)"
|
926 |
msgstr "Ora fine (hh:mm am/pm)"
|
927 |
|
928 |
-
#: my-calendar-event-manager.php:
|
929 |
msgid "This is a multi-day event."
|
930 |
msgstr "Questo è un evento multi giornata."
|
931 |
|
932 |
-
#: my-calendar-event-manager.php:
|
933 |
msgid "Enter the beginning and ending dates/times for each occurrence of the event."
|
934 |
msgstr "Inserisci data/ora di inizio e fine per ogni occorrenza dell'evento."
|
935 |
|
936 |
-
#: my-calendar-event-manager.php:
|
937 |
msgid "If this is a multi-day event, it creates a single event with multiple dates/times; otherwise it creates separate events for each occurrence."
|
938 |
msgstr "Se questo è un evento multi giornata, si creerà un evento singolo con più date/ore; altrimenti creerà singoli eventi per ogni occorrenza. "
|
939 |
|
940 |
-
#: my-calendar-event-manager.php:
|
941 |
msgid "Add another occurrence"
|
942 |
msgstr "Aggiungi un'altra occorrenza"
|
943 |
|
944 |
-
#: my-calendar-event-manager.php:
|
945 |
msgid "Remove last occurrence"
|
946 |
msgstr "Rimuovi l'ultima occorrenza"
|
947 |
|
948 |
-
#: my-calendar-event-manager.php:
|
949 |
msgid "Current time difference from GMT is "
|
950 |
msgstr "La differenza di ora rispetto al GMT è"
|
951 |
|
952 |
-
#: my-calendar-event-manager.php:
|
953 |
msgid " hour(s)"
|
954 |
msgstr " ora(e)"
|
955 |
|
956 |
-
#: my-calendar-event-manager.php:
|
957 |
msgid "Recurring Events"
|
958 |
msgstr "Eventi ripetuti"
|
959 |
|
960 |
-
#: my-calendar-event-manager.php:
|
961 |
msgid "Repeats for"
|
962 |
msgstr "Ripete per"
|
963 |
|
964 |
-
#: my-calendar-event-manager.php:
|
965 |
msgid "Units"
|
966 |
msgstr "Unità"
|
967 |
|
968 |
-
#: my-calendar-core.php:
|
969 |
msgid "Does not recur"
|
970 |
msgstr "Non si ripresenta"
|
971 |
|
972 |
-
#: my-calendar-core.php:
|
973 |
-
#: my-calendar-group-manager.php:772 my-calendar-templates.php:
|
974 |
msgid "Daily"
|
975 |
msgstr "Giornaliero"
|
976 |
|
977 |
-
#: my-calendar-core.php:
|
978 |
msgid "Daily, weekdays only"
|
979 |
msgstr "Giornaliero, solo nei feriali"
|
980 |
|
981 |
-
#: my-calendar-core.php:
|
982 |
-
#: my-calendar-group-manager.php:774 my-calendar-templates.php:
|
983 |
msgid "Weekly"
|
984 |
msgstr "Settimanale"
|
985 |
|
986 |
-
#: my-calendar-core.php:
|
987 |
msgid "Bi-weekly"
|
988 |
msgstr "Bi-settimanale"
|
989 |
|
990 |
-
#: my-calendar-core.php:
|
991 |
msgid "Date of Month (e.g., the 24th of each month)"
|
992 |
msgstr "Data del Mese (ad es., il 24 di ogni mese)"
|
993 |
|
994 |
-
#: my-calendar-core.php:
|
995 |
msgid "Day of Month (e.g., the 3rd Monday of each month)"
|
996 |
msgstr "Giorno del Mese (ad es., il 3° Lunedì di ogni mese)"
|
997 |
|
998 |
-
#: my-calendar-core.php:
|
999 |
msgid "Annually"
|
1000 |
msgstr "Annuale"
|
1001 |
|
1002 |
-
#: my-calendar-event-manager.php:
|
1003 |
msgid "Your entry is the number of events after the first occurrence of the event: a recurrence of <em>2</em> means the event will happen three times."
|
1004 |
msgstr "Devi inserire il numero di eventi dopo la prima occorrenza: inserire <em>2</em> significa che l'evento accadrà tre volte."
|
1005 |
|
1006 |
-
#: my-calendar-event-manager.php:
|
1007 |
msgid "Event Registration Settings"
|
1008 |
msgstr "Opzioni registrazione evento"
|
1009 |
|
1010 |
-
#: my-calendar-event-manager.php:
|
1011 |
msgid "Event Registration Status"
|
1012 |
msgstr "Stato di Registrazione Evento"
|
1013 |
|
1014 |
-
#: my-calendar-event-manager.php:
|
1015 |
msgid "My Calendar does not manage event registrations. Use this for information only."
|
1016 |
msgstr "My Calendar non gestisce le registrazioni degli eventi. Utilizza questo solo per titolo informativo."
|
1017 |
|
1018 |
-
#: my-calendar-event-manager.php:
|
1019 |
msgid "Open"
|
1020 |
msgstr "Aperto"
|
1021 |
|
1022 |
-
#: my-calendar-event-manager.php:
|
1023 |
msgid "Closed"
|
1024 |
msgstr "Chiuso"
|
1025 |
|
1026 |
-
#: my-calendar-event-manager.php:
|
1027 |
msgid "Does not apply"
|
1028 |
msgstr "Non si applica"
|
1029 |
|
1030 |
-
#: my-calendar-event-manager.php:
|
1031 |
msgid "If this event recurs, it can only be registered for as a complete series."
|
1032 |
msgstr "Se questo evento si ripete, può solo essere registrato per una serie completa."
|
1033 |
|
1034 |
-
#: my-calendar-event-manager.php:
|
1035 |
#: my-calendar-group-manager.php:413 my-calendar-group-manager.php:416
|
1036 |
#: my-calendar-locations.php:129
|
1037 |
msgid "Event Location"
|
1038 |
msgstr "Località Evento"
|
1039 |
|
1040 |
-
#: my-calendar-event-manager.php:
|
1041 |
msgid "Choose a preset location:"
|
1042 |
msgstr "Scegliere una località predefinita:"
|
1043 |
|
1044 |
-
#: my-calendar-event-manager.php:
|
1045 |
msgid "Add recurring locations for later use."
|
1046 |
msgstr "Aggiungi località ricorrenti per un uso successivo."
|
1047 |
|
1048 |
-
#: my-calendar-event-manager.php:
|
1049 |
#: my-calendar-locations.php:131
|
1050 |
msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
|
1051 |
msgstr "Tutti i campi sono opzionali: <em>informazioni insufficienti possono causare una mappa inesatta</em>."
|
1052 |
|
1053 |
-
#: my-calendar-event-manager.php:
|
1054 |
#: my-calendar-locations.php:134
|
1055 |
msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
|
1056 |
msgstr "Nome della Località (es. <em>Joe's Bar and Grill</em>)"
|
1057 |
|
1058 |
-
#: my-calendar-event-manager.php:
|
1059 |
#: my-calendar-locations.php:143
|
1060 |
msgid "Street Address"
|
1061 |
msgstr "Indirizzo"
|
1062 |
|
1063 |
-
#: my-calendar-event-manager.php:
|
1064 |
#: my-calendar-locations.php:146
|
1065 |
msgid "Street Address (2)"
|
1066 |
msgstr "Indirizzo (2)"
|
1067 |
|
1068 |
-
#: my-calendar-event-manager.php:
|
1069 |
#: my-calendar-locations.php:149
|
1070 |
msgid "Phone"
|
1071 |
msgstr "Telefono"
|
1072 |
|
1073 |
-
#: my-calendar-event-manager.php:
|
1074 |
-
#: my-calendar-locations.php:159 my-calendar-settings.php:
|
1075 |
msgid "State/Province"
|
1076 |
msgstr "Regione/Provincia"
|
1077 |
|
1078 |
-
#: my-calendar-event-manager.php:
|
1079 |
#: my-calendar-locations.php:191
|
1080 |
msgid "Initial Zoom"
|
1081 |
msgstr "Zoom Iniziale"
|
1082 |
|
1083 |
-
#: my-calendar-event-manager.php:
|
1084 |
#: my-calendar-locations.php:193
|
1085 |
msgid "Neighborhood"
|
1086 |
msgstr "Quartiere"
|
1087 |
|
1088 |
-
#: my-calendar-event-manager.php:
|
1089 |
#: my-calendar-locations.php:194
|
1090 |
msgid "Small City"
|
1091 |
msgstr "Piccola città"
|
1092 |
|
1093 |
-
#: my-calendar-event-manager.php:
|
1094 |
#: my-calendar-locations.php:195
|
1095 |
msgid "Large City"
|
1096 |
msgstr "Città grande"
|
1097 |
|
1098 |
-
#: my-calendar-event-manager.php:
|
1099 |
#: my-calendar-locations.php:196
|
1100 |
msgid "Greater Metro Area"
|
1101 |
msgstr "Area metropolitana"
|
1102 |
|
1103 |
-
#: my-calendar-event-manager.php:
|
1104 |
msgid "Location URL"
|
1105 |
msgstr "URL della località"
|
1106 |
|
1107 |
-
#: my-calendar-event-manager.php:
|
1108 |
#: my-calendar-locations.php:205
|
1109 |
msgid "GPS Coordinates (optional)"
|
1110 |
msgstr "Coordinate GPS (opzionale)"
|
1111 |
|
1112 |
-
#: my-calendar-event-manager.php:
|
1113 |
msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to provide your map link."
|
1114 |
msgstr "Se si forniscono le coordinate GPS per la posizione, essi saranno utilizzati al posto di qualsiasi altra informazioni di indirizzo per fornire il tuo link mappa."
|
1115 |
|
1116 |
-
#: my-calendar-event-manager.php:
|
1117 |
#: my-calendar-locations.php:210
|
1118 |
msgid "Latitude"
|
1119 |
msgstr "Latitudine"
|
1120 |
|
1121 |
-
#: my-calendar-event-manager.php:
|
1122 |
#: my-calendar-locations.php:211
|
1123 |
msgid "Longitude"
|
1124 |
msgstr "Longitudine"
|
1125 |
|
1126 |
-
#: my-calendar-event-manager.php:
|
1127 |
msgid "Special scheduling options"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: my-calendar-event-manager.php:
|
1131 |
msgid "Special Options"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: my-calendar-event-manager.php:
|
1135 |
msgid "Cancel this event if it occurs on a date with an event in the Holidays category"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: my-calendar-event-manager.php:
|
1139 |
msgid "If this event recurs, and falls on the 5th week of the month in a month with only four weeks, move it back one week."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: my-calendar-event-manager.php:
|
1143 |
-
#: my-calendar-settings.php:
|
1144 |
msgid "Manage Events"
|
1145 |
msgstr "Gestione Eventi"
|
1146 |
|
1147 |
-
#: my-calendar-event-manager.php:
|
1148 |
msgid "Published"
|
1149 |
msgstr "Pubblicato"
|
1150 |
|
1151 |
-
#: my-calendar-event-manager.php:
|
1152 |
msgid "Reserved"
|
1153 |
msgstr "Riservato"
|
1154 |
|
1155 |
-
#: my-calendar-event-manager.php:
|
1156 |
msgid "All"
|
1157 |
msgstr "Tutti"
|
1158 |
|
1159 |
-
#: my-calendar-event-manager.php:
|
1160 |
-
#: my-calendar-settings.php:
|
1161 |
-
#: my-calendar-widgets.php:
|
1162 |
msgid "Title"
|
1163 |
msgstr "Titolo"
|
1164 |
|
1165 |
-
#: my-calendar-event-manager.php:
|
1166 |
msgid "Where"
|
1167 |
msgstr "Dove"
|
1168 |
|
1169 |
-
#: my-calendar-event-manager.php:
|
1170 |
-
#: my-calendar-settings.php:
|
1171 |
msgid "Description"
|
1172 |
msgstr "Descrizione"
|
1173 |
|
1174 |
-
#: my-calendar-event-manager.php:
|
1175 |
msgid "Starts"
|
1176 |
msgstr "Inizia"
|
1177 |
|
1178 |
-
#: my-calendar-event-manager.php:
|
1179 |
msgid "Recurs"
|
1180 |
msgstr "Ricorrenza"
|
1181 |
|
1182 |
-
#: my-calendar-event-manager.php:
|
1183 |
-
#: my-calendar-settings.php:
|
1184 |
msgid "Author"
|
1185 |
msgstr "Autore"
|
1186 |
|
1187 |
-
#: my-calendar-event-manager.php:
|
1188 |
-
#: my-calendar-output.php:
|
1189 |
-
#: my-calendar-templates.php:
|
1190 |
msgid "Category"
|
1191 |
msgstr "Categoria"
|
1192 |
|
1193 |
-
#: my-calendar-event-manager.php:
|
1194 |
msgid "Edit / Delete"
|
1195 |
msgstr "Modifica/Cancella"
|
1196 |
|
1197 |
-
#: my-calendar-event-manager.php:
|
1198 |
msgid "Never"
|
1199 |
msgstr "Mai"
|
1200 |
|
1201 |
-
#: my-calendar-event-manager.php:
|
1202 |
msgid "Weekdays"
|
1203 |
msgstr "Giorni feriali"
|
1204 |
|
1205 |
-
#: my-calendar-event-manager.php:
|
1206 |
msgid "Bi-Weekly"
|
1207 |
msgstr "Bi-Settimanale"
|
1208 |
|
1209 |
-
#: my-calendar-event-manager.php:
|
1210 |
msgid "Monthly (by date)"
|
1211 |
msgstr "Mensile (per data)"
|
1212 |
|
1213 |
-
#: my-calendar-event-manager.php:
|
1214 |
msgid "Monthly (by day)"
|
1215 |
msgstr "Mensile (per giorno)"
|
1216 |
|
1217 |
-
#: my-calendar-event-manager.php:
|
1218 |
msgid "Yearly"
|
1219 |
msgstr "Annuale"
|
1220 |
|
@@ -1222,73 +1407,65 @@ msgstr "Annuale"
|
|
1222 |
msgid "Forever"
|
1223 |
msgstr "Per sempre"
|
1224 |
|
1225 |
-
#: my-calendar-event-manager.php:
|
1226 |
#: my-calendar-group-manager.php:782
|
1227 |
msgid "%d Times"
|
1228 |
msgstr "%d volte"
|
1229 |
|
1230 |
-
#: my-calendar-event-manager.php:
|
1231 |
msgid "Copy"
|
1232 |
msgstr "Copia"
|
1233 |
|
1234 |
-
#: my-calendar-event-manager.php:
|
1235 |
-
#: my-calendar-output.php:
|
1236 |
msgid "Edit Group"
|
1237 |
msgstr "Modifica gruppo"
|
1238 |
|
1239 |
-
#: my-calendar-event-manager.php:
|
1240 |
msgid "Not editable."
|
1241 |
msgstr "Non modificabili."
|
1242 |
|
1243 |
-
#: my-calendar-event-manager.php:
|
1244 |
msgid "Reject"
|
1245 |
msgstr "Respinto"
|
1246 |
|
1247 |
-
#: my-calendar-event-manager.php:
|
1248 |
msgid "Approve"
|
1249 |
msgstr "Approvare"
|
1250 |
|
1251 |
-
#: my-calendar-event-manager.php:
|
1252 |
msgid "Approved"
|
1253 |
msgstr "Approvato"
|
1254 |
|
1255 |
-
#: my-calendar-event-manager.php:
|
1256 |
msgid "Rejected"
|
1257 |
msgstr "Rifiutato"
|
1258 |
|
1259 |
-
#: my-calendar-event-manager.php:
|
1260 |
msgid "Awaiting Approval"
|
1261 |
msgstr "In attesa di approvazione"
|
1262 |
|
1263 |
-
#: my-calendar-event-manager.php:
|
1264 |
msgid "Delete checked events"
|
1265 |
msgstr "Cancella gli eventi selezionati"
|
1266 |
|
1267 |
-
#: my-calendar-event-manager.php:
|
1268 |
msgid "There are no events in the database!"
|
1269 |
msgstr "Non ci sono eventi nel database!"
|
1270 |
|
1271 |
-
#: my-calendar-event-manager.php:
|
1272 |
msgid "Your event end date must be either after or the same as your event begin date"
|
1273 |
msgstr "La data di fine evento deve essere uguale o successiva alla data di inizio"
|
1274 |
|
1275 |
-
#: my-calendar-event-manager.php:
|
1276 |
msgid "Your date formatting is correct but one or more of your dates is invalid. Check for number of days in month and leap year related errors."
|
1277 |
msgstr "La formattazione della data è corretta, ma uno o più dei tuoi dati non è valido. Controllare il numero di giorni nel mese e anno bisestile errori correlati."
|
1278 |
|
1279 |
-
#: my-calendar-event-manager.php:
|
1280 |
-
msgid "The time field must either be blank or be entered in the format hh:mm"
|
1281 |
-
msgstr "Il campo ora deve essere vuoto o scritto nel formato hh: mm"
|
1282 |
-
|
1283 |
-
#: my-calendar-event-manager.php:1266
|
1284 |
-
msgid "The end time field must either be blank or be entered in the format hh:mm"
|
1285 |
-
msgstr "Il campo ora di fine deve essere vuoto o essere iscritti nel formato hh: mm"
|
1286 |
-
|
1287 |
-
#: my-calendar-event-manager.php:1282 my-calendar-group-manager.php:585
|
1288 |
msgid "The event title must be between 1 and 255 characters in length."
|
1289 |
msgstr "Il titolo dell'evento deve essere compreso tra 1 e 255 caratteri."
|
1290 |
|
1291 |
-
#: my-calendar-event-manager.php:
|
1292 |
msgid "The repetition value must be 0 unless a type of recurrence is selected."
|
1293 |
msgstr "Il valore di ripetizione deve essere 0 a meno che un tipo di ricorrenza è selezionat"
|
1294 |
|
@@ -1314,7 +1491,7 @@ msgid "You must provide an event group id in order to edit it"
|
|
1314 |
msgstr "Devi indicare l'ID di un gruppo eventi per modificarlo"
|
1315 |
|
1316 |
#: my-calendar-group-manager.php:113 my-calendar-group-manager.php:292
|
1317 |
-
#: my-calendar.php:
|
1318 |
msgid "Manage Event Groups"
|
1319 |
msgstr "Gestisci i gruppi di eventi"
|
1320 |
|
@@ -1378,385 +1555,381 @@ msgstr ""
|
|
1378 |
msgid "Ungrouped"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: my-calendar-help.php:
|
1382 |
msgid "How to use My Calendar"
|
1383 |
msgstr "Come utilizzare il mio calendario"
|
1384 |
|
1385 |
-
#: my-calendar-help.php:
|
1386 |
msgid "Shortcode Syntax"
|
1387 |
msgstr "Sintassi Shortcode"
|
1388 |
|
1389 |
-
#: my-calendar-help.php:
|
1390 |
msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
|
1391 |
msgstr "Questi codici brevi possono essere usati nei post, pagine o nei widget di testo."
|
1392 |
|
1393 |
-
#: my-calendar-help.php:
|
1394 |
msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
|
1395 |
msgstr "Abbreviazione calendario principale (elenco o griglia, vista per settimana o per mese)"
|
1396 |
|
1397 |
-
#: my-calendar-help.php:
|
1398 |
msgid "This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format."
|
1399 |
msgstr "Questo shortcode di base mostrerà il calendario su un post o pagina, incluse tutte le categorie e la chiave di categoria, in un formato tradizionale mese per mese."
|
1400 |
|
1401 |
-
#: my-calendar-help.php:
|
1402 |
-
msgid "The shortcode supports nine attributes:"
|
1403 |
-
msgstr ""
|
1404 |
-
|
1405 |
-
#: my-calendar-help.php:28
|
1406 |
msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: my-calendar-help.php:
|
1410 |
msgid "Either \"list\" or \"mini\" to show the list view or the mini calendar; exclude or any other value to show the main grid calendar."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: my-calendar-help.php:
|
1414 |
msgid "Set as \"no\" to hide the category key."
|
1415 |
msgstr "Indica come \"no\" per nascondere la chiave di categoria"
|
1416 |
|
1417 |
-
#: my-calendar-help.php:
|
1418 |
msgid "Set as \"no\" to hide the month-by-month navigation."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: my-calendar-help.php:
|
1422 |
msgid "Set to \"no\" or \"yes\" to override the default settings."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: my-calendar-help.php:
|
1426 |
msgid "Set as \"yes\" to show a link to switch between list and grid formats."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: my-calendar-help.php:
|
1430 |
msgid "Set to \"week\" to show a one week view or to \"day\" to show a single day view. Any other value will show a month view. (Day view shows as a list regardless of format setting.)"
|
1431 |
msgstr "Scegli \"settimana\" se vuoi la vista settimanale o \"giorno\" per la vista a giornata singola. Ogni altro valore mostrerà la vista per mese. (La vista a giornata singola sarà un elenco, indipendentemente dalle opzioni.)"
|
1432 |
|
1433 |
-
#: my-calendar-help.php:
|
1434 |
msgid "The type of location data to restrict by."
|
1435 |
msgstr "Il tipo di dati della località in base a cui restringere la scelta."
|
1436 |
|
1437 |
-
#: my-calendar-help.php:
|
1438 |
msgid "The specific location information to filter to."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: my-calendar-help.php:
|
1442 |
msgid "The main My Calendar short code can be generated from a button in your post and page editor. The mini calendar can also be accessed and configured as a widget."
|
1443 |
msgstr "Il shortcode principale di My Calendar può essere creato da un pulsante nelle schermate di modifica dell'articolo o della pagina. Si può anche avere accesso al mini calendario ed utilizzarlo come widget. "
|
1444 |
|
1445 |
-
#: my-calendar-help.php:
|
1446 |
msgid "Additional Calendar Views (Upcoming events, today's events)"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: my-calendar-help.php:
|
1450 |
msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: my-calendar-help.php:
|
1454 |
msgid "Supplement Features (Locations filter, Categories filter)"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: my-calendar-help.php:
|
1458 |
msgid "This shortcode produces a list of event locations, either as a list of links or as a select dropdown form. The <code>show</code> attribute can either be <code>list</code> or <code>form</code>, <code>type</code> is either <code>saved</code> (to show items from your stored locations), or <code>custom</code> (to show the options configured in your user settings). <code>datatype</code> must be the type of data your limits are choosing from: <code>name</code> (business name), <code>city</code>, <code>state</code>, <code>country</code>, <code>zip</code> (postal code), or <code>region</code>."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: my-calendar-help.php:
|
1462 |
msgid "If you want to display a list of locations in your database, use this shortcode. The <code>datatype</code> is the type of data displayed; all lists will include a link to the map of that location. In addition to basic location information as in the above shortcode, you can also use \"hcard\" to display all available location information."
|
1463 |
msgstr "Se vuoi mostrare una lista di località nel tuo database, usa questo shortcode. Il <code>datatype</code> è il tipo di data mostrato; tutte le liste includeranno un collegamento alla mappa per quella località. In aggiunta all'informazione di base della località, data dallo shortcode, puoi anche usare \"hcard\" per mostrare tutte le informazioni disponibili sulla località."
|
1464 |
|
1465 |
-
#: my-calendar-help.php:
|
1466 |
msgid "This shortcode produces a list of event categories, either as a list of links or as a select dropdown form. The <code>show</code> attribute can either be <code>list</code> or <code>form</code>."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: my-calendar-help.php:
|
1470 |
msgid "Category Icons"
|
1471 |
msgstr "Icone categoria"
|
1472 |
|
1473 |
-
#: my-calendar-help.php:
|
1474 |
msgid "My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc."
|
1475 |
msgstr "My Calendar è progettato per gestire più calendari. La base di questi calendari sono le categorie, è possibile impostare facilmente una pagina di calendario che comprende tutte le categorie, oppure si può dedicare pagine separate per i calendari di ogni categoria. Per un esempio, questo potrebbe essere utile per l'utente a gestire i calendari tour per le fasce multiple, calendari di eventi per una varietà di località, ecc."
|
1476 |
|
1477 |
-
#: my-calendar-help.php:
|
1478 |
msgid "The pre-installed category icons may not be especially useful for your needs or design. I'm assuming that you're going to upload your own icons -- all you need to do is upload them to the plugin's icons folder, and they'll be available for immediate use, or place them in a folder at \"my-calendar-custom\" to avoid having them overwritten by upgrades."
|
1479 |
msgstr "Le icone di categoria pre-installate possono non essere particolarmente utile per le tue esigenze o il design. Sto assumendo che stai andando a caricare le proprie icone - tutto quello che devi fare è caricarle nella cartella del plugin icone, e saranno disponibili per l'uso immediato, o metterli in una cartella a \"my-calendar-custom\" per evitare che vengano sovrascritti dagli aggiornamenti."
|
1480 |
|
1481 |
-
#: my-calendar-help.php:
|
1482 |
msgid "Your icons folder is:"
|
1483 |
msgstr "La cartella delle icone è:"
|
1484 |
|
1485 |
-
#: my-calendar-help.php:
|
1486 |
msgid "You can alternately place icons in:"
|
1487 |
msgstr "È possibile alternativamente mettere le icone in:"
|
1488 |
|
1489 |
-
#: my-calendar-help.php:
|
1490 |
msgid "Custom Styles"
|
1491 |
msgstr "Stili personalizzati"
|
1492 |
|
1493 |
-
#: my-calendar-help.php:
|
1494 |
msgid "My Calendar comes with four basic stylesheets. My Calendar will retain changes to these basic stylesheets on upgrade, but if you want to add an entirely new stylesheet, you may wish to store it in the My Calendar custom styles directory."
|
1495 |
msgstr "My Calendar è dotato di quattro fogli di stile di base. My Calendar manterrà le modifiche a questi fogli di stile di base con l'aggiornamento, ma se si desidera aggiungere un foglio di stile del tutto nuovo, si potrebbe desiderare di memorizzarlo nella cartella stili di My Calendar."
|
1496 |
|
1497 |
-
#: my-calendar-help.php:
|
1498 |
msgid "Your stylesheet directory is"
|
1499 |
msgstr "La tua cartella del foglio di stile è"
|
1500 |
|
1501 |
-
#: my-calendar-help.php:
|
1502 |
msgid "Your custom stylesheets directory is"
|
1503 |
msgstr "La tua cartella personalizzata fogli di stile è"
|
1504 |
|
1505 |
-
#: my-calendar-help.php:
|
1506 |
msgid "You can also add custom styles to your theme directory to provide print styles, mobile styles, and tablet styles. <code>mc-print.css</code>, <code>mc-mobile.css</code>, and <code>mc-tablet.css</code>."
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: my-calendar-help.php:
|
1510 |
msgid "Widget Templating"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: my-calendar-help.php:
|
1514 |
msgid "All template tags support two attributes: before=\"value\" and after=\"value\". The values of the attributes will be placed before and after the output value. These attribute values <strong>must</strong> be wrapped in double quotes."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: my-calendar-help.php:
|
1518 |
msgid "Date/Time template tags support the \"format\" attribute: format=\"M, Y\", where the value is a PHP formatted date string. Only <code>dtstart</code> and <code>dtend</code> include the full date/time information for formatting."
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: my-calendar-help.php:
|
1522 |
msgid "Example:"
|
1523 |
msgstr "Esempio:"
|
1524 |
|
1525 |
-
#: my-calendar-help.php:
|
1526 |
msgid "Event Template Tags"
|
1527 |
msgstr "Tag dei modelli evento"
|
1528 |
|
1529 |
-
#: my-calendar-help.php:
|
1530 |
msgid "Displays the title of the event."
|
1531 |
msgstr "Visualizza il titolo dell'evento."
|
1532 |
|
1533 |
-
#: my-calendar-help.php:
|
1534 |
msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
|
1535 |
msgstr "Visualizza il titolo dell'evento come un link se un URL è presente, o il titolo solo se nessun URL è disponibile."
|
1536 |
|
1537 |
-
#: my-calendar-help.php:
|
1538 |
msgid "Displays the start time for the event."
|
1539 |
msgstr "Visualizzare l'ora di inizio dell'evento."
|
1540 |
|
1541 |
-
#: my-calendar-help.php:
|
1542 |
msgid "Displays the start time for the event adjusted to the current user's time zone settings. Returns <code>{time}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: my-calendar-help.php:
|
1546 |
msgid "Displays the end time for the event adjusted to the current user's time zone settings. Returns <code>{endtime}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: my-calendar-help.php:
|
1550 |
msgid "Displays the date on which the event begins."
|
1551 |
msgstr "Visualizza la data in cui l'evento ha inizio."
|
1552 |
|
1553 |
-
#: my-calendar-help.php:
|
1554 |
msgid "Displays the date on which the event ends."
|
1555 |
msgstr "Visualizza la data in cui l'evento finisce."
|
1556 |
|
1557 |
-
#: my-calendar-help.php:
|
1558 |
msgid "Displays the time at which the event ends."
|
1559 |
msgstr "Visualizza l'ora in cui l'evento finisce."
|
1560 |
|
1561 |
-
#: my-calendar-help.php:
|
1562 |
msgid "Displays the beginning date to the end date for events. Does not show end date if same as start date."
|
1563 |
msgstr "Mostra la data di inizio fino alla data finale per gli eventi. Non mostra la data finale se è la stessa di quella iniziale."
|
1564 |
|
1565 |
-
#: my-calendar-help.php:
|
1566 |
msgid "Timestamp for beginning of event."
|
1567 |
msgstr "Marca temporale per l'inizio dell'evento"
|
1568 |
|
1569 |
-
#: my-calendar-help.php:
|
1570 |
msgid "Timestamp for end of event."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: my-calendar-help.php:
|
1574 |
msgid "For multi-day events displays an unordered list of dates and times for events in this group. Otherwise, beginning date/time."
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: my-calendar-help.php:
|
1578 |
msgid "Displays the WordPress author who posted the event."
|
1579 |
msgstr "Visualizza l'autore WordPress che ha pubblicato l'event"
|
1580 |
|
1581 |
-
#: my-calendar-help.php:
|
1582 |
msgid "Displays the name of the person assigned as host for the event."
|
1583 |
msgstr "Visualizza il nome della persona assegnata all'evento."
|
1584 |
|
1585 |
-
#: my-calendar-help.php:
|
1586 |
msgid "Displays the email address of the person assigned as host for the event."
|
1587 |
msgstr "Mostra l'indirizzo mail della persona individuata come ospite per l'evento."
|
1588 |
|
1589 |
-
#: my-calendar-help.php:
|
1590 |
msgid "Displays the short version of the event description."
|
1591 |
msgstr "Visualizza la versione breve della descrizione dell'evento."
|
1592 |
|
1593 |
-
#: my-calendar-help.php:
|
1594 |
msgid "Displays short description without converting paragraphs."
|
1595 |
msgstr "Mostra la descrizione breve senza convertire i paragrafi."
|
1596 |
|
1597 |
-
#: my-calendar-help.php:
|
1598 |
msgid "Displays the description of the event."
|
1599 |
msgstr "visualizzare la descrizione dell'evento."
|
1600 |
|
1601 |
-
#: my-calendar-help.php:
|
1602 |
msgid "Displays description without converting paragraphs."
|
1603 |
msgstr "Mostra la descrizione senza convertire i paragrafi."
|
1604 |
|
1605 |
-
#: my-calendar-help.php:
|
1606 |
msgid "Image associated with the event."
|
1607 |
msgstr "Immagine associata all'evento."
|
1608 |
|
1609 |
-
#: my-calendar-help.php:
|
1610 |
msgid "Displays the URL provided for the event."
|
1611 |
msgstr "Visualizzare l'URL fornito per l'evento."
|
1612 |
|
1613 |
-
#: my-calendar-help.php:
|
1614 |
msgid "Produces the URL to download an iCal formatted record for the event."
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: my-calendar-help.php:
|
1618 |
msgid "Produces a hyperlink to download an iCal formatted record for the event."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: my-calendar-help.php:
|
1622 |
msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: my-calendar-help.php:
|
1626 |
msgid "Shows the number of repetitions of the event."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: my-calendar-help.php:
|
1630 |
msgid "Provides a link to an auto-generated page containing all information on the given event."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: my-calendar-help.php:
|
1634 |
msgid "Requires that the site URL has been provided on the Settings page"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: my-calendar-help.php:
|
1638 |
msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
|
1639 |
msgstr "Visualizza testo che indica se la registrazione per l'evento è aperto o chiuso; nulla viene visualizzato se tale scelta è stata selezionata nel evento."
|
1640 |
|
1641 |
-
#: my-calendar-help.php:
|
1642 |
msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
|
1643 |
msgstr "Visualizza lo stato corrente dell'evento: o \"Pubblico\" o \"Riservato\" - primaria utilizzata in modelli di posta elettronica."
|
1644 |
|
1645 |
-
#: my-calendar-help.php:
|
1646 |
msgid "Location Template Tags"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: my-calendar-help.php:
|
1650 |
msgid "Displays the name of the location of the event."
|
1651 |
msgstr "Visualizza il nome della località dell'evento."
|
1652 |
|
1653 |
-
#: my-calendar-help.php:
|
1654 |
msgid "Displays the first line of the site address."
|
1655 |
msgstr "Visualizza la prima riga dell'indirizzo del sito."
|
1656 |
|
1657 |
-
#: my-calendar-help.php:
|
1658 |
msgid "Displays the second line of the site address."
|
1659 |
msgstr "Visualizza la seconda riga dell'indirizzo del sito."
|
1660 |
|
1661 |
-
#: my-calendar-help.php:
|
1662 |
msgid "Displays the city for the location."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: my-calendar-help.php:
|
1666 |
msgid "Displays the state for the location."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: my-calendar-help.php:
|
1670 |
msgid "Displays the postcode for the location."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: my-calendar-help.php:
|
1674 |
msgid "Shows the custom region entered for the location."
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: my-calendar-help.php:
|
1678 |
msgid "Displays the country for the event location."
|
1679 |
msgstr "Visualizza il paese per la località dell'evento."
|
1680 |
|
1681 |
-
#: my-calendar-help.php:
|
1682 |
msgid "Output the URL for the location link."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: my-calendar-help.php:
|
1686 |
msgid "Output a hyperlink to the location's listed link with default link text."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: my-calendar-help.php:
|
1690 |
msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
1691 |
msgstr "Visualizza l'indirizzo dell'evento in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> formato."
|
1692 |
|
1693 |
-
#: my-calendar-help.php:
|
1694 |
msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
|
1695 |
msgstr "Visualizza un collegamento a una mappa di Google dell'evento, se le informazioni sull'indirizzo disponibile sono sufficiente. In caso contrario, sarà vuoto."
|
1696 |
|
1697 |
-
#: my-calendar-help.php:
|
1698 |
msgid "Category Template Tags"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: my-calendar-help.php:
|
1702 |
msgid "Displays the name of the category the event is in."
|
1703 |
msgstr "Visualizza il nome della categoria dell'evento."
|
1704 |
|
1705 |
-
#: my-calendar-help.php:
|
1706 |
msgid "Produces the address of the current event's category icon."
|
1707 |
msgstr "Produce l'indirizzo dell'icona della categoria dell'evento corrente."
|
1708 |
|
1709 |
-
#: my-calendar-help.php:
|
1710 |
msgid "Produces the HTML for the current event's category icon."
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: my-calendar-help.php:
|
1714 |
msgid "Produces the hex code for the current event's category color."
|
1715 |
msgstr "Produce il codice esadecimale (hex) per il colore categoria dell'evento corrente."
|
1716 |
|
1717 |
-
#: my-calendar-help.php:
|
1718 |
msgid ""
|
1719 |
"Displays the ID forr\n"
|
1720 |
"\t\t the category the event is in."
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: my-calendar-help.php:
|
1724 |
msgid "Special use Template Tags"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: my-calendar-help.php:
|
1728 |
msgid "A unique ID for the current instance of an event."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: my-calendar-help.php:
|
1732 |
msgid "The ID for the event record associated with the current instance of an event."
|
1733 |
msgstr "L'ID per l'evento associato con l'istanza corrente di un evento."
|
1734 |
|
1735 |
-
#: my-calendar-help.php:
|
1736 |
msgid "Get Plug-in Support"
|
1737 |
msgstr "Ottieni supporto per il plug-in"
|
1738 |
|
1739 |
-
#: my-calendar-help.php:
|
1740 |
msgid "My Calendar support requests can only be sent by administrators."
|
1741 |
msgstr "Le richieste di assistenza a My Calendar possono essere inviate solo da amministratori."
|
1742 |
|
1743 |
-
#: my-calendar-help.php:
|
1744 |
msgid "Helpful Information"
|
1745 |
msgstr "Informazioni utili"
|
1746 |
|
1747 |
-
#: my-calendar-help.php:
|
1748 |
msgid "<strong>Uninstalling the plugin</strong>: Although the WordPress standard and expectation is for plug-ins to delete any custom database tables when they're uninstalled, My Calendar <em>does not do this</em>. This was a conscious decision on my part -- the data stored in your My Calendar tables is yours; with the sole exception of the \"General\" category, you added every piece of it yourself. As such, I feel it would be a major disservice to you to delete this information if you uninstall the plug-in. As a result, if you wish to get rid of the plug-in completely, you'll need to remove those tables yourself. All your My Calendar settings will be deleted, however."
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: my-calendar-help.php:
|
1752 |
msgid "<strong>Donations</strong>: I appreciate anything you can give. $2 may not seem like much, but it can really add up when thousands of people are using the software. Please note that I am not a non-profit organization, and your gifts are not tax deductible. Thank you!"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: my-calendar-install.php:
|
1756 |
msgid "My Calendar Default Timezone"
|
1757 |
msgstr "My Calendar Fuso Orario Predefinito"
|
1758 |
|
1759 |
-
#: my-calendar-install.php:
|
1760 |
msgid "My Calendar Default Location"
|
1761 |
msgstr "My Calendar Località Predefinita"
|
1762 |
|
@@ -1816,7 +1989,7 @@ msgstr "Aggiungi Località"
|
|
1816 |
msgid "Add a New Location"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: my-calendar-locations.php:228 my-calendar.php:
|
1820 |
msgid "Manage Locations"
|
1821 |
msgstr "Gestione Località"
|
1822 |
|
@@ -1832,1016 +2005,995 @@ msgstr "Non ci sono ancora Località nel database!"
|
|
1832 |
msgid "Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records."
|
1833 |
msgstr "Da notare: la modifica o l'eliminazione di località memorizzate per il riutilizzo, non avrà alcun effetto su qualunque evento precedentemente programmato in quella località. Il database località esiste solo come un metodo di stenografia per inserire i percorsi utilizzati di frequente nel record dell'evento."
|
1834 |
|
1835 |
-
#: my-calendar-output.php:
|
1836 |
msgid "Close"
|
1837 |
msgstr "Chiuso"
|
1838 |
|
1839 |
-
#: my-calendar-output.php:
|
1840 |
msgid "(%s in your time zone)"
|
1841 |
msgstr "(%s nel tuo fuso orario)"
|
1842 |
|
1843 |
-
#: my-calendar-output.php:
|
1844 |
msgid "Not Applicable"
|
1845 |
msgstr "Non applicabile"
|
1846 |
|
1847 |
-
#: my-calendar-output.php:
|
1848 |
msgid "Posted by"
|
1849 |
msgstr "Postato da"
|
1850 |
|
1851 |
-
#: my-calendar-output.php:
|
1852 |
msgid "Details about"
|
1853 |
msgstr "Dettagli su"
|
1854 |
|
1855 |
-
#: my-calendar-output.php:
|
1856 |
msgid "iCal"
|
1857 |
msgstr "iCal"
|
1858 |
|
1859 |
-
#: my-calendar-output.php:
|
1860 |
msgid "This class is part of a series. You must register for the first event in this series to attend."
|
1861 |
msgstr "Questa classe è parte di una serie. È necessario registrarsi per il primo evento di questa serie per partecipare."
|
1862 |
|
1863 |
-
#: my-calendar-output.php:
|
1864 |
msgid "View full calendar"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: my-calendar-output.php:
|
1868 |
msgid "Edit This Date"
|
1869 |
msgstr "Modifica questa data"
|
1870 |
|
1871 |
-
#: my-calendar-output.php:
|
1872 |
msgid "Edit All"
|
1873 |
msgstr "Modifica tutto"
|
1874 |
|
1875 |
-
#: my-calendar-output.php:
|
1876 |
msgid "Delete This Date"
|
1877 |
msgstr "Cancella questa data"
|
1878 |
|
1879 |
-
#: my-calendar-output.php:
|
1880 |
msgid "Delete All"
|
1881 |
msgstr "Cancella tutto"
|
1882 |
|
1883 |
-
#: my-calendar-output.php:
|
1884 |
msgid "Year"
|
1885 |
msgstr "Anno"
|
1886 |
|
1887 |
-
#: my-calendar-output.php:
|
1888 |
msgid "Go"
|
1889 |
msgstr "Vai"
|
1890 |
|
1891 |
-
#: my-calendar-output.php:
|
1892 |
msgid "Calendar: Print View"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: my-calendar-output.php:
|
1896 |
msgid "Return to site"
|
1897 |
msgstr "Ritorna al sito"
|
1898 |
|
1899 |
-
#: my-calendar-output.php:
|
1900 |
msgid "View as Grid"
|
1901 |
msgstr "Visualizza come griglia"
|
1902 |
|
1903 |
-
#: my-calendar-output.php:
|
1904 |
msgid "View as List"
|
1905 |
msgstr "Visualizza come elenco"
|
1906 |
|
1907 |
-
#: my-calendar-output.php:
|
1908 |
msgid "<abbr title=\"Sunday\">Sun</abbr>"
|
1909 |
msgstr "<abbr title=\"Domenica\">Dom</abbr>"
|
1910 |
|
1911 |
-
#: my-calendar-output.php:
|
1912 |
msgid "<abbr title=\"Monday\">Mon</abbr>"
|
1913 |
msgstr "<abbr title=\"Lunedì\">Lun</abbr>"
|
1914 |
|
1915 |
-
#: my-calendar-output.php:
|
1916 |
msgid "<abbr title=\"Tuesday\">Tues</abbr>"
|
1917 |
msgstr "<abbr title=\"Martedì\">Mar</abbr>"
|
1918 |
|
1919 |
-
#: my-calendar-output.php:
|
1920 |
msgid "<abbr title=\"Wednesday\">Wed</abbr>"
|
1921 |
msgstr "<abbr title=\"Mercoledì\">Mer</abbr>"
|
1922 |
|
1923 |
-
#: my-calendar-output.php:
|
1924 |
msgid "<abbr title=\"Thursday\">Thur</abbr>"
|
1925 |
msgstr "<abbr title=\"Giovedì\">Giov</abbr>"
|
1926 |
|
1927 |
-
#: my-calendar-output.php:
|
1928 |
msgid "<abbr title=\"Friday\">Fri</abbr>"
|
1929 |
msgstr "<abbr title=\"Venerdì\">Ven</abbr>"
|
1930 |
|
1931 |
-
#: my-calendar-output.php:
|
1932 |
msgid "<abbr title=\"Saturday\">Sat</abbr>"
|
1933 |
msgstr "<abbr title=\"Sabato\">Sab</abbr>"
|
1934 |
|
1935 |
-
#: my-calendar-output.php:
|
1936 |
msgid "<abbr title=\"Sunday\">S</abbr>"
|
1937 |
msgstr "<abbr title=\"Domenica\">Dom</abbr>"
|
1938 |
|
1939 |
-
#: my-calendar-output.php:
|
1940 |
msgid "<abbr title=\"Monday\">M</abbr>"
|
1941 |
msgstr "<abbr title=\"Lunedì\">Lun</abbr>"
|
1942 |
|
1943 |
-
#: my-calendar-output.php:
|
1944 |
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
1945 |
msgstr "<abbr title=\"Martedì\">Mar</abbr>"
|
1946 |
|
1947 |
-
#: my-calendar-output.php:
|
1948 |
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
1949 |
msgstr "<abbr title=\"Mercoledì\">Mer</abbr>"
|
1950 |
|
1951 |
-
#: my-calendar-output.php:
|
1952 |
msgid "<abbr title=\"Thursday\">T</abbr>"
|
1953 |
msgstr "<abbr title=\"Giovedì\">Giov</abbr>"
|
1954 |
|
1955 |
-
#: my-calendar-output.php:
|
1956 |
msgid "<abbr title=\"Friday\">F</abbr>"
|
1957 |
msgstr "<abbr title=\"Venerdì\">Ven</abbr>"
|
1958 |
|
1959 |
-
#: my-calendar-output.php:
|
1960 |
msgid "<abbr title=\"Saturday\">S</abbr>"
|
1961 |
msgstr "<abbr title=\"Sabato\">Sab</abbr>"
|
1962 |
|
1963 |
-
#: my-calendar-output.php:
|
1964 |
msgid "Print View"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: my-calendar-output.php:
|
1968 |
msgid "No events scheduled for today!"
|
1969 |
msgstr "Nessun evento previsto per oggi!"
|
1970 |
|
1971 |
-
#: my-calendar-output.php:
|
1972 |
msgid "and"
|
1973 |
msgstr "e"
|
1974 |
|
1975 |
-
#: my-calendar-output.php:
|
1976 |
msgid "Events in"
|
1977 |
msgstr "Eventi a"
|
1978 |
|
1979 |
-
#: my-calendar-output.php:
|
1980 |
msgid " and %d other event"
|
1981 |
msgstr "e %d altri eventi"
|
1982 |
|
1983 |
-
#: my-calendar-output.php:
|
1984 |
msgid " and %d other events"
|
1985 |
msgstr " e %d altri eventi"
|
1986 |
|
1987 |
-
#: my-calendar-output.php:
|
1988 |
msgid "There are no events scheduled during this period."
|
1989 |
msgstr "Non ci sono eventi in programma durante questo periodo."
|
1990 |
|
1991 |
-
#: my-calendar-output.php:
|
1992 |
msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: my-calendar-output.php:
|
1996 |
msgid "Category Key"
|
1997 |
msgstr "Chiave Categoria"
|
1998 |
|
1999 |
-
#: my-calendar-output.php:
|
2000 |
msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
2001 |
msgstr "Iscriviti via <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
2002 |
|
2003 |
-
#: my-calendar-output.php:
|
2004 |
msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
|
2005 |
msgstr "Scarica come <abbr title=\"iCal esportazione eventi\">iCal</abbr>"
|
2006 |
|
2007 |
-
#: my-calendar-output.php:
|
2008 |
msgid "Next events »"
|
2009 |
msgstr "Prossimi eventi »"
|
2010 |
|
2011 |
-
#: my-calendar-output.php:
|
2012 |
msgid "Week of "
|
2013 |
msgstr "Settimana di"
|
2014 |
|
2015 |
-
#: my-calendar-output.php:
|
2016 |
msgid "« Previous events"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: my-calendar-output.php:
|
2020 |
msgid "(select to include)"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: my-calendar-output.php:
|
2024 |
msgid "All Categories"
|
2025 |
msgstr "Tutte le categorie"
|
2026 |
|
2027 |
-
#: my-calendar-output.php:
|
2028 |
msgid "Categories"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: my-calendar-output.php:
|
2032 |
msgid "Submit"
|
2033 |
msgstr "Invia"
|
2034 |
|
2035 |
-
#: my-calendar-output.php:
|
2036 |
msgid "Show all"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: my-calendar-output.php:
|
2040 |
msgid "Show events in:"
|
2041 |
msgstr "Mostra gli eventi in:"
|
2042 |
|
2043 |
-
#: my-calendar-settings.php:
|
2044 |
msgid "Categories imported successfully."
|
2045 |
msgstr "Categorie importati con successo"
|
2046 |
|
2047 |
-
#: my-calendar-settings.php:
|
2048 |
msgid "Categories not imported."
|
2049 |
msgstr "Categorie non importati."
|
2050 |
|
2051 |
-
#: my-calendar-settings.php:
|
2052 |
msgid "Events imported successfully."
|
2053 |
msgstr "Eventi importati con successo"
|
2054 |
|
2055 |
-
#: my-calendar-settings.php:
|
2056 |
msgid "Events not imported."
|
2057 |
msgstr "Eventi non importati."
|
2058 |
|
2059 |
-
#: my-calendar-settings.php:
|
2060 |
msgid "My Calendar Cache cleared"
|
2061 |
msgstr "Cache di My Calendar Cache ripulita"
|
2062 |
|
2063 |
-
#: my-calendar-settings.php:
|
2064 |
msgid "My Calendar Management Settings saved"
|
2065 |
msgstr "Opzioni di gestione di My Calendar Management salvate"
|
2066 |
|
2067 |
-
#: my-calendar-settings.php:
|
2068 |
msgid "Add Events"
|
2069 |
msgstr "Aggiungi eventi"
|
2070 |
|
2071 |
-
#: my-calendar-settings.php:
|
2072 |
msgid "Approve Events"
|
2073 |
msgstr "Autorizza gli eventi"
|
2074 |
|
2075 |
-
#: my-calendar-settings.php:
|
2076 |
msgid "Edit Categories"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: my-calendar-settings.php:
|
2080 |
msgid "Edit Locations"
|
2081 |
msgstr "Modifica la località"
|
2082 |
|
2083 |
-
#: my-calendar-settings.php:
|
2084 |
msgid "Edit Styles"
|
2085 |
msgstr "Modifica gli stili"
|
2086 |
|
2087 |
-
#: my-calendar-settings.php:
|
2088 |
msgid "Edit Behaviors"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: my-calendar-settings.php:
|
2092 |
msgid "Edit Templates"
|
2093 |
msgstr "Modifica il modello"
|
2094 |
|
2095 |
-
#: my-calendar-settings.php:
|
2096 |
msgid "Edit Settings"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: my-calendar-settings.php:
|
2100 |
msgid "View Help"
|
2101 |
msgstr "Visualizza l'aiuto"
|
2102 |
|
2103 |
-
#: my-calendar-settings.php:
|
2104 |
msgid "My Calendar Permissions Updated"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: my-calendar-settings.php:
|
2108 |
msgid "Output Settings saved"
|
2109 |
msgstr "Impostazioni di uscita salvate"
|
2110 |
|
2111 |
-
#: my-calendar-settings.php:
|
2112 |
msgid "Input Settings saved"
|
2113 |
msgstr "Impostazioni d'ingresso salvate"
|
2114 |
|
2115 |
-
#: my-calendar-settings.php:
|
2116 |
msgid "Multisite settings saved"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: my-calendar-settings.php:
|
2120 |
msgid "Custom text settings saved"
|
2121 |
msgstr "Impostazioni del testo personalizzato salvato"
|
2122 |
|
2123 |
-
#: my-calendar-settings.php:
|
2124 |
msgid "Email notice settings saved"
|
2125 |
msgstr "Impostazioni e-mail avviso salvate"
|
2126 |
|
2127 |
-
#: my-calendar-settings.php:
|
2128 |
msgid "User custom settings saved"
|
2129 |
msgstr "Le impostazioni utente personalizzate salvate"
|
2130 |
|
2131 |
-
#: my-calendar-settings.php:
|
2132 |
msgid "My Calendar Options"
|
2133 |
msgstr "Opzioni My Calendar"
|
2134 |
|
2135 |
-
#: my-calendar-settings.php:
|
2136 |
msgid "My Calendar Settings"
|
2137 |
msgstr "Opzioni My Calendar"
|
2138 |
|
2139 |
-
#: my-calendar-settings.php:
|
2140 |
msgid "Management"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: my-calendar-settings.php:
|
2144 |
msgid "Customizable Text"
|
2145 |
msgstr "Testo personalizzabile"
|
2146 |
|
2147 |
-
#: my-calendar-settings.php:
|
2148 |
msgid "Output"
|
2149 |
msgstr "Output"
|
2150 |
|
2151 |
-
#: my-calendar-settings.php:
|
2152 |
msgid "Input"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: my-calendar-settings.php:
|
2156 |
msgid "Multi-site"
|
2157 |
msgstr "Multi-sito"
|
2158 |
|
2159 |
-
#: my-calendar-settings.php:
|
2160 |
msgid "Permissions"
|
2161 |
msgstr "Permessi"
|
2162 |
|
2163 |
-
#: my-calendar-settings.php:
|
2164 |
msgid "Email Notifications"
|
2165 |
msgstr "Notifiche via email"
|
2166 |
|
2167 |
-
#: my-calendar-settings.php:
|
2168 |
msgid "Individual Users"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: my-calendar-settings.php:
|
2172 |
msgid "Calendar Management Settings"
|
2173 |
msgstr "Impostazioni di Gestione del Calendario"
|
2174 |
|
2175 |
-
#: my-calendar-settings.php:
|
2176 |
msgid "Calendar Options: Management"
|
2177 |
msgstr "Opzioni Calendario: Gestione"
|
2178 |
|
2179 |
-
#: my-calendar-settings.php:
|
2180 |
msgid "Get data (events, categories and locations) from a remote database."
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: my-calendar-settings.php:
|
2184 |
msgid "Add this code to your theme's <code>functions.php</code> file:"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: my-calendar-settings.php:
|
2188 |
msgid "Enable approval options."
|
2189 |
msgstr "Attivare le opzioni di approvazione."
|
2190 |
|
2191 |
-
#: my-calendar-settings.php:
|
2192 |
msgid "Enable caching."
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: my-calendar-settings.php:
|
2196 |
msgid "<em>Cannot use caching while accessing a remote database.</em>"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: my-calendar-settings.php:
|
2200 |
msgid "Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: my-calendar-settings.php:
|
2204 |
msgid "Default Sort order for Admin Events List"
|
2205 |
msgstr "Ordinamento di default per la lista eventi dell'amministratore"
|
2206 |
|
2207 |
-
#: my-calendar-settings.php:
|
2208 |
msgid "Event ID"
|
2209 |
msgstr "ID evento"
|
2210 |
|
2211 |
-
#: my-calendar-settings.php:
|
2212 |
msgid "Start Date"
|
2213 |
msgstr "Data Inizio"
|
2214 |
|
2215 |
-
#: my-calendar-settings.php:
|
2216 |
msgid "Currently editing my local calendar"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: my-calendar-settings.php:
|
2220 |
msgid "Currently editing the network calendar"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: my-calendar-settings.php:
|
2224 |
msgid "You are currently working in the primary site for this network; your local calendar is also the global table."
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: my-calendar-settings.php:
|
2228 |
msgid "Save Management Settings"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: my-calendar-settings.php:
|
2232 |
msgid "My Calendar management settings are only available to administrators."
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: my-calendar-settings.php:
|
2236 |
msgid "Calendar Text Settings"
|
2237 |
msgstr "Impostazioni Testo del Calendario"
|
2238 |
|
2239 |
-
#: my-calendar-settings.php:
|
2240 |
msgid "Calendar Options: Customizable Text Fields"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: my-calendar-settings.php:
|
2244 |
msgid "Label for events without a set time"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: my-calendar-settings.php:
|
2248 |
msgid "Previous events link"
|
2249 |
msgstr "Collegamento agli eventi precedenti"
|
2250 |
|
2251 |
-
#: my-calendar-settings.php:
|
2252 |
msgid "Previous Events"
|
2253 |
msgstr "Eventi Passati"
|
2254 |
|
2255 |
-
#: my-calendar-settings.php:
|
2256 |
msgid "Use <code>{date}</code> to display the appropriate date in navigation."
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: my-calendar-settings.php:
|
2260 |
msgid "Next events link"
|
2261 |
msgstr "Collegamento ai prossimi eventi"
|
2262 |
|
2263 |
-
#: my-calendar-settings.php:
|
2264 |
msgid "Next Events"
|
2265 |
msgstr "Prossimi Eventi"
|
2266 |
|
2267 |
-
#: my-calendar-settings.php:
|
2268 |
msgid "If events are open"
|
2269 |
msgstr "Se gli eventi sono aperti"
|
2270 |
|
2271 |
-
#: my-calendar-settings.php:
|
2272 |
msgid "Registration is open"
|
2273 |
msgstr "Le Registrazioni sono aperte"
|
2274 |
|
2275 |
-
#: my-calendar-settings.php:
|
2276 |
msgid "If events are closed"
|
2277 |
msgstr "Se gli eventi sono chiusi"
|
2278 |
|
2279 |
-
#: my-calendar-settings.php:
|
2280 |
msgid "Registration is closed"
|
2281 |
msgstr "Le Registrazioni sono chiusi"
|
2282 |
|
2283 |
-
#: my-calendar-settings.php:
|
2284 |
msgid "Week view caption:"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: my-calendar-settings.php:
|
2288 |
msgid "Extended caption:"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: my-calendar-settings.php:
|
2292 |
msgid "The calendar caption shows month and year in list and grid formats. This text is displayed after the month/year."
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: my-calendar-settings.php:
|
2296 |
msgid "Save Custom Text Settings"
|
2297 |
msgstr "Salva impostazioni testo personalizzato"
|
2298 |
|
2299 |
-
#: my-calendar-settings.php:
|
2300 |
msgid "Calendar Output Settings"
|
2301 |
msgstr "Impostazioni Uscita Calendario"
|
2302 |
|
2303 |
-
#: my-calendar-settings.php:
|
2304 |
msgid "Save Output Settings"
|
2305 |
msgstr "Salva Impostazioni di uscita"
|
2306 |
|
2307 |
-
#: my-calendar-settings.php:
|
2308 |
msgid "Calendar Options: Customize the Output of your Calendar"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: my-calendar-settings.php:
|
2312 |
-
msgid "General Calendar Options"
|
2313 |
-
msgstr ""
|
2314 |
-
|
2315 |
-
#: my-calendar-settings.php:416
|
2316 |
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details links:"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: my-calendar-settings.php:
|
2320 |
msgid "Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: my-calendar-settings.php:
|
2324 |
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's timeline links."
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: my-calendar-settings.php:
|
2328 |
msgid "Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> shortcode."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: my-calendar-settings.php:
|
2332 |
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar in-page anchors:"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: my-calendar-settings.php:
|
2336 |
msgid "Can be any Page or Post with the <code>[my_calendar]</code> shortcode using format selected below"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: my-calendar-settings.php:
|
2340 |
-
msgid "With above settings:"
|
2341 |
-
msgstr "Con le opzioni qui sopra:"
|
2342 |
-
|
2343 |
-
#: my-calendar-settings.php:429
|
2344 |
msgid "Open calendar links to event details URL"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: my-calendar-settings.php:
|
2348 |
msgid "Replaces pop-up in grid view."
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: my-calendar-settings.php:
|
2352 |
msgid "Mini calendar widget date links to:"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: my-calendar-settings.php:
|
2356 |
msgid "jQuery pop-up view"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: my-calendar-settings.php:
|
2360 |
msgid "daily view page (above)"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: my-calendar-settings.php:
|
2364 |
msgid "in-page anchor on main calendar page (list)"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: my-calendar-settings.php:
|
2368 |
msgid "in-page anchor on main calendar page (grid)"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: my-calendar-settings.php:
|
2372 |
msgid "Replaces pop-up in mini calendar"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: my-calendar-settings.php:
|
2376 |
msgid "Time format"
|
2377 |
msgstr "Formato ora"
|
2378 |
|
2379 |
-
#: my-calendar-settings.php:
|
2380 |
-
#: my-calendar-settings.php:447
|
2381 |
-
msgid "Current:"
|
2382 |
-
msgstr ""
|
2383 |
-
|
2384 |
-
#: my-calendar-settings.php:444
|
2385 |
msgid "Date in grid mode, week view"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
#: my-calendar-settings.php:
|
2389 |
msgid "Date Format in other views"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
-
#: my-calendar-settings.php:
|
2393 |
msgid "Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#: my-calendar-settings.php:
|
2397 |
msgid "Show link to My Calendar RSS feed."
|
2398 |
msgstr "Mostra link al feed RSS di My Calendar."
|
2399 |
|
2400 |
-
#: my-calendar-settings.php:
|
2401 |
msgid "RSS feed shows recently added events."
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#: my-calendar-settings.php:
|
2405 |
msgid "Show link to iCal format download."
|
2406 |
msgstr "Mostra link per scaricare in formato iCal."
|
2407 |
|
2408 |
-
#: my-calendar-settings.php:
|
2409 |
msgid "iCal outputs events occurring in the current calendar month."
|
2410 |
msgstr ""
|
2411 |
|
2412 |
-
#: my-calendar-settings.php:
|
2413 |
msgid "Show link to print-formatted view of calendar"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: my-calendar-settings.php:
|
2417 |
-
msgid "Display a jumpbox for changing month and year quickly?"
|
2418 |
-
msgstr "Visualizzare un JumpBox per cambiare mese e anno in fretta?"
|
2419 |
-
|
2420 |
-
#: my-calendar-settings.php:470
|
2421 |
msgid "Grid Layout Options"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#: my-calendar-settings.php:
|
2425 |
msgid "Show Weekends on Calendar"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: my-calendar-settings.php:
|
2429 |
msgid "Switch to list view on mobile devices"
|
2430 |
msgstr "Vai alla vista elenco sugli apparecchi mobili"
|
2431 |
|
2432 |
-
#: my-calendar-settings.php:
|
2433 |
msgid "List Layout Options"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: my-calendar-settings.php:
|
2437 |
msgid "How many months of events to show at a time:"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: my-calendar-settings.php:
|
2441 |
msgid "Show the first event's title and the number of events that day next to the date."
|
2442 |
msgstr "Mostra il titolo del primo evento e il numero degli eventi del giorno a fianco alla data."
|
2443 |
|
2444 |
-
#: my-calendar-settings.php:
|
2445 |
msgid "Event Details Options"
|
2446 |
msgstr "Opzioni per il dettaglio evento"
|
2447 |
|
2448 |
-
#: my-calendar-settings.php:
|
2449 |
msgid "Event title template"
|
2450 |
msgstr "Template del titolo evento"
|
2451 |
|
2452 |
-
#: my-calendar-settings.php:
|
2453 |
msgid "Templating Help"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: my-calendar-settings.php:
|
2457 |
msgid "All template tags are available."
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: my-calendar-settings.php:
|
2461 |
msgid "Event details link text"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: my-calendar-settings.php:
|
2465 |
msgid "Available tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
2466 |
msgstr "Tag disponibili: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
2467 |
|
2468 |
-
#: my-calendar-settings.php:
|
2469 |
msgid "Event URL link text"
|
2470 |
msgstr "Testo collegamento URL dell'evento"
|
2471 |
|
2472 |
-
#: my-calendar-settings.php:
|
2473 |
msgid "Show Link to Google Map"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: my-calendar-settings.php:
|
2477 |
msgid "Show Event Address"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: my-calendar-settings.php:
|
2481 |
msgid "Event links expire after event passes."
|
2482 |
msgstr "I collegamenti agli eventi scompaiono dopo la data dell'evento."
|
2483 |
|
2484 |
-
#: my-calendar-settings.php:
|
2485 |
msgid "Show availability status"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: my-calendar-settings.php:
|
2489 |
msgid "Default usage of category colors."
|
2490 |
msgstr "L'utilizzo predefinito dei colori categoria."
|
2491 |
|
2492 |
-
#: my-calendar-settings.php:
|
2493 |
msgid "Event titles are category colors."
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: my-calendar-settings.php:
|
2497 |
msgid "Event titles have category color as background."
|
2498 |
msgstr "I titoli degli eventi hanno il colore della categoria come sfondo."
|
2499 |
|
2500 |
-
#: my-calendar-settings.php:
|
2501 |
-
msgid "Event Scheduling Options"
|
2502 |
-
msgstr ""
|
2503 |
-
|
2504 |
-
#: my-calendar-settings.php:562
|
2505 |
msgid "Default setting for event input: If a recurring event is scheduled for a date which doesn't exist (such as the 5th Wednesday in February), move it back one week."
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: my-calendar-settings.php:
|
2509 |
msgid "Holiday Category"
|
2510 |
msgstr "Categoria Vacanze"
|
2511 |
|
2512 |
-
#: my-calendar-settings.php:
|
2513 |
msgid "None"
|
2514 |
msgstr "Nessuno"
|
2515 |
|
2516 |
-
#: my-calendar-settings.php:
|
2517 |
msgid "Default setting for event input: If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
|
2518 |
msgstr ""
|
2519 |
|
2520 |
-
#: my-calendar-settings.php:
|
2521 |
msgid "Calendar Input Settings"
|
2522 |
msgstr "Impostazioni ingresso del Calendario"
|
2523 |
|
2524 |
-
#: my-calendar-settings.php:
|
2525 |
msgid "Select which input fields will be available when adding or editing events."
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: my-calendar-settings.php:
|
2529 |
msgid "Show Event Location Dropdown Menu"
|
2530 |
msgstr "Mostra Località Evento nel menu a scomparsa"
|
2531 |
|
2532 |
-
#: my-calendar-settings.php:
|
2533 |
msgid "Show Event Short Description field"
|
2534 |
msgstr "Mostra campo Descrizione breve evento"
|
2535 |
|
2536 |
-
#: my-calendar-settings.php:
|
2537 |
msgid "Show Event Description Field"
|
2538 |
msgstr "Mostra campo Descrizione dell'evento"
|
2539 |
|
2540 |
-
#: my-calendar-settings.php:
|
2541 |
msgid "Show Event Category field"
|
2542 |
msgstr "Mostra campo Categoria dell'Evento "
|
2543 |
|
2544 |
-
#: my-calendar-settings.php:
|
2545 |
msgid "Show Event Link field"
|
2546 |
msgstr "Mostra campo Link dell'evento"
|
2547 |
|
2548 |
-
#: my-calendar-settings.php:
|
2549 |
msgid "Show Event Recurrence Options"
|
2550 |
msgstr "Mostra Opzioni di ricorrenza evento"
|
2551 |
|
2552 |
-
#: my-calendar-settings.php:
|
2553 |
msgid "Use HTML Editor in Event Description Field"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: my-calendar-settings.php:
|
2557 |
msgid "Administrators see all input options"
|
2558 |
msgstr "Gli amministratori vedono tutte le opzioni di input"
|
2559 |
|
2560 |
-
#: my-calendar-settings.php:
|
2561 |
msgid "Save Input Settings"
|
2562 |
msgstr "Salva Impostazioni d'ingresso"
|
2563 |
|
2564 |
-
#: my-calendar-settings.php:
|
2565 |
msgid "Multisite Settings (Network Administrators only)"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: my-calendar-settings.php:
|
2569 |
msgid "Multisite support is a beta feature - use with caution."
|
2570 |
msgstr "Il supporto multisito è in versione beta - usare con attenzione"
|
2571 |
|
2572 |
-
#: my-calendar-settings.php:
|
2573 |
msgid "Settings for WP MultiSite configurations"
|
2574 |
msgstr "Opzioni per le configurazioni WP MultiSito"
|
2575 |
|
2576 |
-
#: my-calendar-settings.php:
|
2577 |
msgid "The central calendar is the calendar associated with the primary site in your WordPress Multisite network."
|
2578 |
msgstr "Il calendario centrale è quello associato con il sito primario nel tuo multisito WordPress."
|
2579 |
|
2580 |
-
#: my-calendar-settings.php:
|
2581 |
msgid "Site owners may only post to their local calendar"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: my-calendar-settings.php:
|
2585 |
msgid "Site owners may only post to the central calendar"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: my-calendar-settings.php:
|
2589 |
msgid "Site owners may manage either calendar"
|
2590 |
msgstr "I titolari del sito possono gestire entrambi i calendari"
|
2591 |
|
2592 |
-
#: my-calendar-settings.php:
|
2593 |
msgid "Changes only effect input permissions. Public-facing calendars will be unchanged."
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#: my-calendar-settings.php:
|
2597 |
msgid "Sub-site calendars show events from their local calendar."
|
2598 |
msgstr "I calendari del sott-sito mostrano gli eventi dai loro calendari locali."
|
2599 |
|
2600 |
-
#: my-calendar-settings.php:
|
2601 |
msgid "Sub-site calendars show events from the central calendar."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: my-calendar-settings.php:
|
2605 |
msgid "Save Multisite Settings"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#: my-calendar-settings.php:
|
2609 |
msgid "My Calendar Permissions"
|
2610 |
msgstr "Permessi per My Calendar"
|
2611 |
|
2612 |
-
#: my-calendar-settings.php:
|
2613 |
msgid "Calendar Options: Permissions"
|
2614 |
msgstr "Opzioni calendario: permessi"
|
2615 |
|
2616 |
-
#: my-calendar-settings.php:
|
2617 |
msgid "Save Permissions"
|
2618 |
msgstr "Salva i permessi"
|
2619 |
|
2620 |
-
#: my-calendar-settings.php:
|
2621 |
msgid "My Calendar permission settings are only available to administrators."
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: my-calendar-settings.php:
|
2625 |
msgid "Calendar Email Settings"
|
2626 |
msgstr "Impostazioni Emali del Calendario"
|
2627 |
|
2628 |
-
#: my-calendar-settings.php:
|
2629 |
msgid "Calendar Options: Email Notifications"
|
2630 |
msgstr "Opzioni calendario: notifiche e-mail"
|
2631 |
|
2632 |
-
#: my-calendar-settings.php:
|
2633 |
msgid "Send Email Notifications when new events are scheduled or reserved."
|
2634 |
msgstr "Inviare e-mail di notifica quando sono in programma nuovi eventi o riservati."
|
2635 |
|
2636 |
-
#: my-calendar-settings.php:
|
2637 |
msgid "Notification messages are sent to: "
|
2638 |
msgstr "I messaggi di notifica vengono inviati a:"
|
2639 |
|
2640 |
-
#: my-calendar-settings.php:
|
2641 |
msgid "Email subject"
|
2642 |
msgstr "Oggetto email"
|
2643 |
|
2644 |
-
#: my-calendar-settings.php:
|
2645 |
msgid "New event Added"
|
2646 |
msgstr "Nuovo evento aggiunto"
|
2647 |
|
2648 |
-
#: my-calendar-settings.php:
|
2649 |
msgid "Message Body"
|
2650 |
msgstr "Corpo del messaggio"
|
2651 |
|
2652 |
-
#: my-calendar-settings.php:
|
2653 |
msgid "New Event:"
|
2654 |
msgstr "Nuovo Evento:"
|
2655 |
|
2656 |
-
#: my-calendar-settings.php:
|
2657 |
msgid "Shortcode Help"
|
2658 |
msgstr "Aiuto Shortcode"
|
2659 |
|
2660 |
-
#: my-calendar-settings.php:
|
2661 |
msgid "All template shortcodes are available."
|
2662 |
msgstr "Tutti i codici brevi di templates sono disponibili."
|
2663 |
|
2664 |
-
#: my-calendar-settings.php:
|
2665 |
msgid "Save Email Settings"
|
2666 |
msgstr "Salva Impostazioni Email"
|
2667 |
|
2668 |
-
#: my-calendar-settings.php:
|
2669 |
msgid "Calendar User Settings"
|
2670 |
msgstr "Impostazioni dell'utente del Calendario"
|
2671 |
|
2672 |
-
#: my-calendar-settings.php:
|
2673 |
msgid "Settings which can be configured in registered user's accounts"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: my-calendar-settings.php:
|
2677 |
msgid "Allow registered users to provide timezone or location presets in their user profiles."
|
2678 |
msgstr "Consentire agli utenti registrati di fornire fuso orario o luogo presettati nei loro profili."
|
2679 |
|
2680 |
-
#: my-calendar-settings.php:
|
2681 |
msgid "Timezone Settings"
|
2682 |
msgstr "Impostazioni Fuso Orario"
|
2683 |
|
2684 |
-
#: my-calendar-settings.php:
|
2685 |
msgid "These settings provide registered users with the ability to select a time zone in their user profile. When they view your calendar, the times for events will display the time the event happens in their time zone as well as the entered value."
|
2686 |
msgstr "Queste impostazioni forniscono agli utenti registrati la possibilità di selezionare un fuso orario nel loro profilo utente. Quando visualizzano il tuo calendario, vedranno l'ora dell'evento secondo il fuso orario che hanno scelto nel loro profilo lo stesso per quelli inseriti."
|
2687 |
|
2688 |
-
#: my-calendar-settings.php:
|
2689 |
msgid "Enable Timezone"
|
2690 |
msgstr "Abilita il fuso orario"
|
2691 |
|
2692 |
-
#: my-calendar-settings.php:
|
2693 |
msgid "Select Timezone Label"
|
2694 |
msgstr "Selezione Etichetta Fuso orario"
|
2695 |
|
2696 |
-
#: my-calendar-settings.php:
|
2697 |
msgid "Timezone Options"
|
2698 |
msgstr "Opzione Fuso Orario"
|
2699 |
|
2700 |
-
#: my-calendar-settings.php:
|
2701 |
msgid "Value, Label; one per line"
|
2702 |
msgstr "Valore, Etichetta; uno per riga"
|
2703 |
|
2704 |
-
#: my-calendar-settings.php:
|
2705 |
msgid "Location Settings"
|
2706 |
msgstr "Impostazioni Località"
|
2707 |
|
2708 |
-
#: my-calendar-settings.php:
|
2709 |
msgid "These settings provide registered users with the ability to select a location in their user profile. When they view your calendar, their initial view will be limited to locations which include that location parameter. These values can also be used to generate custom location filtering options using the <code>my_calendar_locations</code> shortcode. It is not necessary to enable these settings for users to use the custom filtering options."
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: my-calendar-settings.php:
|
2713 |
msgid "Enable Location"
|
2714 |
msgstr "Abilita Località"
|
2715 |
|
2716 |
-
#: my-calendar-settings.php:
|
2717 |
msgid "Use this location list as input control"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: my-calendar-settings.php:
|
2721 |
msgid "The normal text entry for this location type will be replaced by a drop down containing these choices."
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: my-calendar-settings.php:
|
2725 |
msgid "Select Location Label"
|
2726 |
msgstr "Seleziona etichetta località"
|
2727 |
|
2728 |
-
#: my-calendar-settings.php:
|
2729 |
msgid "Location Options"
|
2730 |
msgstr "Opzioni Località"
|
2731 |
|
2732 |
-
#: my-calendar-settings.php:
|
2733 |
msgid "Location Type"
|
2734 |
msgstr "Tipo Località"
|
2735 |
|
2736 |
-
#: my-calendar-settings.php:
|
2737 |
msgid "Save User Settings"
|
2738 |
msgstr "Salva Impostazioni Utente"
|
2739 |
|
2740 |
-
#: my-calendar-settings.php:
|
2741 |
msgid "Only users with the ability to edit user accounts may modify user settings."
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: my-calendar-styles.php:
|
2745 |
msgid "The stylesheet has been updated."
|
2746 |
msgstr "Il foglio di stile è stato aggiornato."
|
2747 |
|
2748 |
-
#: my-calendar-styles.php:
|
2749 |
msgid "Write Error! Please verify write permissions on the style file."
|
2750 |
msgstr "Errore di scrittura! Si prega di verificare i permessi di scrittura sul file di stile."
|
2751 |
|
2752 |
-
#: my-calendar-styles.php:
|
2753 |
msgid "Stylesheet reset to default."
|
2754 |
msgstr "Foglio di stile ripristino delle impostazioni predefinite."
|
2755 |
|
2756 |
-
#: my-calendar-styles.php:
|
2757 |
msgid "Style Settings Saved"
|
2758 |
msgstr "Impostazioni Stile salvate"
|
2759 |
|
2760 |
-
#: my-calendar-styles.php:
|
2761 |
msgid "New theme selected."
|
2762 |
msgstr "Nuovo tema selezionato"
|
2763 |
|
2764 |
-
#: my-calendar-styles.php:
|
2765 |
msgid "Sorry. The file you are looking for doesn't appear to exist. Please check your file name and location!"
|
2766 |
msgstr "Spiacente. Il file che stai cercando non sembra esistere. Si prega di controllare il nome e il percorso!"
|
2767 |
|
2768 |
-
#: my-calendar-styles.php:
|
2769 |
msgid "My Calendar Styles"
|
2770 |
msgstr "Stile My Calendar"
|
2771 |
|
2772 |
-
#: my-calendar-styles.php:
|
2773 |
msgid "Calendar Style Settings"
|
2774 |
msgstr "Impostazioni Stile Calendario"
|
2775 |
|
2776 |
-
#: my-calendar-styles.php:
|
2777 |
msgid "Select My Calendar Theme"
|
2778 |
msgstr "Selezionare il Tema My Calendar"
|
2779 |
|
2780 |
-
#: my-calendar-styles.php:
|
2781 |
msgid "Your Custom Stylesheets"
|
2782 |
msgstr "I fogli di stile personalizzati"
|
2783 |
|
2784 |
-
#: my-calendar-styles.php:
|
2785 |
msgid "Installed Stylesheets"
|
2786 |
msgstr "Fogli di stile Installati"
|
2787 |
|
2788 |
-
#: my-calendar-styles.php:
|
2789 |
msgid "Choose Style"
|
2790 |
msgstr "Scegli stile"
|
2791 |
|
2792 |
-
#: my-calendar-styles.php:
|
2793 |
msgid "My Calendar was unable to update your CSS files during the upgrade. Please check your file permissions if you wish to edit your My Calendar styles. Your previously stored styles are below. This message and these styles will be deleted from the database when you successfully update your stylesheet."
|
2794 |
msgstr "My Calendar è in grado di aggiornare i file CSS durante l'aggiornamento. Si prega di verificare i permessi del file se si desidera modificare gli stili di My Calendar. I vostri stili precedentemente memorizzate sono sotto. Questo messaggio e questi stili saranno cancellati dal database con successo quando si aggiorna il foglio di stile."
|
2795 |
|
2796 |
-
#: my-calendar-styles.php:
|
2797 |
msgid "CSS Style Options"
|
2798 |
msgstr "Opzioni Style CSS"
|
2799 |
|
2800 |
-
#: my-calendar-styles.php:
|
2801 |
msgid "Restore My Calendar stylesheet"
|
2802 |
msgstr "Riattiva il foglio di stile My Calendar"
|
2803 |
|
2804 |
-
#: my-calendar-styles.php:
|
2805 |
msgid "Disable My Calendar Stylesheet"
|
2806 |
msgstr "Disattivare foglio di stile del mio Calendario"
|
2807 |
|
2808 |
-
#: my-calendar-styles.php:
|
2809 |
msgid "Edit the stylesheet for My Calendar"
|
2810 |
msgstr "Modificare il foglio di stile per il mio calendario"
|
2811 |
|
2812 |
-
#: my-calendar-styles.php:
|
2813 |
msgid "Comparing Your Style with latest installed version of My Calendar"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: my-calendar-styles.php:
|
2817 |
msgid "There have been updates to the stylesheet."
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: my-calendar-styles.php:
|
2821 |
msgid "Compare Your Stylesheet with latest installed version of My Calendar."
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: my-calendar-styles.php:
|
2825 |
msgid "Your stylesheet matches that included with My Calendar."
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: my-calendar-styles.php:
|
2829 |
msgid "Resetting your stylesheet will set your stylesheet to the version of that style currently distributed with the plug-in."
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: my-calendar-templates.php:
|
2833 |
msgid "Map<span> to %s</span>"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: my-calendar-templates.php:
|
2837 |
msgid "Visit web site<span>: %s</span>"
|
2838 |
msgstr "Visita il sito web<span>: %s</span>"
|
2839 |
|
2840 |
-
#: my-calendar-templates.php:
|
2841 |
msgid "Date of Month (the %s of each month)"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: my-calendar-templates.php:
|
2845 |
msgid "Day of Month (the %s %s of each month)"
|
2846 |
msgstr "Giorno del mese (il %s %s di ogni mese)"
|
2847 |
|
@@ -2849,91 +3001,91 @@ msgstr "Giorno del mese (il %s %s di ogni mese)"
|
|
2849 |
msgid "Grid Output Template saved"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: my-calendar-templating.php:
|
2853 |
msgid "List Output Template saved"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#: my-calendar-templating.php:
|
2857 |
msgid "Mini Output Template saved"
|
2858 |
msgstr "Modello mini output salvato"
|
2859 |
|
2860 |
-
#: my-calendar-templating.php:
|
2861 |
msgid "Event Details Template saved"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
-
#: my-calendar-templating.php:
|
2865 |
msgid "My Calendar Information Templates"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
-
#: my-calendar-templating.php:
|
2869 |
msgid "Advanced users may customize the HTML template for each event. This page lets you create a customized view of your events in each context. All available template tags are documented on the Help page. These default templates are based on the default views with all output enabled. <strong>Custom templates will override any other output rules in your settings.</strong>"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
-
#: my-calendar-templating.php:
|
2873 |
msgid "Templates Help"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
-
#: my-calendar-templating.php:
|
2877 |
msgid "My Calendar: Grid Event Template"
|
2878 |
msgstr "My Calendar: modello di griglia eventi"
|
2879 |
|
2880 |
-
#: my-calendar-templating.php:
|
2881 |
msgid "Use this grid event template"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
-
#: my-calendar-templating.php:
|
2885 |
msgid "Your custom template for events in the calendar grid output."
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#: my-calendar-templating.php:
|
2889 |
msgid "Save Grid Template"
|
2890 |
msgstr "Salva il modello a griglia"
|
2891 |
|
2892 |
-
#: my-calendar-templating.php:
|
2893 |
msgid "My Calendar: List Event Template"
|
2894 |
msgstr "My Calendar: modello lista eventi"
|
2895 |
|
2896 |
-
#: my-calendar-templating.php:
|
2897 |
msgid "Use this list event template"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
-
#: my-calendar-templating.php:
|
2901 |
msgid "Your custom template for events in calendar list output."
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: my-calendar-templating.php:
|
2905 |
msgid "Save List Template"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
-
#: my-calendar-templating.php:
|
2909 |
msgid "My Calendar: Mini Calendar Template"
|
2910 |
msgstr "My Calendar: modello per mini calendario"
|
2911 |
|
2912 |
-
#: my-calendar-templating.php:
|
2913 |
msgid "Use this mini event template"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
-
#: my-calendar-templating.php:
|
2917 |
msgid "Your custom template for events in sidebar/mini calendar output."
|
2918 |
msgstr ""
|
2919 |
|
2920 |
-
#: my-calendar-templating.php:
|
2921 |
msgid "Save Mini Template"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: my-calendar-templating.php:
|
2925 |
msgid "My Calendar: Event Details Page Template"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: my-calendar-templating.php:
|
2929 |
msgid "Use this details template"
|
2930 |
msgstr "Usa questo modello per i dettagli"
|
2931 |
|
2932 |
-
#: my-calendar-templating.php:
|
2933 |
msgid "Your custom template for events on the event details page."
|
2934 |
msgstr "Il tuo modello eventi personalizzato sulla pagina dei dettagli dell'evento."
|
2935 |
|
2936 |
-
#: my-calendar-templating.php:
|
2937 |
msgid "Save Details Template"
|
2938 |
msgstr ""
|
2939 |
|
@@ -2965,289 +3117,277 @@ msgstr "impostazioni utente My Calendar"
|
|
2965 |
msgid "My Calendar: Today's Events"
|
2966 |
msgstr "My Calendar: Eventi di oggi"
|
2967 |
|
2968 |
-
#: my-calendar-widgets.php:
|
2969 |
msgid "Template"
|
2970 |
msgstr "Template"
|
2971 |
|
2972 |
-
#: my-calendar-widgets.php:
|
2973 |
msgid "Add calendar URL to use this option."
|
2974 |
msgstr "Aggiungi l'URL di un calendario per usare questa opzione."
|
2975 |
|
2976 |
-
#: my-calendar-widgets.php:
|
2977 |
-
msgid "Link widget title to calendar:"
|
2978 |
-
msgstr "Collega il titolo del widget al calendario:"
|
2979 |
-
|
2980 |
-
#: my-calendar-widgets.php:52 my-calendar-widgets.php:149
|
2981 |
-
msgid "Not Linked"
|
2982 |
-
msgstr "Non collegato"
|
2983 |
-
|
2984 |
-
#: my-calendar-widgets.php:53 my-calendar-widgets.php:150
|
2985 |
-
msgid "Linked"
|
2986 |
-
msgstr ""
|
2987 |
-
|
2988 |
-
#: my-calendar-widgets.php:57
|
2989 |
msgid "Show this text if there are no events today:"
|
2990 |
msgstr "Mostra questo testo, se non ci sono eventi di oggi:"
|
2991 |
|
2992 |
-
#: my-calendar-widgets.php:
|
2993 |
-
#: my-calendar-widgets.php:
|
2994 |
msgid "Category or categories to display:"
|
2995 |
msgstr "Categoria o le categorie da visualizzare:"
|
2996 |
|
2997 |
-
#: my-calendar-widgets.php:
|
2998 |
msgid "My Calendar: Upcoming Events"
|
2999 |
msgstr "My Calendar: Prossimi Eventi"
|
3000 |
|
3001 |
-
#: my-calendar-widgets.php:
|
3002 |
msgid "Widget Options"
|
3003 |
msgstr "Opzione Widget"
|
3004 |
|
3005 |
-
#: my-calendar-widgets.php:
|
3006 |
msgid "Display upcoming events by:"
|
3007 |
msgstr "Visualizzare prossimi eventi per:"
|
3008 |
|
3009 |
-
#: my-calendar-widgets.php:
|
3010 |
msgid "Events (e.g. 2 past, 3 future)"
|
3011 |
msgstr "Eventi (ad esempio 2 passate, 3 futuro)"
|
3012 |
|
3013 |
-
#: my-calendar-widgets.php:
|
3014 |
msgid "Dates (e.g. 4 days past, 5 forward)"
|
3015 |
msgstr "Date (ad esempio, 4 giorni passati, 5 in avanti)"
|
3016 |
|
3017 |
-
#: my-calendar-widgets.php:
|
3018 |
msgid "Skip the first <em>n</em> events"
|
3019 |
msgstr "Salta i primi <em>n</em> eventi"
|
3020 |
|
3021 |
-
#: my-calendar-widgets.php:
|
3022 |
msgid "Events sort order:"
|
3023 |
msgstr "Ordinamento degli eventi:"
|
3024 |
|
3025 |
-
#: my-calendar-widgets.php:
|
3026 |
msgid "Ascending (near to far)"
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
#: my-calendar-widgets.php:
|
3030 |
msgid "Descending (far to near)"
|
3031 |
msgstr "Discendente (dall'ultimo al primo)"
|
3032 |
|
3033 |
-
#: my-calendar-widgets.php:
|
3034 |
msgid "Include today's events"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: my-calendar-widgets.php:
|
3038 |
msgid "Show this text if there are no events meeting your criteria:"
|
3039 |
msgstr "Mostra questo testo, se non ci sono eventi che soddisfano i tuoi criteri:"
|
3040 |
|
3041 |
-
#: my-calendar-widgets.php:
|
3042 |
msgid "My Calendar: Mini Calendar"
|
3043 |
msgstr "My Calendar: mini calendario"
|
3044 |
|
3045 |
-
#: my-calendar-widgets.php:
|
3046 |
msgid "Calendar"
|
3047 |
msgstr "Calendario"
|
3048 |
|
3049 |
-
#: my-calendar-widgets.php:
|
3050 |
msgid "Show Next/Previous Navigation:"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: my-calendar-widgets.php:
|
3054 |
msgid "Show Category Key:"
|
3055 |
msgstr "Mostra la chiave della categoria"
|
3056 |
|
3057 |
-
#: my-calendar-widgets.php:
|
3058 |
msgid "Mini-Calendar Timespan:"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: my-calendar.php:
|
3062 |
msgid "Support This Plug-in"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: my-calendar.php:
|
3066 |
msgid "Help me help you:"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: my-calendar.php:
|
3070 |
msgid "Buy the My Calendar User's Guide"
|
3071 |
msgstr "Compra la guida utente di My Calendar"
|
3072 |
|
3073 |
-
#: my-calendar.php:
|
3074 |
msgid "<strong>Or make a donation today!</strong> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
|
3075 |
msgstr "<strong>O invia oggi una donazione!</strong> Ogni donazione conta - dona $2, $10, o $100 e aiutami a far funzionare questo plug-in!"
|
3076 |
|
3077 |
-
#: my-calendar.php:
|
3078 |
msgid "Make a Donation"
|
3079 |
msgstr "Fai una donazione"
|
3080 |
|
3081 |
-
#: my-calendar.php:
|
3082 |
msgid "Get Help"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: my-calendar.php:
|
3086 |
msgid "Get Support"
|
3087 |
msgstr "ottenere assistenza"
|
3088 |
|
3089 |
-
#: my-calendar.php:
|
3090 |
msgid "My Calendar Help"
|
3091 |
msgstr "Aiuto My Calendar"
|
3092 |
|
3093 |
-
#: my-calendar.php:
|
3094 |
msgid "Check out my other plug-ins"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: my-calendar.php:
|
3098 |
msgid "Rate this plug-in 5 stars!"
|
3099 |
msgstr "Assegna 5 stelle a questo plug-in!"
|
3100 |
|
3101 |
-
#: my-calendar.php:
|
3102 |
msgid "Title of the event."
|
3103 |
-
msgstr ""
|
3104 |
|
3105 |
-
#: my-calendar.php:
|
3106 |
msgid "Title of the event as a link if a URL is present, or the title alone if not."
|
3107 |
msgstr "Titolo dell'evento come collegamento se è presente un URL, o solo il titolo se non lo è."
|
3108 |
|
3109 |
-
#: my-calendar.php:
|
3110 |
msgid "Start time for the event."
|
3111 |
msgstr "Ora di inizio dell'evento."
|
3112 |
|
3113 |
-
#: my-calendar.php:
|
3114 |
msgid "Event times adjusted to the current user's time zone if set."
|
3115 |
-
msgstr ""
|
3116 |
|
3117 |
-
#: my-calendar.php:
|
3118 |
msgid "Date on which the event begins."
|
3119 |
msgstr "Data in cui inizia l'evento."
|
3120 |
|
3121 |
-
#: my-calendar.php:
|
3122 |
msgid "Date on which the event ends."
|
3123 |
-
msgstr ""
|
3124 |
|
3125 |
-
#: my-calendar.php:
|
3126 |
msgid "Time at which the event ends."
|
3127 |
msgstr "Ora in cui l'evento termina."
|
3128 |
|
3129 |
-
#: my-calendar.php:
|
3130 |
msgid "Beginning date to end date; excludes end date if same as beginning."
|
3131 |
-
msgstr ""
|
3132 |
|
3133 |
-
#: my-calendar.php:
|
3134 |
msgid "Multi-day events: an unordered list of dates/times. Otherwise, beginning date/time."
|
3135 |
-
msgstr ""
|
3136 |
|
3137 |
-
#: my-calendar.php:
|
3138 |
msgid "Author who posted the event."
|
3139 |
msgstr "Autore che ha pubblicato l'evento."
|
3140 |
|
3141 |
-
#: my-calendar.php:
|
3142 |
msgid "Name of the assigned host for the event."
|
3143 |
msgstr "Nome dell'ospite designato per l'evento"
|
3144 |
|
3145 |
-
#: my-calendar.php:
|
3146 |
msgid "Email for the person assigned as host."
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#: my-calendar.php:
|
3150 |
msgid "Short event description."
|
3151 |
msgstr "Descrizione breve dell'evento."
|
3152 |
|
3153 |
-
#: my-calendar.php:
|
3154 |
msgid "Description of the event."
|
3155 |
msgstr "Descrizione dell'evento"
|
3156 |
|
3157 |
-
#: my-calendar.php:
|
3158 |
msgid "URL provided for the event."
|
3159 |
msgstr "URL fornito per l'evento."
|
3160 |
|
3161 |
-
#: my-calendar.php:
|
3162 |
msgid "Link to an auto-generated page containing information about the event."
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: my-calendar.php:
|
3166 |
msgid "Whether event is currently open for registration."
|
3167 |
msgstr "Se un evento è al momento disponibile alla registrazione."
|
3168 |
|
3169 |
-
#: my-calendar.php:
|
3170 |
msgid "Current status of event: either \"Published\" or \"Reserved.\""
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: my-calendar.php:
|
3174 |
msgid "Name of the location of the event."
|
3175 |
msgstr "Nome della località dell'evento."
|
3176 |
|
3177 |
-
#: my-calendar.php:
|
3178 |
msgid "First line of the site address."
|
3179 |
msgstr ""
|
3180 |
|
3181 |
-
#: my-calendar.php:
|
3182 |
msgid "Second line of the site address."
|
3183 |
msgstr "Seconda linea dell'indirizzo del sito."
|
3184 |
|
3185 |
-
#: my-calendar.php:
|
3186 |
msgid "City."
|
3187 |
msgstr "Città."
|
3188 |
|
3189 |
-
#: my-calendar.php:
|
3190 |
msgid "State."
|
3191 |
msgstr "Stato."
|
3192 |
|
3193 |
-
#: my-calendar.php:
|
3194 |
msgid "Postal code/zip code."
|
3195 |
msgstr "CAP"
|
3196 |
|
3197 |
-
#: my-calendar.php:
|
3198 |
msgid "Custom region."
|
3199 |
msgstr ""
|
3200 |
|
3201 |
-
#: my-calendar.php:
|
3202 |
msgid "Country for the event location."
|
3203 |
msgstr "Paese della località dell'evento"
|
3204 |
|
3205 |
-
#: my-calendar.php:
|
3206 |
msgid "Output the URL for the location."
|
3207 |
-
msgstr ""
|
3208 |
|
3209 |
-
#: my-calendar.php:
|
3210 |
msgid "Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
3211 |
-
msgstr ""
|
3212 |
|
3213 |
-
#: my-calendar.php:
|
3214 |
msgid "Link to Google Map to the event, if address information is available."
|
3215 |
-
msgstr ""
|
3216 |
|
3217 |
-
#: my-calendar.php:
|
3218 |
msgid "Name of the category of the event."
|
3219 |
msgstr "Nome della categoria dell'evento."
|
3220 |
|
3221 |
-
#: my-calendar.php:
|
3222 |
msgid "URL for the event's category icon."
|
3223 |
msgstr ""
|
3224 |
|
3225 |
-
#: my-calendar.php:
|
3226 |
msgid "Hex code for the event's category color."
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#: my-calendar.php:
|
3230 |
msgid "ID of the category of the event."
|
3231 |
msgstr "ID della categoria dell'evento."
|
3232 |
|
3233 |
-
#: my-calendar.php:
|
3234 |
-
#: my-calendar.php:
|
3235 |
msgid "My Calendar"
|
3236 |
msgstr "My Calendar"
|
3237 |
|
3238 |
-
#: my-calendar.php:
|
3239 |
msgid "Add/Edit Events"
|
3240 |
msgstr "Aggiungere/Modificare eventi"
|
3241 |
|
3242 |
-
#: my-calendar.php:
|
3243 |
msgid "Style Editor"
|
3244 |
msgstr "Style Editor"
|
3245 |
|
3246 |
-
#: my-calendar.php:
|
3247 |
msgid "Behavior Editor"
|
3248 |
msgstr "Editore Behavior"
|
3249 |
|
3250 |
-
#: my-calendar.php:
|
3251 |
msgid "Template Editor"
|
3252 |
msgstr ""
|
3253 |
|
2 |
# This file is distributed under the same license as the My Calendar package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-12-10 18:27:50+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: My Calendar\n"
|
12 |
|
13 |
+
#: my-calendar-event-manager.php:467
|
14 |
+
msgid "Edit events"
|
15 |
+
msgstr "Modifica gli eventi"
|
16 |
+
|
17 |
+
#: my-calendar-event-manager.php:1270
|
18 |
+
msgid "The time field must either be blank or be entered in the format hh:mm am/pm"
|
19 |
+
msgstr "Il campo \"ora\" può essere lasciato vuoto o utilizzato nel formato hh:mm am/pm"
|
20 |
+
|
21 |
+
#: my-calendar-event-manager.php:1277
|
22 |
+
msgid "The end time field must either be blank or be entered in the format hh:mm am/pm"
|
23 |
+
msgstr "Il campo \"orario finale\" può essere lasciato vuoto o utilizzato nel formato hh:mm am/pm"
|
24 |
+
|
25 |
+
#: my-calendar-help.php:13
|
26 |
+
msgid "Shortcodes"
|
27 |
+
msgstr "Shortcode"
|
28 |
+
|
29 |
+
#: my-calendar-help.php:14
|
30 |
+
msgid "Icons"
|
31 |
+
msgstr "Icone"
|
32 |
+
|
33 |
+
#: my-calendar-help.php:15
|
34 |
+
msgid "Styles"
|
35 |
+
msgstr "Stili"
|
36 |
+
|
37 |
+
#: my-calendar-help.php:16
|
38 |
+
msgid "Templating"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: my-calendar-help.php:17
|
42 |
+
msgid "Support Form"
|
43 |
+
msgstr "Modulo per il supporto"
|
44 |
+
|
45 |
+
#: my-calendar-help.php:26 my-calendar.php:153
|
46 |
+
msgid "Getting Started"
|
47 |
+
msgstr "Introduzione"
|
48 |
+
|
49 |
+
#: my-calendar-help.php:29
|
50 |
+
msgid "Although the My Calendar plug-in is very complicated in terms of what can be customized, the basic usage is quite simple."
|
51 |
+
msgstr "Anche se il plug-in My Calendar plug-in è molto complesso nella sua completa personalizzazione, l'uso di base è molto semplice."
|
52 |
+
|
53 |
+
#: my-calendar-help.php:32
|
54 |
+
msgid "Add the My Calendar shortcode (<code>[my_calendar]</code>) to a page."
|
55 |
+
msgstr "Aggiungi il shortcode My Calendar (<code>[my_calendar]</code>) ad una pagina."
|
56 |
+
|
57 |
+
#: my-calendar-help.php:33
|
58 |
+
msgid "Add events by clicking on the Add/Edit Events link in the admin sidebar or on \"Add Events\" in the admin toolbar."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: my-calendar-help.php:34
|
62 |
+
msgid "Select your preferred stylesheet in the Styles Editor"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: my-calendar-help.php:37
|
66 |
+
msgid "Read more of the basic help documentation on this page or purchase the My Calendar User's Guide to customize further -- but the above is all that you need to do to begin using the calendar."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: my-calendar-help.php:57
|
70 |
+
msgid "The shortcode supports these attributes:"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: my-calendar-help.php:70
|
74 |
+
msgid "Host or comma-separated list of hosts (WordPress usernames or IDs) to show events from."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: my-calendar-help.php:178
|
78 |
+
msgid "Displays the date on which the series of events began (for recurring events)."
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: my-calendar-help.php:217
|
82 |
+
msgid "Displays short description with any HTML stripped out."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: my-calendar-help.php:226
|
86 |
+
msgid "Displays description with any HTML stripped out."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: my-calendar-settings.php:84
|
90 |
+
msgid "Dropping occurrences database table"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: my-calendar-settings.php:87
|
94 |
+
msgid "Reinstalling occurrences database table."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: my-calendar-settings.php:90
|
98 |
+
msgid "Generating event occurrences."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: my-calendar-settings.php:92
|
102 |
+
msgid "Event generation completed."
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: my-calendar-settings.php:194
|
106 |
+
msgid "Date/Time Format Settings saved"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: my-calendar-settings.php:345
|
110 |
+
msgid "Date/Time"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: my-calendar-settings.php:397
|
114 |
+
msgid "Number of events per page in admin events list"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: my-calendar-settings.php:411
|
118 |
+
msgid "Re-generate event occurrences table."
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: my-calendar-settings.php:489
|
122 |
+
msgid "Calendar Link Targets"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: my-calendar-settings.php:503
|
126 |
+
msgid "Modify date and event link behaviors:"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: my-calendar-settings.php:516
|
130 |
+
msgid "Show links to alternate formats:"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: my-calendar-settings.php:605
|
134 |
+
msgid "Event Scheduling Defaults"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: my-calendar-settings.php:645
|
138 |
+
msgid "Calendar Time Formats"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: my-calendar-settings.php:650
|
142 |
+
msgid "Set default date/time formats"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: my-calendar-settings.php:654
|
146 |
+
msgid "Month format (calendar headings)"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: my-calendar-settings.php:654 my-calendar-settings.php:656
|
150 |
+
#: my-calendar-settings.php:659 my-calendar-settings.php:662
|
151 |
+
msgid "Now:"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: my-calendar-settings.php:670
|
155 |
+
msgid "Save Date/Time Settings"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: my-calendar-templating.php:31
|
159 |
+
msgid "RSS Feed Output Template saved"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: my-calendar-templating.php:173
|
163 |
+
msgid "My Calendar: RSS Event Template"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: my-calendar-templating.php:175
|
167 |
+
msgid "Notice: HTML templates are very forgiving of errors. RSS templates are not. Be sure to test your changes."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: my-calendar-templating.php:179
|
171 |
+
msgid "Use this custom RSS event template"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: my-calendar-templating.php:182
|
175 |
+
msgid "Your custom template for events in the RSS feed."
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: my-calendar-templating.php:185
|
179 |
+
msgid "Save RSS Template"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: my-calendar-widgets.php:62 my-calendar-widgets.php:174
|
183 |
+
msgid "Widget title links to:"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: my-calendar-widgets.php:78 my-calendar-widgets.php:212
|
187 |
+
msgid "Host or hosts to show:"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: my-calendar-widgets.php:625
|
191 |
+
msgid "Widget Title Link"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: my-calendar.php:123
|
195 |
+
msgid "Buy the <a href='http://www.joedolson.com/articles/my-calendar/submissions/' rel='external'>My Calendar: Submissions add-on</a> — let your site's visitors help build your calendar."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: my-calendar.php:158
|
199 |
+
msgid "Help translate this plug-in!"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: my-calendar-event-manager.php:630
|
203 |
msgid "All day event"
|
204 |
msgstr "Tutto il giorno"
|
205 |
|
223 |
msgid "Private category (logged-in users only)"
|
224 |
msgstr "Categoria riservata (solo utenti loggati)"
|
225 |
|
226 |
+
#: my-calendar-categories.php:286
|
227 |
msgid "Private"
|
228 |
msgstr "Riservata"
|
229 |
|
235 |
msgid "Your events have not been approved. Please investigate."
|
236 |
msgstr "I tuoi eventi non sono stati approvati. Per favore verifica."
|
237 |
|
238 |
+
#: my-calendar-event-manager.php:274
|
239 |
msgid "Event saved. An administrator will review and approve your event."
|
240 |
msgstr "Evento salvato. Un amministratore visionerà e approverà il tuo evento."
|
241 |
|
242 |
+
#: my-calendar-event-manager.php:314
|
243 |
msgid "Date/time information for this event has been updated."
|
244 |
msgstr "Le informazioni di data/ora per questo evento sono state aggiornate."
|
245 |
|
246 |
+
#: my-calendar-event-manager.php:480
|
247 |
msgid "There was an error acquiring information about this event instance. The ID for this event instance was not provided. <strong>You are editing this entire recurrence set.</strong>"
|
248 |
msgstr "C'è stato un errore nell'acquisire le informazioni su questo evento. L'ID per questo evento non è stato fornito. <strong>Stai modificando tutti i dati dell'occurrenza.</strong>"
|
249 |
|
250 |
+
#: my-calendar-event-manager.php:638
|
251 |
msgid "Hide end time"
|
252 |
msgstr "Nascondi l'orario finale"
|
253 |
|
254 |
+
#: my-calendar-event-manager.php:653
|
255 |
msgid "Dates for this event:"
|
256 |
msgstr "Date per questo evento:"
|
257 |
|
258 |
+
#: my-calendar-event-manager.php:654
|
259 |
msgid "Editing a single date of an event changes only that event. Editing the root event changes all events in the series."
|
260 |
msgstr "Modificare una singola data di un evento cambia solo quell'evento. Modificare l'evento principale cambia tutti gli eventi della serie."
|
261 |
|
262 |
+
#: my-calendar-event-manager.php:664
|
263 |
msgid "Related Events:"
|
264 |
msgstr "Eventi collegati:"
|
265 |
|
266 |
+
#: my-calendar-event-manager.php:664
|
267 |
msgid "Edit group"
|
268 |
msgstr "Modifica gruppo"
|
269 |
|
270 |
+
#: my-calendar-event-manager.php:775
|
271 |
msgid "Copy this location into the locations table"
|
272 |
msgstr "Copia questa località nella tabella delle località"
|
273 |
|
274 |
+
#: my-calendar-event-manager.php:949
|
275 |
msgid "Clear filters"
|
276 |
msgstr "Elimina i filtri"
|
277 |
|
278 |
+
#: my-calendar-event-manager.php:978
|
279 |
msgid "« Previous Page"
|
280 |
msgstr "« Pagina precedente"
|
281 |
|
282 |
+
#: my-calendar-event-manager.php:979
|
283 |
msgid "Next Page »"
|
284 |
msgstr "Pagina successiva »"
|
285 |
|
286 |
+
#: my-calendar-event-manager.php:1022
|
287 |
msgid "Filter by location"
|
288 |
msgstr "Filtro per località"
|
289 |
|
290 |
+
#: my-calendar-event-manager.php:1045
|
291 |
msgid "Filter by author"
|
292 |
msgstr "Filtro per autore"
|
293 |
|
294 |
+
#: my-calendar-event-manager.php:1054
|
295 |
msgid "Filter by category"
|
296 |
msgstr "Filtro per categoria"
|
297 |
|
298 |
+
#: my-calendar-event-manager.php:1093
|
299 |
msgid "Approve checked events"
|
300 |
msgstr "Approva gli eventi selezionati"
|
301 |
|
302 |
+
#: my-calendar-event-manager.php:1304
|
303 |
msgid "That event conflicts with a previously scheduled event."
|
304 |
msgstr "Questo evento è in conflitto con un evento già previsto"
|
305 |
|
306 |
+
#: my-calendar-event-manager.php:1493
|
307 |
msgid "Editing: "
|
308 |
msgstr "Modifica:"
|
309 |
|
310 |
+
#: my-calendar-event-manager.php:1529 my-calendar-event-manager.php:1542
|
311 |
msgid "No related events"
|
312 |
msgstr "Nessun evento correlato"
|
313 |
|
332 |
msgid "Ungrouped Events"
|
333 |
msgstr "Eventi non raggruppati"
|
334 |
|
335 |
+
#: my-calendar-help.php:69
|
336 |
msgid "Author or comma-separated list of authors (usernames or IDs) to show events from."
|
337 |
msgstr "Autore o lista di autori (username o ID) separata da virgole di cui mostrare gli eventi."
|
338 |
|
339 |
+
#: my-calendar-help.php:78
|
340 |
msgid "This shortcode displays the output of the Upcoming Events widget. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either \"event\" or \"days\", and the <code>category</code> and <code>author</code> attributes work the same way as on the main calendar shortcode. Templates work using the template codes listed below. <code>fallback</code> provides text in case there are no events meeting your criteria. Order provides a sort order for the events list – either ascending (<code>asc</code>) or descending (<code>desc</code>). <code>show_today</code> is an indicator whether or not to include today's events in the list. <code>Skip</code> is the number of events to skip in the upcoming events."
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: my-calendar-help.php:82
|
344 |
msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with four configurable attributes: category, author, template and fallback text."
|
345 |
msgstr "Come prevedibile, questa abbreviazione mostra ciò che è prodotto dal widget Eventi di oggi, con quattro attributi configurabili: categoria, autore, modello e testo alternativo."
|
346 |
|
347 |
+
#: my-calendar-help.php:89
|
348 |
msgid "Displays a single event and/or all dates for that event. If template is set to a blank value, will only display the list of occurrences. If the list attribute is set blank, will only show the event template"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: my-calendar-help.php:101
|
352 |
msgid "Use the <code>template</code> attribute to show your own customized set of data. The data will be sorted by the <code>datatype</code> value."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: my-calendar-help.php:190
|
356 |
msgid "Displays the beginning and end times for events. Does not show end time if same as start or if marked as hidden."
|
357 |
+
msgstr "Mostra l'orario iniziale e finale per gli eventi. Non mostra l'orario finale se è lo stesso di quello iniziale o è segnato come nascosto."
|
358 |
|
359 |
+
#: my-calendar-help.php:286
|
360 |
msgid "Output the stored phone number for the location."
|
361 |
msgstr "Restituisce il numero di telefono memorizzato per la località."
|
362 |
|
363 |
+
#: my-calendar-settings.php:185
|
364 |
msgid "Visit your <a href=\"%s\">permalinks settings</a> and re-save them."
|
365 |
msgstr "Visita le tue <a href=\"%s\">opzioni permalink</a> e risalvale."
|
366 |
|
367 |
+
#: my-calendar-settings.php:375
|
368 |
msgid "You will need to allow remote connections from this site to the site hosting your My Calendar events. Replace the above placeholders with the host-site information. The two sites must have the same WP table prefix. While this option is enabled, you may not enter or edit events through this installation."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: my-calendar-settings.php:521
|
372 |
msgid "iCal times are UTC"
|
373 |
msgstr "Le ore su iCal sono UTC"
|
374 |
|
375 |
+
#: my-calendar-settings.php:561
|
376 |
msgid "Show author's name"
|
377 |
msgstr "Mostra il nome dell'autore"
|
378 |
|
379 |
+
#: my-calendar-settings.php:564
|
380 |
msgid "Show link to single event iCal download"
|
381 |
msgstr "Mostra link per scaricare in formato iCal. "
|
382 |
|
383 |
+
#: my-calendar-settings.php:567
|
384 |
msgid "Show category icons"
|
385 |
msgstr "Mostra le icone di categoria"
|
386 |
|
387 |
+
#: my-calendar-settings.php:576
|
388 |
msgid "Show short description"
|
389 |
msgstr "Mostra descrizione abbreviata"
|
390 |
|
391 |
+
#: my-calendar-settings.php:579
|
392 |
msgid "Show full description"
|
393 |
msgstr "Mostra la descrizione completa"
|
394 |
|
395 |
+
#: my-calendar-settings.php:582
|
396 |
msgid "Process WordPress shortcodes in description fields"
|
397 |
msgstr "Utilizza le abbreviazioni WordPress nei campi descrizione"
|
398 |
|
399 |
+
#: my-calendar-settings.php:585
|
400 |
msgid "Show link to single-event details (requires <a href='#mc_uri'>URL</a>)"
|
401 |
msgstr "Mostra i collegamenti ai dettagli degli eventi singoli (richiede <a href='#mc_uri'>URL</a>)"
|
402 |
|
403 |
+
#: my-calendar-settings.php:588
|
404 |
msgid "Show external link"
|
405 |
msgstr "Mostra collegamenti esterni"
|
406 |
|
407 |
+
#: my-calendar-settings.php:690
|
408 |
msgid "Show Event Image field"
|
409 |
msgstr "Mostra il campo Immagine Evento"
|
410 |
|
411 |
+
#: my-calendar-settings.php:690
|
412 |
msgid "Show Event Registration options"
|
413 |
msgstr "Mostra le opzioni Registrazione evento"
|
414 |
|
415 |
+
#: my-calendar-settings.php:690
|
416 |
msgid "Show Event Location fields"
|
417 |
msgstr "Mostra i campi Luogo evento"
|
418 |
|
419 |
+
#: my-calendar-settings.php:690
|
420 |
msgid "Set Special Scheduling options"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: my-calendar-styles.php:84
|
424 |
msgid "Styles are disabled, and were not edited."
|
425 |
msgstr "Gli stili sono disabilitati e non sono stati modificati"
|
426 |
|
427 |
+
#: my-calendar-styles.php:197
|
428 |
msgid "Apply CSS on these pages (comma separated IDs)"
|
429 |
msgstr "Utilizza i CSS in queste pagine (ID separati da virgola)"
|
430 |
|
431 |
+
#: my-calendar-widgets.php:74 my-calendar-widgets.php:208
|
432 |
msgid "Author or authors to show:"
|
433 |
msgstr "Autore od autori da mostrare:"
|
434 |
|
435 |
+
#: my-calendar.php:121
|
436 |
msgid "My Calendar: Submissions"
|
437 |
msgstr "My Calendar: sottoscrizioni"
|
438 |
|
439 |
+
#: my-calendar.php:124
|
|
|
|
|
|
|
|
|
440 |
msgid "Learn more!"
|
441 |
msgstr "Maggiori informazioni!"
|
442 |
|
443 |
+
#: my-calendar.php:340
|
444 |
msgid "Event Submissions"
|
445 |
msgstr "Sottoscrizioni agli eventi"
|
446 |
|
447 |
+
#: my-calendar.php:341
|
448 |
msgid "Payments"
|
449 |
msgstr "Pagamenti"
|
450 |
|
468 |
msgid "All locations"
|
469 |
msgstr "Tutte le località"
|
470 |
|
471 |
+
#: button/generator.php:55 my-calendar-settings.php:393
|
472 |
+
#: my-calendar-settings.php:904
|
473 |
msgid "Location Name"
|
474 |
msgstr "Nome Località"
|
475 |
|
476 |
+
#: button/generator.php:56 my-calendar-event-manager.php:795
|
477 |
#: my-calendar-group-manager.php:460 my-calendar-locations.php:152
|
478 |
+
#: my-calendar-settings.php:905
|
479 |
msgid "City"
|
480 |
msgstr "Città"
|
481 |
|
482 |
+
#: button/generator.php:57 my-calendar-event-manager.php:842
|
483 |
#: my-calendar-group-manager.php:476 my-calendar-locations.php:197
|
484 |
msgid "State"
|
485 |
msgstr "Stato"
|
486 |
|
487 |
+
#: button/generator.php:58 my-calendar-event-manager.php:811
|
488 |
#: my-calendar-group-manager.php:463 my-calendar-locations.php:168
|
489 |
+
#: my-calendar-settings.php:908
|
490 |
msgid "Postal Code"
|
491 |
msgstr "Codice Postale"
|
492 |
|
493 |
+
#: button/generator.php:59 my-calendar-event-manager.php:827
|
494 |
#: my-calendar-group-manager.php:467 my-calendar-locations.php:184
|
495 |
+
#: my-calendar-settings.php:907
|
496 |
msgid "Country"
|
497 |
msgstr "Paese"
|
498 |
|
499 |
+
#: button/generator.php:60 my-calendar-event-manager.php:818
|
500 |
+
#: my-calendar-event-manager.php:843 my-calendar-group-manager.php:464
|
501 |
#: my-calendar-group-manager.php:477 my-calendar-locations.php:175
|
502 |
+
#: my-calendar-locations.php:198 my-calendar-settings.php:909
|
503 |
msgid "Region"
|
504 |
msgstr "Regione"
|
505 |
|
524 |
msgstr "Mostra la chiave della categoria"
|
525 |
|
526 |
#: button/generator.php:77 button/generator.php:84 button/generator.php:91
|
527 |
+
#: button/generator.php:98 my-calendar-widgets.php:634
|
528 |
+
#: my-calendar-widgets.php:640 my-calendar-widgets.php:646
|
529 |
msgid "Yes"
|
530 |
msgstr "Sì"
|
531 |
|
532 |
#: button/generator.php:78 button/generator.php:85 button/generator.php:92
|
533 |
+
#: button/generator.php:99 my-calendar-widgets.php:635
|
534 |
+
#: my-calendar-widgets.php:641 my-calendar-widgets.php:647
|
535 |
msgid "No"
|
536 |
msgstr "No"
|
537 |
|
539 |
msgid "Show Previous/Next Links"
|
540 |
msgstr "Mostra i collegamenti Precedente/Successivo"
|
541 |
|
542 |
+
#: button/generator.php:89 my-calendar-widgets.php:639
|
543 |
msgid "Show Jumpbox"
|
544 |
msgstr ""
|
545 |
|
551 |
msgid "Time Segment"
|
552 |
msgstr "Segmento orario"
|
553 |
|
554 |
+
#: button/generator.php:105 my-calendar-output.php:383
|
555 |
+
#: my-calendar-widgets.php:652
|
556 |
msgid "Month"
|
557 |
msgstr "Mese"
|
558 |
|
559 |
+
#: button/generator.php:106 my-calendar-widgets.php:653
|
560 |
msgid "Week"
|
561 |
msgstr "Settimana"
|
562 |
|
619 |
|
620 |
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
621 |
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
622 |
+
#: my-calendar-styles.php:217
|
623 |
msgid "Latest (from plugin)"
|
624 |
msgstr "Ultimo (da plugin)"
|
625 |
|
626 |
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
627 |
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
628 |
+
#: my-calendar-styles.php:217
|
629 |
msgid "Current (in use)"
|
630 |
+
msgstr "Attuale (in uso)"
|
631 |
|
632 |
#: my-calendar-behaviors.php:102
|
633 |
msgid "There have been updates to the calendar view scripts."
|
636 |
#: my-calendar-behaviors.php:102 my-calendar-behaviors.php:134
|
637 |
#: my-calendar-behaviors.php:165 my-calendar-behaviors.php:197
|
638 |
msgid "Compare your scripts with latest installed version of My Calendar."
|
639 |
+
msgstr "Compara i tuoi script con l'ultima versione installata di My Calendar"
|
640 |
|
641 |
#: my-calendar-behaviors.php:106 my-calendar-behaviors.php:138
|
642 |
#: my-calendar-behaviors.php:169 my-calendar-behaviors.php:201
|
655 |
|
656 |
#: my-calendar-behaviors.php:120
|
657 |
msgid "Update/Reset the My Calendar List Javascript"
|
658 |
+
msgstr "Aggiorna/Cancella l'elenco di Javascript in My Calendar"
|
659 |
|
660 |
#: my-calendar-behaviors.php:120
|
661 |
msgid "Disable List Javascript Effects"
|
667 |
|
668 |
#: my-calendar-behaviors.php:134
|
669 |
msgid "There have been updates to the list view scripts."
|
670 |
+
msgstr "Ci sono degli aggiornamenti alla vista elenco degli script."
|
671 |
|
672 |
#: my-calendar-behaviors.php:149
|
673 |
msgid "Calendar Behaviors: Mini Calendar View"
|
687 |
|
688 |
#: my-calendar-behaviors.php:165
|
689 |
msgid "There have been updates to the mini view scripts."
|
690 |
+
msgstr "Ci sono degli aggiornamenti alla mini vista degli script."
|
691 |
|
692 |
#: my-calendar-behaviors.php:181
|
693 |
msgid "Calendar Behaviors: AJAX Navigation"
|
695 |
|
696 |
#: my-calendar-behaviors.php:183
|
697 |
msgid "Update/Reset the My Calendar AJAX Javascript"
|
698 |
+
msgstr "Aggiorna/Cancella il Javascript AJAX in My Calendar"
|
699 |
|
700 |
#: my-calendar-behaviors.php:183
|
701 |
msgid "Disable AJAX Effects"
|
746 |
msgid "Category Editor"
|
747 |
msgstr "Editore di Categoria"
|
748 |
|
749 |
+
#: my-calendar-categories.php:214 my-calendar-categories.php:283
|
750 |
msgid "Category Name"
|
751 |
msgstr "Nome della categoria"
|
752 |
|
754 |
msgid "Category Color (Hex format)"
|
755 |
msgstr "Colore Categoria (Formato Hex)"
|
756 |
|
757 |
+
#: my-calendar-categories.php:216 my-calendar-categories.php:285
|
758 |
msgid "Category Icon"
|
759 |
msgstr "Icona Categoria"
|
760 |
|
761 |
#: my-calendar-categories.php:236 my-calendar-locations.php:215
|
762 |
+
#: my-calendar-styles.php:206
|
763 |
msgid "Save Changes"
|
764 |
msgstr "Salva le modifiche"
|
765 |
|
771 |
msgid "Category List"
|
772 |
msgstr "Elenco categorie"
|
773 |
|
774 |
+
#: my-calendar-categories.php:266 my-calendar.php:327
|
775 |
msgid "Manage Categories"
|
776 |
msgstr "Gestione categorie"
|
777 |
|
778 |
+
#: my-calendar-categories.php:282 my-calendar-event-manager.php:993
|
779 |
#: my-calendar-group-manager.php:731 my-calendar-locations.php:288
|
780 |
msgid "ID"
|
781 |
msgstr "ID"
|
782 |
|
783 |
+
#: my-calendar-categories.php:284
|
784 |
msgid "Category Color"
|
785 |
msgstr "Colore Categoria"
|
786 |
|
787 |
+
#: my-calendar-categories.php:287 my-calendar-categories.php:303
|
788 |
+
#: my-calendar-event-manager.php:1059 my-calendar-group-manager.php:740
|
789 |
#: my-calendar-locations.php:290 my-calendar-locations.php:302
|
790 |
+
#: my-calendar-output.php:318
|
791 |
msgid "Edit"
|
792 |
msgstr "Modifica"
|
793 |
|
794 |
+
#: my-calendar-categories.php:288 my-calendar-categories.php:309
|
795 |
+
#: my-calendar-event-manager.php:133 my-calendar-event-manager.php:1062
|
796 |
#: my-calendar-locations.php:291 my-calendar-locations.php:303
|
797 |
+
#: my-calendar-output.php:319
|
798 |
msgid "Delete"
|
799 |
msgstr "Cancella"
|
800 |
|
801 |
+
#: my-calendar-categories.php:306 my-calendar-event-manager.php:1040
|
802 |
+
#: my-calendar-group-manager.php:780 my-calendar-output.php:208
|
803 |
+
#: my-calendar-settings.php:436
|
804 |
msgid "N/A"
|
805 |
msgstr "n.d."
|
806 |
|
807 |
+
#: my-calendar-categories.php:309 my-calendar-locations.php:303
|
808 |
msgid "Are you sure you want to delete this category?"
|
809 |
msgstr "Sei sicuro di voler cancellare questa categoria?"
|
810 |
|
811 |
+
#: my-calendar-categories.php:320
|
812 |
msgid "There are no categories in the database - something has gone wrong!"
|
813 |
msgstr "Non esistono categorie nel database - qualcosa non ha funzionato!"
|
814 |
|
815 |
+
#: my-calendar-core.php:58 my-calendar.php:331
|
816 |
msgid "Settings"
|
817 |
msgstr "Impostazioni"
|
818 |
|
819 |
+
#: my-calendar-core.php:59 my-calendar.php:335
|
820 |
msgid "Help"
|
821 |
msgstr "Aiuto"
|
822 |
|
823 |
+
#: my-calendar-core.php:199
|
824 |
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
825 |
msgstr "<br /><strong>Nota:</strong> Per favore verifica il <a class=\"thickbox\" href=\"%1$s\">changelog</a> prima di aggiornare."
|
826 |
|
827 |
+
#: my-calendar-core.php:1053 my-calendar-event-manager.php:233
|
828 |
msgid "Add Event"
|
829 |
msgstr "Aggiungi Evento"
|
830 |
|
831 |
+
#: my-calendar-core.php:1299
|
832 |
msgid "Is this your calendar page?"
|
833 |
msgstr "È la pagina del tuo calendario?"
|
834 |
|
835 |
+
#: my-calendar-core.php:1302
|
836 |
msgid "I tried to guess, but don't have a suggestion for you."
|
837 |
msgstr "Ho tirato ad indovinare, ma non ho nulla da suggerire."
|
838 |
|
839 |
+
#: my-calendar-core.php:1396
|
840 |
msgid "Please read the FAQ and other Help documents before making a support request."
|
841 |
msgstr "Per favore leggi le FAQ e il resto della documentazione di aiuto prima di inviare una richiesta di assistenza."
|
842 |
|
843 |
+
#: my-calendar-core.php:1398
|
844 |
msgid "Please describe your problem in detail. I'm not psychic."
|
845 |
msgstr "Per favore descrivi dettagliatamente il problema. Non leggo nella mente."
|
846 |
|
847 |
+
#: my-calendar-core.php:1403
|
848 |
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
|
849 |
msgstr "Grazie per sostenere lo sviluppo di questo plug-in! Risponderò appena possibile."
|
850 |
|
851 |
+
#: my-calendar-core.php:1405
|
852 |
msgid "I'll get back to you as soon as I can, after dealing with any support requests from plug-in supporters."
|
853 |
msgstr "Risponderò appena possibile dopo aver esaurito le richieste di assistenza per il plug-in."
|
854 |
|
855 |
+
#: my-calendar-core.php:1415
|
856 |
msgid "Please note: I do keep records of those who have donated, <strong>but if your donation came from somebody other than your account at this web site, please note this in your message.</strong>"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: my-calendar-core.php:1417
|
860 |
msgid "From:"
|
861 |
msgstr "Da:"
|
862 |
|
863 |
+
#: my-calendar-core.php:1420
|
864 |
msgid "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">the FAQ for this plug-in</a>."
|
865 |
msgstr "Ho letto <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">le FAQ per questo plug-in</a>."
|
866 |
|
867 |
+
#: my-calendar-core.php:1423
|
868 |
msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
|
869 |
msgstr "Ho <a href=\"http://www.joedolson.com/donate.php\">fatto una donazione per sostenere questo plug-in</a>."
|
870 |
|
871 |
+
#: my-calendar-core.php:1426
|
872 |
msgid "I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">purchased the User's Guide</a>, but could not find an answer to this question."
|
873 |
msgstr "Ho <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">comprato la Guida Utente</a>, ma non ho trovato una risposta a questo problema."
|
874 |
|
875 |
+
#: my-calendar-core.php:1432
|
876 |
msgid "Send Support Request"
|
877 |
msgstr "Invia richiesta di assistenza"
|
878 |
|
879 |
+
#: my-calendar-core.php:1435
|
880 |
msgid "The following additional information will be sent with your support request:"
|
881 |
msgstr "Le seguenti informazioni aggiuntive verranno inviate con la tua richiesta di assistenza:"
|
882 |
|
883 |
+
#: my-calendar-event-manager.php:13 my-calendar-settings.php:322
|
884 |
msgid "My Calendar has identified that you have the Calendar plugin by Kieran O'Shea installed. You can import those events and categories into the My Calendar database. Would you like to import these events?"
|
885 |
msgstr "My calendar ha identificato che hai il plugin the calendar di Kieran O'Shea installato. È possibile importare gli eventi e le categorie nel database di My calendar. Ti piacerebbe importare questi eventi?"
|
886 |
|
887 |
+
#: my-calendar-event-manager.php:20 my-calendar-settings.php:328
|
888 |
msgid "Import from Calendar"
|
889 |
msgstr "Importa da calendario"
|
890 |
|
897 |
msgstr "%1$d eventi cancellati con successo su %2$d selezionati"
|
898 |
|
899 |
#: my-calendar-event-manager.php:76 my-calendar-event-manager.php:106
|
900 |
+
#: my-calendar-event-manager.php:264 my-calendar-event-manager.php:335
|
901 |
+
#: my-calendar-event-manager.php:352 my-calendar-event-manager.php:371
|
902 |
+
#: my-calendar-event-manager.php:1257 my-calendar-event-manager.php:1260
|
903 |
+
#: my-calendar-event-manager.php:1270 my-calendar-event-manager.php:1277
|
904 |
+
#: my-calendar-event-manager.php:1293 my-calendar-event-manager.php:1299
|
905 |
+
#: my-calendar-event-manager.php:1304 my-calendar-group-manager.php:58
|
906 |
#: my-calendar-group-manager.php:84 my-calendar-group-manager.php:148
|
907 |
#: my-calendar-group-manager.php:585
|
908 |
msgid "Error"
|
912 |
msgid "Your events have not been deleted. Please investigate."
|
913 |
msgstr "I tuoi eventi non sono stati cancellati. Si prega di indagare."
|
914 |
|
915 |
+
#: my-calendar-event-manager.php:126
|
916 |
msgid "Delete Event"
|
917 |
msgstr "Cancellare evento"
|
918 |
|
919 |
+
#: my-calendar-event-manager.php:126
|
920 |
msgid "Are you sure you want to delete this event?"
|
921 |
msgstr "Sei sicuro di voler cancellare questo evento?"
|
922 |
|
923 |
+
#: my-calendar-event-manager.php:138
|
924 |
msgid "You do not have permission to delete that event."
|
925 |
msgstr "Non hai il permesso per cancellare l'evento."
|
926 |
|
927 |
+
#: my-calendar-event-manager.php:152
|
928 |
msgid "You do not have permission to approve that event."
|
929 |
msgstr "Non hai il permesso per approvare questo evento."
|
930 |
|
931 |
+
#: my-calendar-event-manager.php:167
|
932 |
msgid "You do not have permission to reject that event."
|
933 |
msgstr "Non hai il permesso per rifiutare questo evento."
|
934 |
|
935 |
+
#: my-calendar-event-manager.php:204
|
936 |
msgid "Currently editing your local calendar"
|
937 |
msgstr "Sto modificando il tuo calendario locale"
|
938 |
|
939 |
+
#: my-calendar-event-manager.php:206
|
940 |
msgid "Currently editing your central calendar"
|
941 |
msgstr "Sto modificando il tuo calendario centrale"
|
942 |
|
943 |
+
#: my-calendar-event-manager.php:214 my-calendar-group-manager.php:798
|
944 |
msgid "Edit Event"
|
945 |
msgstr "Modifica evento"
|
946 |
|
947 |
+
#: my-calendar-event-manager.php:217 my-calendar-event-manager.php:226
|
948 |
msgid "You must provide an event id in order to edit it"
|
949 |
msgstr "È necessario fornire un ID evento al fine di modificarlo"
|
950 |
|
951 |
+
#: my-calendar-event-manager.php:223
|
952 |
msgid "Copy Event"
|
953 |
msgstr "Copia Evento"
|
954 |
|
955 |
+
#: my-calendar-event-manager.php:264
|
956 |
msgid "I'm sorry! I couldn't add that event to the database."
|
957 |
msgstr "Spiacente! Non ho potuto aggiungere l'evento al database."
|
958 |
|
959 |
+
#: my-calendar-event-manager.php:276
|
960 |
msgid "Event added. It will now show in your calendar."
|
961 |
msgstr "Evento aggiunto. Adesso sarà visibile nel tuo calendario."
|
962 |
|
963 |
+
#: my-calendar-event-manager.php:282 my-calendar-group-manager.php:56
|
964 |
#: my-calendar-group-manager.php:146
|
965 |
msgid "View <a href=\"%s\">your calendar</a>."
|
966 |
msgstr "Visualizza <a href=\"%s\">il tuo calendario</a>."
|
967 |
|
968 |
+
#: my-calendar-event-manager.php:335 my-calendar-group-manager.php:148
|
969 |
msgid "Your event was not updated."
|
970 |
msgstr "L'evento non è stato aggiornato."
|
971 |
|
972 |
+
#: my-calendar-event-manager.php:310 my-calendar-event-manager.php:337
|
973 |
#: my-calendar-group-manager.php:60 my-calendar-group-manager.php:86
|
974 |
#: my-calendar-group-manager.php:150
|
975 |
msgid "Nothing was changed in that update."
|
976 |
msgstr "Niente è stato modificato in questo aggiornamento."
|
977 |
|
978 |
+
#: my-calendar-event-manager.php:341 my-calendar-group-manager.php:62
|
979 |
#: my-calendar-group-manager.php:152
|
980 |
msgid "Event updated successfully"
|
981 |
msgstr "Evento aggiornato con successo"
|
982 |
|
983 |
+
#: my-calendar-event-manager.php:345 my-calendar-group-manager.php:156
|
984 |
msgid "You do not have sufficient permissions to edit that event."
|
985 |
msgstr "Non si dispone di permessi sufficienti per modificare tale evento."
|
986 |
|
987 |
+
#: my-calendar-event-manager.php:352
|
988 |
msgid "You can't delete an event if you haven't submitted an event id"
|
989 |
msgstr "Non è possibile eliminare un evento se non viene indicato un ID evento"
|
990 |
|
991 |
+
#: my-calendar-event-manager.php:369
|
992 |
msgid "Event deleted successfully"
|
993 |
msgstr "Evento cancellato con successo"
|
994 |
|
995 |
+
#: my-calendar-event-manager.php:371
|
996 |
msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
|
997 |
msgstr "Despite issuing a request to delete, the event still remains in the database. Please investigate."
|
998 |
|
999 |
+
#: my-calendar-event-manager.php:384 my-calendar-group-manager.php:168
|
1000 |
msgid "Sorry! That's an invalid event key."
|
1001 |
msgstr "Spiacente! Questa chiave di evento non è valida."
|
1002 |
|
1003 |
+
#: my-calendar-event-manager.php:388 my-calendar-group-manager.php:172
|
1004 |
msgid "Sorry! We couldn't find an event with that ID."
|
1005 |
msgstr "Spiacente! Non riusciamo a trovare un evento con questo ID."
|
1006 |
|
1007 |
+
#: my-calendar-event-manager.php:414
|
1008 |
msgid "This event must be approved in order for it to appear on the calendar."
|
1009 |
msgstr "Questo evento deve essere approvato in modo che venga visualizzato sul calendario."
|
1010 |
|
1011 |
+
#: my-calendar-event-manager.php:467
|
1012 |
msgid "Add/Edit Event"
|
1013 |
msgstr "Aggiungi/Modifica evento"
|
1014 |
|
1015 |
+
#: my-calendar-event-manager.php:470 my-calendar-event-manager.php:889
|
1016 |
msgid "Save Event"
|
1017 |
msgstr "Salva Evento"
|
1018 |
|
1019 |
+
#: my-calendar-event-manager.php:484 my-calendar-group-manager.php:298
|
1020 |
msgid "Enter your Event Information"
|
1021 |
msgstr "Inserisci le informazioni del tuo evento"
|
1022 |
|
1023 |
+
#: my-calendar-event-manager.php:486 my-calendar-group-manager.php:300
|
1024 |
msgid "Event Title"
|
1025 |
msgstr "Titolo dell'evento"
|
1026 |
|
1027 |
+
#: my-calendar-event-manager.php:486 my-calendar-event-manager.php:624
|
1028 |
#: my-calendar-group-manager.php:300
|
1029 |
msgid "(required)"
|
1030 |
msgstr "(obbligatorio)"
|
1031 |
|
1032 |
+
#: my-calendar-event-manager.php:490
|
1033 |
msgid "Publish"
|
1034 |
msgstr "Pubblica"
|
1035 |
|
1036 |
+
#: my-calendar-event-manager.php:490
|
1037 |
msgid "You must approve this event to promote it to the calendar."
|
1038 |
msgstr "È necessario approvare questo evento per promuovere al calendario."
|
1039 |
|
1040 |
+
#: my-calendar-event-manager.php:492
|
1041 |
msgid "An administrator must approve your new event."
|
1042 |
msgstr "Un amministratore deve approvare il nuovo evento."
|
1043 |
|
1044 |
+
#: my-calendar-event-manager.php:505
|
1045 |
msgid "This event is not spam"
|
1046 |
msgstr "Questo evento non è spam"
|
1047 |
|
1048 |
+
#: my-calendar-event-manager.php:512 my-calendar-group-manager.php:314
|
1049 |
msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
1050 |
msgstr "Descrizione Evento (<abbr title=\"hypertext markup language\">HTML</abbr> permesso)"
|
1051 |
|
1052 |
+
#: my-calendar-event-manager.php:534 my-calendar-event-manager.php:547
|
1053 |
#: my-calendar-group-manager.php:325 my-calendar-group-manager.php:333
|
1054 |
msgid "This event's image:"
|
1055 |
msgstr "Immagine per questo evento:"
|
1056 |
|
1057 |
+
#: my-calendar-event-manager.php:536 my-calendar-group-manager.php:327
|
1058 |
msgid "Add an image:"
|
1059 |
msgstr "Aggiungi un'immagine:"
|
1060 |
|
1061 |
+
#: my-calendar-event-manager.php:538
|
1062 |
msgid "(URL to Event image)"
|
1063 |
msgstr "(URL dell'immagine dell'evento)"
|
1064 |
|
1065 |
+
#: my-calendar-event-manager.php:540 my-calendar-group-manager.php:327
|
1066 |
msgid "Upload Image"
|
1067 |
msgstr "Carica immagine"
|
1068 |
|
1069 |
+
#: my-calendar-event-manager.php:540 my-calendar-group-manager.php:327
|
1070 |
msgid "Include your image URL or upload an image."
|
1071 |
msgstr "Aggiungi l'URL della tua immagine o caricane una."
|
1072 |
|
1073 |
+
#: my-calendar-event-manager.php:553 my-calendar-group-manager.php:339
|
1074 |
msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
1075 |
msgstr "Descrizione breve Evento (<abbr title=\"hypertext markup language\">HTML</abbr> permesso)"
|
1076 |
|
1077 |
+
#: my-calendar-event-manager.php:557 my-calendar-group-manager.php:343
|
1078 |
msgid "Event Host"
|
1079 |
msgstr "Assegna Evento a"
|
1080 |
|
1081 |
+
#: my-calendar-event-manager.php:576 my-calendar-group-manager.php:362
|
1082 |
msgid "Event Category"
|
1083 |
msgstr "Categoria dell'evento "
|
1084 |
|
1085 |
+
#: my-calendar-event-manager.php:588 my-calendar-group-manager.php:374
|
1086 |
msgid "Event Link (Optional)"
|
1087 |
msgstr "Link dell'evento (opzionale)"
|
1088 |
|
1089 |
+
#: my-calendar-event-manager.php:588 my-calendar-group-manager.php:374
|
1090 |
msgid "This link will expire when the event passes."
|
1091 |
msgstr "Questo link scade quando l'evento passa."
|
1092 |
|
1093 |
+
#: my-calendar-event-manager.php:598 my-calendar-event-manager.php:606
|
1094 |
msgid "Event Date and Time"
|
1095 |
msgstr "Data e Ora dell'Evento"
|
1096 |
|
1097 |
+
#: my-calendar-event-manager.php:624
|
1098 |
msgid "Start Date (YYYY-MM-DD)"
|
1099 |
msgstr "Data Inizio (YYYY-MM-DD)"
|
1100 |
|
1101 |
+
#: my-calendar-event-manager.php:624
|
1102 |
msgid "Time (hh:mm am/pm)"
|
1103 |
msgstr "Ora (hh:mm am/pm)"
|
1104 |
|
1105 |
+
#: my-calendar-event-manager.php:633
|
1106 |
msgid "End Date (YYYY-MM-DD)"
|
1107 |
msgstr "Data Fine (YYYY-MM-DD)"
|
1108 |
|
1109 |
+
#: my-calendar-event-manager.php:633
|
1110 |
msgid "End Time (hh:mm am/pm)"
|
1111 |
msgstr "Ora fine (hh:mm am/pm)"
|
1112 |
|
1113 |
+
#: my-calendar-event-manager.php:644
|
1114 |
msgid "This is a multi-day event."
|
1115 |
msgstr "Questo è un evento multi giornata."
|
1116 |
|
1117 |
+
#: my-calendar-event-manager.php:646
|
1118 |
msgid "Enter the beginning and ending dates/times for each occurrence of the event."
|
1119 |
msgstr "Inserisci data/ora di inizio e fine per ogni occorrenza dell'evento."
|
1120 |
|
1121 |
+
#: my-calendar-event-manager.php:646
|
1122 |
msgid "If this is a multi-day event, it creates a single event with multiple dates/times; otherwise it creates separate events for each occurrence."
|
1123 |
msgstr "Se questo è un evento multi giornata, si creerà un evento singolo con più date/ore; altrimenti creerà singoli eventi per ogni occorrenza. "
|
1124 |
|
1125 |
+
#: my-calendar-event-manager.php:648
|
1126 |
msgid "Add another occurrence"
|
1127 |
msgstr "Aggiungi un'altra occorrenza"
|
1128 |
|
1129 |
+
#: my-calendar-event-manager.php:649
|
1130 |
msgid "Remove last occurrence"
|
1131 |
msgstr "Rimuovi l'ultima occorrenza"
|
1132 |
|
1133 |
+
#: my-calendar-event-manager.php:671
|
1134 |
msgid "Current time difference from GMT is "
|
1135 |
msgstr "La differenza di ora rispetto al GMT è"
|
1136 |
|
1137 |
+
#: my-calendar-event-manager.php:671
|
1138 |
msgid " hour(s)"
|
1139 |
msgstr " ora(e)"
|
1140 |
|
1141 |
+
#: my-calendar-event-manager.php:681 my-calendar-event-manager.php:688
|
1142 |
msgid "Recurring Events"
|
1143 |
msgstr "Eventi ripetuti"
|
1144 |
|
1145 |
+
#: my-calendar-event-manager.php:691
|
1146 |
msgid "Repeats for"
|
1147 |
msgstr "Ripete per"
|
1148 |
|
1149 |
+
#: my-calendar-event-manager.php:692
|
1150 |
msgid "Units"
|
1151 |
msgstr "Unità"
|
1152 |
|
1153 |
+
#: my-calendar-core.php:1456 my-calendar-templates.php:151
|
1154 |
msgid "Does not recur"
|
1155 |
msgstr "Non si ripresenta"
|
1156 |
|
1157 |
+
#: my-calendar-core.php:1457 my-calendar-event-manager.php:1031
|
1158 |
+
#: my-calendar-group-manager.php:772 my-calendar-templates.php:152
|
1159 |
msgid "Daily"
|
1160 |
msgstr "Giornaliero"
|
1161 |
|
1162 |
+
#: my-calendar-core.php:1458 my-calendar-templates.php:153
|
1163 |
msgid "Daily, weekdays only"
|
1164 |
msgstr "Giornaliero, solo nei feriali"
|
1165 |
|
1166 |
+
#: my-calendar-core.php:1459 my-calendar-event-manager.php:1033
|
1167 |
+
#: my-calendar-group-manager.php:774 my-calendar-templates.php:154
|
1168 |
msgid "Weekly"
|
1169 |
msgstr "Settimanale"
|
1170 |
|
1171 |
+
#: my-calendar-core.php:1460 my-calendar-templates.php:155
|
1172 |
msgid "Bi-weekly"
|
1173 |
msgstr "Bi-settimanale"
|
1174 |
|
1175 |
+
#: my-calendar-core.php:1461
|
1176 |
msgid "Date of Month (e.g., the 24th of each month)"
|
1177 |
msgstr "Data del Mese (ad es., il 24 di ogni mese)"
|
1178 |
|
1179 |
+
#: my-calendar-core.php:1462
|
1180 |
msgid "Day of Month (e.g., the 3rd Monday of each month)"
|
1181 |
msgstr "Giorno del Mese (ad es., il 3° Lunedì di ogni mese)"
|
1182 |
|
1183 |
+
#: my-calendar-core.php:1463 my-calendar-templates.php:158
|
1184 |
msgid "Annually"
|
1185 |
msgstr "Annuale"
|
1186 |
|
1187 |
+
#: my-calendar-event-manager.php:698
|
1188 |
msgid "Your entry is the number of events after the first occurrence of the event: a recurrence of <em>2</em> means the event will happen three times."
|
1189 |
msgstr "Devi inserire il numero di eventi dopo la prima occorrenza: inserire <em>2</em> significa che l'evento accadrà tre volte."
|
1190 |
|
1191 |
+
#: my-calendar-event-manager.php:719
|
1192 |
msgid "Event Registration Settings"
|
1193 |
msgstr "Opzioni registrazione evento"
|
1194 |
|
1195 |
+
#: my-calendar-event-manager.php:722 my-calendar-group-manager.php:388
|
1196 |
msgid "Event Registration Status"
|
1197 |
msgstr "Stato di Registrazione Evento"
|
1198 |
|
1199 |
+
#: my-calendar-event-manager.php:723 my-calendar-group-manager.php:389
|
1200 |
msgid "My Calendar does not manage event registrations. Use this for information only."
|
1201 |
msgstr "My Calendar non gestisce le registrazioni degli eventi. Utilizza questo solo per titolo informativo."
|
1202 |
|
1203 |
+
#: my-calendar-event-manager.php:725 my-calendar-group-manager.php:391
|
1204 |
msgid "Open"
|
1205 |
msgstr "Aperto"
|
1206 |
|
1207 |
+
#: my-calendar-event-manager.php:726 my-calendar-group-manager.php:392
|
1208 |
msgid "Closed"
|
1209 |
msgstr "Chiuso"
|
1210 |
|
1211 |
+
#: my-calendar-event-manager.php:727 my-calendar-group-manager.php:393
|
1212 |
msgid "Does not apply"
|
1213 |
msgstr "Non si applica"
|
1214 |
|
1215 |
+
#: my-calendar-event-manager.php:730 my-calendar-group-manager.php:396
|
1216 |
msgid "If this event recurs, it can only be registered for as a complete series."
|
1217 |
msgstr "Se questo evento si ripete, può solo essere registrato per una serie completa."
|
1218 |
|
1219 |
+
#: my-calendar-event-manager.php:747 my-calendar-event-manager.php:750
|
1220 |
#: my-calendar-group-manager.php:413 my-calendar-group-manager.php:416
|
1221 |
#: my-calendar-locations.php:129
|
1222 |
msgid "Event Location"
|
1223 |
msgstr "Località Evento"
|
1224 |
|
1225 |
+
#: my-calendar-event-manager.php:757 my-calendar-group-manager.php:423
|
1226 |
msgid "Choose a preset location:"
|
1227 |
msgstr "Scegliere una località predefinita:"
|
1228 |
|
1229 |
+
#: my-calendar-event-manager.php:766 my-calendar-group-manager.php:436
|
1230 |
msgid "Add recurring locations for later use."
|
1231 |
msgstr "Aggiungi località ricorrenti per un uso successivo."
|
1232 |
|
1233 |
+
#: my-calendar-event-manager.php:773 my-calendar-group-manager.php:445
|
1234 |
#: my-calendar-locations.php:131
|
1235 |
msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
|
1236 |
msgstr "Tutti i campi sono opzionali: <em>informazioni insufficienti possono causare una mappa inesatta</em>."
|
1237 |
|
1238 |
+
#: my-calendar-event-manager.php:777 my-calendar-group-manager.php:448
|
1239 |
#: my-calendar-locations.php:134
|
1240 |
msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
|
1241 |
msgstr "Nome della Località (es. <em>Joe's Bar and Grill</em>)"
|
1242 |
|
1243 |
+
#: my-calendar-event-manager.php:786 my-calendar-group-manager.php:451
|
1244 |
#: my-calendar-locations.php:143
|
1245 |
msgid "Street Address"
|
1246 |
msgstr "Indirizzo"
|
1247 |
|
1248 |
+
#: my-calendar-event-manager.php:789 my-calendar-group-manager.php:454
|
1249 |
#: my-calendar-locations.php:146
|
1250 |
msgid "Street Address (2)"
|
1251 |
msgstr "Indirizzo (2)"
|
1252 |
|
1253 |
+
#: my-calendar-event-manager.php:792 my-calendar-group-manager.php:457
|
1254 |
#: my-calendar-locations.php:149
|
1255 |
msgid "Phone"
|
1256 |
msgstr "Telefono"
|
1257 |
|
1258 |
+
#: my-calendar-event-manager.php:802 my-calendar-group-manager.php:460
|
1259 |
+
#: my-calendar-locations.php:159 my-calendar-settings.php:906
|
1260 |
msgid "State/Province"
|
1261 |
msgstr "Regione/Provincia"
|
1262 |
|
1263 |
+
#: my-calendar-event-manager.php:836 my-calendar-group-manager.php:470
|
1264 |
#: my-calendar-locations.php:191
|
1265 |
msgid "Initial Zoom"
|
1266 |
msgstr "Zoom Iniziale"
|
1267 |
|
1268 |
+
#: my-calendar-event-manager.php:838 my-calendar-group-manager.php:472
|
1269 |
#: my-calendar-locations.php:193
|
1270 |
msgid "Neighborhood"
|
1271 |
msgstr "Quartiere"
|
1272 |
|
1273 |
+
#: my-calendar-event-manager.php:839 my-calendar-group-manager.php:473
|
1274 |
#: my-calendar-locations.php:194
|
1275 |
msgid "Small City"
|
1276 |
msgstr "Piccola città"
|
1277 |
|
1278 |
+
#: my-calendar-event-manager.php:840 my-calendar-group-manager.php:474
|
1279 |
#: my-calendar-locations.php:195
|
1280 |
msgid "Large City"
|
1281 |
msgstr "Città grande"
|
1282 |
|
1283 |
+
#: my-calendar-event-manager.php:841 my-calendar-group-manager.php:475
|
1284 |
#: my-calendar-locations.php:196
|
1285 |
msgid "Greater Metro Area"
|
1286 |
msgstr "Area metropolitana"
|
1287 |
|
1288 |
+
#: my-calendar-event-manager.php:847 my-calendar-group-manager.php:481
|
1289 |
msgid "Location URL"
|
1290 |
msgstr "URL della località"
|
1291 |
|
1292 |
+
#: my-calendar-event-manager.php:850 my-calendar-group-manager.php:484
|
1293 |
#: my-calendar-locations.php:205
|
1294 |
msgid "GPS Coordinates (optional)"
|
1295 |
msgstr "Coordinate GPS (opzionale)"
|
1296 |
|
1297 |
+
#: my-calendar-event-manager.php:852 my-calendar-group-manager.php:486
|
1298 |
msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to provide your map link."
|
1299 |
msgstr "Se si forniscono le coordinate GPS per la posizione, essi saranno utilizzati al posto di qualsiasi altra informazioni di indirizzo per fornire il tuo link mappa."
|
1300 |
|
1301 |
+
#: my-calendar-event-manager.php:855 my-calendar-group-manager.php:489
|
1302 |
#: my-calendar-locations.php:210
|
1303 |
msgid "Latitude"
|
1304 |
msgstr "Latitudine"
|
1305 |
|
1306 |
+
#: my-calendar-event-manager.php:855 my-calendar-group-manager.php:489
|
1307 |
#: my-calendar-locations.php:211
|
1308 |
msgid "Longitude"
|
1309 |
msgstr "Longitudine"
|
1310 |
|
1311 |
+
#: my-calendar-event-manager.php:868
|
1312 |
msgid "Special scheduling options"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: my-calendar-event-manager.php:871
|
1316 |
msgid "Special Options"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: my-calendar-event-manager.php:873
|
1320 |
msgid "Cancel this event if it occurs on a date with an event in the Holidays category"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: my-calendar-event-manager.php:876
|
1324 |
msgid "If this event recurs, and falls on the 5th week of the month in a month with only four weeks, move it back one week."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: my-calendar-event-manager.php:956 my-calendar-settings.php:121
|
1328 |
+
#: my-calendar-settings.php:770
|
1329 |
msgid "Manage Events"
|
1330 |
msgstr "Gestione Eventi"
|
1331 |
|
1332 |
+
#: my-calendar-event-manager.php:959 my-calendar-templates.php:244
|
1333 |
msgid "Published"
|
1334 |
msgstr "Pubblicato"
|
1335 |
|
1336 |
+
#: my-calendar-event-manager.php:960 my-calendar-templates.php:244
|
1337 |
msgid "Reserved"
|
1338 |
msgstr "Riservato"
|
1339 |
|
1340 |
+
#: my-calendar-event-manager.php:961 my-calendar-group-manager.php:712
|
1341 |
msgid "All"
|
1342 |
msgstr "Tutti"
|
1343 |
|
1344 |
+
#: my-calendar-event-manager.php:994 my-calendar-group-manager.php:733
|
1345 |
+
#: my-calendar-settings.php:388 my-calendar-widgets.php:47
|
1346 |
+
#: my-calendar-widgets.php:156 my-calendar-widgets.php:621
|
1347 |
msgid "Title"
|
1348 |
msgstr "Titolo"
|
1349 |
|
1350 |
+
#: my-calendar-event-manager.php:995 my-calendar-group-manager.php:734
|
1351 |
msgid "Where"
|
1352 |
msgstr "Dove"
|
1353 |
|
1354 |
+
#: my-calendar-event-manager.php:996 my-calendar-group-manager.php:735
|
1355 |
+
#: my-calendar-settings.php:389
|
1356 |
msgid "Description"
|
1357 |
msgstr "Descrizione"
|
1358 |
|
1359 |
+
#: my-calendar-event-manager.php:997 my-calendar-group-manager.php:736
|
1360 |
msgid "Starts"
|
1361 |
msgstr "Inizia"
|
1362 |
|
1363 |
+
#: my-calendar-event-manager.php:998 my-calendar-group-manager.php:737
|
1364 |
msgid "Recurs"
|
1365 |
msgstr "Ricorrenza"
|
1366 |
|
1367 |
+
#: my-calendar-event-manager.php:999 my-calendar-group-manager.php:738
|
1368 |
+
#: my-calendar-settings.php:391
|
1369 |
msgid "Author"
|
1370 |
msgstr "Autore"
|
1371 |
|
1372 |
+
#: my-calendar-event-manager.php:1000 my-calendar-group-manager.php:739
|
1373 |
+
#: my-calendar-output.php:137 my-calendar-settings.php:392
|
1374 |
+
#: my-calendar-templates.php:242
|
1375 |
msgid "Category"
|
1376 |
msgstr "Categoria"
|
1377 |
|
1378 |
+
#: my-calendar-event-manager.php:1001
|
1379 |
msgid "Edit / Delete"
|
1380 |
msgstr "Modifica/Cancella"
|
1381 |
|
1382 |
+
#: my-calendar-event-manager.php:1030 my-calendar-group-manager.php:771
|
1383 |
msgid "Never"
|
1384 |
msgstr "Mai"
|
1385 |
|
1386 |
+
#: my-calendar-event-manager.php:1032 my-calendar-group-manager.php:773
|
1387 |
msgid "Weekdays"
|
1388 |
msgstr "Giorni feriali"
|
1389 |
|
1390 |
+
#: my-calendar-event-manager.php:1034 my-calendar-group-manager.php:775
|
1391 |
msgid "Bi-Weekly"
|
1392 |
msgstr "Bi-Settimanale"
|
1393 |
|
1394 |
+
#: my-calendar-event-manager.php:1035 my-calendar-group-manager.php:776
|
1395 |
msgid "Monthly (by date)"
|
1396 |
msgstr "Mensile (per data)"
|
1397 |
|
1398 |
+
#: my-calendar-event-manager.php:1036 my-calendar-group-manager.php:777
|
1399 |
msgid "Monthly (by day)"
|
1400 |
msgstr "Mensile (per giorno)"
|
1401 |
|
1402 |
+
#: my-calendar-event-manager.php:1037 my-calendar-group-manager.php:778
|
1403 |
msgid "Yearly"
|
1404 |
msgstr "Annuale"
|
1405 |
|
1407 |
msgid "Forever"
|
1408 |
msgstr "Per sempre"
|
1409 |
|
1410 |
+
#: my-calendar-event-manager.php:1041 my-calendar-event-manager.php:1042
|
1411 |
#: my-calendar-group-manager.php:782
|
1412 |
msgid "%d Times"
|
1413 |
msgstr "%d volte"
|
1414 |
|
1415 |
+
#: my-calendar-event-manager.php:1057
|
1416 |
msgid "Copy"
|
1417 |
msgstr "Copia"
|
1418 |
|
1419 |
+
#: my-calendar-event-manager.php:1060 my-calendar-group-manager.php:800
|
1420 |
+
#: my-calendar-output.php:313
|
1421 |
msgid "Edit Group"
|
1422 |
msgstr "Modifica gruppo"
|
1423 |
|
1424 |
+
#: my-calendar-event-manager.php:1063 my-calendar-group-manager.php:804
|
1425 |
msgid "Not editable."
|
1426 |
msgstr "Non modificabili."
|
1427 |
|
1428 |
+
#: my-calendar-event-manager.php:1069
|
1429 |
msgid "Reject"
|
1430 |
msgstr "Respinto"
|
1431 |
|
1432 |
+
#: my-calendar-event-manager.php:1071
|
1433 |
msgid "Approve"
|
1434 |
msgstr "Approvare"
|
1435 |
|
1436 |
+
#: my-calendar-event-manager.php:1076
|
1437 |
msgid "Approved"
|
1438 |
msgstr "Approvato"
|
1439 |
|
1440 |
+
#: my-calendar-event-manager.php:1078
|
1441 |
msgid "Rejected"
|
1442 |
msgstr "Rifiutato"
|
1443 |
|
1444 |
+
#: my-calendar-event-manager.php:1080
|
1445 |
msgid "Awaiting Approval"
|
1446 |
msgstr "In attesa di approvazione"
|
1447 |
|
1448 |
+
#: my-calendar-event-manager.php:1091
|
1449 |
msgid "Delete checked events"
|
1450 |
msgstr "Cancella gli eventi selezionati"
|
1451 |
|
1452 |
+
#: my-calendar-event-manager.php:1105 my-calendar-group-manager.php:818
|
1453 |
msgid "There are no events in the database!"
|
1454 |
msgstr "Non ci sono eventi nel database!"
|
1455 |
|
1456 |
+
#: my-calendar-event-manager.php:1257
|
1457 |
msgid "Your event end date must be either after or the same as your event begin date"
|
1458 |
msgstr "La data di fine evento deve essere uguale o successiva alla data di inizio"
|
1459 |
|
1460 |
+
#: my-calendar-event-manager.php:1260
|
1461 |
msgid "Your date formatting is correct but one or more of your dates is invalid. Check for number of days in month and leap year related errors."
|
1462 |
msgstr "La formattazione della data è corretta, ma uno o più dei tuoi dati non è valido. Controllare il numero di giorni nel mese e anno bisestile errori correlati."
|
1463 |
|
1464 |
+
#: my-calendar-event-manager.php:1293 my-calendar-group-manager.php:585
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1465 |
msgid "The event title must be between 1 and 255 characters in length."
|
1466 |
msgstr "Il titolo dell'evento deve essere compreso tra 1 e 255 caratteri."
|
1467 |
|
1468 |
+
#: my-calendar-event-manager.php:1299
|
1469 |
msgid "The repetition value must be 0 unless a type of recurrence is selected."
|
1470 |
msgstr "Il valore di ripetizione deve essere 0 a meno che un tipo di ricorrenza è selezionat"
|
1471 |
|
1491 |
msgstr "Devi indicare l'ID di un gruppo eventi per modificarlo"
|
1492 |
|
1493 |
#: my-calendar-group-manager.php:113 my-calendar-group-manager.php:292
|
1494 |
+
#: my-calendar.php:328
|
1495 |
msgid "Manage Event Groups"
|
1496 |
msgstr "Gestisci i gruppi di eventi"
|
1497 |
|
1555 |
msgid "Ungrouped"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: my-calendar-help.php:4
|
1559 |
msgid "How to use My Calendar"
|
1560 |
msgstr "Come utilizzare il mio calendario"
|
1561 |
|
1562 |
+
#: my-calendar-help.php:45
|
1563 |
msgid "Shortcode Syntax"
|
1564 |
msgstr "Sintassi Shortcode"
|
1565 |
|
1566 |
+
#: my-calendar-help.php:48
|
1567 |
msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
|
1568 |
msgstr "Questi codici brevi possono essere usati nei post, pagine o nei widget di testo."
|
1569 |
|
1570 |
+
#: my-calendar-help.php:50
|
1571 |
msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
|
1572 |
msgstr "Abbreviazione calendario principale (elenco o griglia, vista per settimana o per mese)"
|
1573 |
|
1574 |
+
#: my-calendar-help.php:53
|
1575 |
msgid "This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format."
|
1576 |
msgstr "Questo shortcode di base mostrerà il calendario su un post o pagina, incluse tutte le categorie e la chiave di categoria, in un formato tradizionale mese per mese."
|
1577 |
|
1578 |
+
#: my-calendar-help.php:60
|
|
|
|
|
|
|
|
|
1579 |
msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: my-calendar-help.php:61
|
1583 |
msgid "Either \"list\" or \"mini\" to show the list view or the mini calendar; exclude or any other value to show the main grid calendar."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: my-calendar-help.php:62
|
1587 |
msgid "Set as \"no\" to hide the category key."
|
1588 |
msgstr "Indica come \"no\" per nascondere la chiave di categoria"
|
1589 |
|
1590 |
+
#: my-calendar-help.php:63
|
1591 |
msgid "Set as \"no\" to hide the month-by-month navigation."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: my-calendar-help.php:64
|
1595 |
msgid "Set to \"no\" or \"yes\" to override the default settings."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: my-calendar-help.php:65
|
1599 |
msgid "Set as \"yes\" to show a link to switch between list and grid formats."
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: my-calendar-help.php:66
|
1603 |
msgid "Set to \"week\" to show a one week view or to \"day\" to show a single day view. Any other value will show a month view. (Day view shows as a list regardless of format setting.)"
|
1604 |
msgstr "Scegli \"settimana\" se vuoi la vista settimanale o \"giorno\" per la vista a giornata singola. Ogni altro valore mostrerà la vista per mese. (La vista a giornata singola sarà un elenco, indipendentemente dalle opzioni.)"
|
1605 |
|
1606 |
+
#: my-calendar-help.php:67
|
1607 |
msgid "The type of location data to restrict by."
|
1608 |
msgstr "Il tipo di dati della località in base a cui restringere la scelta."
|
1609 |
|
1610 |
+
#: my-calendar-help.php:68
|
1611 |
msgid "The specific location information to filter to."
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: my-calendar-help.php:73
|
1615 |
msgid "The main My Calendar short code can be generated from a button in your post and page editor. The mini calendar can also be accessed and configured as a widget."
|
1616 |
msgstr "Il shortcode principale di My Calendar può essere creato da un pulsante nelle schermate di modifica dell'articolo o della pagina. Si può anche avere accesso al mini calendario ed utilizzarlo come widget. "
|
1617 |
|
1618 |
+
#: my-calendar-help.php:75
|
1619 |
msgid "Additional Calendar Views (Upcoming events, today's events)"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: my-calendar-help.php:85
|
1623 |
msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: my-calendar-help.php:92
|
1627 |
msgid "Supplement Features (Locations filter, Categories filter)"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: my-calendar-help.php:96
|
1631 |
msgid "This shortcode produces a list of event locations, either as a list of links or as a select dropdown form. The <code>show</code> attribute can either be <code>list</code> or <code>form</code>, <code>type</code> is either <code>saved</code> (to show items from your stored locations), or <code>custom</code> (to show the options configured in your user settings). <code>datatype</code> must be the type of data your limits are choosing from: <code>name</code> (business name), <code>city</code>, <code>state</code>, <code>country</code>, <code>zip</code> (postal code), or <code>region</code>."
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: my-calendar-help.php:100
|
1635 |
msgid "If you want to display a list of locations in your database, use this shortcode. The <code>datatype</code> is the type of data displayed; all lists will include a link to the map of that location. In addition to basic location information as in the above shortcode, you can also use \"hcard\" to display all available location information."
|
1636 |
msgstr "Se vuoi mostrare una lista di località nel tuo database, usa questo shortcode. Il <code>datatype</code> è il tipo di data mostrato; tutte le liste includeranno un collegamento alla mappa per quella località. In aggiunta all'informazione di base della località, data dallo shortcode, puoi anche usare \"hcard\" per mostrare tutte le informazioni disponibili sulla località."
|
1637 |
|
1638 |
+
#: my-calendar-help.php:105
|
1639 |
msgid "This shortcode produces a list of event categories, either as a list of links or as a select dropdown form. The <code>show</code> attribute can either be <code>list</code> or <code>form</code>."
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: my-calendar-help.php:113
|
1643 |
msgid "Category Icons"
|
1644 |
msgstr "Icone categoria"
|
1645 |
|
1646 |
+
#: my-calendar-help.php:116
|
1647 |
msgid "My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc."
|
1648 |
msgstr "My Calendar è progettato per gestire più calendari. La base di questi calendari sono le categorie, è possibile impostare facilmente una pagina di calendario che comprende tutte le categorie, oppure si può dedicare pagine separate per i calendari di ogni categoria. Per un esempio, questo potrebbe essere utile per l'utente a gestire i calendari tour per le fasce multiple, calendari di eventi per una varietà di località, ecc."
|
1649 |
|
1650 |
+
#: my-calendar-help.php:119
|
1651 |
msgid "The pre-installed category icons may not be especially useful for your needs or design. I'm assuming that you're going to upload your own icons -- all you need to do is upload them to the plugin's icons folder, and they'll be available for immediate use, or place them in a folder at \"my-calendar-custom\" to avoid having them overwritten by upgrades."
|
1652 |
msgstr "Le icone di categoria pre-installate possono non essere particolarmente utile per le tue esigenze o il design. Sto assumendo che stai andando a caricare le proprie icone - tutto quello che devi fare è caricarle nella cartella del plugin icone, e saranno disponibili per l'uso immediato, o metterli in una cartella a \"my-calendar-custom\" per evitare che vengano sovrascritti dagli aggiornamenti."
|
1653 |
|
1654 |
+
#: my-calendar-help.php:119
|
1655 |
msgid "Your icons folder is:"
|
1656 |
msgstr "La cartella delle icone è:"
|
1657 |
|
1658 |
+
#: my-calendar-help.php:119
|
1659 |
msgid "You can alternately place icons in:"
|
1660 |
msgstr "È possibile alternativamente mettere le icone in:"
|
1661 |
|
1662 |
+
#: my-calendar-help.php:128
|
1663 |
msgid "Custom Styles"
|
1664 |
msgstr "Stili personalizzati"
|
1665 |
|
1666 |
+
#: my-calendar-help.php:131
|
1667 |
msgid "My Calendar comes with four basic stylesheets. My Calendar will retain changes to these basic stylesheets on upgrade, but if you want to add an entirely new stylesheet, you may wish to store it in the My Calendar custom styles directory."
|
1668 |
msgstr "My Calendar è dotato di quattro fogli di stile di base. My Calendar manterrà le modifiche a questi fogli di stile di base con l'aggiornamento, ma se si desidera aggiungere un foglio di stile del tutto nuovo, si potrebbe desiderare di memorizzarlo nella cartella stili di My Calendar."
|
1669 |
|
1670 |
+
#: my-calendar-help.php:134
|
1671 |
msgid "Your stylesheet directory is"
|
1672 |
msgstr "La tua cartella del foglio di stile è"
|
1673 |
|
1674 |
+
#: my-calendar-help.php:135
|
1675 |
msgid "Your custom stylesheets directory is"
|
1676 |
msgstr "La tua cartella personalizzata fogli di stile è"
|
1677 |
|
1678 |
+
#: my-calendar-help.php:138
|
1679 |
msgid "You can also add custom styles to your theme directory to provide print styles, mobile styles, and tablet styles. <code>mc-print.css</code>, <code>mc-mobile.css</code>, and <code>mc-tablet.css</code>."
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: my-calendar-help.php:146
|
1683 |
msgid "Widget Templating"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: my-calendar-help.php:149
|
1687 |
msgid "All template tags support two attributes: before=\"value\" and after=\"value\". The values of the attributes will be placed before and after the output value. These attribute values <strong>must</strong> be wrapped in double quotes."
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: my-calendar-help.php:152
|
1691 |
msgid "Date/Time template tags support the \"format\" attribute: format=\"M, Y\", where the value is a PHP formatted date string. Only <code>dtstart</code> and <code>dtend</code> include the full date/time information for formatting."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: my-calendar-help.php:155
|
1695 |
msgid "Example:"
|
1696 |
msgstr "Esempio:"
|
1697 |
|
1698 |
+
#: my-calendar-help.php:157 my-calendar.php:179
|
1699 |
msgid "Event Template Tags"
|
1700 |
msgstr "Tag dei modelli evento"
|
1701 |
|
1702 |
+
#: my-calendar-help.php:160
|
1703 |
msgid "Displays the title of the event."
|
1704 |
msgstr "Visualizza il titolo dell'evento."
|
1705 |
|
1706 |
+
#: my-calendar-help.php:163
|
1707 |
msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
|
1708 |
msgstr "Visualizza il titolo dell'evento come un link se un URL è presente, o il titolo solo se nessun URL è disponibile."
|
1709 |
|
1710 |
+
#: my-calendar-help.php:166
|
1711 |
msgid "Displays the start time for the event."
|
1712 |
msgstr "Visualizzare l'ora di inizio dell'evento."
|
1713 |
|
1714 |
+
#: my-calendar-help.php:169
|
1715 |
msgid "Displays the start time for the event adjusted to the current user's time zone settings. Returns <code>{time}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: my-calendar-help.php:172
|
1719 |
msgid "Displays the end time for the event adjusted to the current user's time zone settings. Returns <code>{endtime}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: my-calendar-help.php:175
|
1723 |
msgid "Displays the date on which the event begins."
|
1724 |
msgstr "Visualizza la data in cui l'evento ha inizio."
|
1725 |
|
1726 |
+
#: my-calendar-help.php:181
|
1727 |
msgid "Displays the date on which the event ends."
|
1728 |
msgstr "Visualizza la data in cui l'evento finisce."
|
1729 |
|
1730 |
+
#: my-calendar-help.php:184
|
1731 |
msgid "Displays the time at which the event ends."
|
1732 |
msgstr "Visualizza l'ora in cui l'evento finisce."
|
1733 |
|
1734 |
+
#: my-calendar-help.php:187
|
1735 |
msgid "Displays the beginning date to the end date for events. Does not show end date if same as start date."
|
1736 |
msgstr "Mostra la data di inizio fino alla data finale per gli eventi. Non mostra la data finale se è la stessa di quella iniziale."
|
1737 |
|
1738 |
+
#: my-calendar-help.php:193
|
1739 |
msgid "Timestamp for beginning of event."
|
1740 |
msgstr "Marca temporale per l'inizio dell'evento"
|
1741 |
|
1742 |
+
#: my-calendar-help.php:196
|
1743 |
msgid "Timestamp for end of event."
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: my-calendar-help.php:199
|
1747 |
msgid "For multi-day events displays an unordered list of dates and times for events in this group. Otherwise, beginning date/time."
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: my-calendar-help.php:202
|
1751 |
msgid "Displays the WordPress author who posted the event."
|
1752 |
msgstr "Visualizza l'autore WordPress che ha pubblicato l'event"
|
1753 |
|
1754 |
+
#: my-calendar-help.php:205
|
1755 |
msgid "Displays the name of the person assigned as host for the event."
|
1756 |
msgstr "Visualizza il nome della persona assegnata all'evento."
|
1757 |
|
1758 |
+
#: my-calendar-help.php:208
|
1759 |
msgid "Displays the email address of the person assigned as host for the event."
|
1760 |
msgstr "Mostra l'indirizzo mail della persona individuata come ospite per l'evento."
|
1761 |
|
1762 |
+
#: my-calendar-help.php:211
|
1763 |
msgid "Displays the short version of the event description."
|
1764 |
msgstr "Visualizza la versione breve della descrizione dell'evento."
|
1765 |
|
1766 |
+
#: my-calendar-help.php:214
|
1767 |
msgid "Displays short description without converting paragraphs."
|
1768 |
msgstr "Mostra la descrizione breve senza convertire i paragrafi."
|
1769 |
|
1770 |
+
#: my-calendar-help.php:220
|
1771 |
msgid "Displays the description of the event."
|
1772 |
msgstr "visualizzare la descrizione dell'evento."
|
1773 |
|
1774 |
+
#: my-calendar-help.php:223
|
1775 |
msgid "Displays description without converting paragraphs."
|
1776 |
msgstr "Mostra la descrizione senza convertire i paragrafi."
|
1777 |
|
1778 |
+
#: my-calendar-help.php:229 my-calendar.php:225
|
1779 |
msgid "Image associated with the event."
|
1780 |
msgstr "Immagine associata all'evento."
|
1781 |
|
1782 |
+
#: my-calendar-help.php:232
|
1783 |
msgid "Displays the URL provided for the event."
|
1784 |
msgstr "Visualizzare l'URL fornito per l'evento."
|
1785 |
|
1786 |
+
#: my-calendar-help.php:235
|
1787 |
msgid "Produces the URL to download an iCal formatted record for the event."
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: my-calendar-help.php:238
|
1791 |
msgid "Produces a hyperlink to download an iCal formatted record for the event."
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: my-calendar-help.php:241
|
1795 |
msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: my-calendar-help.php:244
|
1799 |
msgid "Shows the number of repetitions of the event."
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: my-calendar-help.php:247
|
1803 |
msgid "Provides a link to an auto-generated page containing all information on the given event."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: my-calendar-help.php:247
|
1807 |
msgid "Requires that the site URL has been provided on the Settings page"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: my-calendar-help.php:250
|
1811 |
msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
|
1812 |
msgstr "Visualizza testo che indica se la registrazione per l'evento è aperto o chiuso; nulla viene visualizzato se tale scelta è stata selezionata nel evento."
|
1813 |
|
1814 |
+
#: my-calendar-help.php:253
|
1815 |
msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
|
1816 |
msgstr "Visualizza lo stato corrente dell'evento: o \"Pubblico\" o \"Riservato\" - primaria utilizzata in modelli di posta elettronica."
|
1817 |
|
1818 |
+
#: my-calendar-help.php:255 my-calendar.php:239
|
1819 |
msgid "Location Template Tags"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: my-calendar-help.php:259
|
1823 |
msgid "Displays the name of the location of the event."
|
1824 |
msgstr "Visualizza il nome della località dell'evento."
|
1825 |
|
1826 |
+
#: my-calendar-help.php:262
|
1827 |
msgid "Displays the first line of the site address."
|
1828 |
msgstr "Visualizza la prima riga dell'indirizzo del sito."
|
1829 |
|
1830 |
+
#: my-calendar-help.php:265
|
1831 |
msgid "Displays the second line of the site address."
|
1832 |
msgstr "Visualizza la seconda riga dell'indirizzo del sito."
|
1833 |
|
1834 |
+
#: my-calendar-help.php:268
|
1835 |
msgid "Displays the city for the location."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: my-calendar-help.php:271
|
1839 |
msgid "Displays the state for the location."
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: my-calendar-help.php:274
|
1843 |
msgid "Displays the postcode for the location."
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: my-calendar-help.php:277
|
1847 |
msgid "Shows the custom region entered for the location."
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: my-calendar-help.php:280
|
1851 |
msgid "Displays the country for the event location."
|
1852 |
msgstr "Visualizza il paese per la località dell'evento."
|
1853 |
|
1854 |
+
#: my-calendar-help.php:283
|
1855 |
msgid "Output the URL for the location link."
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: my-calendar-help.php:289
|
1859 |
msgid "Output a hyperlink to the location's listed link with default link text."
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: my-calendar-help.php:292
|
1863 |
msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
1864 |
msgstr "Visualizza l'indirizzo dell'evento in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> formato."
|
1865 |
|
1866 |
+
#: my-calendar-help.php:295
|
1867 |
msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
|
1868 |
msgstr "Visualizza un collegamento a una mappa di Google dell'evento, se le informazioni sull'indirizzo disponibile sono sufficiente. In caso contrario, sarà vuoto."
|
1869 |
|
1870 |
+
#: my-calendar-help.php:297 my-calendar.php:275
|
1871 |
msgid "Category Template Tags"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: my-calendar-help.php:301
|
1875 |
msgid "Displays the name of the category the event is in."
|
1876 |
msgstr "Visualizza il nome della categoria dell'evento."
|
1877 |
|
1878 |
+
#: my-calendar-help.php:304
|
1879 |
msgid "Produces the address of the current event's category icon."
|
1880 |
msgstr "Produce l'indirizzo dell'icona della categoria dell'evento corrente."
|
1881 |
|
1882 |
+
#: my-calendar-help.php:307
|
1883 |
msgid "Produces the HTML for the current event's category icon."
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: my-calendar-help.php:310
|
1887 |
msgid "Produces the hex code for the current event's category color."
|
1888 |
msgstr "Produce il codice esadecimale (hex) per il colore categoria dell'evento corrente."
|
1889 |
|
1890 |
+
#: my-calendar-help.php:313
|
1891 |
msgid ""
|
1892 |
"Displays the ID forr\n"
|
1893 |
"\t\t the category the event is in."
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: my-calendar-help.php:317
|
1897 |
msgid "Special use Template Tags"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
+
#: my-calendar-help.php:321
|
1901 |
msgid "A unique ID for the current instance of an event."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: my-calendar-help.php:324
|
1905 |
msgid "The ID for the event record associated with the current instance of an event."
|
1906 |
msgstr "L'ID per l'evento associato con l'istanza corrente di un evento."
|
1907 |
|
1908 |
+
#: my-calendar-help.php:334
|
1909 |
msgid "Get Plug-in Support"
|
1910 |
msgstr "Ottieni supporto per il plug-in"
|
1911 |
|
1912 |
+
#: my-calendar-help.php:339
|
1913 |
msgid "My Calendar support requests can only be sent by administrators."
|
1914 |
msgstr "Le richieste di assistenza a My Calendar possono essere inviate solo da amministratori."
|
1915 |
|
1916 |
+
#: my-calendar-help.php:18 my-calendar-help.php:346
|
1917 |
msgid "Helpful Information"
|
1918 |
msgstr "Informazioni utili"
|
1919 |
|
1920 |
+
#: my-calendar-help.php:349
|
1921 |
msgid "<strong>Uninstalling the plugin</strong>: Although the WordPress standard and expectation is for plug-ins to delete any custom database tables when they're uninstalled, My Calendar <em>does not do this</em>. This was a conscious decision on my part -- the data stored in your My Calendar tables is yours; with the sole exception of the \"General\" category, you added every piece of it yourself. As such, I feel it would be a major disservice to you to delete this information if you uninstall the plug-in. As a result, if you wish to get rid of the plug-in completely, you'll need to remove those tables yourself. All your My Calendar settings will be deleted, however."
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: my-calendar-help.php:352
|
1925 |
msgid "<strong>Donations</strong>: I appreciate anything you can give. $2 may not seem like much, but it can really add up when thousands of people are using the software. Please note that I am not a non-profit organization, and your gifts are not tax deductible. Thank you!"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: my-calendar-install.php:246
|
1929 |
msgid "My Calendar Default Timezone"
|
1930 |
msgstr "My Calendar Fuso Orario Predefinito"
|
1931 |
|
1932 |
+
#: my-calendar-install.php:291
|
1933 |
msgid "My Calendar Default Location"
|
1934 |
msgstr "My Calendar Località Predefinita"
|
1935 |
|
1989 |
msgid "Add a New Location"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: my-calendar-locations.php:228 my-calendar.php:329
|
1993 |
msgid "Manage Locations"
|
1994 |
msgstr "Gestione Località"
|
1995 |
|
2005 |
msgid "Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records."
|
2006 |
msgstr "Da notare: la modifica o l'eliminazione di località memorizzate per il riutilizzo, non avrà alcun effetto su qualunque evento precedentemente programmato in quella località. Il database località esiste solo come un metodo di stenografia per inserire i percorsi utilizzati di frequente nel record dell'evento."
|
2007 |
|
2008 |
+
#: my-calendar-output.php:191 my-calendar-output.php:308
|
2009 |
msgid "Close"
|
2010 |
msgstr "Chiuso"
|
2011 |
|
2012 |
+
#: my-calendar-output.php:202
|
2013 |
msgid "(%s in your time zone)"
|
2014 |
msgstr "(%s nel tuo fuso orario)"
|
2015 |
|
2016 |
+
#: my-calendar-output.php:208
|
2017 |
msgid "Not Applicable"
|
2018 |
msgstr "Non applicabile"
|
2019 |
|
2020 |
+
#: my-calendar-output.php:223
|
2021 |
msgid "Posted by"
|
2022 |
msgstr "Postato da"
|
2023 |
|
2024 |
+
#: my-calendar-output.php:231 my-calendar-templates.php:246
|
2025 |
msgid "Details about"
|
2026 |
msgstr "Dettagli su"
|
2027 |
|
2028 |
+
#: my-calendar-output.php:253 my-calendar-templates.php:193
|
2029 |
msgid "iCal"
|
2030 |
msgstr "iCal"
|
2031 |
|
2032 |
+
#: my-calendar-output.php:288
|
2033 |
msgid "This class is part of a series. You must register for the first event in this series to attend."
|
2034 |
msgstr "Questa classe è parte di una serie. È necessario registrarsi per il primo evento di questa serie per partecipare."
|
2035 |
|
2036 |
+
#: my-calendar-output.php:293
|
2037 |
msgid "View full calendar"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: my-calendar-output.php:326
|
2041 |
msgid "Edit This Date"
|
2042 |
msgstr "Modifica questa data"
|
2043 |
|
2044 |
+
#: my-calendar-output.php:327
|
2045 |
msgid "Edit All"
|
2046 |
msgstr "Modifica tutto"
|
2047 |
|
2048 |
+
#: my-calendar-output.php:328
|
2049 |
msgid "Delete This Date"
|
2050 |
msgstr "Cancella questa data"
|
2051 |
|
2052 |
+
#: my-calendar-output.php:329
|
2053 |
msgid "Delete All"
|
2054 |
msgstr "Cancella tutto"
|
2055 |
|
2056 |
+
#: my-calendar-output.php:388
|
2057 |
msgid "Year"
|
2058 |
msgstr "Anno"
|
2059 |
|
2060 |
+
#: my-calendar-output.php:416
|
2061 |
msgid "Go"
|
2062 |
msgstr "Vai"
|
2063 |
|
2064 |
+
#: my-calendar-output.php:445
|
2065 |
msgid "Calendar: Print View"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: my-calendar-output.php:460
|
2069 |
msgid "Return to site"
|
2070 |
msgstr "Ritorna al sito"
|
2071 |
|
2072 |
+
#: my-calendar-output.php:473
|
2073 |
msgid "View as Grid"
|
2074 |
msgstr "Visualizza come griglia"
|
2075 |
|
2076 |
+
#: my-calendar-output.php:477
|
2077 |
msgid "View as List"
|
2078 |
msgstr "Visualizza come elenco"
|
2079 |
|
2080 |
+
#: my-calendar-output.php:581
|
2081 |
msgid "<abbr title=\"Sunday\">Sun</abbr>"
|
2082 |
msgstr "<abbr title=\"Domenica\">Dom</abbr>"
|
2083 |
|
2084 |
+
#: my-calendar-output.php:582
|
2085 |
msgid "<abbr title=\"Monday\">Mon</abbr>"
|
2086 |
msgstr "<abbr title=\"Lunedì\">Lun</abbr>"
|
2087 |
|
2088 |
+
#: my-calendar-output.php:583
|
2089 |
msgid "<abbr title=\"Tuesday\">Tues</abbr>"
|
2090 |
msgstr "<abbr title=\"Martedì\">Mar</abbr>"
|
2091 |
|
2092 |
+
#: my-calendar-output.php:584
|
2093 |
msgid "<abbr title=\"Wednesday\">Wed</abbr>"
|
2094 |
msgstr "<abbr title=\"Mercoledì\">Mer</abbr>"
|
2095 |
|
2096 |
+
#: my-calendar-output.php:585
|
2097 |
msgid "<abbr title=\"Thursday\">Thur</abbr>"
|
2098 |
msgstr "<abbr title=\"Giovedì\">Giov</abbr>"
|
2099 |
|
2100 |
+
#: my-calendar-output.php:586
|
2101 |
msgid "<abbr title=\"Friday\">Fri</abbr>"
|
2102 |
msgstr "<abbr title=\"Venerdì\">Ven</abbr>"
|
2103 |
|
2104 |
+
#: my-calendar-output.php:587
|
2105 |
msgid "<abbr title=\"Saturday\">Sat</abbr>"
|
2106 |
msgstr "<abbr title=\"Sabato\">Sab</abbr>"
|
2107 |
|
2108 |
+
#: my-calendar-output.php:592
|
2109 |
msgid "<abbr title=\"Sunday\">S</abbr>"
|
2110 |
msgstr "<abbr title=\"Domenica\">Dom</abbr>"
|
2111 |
|
2112 |
+
#: my-calendar-output.php:593
|
2113 |
msgid "<abbr title=\"Monday\">M</abbr>"
|
2114 |
msgstr "<abbr title=\"Lunedì\">Lun</abbr>"
|
2115 |
|
2116 |
+
#: my-calendar-output.php:594
|
2117 |
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
2118 |
msgstr "<abbr title=\"Martedì\">Mar</abbr>"
|
2119 |
|
2120 |
+
#: my-calendar-output.php:595
|
2121 |
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
2122 |
msgstr "<abbr title=\"Mercoledì\">Mer</abbr>"
|
2123 |
|
2124 |
+
#: my-calendar-output.php:596
|
2125 |
msgid "<abbr title=\"Thursday\">T</abbr>"
|
2126 |
msgstr "<abbr title=\"Giovedì\">Giov</abbr>"
|
2127 |
|
2128 |
+
#: my-calendar-output.php:597
|
2129 |
msgid "<abbr title=\"Friday\">F</abbr>"
|
2130 |
msgstr "<abbr title=\"Venerdì\">Ven</abbr>"
|
2131 |
|
2132 |
+
#: my-calendar-output.php:598
|
2133 |
msgid "<abbr title=\"Saturday\">S</abbr>"
|
2134 |
msgstr "<abbr title=\"Sabato\">Sab</abbr>"
|
2135 |
|
2136 |
+
#: my-calendar-output.php:700
|
2137 |
msgid "Print View"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: my-calendar-output.php:752
|
2141 |
msgid "No events scheduled for today!"
|
2142 |
msgstr "Nessun evento previsto per oggi!"
|
2143 |
|
2144 |
+
#: my-calendar-output.php:767
|
2145 |
msgid "and"
|
2146 |
msgstr "e"
|
2147 |
|
2148 |
+
#: my-calendar-output.php:784
|
2149 |
msgid "Events in"
|
2150 |
msgstr "Eventi a"
|
2151 |
|
2152 |
+
#: my-calendar-output.php:536
|
2153 |
msgid " and %d other event"
|
2154 |
msgstr "e %d altri eventi"
|
2155 |
|
2156 |
+
#: my-calendar-output.php:538
|
2157 |
msgid " and %d other events"
|
2158 |
msgstr " e %d altri eventi"
|
2159 |
|
2160 |
+
#: my-calendar-output.php:817
|
2161 |
msgid "There are no events scheduled during this period."
|
2162 |
msgstr "Non ci sono eventi in programma durante questo periodo."
|
2163 |
|
2164 |
+
#: my-calendar-output.php:920
|
2165 |
msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: my-calendar-output.php:948
|
2169 |
msgid "Category Key"
|
2170 |
msgstr "Chiave Categoria"
|
2171 |
|
2172 |
+
#: my-calendar-output.php:972
|
2173 |
msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
2174 |
msgstr "Iscriviti via <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
2175 |
|
2176 |
+
#: my-calendar-output.php:973
|
2177 |
msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
|
2178 |
msgstr "Scarica come <abbr title=\"iCal esportazione eventi\">iCal</abbr>"
|
2179 |
|
2180 |
+
#: my-calendar-output.php:998
|
2181 |
msgid "Next events »"
|
2182 |
msgstr "Prossimi eventi »"
|
2183 |
|
2184 |
+
#: my-calendar-output.php:1024 my-calendar-output.php:1068
|
2185 |
msgid "Week of "
|
2186 |
msgstr "Settimana di"
|
2187 |
|
2188 |
+
#: my-calendar-output.php:1042
|
2189 |
msgid "« Previous events"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: my-calendar-output.php:1094
|
2193 |
msgid "(select to include)"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: my-calendar-output.php:1118 my-calendar-output.php:1121
|
2197 |
msgid "All Categories"
|
2198 |
msgstr "Tutte le categorie"
|
2199 |
|
2200 |
+
#: my-calendar-output.php:1119
|
2201 |
msgid "Categories"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: my-calendar-output.php:1140 my-calendar-output.php:1333
|
2205 |
msgid "Submit"
|
2206 |
msgstr "Invia"
|
2207 |
|
2208 |
+
#: my-calendar-output.php:1274 my-calendar-output.php:1295
|
2209 |
msgid "Show all"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: my-calendar-output.php:1293
|
2213 |
msgid "Show events in:"
|
2214 |
msgstr "Mostra gli eventi in:"
|
2215 |
|
2216 |
+
#: my-calendar-settings.php:58
|
2217 |
msgid "Categories imported successfully."
|
2218 |
msgstr "Categorie importati con successo"
|
2219 |
|
2220 |
+
#: my-calendar-settings.php:58
|
2221 |
msgid "Categories not imported."
|
2222 |
msgstr "Categorie non importati."
|
2223 |
|
2224 |
+
#: my-calendar-settings.php:59
|
2225 |
msgid "Events imported successfully."
|
2226 |
msgstr "Eventi importati con successo"
|
2227 |
|
2228 |
+
#: my-calendar-settings.php:59
|
2229 |
msgid "Events not imported."
|
2230 |
msgstr "Eventi non importati."
|
2231 |
|
2232 |
+
#: my-calendar-settings.php:103
|
2233 |
msgid "My Calendar Cache cleared"
|
2234 |
msgstr "Cache di My Calendar Cache ripulita"
|
2235 |
|
2236 |
+
#: my-calendar-settings.php:114
|
2237 |
msgid "My Calendar Management Settings saved"
|
2238 |
msgstr "Opzioni di gestione di My Calendar Management salvate"
|
2239 |
|
2240 |
+
#: my-calendar-settings.php:119 my-calendar-settings.php:768
|
2241 |
msgid "Add Events"
|
2242 |
msgstr "Aggiungi eventi"
|
2243 |
|
2244 |
+
#: my-calendar-settings.php:120 my-calendar-settings.php:769
|
2245 |
msgid "Approve Events"
|
2246 |
msgstr "Autorizza gli eventi"
|
2247 |
|
2248 |
+
#: my-calendar-settings.php:122 my-calendar-settings.php:771
|
2249 |
msgid "Edit Categories"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: my-calendar-settings.php:123 my-calendar-settings.php:772
|
2253 |
msgid "Edit Locations"
|
2254 |
msgstr "Modifica la località"
|
2255 |
|
2256 |
+
#: my-calendar-settings.php:124 my-calendar-settings.php:773
|
2257 |
msgid "Edit Styles"
|
2258 |
msgstr "Modifica gli stili"
|
2259 |
|
2260 |
+
#: my-calendar-settings.php:125 my-calendar-settings.php:774
|
2261 |
msgid "Edit Behaviors"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: my-calendar-settings.php:126 my-calendar-settings.php:775
|
2265 |
msgid "Edit Templates"
|
2266 |
msgstr "Modifica il modello"
|
2267 |
|
2268 |
+
#: my-calendar-settings.php:127 my-calendar-settings.php:776
|
2269 |
msgid "Edit Settings"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: my-calendar-settings.php:128 my-calendar-settings.php:777
|
2273 |
msgid "View Help"
|
2274 |
msgstr "Visualizza l'aiuto"
|
2275 |
|
2276 |
+
#: my-calendar-settings.php:142
|
2277 |
msgid "My Calendar Permissions Updated"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: my-calendar-settings.php:186
|
2281 |
msgid "Output Settings saved"
|
2282 |
msgstr "Impostazioni di uscita salvate"
|
2283 |
|
2284 |
+
#: my-calendar-settings.php:212
|
2285 |
msgid "Input Settings saved"
|
2286 |
msgstr "Impostazioni d'ingresso salvate"
|
2287 |
|
2288 |
+
#: my-calendar-settings.php:220
|
2289 |
msgid "Multisite settings saved"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: my-calendar-settings.php:248
|
2293 |
msgid "Custom text settings saved"
|
2294 |
msgstr "Impostazioni del testo personalizzato salvato"
|
2295 |
|
2296 |
+
#: my-calendar-settings.php:260
|
2297 |
msgid "Email notice settings saved"
|
2298 |
msgstr "Impostazioni e-mail avviso salvate"
|
2299 |
|
2300 |
+
#: my-calendar-settings.php:274
|
2301 |
msgid "User custom settings saved"
|
2302 |
msgstr "Le impostazioni utente personalizzate salvate"
|
2303 |
|
2304 |
+
#: my-calendar-settings.php:307
|
2305 |
msgid "My Calendar Options"
|
2306 |
msgstr "Opzioni My Calendar"
|
2307 |
|
2308 |
+
#: my-calendar-settings.php:339
|
2309 |
msgid "My Calendar Settings"
|
2310 |
msgstr "Opzioni My Calendar"
|
2311 |
|
2312 |
+
#: my-calendar-settings.php:342
|
2313 |
msgid "Management"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: my-calendar-settings.php:343
|
2317 |
msgid "Customizable Text"
|
2318 |
msgstr "Testo personalizzabile"
|
2319 |
|
2320 |
+
#: my-calendar-settings.php:344
|
2321 |
msgid "Output"
|
2322 |
msgstr "Output"
|
2323 |
|
2324 |
+
#: my-calendar-settings.php:346
|
2325 |
msgid "Input"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: my-calendar-settings.php:348
|
2329 |
msgid "Multi-site"
|
2330 |
msgstr "Multi-sito"
|
2331 |
|
2332 |
+
#: my-calendar-settings.php:350
|
2333 |
msgid "Permissions"
|
2334 |
msgstr "Permessi"
|
2335 |
|
2336 |
+
#: my-calendar-settings.php:351
|
2337 |
msgid "Email Notifications"
|
2338 |
msgstr "Notifiche via email"
|
2339 |
|
2340 |
+
#: my-calendar-settings.php:352
|
2341 |
msgid "Individual Users"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: my-calendar-settings.php:360
|
2345 |
msgid "Calendar Management Settings"
|
2346 |
msgstr "Impostazioni di Gestione del Calendario"
|
2347 |
|
2348 |
+
#: my-calendar-settings.php:366
|
2349 |
msgid "Calendar Options: Management"
|
2350 |
msgstr "Opzioni Calendario: Gestione"
|
2351 |
|
2352 |
+
#: my-calendar-settings.php:368
|
2353 |
msgid "Get data (events, categories and locations) from a remote database."
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: my-calendar-settings.php:370
|
2357 |
msgid "Add this code to your theme's <code>functions.php</code> file:"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: my-calendar-settings.php:378
|
2361 |
msgid "Enable approval options."
|
2362 |
msgstr "Attivare le opzioni di approvazione."
|
2363 |
|
2364 |
+
#: my-calendar-settings.php:379
|
2365 |
msgid "Enable caching."
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: my-calendar-settings.php:379
|
2369 |
msgid "<em>Cannot use caching while accessing a remote database.</em>"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: my-calendar-settings.php:381
|
2373 |
msgid "Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: my-calendar-settings.php:385
|
2377 |
msgid "Default Sort order for Admin Events List"
|
2378 |
msgstr "Ordinamento di default per la lista eventi dell'amministratore"
|
2379 |
|
2380 |
+
#: my-calendar-settings.php:387
|
2381 |
msgid "Event ID"
|
2382 |
msgstr "ID evento"
|
2383 |
|
2384 |
+
#: my-calendar-settings.php:390
|
2385 |
msgid "Start Date"
|
2386 |
msgstr "Data Inizio"
|
2387 |
|
2388 |
+
#: my-calendar-settings.php:401
|
2389 |
msgid "Currently editing my local calendar"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: my-calendar-settings.php:404
|
2393 |
msgid "Currently editing the network calendar"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: my-calendar-settings.php:408
|
2397 |
msgid "You are currently working in the primary site for this network; your local calendar is also the global table."
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: my-calendar-settings.php:416
|
2401 |
msgid "Save Management Settings"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: my-calendar-settings.php:420
|
2405 |
msgid "My Calendar management settings are only available to administrators."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: my-calendar-settings.php:428
|
2409 |
msgid "Calendar Text Settings"
|
2410 |
msgstr "Impostazioni Testo del Calendario"
|
2411 |
|
2412 |
+
#: my-calendar-settings.php:433
|
2413 |
msgid "Calendar Options: Customizable Text Fields"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: my-calendar-settings.php:436
|
2417 |
msgid "Label for events without a set time"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: my-calendar-settings.php:439
|
2421 |
msgid "Previous events link"
|
2422 |
msgstr "Collegamento agli eventi precedenti"
|
2423 |
|
2424 |
+
#: my-calendar-settings.php:439
|
2425 |
msgid "Previous Events"
|
2426 |
msgstr "Eventi Passati"
|
2427 |
|
2428 |
+
#: my-calendar-settings.php:439 my-calendar-settings.php:442
|
2429 |
msgid "Use <code>{date}</code> to display the appropriate date in navigation."
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: my-calendar-settings.php:442
|
2433 |
msgid "Next events link"
|
2434 |
msgstr "Collegamento ai prossimi eventi"
|
2435 |
|
2436 |
+
#: my-calendar-settings.php:442
|
2437 |
msgid "Next Events"
|
2438 |
msgstr "Prossimi Eventi"
|
2439 |
|
2440 |
+
#: my-calendar-settings.php:445
|
2441 |
msgid "If events are open"
|
2442 |
msgstr "Se gli eventi sono aperti"
|
2443 |
|
2444 |
+
#: my-calendar-settings.php:445
|
2445 |
msgid "Registration is open"
|
2446 |
msgstr "Le Registrazioni sono aperte"
|
2447 |
|
2448 |
+
#: my-calendar-settings.php:448
|
2449 |
msgid "If events are closed"
|
2450 |
msgstr "Se gli eventi sono chiusi"
|
2451 |
|
2452 |
+
#: my-calendar-settings.php:448
|
2453 |
msgid "Registration is closed"
|
2454 |
msgstr "Le Registrazioni sono chiusi"
|
2455 |
|
2456 |
+
#: my-calendar-settings.php:451
|
2457 |
msgid "Week view caption:"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: my-calendar-settings.php:454
|
2461 |
msgid "Extended caption:"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: my-calendar-settings.php:454
|
2465 |
msgid "The calendar caption shows month and year in list and grid formats. This text is displayed after the month/year."
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: my-calendar-settings.php:472
|
2469 |
msgid "Save Custom Text Settings"
|
2470 |
msgstr "Salva impostazioni testo personalizzato"
|
2471 |
|
2472 |
+
#: my-calendar-settings.php:481
|
2473 |
msgid "Calendar Output Settings"
|
2474 |
msgstr "Impostazioni Uscita Calendario"
|
2475 |
|
2476 |
+
#: my-calendar-settings.php:485 my-calendar-settings.php:636
|
2477 |
msgid "Save Output Settings"
|
2478 |
msgstr "Salva Impostazioni di uscita"
|
2479 |
|
2480 |
+
#: my-calendar-settings.php:487
|
2481 |
msgid "Calendar Options: Customize the Output of your Calendar"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: my-calendar-settings.php:492
|
|
|
|
|
|
|
|
|
2485 |
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details links:"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: my-calendar-settings.php:493
|
2489 |
msgid "Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode."
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: my-calendar-settings.php:496
|
2493 |
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's timeline links."
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: my-calendar-settings.php:497
|
2497 |
msgid "Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> shortcode."
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: my-calendar-settings.php:500
|
2501 |
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar in-page anchors:"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
+
#: my-calendar-settings.php:501
|
2505 |
msgid "Can be any Page or Post with the <code>[my_calendar]</code> shortcode using format selected below"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: my-calendar-settings.php:505
|
|
|
|
|
|
|
|
|
2509 |
msgid "Open calendar links to event details URL"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: my-calendar-settings.php:505
|
2513 |
msgid "Replaces pop-up in grid view."
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: my-calendar-settings.php:508
|
2517 |
msgid "Mini calendar widget date links to:"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: my-calendar-settings.php:509
|
2521 |
msgid "jQuery pop-up view"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: my-calendar-settings.php:510
|
2525 |
msgid "daily view page (above)"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: my-calendar-settings.php:511
|
2529 |
msgid "in-page anchor on main calendar page (list)"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: my-calendar-settings.php:512
|
2533 |
msgid "in-page anchor on main calendar page (grid)"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: my-calendar-settings.php:514
|
2537 |
msgid "Replaces pop-up in mini calendar"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: my-calendar-settings.php:656
|
2541 |
msgid "Time format"
|
2542 |
msgstr "Formato ora"
|
2543 |
|
2544 |
+
#: my-calendar-settings.php:659
|
|
|
|
|
|
|
|
|
|
|
2545 |
msgid "Date in grid mode, week view"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: my-calendar-settings.php:662
|
2549 |
msgid "Date Format in other views"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: my-calendar-settings.php:665
|
2553 |
msgid "Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: my-calendar-settings.php:518
|
2557 |
msgid "Show link to My Calendar RSS feed."
|
2558 |
msgstr "Mostra link al feed RSS di My Calendar."
|
2559 |
|
2560 |
+
#: my-calendar-settings.php:518
|
2561 |
msgid "RSS feed shows recently added events."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: my-calendar-settings.php:521
|
2565 |
msgid "Show link to iCal format download."
|
2566 |
msgstr "Mostra link per scaricare in formato iCal."
|
2567 |
|
2568 |
+
#: my-calendar-settings.php:521
|
2569 |
msgid "iCal outputs events occurring in the current calendar month."
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: my-calendar-settings.php:525
|
2573 |
msgid "Show link to print-formatted view of calendar"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: my-calendar-settings.php:532
|
|
|
|
|
|
|
|
|
2577 |
msgid "Grid Layout Options"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: my-calendar-settings.php:535
|
2581 |
msgid "Show Weekends on Calendar"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: my-calendar-settings.php:538
|
2585 |
msgid "Switch to list view on mobile devices"
|
2586 |
msgstr "Vai alla vista elenco sugli apparecchi mobili"
|
2587 |
|
2588 |
+
#: my-calendar-settings.php:545
|
2589 |
msgid "List Layout Options"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: my-calendar-settings.php:548
|
2593 |
msgid "How many months of events to show at a time:"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: my-calendar-settings.php:551
|
2597 |
msgid "Show the first event's title and the number of events that day next to the date."
|
2598 |
msgstr "Mostra il titolo del primo evento e il numero degli eventi del giorno a fianco alla data."
|
2599 |
|
2600 |
+
#: my-calendar-settings.php:558
|
2601 |
msgid "Event Details Options"
|
2602 |
msgstr "Opzioni per il dettaglio evento"
|
2603 |
|
2604 |
+
#: my-calendar-settings.php:457
|
2605 |
msgid "Event title template"
|
2606 |
msgstr "Template del titolo evento"
|
2607 |
|
2608 |
+
#: my-calendar-settings.php:458 my-calendar-settings.php:468
|
2609 |
msgid "Templating Help"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: my-calendar-settings.php:458 my-calendar-settings.php:468
|
2613 |
msgid "All template tags are available."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: my-calendar-settings.php:461
|
2617 |
msgid "Event details link text"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: my-calendar-settings.php:463
|
2621 |
msgid "Available tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
2622 |
msgstr "Tag disponibili: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
2623 |
|
2624 |
+
#: my-calendar-settings.php:466
|
2625 |
msgid "Event URL link text"
|
2626 |
msgstr "Testo collegamento URL dell'evento"
|
2627 |
|
2628 |
+
#: my-calendar-settings.php:570
|
2629 |
msgid "Show Link to Google Map"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: my-calendar-settings.php:573
|
2633 |
msgid "Show Event Address"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: my-calendar-settings.php:591
|
2637 |
msgid "Event links expire after event passes."
|
2638 |
msgstr "I collegamenti agli eventi scompaiono dopo la data dell'evento."
|
2639 |
|
2640 |
+
#: my-calendar-settings.php:594
|
2641 |
msgid "Show availability status"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: my-calendar-settings.php:597
|
2645 |
msgid "Default usage of category colors."
|
2646 |
msgstr "L'utilizzo predefinito dei colori categoria."
|
2647 |
|
2648 |
+
#: my-calendar-settings.php:598
|
2649 |
msgid "Event titles are category colors."
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: my-calendar-settings.php:599
|
2653 |
msgid "Event titles have category color as background."
|
2654 |
msgstr "I titoli degli eventi hanno il colore della categoria come sfondo."
|
2655 |
|
2656 |
+
#: my-calendar-settings.php:608
|
|
|
|
|
|
|
|
|
2657 |
msgid "Default setting for event input: If a recurring event is scheduled for a date which doesn't exist (such as the 5th Wednesday in February), move it back one week."
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: my-calendar-settings.php:611
|
2661 |
msgid "Holiday Category"
|
2662 |
msgstr "Categoria Vacanze"
|
2663 |
|
2664 |
+
#: my-calendar-settings.php:613
|
2665 |
msgid "None"
|
2666 |
msgstr "Nessuno"
|
2667 |
|
2668 |
+
#: my-calendar-settings.php:629
|
2669 |
msgid "Default setting for event input: If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: my-calendar-settings.php:680
|
2673 |
msgid "Calendar Input Settings"
|
2674 |
msgstr "Impostazioni ingresso del Calendario"
|
2675 |
|
2676 |
+
#: my-calendar-settings.php:685
|
2677 |
msgid "Select which input fields will be available when adding or editing events."
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: my-calendar-settings.php:690
|
2681 |
msgid "Show Event Location Dropdown Menu"
|
2682 |
msgstr "Mostra Località Evento nel menu a scomparsa"
|
2683 |
|
2684 |
+
#: my-calendar-settings.php:690
|
2685 |
msgid "Show Event Short Description field"
|
2686 |
msgstr "Mostra campo Descrizione breve evento"
|
2687 |
|
2688 |
+
#: my-calendar-settings.php:690
|
2689 |
msgid "Show Event Description Field"
|
2690 |
msgstr "Mostra campo Descrizione dell'evento"
|
2691 |
|
2692 |
+
#: my-calendar-settings.php:690
|
2693 |
msgid "Show Event Category field"
|
2694 |
msgstr "Mostra campo Categoria dell'Evento "
|
2695 |
|
2696 |
+
#: my-calendar-settings.php:690
|
2697 |
msgid "Show Event Link field"
|
2698 |
msgstr "Mostra campo Link dell'evento"
|
2699 |
|
2700 |
+
#: my-calendar-settings.php:690
|
2701 |
msgid "Show Event Recurrence Options"
|
2702 |
msgstr "Mostra Opzioni di ricorrenza evento"
|
2703 |
|
2704 |
+
#: my-calendar-settings.php:690
|
2705 |
msgid "Use HTML Editor in Event Description Field"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: my-calendar-settings.php:703
|
2709 |
msgid "Administrators see all input options"
|
2710 |
msgstr "Gli amministratori vedono tutte le opzioni di input"
|
2711 |
|
2712 |
+
#: my-calendar-settings.php:708
|
2713 |
msgid "Save Input Settings"
|
2714 |
msgstr "Salva Impostazioni d'ingresso"
|
2715 |
|
2716 |
+
#: my-calendar-settings.php:718
|
2717 |
msgid "Multisite Settings (Network Administrators only)"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: my-calendar-settings.php:720
|
2721 |
msgid "Multisite support is a beta feature - use with caution."
|
2722 |
msgstr "Il supporto multisito è in versione beta - usare con attenzione"
|
2723 |
|
2724 |
+
#: my-calendar-settings.php:725
|
2725 |
msgid "Settings for WP MultiSite configurations"
|
2726 |
msgstr "Opzioni per le configurazioni WP MultiSito"
|
2727 |
|
2728 |
+
#: my-calendar-settings.php:726
|
2729 |
msgid "The central calendar is the calendar associated with the primary site in your WordPress Multisite network."
|
2730 |
msgstr "Il calendario centrale è quello associato con il sito primario nel tuo multisito WordPress."
|
2731 |
|
2732 |
+
#: my-calendar-settings.php:728
|
2733 |
msgid "Site owners may only post to their local calendar"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: my-calendar-settings.php:729
|
2737 |
msgid "Site owners may only post to the central calendar"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: my-calendar-settings.php:730
|
2741 |
msgid "Site owners may manage either calendar"
|
2742 |
msgstr "I titolari del sito possono gestire entrambi i calendari"
|
2743 |
|
2744 |
+
#: my-calendar-settings.php:732
|
2745 |
msgid "Changes only effect input permissions. Public-facing calendars will be unchanged."
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: my-calendar-settings.php:734
|
2749 |
msgid "Sub-site calendars show events from their local calendar."
|
2750 |
msgstr "I calendari del sott-sito mostrano gli eventi dai loro calendari locali."
|
2751 |
|
2752 |
+
#: my-calendar-settings.php:735
|
2753 |
msgid "Sub-site calendars show events from the central calendar."
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: my-calendar-settings.php:739
|
2757 |
msgid "Save Multisite Settings"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: my-calendar-settings.php:749
|
2761 |
msgid "My Calendar Permissions"
|
2762 |
msgstr "Permessi per My Calendar"
|
2763 |
|
2764 |
+
#: my-calendar-settings.php:756
|
2765 |
msgid "Calendar Options: Permissions"
|
2766 |
msgstr "Opzioni calendario: permessi"
|
2767 |
|
2768 |
+
#: my-calendar-settings.php:792
|
2769 |
msgid "Save Permissions"
|
2770 |
msgstr "Salva i permessi"
|
2771 |
|
2772 |
+
#: my-calendar-settings.php:796
|
2773 |
msgid "My Calendar permission settings are only available to administrators."
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: my-calendar-settings.php:804
|
2777 |
msgid "Calendar Email Settings"
|
2778 |
msgstr "Impostazioni Emali del Calendario"
|
2779 |
|
2780 |
+
#: my-calendar-settings.php:809
|
2781 |
msgid "Calendar Options: Email Notifications"
|
2782 |
msgstr "Opzioni calendario: notifiche e-mail"
|
2783 |
|
2784 |
+
#: my-calendar-settings.php:813
|
2785 |
msgid "Send Email Notifications when new events are scheduled or reserved."
|
2786 |
msgstr "Inviare e-mail di notifica quando sono in programma nuovi eventi o riservati."
|
2787 |
|
2788 |
+
#: my-calendar-settings.php:816
|
2789 |
msgid "Notification messages are sent to: "
|
2790 |
msgstr "I messaggi di notifica vengono inviati a:"
|
2791 |
|
2792 |
+
#: my-calendar-settings.php:819
|
2793 |
msgid "Email subject"
|
2794 |
msgstr "Oggetto email"
|
2795 |
|
2796 |
+
#: my-calendar-settings.php:819
|
2797 |
msgid "New event Added"
|
2798 |
msgstr "Nuovo evento aggiunto"
|
2799 |
|
2800 |
+
#: my-calendar-settings.php:822
|
2801 |
msgid "Message Body"
|
2802 |
msgstr "Corpo del messaggio"
|
2803 |
|
2804 |
+
#: my-calendar-settings.php:822
|
2805 |
msgid "New Event:"
|
2806 |
msgstr "Nuovo Evento:"
|
2807 |
|
2808 |
+
#: my-calendar-settings.php:823
|
2809 |
msgid "Shortcode Help"
|
2810 |
msgstr "Aiuto Shortcode"
|
2811 |
|
2812 |
+
#: my-calendar-settings.php:823
|
2813 |
msgid "All template shortcodes are available."
|
2814 |
msgstr "Tutti i codici brevi di templates sono disponibili."
|
2815 |
|
2816 |
+
#: my-calendar-settings.php:828
|
2817 |
msgid "Save Email Settings"
|
2818 |
msgstr "Salva Impostazioni Email"
|
2819 |
|
2820 |
+
#: my-calendar-settings.php:837
|
2821 |
msgid "Calendar User Settings"
|
2822 |
msgstr "Impostazioni dell'utente del Calendario"
|
2823 |
|
2824 |
+
#: my-calendar-settings.php:845
|
2825 |
msgid "Settings which can be configured in registered user's accounts"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: my-calendar-settings.php:847
|
2829 |
msgid "Allow registered users to provide timezone or location presets in their user profiles."
|
2830 |
msgstr "Consentire agli utenti registrati di fornire fuso orario o luogo presettati nei loro profili."
|
2831 |
|
2832 |
+
#: my-calendar-settings.php:859
|
2833 |
msgid "Timezone Settings"
|
2834 |
msgstr "Impostazioni Fuso Orario"
|
2835 |
|
2836 |
+
#: my-calendar-settings.php:860
|
2837 |
msgid "These settings provide registered users with the ability to select a time zone in their user profile. When they view your calendar, the times for events will display the time the event happens in their time zone as well as the entered value."
|
2838 |
msgstr "Queste impostazioni forniscono agli utenti registrati la possibilità di selezionare un fuso orario nel loro profilo utente. Quando visualizzano il tuo calendario, vedranno l'ora dell'evento secondo il fuso orario che hanno scelto nel loro profilo lo stesso per quelli inseriti."
|
2839 |
|
2840 |
+
#: my-calendar-settings.php:862
|
2841 |
msgid "Enable Timezone"
|
2842 |
msgstr "Abilita il fuso orario"
|
2843 |
|
2844 |
+
#: my-calendar-settings.php:865
|
2845 |
msgid "Select Timezone Label"
|
2846 |
msgstr "Selezione Etichetta Fuso orario"
|
2847 |
|
2848 |
+
#: my-calendar-settings.php:868
|
2849 |
msgid "Timezone Options"
|
2850 |
msgstr "Opzione Fuso Orario"
|
2851 |
|
2852 |
+
#: my-calendar-settings.php:868 my-calendar-settings.php:892
|
2853 |
msgid "Value, Label; one per line"
|
2854 |
msgstr "Valore, Etichetta; uno per riga"
|
2855 |
|
2856 |
+
#: my-calendar-settings.php:880
|
2857 |
msgid "Location Settings"
|
2858 |
msgstr "Impostazioni Località"
|
2859 |
|
2860 |
+
#: my-calendar-settings.php:881
|
2861 |
msgid "These settings provide registered users with the ability to select a location in their user profile. When they view your calendar, their initial view will be limited to locations which include that location parameter. These values can also be used to generate custom location filtering options using the <code>my_calendar_locations</code> shortcode. It is not necessary to enable these settings for users to use the custom filtering options."
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: my-calendar-settings.php:883
|
2865 |
msgid "Enable Location"
|
2866 |
msgstr "Abilita Località"
|
2867 |
|
2868 |
+
#: my-calendar-settings.php:886
|
2869 |
msgid "Use this location list as input control"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: my-calendar-settings.php:886
|
2873 |
msgid "The normal text entry for this location type will be replaced by a drop down containing these choices."
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: my-calendar-settings.php:889
|
2877 |
msgid "Select Location Label"
|
2878 |
msgstr "Seleziona etichetta località"
|
2879 |
|
2880 |
+
#: my-calendar-settings.php:892
|
2881 |
msgid "Location Options"
|
2882 |
msgstr "Opzioni Località"
|
2883 |
|
2884 |
+
#: my-calendar-settings.php:902
|
2885 |
msgid "Location Type"
|
2886 |
msgstr "Tipo Località"
|
2887 |
|
2888 |
+
#: my-calendar-settings.php:915
|
2889 |
msgid "Save User Settings"
|
2890 |
msgstr "Salva Impostazioni Utente"
|
2891 |
|
2892 |
+
#: my-calendar-settings.php:919
|
2893 |
msgid "Only users with the ability to edit user accounts may modify user settings."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: my-calendar-styles.php:86
|
2897 |
msgid "The stylesheet has been updated."
|
2898 |
msgstr "Il foglio di stile è stato aggiornato."
|
2899 |
|
2900 |
+
#: my-calendar-styles.php:86
|
2901 |
msgid "Write Error! Please verify write permissions on the style file."
|
2902 |
msgstr "Errore di scrittura! Si prega di verificare i permessi di scrittura sul file di stile."
|
2903 |
|
2904 |
+
#: my-calendar-styles.php:100
|
2905 |
msgid "Stylesheet reset to default."
|
2906 |
msgstr "Foglio di stile ripristino delle impostazioni predefinite."
|
2907 |
|
2908 |
+
#: my-calendar-styles.php:103
|
2909 |
msgid "Style Settings Saved"
|
2910 |
msgstr "Impostazioni Stile salvate"
|
2911 |
|
2912 |
+
#: my-calendar-styles.php:112
|
2913 |
msgid "New theme selected."
|
2914 |
msgstr "Nuovo tema selezionato"
|
2915 |
|
2916 |
+
#: my-calendar-styles.php:127
|
2917 |
msgid "Sorry. The file you are looking for doesn't appear to exist. Please check your file name and location!"
|
2918 |
msgstr "Spiacente. Il file che stai cercando non sembra esistere. Si prega di controllare il nome e il percorso!"
|
2919 |
|
2920 |
+
#: my-calendar-styles.php:135
|
2921 |
msgid "My Calendar Styles"
|
2922 |
msgstr "Stile My Calendar"
|
2923 |
|
2924 |
+
#: my-calendar-styles.php:141
|
2925 |
msgid "Calendar Style Settings"
|
2926 |
msgstr "Impostazioni Stile Calendario"
|
2927 |
|
2928 |
+
#: my-calendar-styles.php:149
|
2929 |
msgid "Select My Calendar Theme"
|
2930 |
msgstr "Selezionare il Tema My Calendar"
|
2931 |
|
2932 |
+
#: my-calendar-styles.php:157
|
2933 |
msgid "Your Custom Stylesheets"
|
2934 |
msgstr "I fogli di stile personalizzati"
|
2935 |
|
2936 |
+
#: my-calendar-styles.php:166
|
2937 |
msgid "Installed Stylesheets"
|
2938 |
msgstr "Fogli di stile Installati"
|
2939 |
|
2940 |
+
#: my-calendar-styles.php:174
|
2941 |
msgid "Choose Style"
|
2942 |
msgstr "Scegli stile"
|
2943 |
|
2944 |
+
#: my-calendar-styles.php:187
|
2945 |
msgid "My Calendar was unable to update your CSS files during the upgrade. Please check your file permissions if you wish to edit your My Calendar styles. Your previously stored styles are below. This message and these styles will be deleted from the database when you successfully update your stylesheet."
|
2946 |
msgstr "My Calendar è in grado di aggiornare i file CSS durante l'aggiornamento. Si prega di verificare i permessi del file se si desidera modificare gli stili di My Calendar. I vostri stili precedentemente memorizzate sono sotto. Questo messaggio e questi stili saranno cancellati dal database con successo quando si aggiorna il foglio di stile."
|
2947 |
|
2948 |
+
#: my-calendar-styles.php:195
|
2949 |
msgid "CSS Style Options"
|
2950 |
msgstr "Opzioni Style CSS"
|
2951 |
|
2952 |
+
#: my-calendar-styles.php:200
|
2953 |
msgid "Restore My Calendar stylesheet"
|
2954 |
msgstr "Riattiva il foglio di stile My Calendar"
|
2955 |
|
2956 |
+
#: my-calendar-styles.php:200
|
2957 |
msgid "Disable My Calendar Stylesheet"
|
2958 |
msgstr "Disattivare foglio di stile del mio Calendario"
|
2959 |
|
2960 |
+
#: my-calendar-styles.php:203
|
2961 |
msgid "Edit the stylesheet for My Calendar"
|
2962 |
msgstr "Modificare il foglio di stile per il mio calendario"
|
2963 |
|
2964 |
+
#: my-calendar-styles.php:217
|
2965 |
msgid "Comparing Your Style with latest installed version of My Calendar"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: my-calendar-styles.php:221
|
2969 |
msgid "There have been updates to the stylesheet."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: my-calendar-styles.php:221
|
2973 |
msgid "Compare Your Stylesheet with latest installed version of My Calendar."
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: my-calendar-styles.php:225
|
2977 |
msgid "Your stylesheet matches that included with My Calendar."
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: my-calendar-styles.php:234
|
2981 |
msgid "Resetting your stylesheet will set your stylesheet to the version of that style currently distributed with the plug-in."
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: my-calendar-templates.php:72
|
2985 |
msgid "Map<span> to %s</span>"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: my-calendar-templates.php:93 my-calendar-templates.php:147
|
2989 |
msgid "Visit web site<span>: %s</span>"
|
2990 |
msgstr "Visita il sito web<span>: %s</span>"
|
2991 |
|
2992 |
+
#: my-calendar-templates.php:156
|
2993 |
msgid "Date of Month (the %s of each month)"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: my-calendar-templates.php:157
|
2997 |
msgid "Day of Month (the %s %s of each month)"
|
2998 |
msgstr "Giorno del mese (il %s %s di ogni mese)"
|
2999 |
|
3001 |
msgid "Grid Output Template saved"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: my-calendar-templating.php:43
|
3005 |
msgid "List Output Template saved"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: my-calendar-templating.php:54
|
3009 |
msgid "Mini Output Template saved"
|
3010 |
msgstr "Modello mini output salvato"
|
3011 |
|
3012 |
+
#: my-calendar-templating.php:65
|
3013 |
msgid "Event Details Template saved"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: my-calendar-templating.php:83
|
3017 |
msgid "My Calendar Information Templates"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: my-calendar-templating.php:88
|
3021 |
msgid "Advanced users may customize the HTML template for each event. This page lets you create a customized view of your events in each context. All available template tags are documented on the Help page. These default templates are based on the default views with all output enabled. <strong>Custom templates will override any other output rules in your settings.</strong>"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: my-calendar-templating.php:88
|
3025 |
msgid "Templates Help"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: my-calendar-templating.php:93
|
3029 |
msgid "My Calendar: Grid Event Template"
|
3030 |
msgstr "My Calendar: modello di griglia eventi"
|
3031 |
|
3032 |
+
#: my-calendar-templating.php:98
|
3033 |
msgid "Use this grid event template"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: my-calendar-templating.php:101
|
3037 |
msgid "Your custom template for events in the calendar grid output."
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: my-calendar-templating.php:104
|
3041 |
msgid "Save Grid Template"
|
3042 |
msgstr "Salva il modello a griglia"
|
3043 |
|
3044 |
+
#: my-calendar-templating.php:113
|
3045 |
msgid "My Calendar: List Event Template"
|
3046 |
msgstr "My Calendar: modello lista eventi"
|
3047 |
|
3048 |
+
#: my-calendar-templating.php:118
|
3049 |
msgid "Use this list event template"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: my-calendar-templating.php:121
|
3053 |
msgid "Your custom template for events in calendar list output."
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: my-calendar-templating.php:124
|
3057 |
msgid "Save List Template"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: my-calendar-templating.php:133
|
3061 |
msgid "My Calendar: Mini Calendar Template"
|
3062 |
msgstr "My Calendar: modello per mini calendario"
|
3063 |
|
3064 |
+
#: my-calendar-templating.php:138
|
3065 |
msgid "Use this mini event template"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: my-calendar-templating.php:141
|
3069 |
msgid "Your custom template for events in sidebar/mini calendar output."
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: my-calendar-templating.php:144
|
3073 |
msgid "Save Mini Template"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: my-calendar-templating.php:153
|
3077 |
msgid "My Calendar: Event Details Page Template"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: my-calendar-templating.php:158
|
3081 |
msgid "Use this details template"
|
3082 |
msgstr "Usa questo modello per i dettagli"
|
3083 |
|
3084 |
+
#: my-calendar-templating.php:161
|
3085 |
msgid "Your custom template for events on the event details page."
|
3086 |
msgstr "Il tuo modello eventi personalizzato sulla pagina dei dettagli dell'evento."
|
3087 |
|
3088 |
+
#: my-calendar-templating.php:164
|
3089 |
msgid "Save Details Template"
|
3090 |
msgstr ""
|
3091 |
|
3117 |
msgid "My Calendar: Today's Events"
|
3118 |
msgstr "My Calendar: Eventi di oggi"
|
3119 |
|
3120 |
+
#: my-calendar-widgets.php:51 my-calendar-widgets.php:160
|
3121 |
msgid "Template"
|
3122 |
msgstr "Template"
|
3123 |
|
3124 |
+
#: my-calendar-widgets.php:54
|
3125 |
msgid "Add calendar URL to use this option."
|
3126 |
msgstr "Aggiungi l'URL di un calendario per usare questa opzione."
|
3127 |
|
3128 |
+
#: my-calendar-widgets.php:66
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3129 |
msgid "Show this text if there are no events today:"
|
3130 |
msgstr "Mostra questo testo, se non ci sono eventi di oggi:"
|
3131 |
|
3132 |
+
#: my-calendar-widgets.php:70 my-calendar-widgets.php:204
|
3133 |
+
#: my-calendar-widgets.php:629
|
3134 |
msgid "Category or categories to display:"
|
3135 |
msgstr "Categoria o le categorie da visualizzare:"
|
3136 |
|
3137 |
+
#: my-calendar-widgets.php:102
|
3138 |
msgid "My Calendar: Upcoming Events"
|
3139 |
msgstr "My Calendar: Prossimi Eventi"
|
3140 |
|
3141 |
+
#: my-calendar-widgets.php:164
|
3142 |
msgid "Widget Options"
|
3143 |
msgstr "Opzione Widget"
|
3144 |
|
3145 |
+
#: my-calendar-widgets.php:178
|
3146 |
msgid "Display upcoming events by:"
|
3147 |
msgstr "Visualizzare prossimi eventi per:"
|
3148 |
|
3149 |
+
#: my-calendar-widgets.php:179
|
3150 |
msgid "Events (e.g. 2 past, 3 future)"
|
3151 |
msgstr "Eventi (ad esempio 2 passate, 3 futuro)"
|
3152 |
|
3153 |
+
#: my-calendar-widgets.php:180
|
3154 |
msgid "Dates (e.g. 4 days past, 5 forward)"
|
3155 |
msgstr "Date (ad esempio, 4 giorni passati, 5 in avanti)"
|
3156 |
|
3157 |
+
#: my-calendar-widgets.php:184
|
3158 |
msgid "Skip the first <em>n</em> events"
|
3159 |
msgstr "Salta i primi <em>n</em> eventi"
|
3160 |
|
3161 |
+
#: my-calendar-widgets.php:187
|
3162 |
msgid "Events sort order:"
|
3163 |
msgstr "Ordinamento degli eventi:"
|
3164 |
|
3165 |
+
#: my-calendar-widgets.php:188
|
3166 |
msgid "Ascending (near to far)"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
+
#: my-calendar-widgets.php:189
|
3170 |
msgid "Descending (far to near)"
|
3171 |
msgstr "Discendente (dall'ultimo al primo)"
|
3172 |
|
3173 |
+
#: my-calendar-widgets.php:197
|
3174 |
msgid "Include today's events"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
+
#: my-calendar-widgets.php:200
|
3178 |
msgid "Show this text if there are no events meeting your criteria:"
|
3179 |
msgstr "Mostra questo testo, se non ci sono eventi che soddisfano i tuoi criteri:"
|
3180 |
|
3181 |
+
#: my-calendar-widgets.php:575
|
3182 |
msgid "My Calendar: Mini Calendar"
|
3183 |
msgstr "My Calendar: mini calendario"
|
3184 |
|
3185 |
+
#: my-calendar-widgets.php:599
|
3186 |
msgid "Calendar"
|
3187 |
msgstr "Calendario"
|
3188 |
|
3189 |
+
#: my-calendar-widgets.php:633
|
3190 |
msgid "Show Next/Previous Navigation:"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
+
#: my-calendar-widgets.php:645
|
3194 |
msgid "Show Category Key:"
|
3195 |
msgstr "Mostra la chiave della categoria"
|
3196 |
|
3197 |
+
#: my-calendar-widgets.php:651
|
3198 |
msgid "Mini-Calendar Timespan:"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
+
#: my-calendar.php:131
|
3202 |
msgid "Support This Plug-in"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
+
#: my-calendar.php:133
|
3206 |
msgid "Help me help you:"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
+
#: my-calendar.php:133
|
3210 |
msgid "Buy the My Calendar User's Guide"
|
3211 |
msgstr "Compra la guida utente di My Calendar"
|
3212 |
|
3213 |
+
#: my-calendar.php:134
|
3214 |
msgid "<strong>Or make a donation today!</strong> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
|
3215 |
msgstr "<strong>O invia oggi una donazione!</strong> Ogni donazione conta - dona $2, $10, o $100 e aiutami a far funzionare questo plug-in!"
|
3216 |
|
3217 |
+
#: my-calendar.php:139 my-calendar.php:142
|
3218 |
msgid "Make a Donation"
|
3219 |
msgstr "Fai una donazione"
|
3220 |
|
3221 |
+
#: my-calendar.php:150
|
3222 |
msgid "Get Help"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
+
#: my-calendar.php:154
|
3226 |
msgid "Get Support"
|
3227 |
msgstr "ottenere assistenza"
|
3228 |
|
3229 |
+
#: my-calendar-help.php:10 my-calendar.php:155 my-calendar.php:335
|
3230 |
msgid "My Calendar Help"
|
3231 |
msgstr "Aiuto My Calendar"
|
3232 |
|
3233 |
+
#: my-calendar.php:156
|
3234 |
msgid "Check out my other plug-ins"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
+
#: my-calendar.php:157
|
3238 |
msgid "Rate this plug-in 5 stars!"
|
3239 |
msgstr "Assegna 5 stelle a questo plug-in!"
|
3240 |
|
3241 |
+
#: my-calendar.php:183
|
3242 |
msgid "Title of the event."
|
3243 |
+
msgstr "Titolo dell'evento."
|
3244 |
|
3245 |
+
#: my-calendar.php:186
|
3246 |
msgid "Title of the event as a link if a URL is present, or the title alone if not."
|
3247 |
msgstr "Titolo dell'evento come collegamento se è presente un URL, o solo il titolo se non lo è."
|
3248 |
|
3249 |
+
#: my-calendar.php:189
|
3250 |
msgid "Start time for the event."
|
3251 |
msgstr "Ora di inizio dell'evento."
|
3252 |
|
3253 |
+
#: my-calendar.php:192
|
3254 |
msgid "Event times adjusted to the current user's time zone if set."
|
3255 |
+
msgstr "Se selezionato modifica l'orario dell'evento in base al fuso orario dell'utente."
|
3256 |
|
3257 |
+
#: my-calendar.php:195
|
3258 |
msgid "Date on which the event begins."
|
3259 |
msgstr "Data in cui inizia l'evento."
|
3260 |
|
3261 |
+
#: my-calendar.php:198
|
3262 |
msgid "Date on which the event ends."
|
3263 |
+
msgstr "Data in cui l'evento termina."
|
3264 |
|
3265 |
+
#: my-calendar.php:201
|
3266 |
msgid "Time at which the event ends."
|
3267 |
msgstr "Ora in cui l'evento termina."
|
3268 |
|
3269 |
+
#: my-calendar.php:204
|
3270 |
msgid "Beginning date to end date; excludes end date if same as beginning."
|
3271 |
+
msgstr "Dalla data iniziale a quella finale ; esclude la data finale se coincide con l'iniziale."
|
3272 |
|
3273 |
+
#: my-calendar.php:207
|
3274 |
msgid "Multi-day events: an unordered list of dates/times. Otherwise, beginning date/time."
|
3275 |
+
msgstr "Eventi multi-giornata: una lista non ordinata di date/orari. Altrimenti, data/orario iniziale."
|
3276 |
|
3277 |
+
#: my-calendar.php:210
|
3278 |
msgid "Author who posted the event."
|
3279 |
msgstr "Autore che ha pubblicato l'evento."
|
3280 |
|
3281 |
+
#: my-calendar.php:213
|
3282 |
msgid "Name of the assigned host for the event."
|
3283 |
msgstr "Nome dell'ospite designato per l'evento"
|
3284 |
|
3285 |
+
#: my-calendar.php:216
|
3286 |
msgid "Email for the person assigned as host."
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: my-calendar.php:219
|
3290 |
msgid "Short event description."
|
3291 |
msgstr "Descrizione breve dell'evento."
|
3292 |
|
3293 |
+
#: my-calendar.php:222
|
3294 |
msgid "Description of the event."
|
3295 |
msgstr "Descrizione dell'evento"
|
3296 |
|
3297 |
+
#: my-calendar.php:228
|
3298 |
msgid "URL provided for the event."
|
3299 |
msgstr "URL fornito per l'evento."
|
3300 |
|
3301 |
+
#: my-calendar.php:231
|
3302 |
msgid "Link to an auto-generated page containing information about the event."
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: my-calendar.php:234
|
3306 |
msgid "Whether event is currently open for registration."
|
3307 |
msgstr "Se un evento è al momento disponibile alla registrazione."
|
3308 |
|
3309 |
+
#: my-calendar.php:237
|
3310 |
msgid "Current status of event: either \"Published\" or \"Reserved.\""
|
3311 |
msgstr ""
|
3312 |
|
3313 |
+
#: my-calendar.php:243
|
3314 |
msgid "Name of the location of the event."
|
3315 |
msgstr "Nome della località dell'evento."
|
3316 |
|
3317 |
+
#: my-calendar.php:246
|
3318 |
msgid "First line of the site address."
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: my-calendar.php:249
|
3322 |
msgid "Second line of the site address."
|
3323 |
msgstr "Seconda linea dell'indirizzo del sito."
|
3324 |
|
3325 |
+
#: my-calendar.php:252
|
3326 |
msgid "City."
|
3327 |
msgstr "Città."
|
3328 |
|
3329 |
+
#: my-calendar.php:255
|
3330 |
msgid "State."
|
3331 |
msgstr "Stato."
|
3332 |
|
3333 |
+
#: my-calendar.php:258
|
3334 |
msgid "Postal code/zip code."
|
3335 |
msgstr "CAP"
|
3336 |
|
3337 |
+
#: my-calendar.php:261
|
3338 |
msgid "Custom region."
|
3339 |
msgstr ""
|
3340 |
|
3341 |
+
#: my-calendar.php:264
|
3342 |
msgid "Country for the event location."
|
3343 |
msgstr "Paese della località dell'evento"
|
3344 |
|
3345 |
+
#: my-calendar.php:267
|
3346 |
msgid "Output the URL for the location."
|
3347 |
+
msgstr "Restituisce l'URL per la località."
|
3348 |
|
3349 |
+
#: my-calendar.php:270
|
3350 |
msgid "Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
3351 |
+
msgstr "Indirizzo dell'evento nel formato <a href=\"http://microformats.org/wiki/hcard\">hcard</a>."
|
3352 |
|
3353 |
+
#: my-calendar.php:273
|
3354 |
msgid "Link to Google Map to the event, if address information is available."
|
3355 |
+
msgstr "Collegamento a Google Maps per l'evento, se l'indirizzo è reso disponibile."
|
3356 |
|
3357 |
+
#: my-calendar.php:279
|
3358 |
msgid "Name of the category of the event."
|
3359 |
msgstr "Nome della categoria dell'evento."
|
3360 |
|
3361 |
+
#: my-calendar.php:282
|
3362 |
msgid "URL for the event's category icon."
|
3363 |
msgstr ""
|
3364 |
|
3365 |
+
#: my-calendar.php:285
|
3366 |
msgid "Hex code for the event's category color."
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
#: my-calendar.php:288
|
3370 |
msgid "ID of the category of the event."
|
3371 |
msgstr "ID della categoria dell'evento."
|
3372 |
|
3373 |
+
#: my-calendar.php:308 my-calendar.php:310 my-calendar.php:315
|
3374 |
+
#: my-calendar.php:317
|
3375 |
msgid "My Calendar"
|
3376 |
msgstr "My Calendar"
|
3377 |
|
3378 |
+
#: my-calendar.php:326
|
3379 |
msgid "Add/Edit Events"
|
3380 |
msgstr "Aggiungere/Modificare eventi"
|
3381 |
|
3382 |
+
#: my-calendar.php:332
|
3383 |
msgid "Style Editor"
|
3384 |
msgstr "Style Editor"
|
3385 |
|
3386 |
+
#: my-calendar.php:333
|
3387 |
msgid "Behavior Editor"
|
3388 |
msgstr "Editore Behavior"
|
3389 |
|
3390 |
+
#: my-calendar.php:334
|
3391 |
msgid "Template Editor"
|
3392 |
msgstr ""
|
3393 |
|
lang/my-calendar-ru_RU.mo
CHANGED
Binary file
|
lang/my-calendar-ru_RU.po
CHANGED
@@ -1,3841 +1,3404 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
|
13 |
-
|
14 |
-
"
|
15 |
-
"
|
16 |
-
|
17 |
-
|
18 |
-
"
|
19 |
-
"
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
-
|
37 |
-
#: my-calendar-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
msgid "My Calendar
|
55 |
-
msgstr "
|
56 |
-
|
57 |
-
#: my-calendar-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
msgid "
|
75 |
-
msgstr "
|
76 |
-
|
77 |
-
#: my-calendar-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
-
|
97 |
-
#: my-calendar-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
#: my-calendar-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
#:
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
msgid "
|
135 |
-
msgstr "
|
136 |
-
|
137 |
-
#:
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
161 |
-
|
162 |
-
#: my-calendar-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
msgid "
|
180 |
-
msgstr "
|
181 |
-
|
182 |
-
#: my-calendar-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
msgid "
|
192 |
-
msgstr "
|
193 |
-
|
194 |
-
#: my-calendar
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
#: my-calendar-categories.php:
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
msgid "
|
220 |
-
msgstr "
|
221 |
-
|
222 |
-
#: my-calendar-categories.php:
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
#: my-calendar.php:
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
#: my-calendar-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
#: my-calendar-event-manager.php:
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
#: my-calendar-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
#: my-calendar-event-manager.php:
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
msgid "
|
268 |
-
msgstr "
|
269 |
-
|
270 |
-
#: my-calendar-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
#: my-calendar-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
msgid "
|
288 |
-
msgstr "
|
289 |
-
|
290 |
-
#: my-calendar-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
#: my-calendar-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
#: my-calendar-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
#: my-calendar-
|
317 |
-
#: my-calendar-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
#: my-calendar-
|
323 |
-
#: my-calendar-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
msgid "
|
337 |
-
msgstr "
|
338 |
-
|
339 |
-
#: my-calendar-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
msgid "
|
349 |
-
msgstr "
|
350 |
-
|
351 |
-
#: my-calendar-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
msgid "
|
369 |
-
msgstr "
|
370 |
-
|
371 |
-
#: my-calendar-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
msgid "Show
|
389 |
-
msgstr "
|
390 |
-
|
391 |
-
#: my-calendar-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
#:
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
msgid "
|
413 |
-
msgstr "
|
414 |
-
|
415 |
-
#:
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
#: my-calendar-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
#: my-calendar-widgets.php:
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
msgid "
|
445 |
-
msgstr "
|
446 |
-
|
447 |
-
#: my-calendar
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
msgid "
|
465 |
-
msgstr "
|
466 |
-
|
467 |
-
#:
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
#: my-calendar-settings.php:
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
#: my-calendar-
|
478 |
-
|
479 |
-
msgid "
|
480 |
-
msgstr "
|
481 |
-
|
482 |
-
#: my-calendar-
|
483 |
-
|
484 |
-
msgid "
|
485 |
-
msgstr "
|
486 |
-
|
487 |
-
#: my-calendar-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
#: my-calendar-settings.php:
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
msgid "
|
516 |
-
msgstr "
|
517 |
-
|
518 |
-
#:
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
#:
|
527 |
-
#: my-calendar-
|
528 |
-
#: my-calendar-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
msgid "
|
540 |
-
msgstr "
|
541 |
-
|
542 |
-
#: my-calendar-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
msgid "
|
552 |
-
msgstr "
|
553 |
-
|
554 |
-
#: my-calendar-
|
555 |
-
|
556 |
-
msgid "
|
557 |
-
msgstr "
|
558 |
-
|
559 |
-
#: my-calendar-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
msgid "Calendar
|
577 |
-
msgstr "
|
578 |
-
|
579 |
-
#: my-calendar-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
msgid "
|
597 |
-
msgstr "
|
598 |
-
|
599 |
-
#: my-calendar-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
msgid "
|
662 |
-
msgstr "
|
663 |
-
|
664 |
-
#: my-calendar-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
msgid "
|
682 |
-
msgstr "
|
683 |
-
|
684 |
-
#: my-calendar-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
msgid "
|
702 |
-
msgstr "
|
703 |
-
|
704 |
-
#: my-calendar-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
msgid "
|
718 |
-
msgstr "
|
719 |
-
|
720 |
-
#: my-calendar-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
msgid "
|
743 |
-
msgstr "
|
744 |
-
|
745 |
-
#: my-calendar-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
msgid "
|
768 |
-
msgstr "
|
769 |
-
|
770 |
-
#: my-calendar-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
#: my-calendar-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
#: my-calendar-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
msgid "
|
813 |
-
msgstr "
|
814 |
-
|
815 |
-
#: my-calendar-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
msgid "
|
833 |
-
msgstr "
|
834 |
-
|
835 |
-
#: my-calendar-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
msgid "
|
853 |
-
msgstr "
|
854 |
-
|
855 |
-
#: my-calendar-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
msgid "
|
869 |
-
msgstr "
|
870 |
-
|
871 |
-
#: my-calendar-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
msgid "
|
889 |
-
msgstr "
|
890 |
-
|
891 |
-
#: my-calendar-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
#:
|
904 |
-
#: my-calendar-event-manager.php:
|
905 |
-
#: my-calendar-group-manager.php:
|
906 |
-
#: my-calendar-
|
907 |
-
#: my-calendar-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
#: my-calendar-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
#: my-calendar-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
#: my-calendar-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
#: my-calendar-event-manager.php:
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
#: my-calendar-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
msgid "
|
953 |
-
msgstr "
|
954 |
-
|
955 |
-
#: my-calendar-event-manager.php:
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
msgid "
|
970 |
-
msgstr "
|
971 |
-
|
972 |
-
#: my-calendar-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
msgid "
|
985 |
-
msgstr "
|
986 |
-
|
987 |
-
#: my-calendar-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
msgid "
|
1005 |
-
msgstr "
|
1006 |
-
|
1007 |
-
#: my-calendar-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
msgid "
|
1025 |
-
msgstr "
|
1026 |
-
|
1027 |
-
#: my-calendar-
|
1028 |
-
|
1029 |
-
msgid "
|
1030 |
-
msgstr "
|
1031 |
-
|
1032 |
-
#: my-calendar-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
msgid "
|
1050 |
-
msgstr "
|
1051 |
-
|
1052 |
-
#: my-calendar-
|
1053 |
-
|
1054 |
-
msgid "
|
1055 |
-
msgstr "
|
1056 |
-
|
1057 |
-
#: my-calendar-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
msgid "
|
1075 |
-
msgstr "
|
1076 |
-
|
1077 |
-
#: my-calendar-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
msgid "
|
1095 |
-
msgstr "
|
1096 |
-
|
1097 |
-
#: my-calendar-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
msgid "
|
1115 |
-
msgstr "
|
1116 |
-
|
1117 |
-
#: my-calendar-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
msgid "
|
1135 |
-
msgstr "
|
1136 |
-
|
1137 |
-
#: my-calendar-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
msgid "
|
1155 |
-
msgstr "
|
1156 |
-
|
1157 |
-
#: my-calendar-
|
1158 |
-
|
1159 |
-
msgid "
|
1160 |
-
msgstr "
|
1161 |
-
|
1162 |
-
#: my-calendar-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
#: my-calendar-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
msgid "
|
1181 |
-
msgstr "
|
1182 |
-
|
1183 |
-
#: my-calendar-core.php:
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
msgid "
|
1197 |
-
msgstr "
|
1198 |
-
|
1199 |
-
#: my-calendar-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
msgid "
|
1217 |
-
msgstr "
|
1218 |
-
|
1219 |
-
#: my-calendar-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
msgid "
|
1227 |
-
msgstr "
|
1228 |
-
|
1229 |
-
#: my-calendar-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
#: my-calendar-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
#: my-calendar-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
#: my-calendar-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
#: my-calendar-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
#: my-calendar-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
#: my-calendar-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
#: my-calendar-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
#: my-calendar-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
#: my-calendar-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
msgid "
|
1299 |
-
msgstr "
|
1300 |
-
|
1301 |
-
#: my-calendar.php:
|
1302 |
-
#: my-calendar.php:
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
#: my-calendar.php:
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
msgid "
|
1321 |
-
msgstr "
|
1322 |
-
|
1323 |
-
#: my-calendar-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
#: my-calendar-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
#: my-calendar-
|
1346 |
-
#: my-calendar-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
msgid "
|
1365 |
-
msgstr "
|
1366 |
-
|
1367 |
-
#: my-calendar-event-manager.php:
|
1368 |
-
#: my-calendar-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
#: my-calendar-event-manager.php:
|
1373 |
-
#: my-calendar-
|
1374 |
-
#: my-calendar-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
#: my-calendar-event-manager.php:
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
#: my-calendar-group-manager.php:
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
msgid "
|
1400 |
-
msgstr "
|
1401 |
-
|
1402 |
-
#: my-calendar-event-manager.php:
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
#: my-calendar-event-manager.php:
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
msgid "
|
1438 |
-
msgstr "
|
1439 |
-
|
1440 |
-
#: my-calendar-event-manager.php:
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
msgid "
|
1454 |
-
msgstr "
|
1455 |
-
|
1456 |
-
#: my-calendar-event-manager.php:
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
msgid "
|
1462 |
-
msgstr "
|
1463 |
-
|
1464 |
-
#: my-calendar-event-manager.php:
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
#: my-calendar-group-manager.php:
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
#: my-calendar-group-manager.php:
|
1494 |
-
|
1495 |
-
msgid "
|
1496 |
-
msgstr "
|
1497 |
-
|
1498 |
-
#: my-calendar-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
#: my-calendar-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
#: my-calendar-group-manager.php:
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
msgid "
|
1532 |
-
msgstr "
|
1533 |
-
|
1534 |
-
#: my-calendar-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
|
1550 |
-
#: my-calendar-group-manager.php:
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
#: my-calendar-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
#: my-calendar-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
msgid "
|
1588 |
-
msgstr "
|
1589 |
-
|
1590 |
-
#: my-calendar-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
msgid "
|
1608 |
-
msgstr "
|
1609 |
-
|
1610 |
-
#: my-calendar-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
msgid "
|
1628 |
-
msgstr "
|
1629 |
-
|
1630 |
-
#: my-calendar-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
#: my-calendar-
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
#: my-calendar-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
#: my-calendar-
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
#: my-calendar-
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
msgid "
|
1688 |
-
msgstr "
|
1689 |
-
|
1690 |
-
#: my-calendar-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
msgid "
|
1700 |
-
msgstr "
|
1701 |
-
|
1702 |
-
#: my-calendar-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
msgid "
|
1712 |
-
msgstr "
|
1713 |
-
|
1714 |
-
#: my-calendar-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
#: my-calendar-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
#: my-calendar-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
msgid "
|
1744 |
-
msgstr "
|
1745 |
-
|
1746 |
-
#: my-calendar-
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
#: my-calendar-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
#: my-calendar-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
|
1767 |
-
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
msgid "
|
1772 |
-
msgstr "
|
1773 |
-
|
1774 |
-
#: my-calendar-
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
#: my-calendar-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
-
#: my-calendar-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
msgid "
|
1800 |
-
msgstr "
|
1801 |
-
|
1802 |
-
#:
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
msgid "
|
1808 |
-
msgstr "
|
1809 |
-
|
1810 |
-
#: my-calendar-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
#: my-calendar-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
msgid "
|
1828 |
-
msgstr "
|
1829 |
-
|
1830 |
-
#: my-calendar-
|
1831 |
-
|
1832 |
-
|
1833 |
-
|
1834 |
-
|
1835 |
-
|
1836 |
-
|
1837 |
-
|
1838 |
-
|
1839 |
-
msgid "
|
1840 |
-
msgstr "
|
1841 |
-
|
1842 |
-
#: my-calendar-
|
1843 |
-
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
#: my-calendar-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
msgid "
|
1860 |
-
msgstr "
|
1861 |
-
|
1862 |
-
#: my-calendar-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
#: my-calendar-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
1878 |
-
|
1879 |
-
msgid "
|
1880 |
-
msgstr "
|
1881 |
-
|
1882 |
-
#: my-calendar-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
#: my-calendar-
|
1901 |
-
|
1902 |
-
|
1903 |
-
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
#: my-calendar-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
msgid "
|
1926 |
-
msgstr "
|
1927 |
-
|
1928 |
-
#: my-calendar-
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
msgid "
|
1942 |
-
msgstr "
|
1943 |
-
|
1944 |
-
#: my-calendar-
|
1945 |
-
|
1946 |
-
|
1947 |
-
|
1948 |
-
|
1949 |
-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
#: my-calendar-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
|
1968 |
-
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
msgid "
|
1978 |
-
msgstr "
|
1979 |
-
|
1980 |
-
#: my-calendar-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
|
1991 |
-
|
1992 |
-
|
1993 |
-
msgid "
|
1994 |
-
msgstr "
|
1995 |
-
|
1996 |
-
#: my-calendar-
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
msgid "
|
2014 |
-
msgstr "
|
2015 |
-
|
2016 |
-
#: my-calendar-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
msgid "
|
2034 |
-
msgstr "
|
2035 |
-
|
2036 |
-
#: my-calendar-
|
2037 |
-
|
2038 |
-
|
2039 |
-
|
2040 |
-
|
2041 |
-
|
2042 |
-
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
msgid "
|
2054 |
-
msgstr "
|
2055 |
-
|
2056 |
-
#: my-calendar-
|
2057 |
-
|
2058 |
-
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
msgid "
|
2074 |
-
msgstr "
|
2075 |
-
|
2076 |
-
#: my-calendar-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
2085 |
-
|
2086 |
-
|
2087 |
-
|
2088 |
-
|
2089 |
-
msgid "
|
2090 |
-
msgstr "
|
2091 |
-
|
2092 |
-
#: my-calendar-output.php:
|
2093 |
-
|
2094 |
-
|
2095 |
-
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
-
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
msgid "
|
2110 |
-
msgstr "
|
2111 |
-
|
2112 |
-
#: my-calendar-output.php:
|
2113 |
-
|
2114 |
-
|
2115 |
-
|
2116 |
-
|
2117 |
-
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
msgid "
|
2130 |
-
msgstr "
|
2131 |
-
|
2132 |
-
#: my-calendar-output.php:
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
|
2145 |
-
|
2146 |
-
|
2147 |
-
|
2148 |
-
|
2149 |
-
msgid "
|
2150 |
-
msgstr "
|
2151 |
-
|
2152 |
-
#: my-calendar-output.php:
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
-
|
2160 |
-
|
2161 |
-
|
2162 |
-
|
2163 |
-
|
2164 |
-
|
2165 |
-
|
2166 |
-
|
2167 |
-
|
2168 |
-
|
2169 |
-
msgid "
|
2170 |
-
msgstr "
|
2171 |
-
|
2172 |
-
#: my-calendar-output.php:
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
msgid "
|
2190 |
-
msgstr "
|
2191 |
-
|
2192 |
-
#: my-calendar-output.php:
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
msgid "
|
2210 |
-
msgstr "
|
2211 |
-
|
2212 |
-
#: my-calendar-output.php:
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
msgid "
|
2230 |
-
msgstr "
|
2231 |
-
|
2232 |
-
#: my-calendar-
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
msgid "
|
2246 |
-
msgstr "
|
2247 |
-
|
2248 |
-
#: my-calendar-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
msgid "
|
2262 |
-
msgstr ""
|
2263 |
-
|
2264 |
-
#:
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
msgid "
|
2282 |
-
msgstr ""
|
2283 |
-
|
2284 |
-
#:
|
2285 |
-
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
msgid "
|
2302 |
-
msgstr ""
|
2303 |
-
|
2304 |
-
#: my-calendar-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
#: my-calendar-
|
2313 |
-
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
|
2320 |
-
#: my-calendar-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
|
2327 |
-
|
2328 |
-
#: my-calendar-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
msgid "
|
2338 |
-
msgstr ""
|
2339 |
-
|
2340 |
-
#: my-calendar-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
msgid "
|
2346 |
-
msgstr ""
|
2347 |
-
|
2348 |
-
#: my-calendar-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
msgid "
|
2354 |
-
msgstr ""
|
2355 |
-
|
2356 |
-
#: my-calendar-
|
2357 |
-
|
2358 |
-
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
|
2367 |
-
|
2368 |
-
|
2369 |
-
|
2370 |
-
|
2371 |
-
|
2372 |
-
|
2373 |
-
msgid "
|
2374 |
-
msgstr ""
|
2375 |
-
|
2376 |
-
#: my-calendar-
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
msgid "
|
2394 |
-
msgstr ""
|
2395 |
-
|
2396 |
-
#: my-calendar-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
msgid "
|
2410 |
-
msgstr ""
|
2411 |
-
|
2412 |
-
#: my-calendar-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
2422 |
-
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
msgid "
|
2430 |
-
msgstr ""
|
2431 |
-
|
2432 |
-
#: my-calendar-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
|
2440 |
-
#: my-calendar-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
#: my-calendar-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
2457 |
-
|
2458 |
-
|
2459 |
-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
|
2464 |
-
|
2465 |
-
msgid "
|
2466 |
-
msgstr ""
|
2467 |
-
|
2468 |
-
#: my-calendar-
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
#: my-calendar-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
|
2490 |
-
|
2491 |
-
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
msgid "
|
2498 |
-
msgstr ""
|
2499 |
-
|
2500 |
-
#: my-calendar-
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
#: my-calendar-
|
2513 |
-
|
2514 |
-
|
2515 |
-
|
2516 |
-
|
2517 |
-
|
2518 |
-
|
2519 |
-
|
2520 |
-
#: my-calendar-
|
2521 |
-
|
2522 |
-
|
2523 |
-
|
2524 |
-
|
2525 |
-
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
-
|
2530 |
-
|
2531 |
-
|
2532 |
-
|
2533 |
-
|
2534 |
-
|
2535 |
-
|
2536 |
-
|
2537 |
-
msgid "
|
2538 |
-
msgstr ""
|
2539 |
-
|
2540 |
-
#: my-calendar-
|
2541 |
-
|
2542 |
-
|
2543 |
-
|
2544 |
-
|
2545 |
-
|
2546 |
-
|
2547 |
-
|
2548 |
-
|
2549 |
-
msgid "
|
2550 |
-
msgstr ""
|
2551 |
-
|
2552 |
-
#: my-calendar-
|
2553 |
-
|
2554 |
-
|
2555 |
-
|
2556 |
-
|
2557 |
-
|
2558 |
-
|
2559 |
-
|
2560 |
-
|
2561 |
-
|
2562 |
-
|
2563 |
-
|
2564 |
-
|
2565 |
-
msgid "
|
2566 |
-
msgstr ""
|
2567 |
-
|
2568 |
-
#: my-calendar-
|
2569 |
-
|
2570 |
-
|
2571 |
-
|
2572 |
-
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
|
2581 |
-
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
2585 |
-
msgid "
|
2586 |
-
msgstr ""
|
2587 |
-
|
2588 |
-
#: my-calendar-
|
2589 |
-
|
2590 |
-
|
2591 |
-
|
2592 |
-
|
2593 |
-
|
2594 |
-
|
2595 |
-
|
2596 |
-
|
2597 |
-
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
|
2605 |
-
msgid "
|
2606 |
-
msgstr ""
|
2607 |
-
|
2608 |
-
#: my-calendar-
|
2609 |
-
|
2610 |
-
|
2611 |
-
|
2612 |
-
|
2613 |
-
|
2614 |
-
|
2615 |
-
|
2616 |
-
|
2617 |
-
|
2618 |
-
|
2619 |
-
|
2620 |
-
|
2621 |
-
msgid "
|
2622 |
-
msgstr ""
|
2623 |
-
|
2624 |
-
#: my-calendar-
|
2625 |
-
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
2633 |
-
|
2634 |
-
|
2635 |
-
|
2636 |
-
|
2637 |
-
|
2638 |
-
|
2639 |
-
|
2640 |
-
|
2641 |
-
msgid "
|
2642 |
-
msgstr ""
|
2643 |
-
|
2644 |
-
#: my-calendar-
|
2645 |
-
|
2646 |
-
|
2647 |
-
|
2648 |
-
|
2649 |
-
|
2650 |
-
|
2651 |
-
|
2652 |
-
|
2653 |
-
|
2654 |
-
|
2655 |
-
|
2656 |
-
|
2657 |
-
|
2658 |
-
|
2659 |
-
|
2660 |
-
|
2661 |
-
msgid "
|
2662 |
-
msgstr ""
|
2663 |
-
|
2664 |
-
#: my-calendar-
|
2665 |
-
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
|
2670 |
-
|
2671 |
-
|
2672 |
-
|
2673 |
-
|
2674 |
-
|
2675 |
-
|
2676 |
-
|
2677 |
-
|
2678 |
-
|
2679 |
-
|
2680 |
-
|
2681 |
-
msgid "
|
2682 |
-
msgstr ""
|
2683 |
-
|
2684 |
-
#: my-calendar-
|
2685 |
-
|
2686 |
-
|
2687 |
-
|
2688 |
-
|
2689 |
-
|
2690 |
-
|
2691 |
-
|
2692 |
-
|
2693 |
-
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
|
2698 |
-
|
2699 |
-
|
2700 |
-
#: my-calendar-
|
2701 |
-
|
2702 |
-
|
2703 |
-
|
2704 |
-
|
2705 |
-
|
2706 |
-
|
2707 |
-
|
2708 |
-
|
2709 |
-
|
2710 |
-
|
2711 |
-
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
-
|
2716 |
-
|
2717 |
-
msgid "
|
2718 |
-
msgstr ""
|
2719 |
-
|
2720 |
-
#: my-calendar-
|
2721 |
-
|
2722 |
-
|
2723 |
-
|
2724 |
-
|
2725 |
-
|
2726 |
-
|
2727 |
-
|
2728 |
-
|
2729 |
-
|
2730 |
-
|
2731 |
-
|
2732 |
-
|
2733 |
-
msgid "
|
2734 |
-
msgstr ""
|
2735 |
-
|
2736 |
-
#: my-calendar-
|
2737 |
-
|
2738 |
-
|
2739 |
-
|
2740 |
-
|
2741 |
-
|
2742 |
-
|
2743 |
-
|
2744 |
-
|
2745 |
-
|
2746 |
-
|
2747 |
-
|
2748 |
-
|
2749 |
-
|
2750 |
-
|
2751 |
-
|
2752 |
-
|
2753 |
-
msgid "
|
2754 |
-
msgstr ""
|
2755 |
-
|
2756 |
-
#: my-calendar-
|
2757 |
-
|
2758 |
-
|
2759 |
-
|
2760 |
-
|
2761 |
-
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
msgid "
|
2770 |
-
msgstr ""
|
2771 |
-
|
2772 |
-
#: my-calendar-
|
2773 |
-
|
2774 |
-
|
2775 |
-
|
2776 |
-
|
2777 |
-
|
2778 |
-
|
2779 |
-
|
2780 |
-
|
2781 |
-
|
2782 |
-
|
2783 |
-
|
2784 |
-
|
2785 |
-
|
2786 |
-
|
2787 |
-
|
2788 |
-
|
2789 |
-
msgid "
|
2790 |
-
msgstr ""
|
2791 |
-
|
2792 |
-
#: my-calendar-
|
2793 |
-
|
2794 |
-
|
2795 |
-
|
2796 |
-
|
2797 |
-
|
2798 |
-
|
2799 |
-
|
2800 |
-
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
|
2805 |
-
msgid ""
|
2806 |
-
"
|
2807 |
-
|
2808 |
-
|
2809 |
-
|
2810 |
-
|
2811 |
-
|
2812 |
-
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
2816 |
-
|
2817 |
-
msgid "
|
2818 |
-
msgstr ""
|
2819 |
-
|
2820 |
-
#: my-calendar-
|
2821 |
-
|
2822 |
-
|
2823 |
-
|
2824 |
-
|
2825 |
-
|
2826 |
-
|
2827 |
-
|
2828 |
-
|
2829 |
-
|
2830 |
-
|
2831 |
-
|
2832 |
-
|
2833 |
-
|
2834 |
-
|
2835 |
-
|
2836 |
-
|
2837 |
-
msgid "
|
2838 |
-
msgstr ""
|
2839 |
-
|
2840 |
-
#: my-calendar-
|
2841 |
-
|
2842 |
-
|
2843 |
-
|
2844 |
-
|
2845 |
-
|
2846 |
-
|
2847 |
-
|
2848 |
-
|
2849 |
-
msgid "
|
2850 |
-
msgstr ""
|
2851 |
-
|
2852 |
-
#: my-calendar-
|
2853 |
-
|
2854 |
-
|
2855 |
-
|
2856 |
-
|
2857 |
-
|
2858 |
-
|
2859 |
-
|
2860 |
-
|
2861 |
-
|
2862 |
-
|
2863 |
-
|
2864 |
-
|
2865 |
-
msgid "
|
2866 |
-
msgstr ""
|
2867 |
-
|
2868 |
-
#: my-calendar-
|
2869 |
-
|
2870 |
-
|
2871 |
-
|
2872 |
-
|
2873 |
-
|
2874 |
-
|
2875 |
-
|
2876 |
-
|
2877 |
-
|
2878 |
-
|
2879 |
-
|
2880 |
-
|
2881 |
-
|
2882 |
-
|
2883 |
-
|
2884 |
-
|
2885 |
-
|
2886 |
-
|
2887 |
-
|
2888 |
-
|
2889 |
-
|
2890 |
-
|
2891 |
-
|
2892 |
-
|
2893 |
-
|
2894 |
-
|
2895 |
-
|
2896 |
-
#: my-calendar-
|
2897 |
-
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
|
2902 |
-
|
2903 |
-
|
2904 |
-
|
2905 |
-
|
2906 |
-
|
2907 |
-
|
2908 |
-
|
2909 |
-
|
2910 |
-
|
2911 |
-
|
2912 |
-
|
2913 |
-
msgid "
|
2914 |
-
msgstr ""
|
2915 |
-
|
2916 |
-
#: my-calendar-
|
2917 |
-
|
2918 |
-
|
2919 |
-
|
2920 |
-
|
2921 |
-
|
2922 |
-
|
2923 |
-
|
2924 |
-
|
2925 |
-
|
2926 |
-
|
2927 |
-
|
2928 |
-
#: my-calendar-
|
2929 |
-
|
2930 |
-
|
2931 |
-
|
2932 |
-
|
2933 |
-
|
2934 |
-
|
2935 |
-
|
2936 |
-
|
2937 |
-
|
2938 |
-
|
2939 |
-
|
2940 |
-
|
2941 |
-
|
2942 |
-
|
2943 |
-
|
2944 |
-
|
2945 |
-
msgid "
|
2946 |
-
msgstr ""
|
2947 |
-
|
2948 |
-
#: my-calendar-
|
2949 |
-
|
2950 |
-
|
2951 |
-
|
2952 |
-
|
2953 |
-
|
2954 |
-
|
2955 |
-
|
2956 |
-
|
2957 |
-
|
2958 |
-
|
2959 |
-
|
2960 |
-
|
2961 |
-
msgid "
|
2962 |
-
msgstr ""
|
2963 |
-
|
2964 |
-
#: my-calendar-
|
2965 |
-
|
2966 |
-
|
2967 |
-
|
2968 |
-
|
2969 |
-
|
2970 |
-
|
2971 |
-
|
2972 |
-
|
2973 |
-
|
2974 |
-
|
2975 |
-
|
2976 |
-
|
2977 |
-
msgid "
|
2978 |
-
msgstr ""
|
2979 |
-
|
2980 |
-
#: my-calendar-
|
2981 |
-
|
2982 |
-
|
2983 |
-
|
2984 |
-
|
2985 |
-
|
2986 |
-
|
2987 |
-
|
2988 |
-
|
2989 |
-
|
2990 |
-
|
2991 |
-
|
2992 |
-
|
2993 |
-
|
2994 |
-
|
2995 |
-
|
2996 |
-
|
2997 |
-
msgid "
|
2998 |
-
msgstr ""
|
2999 |
-
|
3000 |
-
#: my-calendar-
|
3001 |
-
|
3002 |
-
|
3003 |
-
|
3004 |
-
|
3005 |
-
|
3006 |
-
|
3007 |
-
|
3008 |
-
|
3009 |
-
|
3010 |
-
|
3011 |
-
|
3012 |
-
|
3013 |
-
|
3014 |
-
|
3015 |
-
|
3016 |
-
|
3017 |
-
msgid "
|
3018 |
-
msgstr ""
|
3019 |
-
|
3020 |
-
#: my-calendar-
|
3021 |
-
|
3022 |
-
|
3023 |
-
|
3024 |
-
|
3025 |
-
|
3026 |
-
|
3027 |
-
|
3028 |
-
|
3029 |
-
|
3030 |
-
|
3031 |
-
|
3032 |
-
|
3033 |
-
|
3034 |
-
|
3035 |
-
|
3036 |
-
|
3037 |
-
msgid "
|
3038 |
-
msgstr ""
|
3039 |
-
|
3040 |
-
#: my-calendar-
|
3041 |
-
|
3042 |
-
|
3043 |
-
|
3044 |
-
|
3045 |
-
|
3046 |
-
|
3047 |
-
|
3048 |
-
|
3049 |
-
|
3050 |
-
|
3051 |
-
|
3052 |
-
|
3053 |
-
|
3054 |
-
|
3055 |
-
|
3056 |
-
|
3057 |
-
msgid "
|
3058 |
-
msgstr ""
|
3059 |
-
|
3060 |
-
#: my-calendar-
|
3061 |
-
|
3062 |
-
|
3063 |
-
|
3064 |
-
|
3065 |
-
|
3066 |
-
|
3067 |
-
|
3068 |
-
|
3069 |
-
|
3070 |
-
|
3071 |
-
|
3072 |
-
|
3073 |
-
|
3074 |
-
|
3075 |
-
|
3076 |
-
|
3077 |
-
msgid "
|
3078 |
-
msgstr ""
|
3079 |
-
|
3080 |
-
#: my-calendar-
|
3081 |
-
|
3082 |
-
|
3083 |
-
|
3084 |
-
|
3085 |
-
|
3086 |
-
|
3087 |
-
|
3088 |
-
|
3089 |
-
|
3090 |
-
|
3091 |
-
|
3092 |
-
|
3093 |
-
|
3094 |
-
|
3095 |
-
|
3096 |
-
|
3097 |
-
msgid "
|
3098 |
-
msgstr ""
|
3099 |
-
|
3100 |
-
#: my-calendar-
|
3101 |
-
|
3102 |
-
|
3103 |
-
|
3104 |
-
|
3105 |
-
|
3106 |
-
|
3107 |
-
|
3108 |
-
|
3109 |
-
|
3110 |
-
|
3111 |
-
|
3112 |
-
|
3113 |
-
|
3114 |
-
|
3115 |
-
|
3116 |
-
|
3117 |
-
msgid "
|
3118 |
-
msgstr ""
|
3119 |
-
|
3120 |
-
#: my-calendar-
|
3121 |
-
|
3122 |
-
|
3123 |
-
|
3124 |
-
|
3125 |
-
|
3126 |
-
|
3127 |
-
|
3128 |
-
|
3129 |
-
|
3130 |
-
|
3131 |
-
|
3132 |
-
|
3133 |
-
|
3134 |
-
|
3135 |
-
|
3136 |
-
|
3137 |
-
|
3138 |
-
|
3139 |
-
|
3140 |
-
|
3141 |
-
|
3142 |
-
|
3143 |
-
|
3144 |
-
|
3145 |
-
|
3146 |
-
|
3147 |
-
|
3148 |
-
|
3149 |
-
|
3150 |
-
msgid "
|
3151 |
-
msgstr ""
|
3152 |
-
|
3153 |
-
#: my-calendar-
|
3154 |
-
|
3155 |
-
|
3156 |
-
|
3157 |
-
|
3158 |
-
|
3159 |
-
|
3160 |
-
|
3161 |
-
|
3162 |
-
msgid "
|
3163 |
-
msgstr ""
|
3164 |
-
|
3165 |
-
#: my-calendar-
|
3166 |
-
|
3167 |
-
|
3168 |
-
|
3169 |
-
|
3170 |
-
|
3171 |
-
|
3172 |
-
|
3173 |
-
|
3174 |
-
|
3175 |
-
|
3176 |
-
|
3177 |
-
|
3178 |
-
|
3179 |
-
|
3180 |
-
|
3181 |
-
|
3182 |
-
msgid "
|
3183 |
-
msgstr ""
|
3184 |
-
|
3185 |
-
#: my-calendar-
|
3186 |
-
|
3187 |
-
|
3188 |
-
|
3189 |
-
|
3190 |
-
|
3191 |
-
|
3192 |
-
|
3193 |
-
|
3194 |
-
|
3195 |
-
|
3196 |
-
|
3197 |
-
|
3198 |
-
|
3199 |
-
|
3200 |
-
|
3201 |
-
|
3202 |
-
msgid "
|
3203 |
-
msgstr ""
|
3204 |
-
|
3205 |
-
#: my-calendar
|
3206 |
-
|
3207 |
-
|
3208 |
-
|
3209 |
-
|
3210 |
-
|
3211 |
-
|
3212 |
-
|
3213 |
-
|
3214 |
-
|
3215 |
-
|
3216 |
-
|
3217 |
-
|
3218 |
-
|
3219 |
-
|
3220 |
-
|
3221 |
-
|
3222 |
-
msgid "
|
3223 |
-
msgstr ""
|
3224 |
-
|
3225 |
-
#: my-calendar
|
3226 |
-
|
3227 |
-
|
3228 |
-
|
3229 |
-
|
3230 |
-
|
3231 |
-
|
3232 |
-
|
3233 |
-
|
3234 |
-
|
3235 |
-
|
3236 |
-
|
3237 |
-
|
3238 |
-
|
3239 |
-
|
3240 |
-
|
3241 |
-
|
3242 |
-
msgid "
|
3243 |
-
msgstr ""
|
3244 |
-
|
3245 |
-
#: my-calendar
|
3246 |
-
|
3247 |
-
|
3248 |
-
|
3249 |
-
|
3250 |
-
|
3251 |
-
|
3252 |
-
|
3253 |
-
|
3254 |
-
|
3255 |
-
|
3256 |
-
|
3257 |
-
|
3258 |
-
|
3259 |
-
|
3260 |
-
|
3261 |
-
|
3262 |
-
msgid "
|
3263 |
-
msgstr ""
|
3264 |
-
|
3265 |
-
#: my-calendar
|
3266 |
-
|
3267 |
-
|
3268 |
-
|
3269 |
-
|
3270 |
-
|
3271 |
-
|
3272 |
-
|
3273 |
-
|
3274 |
-
|
3275 |
-
|
3276 |
-
|
3277 |
-
|
3278 |
-
|
3279 |
-
|
3280 |
-
|
3281 |
-
|
3282 |
-
msgid "
|
3283 |
-
msgstr ""
|
3284 |
-
|
3285 |
-
#: my-calendar
|
3286 |
-
|
3287 |
-
|
3288 |
-
|
3289 |
-
|
3290 |
-
|
3291 |
-
|
3292 |
-
|
3293 |
-
|
3294 |
-
|
3295 |
-
|
3296 |
-
|
3297 |
-
|
3298 |
-
|
3299 |
-
|
3300 |
-
|
3301 |
-
|
3302 |
-
msgid "
|
3303 |
-
msgstr ""
|
3304 |
-
|
3305 |
-
#: my-calendar
|
3306 |
-
|
3307 |
-
|
3308 |
-
|
3309 |
-
|
3310 |
-
|
3311 |
-
|
3312 |
-
|
3313 |
-
|
3314 |
-
|
3315 |
-
|
3316 |
-
|
3317 |
-
|
3318 |
-
|
3319 |
-
|
3320 |
-
|
3321 |
-
|
3322 |
-
msgid "
|
3323 |
-
msgstr ""
|
3324 |
-
|
3325 |
-
#: my-calendar
|
3326 |
-
|
3327 |
-
|
3328 |
-
|
3329 |
-
|
3330 |
-
|
3331 |
-
|
3332 |
-
|
3333 |
-
|
3334 |
-
|
3335 |
-
|
3336 |
-
|
3337 |
-
|
3338 |
-
|
3339 |
-
|
3340 |
-
|
3341 |
-
|
3342 |
-
msgid "
|
3343 |
-
msgstr ""
|
3344 |
-
|
3345 |
-
#: my-calendar
|
3346 |
-
|
3347 |
-
|
3348 |
-
|
3349 |
-
|
3350 |
-
|
3351 |
-
|
3352 |
-
|
3353 |
-
|
3354 |
-
|
3355 |
-
|
3356 |
-
|
3357 |
-
|
3358 |
-
|
3359 |
-
|
3360 |
-
|
3361 |
-
|
3362 |
-
msgid "
|
3363 |
-
msgstr ""
|
3364 |
-
|
3365 |
-
#: my-calendar
|
3366 |
-
|
3367 |
-
|
3368 |
-
|
3369 |
-
|
3370 |
-
|
3371 |
-
|
3372 |
-
|
3373 |
-
|
3374 |
-
|
3375 |
-
|
3376 |
-
|
3377 |
-
|
3378 |
-
|
3379 |
-
|
3380 |
-
|
3381 |
-
|
3382 |
-
|
3383 |
-
|
3384 |
-
|
3385 |
-
|
3386 |
-
|
3387 |
-
msgid "
|
3388 |
-
msgstr ""
|
3389 |
-
|
3390 |
-
#: my-calendar
|
3391 |
-
|
3392 |
-
|
3393 |
-
|
3394 |
-
|
3395 |
-
|
3396 |
-
|
3397 |
-
msgid "
|
3398 |
-
msgstr ""
|
3399 |
-
|
3400 |
-
|
3401 |
-
|
3402 |
-
|
3403 |
-
|
3404 |
-
|
3405 |
-
#: my-calendar-templating.php:232
|
3406 |
-
#@ my-calendar
|
3407 |
-
msgid "Your custom template for events in sidebar/mini calendar output."
|
3408 |
-
msgstr ""
|
3409 |
-
|
3410 |
-
#: my-calendar-templating.php:235
|
3411 |
-
#@ my-calendar
|
3412 |
-
msgid "Save Mini Template"
|
3413 |
-
msgstr ""
|
3414 |
-
|
3415 |
-
#: my-calendar-templating.php:244
|
3416 |
-
#@ my-calendar
|
3417 |
-
msgid "My Calendar: Event Details Page Template"
|
3418 |
-
msgstr ""
|
3419 |
-
|
3420 |
-
#: my-calendar-templating.php:249
|
3421 |
-
#@ my-calendar
|
3422 |
-
msgid "Use this details template"
|
3423 |
-
msgstr ""
|
3424 |
-
|
3425 |
-
#: my-calendar-templating.php:252
|
3426 |
-
#@ my-calendar
|
3427 |
-
msgid "Your custom template for events on the event details page."
|
3428 |
-
msgstr ""
|
3429 |
-
|
3430 |
-
#: my-calendar-templating.php:255
|
3431 |
-
#@ my-calendar
|
3432 |
-
msgid "Save Details Template"
|
3433 |
-
msgstr ""
|
3434 |
-
|
3435 |
-
#: my-calendar-upgrade-db.php:25
|
3436 |
-
#@ my-calendar
|
3437 |
-
msgid "Update now."
|
3438 |
-
msgstr ""
|
3439 |
-
|
3440 |
-
#: my-calendar-widgets.php:149
|
3441 |
-
#@ my-calendar
|
3442 |
-
msgid "Skip the first <em>n</em> events"
|
3443 |
-
msgstr ""
|
3444 |
-
|
3445 |
-
#: my-calendar-widgets.php:591
|
3446 |
-
#@ my-calendar
|
3447 |
-
msgid "Mini-Calendar Timespan:"
|
3448 |
-
msgstr ""
|
3449 |
-
|
3450 |
-
#: my-calendar.php:174
|
3451 |
-
#@ my-calendar
|
3452 |
-
msgid "Template Editor"
|
3453 |
-
msgstr ""
|
3454 |
-
|
3455 |
-
#: my-calendar.php:178
|
3456 |
-
#@ my-calendar
|
3457 |
-
msgid "My Calendar Pro Settings"
|
3458 |
-
msgstr ""
|
3459 |
-
|
3460 |
-
#: my-calendar-behaviors.php:80
|
3461 |
-
#@ my-calendar
|
3462 |
-
msgid "Details boxes are draggable"
|
3463 |
-
msgstr ""
|
3464 |
-
|
3465 |
-
#: my-calendar-core.php:1166
|
3466 |
-
#@ my-calendar
|
3467 |
-
msgid "Please read the FAQ and other Help documents before making a support request."
|
3468 |
-
msgstr ""
|
3469 |
-
|
3470 |
-
#: my-calendar-core.php:1168
|
3471 |
-
#@ my-calendar
|
3472 |
-
msgid "Please describe your problem in detail. I'm not psychic."
|
3473 |
-
msgstr ""
|
3474 |
-
|
3475 |
-
#: my-calendar-core.php:1173
|
3476 |
-
#@ my-calendar
|
3477 |
-
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
|
3478 |
-
msgstr ""
|
3479 |
-
|
3480 |
-
#: my-calendar-core.php:1175
|
3481 |
-
#@ my-calendar
|
3482 |
-
msgid "I'll get back to you as soon as I can, after dealing with any support requests from plug-in supporters."
|
3483 |
-
msgstr ""
|
3484 |
-
|
3485 |
-
#: my-calendar-core.php:1185
|
3486 |
-
#@ my-calendar
|
3487 |
-
msgid "Please note: I do keep records of those who have donated, <strong>but if your donation came from somebody other than your account at this web site, please note this in your message.</strong>"
|
3488 |
-
msgstr ""
|
3489 |
-
|
3490 |
-
#: my-calendar-core.php:1187
|
3491 |
-
#@ my-calendar
|
3492 |
-
msgid "From:"
|
3493 |
-
msgstr ""
|
3494 |
-
|
3495 |
-
#: my-calendar-core.php:1190
|
3496 |
-
#@ my-calendar
|
3497 |
-
msgid "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">the FAQ for this plug-in</a>."
|
3498 |
-
msgstr ""
|
3499 |
-
|
3500 |
-
#: my-calendar-core.php:1193
|
3501 |
-
#@ my-calendar
|
3502 |
-
msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
|
3503 |
-
msgstr ""
|
3504 |
-
|
3505 |
-
#: my-calendar-core.php:1196
|
3506 |
-
#@ my-calendar
|
3507 |
-
msgid "I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">purchased the User's Guide</a>, but could not find an answer to this question."
|
3508 |
-
msgstr ""
|
3509 |
-
|
3510 |
-
#: my-calendar-core.php:1202
|
3511 |
-
#@ my-calendar
|
3512 |
-
msgid "Send Support Request"
|
3513 |
-
msgstr ""
|
3514 |
-
|
3515 |
-
#: my-calendar-core.php:1205
|
3516 |
-
#@ my-calendar
|
3517 |
-
msgid "The following additional information will be sent with your support request:"
|
3518 |
-
msgstr ""
|
3519 |
-
|
3520 |
-
#: my-calendar-event-manager.php:354
|
3521 |
-
#: my-calendar-group-manager.php:55
|
3522 |
-
#: my-calendar-group-manager.php:148
|
3523 |
-
#, php-format
|
3524 |
-
#@ my-calendar
|
3525 |
-
msgid "View <a href=\"%s\">your calendar</a>."
|
3526 |
-
msgstr ""
|
3527 |
-
|
3528 |
-
#: my-calendar-event-manager.php:530
|
3529 |
-
#@ my-calendar
|
3530 |
-
msgid "(URL to Event image)"
|
3531 |
-
msgstr ""
|
3532 |
-
|
3533 |
-
#: my-calendar-event-manager.php:636
|
3534 |
-
#@ my-calendar
|
3535 |
-
msgid "This is a multi-day event."
|
3536 |
-
msgstr ""
|
3537 |
-
|
3538 |
-
#: my-calendar-event-manager.php:638
|
3539 |
-
#@ my-calendar
|
3540 |
-
msgid "Enter the beginning and ending dates/times for each occurrence of the event."
|
3541 |
-
msgstr ""
|
3542 |
-
|
3543 |
-
#: my-calendar-event-manager.php:638
|
3544 |
-
#@ my-calendar
|
3545 |
-
msgid "If this is a multi-day event, it creates a single event with multiple dates/times; otherwise it creates separate events for each occurrence."
|
3546 |
-
msgstr ""
|
3547 |
-
|
3548 |
-
#: my-calendar-event-manager.php:759
|
3549 |
-
#: my-calendar-group-manager.php:457
|
3550 |
-
#: my-calendar-locations.php:147
|
3551 |
-
#@ my-calendar
|
3552 |
-
msgid "Phone"
|
3553 |
-
msgstr ""
|
3554 |
-
|
3555 |
-
#: my-calendar-group-manager.php:214
|
3556 |
-
#@ my-calendar
|
3557 |
-
msgid "The group editable fields for the events in this group match."
|
3558 |
-
msgstr ""
|
3559 |
-
|
3560 |
-
#: my-calendar-group-manager.php:300
|
3561 |
-
#@ my-calendar
|
3562 |
-
msgid "Selected dates are a single multi-day event."
|
3563 |
-
msgstr ""
|
3564 |
-
|
3565 |
-
#: my-calendar-help.php:39
|
3566 |
-
#@ my-calendar
|
3567 |
-
msgid "This shortcode displays the output of the Upcoming Events widget. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either \"event\" or \"days\", and the <code>category</code> attribute works the same way as the category attribute on the main calendar shortcode. Templates work using the template codes listed below. <code>fallback</code> provides text in case there are no events meeting your criteria. Order provides a sort order for the events list – either ascending (<code>asc</code>) or descending (<code>desc</code>). <code>Skip</code> is the number of events to skip in the upcoming events."
|
3568 |
-
msgstr ""
|
3569 |
-
|
3570 |
-
#: my-calendar-help.php:124
|
3571 |
-
#@ my-calendar
|
3572 |
-
msgid "Displays the beginning date to the end date for events. Does not show end date if same as start date."
|
3573 |
-
msgstr ""
|
3574 |
-
|
3575 |
-
#: my-calendar-help.php:127
|
3576 |
-
#@ my-calendar
|
3577 |
-
msgid "For multi-day events displays an unordered list of dates and times for events in this group. Otherwise, beginning date/time."
|
3578 |
-
msgstr ""
|
3579 |
-
|
3580 |
-
#: my-calendar-help.php:142
|
3581 |
-
#@ my-calendar
|
3582 |
-
msgid "Displays short description without converting paragraphs."
|
3583 |
-
msgstr ""
|
3584 |
-
|
3585 |
-
#: my-calendar-help.php:148
|
3586 |
-
#@ my-calendar
|
3587 |
-
msgid "Displays description without converting paragraphs."
|
3588 |
-
msgstr ""
|
3589 |
-
|
3590 |
-
#: my-calendar-help.php:252
|
3591 |
-
#@ my-calendar
|
3592 |
-
msgid "Get Plug-in Support"
|
3593 |
-
msgstr ""
|
3594 |
-
|
3595 |
-
#: my-calendar-output.php:418
|
3596 |
-
#@ my-calendar
|
3597 |
-
msgid "Calendar: Print View"
|
3598 |
-
msgstr ""
|
3599 |
-
|
3600 |
-
#: my-calendar-output.php:433
|
3601 |
-
#@ my-calendar
|
3602 |
-
msgid "Return to site"
|
3603 |
-
msgstr ""
|
3604 |
-
|
3605 |
-
#: my-calendar-output.php:568
|
3606 |
-
#@ my-calendar
|
3607 |
-
msgid "Print View"
|
3608 |
-
msgstr ""
|
3609 |
-
|
3610 |
-
#: my-calendar-output.php:878
|
3611 |
-
#@ my-calendar
|
3612 |
-
msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
|
3613 |
-
msgstr ""
|
3614 |
-
|
3615 |
-
#: my-calendar-output.php:949
|
3616 |
-
#@ my-calendar
|
3617 |
-
msgid "Next events »"
|
3618 |
-
msgstr ""
|
3619 |
-
|
3620 |
-
#: my-calendar-output.php:975
|
3621 |
-
#: my-calendar-output.php:1019
|
3622 |
-
#@ my-calendar
|
3623 |
-
msgid "Week of "
|
3624 |
-
msgstr ""
|
3625 |
-
|
3626 |
-
#: my-calendar-output.php:993
|
3627 |
-
#@ my-calendar
|
3628 |
-
msgid "« Previous events"
|
3629 |
-
msgstr ""
|
3630 |
-
|
3631 |
-
#: my-calendar-settings.php:78
|
3632 |
-
#@ my-calendar
|
3633 |
-
msgid "My Calendar Cache cleared"
|
3634 |
-
msgstr ""
|
3635 |
-
|
3636 |
-
#: my-calendar-settings.php:161
|
3637 |
-
#@ my-calendar
|
3638 |
-
msgid "Multisite settings saved"
|
3639 |
-
msgstr ""
|
3640 |
-
|
3641 |
-
#: my-calendar-settings.php:274
|
3642 |
-
#@ my-calendar
|
3643 |
-
msgid "Enable caching."
|
3644 |
-
msgstr ""
|
3645 |
-
|
3646 |
-
#: my-calendar-settings.php:277
|
3647 |
-
#@ my-calendar
|
3648 |
-
msgid "Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)"
|
3649 |
-
msgstr ""
|
3650 |
-
|
3651 |
-
#: my-calendar-settings.php:288
|
3652 |
-
#@ my-calendar
|
3653 |
-
msgid "You are currently working in the primary site for this network; your local calendar is also the global table."
|
3654 |
-
msgstr ""
|
3655 |
-
|
3656 |
-
#: my-calendar-settings.php:293
|
3657 |
-
#@ my-calendar
|
3658 |
-
msgid "Save Management Settings"
|
3659 |
-
msgstr ""
|
3660 |
-
|
3661 |
-
#: my-calendar-settings.php:310
|
3662 |
-
#: my-calendar-settings.php:313
|
3663 |
-
#@ my-calendar
|
3664 |
-
msgid "Use <code>{date}</code> to display the appropriate date in navigation."
|
3665 |
-
msgstr ""
|
3666 |
-
|
3667 |
-
#: my-calendar-settings.php:322
|
3668 |
-
#@ my-calendar
|
3669 |
-
msgid "Week view caption:"
|
3670 |
-
msgstr ""
|
3671 |
-
|
3672 |
-
#: my-calendar-settings.php:347
|
3673 |
-
#@ my-calendar
|
3674 |
-
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details links:"
|
3675 |
-
msgstr ""
|
3676 |
-
|
3677 |
-
#: my-calendar-settings.php:351
|
3678 |
-
#@ my-calendar
|
3679 |
-
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's timeline links."
|
3680 |
-
msgstr ""
|
3681 |
-
|
3682 |
-
#: my-calendar-settings.php:352
|
3683 |
-
#@ my-calendar
|
3684 |
-
msgid "Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> shortcode."
|
3685 |
-
msgstr ""
|
3686 |
-
|
3687 |
-
#: my-calendar-settings.php:355
|
3688 |
-
#@ my-calendar
|
3689 |
-
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar in-page anchors:"
|
3690 |
-
msgstr ""
|
3691 |
-
|
3692 |
-
#: my-calendar-settings.php:356
|
3693 |
-
#@ my-calendar
|
3694 |
-
msgid "Can be any Page or Post with the <code>[my_calendar]</code> shortcode using format selected below"
|
3695 |
-
msgstr ""
|
3696 |
-
|
3697 |
-
#: my-calendar-settings.php:358
|
3698 |
-
#@ my-calendar
|
3699 |
-
msgid "With above settings:"
|
3700 |
-
msgstr ""
|
3701 |
-
|
3702 |
-
#: my-calendar-settings.php:360
|
3703 |
-
#@ my-calendar
|
3704 |
-
msgid "Open calendar links to event details URL"
|
3705 |
-
msgstr ""
|
3706 |
-
|
3707 |
-
#: my-calendar-settings.php:360
|
3708 |
-
#@ my-calendar
|
3709 |
-
msgid "Replaces pop-up in grid view."
|
3710 |
-
msgstr ""
|
3711 |
-
|
3712 |
-
#: my-calendar-settings.php:363
|
3713 |
-
#@ my-calendar
|
3714 |
-
msgid "Mini calendar widget date links to:"
|
3715 |
-
msgstr ""
|
3716 |
-
|
3717 |
-
#: my-calendar-settings.php:364
|
3718 |
-
#@ my-calendar
|
3719 |
-
msgid "jQuery pop-up view"
|
3720 |
-
msgstr ""
|
3721 |
-
|
3722 |
-
#: my-calendar-settings.php:365
|
3723 |
-
#@ my-calendar
|
3724 |
-
msgid "daily view page (above)"
|
3725 |
-
msgstr ""
|
3726 |
-
|
3727 |
-
#: my-calendar-settings.php:366
|
3728 |
-
#@ my-calendar
|
3729 |
-
msgid "in-page anchor on main calendar page (list)"
|
3730 |
-
msgstr ""
|
3731 |
-
|
3732 |
-
#: my-calendar-settings.php:367
|
3733 |
-
#@ my-calendar
|
3734 |
-
msgid "in-page anchor on main calendar page (grid)"
|
3735 |
-
msgstr ""
|
3736 |
-
|
3737 |
-
#: my-calendar-settings.php:369
|
3738 |
-
#@ my-calendar
|
3739 |
-
msgid "Replaces pop-up in mini calendar"
|
3740 |
-
msgstr ""
|
3741 |
-
|
3742 |
-
#: my-calendar-settings.php:375
|
3743 |
-
#@ my-calendar
|
3744 |
-
msgid "Date in grid mode, week view"
|
3745 |
-
msgstr ""
|
3746 |
-
|
3747 |
-
#: my-calendar-settings.php:378
|
3748 |
-
#@ my-calendar
|
3749 |
-
msgid "Date Format in other views"
|
3750 |
-
msgstr ""
|
3751 |
-
|
3752 |
-
#: my-calendar-settings.php:381
|
3753 |
-
#@ my-calendar
|
3754 |
-
msgid "Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
|
3755 |
-
msgstr ""
|
3756 |
-
|
3757 |
-
#: my-calendar-settings.php:390
|
3758 |
-
#@ my-calendar
|
3759 |
-
msgid "Show link to print-formatted view of calendar"
|
3760 |
-
msgstr ""
|
3761 |
-
|
3762 |
-
#: my-calendar-settings.php:413
|
3763 |
-
#@ my-calendar
|
3764 |
-
msgid "How many months of events to show at a time:"
|
3765 |
-
msgstr ""
|
3766 |
-
|
3767 |
-
#: my-calendar-settings.php:416
|
3768 |
-
#@ my-calendar
|
3769 |
-
msgid "Show the first event's title and the number of events that day next to the date."
|
3770 |
-
msgstr ""
|
3771 |
-
|
3772 |
-
#: my-calendar-settings.php:432
|
3773 |
-
#@ my-calendar
|
3774 |
-
msgid "Available template tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
3775 |
-
msgstr ""
|
3776 |
-
|
3777 |
-
#: my-calendar-settings.php:443
|
3778 |
-
#@ my-calendar
|
3779 |
-
msgid "Display link to single event iCal download."
|
3780 |
-
msgstr ""
|
3781 |
-
|
3782 |
-
#: my-calendar-settings.php:486
|
3783 |
-
#@ my-calendar
|
3784 |
-
msgid "None"
|
3785 |
-
msgstr ""
|
3786 |
-
|
3787 |
-
#: my-calendar-settings.php:578
|
3788 |
-
#@ my-calendar
|
3789 |
-
msgid "Sub-site calendars show events from their local calendar."
|
3790 |
-
msgstr ""
|
3791 |
-
|
3792 |
-
#: my-calendar-settings.php:579
|
3793 |
-
#@ my-calendar
|
3794 |
-
msgid "Sub-site calendars show events from the central calendar."
|
3795 |
-
msgstr ""
|
3796 |
-
|
3797 |
-
#: my-calendar-templates.php:20
|
3798 |
-
#@ my-calendar
|
3799 |
-
msgid "to"
|
3800 |
-
msgstr ""
|
3801 |
-
|
3802 |
-
#: my-calendar-templating.php:94
|
3803 |
-
#@ my-calendar
|
3804 |
-
msgid "Beginning date to end date; excludes end date if same as beginning."
|
3805 |
-
msgstr ""
|
3806 |
-
|
3807 |
-
#: my-calendar-templating.php:97
|
3808 |
-
#@ my-calendar
|
3809 |
-
msgid "Multi-day events: an unordered list of dates/times. Otherwise, beginning date/time."
|
3810 |
-
msgstr ""
|
3811 |
-
|
3812 |
-
#: my-calendar-widgets.php:134
|
3813 |
-
#@ my-calendar
|
3814 |
-
msgid "Add <a href=\"#mc_uri\" target=\"_blank\" title=\"Opens in new window\">calendar URL in settings</a> to use this option."
|
3815 |
-
msgstr ""
|
3816 |
-
|
3817 |
-
#: my-calendar-widgets.php:162
|
3818 |
-
#@ my-calendar
|
3819 |
-
msgid "Include today's events"
|
3820 |
-
msgstr ""
|
3821 |
-
|
3822 |
-
#: my-calendar.php:126
|
3823 |
-
#@ my-calendar
|
3824 |
-
msgid "Buy the <strong>NEW</strong><br /> My Calendar User's Guide"
|
3825 |
-
msgstr ""
|
3826 |
-
|
3827 |
-
#: my-calendar.php:131
|
3828 |
-
#@ my-calendar
|
3829 |
-
msgid "Report a bug"
|
3830 |
-
msgstr ""
|
3831 |
-
|
3832 |
-
#: my-calendar.php:143
|
3833 |
-
#@ my-calendar
|
3834 |
-
msgid "Check out my other plug-ins"
|
3835 |
-
msgstr ""
|
3836 |
-
|
3837 |
-
#: my-calendar.php:144
|
3838 |
-
#@ my-calendar
|
3839 |
-
msgid "Rate this plug-in"
|
3840 |
-
msgstr ""
|
3841 |
-
|
1 |
+
# Translation of My Calendar in Russian
|
2 |
+
# This file is distributed under the same license as the My Calendar package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-12-04 21:00:19+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: My Calendar\n"
|
12 |
+
|
13 |
+
#: my-calendar-event-manager.php:467
|
14 |
+
msgid "Edit events"
|
15 |
+
msgstr "Редактировать события"
|
16 |
+
|
17 |
+
#: my-calendar-event-manager.php:1270
|
18 |
+
msgid "The time field must either be blank or be entered in the format hh:mm am/pm"
|
19 |
+
msgstr "Поле \"время\" должно быть пустым или заполнено в формате чч:мм am/pm"
|
20 |
+
|
21 |
+
#: my-calendar-event-manager.php:1277
|
22 |
+
msgid "The end time field must either be blank or be entered in the format hh:mm am/pm"
|
23 |
+
msgstr "Поле \"время окончания\" должно быть пустым или заполнено в формате чч:мм am\\pm"
|
24 |
+
|
25 |
+
#: my-calendar-help.php:13
|
26 |
+
msgid "Shortcodes"
|
27 |
+
msgstr "Короткие коды"
|
28 |
+
|
29 |
+
#: my-calendar-help.php:14
|
30 |
+
msgid "Icons"
|
31 |
+
msgstr "Иконки"
|
32 |
+
|
33 |
+
#: my-calendar-help.php:15
|
34 |
+
msgid "Styles"
|
35 |
+
msgstr "Стили"
|
36 |
+
|
37 |
+
#: my-calendar-help.php:16
|
38 |
+
msgid "Templating"
|
39 |
+
msgstr "Шаблоны"
|
40 |
+
|
41 |
+
#: my-calendar-help.php:17
|
42 |
+
msgid "Support Form"
|
43 |
+
msgstr "Форма обратной связи"
|
44 |
+
|
45 |
+
#: my-calendar-help.php:26 my-calendar.php:153
|
46 |
+
msgid "Getting Started"
|
47 |
+
msgstr "Начало"
|
48 |
+
|
49 |
+
#: my-calendar-help.php:29
|
50 |
+
msgid "Although the My Calendar plug-in is very complicated in terms of what can be customized, the basic usage is quite simple."
|
51 |
+
msgstr "Несмотря на то, что плагин Мой календарь очень сложен, его довольно просто использовать."
|
52 |
+
|
53 |
+
#: my-calendar-help.php:32
|
54 |
+
msgid "Add the My Calendar shortcode (<code>[my_calendar]</code>) to a page."
|
55 |
+
msgstr "Вставьте этот короткий код на любую страницу <code>[my_calendar]</code>"
|
56 |
+
|
57 |
+
#: my-calendar-help.php:33
|
58 |
+
msgid "Add events by clicking on the Add/Edit Events link in the admin sidebar or on \"Add Events\" in the admin toolbar."
|
59 |
+
msgstr "Добавьте события кликнув на Добавить\\Редактировать События в панели администратора."
|
60 |
+
|
61 |
+
#: my-calendar-help.php:34
|
62 |
+
msgid "Select your preferred stylesheet in the Styles Editor"
|
63 |
+
msgstr "Выберите Шаблон по вашему вкусу в разделе Редактор Стилей."
|
64 |
+
|
65 |
+
#: my-calendar-help.php:37
|
66 |
+
msgid "Read more of the basic help documentation on this page or purchase the My Calendar User's Guide to customize further -- but the above is all that you need to do to begin using the calendar."
|
67 |
+
msgstr "Узнайте больше из описания на данной странице или приобретите Руководство пользователя для дальнейших настроек. Указанного выше достаточно, чтобы вы начали использовать плагин Мой Календарь."
|
68 |
+
|
69 |
+
#: my-calendar-help.php:57
|
70 |
+
msgid "The shortcode supports these attributes:"
|
71 |
+
msgstr "Короткие коды поддерживают следующие атрибуты:"
|
72 |
+
|
73 |
+
#: my-calendar-help.php:70
|
74 |
+
msgid "Host or comma-separated list of hosts (WordPress usernames or IDs) to show events from."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: my-calendar-help.php:178
|
78 |
+
msgid "Displays the date on which the series of events began (for recurring events)."
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: my-calendar-help.php:217
|
82 |
+
msgid "Displays short description with any HTML stripped out."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: my-calendar-help.php:226
|
86 |
+
msgid "Displays description with any HTML stripped out."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: my-calendar-settings.php:84
|
90 |
+
msgid "Dropping occurrences database table"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: my-calendar-settings.php:87
|
94 |
+
msgid "Reinstalling occurrences database table."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: my-calendar-settings.php:90
|
98 |
+
msgid "Generating event occurrences."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: my-calendar-settings.php:92
|
102 |
+
msgid "Event generation completed."
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: my-calendar-settings.php:194
|
106 |
+
msgid "Date/Time Format Settings saved"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: my-calendar-settings.php:345
|
110 |
+
msgid "Date/Time"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: my-calendar-settings.php:397
|
114 |
+
msgid "Number of events per page in admin events list"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: my-calendar-settings.php:411
|
118 |
+
msgid "Re-generate event occurrences table."
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: my-calendar-settings.php:489
|
122 |
+
msgid "Calendar Link Targets"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: my-calendar-settings.php:503
|
126 |
+
msgid "Modify date and event link behaviors:"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: my-calendar-settings.php:516
|
130 |
+
msgid "Show links to alternate formats:"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: my-calendar-settings.php:605
|
134 |
+
msgid "Event Scheduling Defaults"
|
135 |
+
msgstr "Настройки планировщика события по умолчанию"
|
136 |
+
|
137 |
+
#: my-calendar-settings.php:645
|
138 |
+
msgid "Calendar Time Formats"
|
139 |
+
msgstr "Формат времени календаря"
|
140 |
+
|
141 |
+
#: my-calendar-settings.php:650
|
142 |
+
msgid "Set default date/time formats"
|
143 |
+
msgstr "Установить формат даты\\времени"
|
144 |
+
|
145 |
+
#: my-calendar-settings.php:654
|
146 |
+
msgid "Month format (calendar headings)"
|
147 |
+
msgstr "Формат месяца (заголовок календаря)"
|
148 |
+
|
149 |
+
#: my-calendar-settings.php:654 my-calendar-settings.php:656
|
150 |
+
#: my-calendar-settings.php:659 my-calendar-settings.php:662
|
151 |
+
msgid "Now:"
|
152 |
+
msgstr "Сейчас:"
|
153 |
+
|
154 |
+
#: my-calendar-settings.php:670
|
155 |
+
msgid "Save Date/Time Settings"
|
156 |
+
msgstr "Сохранить настройки Дата\\Время"
|
157 |
+
|
158 |
+
#: my-calendar-templating.php:31
|
159 |
+
msgid "RSS Feed Output Template saved"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: my-calendar-templating.php:173
|
163 |
+
msgid "My Calendar: RSS Event Template"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: my-calendar-templating.php:175
|
167 |
+
msgid "Notice: HTML templates are very forgiving of errors. RSS templates are not. Be sure to test your changes."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: my-calendar-templating.php:179
|
171 |
+
msgid "Use this custom RSS event template"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: my-calendar-templating.php:182
|
175 |
+
msgid "Your custom template for events in the RSS feed."
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: my-calendar-templating.php:185
|
179 |
+
msgid "Save RSS Template"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: my-calendar-widgets.php:62 my-calendar-widgets.php:174
|
183 |
+
msgid "Widget title links to:"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: my-calendar-widgets.php:78 my-calendar-widgets.php:212
|
187 |
+
msgid "Host or hosts to show:"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: my-calendar-widgets.php:625
|
191 |
+
msgid "Widget Title Link"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: my-calendar.php:123
|
195 |
+
msgid "Buy the <a href='http://www.joedolson.com/articles/my-calendar/submissions/' rel='external'>My Calendar: Submissions add-on</a> — let your site's visitors help build your calendar."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: my-calendar.php:158
|
199 |
+
msgid "Help translate this plug-in!"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: my-calendar-event-manager.php:630
|
203 |
+
msgid "All day event"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: my-calendar-categories.php:106 my-calendar-categories.php:146
|
207 |
+
msgid "Default category changed."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: my-calendar-categories.php:151
|
211 |
+
msgid "Category edited successfully."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: my-calendar-categories.php:153
|
215 |
+
msgid "Category was not edited."
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: my-calendar-categories.php:230
|
219 |
+
msgid "Default category"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: my-calendar-categories.php:232
|
223 |
+
msgid "Private category (logged-in users only)"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: my-calendar-categories.php:286
|
227 |
+
msgid "Private"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: my-calendar-event-manager.php:104
|
231 |
+
msgid "%1$d events approved successfully out of %2$d selected"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: my-calendar-event-manager.php:106
|
235 |
+
msgid "Your events have not been approved. Please investigate."
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: my-calendar-event-manager.php:274
|
239 |
+
msgid "Event saved. An administrator will review and approve your event."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: my-calendar-event-manager.php:314
|
243 |
+
msgid "Date/time information for this event has been updated."
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: my-calendar-event-manager.php:480
|
247 |
+
msgid "There was an error acquiring information about this event instance. The ID for this event instance was not provided. <strong>You are editing this entire recurrence set.</strong>"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: my-calendar-event-manager.php:638
|
251 |
+
msgid "Hide end time"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: my-calendar-event-manager.php:653
|
255 |
+
msgid "Dates for this event:"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: my-calendar-event-manager.php:654
|
259 |
+
msgid "Editing a single date of an event changes only that event. Editing the root event changes all events in the series."
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: my-calendar-event-manager.php:664
|
263 |
+
msgid "Related Events:"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: my-calendar-event-manager.php:664
|
267 |
+
msgid "Edit group"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: my-calendar-event-manager.php:775
|
271 |
+
msgid "Copy this location into the locations table"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: my-calendar-event-manager.php:949
|
275 |
+
msgid "Clear filters"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: my-calendar-event-manager.php:978
|
279 |
+
msgid "« Previous Page"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: my-calendar-event-manager.php:979
|
283 |
+
msgid "Next Page »"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: my-calendar-event-manager.php:1022
|
287 |
+
msgid "Filter by location"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: my-calendar-event-manager.php:1045
|
291 |
+
msgid "Filter by author"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: my-calendar-event-manager.php:1054
|
295 |
+
msgid "Filter by category"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: my-calendar-event-manager.php:1093
|
299 |
+
msgid "Approve checked events"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: my-calendar-event-manager.php:1304
|
303 |
+
msgid "That event conflicts with a previously scheduled event."
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: my-calendar-event-manager.php:1493
|
307 |
+
msgid "Editing: "
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: my-calendar-event-manager.php:1529 my-calendar-event-manager.php:1542
|
311 |
+
msgid "No related events"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: my-calendar-group-manager.php:300 my-calendar-group-manager.php:308
|
315 |
+
#: my-calendar-group-manager.php:314 my-calendar-group-manager.php:327
|
316 |
+
#: my-calendar-group-manager.php:339 my-calendar-group-manager.php:343
|
317 |
+
#: my-calendar-group-manager.php:362 my-calendar-group-manager.php:374
|
318 |
+
#: my-calendar-group-manager.php:388 my-calendar-group-manager.php:448
|
319 |
+
#: my-calendar-group-manager.php:451 my-calendar-group-manager.php:454
|
320 |
+
#: my-calendar-group-manager.php:457 my-calendar-group-manager.php:460
|
321 |
+
#: my-calendar-group-manager.php:463 my-calendar-group-manager.php:464
|
322 |
+
#: my-calendar-group-manager.php:467 my-calendar-group-manager.php:470
|
323 |
+
#: my-calendar-group-manager.php:481 my-calendar-group-manager.php:489
|
324 |
+
msgid "Fields do not match"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: my-calendar-group-manager.php:710
|
328 |
+
msgid "Grouped Events"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: my-calendar-group-manager.php:711
|
332 |
+
msgid "Ungrouped Events"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: my-calendar-help.php:69
|
336 |
+
msgid "Author or comma-separated list of authors (usernames or IDs) to show events from."
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: my-calendar-help.php:78
|
340 |
+
msgid "This shortcode displays the output of the Upcoming Events widget. The <code>before</code> and <code>after</code> attributes should be numbers; the <code>type</code> attribute can be either \"event\" or \"days\", and the <code>category</code> and <code>author</code> attributes work the same way as on the main calendar shortcode. Templates work using the template codes listed below. <code>fallback</code> provides text in case there are no events meeting your criteria. Order provides a sort order for the events list – either ascending (<code>asc</code>) or descending (<code>desc</code>). <code>show_today</code> is an indicator whether or not to include today's events in the list. <code>Skip</code> is the number of events to skip in the upcoming events."
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: my-calendar-help.php:82
|
344 |
+
msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with four configurable attributes: category, author, template and fallback text."
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: my-calendar-help.php:89
|
348 |
+
msgid "Displays a single event and/or all dates for that event. If template is set to a blank value, will only display the list of occurrences. If the list attribute is set blank, will only show the event template"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: my-calendar-help.php:101
|
352 |
+
msgid "Use the <code>template</code> attribute to show your own customized set of data. The data will be sorted by the <code>datatype</code> value."
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: my-calendar-help.php:190
|
356 |
+
msgid "Displays the beginning and end times for events. Does not show end time if same as start or if marked as hidden."
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: my-calendar-help.php:286
|
360 |
+
msgid "Output the stored phone number for the location."
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: my-calendar-settings.php:185
|
364 |
+
msgid "Visit your <a href=\"%s\">permalinks settings</a> and re-save them."
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: my-calendar-settings.php:375
|
368 |
+
msgid "You will need to allow remote connections from this site to the site hosting your My Calendar events. Replace the above placeholders with the host-site information. The two sites must have the same WP table prefix. While this option is enabled, you may not enter or edit events through this installation."
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: my-calendar-settings.php:521
|
372 |
+
msgid "iCal times are UTC"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: my-calendar-settings.php:561
|
376 |
+
msgid "Show author's name"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: my-calendar-settings.php:564
|
380 |
+
msgid "Show link to single event iCal download"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: my-calendar-settings.php:567
|
384 |
+
msgid "Show category icons"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: my-calendar-settings.php:576
|
388 |
+
msgid "Show short description"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: my-calendar-settings.php:579
|
392 |
+
msgid "Show full description"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: my-calendar-settings.php:582
|
396 |
+
msgid "Process WordPress shortcodes in description fields"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: my-calendar-settings.php:585
|
400 |
+
msgid "Show link to single-event details (requires <a href='#mc_uri'>URL</a>)"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: my-calendar-settings.php:588
|
404 |
+
msgid "Show external link"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: my-calendar-settings.php:690
|
408 |
+
msgid "Show Event Image field"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: my-calendar-settings.php:690
|
412 |
+
msgid "Show Event Registration options"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: my-calendar-settings.php:690
|
416 |
+
msgid "Show Event Location fields"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: my-calendar-settings.php:690
|
420 |
+
msgid "Set Special Scheduling options"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: my-calendar-styles.php:84
|
424 |
+
msgid "Styles are disabled, and were not edited."
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: my-calendar-styles.php:197
|
428 |
+
msgid "Apply CSS on these pages (comma separated IDs)"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: my-calendar-widgets.php:74 my-calendar-widgets.php:208
|
432 |
+
msgid "Author or authors to show:"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: my-calendar.php:121
|
436 |
+
msgid "My Calendar: Submissions"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: my-calendar.php:124
|
440 |
+
msgid "Learn more!"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: my-calendar.php:340
|
444 |
+
msgid "Event Submissions"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: my-calendar.php:341
|
448 |
+
msgid "Payments"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: button/generator.php:12
|
452 |
+
msgid "You don't have access to this function."
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: button/generator.php:18 button/generator.php:44
|
456 |
+
msgid "My Calendar Shortcode Generator"
|
457 |
+
msgstr "Генератор шорт-кодов My Calendar"
|
458 |
+
|
459 |
+
#: button/generator.php:47
|
460 |
+
msgid "Shortcode Attributes"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: button/generator.php:52
|
464 |
+
msgid "Location filter type:"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: button/generator.php:54
|
468 |
+
msgid "All locations"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: button/generator.php:55 my-calendar-settings.php:393
|
472 |
+
#: my-calendar-settings.php:904
|
473 |
+
msgid "Location Name"
|
474 |
+
msgstr "Название места"
|
475 |
+
|
476 |
+
#: button/generator.php:56 my-calendar-event-manager.php:795
|
477 |
+
#: my-calendar-group-manager.php:460 my-calendar-locations.php:152
|
478 |
+
#: my-calendar-settings.php:905
|
479 |
+
msgid "City"
|
480 |
+
msgstr "Город"
|
481 |
+
|
482 |
+
#: button/generator.php:57 my-calendar-event-manager.php:842
|
483 |
+
#: my-calendar-group-manager.php:476 my-calendar-locations.php:197
|
484 |
+
msgid "State"
|
485 |
+
msgstr "Федеральный округ"
|
486 |
+
|
487 |
+
#: button/generator.php:58 my-calendar-event-manager.php:811
|
488 |
+
#: my-calendar-group-manager.php:463 my-calendar-locations.php:168
|
489 |
+
#: my-calendar-settings.php:908
|
490 |
+
msgid "Postal Code"
|
491 |
+
msgstr "Индекс"
|
492 |
+
|
493 |
+
#: button/generator.php:59 my-calendar-event-manager.php:827
|
494 |
+
#: my-calendar-group-manager.php:467 my-calendar-locations.php:184
|
495 |
+
#: my-calendar-settings.php:907
|
496 |
+
msgid "Country"
|
497 |
+
msgstr "Страна"
|
498 |
+
|
499 |
+
#: button/generator.php:60 my-calendar-event-manager.php:818
|
500 |
+
#: my-calendar-event-manager.php:843 my-calendar-group-manager.php:464
|
501 |
+
#: my-calendar-group-manager.php:477 my-calendar-locations.php:175
|
502 |
+
#: my-calendar-locations.php:198 my-calendar-settings.php:909
|
503 |
+
msgid "Region"
|
504 |
+
msgstr "Регион"
|
505 |
+
|
506 |
+
#: button/generator.php:64
|
507 |
+
msgid "Location filter value:"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: button/generator.php:68
|
511 |
+
msgid "Format"
|
512 |
+
msgstr "Формат"
|
513 |
+
|
514 |
+
#: button/generator.php:70
|
515 |
+
msgid "Grid"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: button/generator.php:71
|
519 |
+
msgid "List"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: button/generator.php:75
|
523 |
+
msgid "Show Category Key"
|
524 |
+
msgstr "Показывать легенду"
|
525 |
+
|
526 |
+
#: button/generator.php:77 button/generator.php:84 button/generator.php:91
|
527 |
+
#: button/generator.php:98 my-calendar-widgets.php:634
|
528 |
+
#: my-calendar-widgets.php:640 my-calendar-widgets.php:646
|
529 |
+
msgid "Yes"
|
530 |
+
msgstr "Да"
|
531 |
+
|
532 |
+
#: button/generator.php:78 button/generator.php:85 button/generator.php:92
|
533 |
+
#: button/generator.php:99 my-calendar-widgets.php:635
|
534 |
+
#: my-calendar-widgets.php:641 my-calendar-widgets.php:647
|
535 |
+
msgid "No"
|
536 |
+
msgstr "Нет"
|
537 |
+
|
538 |
+
#: button/generator.php:82
|
539 |
+
msgid "Show Previous/Next Links"
|
540 |
+
msgstr "Показывать ссылки назад/вперед"
|
541 |
+
|
542 |
+
#: button/generator.php:89 my-calendar-widgets.php:639
|
543 |
+
msgid "Show Jumpbox"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: button/generator.php:96
|
547 |
+
msgid "Show Format Toggle"
|
548 |
+
msgstr "Показывать переключение формата"
|
549 |
+
|
550 |
+
#: button/generator.php:103
|
551 |
+
msgid "Time Segment"
|
552 |
+
msgstr "Составляющая времени"
|
553 |
+
|
554 |
+
#: button/generator.php:105 my-calendar-output.php:383
|
555 |
+
#: my-calendar-widgets.php:652
|
556 |
+
msgid "Month"
|
557 |
+
msgstr "Месяц"
|
558 |
+
|
559 |
+
#: button/generator.php:106 my-calendar-widgets.php:653
|
560 |
+
msgid "Week"
|
561 |
+
msgstr "Неделя"
|
562 |
+
|
563 |
+
#: button/generator.php:107
|
564 |
+
msgid "Day"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: button/generator.php:112
|
568 |
+
msgid "Generate Shortcode"
|
569 |
+
msgstr "Создать шорт-код"
|
570 |
+
|
571 |
+
#: button/generator.php:114
|
572 |
+
msgid "<strong>Note:</strong> If you provide a location filter value, it must be an exact match for that information as saved with your events. (e.g. \"Saint Paul\" is not equivalent to \"saint paul\" or \"St. Paul\")"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: button/generator.php:124
|
576 |
+
msgid "My Calendar: this generator isn't going to put the shortcode in your page. Sorry!"
|
577 |
+
msgstr "My Calendar: этот генератор не собирается вставлять шорт-код в вашу страницу. Извините!"
|
578 |
+
|
579 |
+
#: my-calendar-behaviors.php:44
|
580 |
+
msgid "Behavior Settings saved"
|
581 |
+
msgstr "Настройки представления сохранены"
|
582 |
+
|
583 |
+
#: my-calendar-behaviors.php:68
|
584 |
+
msgid "My Calendar Behaviors"
|
585 |
+
msgstr "Представления My Calendar"
|
586 |
+
|
587 |
+
#: my-calendar-behaviors.php:75
|
588 |
+
msgid "Calendar Behavior Settings"
|
589 |
+
msgstr "Настройки представления календаря"
|
590 |
+
|
591 |
+
#: my-calendar-behaviors.php:80
|
592 |
+
msgid "Insert scripts on these pages (comma separated post IDs)"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: my-calendar-behaviors.php:83
|
596 |
+
msgid "Details boxes are draggable"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: my-calendar-behaviors.php:86
|
600 |
+
msgid "Calendar Behaviors: Calendar View"
|
601 |
+
msgstr "Представления календаря: Календарный вид"
|
602 |
+
|
603 |
+
#: my-calendar-behaviors.php:88
|
604 |
+
msgid "Update/Reset the My Calendar Calendar Javascript"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: my-calendar-behaviors.php:88
|
608 |
+
msgid "Disable Calendar Javascript Effects"
|
609 |
+
msgstr "Выключить Javascript-эффекты календаря"
|
610 |
+
|
611 |
+
#: my-calendar-behaviors.php:91
|
612 |
+
msgid "Edit the jQuery scripts for My Calendar in Calendar format"
|
613 |
+
msgstr "Редактировать jQuery-скрипты My Calendar в календарном формате"
|
614 |
+
|
615 |
+
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
616 |
+
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
617 |
+
msgid "Comparing scripts with latest installed version of My Calendar"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
621 |
+
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
622 |
+
#: my-calendar-styles.php:217
|
623 |
+
msgid "Latest (from plugin)"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
|
627 |
+
#: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
|
628 |
+
#: my-calendar-styles.php:217
|
629 |
+
msgid "Current (in use)"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: my-calendar-behaviors.php:102
|
633 |
+
msgid "There have been updates to the calendar view scripts."
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: my-calendar-behaviors.php:102 my-calendar-behaviors.php:134
|
637 |
+
#: my-calendar-behaviors.php:165 my-calendar-behaviors.php:197
|
638 |
+
msgid "Compare your scripts with latest installed version of My Calendar."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: my-calendar-behaviors.php:106 my-calendar-behaviors.php:138
|
642 |
+
#: my-calendar-behaviors.php:169 my-calendar-behaviors.php:201
|
643 |
+
msgid "Your script matches that included with My Calendar."
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: my-calendar-behaviors.php:111 my-calendar-behaviors.php:143
|
647 |
+
#: my-calendar-behaviors.php:174 my-calendar-behaviors.php:206
|
648 |
+
#: my-calendar-behaviors.php:211
|
649 |
+
msgid "Save"
|
650 |
+
msgstr "Сохранить"
|
651 |
+
|
652 |
+
#: my-calendar-behaviors.php:118
|
653 |
+
msgid "Calendar Behaviors: List View"
|
654 |
+
msgstr "Представления календаря: В виде списка"
|
655 |
+
|
656 |
+
#: my-calendar-behaviors.php:120
|
657 |
+
msgid "Update/Reset the My Calendar List Javascript"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: my-calendar-behaviors.php:120
|
661 |
+
msgid "Disable List Javascript Effects"
|
662 |
+
msgstr "Выключить Javascript-эффекты списка"
|
663 |
+
|
664 |
+
#: my-calendar-behaviors.php:123
|
665 |
+
msgid "Edit the jQuery scripts for My Calendar in List format"
|
666 |
+
msgstr "Редактировать jQuery-скрипты My Calendar в формате списка"
|
667 |
+
|
668 |
+
#: my-calendar-behaviors.php:134
|
669 |
+
msgid "There have been updates to the list view scripts."
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: my-calendar-behaviors.php:149
|
673 |
+
msgid "Calendar Behaviors: Mini Calendar View"
|
674 |
+
msgstr "Представления календаря: Вид мини-календаря"
|
675 |
+
|
676 |
+
#: my-calendar-behaviors.php:151
|
677 |
+
msgid "Update/Reset the My Calendar Mini Format Javascript"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: my-calendar-behaviors.php:151
|
681 |
+
msgid "Disable Mini Javascript Effects"
|
682 |
+
msgstr "Выключить Javascript-эффекты списка"
|
683 |
+
|
684 |
+
#: my-calendar-behaviors.php:154
|
685 |
+
msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
|
686 |
+
msgstr "Редактировать jQuery-скрипты My Calendar в формате мини календаря"
|
687 |
+
|
688 |
+
#: my-calendar-behaviors.php:165
|
689 |
+
msgid "There have been updates to the mini view scripts."
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: my-calendar-behaviors.php:181
|
693 |
+
msgid "Calendar Behaviors: AJAX Navigation"
|
694 |
+
msgstr "Представления календаря: AJAX-навигация"
|
695 |
+
|
696 |
+
#: my-calendar-behaviors.php:183
|
697 |
+
msgid "Update/Reset the My Calendar AJAX Javascript"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: my-calendar-behaviors.php:183
|
701 |
+
msgid "Disable AJAX Effects"
|
702 |
+
msgstr "Выключить AJAX-эффекты"
|
703 |
+
|
704 |
+
#: my-calendar-behaviors.php:186
|
705 |
+
msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
|
706 |
+
msgstr "Редактировать jQuery-скрипты My Calendar AJAX-навигации"
|
707 |
+
|
708 |
+
#: my-calendar-behaviors.php:197
|
709 |
+
msgid "There have been updates to the AJAX scripts."
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: my-calendar-behaviors.php:217
|
713 |
+
msgid "Resetting JavaScript will set that script to the version currently distributed with the plug-in."
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: my-calendar-categories.php:109
|
717 |
+
msgid "Category added successfully"
|
718 |
+
msgstr "Категория успешно добавлена"
|
719 |
+
|
720 |
+
#: my-calendar-categories.php:111
|
721 |
+
msgid "Category addition failed."
|
722 |
+
msgstr "Добавление категории не удалось."
|
723 |
+
|
724 |
+
#: my-calendar-categories.php:126
|
725 |
+
msgid "Category deleted successfully. Categories in calendar updated."
|
726 |
+
msgstr "Категория успешно удалена. Категории в календаре обновлены."
|
727 |
+
|
728 |
+
#: my-calendar-categories.php:128
|
729 |
+
msgid "Category deleted successfully. Categories in calendar not updated."
|
730 |
+
msgstr "Категория успешно удалена. Категории в календаре не обновлены."
|
731 |
+
|
732 |
+
#: my-calendar-categories.php:130
|
733 |
+
msgid "Category not deleted. Categories in calendar updated."
|
734 |
+
msgstr "Категория не удалена. Категории в календаре обновлены."
|
735 |
+
|
736 |
+
#: my-calendar-categories.php:187 my-calendar-categories.php:213
|
737 |
+
#: my-calendar-categories.php:236
|
738 |
+
msgid "Add Category"
|
739 |
+
msgstr "Добавить категорию"
|
740 |
+
|
741 |
+
#: my-calendar-categories.php:189 my-calendar-categories.php:213
|
742 |
+
msgid "Edit Category"
|
743 |
+
msgstr "Редактировать категорию"
|
744 |
+
|
745 |
+
#: my-calendar-categories.php:197
|
746 |
+
msgid "Category Editor"
|
747 |
+
msgstr "Редактор категории"
|
748 |
+
|
749 |
+
#: my-calendar-categories.php:214 my-calendar-categories.php:283
|
750 |
+
msgid "Category Name"
|
751 |
+
msgstr "Имя категории"
|
752 |
+
|
753 |
+
#: my-calendar-categories.php:215
|
754 |
+
msgid "Category Color (Hex format)"
|
755 |
+
msgstr "Цвет категории (в hex-формате)"
|
756 |
+
|
757 |
+
#: my-calendar-categories.php:216 my-calendar-categories.php:285
|
758 |
+
msgid "Category Icon"
|
759 |
+
msgstr "Значок категории"
|
760 |
+
|
761 |
+
#: my-calendar-categories.php:236 my-calendar-locations.php:215
|
762 |
+
#: my-calendar-styles.php:206
|
763 |
+
msgid "Save Changes"
|
764 |
+
msgstr "Сохранить изменения"
|
765 |
+
|
766 |
+
#: my-calendar-categories.php:243
|
767 |
+
msgid "Add a New Category"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: my-calendar-categories.php:248
|
771 |
+
msgid "Category List"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: my-calendar-categories.php:266 my-calendar.php:327
|
775 |
+
msgid "Manage Categories"
|
776 |
+
msgstr "Управление категориями"
|
777 |
+
|
778 |
+
#: my-calendar-categories.php:282 my-calendar-event-manager.php:993
|
779 |
+
#: my-calendar-group-manager.php:731 my-calendar-locations.php:288
|
780 |
+
msgid "ID"
|
781 |
+
msgstr "ID"
|
782 |
+
|
783 |
+
#: my-calendar-categories.php:284
|
784 |
+
msgid "Category Color"
|
785 |
+
msgstr "Цвет категории"
|
786 |
+
|
787 |
+
#: my-calendar-categories.php:287 my-calendar-categories.php:303
|
788 |
+
#: my-calendar-event-manager.php:1059 my-calendar-group-manager.php:740
|
789 |
+
#: my-calendar-locations.php:290 my-calendar-locations.php:302
|
790 |
+
#: my-calendar-output.php:318
|
791 |
+
msgid "Edit"
|
792 |
+
msgstr "Редактировать"
|
793 |
+
|
794 |
+
#: my-calendar-categories.php:288 my-calendar-categories.php:309
|
795 |
+
#: my-calendar-event-manager.php:133 my-calendar-event-manager.php:1062
|
796 |
+
#: my-calendar-locations.php:291 my-calendar-locations.php:303
|
797 |
+
#: my-calendar-output.php:319
|
798 |
+
msgid "Delete"
|
799 |
+
msgstr "Удалить"
|
800 |
+
|
801 |
+
#: my-calendar-categories.php:306 my-calendar-event-manager.php:1040
|
802 |
+
#: my-calendar-group-manager.php:780 my-calendar-output.php:208
|
803 |
+
#: my-calendar-settings.php:436
|
804 |
+
msgid "N/A"
|
805 |
+
msgstr "неизв."
|
806 |
+
|
807 |
+
#: my-calendar-categories.php:309 my-calendar-locations.php:303
|
808 |
+
msgid "Are you sure you want to delete this category?"
|
809 |
+
msgstr "Вы уверены, что хотите удалить категорию?"
|
810 |
+
|
811 |
+
#: my-calendar-categories.php:320
|
812 |
+
msgid "There are no categories in the database - something has gone wrong!"
|
813 |
+
msgstr "В базе данных нет категорий - что-то пошло не так!"
|
814 |
+
|
815 |
+
#: my-calendar-core.php:58 my-calendar.php:331
|
816 |
+
msgid "Settings"
|
817 |
+
msgstr "Настройки"
|
818 |
+
|
819 |
+
#: my-calendar-core.php:59 my-calendar.php:335
|
820 |
+
msgid "Help"
|
821 |
+
msgstr "Помощь"
|
822 |
+
|
823 |
+
#: my-calendar-core.php:199
|
824 |
+
msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: my-calendar-core.php:1053 my-calendar-event-manager.php:233
|
828 |
+
msgid "Add Event"
|
829 |
+
msgstr "Добавить событие"
|
830 |
+
|
831 |
+
#: my-calendar-core.php:1299
|
832 |
+
msgid "Is this your calendar page?"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: my-calendar-core.php:1302
|
836 |
+
msgid "I tried to guess, but don't have a suggestion for you."
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: my-calendar-core.php:1396
|
840 |
+
msgid "Please read the FAQ and other Help documents before making a support request."
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: my-calendar-core.php:1398
|
844 |
+
msgid "Please describe your problem in detail. I'm not psychic."
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: my-calendar-core.php:1403
|
848 |
+
msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: my-calendar-core.php:1405
|
852 |
+
msgid "I'll get back to you as soon as I can, after dealing with any support requests from plug-in supporters."
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: my-calendar-core.php:1415
|
856 |
+
msgid "Please note: I do keep records of those who have donated, <strong>but if your donation came from somebody other than your account at this web site, please note this in your message.</strong>"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: my-calendar-core.php:1417
|
860 |
+
msgid "From:"
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: my-calendar-core.php:1420
|
864 |
+
msgid "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">the FAQ for this plug-in</a>."
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: my-calendar-core.php:1423
|
868 |
+
msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: my-calendar-core.php:1426
|
872 |
+
msgid "I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">purchased the User's Guide</a>, but could not find an answer to this question."
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: my-calendar-core.php:1432
|
876 |
+
msgid "Send Support Request"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: my-calendar-core.php:1435
|
880 |
+
msgid "The following additional information will be sent with your support request:"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: my-calendar-event-manager.php:13 my-calendar-settings.php:322
|
884 |
+
msgid "My Calendar has identified that you have the Calendar plugin by Kieran O'Shea installed. You can import those events and categories into the My Calendar database. Would you like to import these events?"
|
885 |
+
msgstr "My Calendar определил, что у вас установлен плагин Kieran O'Shean. Вы можете импортировать события и категории в базу My Calendar. Желаете импортировать эти события?"
|
886 |
+
|
887 |
+
#: my-calendar-event-manager.php:20 my-calendar-settings.php:328
|
888 |
+
msgid "Import from Calendar"
|
889 |
+
msgstr "Импорт из календаря"
|
890 |
+
|
891 |
+
#: my-calendar-event-manager.php:25
|
892 |
+
msgid "Although it is possible that this import could fail to import your events correctly, it should not have any impact on your existing Calendar database. If you encounter any problems, <a href=\"http://www.joedolson.com/contact.php\">please contact me</a>!"
|
893 |
+
msgstr "Вполне возможно, что не удастся правильно импортировать. Это не должно оказывать никакого влияния на текущую базу данных календаря. Если у вас возникли проблемы, <a href=\"http://www.joedolson.com/contact.php\">обратитесь к разработчику плагина</a>!"
|
894 |
+
|
895 |
+
#: my-calendar-event-manager.php:74
|
896 |
+
msgid "%1$d events deleted successfully out of %2$d selected"
|
897 |
+
msgstr "События успешно удалены (%1$d из %2$d)"
|
898 |
+
|
899 |
+
#: my-calendar-event-manager.php:76 my-calendar-event-manager.php:106
|
900 |
+
#: my-calendar-event-manager.php:264 my-calendar-event-manager.php:335
|
901 |
+
#: my-calendar-event-manager.php:352 my-calendar-event-manager.php:371
|
902 |
+
#: my-calendar-event-manager.php:1257 my-calendar-event-manager.php:1260
|
903 |
+
#: my-calendar-event-manager.php:1270 my-calendar-event-manager.php:1277
|
904 |
+
#: my-calendar-event-manager.php:1293 my-calendar-event-manager.php:1299
|
905 |
+
#: my-calendar-event-manager.php:1304 my-calendar-group-manager.php:58
|
906 |
+
#: my-calendar-group-manager.php:84 my-calendar-group-manager.php:148
|
907 |
+
#: my-calendar-group-manager.php:585
|
908 |
+
msgid "Error"
|
909 |
+
msgstr "Ошибка"
|
910 |
+
|
911 |
+
#: my-calendar-event-manager.php:76
|
912 |
+
msgid "Your events have not been deleted. Please investigate."
|
913 |
+
msgstr "Ваше событие не может быть удалено. Пожалуйста разберитесь."
|
914 |
+
|
915 |
+
#: my-calendar-event-manager.php:126
|
916 |
+
msgid "Delete Event"
|
917 |
+
msgstr "Удалить событие"
|
918 |
+
|
919 |
+
#: my-calendar-event-manager.php:126
|
920 |
+
msgid "Are you sure you want to delete this event?"
|
921 |
+
msgstr "Вы уверены, что хотите удалить событие?"
|
922 |
+
|
923 |
+
#: my-calendar-event-manager.php:138
|
924 |
+
msgid "You do not have permission to delete that event."
|
925 |
+
msgstr "У вас нет полномочий для удаления этого события."
|
926 |
+
|
927 |
+
#: my-calendar-event-manager.php:152
|
928 |
+
msgid "You do not have permission to approve that event."
|
929 |
+
msgstr "У вас нет полномочий для подтверждения этого события."
|
930 |
+
|
931 |
+
#: my-calendar-event-manager.php:167
|
932 |
+
msgid "You do not have permission to reject that event."
|
933 |
+
msgstr "У вас нет полномочий для отклонения этого события."
|
934 |
+
|
935 |
+
#: my-calendar-event-manager.php:204
|
936 |
+
msgid "Currently editing your local calendar"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: my-calendar-event-manager.php:206
|
940 |
+
msgid "Currently editing your central calendar"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: my-calendar-event-manager.php:214 my-calendar-group-manager.php:798
|
944 |
+
msgid "Edit Event"
|
945 |
+
msgstr "Редактировать событие"
|
946 |
+
|
947 |
+
#: my-calendar-event-manager.php:217 my-calendar-event-manager.php:226
|
948 |
+
msgid "You must provide an event id in order to edit it"
|
949 |
+
msgstr "Вы должны ввести ID события, потом вы можете его редактировать"
|
950 |
+
|
951 |
+
#: my-calendar-event-manager.php:223
|
952 |
+
msgid "Copy Event"
|
953 |
+
msgstr "Копировать событие"
|
954 |
+
|
955 |
+
#: my-calendar-event-manager.php:264
|
956 |
+
msgid "I'm sorry! I couldn't add that event to the database."
|
957 |
+
msgstr "Извините! Я не могу добавить это событие в базу."
|
958 |
+
|
959 |
+
#: my-calendar-event-manager.php:276
|
960 |
+
msgid "Event added. It will now show in your calendar."
|
961 |
+
msgstr "Событие добавлено. Сейчас оно будет показано в календаре."
|
962 |
+
|
963 |
+
#: my-calendar-event-manager.php:282 my-calendar-group-manager.php:56
|
964 |
+
#: my-calendar-group-manager.php:146
|
965 |
+
msgid "View <a href=\"%s\">your calendar</a>."
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: my-calendar-event-manager.php:335 my-calendar-group-manager.php:148
|
969 |
+
msgid "Your event was not updated."
|
970 |
+
msgstr "События не были обновлены."
|
971 |
+
|
972 |
+
#: my-calendar-event-manager.php:310 my-calendar-event-manager.php:337
|
973 |
+
#: my-calendar-group-manager.php:60 my-calendar-group-manager.php:86
|
974 |
+
#: my-calendar-group-manager.php:150
|
975 |
+
msgid "Nothing was changed in that update."
|
976 |
+
msgstr "При обновлении ничего не изменилось."
|
977 |
+
|
978 |
+
#: my-calendar-event-manager.php:341 my-calendar-group-manager.php:62
|
979 |
+
#: my-calendar-group-manager.php:152
|
980 |
+
msgid "Event updated successfully"
|
981 |
+
msgstr "Событие успешно обновлено"
|
982 |
+
|
983 |
+
#: my-calendar-event-manager.php:345 my-calendar-group-manager.php:156
|
984 |
+
msgid "You do not have sufficient permissions to edit that event."
|
985 |
+
msgstr "Вы не имеете соответствующих привелегий для редактирования этого события. "
|
986 |
+
|
987 |
+
#: my-calendar-event-manager.php:352
|
988 |
+
msgid "You can't delete an event if you haven't submitted an event id"
|
989 |
+
msgstr "Вы не можете удалить событие без указания его ID"
|
990 |
+
|
991 |
+
#: my-calendar-event-manager.php:369
|
992 |
+
msgid "Event deleted successfully"
|
993 |
+
msgstr "Событие успешно удалено"
|
994 |
+
|
995 |
+
#: my-calendar-event-manager.php:371
|
996 |
+
msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
|
997 |
+
msgstr "Если вы удалите событие, а оно по-прежнему появляется в базе данных. Пожалуйста разберитесь."
|
998 |
+
|
999 |
+
#: my-calendar-event-manager.php:384 my-calendar-group-manager.php:168
|
1000 |
+
msgid "Sorry! That's an invalid event key."
|
1001 |
+
msgstr "Извините! Это неправильный ключ события."
|
1002 |
+
|
1003 |
+
#: my-calendar-event-manager.php:388 my-calendar-group-manager.php:172
|
1004 |
+
msgid "Sorry! We couldn't find an event with that ID."
|
1005 |
+
msgstr "Извините! Мы не можем найти событие с этим ID"
|
1006 |
+
|
1007 |
+
#: my-calendar-event-manager.php:414
|
1008 |
+
msgid "This event must be approved in order for it to appear on the calendar."
|
1009 |
+
msgstr "Это событие должно быть подтверждено чтобы оно появилось в календаре."
|
1010 |
+
|
1011 |
+
#: my-calendar-event-manager.php:467
|
1012 |
+
msgid "Add/Edit Event"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: my-calendar-event-manager.php:470 my-calendar-event-manager.php:889
|
1016 |
+
msgid "Save Event"
|
1017 |
+
msgstr "Сохранить событие"
|
1018 |
+
|
1019 |
+
#: my-calendar-event-manager.php:484 my-calendar-group-manager.php:298
|
1020 |
+
msgid "Enter your Event Information"
|
1021 |
+
msgstr "Введите информацию о событии"
|
1022 |
+
|
1023 |
+
#: my-calendar-event-manager.php:486 my-calendar-group-manager.php:300
|
1024 |
+
msgid "Event Title"
|
1025 |
+
msgstr "Название события "
|
1026 |
+
|
1027 |
+
#: my-calendar-event-manager.php:486 my-calendar-event-manager.php:624
|
1028 |
+
#: my-calendar-group-manager.php:300
|
1029 |
+
msgid "(required)"
|
1030 |
+
msgstr "(обязательно)"
|
1031 |
+
|
1032 |
+
#: my-calendar-event-manager.php:490
|
1033 |
+
msgid "Publish"
|
1034 |
+
msgstr "Публиковать"
|
1035 |
+
|
1036 |
+
#: my-calendar-event-manager.php:490
|
1037 |
+
msgid "You must approve this event to promote it to the calendar."
|
1038 |
+
msgstr "Вы должны подтвердить это событие чтобы оно появилось в календаре."
|
1039 |
+
|
1040 |
+
#: my-calendar-event-manager.php:492
|
1041 |
+
msgid "An administrator must approve your new event."
|
1042 |
+
msgstr "Администратор должен подтвердить ваше новое событие."
|
1043 |
+
|
1044 |
+
#: my-calendar-event-manager.php:505
|
1045 |
+
msgid "This event is not spam"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: my-calendar-event-manager.php:512 my-calendar-group-manager.php:314
|
1049 |
+
msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
1050 |
+
msgstr "Описание события (<abbr title=\"hypertext markup language\">HTML</abbr> разрешен)"
|
1051 |
+
|
1052 |
+
#: my-calendar-event-manager.php:534 my-calendar-event-manager.php:547
|
1053 |
+
#: my-calendar-group-manager.php:325 my-calendar-group-manager.php:333
|
1054 |
+
msgid "This event's image:"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: my-calendar-event-manager.php:536 my-calendar-group-manager.php:327
|
1058 |
+
msgid "Add an image:"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: my-calendar-event-manager.php:538
|
1062 |
+
msgid "(URL to Event image)"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: my-calendar-event-manager.php:540 my-calendar-group-manager.php:327
|
1066 |
+
msgid "Upload Image"
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: my-calendar-event-manager.php:540 my-calendar-group-manager.php:327
|
1070 |
+
msgid "Include your image URL or upload an image."
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: my-calendar-event-manager.php:553 my-calendar-group-manager.php:339
|
1074 |
+
msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
|
1075 |
+
msgstr "Короткое описание события (<abbr title=\"hypertext markup language\">HTML</abbr> разрешен)"
|
1076 |
+
|
1077 |
+
#: my-calendar-event-manager.php:557 my-calendar-group-manager.php:343
|
1078 |
+
msgid "Event Host"
|
1079 |
+
msgstr "Инициатор события"
|
1080 |
+
|
1081 |
+
#: my-calendar-event-manager.php:576 my-calendar-group-manager.php:362
|
1082 |
+
msgid "Event Category"
|
1083 |
+
msgstr "Категория события"
|
1084 |
+
|
1085 |
+
#: my-calendar-event-manager.php:588 my-calendar-group-manager.php:374
|
1086 |
+
msgid "Event Link (Optional)"
|
1087 |
+
msgstr "Ссылка события (опционально)"
|
1088 |
+
|
1089 |
+
#: my-calendar-event-manager.php:588 my-calendar-group-manager.php:374
|
1090 |
+
msgid "This link will expire when the event passes."
|
1091 |
+
msgstr "Эта ссылка события будет аннулирована когда событие произойдет."
|
1092 |
+
|
1093 |
+
#: my-calendar-event-manager.php:598 my-calendar-event-manager.php:606
|
1094 |
+
msgid "Event Date and Time"
|
1095 |
+
msgstr "Время и дата события"
|
1096 |
+
|
1097 |
+
#: my-calendar-event-manager.php:624
|
1098 |
+
msgid "Start Date (YYYY-MM-DD)"
|
1099 |
+
msgstr "Дата начала (ГГГГ-ММ-ДД)"
|
1100 |
+
|
1101 |
+
#: my-calendar-event-manager.php:624
|
1102 |
+
msgid "Time (hh:mm am/pm)"
|
1103 |
+
msgstr "Время (чч:мм)"
|
1104 |
+
|
1105 |
+
#: my-calendar-event-manager.php:633
|
1106 |
+
msgid "End Date (YYYY-MM-DD)"
|
1107 |
+
msgstr "Дата окончания (ГГГГ-ММ-ДД)"
|
1108 |
+
|
1109 |
+
#: my-calendar-event-manager.php:633
|
1110 |
+
msgid "End Time (hh:mm am/pm)"
|
1111 |
+
msgstr "Время окончания (чч:мм)"
|
1112 |
+
|
1113 |
+
#: my-calendar-event-manager.php:644
|
1114 |
+
msgid "This is a multi-day event."
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: my-calendar-event-manager.php:646
|
1118 |
+
msgid "Enter the beginning and ending dates/times for each occurrence of the event."
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: my-calendar-event-manager.php:646
|
1122 |
+
msgid "If this is a multi-day event, it creates a single event with multiple dates/times; otherwise it creates separate events for each occurrence."
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: my-calendar-event-manager.php:648
|
1126 |
+
msgid "Add another occurrence"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: my-calendar-event-manager.php:649
|
1130 |
+
msgid "Remove last occurrence"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: my-calendar-event-manager.php:671
|
1134 |
+
msgid "Current time difference from GMT is "
|
1135 |
+
msgstr "Текущее отличие времени от GMT "
|
1136 |
+
|
1137 |
+
#: my-calendar-event-manager.php:671
|
1138 |
+
msgid " hour(s)"
|
1139 |
+
msgstr " час(ов)"
|
1140 |
+
|
1141 |
+
#: my-calendar-event-manager.php:681 my-calendar-event-manager.php:688
|
1142 |
+
msgid "Recurring Events"
|
1143 |
+
msgstr "Повторяющееся событие"
|
1144 |
+
|
1145 |
+
#: my-calendar-event-manager.php:691
|
1146 |
+
msgid "Repeats for"
|
1147 |
+
msgstr "Повторять"
|
1148 |
+
|
1149 |
+
#: my-calendar-event-manager.php:692
|
1150 |
+
msgid "Units"
|
1151 |
+
msgstr "Единицы"
|
1152 |
+
|
1153 |
+
#: my-calendar-core.php:1456 my-calendar-templates.php:151
|
1154 |
+
msgid "Does not recur"
|
1155 |
+
msgstr "Не повторять"
|
1156 |
+
|
1157 |
+
#: my-calendar-core.php:1457 my-calendar-event-manager.php:1031
|
1158 |
+
#: my-calendar-group-manager.php:772 my-calendar-templates.php:152
|
1159 |
+
msgid "Daily"
|
1160 |
+
msgstr "Ежедневно"
|
1161 |
+
|
1162 |
+
#: my-calendar-core.php:1458 my-calendar-templates.php:153
|
1163 |
+
msgid "Daily, weekdays only"
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: my-calendar-core.php:1459 my-calendar-event-manager.php:1033
|
1167 |
+
#: my-calendar-group-manager.php:774 my-calendar-templates.php:154
|
1168 |
+
msgid "Weekly"
|
1169 |
+
msgstr "Еженедельно"
|
1170 |
+
|
1171 |
+
#: my-calendar-core.php:1460 my-calendar-templates.php:155
|
1172 |
+
msgid "Bi-weekly"
|
1173 |
+
msgstr "Раз в две недели"
|
1174 |
+
|
1175 |
+
#: my-calendar-core.php:1461
|
1176 |
+
msgid "Date of Month (e.g., the 24th of each month)"
|
1177 |
+
msgstr "Дата месяца (напр. 24-е число каждого месяца)"
|
1178 |
+
|
1179 |
+
#: my-calendar-core.php:1462
|
1180 |
+
msgid "Day of Month (e.g., the 3rd Monday of each month)"
|
1181 |
+
msgstr "День месяца (напр. 3-ий понедельник каждого месяца)"
|
1182 |
+
|
1183 |
+
#: my-calendar-core.php:1463 my-calendar-templates.php:158
|
1184 |
+
msgid "Annually"
|
1185 |
+
msgstr "Ежегодно"
|
1186 |
+
|
1187 |
+
#: my-calendar-event-manager.php:698
|
1188 |
+
msgid "Your entry is the number of events after the first occurrence of the event: a recurrence of <em>2</em> means the event will happen three times."
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: my-calendar-event-manager.php:719
|
1192 |
+
msgid "Event Registration Settings"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: my-calendar-event-manager.php:722 my-calendar-group-manager.php:388
|
1196 |
+
msgid "Event Registration Status"
|
1197 |
+
msgstr "Статус регистрации события"
|
1198 |
+
|
1199 |
+
#: my-calendar-event-manager.php:723 my-calendar-group-manager.php:389
|
1200 |
+
msgid "My Calendar does not manage event registrations. Use this for information only."
|
1201 |
+
msgstr "My Calendar не управляет регистрацией событий. Используйте только для информации."
|
1202 |
+
|
1203 |
+
#: my-calendar-event-manager.php:725 my-calendar-group-manager.php:391
|
1204 |
+
msgid "Open"
|
1205 |
+
msgstr "Открыто"
|
1206 |
+
|
1207 |
+
#: my-calendar-event-manager.php:726 my-calendar-group-manager.php:392
|
1208 |
+
msgid "Closed"
|
1209 |
+
msgstr "Закрыто"
|
1210 |
+
|
1211 |
+
#: my-calendar-event-manager.php:727 my-calendar-group-manager.php:393
|
1212 |
+
msgid "Does not apply"
|
1213 |
+
msgstr "Не применять"
|
1214 |
+
|
1215 |
+
#: my-calendar-event-manager.php:730 my-calendar-group-manager.php:396
|
1216 |
+
msgid "If this event recurs, it can only be registered for as a complete series."
|
1217 |
+
msgstr "Если это событие повторяется, оно может быть зарегистрировано только как полная серия."
|
1218 |
+
|
1219 |
+
#: my-calendar-event-manager.php:747 my-calendar-event-manager.php:750
|
1220 |
+
#: my-calendar-group-manager.php:413 my-calendar-group-manager.php:416
|
1221 |
+
#: my-calendar-locations.php:129
|
1222 |
+
msgid "Event Location"
|
1223 |
+
msgstr "Местоположение события"
|
1224 |
+
|
1225 |
+
#: my-calendar-event-manager.php:757 my-calendar-group-manager.php:423
|
1226 |
+
msgid "Choose a preset location:"
|
1227 |
+
msgstr "Выберите установленное местоположение:"
|
1228 |
+
|
1229 |
+
#: my-calendar-event-manager.php:766 my-calendar-group-manager.php:436
|
1230 |
+
msgid "Add recurring locations for later use."
|
1231 |
+
msgstr "Добавить повторяющиеся местоположения для дальнейшего использования."
|
1232 |
+
|
1233 |
+
#: my-calendar-event-manager.php:773 my-calendar-group-manager.php:445
|
1234 |
+
#: my-calendar-locations.php:131
|
1235 |
+
msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
|
1236 |
+
msgstr "Все связанные с местоположением поля не являются обязательными: <em> недостаточная информации может привести к неточностям на карте</em>."
|
1237 |
+
|
1238 |
+
#: my-calendar-event-manager.php:777 my-calendar-group-manager.php:448
|
1239 |
+
#: my-calendar-locations.php:134
|
1240 |
+
msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
|
1241 |
+
msgstr "Название местоположения (напр. <em>Сырники у тёти Глаши</em>)"
|
1242 |
+
|
1243 |
+
#: my-calendar-event-manager.php:786 my-calendar-group-manager.php:451
|
1244 |
+
#: my-calendar-locations.php:143
|
1245 |
+
msgid "Street Address"
|
1246 |
+
msgstr "Адрес"
|
1247 |
+
|
1248 |
+
#: my-calendar-event-manager.php:789 my-calendar-group-manager.php:454
|
1249 |
+
#: my-calendar-locations.php:146
|
1250 |
+
msgid "Street Address (2)"
|
1251 |
+
msgstr "Адрес (2)"
|
1252 |
+
|
1253 |
+
#: my-calendar-event-manager.php:792 my-calendar-group-manager.php:457
|
1254 |
+
#: my-calendar-locations.php:149
|
1255 |
+
msgid "Phone"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: my-calendar-event-manager.php:802 my-calendar-group-manager.php:460
|
1259 |
+
#: my-calendar-locations.php:159 my-calendar-settings.php:906
|
1260 |
+
msgid "State/Province"
|
1261 |
+
msgstr "Федеральный округ/Обасть"
|
1262 |
+
|
1263 |
+
#: my-calendar-event-manager.php:836 my-calendar-group-manager.php:470
|
1264 |
+
#: my-calendar-locations.php:191
|
1265 |
+
msgid "Initial Zoom"
|
1266 |
+
msgstr "Начальное увеличение"
|
1267 |
+
|
1268 |
+
#: my-calendar-event-manager.php:838 my-calendar-group-manager.php:472
|
1269 |
+
#: my-calendar-locations.php:193
|
1270 |
+
msgid "Neighborhood"
|
1271 |
+
msgstr "Окрестности"
|
1272 |
+
|
1273 |
+
#: my-calendar-event-manager.php:839 my-calendar-group-manager.php:473
|
1274 |
+
#: my-calendar-locations.php:194
|
1275 |
+
msgid "Small City"
|
1276 |
+
msgstr "Маленький город"
|
1277 |
+
|
1278 |
+
#: my-calendar-event-manager.php:840 my-calendar-group-manager.php:474
|
1279 |
+
#: my-calendar-locations.php:195
|
1280 |
+
msgid "Large City"
|
1281 |
+
msgstr "Большой город"
|
1282 |
+
|
1283 |
+
#: my-calendar-event-manager.php:841 my-calendar-group-manager.php:475
|
1284 |
+
#: my-calendar-locations.php:196
|
1285 |
+
msgid "Greater Metro Area"
|
1286 |
+
msgstr "Ближайшее метро"
|
1287 |
+
|
1288 |
+
#: my-calendar-event-manager.php:847 my-calendar-group-manager.php:481
|
1289 |
+
msgid "Location URL"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: my-calendar-event-manager.php:850 my-calendar-group-manager.php:484
|
1293 |
+
#: my-calendar-locations.php:205
|
1294 |
+
msgid "GPS Coordinates (optional)"
|
1295 |
+
msgstr "GPS координаты (опционально)"
|
1296 |
+
|
1297 |
+
#: my-calendar-event-manager.php:852 my-calendar-group-manager.php:486
|
1298 |
+
msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to provide your map link."
|
1299 |
+
msgstr "Если вы укажете GPS координаты вашего местоположения, они будут использоваться вместо любой другой информации, адреса для обеспечения ссылки на карту."
|
1300 |
+
|
1301 |
+
#: my-calendar-event-manager.php:855 my-calendar-group-manager.php:489
|
1302 |
+
#: my-calendar-locations.php:210
|
1303 |
+
msgid "Latitude"
|
1304 |
+
msgstr "Широта"
|
1305 |
+
|
1306 |
+
#: my-calendar-event-manager.php:855 my-calendar-group-manager.php:489
|
1307 |
+
#: my-calendar-locations.php:211
|
1308 |
+
msgid "Longitude"
|
1309 |
+
msgstr "Долгота"
|
1310 |
+
|
1311 |
+
#: my-calendar-event-manager.php:868
|
1312 |
+
msgid "Special scheduling options"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: my-calendar-event-manager.php:871
|
1316 |
+
msgid "Special Options"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: my-calendar-event-manager.php:873
|
1320 |
+
msgid "Cancel this event if it occurs on a date with an event in the Holidays category"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: my-calendar-event-manager.php:876
|
1324 |
+
msgid "If this event recurs, and falls on the 5th week of the month in a month with only four weeks, move it back one week."
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: my-calendar-event-manager.php:956 my-calendar-settings.php:121
|
1328 |
+
#: my-calendar-settings.php:770
|
1329 |
+
msgid "Manage Events"
|
1330 |
+
msgstr "Управление событиями"
|
1331 |
+
|
1332 |
+
#: my-calendar-event-manager.php:959 my-calendar-templates.php:244
|
1333 |
+
msgid "Published"
|
1334 |
+
msgstr "Опубликовано"
|
1335 |
+
|
1336 |
+
#: my-calendar-event-manager.php:960 my-calendar-templates.php:244
|
1337 |
+
msgid "Reserved"
|
1338 |
+
msgstr "Зарезервировано"
|
1339 |
+
|
1340 |
+
#: my-calendar-event-manager.php:961 my-calendar-group-manager.php:712
|
1341 |
+
msgid "All"
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: my-calendar-event-manager.php:994 my-calendar-group-manager.php:733
|
1345 |
+
#: my-calendar-settings.php:388 my-calendar-widgets.php:47
|
1346 |
+
#: my-calendar-widgets.php:156 my-calendar-widgets.php:621
|
1347 |
+
msgid "Title"
|
1348 |
+
msgstr "Название"
|
1349 |
+
|
1350 |
+
#: my-calendar-event-manager.php:995 my-calendar-group-manager.php:734
|
1351 |
+
msgid "Where"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: my-calendar-event-manager.php:996 my-calendar-group-manager.php:735
|
1355 |
+
#: my-calendar-settings.php:389
|
1356 |
+
msgid "Description"
|
1357 |
+
msgstr "Описание"
|
1358 |
+
|
1359 |
+
#: my-calendar-event-manager.php:997 my-calendar-group-manager.php:736
|
1360 |
+
msgid "Starts"
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: my-calendar-event-manager.php:998 my-calendar-group-manager.php:737
|
1364 |
+
msgid "Recurs"
|
1365 |
+
msgstr "Интервал повтора "
|
1366 |
+
|
1367 |
+
#: my-calendar-event-manager.php:999 my-calendar-group-manager.php:738
|
1368 |
+
#: my-calendar-settings.php:391
|
1369 |
+
msgid "Author"
|
1370 |
+
msgstr "Автор"
|
1371 |
+
|
1372 |
+
#: my-calendar-event-manager.php:1000 my-calendar-group-manager.php:739
|
1373 |
+
#: my-calendar-output.php:137 my-calendar-settings.php:392
|
1374 |
+
#: my-calendar-templates.php:242
|
1375 |
+
msgid "Category"
|
1376 |
+
msgstr "Категория"
|
1377 |
+
|
1378 |
+
#: my-calendar-event-manager.php:1001
|
1379 |
+
msgid "Edit / Delete"
|
1380 |
+
msgstr "Редактировать / Удалить"
|
1381 |
+
|
1382 |
+
#: my-calendar-event-manager.php:1030 my-calendar-group-manager.php:771
|
1383 |
+
msgid "Never"
|
1384 |
+
msgstr "Никогда"
|
1385 |
+
|
1386 |
+
#: my-calendar-event-manager.php:1032 my-calendar-group-manager.php:773
|
1387 |
+
msgid "Weekdays"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: my-calendar-event-manager.php:1034 my-calendar-group-manager.php:775
|
1391 |
+
msgid "Bi-Weekly"
|
1392 |
+
msgstr "Раз в две недели"
|
1393 |
+
|
1394 |
+
#: my-calendar-event-manager.php:1035 my-calendar-group-manager.php:776
|
1395 |
+
msgid "Monthly (by date)"
|
1396 |
+
msgstr "Ежемесячно (по дате)"
|
1397 |
+
|
1398 |
+
#: my-calendar-event-manager.php:1036 my-calendar-group-manager.php:777
|
1399 |
+
msgid "Monthly (by day)"
|
1400 |
+
msgstr "Ежемесячно (в день)"
|
1401 |
+
|
1402 |
+
#: my-calendar-event-manager.php:1037 my-calendar-group-manager.php:778
|
1403 |
+
msgid "Yearly"
|
1404 |
+
msgstr "Раз в год"
|
1405 |
+
|
1406 |
+
#: my-calendar-group-manager.php:781
|
1407 |
+
msgid "Forever"
|
1408 |
+
msgstr "Всегда"
|
1409 |
+
|
1410 |
+
#: my-calendar-event-manager.php:1041 my-calendar-event-manager.php:1042
|
1411 |
+
#: my-calendar-group-manager.php:782
|
1412 |
+
msgid "%d Times"
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: my-calendar-event-manager.php:1057
|
1416 |
+
msgid "Copy"
|
1417 |
+
msgstr "Копировать"
|
1418 |
+
|
1419 |
+
#: my-calendar-event-manager.php:1060 my-calendar-group-manager.php:800
|
1420 |
+
#: my-calendar-output.php:313
|
1421 |
+
msgid "Edit Group"
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: my-calendar-event-manager.php:1063 my-calendar-group-manager.php:804
|
1425 |
+
msgid "Not editable."
|
1426 |
+
msgstr "Не редактируемо."
|
1427 |
+
|
1428 |
+
#: my-calendar-event-manager.php:1069
|
1429 |
+
msgid "Reject"
|
1430 |
+
msgstr "Отклонить"
|
1431 |
+
|
1432 |
+
#: my-calendar-event-manager.php:1071
|
1433 |
+
msgid "Approve"
|
1434 |
+
msgstr "Подтвердить"
|
1435 |
+
|
1436 |
+
#: my-calendar-event-manager.php:1076
|
1437 |
+
msgid "Approved"
|
1438 |
+
msgstr "Подтверждено"
|
1439 |
+
|
1440 |
+
#: my-calendar-event-manager.php:1078
|
1441 |
+
msgid "Rejected"
|
1442 |
+
msgstr "Отклонить"
|
1443 |
+
|
1444 |
+
#: my-calendar-event-manager.php:1080
|
1445 |
+
msgid "Awaiting Approval"
|
1446 |
+
msgstr "Ждет подтверждения"
|
1447 |
+
|
1448 |
+
#: my-calendar-event-manager.php:1091
|
1449 |
+
msgid "Delete checked events"
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: my-calendar-event-manager.php:1105 my-calendar-group-manager.php:818
|
1453 |
+
msgid "There are no events in the database!"
|
1454 |
+
msgstr "Нет событий в базе!"
|
1455 |
+
|
1456 |
+
#: my-calendar-event-manager.php:1257
|
1457 |
+
msgid "Your event end date must be either after or the same as your event begin date"
|
1458 |
+
msgstr "Дата окончания события должна быть позже чем или такой же как дата начала "
|
1459 |
+
|
1460 |
+
#: my-calendar-event-manager.php:1260
|
1461 |
+
msgid "Your date formatting is correct but one or more of your dates is invalid. Check for number of days in month and leap year related errors."
|
1462 |
+
msgstr "Форматирование даты правильное, но одна или более ваших дат являются недействительными. Проверьте количество дней в месяце и не високосный ли год."
|
1463 |
+
|
1464 |
+
#: my-calendar-event-manager.php:1293 my-calendar-group-manager.php:585
|
1465 |
+
msgid "The event title must be between 1 and 255 characters in length."
|
1466 |
+
msgstr "Заголовок должен быть от 1 до 255 символов в длину."
|
1467 |
+
|
1468 |
+
#: my-calendar-event-manager.php:1299
|
1469 |
+
msgid "The repetition value must be 0 unless a type of recurrence is selected."
|
1470 |
+
msgstr "Значение повтора должно быть 0, за исключением периодического повтора, когда оно должно быть 0 или больше."
|
1471 |
+
|
1472 |
+
#: my-calendar-group-manager.php:58
|
1473 |
+
msgid "Event not updated."
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: my-calendar-group-manager.php:84
|
1477 |
+
msgid "Event not grouped."
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: my-calendar-group-manager.php:88
|
1481 |
+
msgid "Event grouped successfully"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: my-calendar-group-manager.php:103 my-calendar-group-manager.php:295
|
1485 |
+
#: my-calendar-group-manager.php:500
|
1486 |
+
msgid "Edit Event Group"
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: my-calendar-group-manager.php:106
|
1490 |
+
msgid "You must provide an event group id in order to edit it"
|
1491 |
+
msgstr ""
|
1492 |
+
|
1493 |
+
#: my-calendar-group-manager.php:113 my-calendar-group-manager.php:292
|
1494 |
+
#: my-calendar.php:328
|
1495 |
+
msgid "Manage Event Groups"
|
1496 |
+
msgstr ""
|
1497 |
+
|
1498 |
+
#: my-calendar-group-manager.php:114
|
1499 |
+
msgid "Grouped events can be edited simultaneously. When you choose a group of events to edit, the form will be pre-filled with the content applicable to the member of the event group you started from. (e.g., if you click on the \"Edit Group\" link for the 3rd of a set of events, the boxes will use the content applicable to that event.). You will also receive a set of checkboxes which will indicate which events in the group should have these changes applied. (All grouped events can also be edited individually.)"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: my-calendar-group-manager.php:115
|
1503 |
+
msgid "The following fields will never be changed when editing groups: registration availability, event publication status, spam flagging, event recurrence, event repetitions, and the start and end dates and times for that event."
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: my-calendar-group-manager.php:220
|
1507 |
+
msgid "<strong>NOTE:</strong> The group editable fields for the events in this group do not match"
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: my-calendar-group-manager.php:220
|
1511 |
+
msgid "The group editable fields for the events in this group match."
|
1512 |
+
msgstr ""
|
1513 |
+
|
1514 |
+
#: my-calendar-group-manager.php:227
|
1515 |
+
msgid "Apply these changes to:"
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: my-calendar-group-manager.php:238
|
1519 |
+
msgid "Check/Uncheck all"
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: my-calendar-group-manager.php:240
|
1523 |
+
msgid "Remove checked events from this group"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: my-calendar-group-manager.php:258
|
1527 |
+
msgid "You must provide a group ID to edit groups"
|
1528 |
+
msgstr ""
|
1529 |
+
|
1530 |
+
#: my-calendar-group-manager.php:308
|
1531 |
+
msgid "Selected dates are a single multi-day event."
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: my-calendar-group-manager.php:385
|
1535 |
+
msgid "Event Registration Options"
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: my-calendar-group-manager.php:707
|
1539 |
+
msgid "Create/Modify Groups"
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: my-calendar-group-manager.php:716
|
1543 |
+
msgid "Check a set of events to group them for mass editing."
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: my-calendar-group-manager.php:726 my-calendar-group-manager.php:812
|
1547 |
+
msgid "Group checked events for mass editing"
|
1548 |
+
msgstr ""
|
1549 |
+
|
1550 |
+
#: my-calendar-group-manager.php:732
|
1551 |
+
msgid "Group"
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: my-calendar-group-manager.php:802
|
1555 |
+
msgid "Ungrouped"
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: my-calendar-help.php:4
|
1559 |
+
msgid "How to use My Calendar"
|
1560 |
+
msgstr "Как использовать My Calendar"
|
1561 |
+
|
1562 |
+
#: my-calendar-help.php:45
|
1563 |
+
msgid "Shortcode Syntax"
|
1564 |
+
msgstr "Синтаксис «шорт-кодов»"
|
1565 |
+
|
1566 |
+
#: my-calendar-help.php:48
|
1567 |
+
msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
|
1568 |
+
msgstr "Эти шорт-коды могут быть использованы в записях, страницах или в виджетах"
|
1569 |
+
|
1570 |
+
#: my-calendar-help.php:50
|
1571 |
+
msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
|
1572 |
+
msgstr ""
|
1573 |
+
|
1574 |
+
#: my-calendar-help.php:53
|
1575 |
+
msgid "This basic shortcode will show the calendar on a post or page including all categories and the category key, in a traditional month-by-month format."
|
1576 |
+
msgstr "Этот базовый шорт-код покажет календарь в записи или странице, включаяя все категории и легенду, в традиционном формате. "
|
1577 |
+
|
1578 |
+
#: my-calendar-help.php:60
|
1579 |
+
msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
|
1580 |
+
msgstr ""
|
1581 |
+
|
1582 |
+
#: my-calendar-help.php:61
|
1583 |
+
msgid "Either \"list\" or \"mini\" to show the list view or the mini calendar; exclude or any other value to show the main grid calendar."
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: my-calendar-help.php:62
|
1587 |
+
msgid "Set as \"no\" to hide the category key."
|
1588 |
+
msgstr ""
|
1589 |
+
|
1590 |
+
#: my-calendar-help.php:63
|
1591 |
+
msgid "Set as \"no\" to hide the month-by-month navigation."
|
1592 |
+
msgstr ""
|
1593 |
+
|
1594 |
+
#: my-calendar-help.php:64
|
1595 |
+
msgid "Set to \"no\" or \"yes\" to override the default settings."
|
1596 |
+
msgstr ""
|
1597 |
+
|
1598 |
+
#: my-calendar-help.php:65
|
1599 |
+
msgid "Set as \"yes\" to show a link to switch between list and grid formats."
|
1600 |
+
msgstr ""
|
1601 |
+
|
1602 |
+
#: my-calendar-help.php:66
|
1603 |
+
msgid "Set to \"week\" to show a one week view or to \"day\" to show a single day view. Any other value will show a month view. (Day view shows as a list regardless of format setting.)"
|
1604 |
+
msgstr ""
|
1605 |
+
|
1606 |
+
#: my-calendar-help.php:67
|
1607 |
+
msgid "The type of location data to restrict by."
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: my-calendar-help.php:68
|
1611 |
+
msgid "The specific location information to filter to."
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: my-calendar-help.php:73
|
1615 |
+
msgid "The main My Calendar short code can be generated from a button in your post and page editor. The mini calendar can also be accessed and configured as a widget."
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: my-calendar-help.php:75
|
1619 |
+
msgid "Additional Calendar Views (Upcoming events, today's events)"
|
1620 |
+
msgstr ""
|
1621 |
+
|
1622 |
+
#: my-calendar-help.php:85
|
1623 |
+
msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
|
1624 |
+
msgstr ""
|
1625 |
+
|
1626 |
+
#: my-calendar-help.php:92
|
1627 |
+
msgid "Supplement Features (Locations filter, Categories filter)"
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: my-calendar-help.php:96
|
1631 |
+
msgid "This shortcode produces a list of event locations, either as a list of links or as a select dropdown form. The <code>show</code> attribute can either be <code>list</code> or <code>form</code>, <code>type</code> is either <code>saved</code> (to show items from your stored locations), or <code>custom</code> (to show the options configured in your user settings). <code>datatype</code> must be the type of data your limits are choosing from: <code>name</code> (business name), <code>city</code>, <code>state</code>, <code>country</code>, <code>zip</code> (postal code), or <code>region</code>."
|
1632 |
+
msgstr "Этот шорт-код дает список местоположений событий, как обычный список либо в виде выпадающей формы. Атрибут <code>show</code> может иметь значение <code>list</code> или <code>form</code>, атрибут <code>type</code> может иметь значение <code>saved</code> (чтобы показывать записи из сохраненных мест), либо <code>custom</code> (чтобы показывать в соответствии с пользовательскими настройками). Атрибут <code>datatype</code> должен быть одним из типов данных, представленных ниже: <code>name</code> (название), <code>city</code>, <code>state</code>, <code>country</code>, or <code>zip</code> (почтовый индекс)."
|
1633 |
+
|
1634 |
+
#: my-calendar-help.php:100
|
1635 |
+
msgid "If you want to display a list of locations in your database, use this shortcode. The <code>datatype</code> is the type of data displayed; all lists will include a link to the map of that location. In addition to basic location information as in the above shortcode, you can also use \"hcard\" to display all available location information."
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: my-calendar-help.php:105
|
1639 |
+
msgid "This shortcode produces a list of event categories, either as a list of links or as a select dropdown form. The <code>show</code> attribute can either be <code>list</code> or <code>form</code>."
|
1640 |
+
msgstr "Этот шорт-код выводит список категорий событий, в виде списка либо в виде выпадающей формы. Атрибут <code>show</code> может принимать значения <code>list</code> либо <code>form</code>."
|
1641 |
+
|
1642 |
+
#: my-calendar-help.php:113
|
1643 |
+
msgid "Category Icons"
|
1644 |
+
msgstr "Значки категорий"
|
1645 |
+
|
1646 |
+
#: my-calendar-help.php:116
|
1647 |
+
msgid "My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc."
|
1648 |
+
msgstr "Мой Календарь предназначен для управления несколькими календарями. Основа для этих календарей — категори; вы можете легко настроить страницу календаря, который включает все категории, или вы можете выделить отдельные страницы для календарей в каждой категории. Для примера, это может быть полезным для управления календарями туров нескольких групп; календари событий для различных мест, и т.д."
|
1649 |
+
|
1650 |
+
#: my-calendar-help.php:119
|
1651 |
+
msgid "The pre-installed category icons may not be especially useful for your needs or design. I'm assuming that you're going to upload your own icons -- all you need to do is upload them to the plugin's icons folder, and they'll be available for immediate use, or place them in a folder at \"my-calendar-custom\" to avoid having them overwritten by upgrades."
|
1652 |
+
msgstr "Предустановленные значки категорий могут быть бесполезны для ваших нужд или дизайна. Я предусмотрел, что вы соберетесь использовать свои собственные иконки – все, что вам нужно сделать, это загрузить их в папку плагина иконки, и они будут доступны для использования, или поместить их в папку \"my-calendar-custom\" wp-content/plugins, чтобы избежать их перезаписи при обновлении."
|
1653 |
+
|
1654 |
+
#: my-calendar-help.php:119
|
1655 |
+
msgid "Your icons folder is:"
|
1656 |
+
msgstr "Ваша папка со значками: "
|
1657 |
+
|
1658 |
+
#: my-calendar-help.php:119
|
1659 |
+
msgid "You can alternately place icons in:"
|
1660 |
+
msgstr "Кроме того, вы можете поместить значки в папку: "
|
1661 |
+
|
1662 |
+
#: my-calendar-help.php:128
|
1663 |
+
msgid "Custom Styles"
|
1664 |
+
msgstr "Пользовательские стили"
|
1665 |
+
|
1666 |
+
#: my-calendar-help.php:131
|
1667 |
+
msgid "My Calendar comes with four basic stylesheets. My Calendar will retain changes to these basic stylesheets on upgrade, but if you want to add an entirely new stylesheet, you may wish to store it in the My Calendar custom styles directory."
|
1668 |
+
msgstr "My Calendar поставляется с четырьмя основными стилями. My Calendar будет сохранять изменения этих основных стилей при обновлении, но если вы хотите добавить совершенно новый стиль, вы можете сохранить его в пользовательский каталог стилей."
|
1669 |
+
|
1670 |
+
#: my-calendar-help.php:134
|
1671 |
+
msgid "Your stylesheet directory is"
|
1672 |
+
msgstr "Директория ваших таблиц стилей "
|
1673 |
+
|
1674 |
+
#: my-calendar-help.php:135
|
1675 |
+
msgid "Your custom stylesheets directory is"
|
1676 |
+
msgstr "Директория пользовательских таблиц стилей "
|
1677 |
+
|
1678 |
+
#: my-calendar-help.php:138
|
1679 |
+
msgid "You can also add custom styles to your theme directory to provide print styles, mobile styles, and tablet styles. <code>mc-print.css</code>, <code>mc-mobile.css</code>, and <code>mc-tablet.css</code>."
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: my-calendar-help.php:146
|
1683 |
+
msgid "Widget Templating"
|
1684 |
+
msgstr "Шаблонизация виджета"
|
1685 |
+
|
1686 |
+
#: my-calendar-help.php:149
|
1687 |
+
msgid "All template tags support two attributes: before=\"value\" and after=\"value\". The values of the attributes will be placed before and after the output value. These attribute values <strong>must</strong> be wrapped in double quotes."
|
1688 |
+
msgstr ""
|
1689 |
+
|
1690 |
+
#: my-calendar-help.php:152
|
1691 |
+
msgid "Date/Time template tags support the \"format\" attribute: format=\"M, Y\", where the value is a PHP formatted date string. Only <code>dtstart</code> and <code>dtend</code> include the full date/time information for formatting."
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
+
#: my-calendar-help.php:155
|
1695 |
+
msgid "Example:"
|
1696 |
+
msgstr ""
|
1697 |
+
|
1698 |
+
#: my-calendar-help.php:157 my-calendar.php:179
|
1699 |
+
msgid "Event Template Tags"
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: my-calendar-help.php:160
|
1703 |
+
msgid "Displays the title of the event."
|
1704 |
+
msgstr "Показывает название события."
|
1705 |
+
|
1706 |
+
#: my-calendar-help.php:163
|
1707 |
+
msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
|
1708 |
+
msgstr "Показывает название события как ссылку если для события таковая предоставлена события."
|
1709 |
+
|
1710 |
+
#: my-calendar-help.php:166
|
1711 |
+
msgid "Displays the start time for the event."
|
1712 |
+
msgstr "Показывает время начала события."
|
1713 |
+
|
1714 |
+
#: my-calendar-help.php:169
|
1715 |
+
msgid "Displays the start time for the event adjusted to the current user's time zone settings. Returns <code>{time}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1716 |
+
msgstr ""
|
1717 |
+
|
1718 |
+
#: my-calendar-help.php:172
|
1719 |
+
msgid "Displays the end time for the event adjusted to the current user's time zone settings. Returns <code>{endtime}</code> if user settings are disabled or if the user has not selected a preferred time zone."
|
1720 |
+
msgstr ""
|
1721 |
+
|
1722 |
+
#: my-calendar-help.php:175
|
1723 |
+
msgid "Displays the date on which the event begins."
|
1724 |
+
msgstr "Показывает дату начала события."
|
1725 |
+
|
1726 |
+
#: my-calendar-help.php:181
|
1727 |
+
msgid "Displays the date on which the event ends."
|
1728 |
+
msgstr "Показывает дату окончания события."
|
1729 |
+
|
1730 |
+
#: my-calendar-help.php:184
|
1731 |
+
msgid "Displays the time at which the event ends."
|
1732 |
+
msgstr "Показывает время окончания события."
|
1733 |
+
|
1734 |
+
#: my-calendar-help.php:187
|
1735 |
+
msgid "Displays the beginning date to the end date for events. Does not show end date if same as start date."
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: my-calendar-help.php:193
|
1739 |
+
msgid "Timestamp for beginning of event."
|
1740 |
+
msgstr ""
|
1741 |
+
|
1742 |
+
#: my-calendar-help.php:196
|
1743 |
+
msgid "Timestamp for end of event."
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: my-calendar-help.php:199
|
1747 |
+
msgid "For multi-day events displays an unordered list of dates and times for events in this group. Otherwise, beginning date/time."
|
1748 |
+
msgstr ""
|
1749 |
+
|
1750 |
+
#: my-calendar-help.php:202
|
1751 |
+
msgid "Displays the WordPress author who posted the event."
|
1752 |
+
msgstr "Показывает WordPress-автора, кто разместил событие."
|
1753 |
+
|
1754 |
+
#: my-calendar-help.php:205
|
1755 |
+
msgid "Displays the name of the person assigned as host for the event."
|
1756 |
+
msgstr "Показывает имя персоны, подписавшейся инициатором события."
|
1757 |
+
|
1758 |
+
#: my-calendar-help.php:208
|
1759 |
+
msgid "Displays the email address of the person assigned as host for the event."
|
1760 |
+
msgstr ""
|
1761 |
+
|
1762 |
+
#: my-calendar-help.php:211
|
1763 |
+
msgid "Displays the short version of the event description."
|
1764 |
+
msgstr "Показывать короткую версию описания."
|
1765 |
+
|
1766 |
+
#: my-calendar-help.php:214
|
1767 |
+
msgid "Displays short description without converting paragraphs."
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: my-calendar-help.php:220
|
1771 |
+
msgid "Displays the description of the event."
|
1772 |
+
msgstr "Показывает описание события."
|
1773 |
+
|
1774 |
+
#: my-calendar-help.php:223
|
1775 |
+
msgid "Displays description without converting paragraphs."
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: my-calendar-help.php:229 my-calendar.php:225
|
1779 |
+
msgid "Image associated with the event."
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: my-calendar-help.php:232
|
1783 |
+
msgid "Displays the URL provided for the event."
|
1784 |
+
msgstr "Показывает ссылку предоставленную для события."
|
1785 |
+
|
1786 |
+
#: my-calendar-help.php:235
|
1787 |
+
msgid "Produces the URL to download an iCal formatted record for the event."
|
1788 |
+
msgstr ""
|
1789 |
+
|
1790 |
+
#: my-calendar-help.php:238
|
1791 |
+
msgid "Produces a hyperlink to download an iCal formatted record for the event."
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: my-calendar-help.php:241
|
1795 |
+
msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: my-calendar-help.php:244
|
1799 |
+
msgid "Shows the number of repetitions of the event."
|
1800 |
+
msgstr ""
|
1801 |
+
|
1802 |
+
#: my-calendar-help.php:247
|
1803 |
+
msgid "Provides a link to an auto-generated page containing all information on the given event."
|
1804 |
+
msgstr ""
|
1805 |
+
|
1806 |
+
#: my-calendar-help.php:247
|
1807 |
+
msgid "Requires that the site URL has been provided on the Settings page"
|
1808 |
+
msgstr ""
|
1809 |
+
|
1810 |
+
#: my-calendar-help.php:250
|
1811 |
+
msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
|
1812 |
+
msgstr "Отображает текст указывающий, является ли регистрация на мероприятие открытой или закрытой; ничего не показывает, если это определено в выбраном событии."
|
1813 |
+
|
1814 |
+
#: my-calendar-help.php:253
|
1815 |
+
msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
|
1816 |
+
msgstr "Показывает текущее состояние события: либо \"Опубликовано\", либо \"Зарезервировано\" - в основном используется в шаблонах электропочты."
|
1817 |
+
|
1818 |
+
#: my-calendar-help.php:255 my-calendar.php:239
|
1819 |
+
msgid "Location Template Tags"
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#: my-calendar-help.php:259
|
1823 |
+
msgid "Displays the name of the location of the event."
|
1824 |
+
msgstr "Показывает название местоположения события."
|
1825 |
+
|
1826 |
+
#: my-calendar-help.php:262
|
1827 |
+
msgid "Displays the first line of the site address."
|
1828 |
+
msgstr "Показывает первую линию адреса события."
|
1829 |
+
|
1830 |
+
#: my-calendar-help.php:265
|
1831 |
+
msgid "Displays the second line of the site address."
|
1832 |
+
msgstr "Показывает вторую линию адреса события."
|
1833 |
+
|
1834 |
+
#: my-calendar-help.php:268
|
1835 |
+
msgid "Displays the city for the location."
|
1836 |
+
msgstr ""
|
1837 |
+
|
1838 |
+
#: my-calendar-help.php:271
|
1839 |
+
msgid "Displays the state for the location."
|
1840 |
+
msgstr ""
|
1841 |
+
|
1842 |
+
#: my-calendar-help.php:274
|
1843 |
+
msgid "Displays the postcode for the location."
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: my-calendar-help.php:277
|
1847 |
+
msgid "Shows the custom region entered for the location."
|
1848 |
+
msgstr ""
|
1849 |
+
|
1850 |
+
#: my-calendar-help.php:280
|
1851 |
+
msgid "Displays the country for the event location."
|
1852 |
+
msgstr "Показывает страну для местоположения события."
|
1853 |
+
|
1854 |
+
#: my-calendar-help.php:283
|
1855 |
+
msgid "Output the URL for the location link."
|
1856 |
+
msgstr ""
|
1857 |
+
|
1858 |
+
#: my-calendar-help.php:289
|
1859 |
+
msgid "Output a hyperlink to the location's listed link with default link text."
|
1860 |
+
msgstr ""
|
1861 |
+
|
1862 |
+
#: my-calendar-help.php:292
|
1863 |
+
msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
1864 |
+
msgstr "Показывает адрес события в формате <a href=\"http://microformats.org/wiki/hcard\">hcard</a>."
|
1865 |
+
|
1866 |
+
#: my-calendar-help.php:295
|
1867 |
+
msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
|
1868 |
+
msgstr "Показывает ссылку на Google-карту события, если имеется адрес. Если нет, будет пустая строка."
|
1869 |
+
|
1870 |
+
#: my-calendar-help.php:297 my-calendar.php:275
|
1871 |
+
msgid "Category Template Tags"
|
1872 |
+
msgstr ""
|
1873 |
+
|
1874 |
+
#: my-calendar-help.php:301
|
1875 |
+
msgid "Displays the name of the category the event is in."
|
1876 |
+
msgstr "Показывает имя категории, содержащей события."
|
1877 |
+
|
1878 |
+
#: my-calendar-help.php:304
|
1879 |
+
msgid "Produces the address of the current event's category icon."
|
1880 |
+
msgstr "Дает адрес значка категории текущего события."
|
1881 |
+
|
1882 |
+
#: my-calendar-help.php:307
|
1883 |
+
msgid "Produces the HTML for the current event's category icon."
|
1884 |
+
msgstr ""
|
1885 |
+
|
1886 |
+
#: my-calendar-help.php:310
|
1887 |
+
msgid "Produces the hex code for the current event's category color."
|
1888 |
+
msgstr "Дает цвет в hex-формате категории текущего события."
|
1889 |
+
|
1890 |
+
#: my-calendar-help.php:313
|
1891 |
+
msgid ""
|
1892 |
+
"Displays the ID forr\n"
|
1893 |
+
"\t\t the category the event is in."
|
1894 |
+
msgstr ""
|
1895 |
+
|
1896 |
+
#: my-calendar-help.php:317
|
1897 |
+
msgid "Special use Template Tags"
|
1898 |
+
msgstr ""
|
1899 |
+
|
1900 |
+
#: my-calendar-help.php:321
|
1901 |
+
msgid "A unique ID for the current instance of an event."
|
1902 |
+
msgstr ""
|
1903 |
+
|
1904 |
+
#: my-calendar-help.php:324
|
1905 |
+
msgid "The ID for the event record associated with the current instance of an event."
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: my-calendar-help.php:334
|
1909 |
+
msgid "Get Plug-in Support"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: my-calendar-help.php:339
|
1913 |
+
msgid "My Calendar support requests can only be sent by administrators."
|
1914 |
+
msgstr ""
|
1915 |
+
|
1916 |
+
#: my-calendar-help.php:18 my-calendar-help.php:346
|
1917 |
+
msgid "Helpful Information"
|
1918 |
+
msgstr "Полезная информация"
|
1919 |
+
|
1920 |
+
#: my-calendar-help.php:349
|
1921 |
+
msgid "<strong>Uninstalling the plugin</strong>: Although the WordPress standard and expectation is for plug-ins to delete any custom database tables when they're uninstalled, My Calendar <em>does not do this</em>. This was a conscious decision on my part -- the data stored in your My Calendar tables is yours; with the sole exception of the \"General\" category, you added every piece of it yourself. As such, I feel it would be a major disservice to you to delete this information if you uninstall the plug-in. As a result, if you wish to get rid of the plug-in completely, you'll need to remove those tables yourself. All your My Calendar settings will be deleted, however."
|
1922 |
+
msgstr "<strong>Удаление плагина</strong>: Хотя по стандартам WordPress ожидается удаление всех пользовательских таблицы из базы данных, при деинсталяции плагина, My Calendar <em>не делает этого</em>. Это было сознательное решение с моей стороны — данные, хранящиеся в таблицах My Calendar ваши; за единственным исключением — категорией \"Общие \", вы добавляли каждый кусочек самостоятельно. Я предполагаю что, это будет крупный ущерб для вас если удалится эта информация, при удалении плагина. В результате, если вы хотите избавиться от плагина полностью, вы должны будете удалить эти таблицы самомтоятельно. Однако, все ваши настройки будут удалены."
|
1923 |
+
|
1924 |
+
#: my-calendar-help.php:352
|
1925 |
+
msgid "<strong>Donations</strong>: I appreciate anything you can give. $2 may not seem like much, but it can really add up when thousands of people are using the software. Please note that I am not a non-profit organization, and your gifts are not tax deductible. Thank you!"
|
1926 |
+
msgstr ""
|
1927 |
+
|
1928 |
+
#: my-calendar-install.php:246
|
1929 |
+
msgid "My Calendar Default Timezone"
|
1930 |
+
msgstr "Часовой пояс My Calendar по умолчанию "
|
1931 |
+
|
1932 |
+
#: my-calendar-install.php:291
|
1933 |
+
msgid "My Calendar Default Location"
|
1934 |
+
msgstr "Местоположение My Calendar по умолчанию "
|
1935 |
+
|
1936 |
+
#: my-calendar-locations.php:43
|
1937 |
+
msgid "Location added successfully"
|
1938 |
+
msgstr "Местоположение успешно добавлено"
|
1939 |
+
|
1940 |
+
#: my-calendar-locations.php:45
|
1941 |
+
msgid "Location could not be added to database"
|
1942 |
+
msgstr "Местоположение не может быть добавлено."
|
1943 |
+
|
1944 |
+
#: my-calendar-locations.php:51
|
1945 |
+
msgid "Location deleted successfully"
|
1946 |
+
msgstr "Местоположение успешно удалено"
|
1947 |
+
|
1948 |
+
#: my-calendar-locations.php:53
|
1949 |
+
msgid "Location could not be deleted"
|
1950 |
+
msgstr "Местоположение не может быть удалено."
|
1951 |
+
|
1952 |
+
#: my-calendar-locations.php:79
|
1953 |
+
msgid "Location could not be edited."
|
1954 |
+
msgstr "Местоположение не может быть отредактировано."
|
1955 |
+
|
1956 |
+
#: my-calendar-locations.php:81
|
1957 |
+
msgid "Location was not changed."
|
1958 |
+
msgstr "Местоположение не было изменено."
|
1959 |
+
|
1960 |
+
#: my-calendar-locations.php:83
|
1961 |
+
msgid "Location edited successfully"
|
1962 |
+
msgstr "Местоположение успешно отредактировано"
|
1963 |
+
|
1964 |
+
#: my-calendar-locations.php:104
|
1965 |
+
msgid "Add New Location"
|
1966 |
+
msgstr "Добавить новое местоположение"
|
1967 |
+
|
1968 |
+
#: my-calendar-locations.php:106
|
1969 |
+
msgid "Edit Location"
|
1970 |
+
msgstr "Редактировать местоположение"
|
1971 |
+
|
1972 |
+
#: my-calendar-locations.php:113
|
1973 |
+
msgid "Location Editor"
|
1974 |
+
msgstr "Редактор местоположений"
|
1975 |
+
|
1976 |
+
#: my-calendar-locations.php:202
|
1977 |
+
msgid "Website"
|
1978 |
+
msgstr ""
|
1979 |
+
|
1980 |
+
#: my-calendar-locations.php:207
|
1981 |
+
msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
|
1982 |
+
msgstr "Если вы поддерживаете GPS-координаты вашего местоположения, они будут использованы вместо адреса в обозначении вашего местоположения."
|
1983 |
+
|
1984 |
+
#: my-calendar-locations.php:215
|
1985 |
+
msgid "Add Location"
|
1986 |
+
msgstr "Добавить местоположение"
|
1987 |
+
|
1988 |
+
#: my-calendar-locations.php:223
|
1989 |
+
msgid "Add a New Location"
|
1990 |
+
msgstr ""
|
1991 |
+
|
1992 |
+
#: my-calendar-locations.php:228 my-calendar.php:329
|
1993 |
+
msgid "Manage Locations"
|
1994 |
+
msgstr "Управление местоположениями"
|
1995 |
+
|
1996 |
+
#: my-calendar-locations.php:289
|
1997 |
+
msgid "Location"
|
1998 |
+
msgstr "Местоположение"
|
1999 |
+
|
2000 |
+
#: my-calendar-locations.php:311
|
2001 |
+
msgid "There are no locations in the database yet!"
|
2002 |
+
msgstr "Базе не содержит мест! "
|
2003 |
+
|
2004 |
+
#: my-calendar-locations.php:315
|
2005 |
+
msgid "Please note: editing or deleting locations stored for re-use will have no effect on any event previously scheduled at that location. The location database exists purely as a shorthand method to enter frequently used locations into event records."
|
2006 |
+
msgstr "Пожалуйста, обратите внимание: редактирование или удаление, сохраненных для повторного использования, местоположений не повлияет на уже созданные события. База местоположений существует только для более удобного ввода часто используемых местоположений в записи события."
|
2007 |
+
|
2008 |
+
#: my-calendar-output.php:191 my-calendar-output.php:308
|
2009 |
+
msgid "Close"
|
2010 |
+
msgstr "Закрыть"
|
2011 |
+
|
2012 |
+
#: my-calendar-output.php:202
|
2013 |
+
msgid "(%s in your time zone)"
|
2014 |
+
msgstr ""
|
2015 |
+
|
2016 |
+
#: my-calendar-output.php:208
|
2017 |
+
msgid "Not Applicable"
|
2018 |
+
msgstr "Не доступно"
|
2019 |
+
|
2020 |
+
#: my-calendar-output.php:223
|
2021 |
+
msgid "Posted by"
|
2022 |
+
msgstr "Опубликовал"
|
2023 |
+
|
2024 |
+
#: my-calendar-output.php:231 my-calendar-templates.php:246
|
2025 |
+
msgid "Details about"
|
2026 |
+
msgstr ""
|
2027 |
+
|
2028 |
+
#: my-calendar-output.php:253 my-calendar-templates.php:193
|
2029 |
+
msgid "iCal"
|
2030 |
+
msgstr ""
|
2031 |
+
|
2032 |
+
#: my-calendar-output.php:288
|
2033 |
+
msgid "This class is part of a series. You must register for the first event in this series to attend."
|
2034 |
+
msgstr "Этот класс является частью серии. Вы должны зарегистрироваться на первое мероприятие в этой серии чтобы принять в нем участие."
|
2035 |
+
|
2036 |
+
#: my-calendar-output.php:293
|
2037 |
+
msgid "View full calendar"
|
2038 |
+
msgstr "Показывать полный календарь"
|
2039 |
+
|
2040 |
+
#: my-calendar-output.php:326
|
2041 |
+
msgid "Edit This Date"
|
2042 |
+
msgstr ""
|
2043 |
+
|
2044 |
+
#: my-calendar-output.php:327
|
2045 |
+
msgid "Edit All"
|
2046 |
+
msgstr ""
|
2047 |
+
|
2048 |
+
#: my-calendar-output.php:328
|
2049 |
+
msgid "Delete This Date"
|
2050 |
+
msgstr ""
|
2051 |
+
|
2052 |
+
#: my-calendar-output.php:329
|
2053 |
+
msgid "Delete All"
|
2054 |
+
msgstr ""
|
2055 |
+
|
2056 |
+
#: my-calendar-output.php:388
|
2057 |
+
msgid "Year"
|
2058 |
+
msgstr "Год"
|
2059 |
+
|
2060 |
+
#: my-calendar-output.php:416
|
2061 |
+
msgid "Go"
|
2062 |
+
msgstr "Пошел"
|
2063 |
+
|
2064 |
+
#: my-calendar-output.php:445
|
2065 |
+
msgid "Calendar: Print View"
|
2066 |
+
msgstr ""
|
2067 |
+
|
2068 |
+
#: my-calendar-output.php:460
|
2069 |
+
msgid "Return to site"
|
2070 |
+
msgstr ""
|
2071 |
+
|
2072 |
+
#: my-calendar-output.php:473
|
2073 |
+
msgid "View as Grid"
|
2074 |
+
msgstr "Показывать как сетку"
|
2075 |
+
|
2076 |
+
#: my-calendar-output.php:477
|
2077 |
+
msgid "View as List"
|
2078 |
+
msgstr "Показывать как список"
|
2079 |
+
|
2080 |
+
#: my-calendar-output.php:581
|
2081 |
+
msgid "<abbr title=\"Sunday\">Sun</abbr>"
|
2082 |
+
msgstr "<abbr title=\"Воскресенье\">Вс</abbr>"
|
2083 |
+
|
2084 |
+
#: my-calendar-output.php:582
|
2085 |
+
msgid "<abbr title=\"Monday\">Mon</abbr>"
|
2086 |
+
msgstr "<abbr title=\"Понедельник\">Пн</abbr>"
|
2087 |
+
|
2088 |
+
#: my-calendar-output.php:583
|
2089 |
+
msgid "<abbr title=\"Tuesday\">Tues</abbr>"
|
2090 |
+
msgstr "<abbr title=\"Вторник\">Вт</abbr>"
|
2091 |
+
|
2092 |
+
#: my-calendar-output.php:584
|
2093 |
+
msgid "<abbr title=\"Wednesday\">Wed</abbr>"
|
2094 |
+
msgstr "<abbr title=\"Среда\">Ср</abbr>"
|
2095 |
+
|
2096 |
+
#: my-calendar-output.php:585
|
2097 |
+
msgid "<abbr title=\"Thursday\">Thur</abbr>"
|
2098 |
+
msgstr "<abbr title=\"Четверг\">Чт</abbr>"
|
2099 |
+
|
2100 |
+
#: my-calendar-output.php:586
|
2101 |
+
msgid "<abbr title=\"Friday\">Fri</abbr>"
|
2102 |
+
msgstr "<abbr title=\"Пятница\">Пт</abbr>"
|
2103 |
+
|
2104 |
+
#: my-calendar-output.php:587
|
2105 |
+
msgid "<abbr title=\"Saturday\">Sat</abbr>"
|
2106 |
+
msgstr "<abbr title=\"Суббота\">Сб</abbr>"
|
2107 |
+
|
2108 |
+
#: my-calendar-output.php:592
|
2109 |
+
msgid "<abbr title=\"Sunday\">S</abbr>"
|
2110 |
+
msgstr "<abbr title=\"Воскресенье\">Вс</abbr>"
|
2111 |
+
|
2112 |
+
#: my-calendar-output.php:593
|
2113 |
+
msgid "<abbr title=\"Monday\">M</abbr>"
|
2114 |
+
msgstr "<abbr title=\"Понедельник\">Пн</abbr>"
|
2115 |
+
|
2116 |
+
#: my-calendar-output.php:594
|
2117 |
+
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
2118 |
+
msgstr "<abbr title=\"Вторник\">Вт</abbr>"
|
2119 |
+
|
2120 |
+
#: my-calendar-output.php:595
|
2121 |
+
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
2122 |
+
msgstr "<abbr title=\"Среда\">Ср</abbr>"
|
2123 |
+
|
2124 |
+
#: my-calendar-output.php:596
|
2125 |
+
msgid "<abbr title=\"Thursday\">T</abbr>"
|
2126 |
+
msgstr "<abbr title=\"Четверг\">Чт</abbr>"
|
2127 |
+
|
2128 |
+
#: my-calendar-output.php:597
|
2129 |
+
msgid "<abbr title=\"Friday\">F</abbr>"
|
2130 |
+
msgstr "<abbr title=\"Пятница\">Пт</abbr>"
|
2131 |
+
|
2132 |
+
#: my-calendar-output.php:598
|
2133 |
+
msgid "<abbr title=\"Saturday\">S</abbr>"
|
2134 |
+
msgstr "<abbr title=\"Суббота\">Сб</abbr>"
|
2135 |
+
|
2136 |
+
#: my-calendar-output.php:700
|
2137 |
+
msgid "Print View"
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: my-calendar-output.php:752
|
2141 |
+
msgid "No events scheduled for today!"
|
2142 |
+
msgstr ""
|
2143 |
+
|
2144 |
+
#: my-calendar-output.php:767
|
2145 |
+
msgid "and"
|
2146 |
+
msgstr "и"
|
2147 |
+
|
2148 |
+
#: my-calendar-output.php:784
|
2149 |
+
msgid "Events in"
|
2150 |
+
msgstr "События в"
|
2151 |
+
|
2152 |
+
#: my-calendar-output.php:536
|
2153 |
+
msgid " and %d other event"
|
2154 |
+
msgstr ""
|
2155 |
+
|
2156 |
+
#: my-calendar-output.php:538
|
2157 |
+
msgid " and %d other events"
|
2158 |
+
msgstr ""
|
2159 |
+
|
2160 |
+
#: my-calendar-output.php:817
|
2161 |
+
msgid "There are no events scheduled during this period."
|
2162 |
+
msgstr "Нет событий в течение этого периода."
|
2163 |
+
|
2164 |
+
#: my-calendar-output.php:920
|
2165 |
+
msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
|
2166 |
+
msgstr ""
|
2167 |
+
|
2168 |
+
#: my-calendar-output.php:948
|
2169 |
+
msgid "Category Key"
|
2170 |
+
msgstr "Легенда"
|
2171 |
+
|
2172 |
+
#: my-calendar-output.php:972
|
2173 |
+
msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
|
2174 |
+
msgstr "Подписаться на <abbr title=\"Really Simple Syndication\">RSS</abbr>-канал"
|
2175 |
+
|
2176 |
+
#: my-calendar-output.php:973
|
2177 |
+
msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
|
2178 |
+
msgstr "Загрузить как <abbr title=\"iCal Экспорт событий\">iCal</abbr>-файл"
|
2179 |
+
|
2180 |
+
#: my-calendar-output.php:998
|
2181 |
+
msgid "Next events »"
|
2182 |
+
msgstr ""
|
2183 |
+
|
2184 |
+
#: my-calendar-output.php:1024 my-calendar-output.php:1068
|
2185 |
+
msgid "Week of "
|
2186 |
+
msgstr ""
|
2187 |
+
|
2188 |
+
#: my-calendar-output.php:1042
|
2189 |
+
msgid "« Previous events"
|
2190 |
+
msgstr ""
|
2191 |
+
|
2192 |
+
#: my-calendar-output.php:1094
|
2193 |
+
msgid "(select to include)"
|
2194 |
+
msgstr "(выберите чтобы включить)"
|
2195 |
+
|
2196 |
+
#: my-calendar-output.php:1118 my-calendar-output.php:1121
|
2197 |
+
msgid "All Categories"
|
2198 |
+
msgstr ""
|
2199 |
+
|
2200 |
+
#: my-calendar-output.php:1119
|
2201 |
+
msgid "Categories"
|
2202 |
+
msgstr "Категории"
|
2203 |
+
|
2204 |
+
#: my-calendar-output.php:1140 my-calendar-output.php:1333
|
2205 |
+
msgid "Submit"
|
2206 |
+
msgstr "Отправить"
|
2207 |
+
|
2208 |
+
#: my-calendar-output.php:1274 my-calendar-output.php:1295
|
2209 |
+
msgid "Show all"
|
2210 |
+
msgstr "Показать все"
|
2211 |
+
|
2212 |
+
#: my-calendar-output.php:1293
|
2213 |
+
msgid "Show events in:"
|
2214 |
+
msgstr "Показывать события в:"
|
2215 |
+
|
2216 |
+
#: my-calendar-settings.php:58
|
2217 |
+
msgid "Categories imported successfully."
|
2218 |
+
msgstr "Категории успешно импортированы."
|
2219 |
+
|
2220 |
+
#: my-calendar-settings.php:58
|
2221 |
+
msgid "Categories not imported."
|
2222 |
+
msgstr "Категории не импортированы."
|
2223 |
+
|
2224 |
+
#: my-calendar-settings.php:59
|
2225 |
+
msgid "Events imported successfully."
|
2226 |
+
msgstr "События успешно импортированы."
|
2227 |
+
|
2228 |
+
#: my-calendar-settings.php:59
|
2229 |
+
msgid "Events not imported."
|
2230 |
+
msgstr "События не импортированы."
|
2231 |
+
|
2232 |
+
#: my-calendar-settings.php:103
|
2233 |
+
msgid "My Calendar Cache cleared"
|
2234 |
+
msgstr ""
|
2235 |
+
|
2236 |
+
#: my-calendar-settings.php:114
|
2237 |
+
msgid "My Calendar Management Settings saved"
|
2238 |
+
msgstr ""
|
2239 |
+
|
2240 |
+
#: my-calendar-settings.php:119 my-calendar-settings.php:768
|
2241 |
+
msgid "Add Events"
|
2242 |
+
msgstr ""
|
2243 |
+
|
2244 |
+
#: my-calendar-settings.php:120 my-calendar-settings.php:769
|
2245 |
+
msgid "Approve Events"
|
2246 |
+
msgstr ""
|
2247 |
+
|
2248 |
+
#: my-calendar-settings.php:122 my-calendar-settings.php:771
|
2249 |
+
msgid "Edit Categories"
|
2250 |
+
msgstr ""
|
2251 |
+
|
2252 |
+
#: my-calendar-settings.php:123 my-calendar-settings.php:772
|
2253 |
+
msgid "Edit Locations"
|
2254 |
+
msgstr ""
|
2255 |
+
|
2256 |
+
#: my-calendar-settings.php:124 my-calendar-settings.php:773
|
2257 |
+
msgid "Edit Styles"
|
2258 |
+
msgstr ""
|
2259 |
+
|
2260 |
+
#: my-calendar-settings.php:125 my-calendar-settings.php:774
|
2261 |
+
msgid "Edit Behaviors"
|
2262 |
+
msgstr ""
|
2263 |
+
|
2264 |
+
#: my-calendar-settings.php:126 my-calendar-settings.php:775
|
2265 |
+
msgid "Edit Templates"
|
2266 |
+
msgstr ""
|
2267 |
+
|
2268 |
+
#: my-calendar-settings.php:127 my-calendar-settings.php:776
|
2269 |
+
msgid "Edit Settings"
|
2270 |
+
msgstr ""
|
2271 |
+
|
2272 |
+
#: my-calendar-settings.php:128 my-calendar-settings.php:777
|
2273 |
+
msgid "View Help"
|
2274 |
+
msgstr ""
|
2275 |
+
|
2276 |
+
#: my-calendar-settings.php:142
|
2277 |
+
msgid "My Calendar Permissions Updated"
|
2278 |
+
msgstr ""
|
2279 |
+
|
2280 |
+
#: my-calendar-settings.php:186
|
2281 |
+
msgid "Output Settings saved"
|
2282 |
+
msgstr "Настройки вывода сохранены"
|
2283 |
+
|
2284 |
+
#: my-calendar-settings.php:212
|
2285 |
+
msgid "Input Settings saved"
|
2286 |
+
msgstr "Настройки ввода сохранены"
|
2287 |
+
|
2288 |
+
#: my-calendar-settings.php:220
|
2289 |
+
msgid "Multisite settings saved"
|
2290 |
+
msgstr ""
|
2291 |
+
|
2292 |
+
#: my-calendar-settings.php:248
|
2293 |
+
msgid "Custom text settings saved"
|
2294 |
+
msgstr "Настройки пользовательского текста сохранены"
|
2295 |
+
|
2296 |
+
#: my-calendar-settings.php:260
|
2297 |
+
msgid "Email notice settings saved"
|
2298 |
+
msgstr "Электронное сообщение сохранено"
|
2299 |
+
|
2300 |
+
#: my-calendar-settings.php:274
|
2301 |
+
msgid "User custom settings saved"
|
2302 |
+
msgstr "Пользовательские настройки сохранены"
|
2303 |
+
|
2304 |
+
#: my-calendar-settings.php:307
|
2305 |
+
msgid "My Calendar Options"
|
2306 |
+
msgstr "Настройки My Calendar"
|
2307 |
+
|
2308 |
+
#: my-calendar-settings.php:339
|
2309 |
+
msgid "My Calendar Settings"
|
2310 |
+
msgstr ""
|
2311 |
+
|
2312 |
+
#: my-calendar-settings.php:342
|
2313 |
+
msgid "Management"
|
2314 |
+
msgstr ""
|
2315 |
+
|
2316 |
+
#: my-calendar-settings.php:343
|
2317 |
+
msgid "Customizable Text"
|
2318 |
+
msgstr ""
|
2319 |
+
|
2320 |
+
#: my-calendar-settings.php:344
|
2321 |
+
msgid "Output"
|
2322 |
+
msgstr ""
|
2323 |
+
|
2324 |
+
#: my-calendar-settings.php:346
|
2325 |
+
msgid "Input"
|
2326 |
+
msgstr ""
|
2327 |
+
|
2328 |
+
#: my-calendar-settings.php:348
|
2329 |
+
msgid "Multi-site"
|
2330 |
+
msgstr ""
|
2331 |
+
|
2332 |
+
#: my-calendar-settings.php:350
|
2333 |
+
msgid "Permissions"
|
2334 |
+
msgstr ""
|
2335 |
+
|
2336 |
+
#: my-calendar-settings.php:351
|
2337 |
+
msgid "Email Notifications"
|
2338 |
+
msgstr ""
|
2339 |
+
|
2340 |
+
#: my-calendar-settings.php:352
|
2341 |
+
msgid "Individual Users"
|
2342 |
+
msgstr ""
|
2343 |
+
|
2344 |
+
#: my-calendar-settings.php:360
|
2345 |
+
msgid "Calendar Management Settings"
|
2346 |
+
msgstr "Настройки управления календаря"
|
2347 |
+
|
2348 |
+
#: my-calendar-settings.php:366
|
2349 |
+
msgid "Calendar Options: Management"
|
2350 |
+
msgstr "Настройки календаря: управление"
|
2351 |
+
|
2352 |
+
#: my-calendar-settings.php:368
|
2353 |
+
msgid "Get data (events, categories and locations) from a remote database."
|
2354 |
+
msgstr ""
|
2355 |
+
|
2356 |
+
#: my-calendar-settings.php:370
|
2357 |
+
msgid "Add this code to your theme's <code>functions.php</code> file:"
|
2358 |
+
msgstr ""
|
2359 |
+
|
2360 |
+
#: my-calendar-settings.php:378
|
2361 |
+
msgid "Enable approval options."
|
2362 |
+
msgstr "Включить опцию подтверждения."
|
2363 |
+
|
2364 |
+
#: my-calendar-settings.php:379
|
2365 |
+
msgid "Enable caching."
|
2366 |
+
msgstr ""
|
2367 |
+
|
2368 |
+
#: my-calendar-settings.php:379
|
2369 |
+
msgid "<em>Cannot use caching while accessing a remote database.</em>"
|
2370 |
+
msgstr ""
|
2371 |
+
|
2372 |
+
#: my-calendar-settings.php:381
|
2373 |
+
msgid "Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)"
|
2374 |
+
msgstr ""
|
2375 |
+
|
2376 |
+
#: my-calendar-settings.php:385
|
2377 |
+
msgid "Default Sort order for Admin Events List"
|
2378 |
+
msgstr "Порядок сортировки по умолчанию для администраторского списка событий"
|
2379 |
+
|
2380 |
+
#: my-calendar-settings.php:387
|
2381 |
+
msgid "Event ID"
|
2382 |
+
msgstr ""
|
2383 |
+
|
2384 |
+
#: my-calendar-settings.php:390
|
2385 |
+
msgid "Start Date"
|
2386 |
+
msgstr "Дата начала"
|
2387 |
+
|
2388 |
+
#: my-calendar-settings.php:401
|
2389 |
+
msgid "Currently editing my local calendar"
|
2390 |
+
msgstr ""
|
2391 |
+
|
2392 |
+
#: my-calendar-settings.php:404
|
2393 |
+
msgid "Currently editing the network calendar"
|
2394 |
+
msgstr ""
|
2395 |
+
|
2396 |
+
#: my-calendar-settings.php:408
|
2397 |
+
msgid "You are currently working in the primary site for this network; your local calendar is also the global table."
|
2398 |
+
msgstr ""
|
2399 |
+
|
2400 |
+
#: my-calendar-settings.php:416
|
2401 |
+
msgid "Save Management Settings"
|
2402 |
+
msgstr ""
|
2403 |
+
|
2404 |
+
#: my-calendar-settings.php:420
|
2405 |
+
msgid "My Calendar management settings are only available to administrators."
|
2406 |
+
msgstr ""
|
2407 |
+
|
2408 |
+
#: my-calendar-settings.php:428
|
2409 |
+
msgid "Calendar Text Settings"
|
2410 |
+
msgstr "Настройки текста календаря"
|
2411 |
+
|
2412 |
+
#: my-calendar-settings.php:433
|
2413 |
+
msgid "Calendar Options: Customizable Text Fields"
|
2414 |
+
msgstr "Настройки календаря: Настраиваемые текстовые поля"
|
2415 |
+
|
2416 |
+
#: my-calendar-settings.php:436
|
2417 |
+
msgid "Label for events without a set time"
|
2418 |
+
msgstr "Отметка для событий без определенного времени"
|
2419 |
+
|
2420 |
+
#: my-calendar-settings.php:439
|
2421 |
+
msgid "Previous events link"
|
2422 |
+
msgstr "Ссылка «предыдущие события»"
|
2423 |
+
|
2424 |
+
#: my-calendar-settings.php:439
|
2425 |
+
msgid "Previous Events"
|
2426 |
+
msgstr "Предыдущие события"
|
2427 |
+
|
2428 |
+
#: my-calendar-settings.php:439 my-calendar-settings.php:442
|
2429 |
+
msgid "Use <code>{date}</code> to display the appropriate date in navigation."
|
2430 |
+
msgstr ""
|
2431 |
+
|
2432 |
+
#: my-calendar-settings.php:442
|
2433 |
+
msgid "Next events link"
|
2434 |
+
msgstr "Ссылка «следующие события»"
|
2435 |
+
|
2436 |
+
#: my-calendar-settings.php:442
|
2437 |
+
msgid "Next Events"
|
2438 |
+
msgstr "Следующие события"
|
2439 |
+
|
2440 |
+
#: my-calendar-settings.php:445
|
2441 |
+
msgid "If events are open"
|
2442 |
+
msgstr "Если события открыты"
|
2443 |
+
|
2444 |
+
#: my-calendar-settings.php:445
|
2445 |
+
msgid "Registration is open"
|
2446 |
+
msgstr "Регистрация открыта"
|
2447 |
+
|
2448 |
+
#: my-calendar-settings.php:448
|
2449 |
+
msgid "If events are closed"
|
2450 |
+
msgstr "Если события закрыты"
|
2451 |
+
|
2452 |
+
#: my-calendar-settings.php:448
|
2453 |
+
msgid "Registration is closed"
|
2454 |
+
msgstr "Регистрация закрыта"
|
2455 |
+
|
2456 |
+
#: my-calendar-settings.php:451
|
2457 |
+
msgid "Week view caption:"
|
2458 |
+
msgstr ""
|
2459 |
+
|
2460 |
+
#: my-calendar-settings.php:454
|
2461 |
+
msgid "Extended caption:"
|
2462 |
+
msgstr ""
|
2463 |
+
|
2464 |
+
#: my-calendar-settings.php:454
|
2465 |
+
msgid "The calendar caption shows month and year in list and grid formats. This text is displayed after the month/year."
|
2466 |
+
msgstr ""
|
2467 |
+
|
2468 |
+
#: my-calendar-settings.php:472
|
2469 |
+
msgid "Save Custom Text Settings"
|
2470 |
+
msgstr "Сохранить настройки пользовательского текста"
|
2471 |
+
|
2472 |
+
#: my-calendar-settings.php:481
|
2473 |
+
msgid "Calendar Output Settings"
|
2474 |
+
msgstr "Настройки вывода календаря"
|
2475 |
+
|
2476 |
+
#: my-calendar-settings.php:485 my-calendar-settings.php:636
|
2477 |
+
msgid "Save Output Settings"
|
2478 |
+
msgstr "Сохранить настройки вывода"
|
2479 |
+
|
2480 |
+
#: my-calendar-settings.php:487
|
2481 |
+
msgid "Calendar Options: Customize the Output of your Calendar"
|
2482 |
+
msgstr "Настройки календаря: Настройте вывод вашего календаря"
|
2483 |
+
|
2484 |
+
#: my-calendar-settings.php:492
|
2485 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details links:"
|
2486 |
+
msgstr ""
|
2487 |
+
|
2488 |
+
#: my-calendar-settings.php:493
|
2489 |
+
msgid "Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode."
|
2490 |
+
msgstr ""
|
2491 |
+
|
2492 |
+
#: my-calendar-settings.php:496
|
2493 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's timeline links."
|
2494 |
+
msgstr ""
|
2495 |
+
|
2496 |
+
#: my-calendar-settings.php:497
|
2497 |
+
msgid "Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> shortcode."
|
2498 |
+
msgstr ""
|
2499 |
+
|
2500 |
+
#: my-calendar-settings.php:500
|
2501 |
+
msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar in-page anchors:"
|
2502 |
+
msgstr ""
|
2503 |
+
|
2504 |
+
#: my-calendar-settings.php:501
|
2505 |
+
msgid "Can be any Page or Post with the <code>[my_calendar]</code> shortcode using format selected below"
|
2506 |
+
msgstr ""
|
2507 |
+
|
2508 |
+
#: my-calendar-settings.php:505
|
2509 |
+
msgid "Open calendar links to event details URL"
|
2510 |
+
msgstr ""
|
2511 |
+
|
2512 |
+
#: my-calendar-settings.php:505
|
2513 |
+
msgid "Replaces pop-up in grid view."
|
2514 |
+
msgstr ""
|
2515 |
+
|
2516 |
+
#: my-calendar-settings.php:508
|
2517 |
+
msgid "Mini calendar widget date links to:"
|
2518 |
+
msgstr ""
|
2519 |
+
|
2520 |
+
#: my-calendar-settings.php:509
|
2521 |
+
msgid "jQuery pop-up view"
|
2522 |
+
msgstr ""
|
2523 |
+
|
2524 |
+
#: my-calendar-settings.php:510
|
2525 |
+
msgid "daily view page (above)"
|
2526 |
+
msgstr ""
|
2527 |
+
|
2528 |
+
#: my-calendar-settings.php:511
|
2529 |
+
msgid "in-page anchor on main calendar page (list)"
|
2530 |
+
msgstr ""
|
2531 |
+
|
2532 |
+
#: my-calendar-settings.php:512
|
2533 |
+
msgid "in-page anchor on main calendar page (grid)"
|
2534 |
+
msgstr ""
|
2535 |
+
|
2536 |
+
#: my-calendar-settings.php:514
|
2537 |
+
msgid "Replaces pop-up in mini calendar"
|
2538 |
+
msgstr ""
|
2539 |
+
|
2540 |
+
#: my-calendar-settings.php:656
|
2541 |
+
msgid "Time format"
|
2542 |
+
msgstr ""
|
2543 |
+
|
2544 |
+
#: my-calendar-settings.php:659
|
2545 |
+
msgid "Date in grid mode, week view"
|
2546 |
+
msgstr ""
|
2547 |
+
|
2548 |
+
#: my-calendar-settings.php:662
|
2549 |
+
msgid "Date Format in other views"
|
2550 |
+
msgstr ""
|
2551 |
+
|
2552 |
+
#: my-calendar-settings.php:665
|
2553 |
+
msgid "Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP <code>date()</code> function</a>. Save options to update sample output."
|
2554 |
+
msgstr ""
|
2555 |
+
|
2556 |
+
#: my-calendar-settings.php:518
|
2557 |
+
msgid "Show link to My Calendar RSS feed."
|
2558 |
+
msgstr "Показать ссылку на My Calendar RSS-канал."
|
2559 |
+
|
2560 |
+
#: my-calendar-settings.php:518
|
2561 |
+
msgid "RSS feed shows recently added events."
|
2562 |
+
msgstr ""
|
2563 |
+
|
2564 |
+
#: my-calendar-settings.php:521
|
2565 |
+
msgid "Show link to iCal format download."
|
2566 |
+
msgstr "Показывать ссылку на загрузку файла в iCal-формате."
|
2567 |
+
|
2568 |
+
#: my-calendar-settings.php:521
|
2569 |
+
msgid "iCal outputs events occurring in the current calendar month."
|
2570 |
+
msgstr ""
|
2571 |
+
|
2572 |
+
#: my-calendar-settings.php:525
|
2573 |
+
msgid "Show link to print-formatted view of calendar"
|
2574 |
+
msgstr ""
|
2575 |
+
|
2576 |
+
#: my-calendar-settings.php:532
|
2577 |
+
msgid "Grid Layout Options"
|
2578 |
+
msgstr ""
|
2579 |
+
|
2580 |
+
#: my-calendar-settings.php:535
|
2581 |
+
msgid "Show Weekends on Calendar"
|
2582 |
+
msgstr "Показывать выходные в календаре"
|
2583 |
+
|
2584 |
+
#: my-calendar-settings.php:538
|
2585 |
+
msgid "Switch to list view on mobile devices"
|
2586 |
+
msgstr ""
|
2587 |
+
|
2588 |
+
#: my-calendar-settings.php:545
|
2589 |
+
msgid "List Layout Options"
|
2590 |
+
msgstr ""
|
2591 |
+
|
2592 |
+
#: my-calendar-settings.php:548
|
2593 |
+
msgid "How many months of events to show at a time:"
|
2594 |
+
msgstr ""
|
2595 |
+
|
2596 |
+
#: my-calendar-settings.php:551
|
2597 |
+
msgid "Show the first event's title and the number of events that day next to the date."
|
2598 |
+
msgstr ""
|
2599 |
+
|
2600 |
+
#: my-calendar-settings.php:558
|
2601 |
+
msgid "Event Details Options"
|
2602 |
+
msgstr ""
|
2603 |
+
|
2604 |
+
#: my-calendar-settings.php:457
|
2605 |
+
msgid "Event title template"
|
2606 |
+
msgstr "Шаблон названия события"
|
2607 |
+
|
2608 |
+
#: my-calendar-settings.php:458 my-calendar-settings.php:468
|
2609 |
+
msgid "Templating Help"
|
2610 |
+
msgstr ""
|
2611 |
+
|
2612 |
+
#: my-calendar-settings.php:458 my-calendar-settings.php:468
|
2613 |
+
msgid "All template tags are available."
|
2614 |
+
msgstr ""
|
2615 |
+
|
2616 |
+
#: my-calendar-settings.php:461
|
2617 |
+
msgid "Event details link text"
|
2618 |
+
msgstr ""
|
2619 |
+
|
2620 |
+
#: my-calendar-settings.php:463
|
2621 |
+
msgid "Available tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
|
2622 |
+
msgstr ""
|
2623 |
+
|
2624 |
+
#: my-calendar-settings.php:466
|
2625 |
+
msgid "Event URL link text"
|
2626 |
+
msgstr ""
|
2627 |
+
|
2628 |
+
#: my-calendar-settings.php:570
|
2629 |
+
msgid "Show Link to Google Map"
|
2630 |
+
msgstr ""
|
2631 |
+
|
2632 |
+
#: my-calendar-settings.php:573
|
2633 |
+
msgid "Show Event Address"
|
2634 |
+
msgstr ""
|
2635 |
+
|
2636 |
+
#: my-calendar-settings.php:591
|
2637 |
+
msgid "Event links expire after event passes."
|
2638 |
+
msgstr ""
|
2639 |
+
|
2640 |
+
#: my-calendar-settings.php:594
|
2641 |
+
msgid "Show availability status"
|
2642 |
+
msgstr ""
|
2643 |
+
|
2644 |
+
#: my-calendar-settings.php:597
|
2645 |
+
msgid "Default usage of category colors."
|
2646 |
+
msgstr "Использование цветов категории по умолчанию."
|
2647 |
+
|
2648 |
+
#: my-calendar-settings.php:598
|
2649 |
+
msgid "Event titles are category colors."
|
2650 |
+
msgstr ""
|
2651 |
+
|
2652 |
+
#: my-calendar-settings.php:599
|
2653 |
+
msgid "Event titles have category color as background."
|
2654 |
+
msgstr ""
|
2655 |
+
|
2656 |
+
#: my-calendar-settings.php:608
|
2657 |
+
msgid "Default setting for event input: If a recurring event is scheduled for a date which doesn't exist (such as the 5th Wednesday in February), move it back one week."
|
2658 |
+
msgstr ""
|
2659 |
+
|
2660 |
+
#: my-calendar-settings.php:611
|
2661 |
+
msgid "Holiday Category"
|
2662 |
+
msgstr "Категория праздников"
|
2663 |
+
|
2664 |
+
#: my-calendar-settings.php:613
|
2665 |
+
msgid "None"
|
2666 |
+
msgstr ""
|
2667 |
+
|
2668 |
+
#: my-calendar-settings.php:629
|
2669 |
+
msgid "Default setting for event input: If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
|
2670 |
+
msgstr ""
|
2671 |
+
|
2672 |
+
#: my-calendar-settings.php:680
|
2673 |
+
msgid "Calendar Input Settings"
|
2674 |
+
msgstr "Настройки ввода календаря"
|
2675 |
+
|
2676 |
+
#: my-calendar-settings.php:685
|
2677 |
+
msgid "Select which input fields will be available when adding or editing events."
|
2678 |
+
msgstr "Выберите поля ввода, которые будут доступны при добавлении и редактировании событий."
|
2679 |
+
|
2680 |
+
#: my-calendar-settings.php:690
|
2681 |
+
msgid "Show Event Location Dropdown Menu"
|
2682 |
+
msgstr "Показать выпадающее меню местаположения"
|
2683 |
+
|
2684 |
+
#: my-calendar-settings.php:690
|
2685 |
+
msgid "Show Event Short Description field"
|
2686 |
+
msgstr "Показывать короткое описание события"
|
2687 |
+
|
2688 |
+
#: my-calendar-settings.php:690
|
2689 |
+
msgid "Show Event Description Field"
|
2690 |
+
msgstr "Показывать описание события"
|
2691 |
+
|
2692 |
+
#: my-calendar-settings.php:690
|
2693 |
+
msgid "Show Event Category field"
|
2694 |
+
msgstr "Показывать категорию события"
|
2695 |
+
|
2696 |
+
#: my-calendar-settings.php:690
|
2697 |
+
msgid "Show Event Link field"
|
2698 |
+
msgstr "Показывать адрес события"
|
2699 |
+
|
2700 |
+
#: my-calendar-settings.php:690
|
2701 |
+
msgid "Show Event Recurrence Options"
|
2702 |
+
msgstr "Показывать параметры повтора"
|
2703 |
+
|
2704 |
+
#: my-calendar-settings.php:690
|
2705 |
+
msgid "Use HTML Editor in Event Description Field"
|
2706 |
+
msgstr "Использовать HTML-редактор в поле описания события "
|
2707 |
+
|
2708 |
+
#: my-calendar-settings.php:703
|
2709 |
+
msgid "Administrators see all input options"
|
2710 |
+
msgstr "Администраторы видят все параметры ввода"
|
2711 |
+
|
2712 |
+
#: my-calendar-settings.php:708
|
2713 |
+
msgid "Save Input Settings"
|
2714 |
+
msgstr "Сохранить настройки ввода"
|
2715 |
+
|
2716 |
+
#: my-calendar-settings.php:718
|
2717 |
+
msgid "Multisite Settings (Network Administrators only)"
|
2718 |
+
msgstr ""
|
2719 |
+
|
2720 |
+
#: my-calendar-settings.php:720
|
2721 |
+
msgid "Multisite support is a beta feature - use with caution."
|
2722 |
+
msgstr ""
|
2723 |
+
|
2724 |
+
#: my-calendar-settings.php:725
|
2725 |
+
msgid "Settings for WP MultiSite configurations"
|
2726 |
+
msgstr ""
|
2727 |
+
|
2728 |
+
#: my-calendar-settings.php:726
|
2729 |
+
msgid "The central calendar is the calendar associated with the primary site in your WordPress Multisite network."
|
2730 |
+
msgstr ""
|
2731 |
+
|
2732 |
+
#: my-calendar-settings.php:728
|
2733 |
+
msgid "Site owners may only post to their local calendar"
|
2734 |
+
msgstr ""
|
2735 |
+
|
2736 |
+
#: my-calendar-settings.php:729
|
2737 |
+
msgid "Site owners may only post to the central calendar"
|
2738 |
+
msgstr ""
|
2739 |
+
|
2740 |
+
#: my-calendar-settings.php:730
|
2741 |
+
msgid "Site owners may manage either calendar"
|
2742 |
+
msgstr ""
|
2743 |
+
|
2744 |
+
#: my-calendar-settings.php:732
|
2745 |
+
msgid "Changes only effect input permissions. Public-facing calendars will be unchanged."
|
2746 |
+
msgstr ""
|
2747 |
+
|
2748 |
+
#: my-calendar-settings.php:734
|
2749 |
+
msgid "Sub-site calendars show events from their local calendar."
|
2750 |
+
msgstr ""
|
2751 |
+
|
2752 |
+
#: my-calendar-settings.php:735
|
2753 |
+
msgid "Sub-site calendars show events from the central calendar."
|
2754 |
+
msgstr ""
|
2755 |
+
|
2756 |
+
#: my-calendar-settings.php:739
|
2757 |
+
msgid "Save Multisite Settings"
|
2758 |
+
msgstr ""
|
2759 |
+
|
2760 |
+
#: my-calendar-settings.php:749
|
2761 |
+
msgid "My Calendar Permissions"
|
2762 |
+
msgstr ""
|
2763 |
+
|
2764 |
+
#: my-calendar-settings.php:756
|
2765 |
+
msgid "Calendar Options: Permissions"
|
2766 |
+
msgstr ""
|
2767 |
+
|
2768 |
+
#: my-calendar-settings.php:792
|
2769 |
+
msgid "Save Permissions"
|
2770 |
+
msgstr ""
|
2771 |
+
|
2772 |
+
#: my-calendar-settings.php:796
|
2773 |
+
msgid "My Calendar permission settings are only available to administrators."
|
2774 |
+
msgstr ""
|
2775 |
+
|
2776 |
+
#: my-calendar-settings.php:804
|
2777 |
+
msgid "Calendar Email Settings"
|
2778 |
+
msgstr "Настройки электропочты"
|
2779 |
+
|
2780 |
+
#: my-calendar-settings.php:809
|
2781 |
+
msgid "Calendar Options: Email Notifications"
|
2782 |
+
msgstr "Настройки календаря: электропочтовые уведомления"
|
2783 |
+
|
2784 |
+
#: my-calendar-settings.php:813
|
2785 |
+
msgid "Send Email Notifications when new events are scheduled or reserved."
|
2786 |
+
msgstr "Отправлять уведомления о новых запланированных или зарезервированных событиях."
|
2787 |
+
|
2788 |
+
#: my-calendar-settings.php:816
|
2789 |
+
msgid "Notification messages are sent to: "
|
2790 |
+
msgstr "Уведомление отправлено на: "
|
2791 |
+
|
2792 |
+
#: my-calendar-settings.php:819
|
2793 |
+
msgid "Email subject"
|
2794 |
+
msgstr "Тема письма"
|
2795 |
+
|
2796 |
+
#: my-calendar-settings.php:819
|
2797 |
+
msgid "New event Added"
|
2798 |
+
msgstr "Новое событие добавлено"
|
2799 |
+
|
2800 |
+
#: my-calendar-settings.php:822
|
2801 |
+
msgid "Message Body"
|
2802 |
+
msgstr "Сообщение"
|
2803 |
+
|
2804 |
+
#: my-calendar-settings.php:822
|
2805 |
+
msgid "New Event:"
|
2806 |
+
msgstr "Новое событие:"
|
2807 |
+
|
2808 |
+
#: my-calendar-settings.php:823
|
2809 |
+
msgid "Shortcode Help"
|
2810 |
+
msgstr "Помощь по «шорт-кодам»"
|
2811 |
+
|
2812 |
+
#: my-calendar-settings.php:823
|
2813 |
+
msgid "All template shortcodes are available."
|
2814 |
+
msgstr "Все шорткоды шаблона доступны."
|
2815 |
+
|
2816 |
+
#: my-calendar-settings.php:828
|
2817 |
+
msgid "Save Email Settings"
|
2818 |
+
msgstr "Сохранить настройки электропочты"
|
2819 |
+
|
2820 |
+
#: my-calendar-settings.php:837
|
2821 |
+
msgid "Calendar User Settings"
|
2822 |
+
msgstr "Пользовательские настройки календаря"
|
2823 |
+
|
2824 |
+
#: my-calendar-settings.php:845
|
2825 |
+
msgid "Settings which can be configured in registered user's accounts"
|
2826 |
+
msgstr "Настройки которые могут быть изменены в аккаунтах зарегистрированных пользователей"
|
2827 |
+
|
2828 |
+
#: my-calendar-settings.php:847
|
2829 |
+
msgid "Allow registered users to provide timezone or location presets in their user profiles."
|
2830 |
+
msgstr "Разрешить зарегистрированным пользователям предоставлять информацию о часовом поясе и местоположении в их профиле."
|
2831 |
+
|
2832 |
+
#: my-calendar-settings.php:859
|
2833 |
+
msgid "Timezone Settings"
|
2834 |
+
msgstr "Настройки часового пояся "
|
2835 |
+
|
2836 |
+
#: my-calendar-settings.php:860
|
2837 |
+
msgid "These settings provide registered users with the ability to select a time zone in their user profile. When they view your calendar, the times for events will display the time the event happens in their time zone as well as the entered value."
|
2838 |
+
msgstr "Эти настройки предоставляют возможность зарегистрированным пользователям выбирать часовой пояс в их пользовательских профилях. Когда они просматривают календарь, время событий будут отображаться с учетом выбранного часового пояса."
|
2839 |
+
|
2840 |
+
#: my-calendar-settings.php:862
|
2841 |
+
msgid "Enable Timezone"
|
2842 |
+
msgstr "Включить часовые пояса"
|
2843 |
+
|
2844 |
+
#: my-calendar-settings.php:865
|
2845 |
+
msgid "Select Timezone Label"
|
2846 |
+
msgstr "Выберите название часового пояса"
|
2847 |
+
|
2848 |
+
#: my-calendar-settings.php:868
|
2849 |
+
msgid "Timezone Options"
|
2850 |
+
msgstr "Настройки часового пояся"
|
2851 |
+
|
2852 |
+
#: my-calendar-settings.php:868 my-calendar-settings.php:892
|
2853 |
+
msgid "Value, Label; one per line"
|
2854 |
+
msgstr "Значение, название; одно на строку"
|
2855 |
+
|
2856 |
+
#: my-calendar-settings.php:880
|
2857 |
+
msgid "Location Settings"
|
2858 |
+
msgstr "Настройки местоположения"
|
2859 |
+
|
2860 |
+
#: my-calendar-settings.php:881
|
2861 |
+
msgid "These settings provide registered users with the ability to select a location in their user profile. When they view your calendar, their initial view will be limited to locations which include that location parameter. These values can also be used to generate custom location filtering options using the <code>my_calendar_locations</code> shortcode. It is not necessary to enable these settings for users to use the custom filtering options."
|
2862 |
+
msgstr ""
|
2863 |
+
|
2864 |
+
#: my-calendar-settings.php:883
|
2865 |
+
msgid "Enable Location"
|
2866 |
+
msgstr "Включить местоположение"
|
2867 |
+
|
2868 |
+
#: my-calendar-settings.php:886
|
2869 |
+
msgid "Use this location list as input control"
|
2870 |
+
msgstr ""
|
2871 |
+
|
2872 |
+
#: my-calendar-settings.php:886
|
2873 |
+
msgid "The normal text entry for this location type will be replaced by a drop down containing these choices."
|
2874 |
+
msgstr ""
|
2875 |
+
|
2876 |
+
#: my-calendar-settings.php:889
|
2877 |
+
msgid "Select Location Label"
|
2878 |
+
msgstr "Выберите название места"
|
2879 |
+
|
2880 |
+
#: my-calendar-settings.php:892
|
2881 |
+
msgid "Location Options"
|
2882 |
+
msgstr "Редактор мест"
|
2883 |
+
|
2884 |
+
#: my-calendar-settings.php:902
|
2885 |
+
msgid "Location Type"
|
2886 |
+
msgstr "Тип места"
|
2887 |
+
|
2888 |
+
#: my-calendar-settings.php:915
|
2889 |
+
msgid "Save User Settings"
|
2890 |
+
msgstr "Сохранить пользовательские настройки"
|
2891 |
+
|
2892 |
+
#: my-calendar-settings.php:919
|
2893 |
+
msgid "Only users with the ability to edit user accounts may modify user settings."
|
2894 |
+
msgstr ""
|
2895 |
+
|
2896 |
+
#: my-calendar-styles.php:86
|
2897 |
+
msgid "The stylesheet has been updated."
|
2898 |
+
msgstr "Таблица стилей была обновлена."
|
2899 |
+
|
2900 |
+
#: my-calendar-styles.php:86
|
2901 |
+
msgid "Write Error! Please verify write permissions on the style file."
|
2902 |
+
msgstr "Ошибка записи! Пожалуйста проверьте разрешения на запись файла стиля."
|
2903 |
+
|
2904 |
+
#: my-calendar-styles.php:100
|
2905 |
+
msgid "Stylesheet reset to default."
|
2906 |
+
msgstr "Сбросить таблицу стилей на значения по умолчанию."
|
2907 |
+
|
2908 |
+
#: my-calendar-styles.php:103
|
2909 |
+
msgid "Style Settings Saved"
|
2910 |
+
msgstr "Настройки стиля сохранены"
|
2911 |
+
|
2912 |
+
#: my-calendar-styles.php:112
|
2913 |
+
msgid "New theme selected."
|
2914 |
+
msgstr "Новая тема выбрана."
|
2915 |
+
|
2916 |
+
#: my-calendar-styles.php:127
|
2917 |
+
msgid "Sorry. The file you are looking for doesn't appear to exist. Please check your file name and location!"
|
2918 |
+
msgstr "Извините. Файл, который вы ищете, кажется, не существует. Проверьте имя файла и место!"
|
2919 |
+
|
2920 |
+
#: my-calendar-styles.php:135
|
2921 |
+
msgid "My Calendar Styles"
|
2922 |
+
msgstr "Стили My Calendar"
|
2923 |
+
|
2924 |
+
#: my-calendar-styles.php:141
|
2925 |
+
msgid "Calendar Style Settings"
|
2926 |
+
msgstr "Настройки стиля календаря"
|
2927 |
+
|
2928 |
+
#: my-calendar-styles.php:149
|
2929 |
+
msgid "Select My Calendar Theme"
|
2930 |
+
msgstr "Выберите тему для My Calendar"
|
2931 |
+
|
2932 |
+
#: my-calendar-styles.php:157
|
2933 |
+
msgid "Your Custom Stylesheets"
|
2934 |
+
msgstr "Ваши пользовательские таблицы стилей"
|
2935 |
+
|
2936 |
+
#: my-calendar-styles.php:166
|
2937 |
+
msgid "Installed Stylesheets"
|
2938 |
+
msgstr "Установленные таблицы стилей"
|
2939 |
+
|
2940 |
+
#: my-calendar-styles.php:174
|
2941 |
+
msgid "Choose Style"
|
2942 |
+
msgstr "Выберите стиль"
|
2943 |
+
|
2944 |
+
#: my-calendar-styles.php:187
|
2945 |
+
msgid "My Calendar was unable to update your CSS files during the upgrade. Please check your file permissions if you wish to edit your My Calendar styles. Your previously stored styles are below. This message and these styles will be deleted from the database when you successfully update your stylesheet."
|
2946 |
+
msgstr "My Calendar не смог обновить CSS файлы во время обновления. Проверьте права доступа к файлу, если вы хотите редактировать стили My Calendar. Ваши ранее сохраненные стили ниже. Это сообщение и эти стили будут удалены из базы данных, когда вы обновите ваш стиль."
|
2947 |
+
|
2948 |
+
#: my-calendar-styles.php:195
|
2949 |
+
msgid "CSS Style Options"
|
2950 |
+
msgstr "Настройки CSS-стиля"
|
2951 |
+
|
2952 |
+
#: my-calendar-styles.php:200
|
2953 |
+
msgid "Restore My Calendar stylesheet"
|
2954 |
+
msgstr ""
|
2955 |
+
|
2956 |
+
#: my-calendar-styles.php:200
|
2957 |
+
msgid "Disable My Calendar Stylesheet"
|
2958 |
+
msgstr "Выключить таблицу стилей My Calendar"
|
2959 |
+
|
2960 |
+
#: my-calendar-styles.php:203
|
2961 |
+
msgid "Edit the stylesheet for My Calendar"
|
2962 |
+
msgstr "Редактировать таблицу стилей для My Calendar"
|
2963 |
+
|
2964 |
+
#: my-calendar-styles.php:217
|
2965 |
+
msgid "Comparing Your Style with latest installed version of My Calendar"
|
2966 |
+
msgstr ""
|
2967 |
+
|
2968 |
+
#: my-calendar-styles.php:221
|
2969 |
+
msgid "There have been updates to the stylesheet."
|
2970 |
+
msgstr ""
|
2971 |
+
|
2972 |
+
#: my-calendar-styles.php:221
|
2973 |
+
msgid "Compare Your Stylesheet with latest installed version of My Calendar."
|
2974 |
+
msgstr ""
|
2975 |
+
|
2976 |
+
#: my-calendar-styles.php:225
|
2977 |
+
msgid "Your stylesheet matches that included with My Calendar."
|
2978 |
+
msgstr ""
|
2979 |
+
|
2980 |
+
#: my-calendar-styles.php:234
|
2981 |
+
msgid "Resetting your stylesheet will set your stylesheet to the version of that style currently distributed with the plug-in."
|
2982 |
+
msgstr ""
|
2983 |
+
|
2984 |
+
#: my-calendar-templates.php:72
|
2985 |
+
msgid "Map<span> to %s</span>"
|
2986 |
+
msgstr ""
|
2987 |
+
|
2988 |
+
#: my-calendar-templates.php:93 my-calendar-templates.php:147
|
2989 |
+
msgid "Visit web site<span>: %s</span>"
|
2990 |
+
msgstr ""
|
2991 |
+
|
2992 |
+
#: my-calendar-templates.php:156
|
2993 |
+
msgid "Date of Month (the %s of each month)"
|
2994 |
+
msgstr ""
|
2995 |
+
|
2996 |
+
#: my-calendar-templates.php:157
|
2997 |
+
msgid "Day of Month (the %s %s of each month)"
|
2998 |
+
msgstr ""
|
2999 |
+
|
3000 |
+
#: my-calendar-templating.php:19
|
3001 |
+
msgid "Grid Output Template saved"
|
3002 |
+
msgstr ""
|
3003 |
+
|
3004 |
+
#: my-calendar-templating.php:43
|
3005 |
+
msgid "List Output Template saved"
|
3006 |
+
msgstr ""
|
3007 |
+
|
3008 |
+
#: my-calendar-templating.php:54
|
3009 |
+
msgid "Mini Output Template saved"
|
3010 |
+
msgstr ""
|
3011 |
+
|
3012 |
+
#: my-calendar-templating.php:65
|
3013 |
+
msgid "Event Details Template saved"
|
3014 |
+
msgstr ""
|
3015 |
+
|
3016 |
+
#: my-calendar-templating.php:83
|
3017 |
+
msgid "My Calendar Information Templates"
|
3018 |
+
msgstr ""
|
3019 |
+
|
3020 |
+
#: my-calendar-templating.php:88
|
3021 |
+
msgid "Advanced users may customize the HTML template for each event. This page lets you create a customized view of your events in each context. All available template tags are documented on the Help page. These default templates are based on the default views with all output enabled. <strong>Custom templates will override any other output rules in your settings.</strong>"
|
3022 |
+
msgstr ""
|
3023 |
+
|
3024 |
+
#: my-calendar-templating.php:88
|
3025 |
+
msgid "Templates Help"
|
3026 |
+
msgstr ""
|
3027 |
+
|
3028 |
+
#: my-calendar-templating.php:93
|
3029 |
+
msgid "My Calendar: Grid Event Template"
|
3030 |
+
msgstr ""
|
3031 |
+
|
3032 |
+
#: my-calendar-templating.php:98
|
3033 |
+
msgid "Use this grid event template"
|
3034 |
+
msgstr ""
|
3035 |
+
|
3036 |
+
#: my-calendar-templating.php:101
|
3037 |
+
msgid "Your custom template for events in the calendar grid output."
|
3038 |
+
msgstr ""
|
3039 |
+
|
3040 |
+
#: my-calendar-templating.php:104
|
3041 |
+
msgid "Save Grid Template"
|
3042 |
+
msgstr ""
|
3043 |
+
|
3044 |
+
#: my-calendar-templating.php:113
|
3045 |
+
msgid "My Calendar: List Event Template"
|
3046 |
+
msgstr ""
|
3047 |
+
|
3048 |
+
#: my-calendar-templating.php:118
|
3049 |
+
msgid "Use this list event template"
|
3050 |
+
msgstr ""
|
3051 |
+
|
3052 |
+
#: my-calendar-templating.php:121
|
3053 |
+
msgid "Your custom template for events in calendar list output."
|
3054 |
+
msgstr ""
|
3055 |
+
|
3056 |
+
#: my-calendar-templating.php:124
|
3057 |
+
msgid "Save List Template"
|
3058 |
+
msgstr ""
|
3059 |
+
|
3060 |
+
#: my-calendar-templating.php:133
|
3061 |
+
msgid "My Calendar: Mini Calendar Template"
|
3062 |
+
msgstr ""
|
3063 |
+
|
3064 |
+
#: my-calendar-templating.php:138
|
3065 |
+
msgid "Use this mini event template"
|
3066 |
+
msgstr ""
|
3067 |
+
|
3068 |
+
#: my-calendar-templating.php:141
|
3069 |
+
msgid "Your custom template for events in sidebar/mini calendar output."
|
3070 |
+
msgstr ""
|
3071 |
+
|
3072 |
+
#: my-calendar-templating.php:144
|
3073 |
+
msgid "Save Mini Template"
|
3074 |
+
msgstr ""
|
3075 |
+
|
3076 |
+
#: my-calendar-templating.php:153
|
3077 |
+
msgid "My Calendar: Event Details Page Template"
|
3078 |
+
msgstr ""
|
3079 |
+
|
3080 |
+
#: my-calendar-templating.php:158
|
3081 |
+
msgid "Use this details template"
|
3082 |
+
msgstr ""
|
3083 |
+
|
3084 |
+
#: my-calendar-templating.php:161
|
3085 |
+
msgid "Your custom template for events on the event details page."
|
3086 |
+
msgstr ""
|
3087 |
+
|
3088 |
+
#: my-calendar-templating.php:164
|
3089 |
+
msgid "Save Details Template"
|
3090 |
+
msgstr ""
|
3091 |
+
|
3092 |
+
#: my-calendar-upgrade-db.php:25 my-calendar-upgrade-db.php:33
|
3093 |
+
msgid "The My Calendar database needs to be updated."
|
3094 |
+
msgstr "База данных My Calendar нуждается в обновлении."
|
3095 |
+
|
3096 |
+
#: my-calendar-upgrade-db.php:26 my-calendar-upgrade-db.php:46
|
3097 |
+
msgid "Update now"
|
3098 |
+
msgstr "Оновить сейчас"
|
3099 |
+
|
3100 |
+
#: my-calendar-upgrade-db.php:33
|
3101 |
+
msgid "Update now."
|
3102 |
+
msgstr ""
|
3103 |
+
|
3104 |
+
#: my-calendar-upgrade-db.php:45
|
3105 |
+
msgid "You haven't entered any events, so My Calendar can't tell whether your database is up to date. If you can't add events, upgrade your database!"
|
3106 |
+
msgstr "Вы не ввели каких либо событий, т. е. My Calendar не может сказать является ли база данных в актуальном состоянии. Если вы не можете добавлять события, обновить базу данных!"
|
3107 |
+
|
3108 |
+
#: my-calendar-upgrade-db.php:12
|
3109 |
+
msgid "My Calendar Database is updated."
|
3110 |
+
msgstr "Стили My Calendar"
|
3111 |
+
|
3112 |
+
#: my-calendar-user.php:36
|
3113 |
+
msgid "My Calendar User Settings"
|
3114 |
+
msgstr "Настройки календаря"
|
3115 |
+
|
3116 |
+
#: my-calendar-widgets.php:5
|
3117 |
+
msgid "My Calendar: Today's Events"
|
3118 |
+
msgstr "My Calendar: События на сегодня"
|
3119 |
+
|
3120 |
+
#: my-calendar-widgets.php:51 my-calendar-widgets.php:160
|
3121 |
+
msgid "Template"
|
3122 |
+
msgstr "Шаблон"
|
3123 |
+
|
3124 |
+
#: my-calendar-widgets.php:54
|
3125 |
+
msgid "Add calendar URL to use this option."
|
3126 |
+
msgstr "Добавьте URL календаря чтобы использовать эту опцию."
|
3127 |
+
|
3128 |
+
#: my-calendar-widgets.php:66
|
3129 |
+
msgid "Show this text if there are no events today:"
|
3130 |
+
msgstr "Показывать этот текст если на сегодня нет событий:"
|
3131 |
+
|
3132 |
+
#: my-calendar-widgets.php:70 my-calendar-widgets.php:204
|
3133 |
+
#: my-calendar-widgets.php:629
|
3134 |
+
msgid "Category or categories to display:"
|
3135 |
+
msgstr "Категория или категории для показа:"
|
3136 |
+
|
3137 |
+
#: my-calendar-widgets.php:102
|
3138 |
+
msgid "My Calendar: Upcoming Events"
|
3139 |
+
msgstr "My Calendar: Грядущие события"
|
3140 |
+
|
3141 |
+
#: my-calendar-widgets.php:164
|
3142 |
+
msgid "Widget Options"
|
3143 |
+
msgstr "Настройки виджета"
|
3144 |
+
|
3145 |
+
#: my-calendar-widgets.php:178
|
3146 |
+
msgid "Display upcoming events by:"
|
3147 |
+
msgstr "Показывать грядущие события по: "
|
3148 |
+
|
3149 |
+
#: my-calendar-widgets.php:179
|
3150 |
+
msgid "Events (e.g. 2 past, 3 future)"
|
3151 |
+
msgstr "События (т.е. 2 прошедших, 3 будущих)"
|
3152 |
+
|
3153 |
+
#: my-calendar-widgets.php:180
|
3154 |
+
msgid "Dates (e.g. 4 days past, 5 forward)"
|
3155 |
+
msgstr "Даты (т.е. 4 прошедших дня, 5 будущих)"
|
3156 |
+
|
3157 |
+
#: my-calendar-widgets.php:184
|
3158 |
+
msgid "Skip the first <em>n</em> events"
|
3159 |
+
msgstr ""
|
3160 |
+
|
3161 |
+
#: my-calendar-widgets.php:187
|
3162 |
+
msgid "Events sort order:"
|
3163 |
+
msgstr "Порядок сортировки событийЖ"
|
3164 |
+
|
3165 |
+
#: my-calendar-widgets.php:188
|
3166 |
+
msgid "Ascending (near to far)"
|
3167 |
+
msgstr "Восходящий (от ближайшего к дальнейшему)"
|
3168 |
+
|
3169 |
+
#: my-calendar-widgets.php:189
|
3170 |
+
msgid "Descending (far to near)"
|
3171 |
+
msgstr "Низходящий (от дальнейшего к ближайшему)"
|
3172 |
+
|
3173 |
+
#: my-calendar-widgets.php:197
|
3174 |
+
msgid "Include today's events"
|
3175 |
+
msgstr ""
|
3176 |
+
|
3177 |
+
#: my-calendar-widgets.php:200
|
3178 |
+
msgid "Show this text if there are no events meeting your criteria:"
|
3179 |
+
msgstr "Показывать этот текст если нет событий отвечающих вашим критериям:"
|
3180 |
+
|
3181 |
+
#: my-calendar-widgets.php:575
|
3182 |
+
msgid "My Calendar: Mini Calendar"
|
3183 |
+
msgstr "My Calendar: Вид мини-календаря"
|
3184 |
+
|
3185 |
+
#: my-calendar-widgets.php:599
|
3186 |
+
msgid "Calendar"
|
3187 |
+
msgstr "Календарь"
|
3188 |
+
|
3189 |
+
#: my-calendar-widgets.php:633
|
3190 |
+
msgid "Show Next/Previous Navigation:"
|
3191 |
+
msgstr "Показывать навигацию вперед/назад:"
|
3192 |
+
|
3193 |
+
#: my-calendar-widgets.php:645
|
3194 |
+
msgid "Show Category Key:"
|
3195 |
+
msgstr "Показывать легенду:"
|
3196 |
+
|
3197 |
+
#: my-calendar-widgets.php:651
|
3198 |
+
msgid "Mini-Calendar Timespan:"
|
3199 |
+
msgstr ""
|
3200 |
+
|
3201 |
+
#: my-calendar.php:131
|
3202 |
+
msgid "Support This Plug-in"
|
3203 |
+
msgstr ""
|
3204 |
+
|
3205 |
+
#: my-calendar.php:133
|
3206 |
+
msgid "Help me help you:"
|
3207 |
+
msgstr ""
|
3208 |
+
|
3209 |
+
#: my-calendar.php:133
|
3210 |
+
msgid "Buy the My Calendar User's Guide"
|
3211 |
+
msgstr ""
|
3212 |
+
|
3213 |
+
#: my-calendar.php:134
|
3214 |
+
msgid "<strong>Or make a donation today!</strong> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
|
3215 |
+
msgstr ""
|
3216 |
+
|
3217 |
+
#: my-calendar.php:139 my-calendar.php:142
|
3218 |
+
msgid "Make a Donation"
|
3219 |
+
msgstr "Сделать пожертвование"
|
3220 |
+
|
3221 |
+
#: my-calendar.php:150
|
3222 |
+
msgid "Get Help"
|
3223 |
+
msgstr ""
|
3224 |
+
|
3225 |
+
#: my-calendar.php:154
|
3226 |
+
msgid "Get Support"
|
3227 |
+
msgstr "Получить поддержку"
|
3228 |
+
|
3229 |
+
#: my-calendar-help.php:10 my-calendar.php:155 my-calendar.php:335
|
3230 |
+
msgid "My Calendar Help"
|
3231 |
+
msgstr "Помощь My Calendar"
|
3232 |
+
|
3233 |
+
#: my-calendar.php:156
|
3234 |
+
msgid "Check out my other plug-ins"
|
3235 |
+
msgstr ""
|
3236 |
+
|
3237 |
+
#: my-calendar.php:157
|
3238 |
+
msgid "Rate this plug-in 5 stars!"
|
3239 |
+
msgstr ""
|
3240 |
+
|
3241 |
+
#: my-calendar.php:183
|
3242 |
+
msgid "Title of the event."
|
3243 |
+
msgstr ""
|
3244 |
+
|
3245 |
+
#: my-calendar.php:186
|
3246 |
+
msgid "Title of the event as a link if a URL is present, or the title alone if not."
|
3247 |
+
msgstr ""
|
3248 |
+
|
3249 |
+
#: my-calendar.php:189
|
3250 |
+
msgid "Start time for the event."
|
3251 |
+
msgstr ""
|
3252 |
+
|
3253 |
+
#: my-calendar.php:192
|
3254 |
+
msgid "Event times adjusted to the current user's time zone if set."
|
3255 |
+
msgstr ""
|
3256 |
+
|
3257 |
+
#: my-calendar.php:195
|
3258 |
+
msgid "Date on which the event begins."
|
3259 |
+
msgstr ""
|
3260 |
+
|
3261 |
+
#: my-calendar.php:198
|
3262 |
+
msgid "Date on which the event ends."
|
3263 |
+
msgstr ""
|
3264 |
+
|
3265 |
+
#: my-calendar.php:201
|
3266 |
+
msgid "Time at which the event ends."
|
3267 |
+
msgstr ""
|
3268 |
+
|
3269 |
+
#: my-calendar.php:204
|
3270 |
+
msgid "Beginning date to end date; excludes end date if same as beginning."
|
3271 |
+
msgstr ""
|
3272 |
+
|
3273 |
+
#: my-calendar.php:207
|
3274 |
+
msgid "Multi-day events: an unordered list of dates/times. Otherwise, beginning date/time."
|
3275 |
+
msgstr ""
|
3276 |
+
|
3277 |
+
#: my-calendar.php:210
|
3278 |
+
msgid "Author who posted the event."
|
3279 |
+
msgstr ""
|
3280 |
+
|
3281 |
+
#: my-calendar.php:213
|
3282 |
+
msgid "Name of the assigned host for the event."
|
3283 |
+
msgstr ""
|
3284 |
+
|
3285 |
+
#: my-calendar.php:216
|
3286 |
+
msgid "Email for the person assigned as host."
|
3287 |
+
msgstr ""
|
3288 |
+
|
3289 |
+
#: my-calendar.php:219
|
3290 |
+
msgid "Short event description."
|
3291 |
+
msgstr ""
|
3292 |
+
|
3293 |
+
#: my-calendar.php:222
|
3294 |
+
msgid "Description of the event."
|
3295 |
+
msgstr ""
|
3296 |
+
|
3297 |
+
#: my-calendar.php:228
|
3298 |
+
msgid "URL provided for the event."
|
3299 |
+
msgstr ""
|
3300 |
+
|
3301 |
+
#: my-calendar.php:231
|
3302 |
+
msgid "Link to an auto-generated page containing information about the event."
|
3303 |
+
msgstr ""
|
3304 |
+
|
3305 |
+
#: my-calendar.php:234
|
3306 |
+
msgid "Whether event is currently open for registration."
|
3307 |
+
msgstr ""
|
3308 |
+
|
3309 |
+
#: my-calendar.php:237
|
3310 |
+
msgid "Current status of event: either \"Published\" or \"Reserved.\""
|
3311 |
+
msgstr ""
|
3312 |
+
|
3313 |
+
#: my-calendar.php:243
|
3314 |
+
msgid "Name of the location of the event."
|
3315 |
+
msgstr ""
|
3316 |
+
|
3317 |
+
#: my-calendar.php:246
|
3318 |
+
msgid "First line of the site address."
|
3319 |
+
msgstr ""
|
3320 |
+
|
3321 |
+
#: my-calendar.php:249
|
3322 |
+
msgid "Second line of the site address."
|
3323 |
+
msgstr ""
|
3324 |
+
|
3325 |
+
#: my-calendar.php:252
|
3326 |
+
msgid "City."
|
3327 |
+
msgstr ""
|
3328 |
+
|
3329 |
+
#: my-calendar.php:255
|
3330 |
+
msgid "State."
|
3331 |
+
msgstr ""
|
3332 |
+
|
3333 |
+
#: my-calendar.php:258
|
3334 |
+
msgid "Postal code/zip code."
|
3335 |
+
msgstr ""
|
3336 |
+
|
3337 |
+
#: my-calendar.php:261
|
3338 |
+
msgid "Custom region."
|
3339 |
+
msgstr ""
|
3340 |
+
|
3341 |
+
#: my-calendar.php:264
|
3342 |
+
msgid "Country for the event location."
|
3343 |
+
msgstr ""
|
3344 |
+
|
3345 |
+
#: my-calendar.php:267
|
3346 |
+
msgid "Output the URL for the location."
|
3347 |
+
msgstr ""
|
3348 |
+
|
3349 |
+
#: my-calendar.php:270
|
3350 |
+
msgid "Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
|
3351 |
+
msgstr ""
|
3352 |
+
|
3353 |
+
#: my-calendar.php:273
|
3354 |
+
msgid "Link to Google Map to the event, if address information is available."
|
3355 |
+
msgstr ""
|
3356 |
+
|
3357 |
+
#: my-calendar.php:279
|
3358 |
+
msgid "Name of the category of the event."
|
3359 |
+
msgstr ""
|
3360 |
+
|
3361 |
+
#: my-calendar.php:282
|
3362 |
+
msgid "URL for the event's category icon."
|
3363 |
+
msgstr ""
|
3364 |
+
|
3365 |
+
#: my-calendar.php:285
|
3366 |
+
msgid "Hex code for the event's category color."
|
3367 |
+
msgstr ""
|
3368 |
+
|
3369 |
+
#: my-calendar.php:288
|
3370 |
+
msgid "ID of the category of the event."
|
3371 |
+
msgstr ""
|
3372 |
+
|
3373 |
+
#: my-calendar.php:308 my-calendar.php:310 my-calendar.php:315
|
3374 |
+
#: my-calendar.php:317
|
3375 |
+
msgid "My Calendar"
|
3376 |
+
msgstr "My Calendar"
|
3377 |
+
|
3378 |
+
#: my-calendar.php:326
|
3379 |
+
msgid "Add/Edit Events"
|
3380 |
+
msgstr "Добавить / Редактировать события"
|
3381 |
+
|
3382 |
+
#: my-calendar.php:332
|
3383 |
+
msgid "Style Editor"
|
3384 |
+
msgstr "Редактор стиля"
|
3385 |
+
|
3386 |
+
#: my-calendar.php:333
|
3387 |
+
msgid "Behavior Editor"
|
3388 |
+
msgstr "Редактор представлений"
|
3389 |
+
|
3390 |
+
#: my-calendar.php:334
|
3391 |
+
msgid "Template Editor"
|
3392 |
+
msgstr ""
|
3393 |
+
|
3394 |
+
msgid "http://www.joedolson.com/articles/my-calendar/"
|
3395 |
+
msgstr ""
|
3396 |
+
|
3397 |
+
msgid "Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets."
|
3398 |
+
msgstr ""
|
3399 |
+
|
3400 |
+
msgid "Joseph C Dolson"
|
3401 |
+
msgstr ""
|
3402 |
+
|
3403 |
+
msgid "http://www.joedolson.com"
|
3404 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mc-styles.css
CHANGED
@@ -35,10 +35,11 @@ ul.links li {float: left;margin: 0 5px 10px;font-size: .9em;}
|
|
35 |
#my-calendar .apply .warning {background: #ffe;color: #a00;padding: 3px;border: 1px solid #333;}
|
36 |
#my-calendar .break ul {padding: 10px 10px 0;margin-right: 180px;}
|
37 |
#my-calendar .columns, .jd-my-calendar .columns {-moz-column-count: 3;-moz-column-gap: 20px;-webkit-column-count: 3;-webkit-column-gap: 20px;column-count: 3;column-gap: 20px;}
|
|
|
38 |
.jd-my-calendar .event_image img { max-width: 480px; }
|
39 |
.event_image img {margin-top: 2px;}
|
40 |
.mc_support {font-family:'Courier New';background:#fff;padding:5px;}
|
41 |
-
.jd-my-calendar .button-primary { position: absolute; top:
|
42 |
.jd-my-calendar .button-primary.group { top: -40px; }
|
43 |
.template-editor, .style-editor { width: 98%; }
|
44 |
.roles { width: 24%; float: left; min-height: 300px; }
|
@@ -53,4 +54,5 @@ ul.links li {float: left;margin: 0 5px 10px;font-size: .9em;}
|
|
53 |
.jd-my-calendar #message .button-primary,.upgrade-db .button-primary { position: static; }
|
54 |
.jd-my-calendar .default { background: #fff; }
|
55 |
.jd-my-calendar .button-adjust { top: 10px; right: 0; }
|
56 |
-
.jd-my-calendar hr { width: 20%; margin: 0 auto; border: none; border-top: 1px solid #ccc;}
|
|
35 |
#my-calendar .apply .warning {background: #ffe;color: #a00;padding: 3px;border: 1px solid #333;}
|
36 |
#my-calendar .break ul {padding: 10px 10px 0;margin-right: 180px;}
|
37 |
#my-calendar .columns, .jd-my-calendar .columns {-moz-column-count: 3;-moz-column-gap: 20px;-webkit-column-count: 3;-webkit-column-gap: 20px;column-count: 3;column-gap: 20px;}
|
38 |
+
#my-calendar .two-columns {-moz-column-count: 2;-moz-column-gap: 30px;-webkit-column-count: 2;-webkit-column-gap: 30px;column-count: 2;column-gap: 30px;}
|
39 |
.jd-my-calendar .event_image img { max-width: 480px; }
|
40 |
.event_image img {margin-top: 2px;}
|
41 |
.mc_support {font-family:'Courier New';background:#fff;padding:5px;}
|
42 |
+
.jd-my-calendar .button-primary { position: absolute; top: 0; right: 10px;}
|
43 |
.jd-my-calendar .button-primary.group { top: -40px; }
|
44 |
.template-editor, .style-editor { width: 98%; }
|
45 |
.roles { width: 24%; float: left; min-height: 300px; }
|
54 |
.jd-my-calendar #message .button-primary,.upgrade-db .button-primary { position: static; }
|
55 |
.jd-my-calendar .default { background: #fff; }
|
56 |
.jd-my-calendar .button-adjust { top: 10px; right: 0; }
|
57 |
+
.jd-my-calendar hr { width: 20%; margin: 0 auto; border: none; border-top: 1px solid #ccc;}
|
58 |
+
#mc-shortcodes code { font-size: 1.4em; line-height: 1.5; display: inline-block;}
|
my-calendar-categories.php
CHANGED
@@ -61,8 +61,8 @@ function my_csslist($directory) {
|
|
61 |
|
62 |
function is_custom_icon() {
|
63 |
global $wp_plugin_dir;
|
64 |
-
if (file_exists(
|
65 |
-
$results = my_dirlist(
|
66 |
if ( empty($results) ) {
|
67 |
return false;
|
68 |
} else {
|
@@ -173,7 +173,7 @@ global $wpdb;
|
|
173 |
}
|
174 |
global $path, $wp_plugin_dir,$wp_plugin_url;
|
175 |
if ( is_custom_icon() ) {
|
176 |
-
$directory =
|
177 |
$path = '/my-calendar-custom';
|
178 |
$iconlist = my_dirlist($directory);
|
179 |
} else {
|
61 |
|
62 |
function is_custom_icon() {
|
63 |
global $wp_plugin_dir;
|
64 |
+
if (file_exists( str_replace('/my-calendar','',$wp_plugin_dir ). '/my-calendar-custom/' ) ) {
|
65 |
+
$results = my_dirlist( str_replace('/my-calendar','',$wp_plugin_dir ) . '/my-calendar-custom/' );
|
66 |
if ( empty($results) ) {
|
67 |
return false;
|
68 |
} else {
|
173 |
}
|
174 |
global $path, $wp_plugin_dir,$wp_plugin_url;
|
175 |
if ( is_custom_icon() ) {
|
176 |
+
$directory = str_replace('/my-calendar','',$wp_plugin_dir) . '/my-calendar-custom/';
|
177 |
$path = '/my-calendar-custom';
|
178 |
$iconlist = my_dirlist($directory);
|
179 |
} else {
|
my-calendar-core.php
CHANGED
@@ -216,7 +216,7 @@ function mc_footer_js() { // need to enqueue these in shortcodes. May need to go
|
|
216 |
if ( get_option('mc_open_day_uri') == 'true' || get_option('mc_open_day_uri') == 'listanchor' || get_option('mc_open_day_uri') == 'calendaranchor') { $mini_js = str_replace('e.preventDefault();','',$mini_js); }
|
217 |
$ajax_js = stripcslashes( get_option( 'mc_ajaxjs' ) );
|
218 |
|
219 |
-
if (is_object($wp_query)) {
|
220 |
$id = $wp_query->post->ID;
|
221 |
}
|
222 |
if ( get_option( 'mc_show_js' ) != '' ) {
|
@@ -408,7 +408,7 @@ function mc_add_roles( $add=false, $manage=false, $approve=false ) {
|
|
408 |
|
409 |
// Function to check what version of My Calendar is installed and install or upgrade if needed
|
410 |
function check_my_calendar() {
|
411 |
-
global $wpdb, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs,$mc_version,$grid_template,$list_template,$mini_template,$single_template, $defaults;
|
412 |
$mcdb = $wpdb;
|
413 |
mc_if_needs_permissions();
|
414 |
$current_version = ( get_option('mc_version') == '') ? get_option('my_calendar_version') : get_option('mc_version');
|
@@ -460,7 +460,8 @@ function check_my_calendar() {
|
|
460 |
if ( version_compare( $current_version, "1.11.0", "<" ) ) { $upgrade_path[] = "1.11.0"; }
|
461 |
if ( version_compare( $current_version, "1.11.1", "<" ) ) { $upgrade_path[] = "1.11.1"; }
|
462 |
if ( version_compare( $current_version, "2.0.0", "<" ) ) { $upgrade_path[] = "2.0.0"; }
|
463 |
-
if ( version_compare( $current_version, "2.0.4", "<" ) ) { $upgrade_path[] = "2.0.4"; }
|
|
|
464 |
}
|
465 |
// having determined upgrade path, assign new version number
|
466 |
update_option( 'mc_version' , $mc_version );
|
@@ -478,6 +479,12 @@ function check_my_calendar() {
|
|
478 |
foreach ($upgrade_path as $upgrade) {
|
479 |
switch ($upgrade) {
|
480 |
// only upgrade db on most recent version
|
|
|
|
|
|
|
|
|
|
|
|
|
481 |
case '2.0.4':
|
482 |
update_option('mc_ical_utc','true');
|
483 |
break;
|
@@ -1287,7 +1294,7 @@ function mc_guess_calendar() {
|
|
1287 |
/* If you're looking at this, and have suggestions for other slugs I could be looking at, feel free to let me know. I didn't feel a need to be overly thorough. */
|
1288 |
$my_guesses = array( 'calendar','events','activities','classes','courses','rehearsals','schedule','calendario','actividades','eventos','kalender','veranstaltungen','unterrichten','eventi','classi' );
|
1289 |
foreach( $my_guesses as $guess ) {
|
1290 |
-
$value = $mcdb->get_var("SELECT id FROM $mcdb->posts WHERE post_name LIKE '%$guess%'" );
|
1291 |
if ( $value ) {
|
1292 |
_e('Is this your calendar page?','my-calendar'); echo ' <code>'.get_permalink( $value ).'</code>';
|
1293 |
return;
|
@@ -1306,10 +1313,14 @@ get_currentuserinfo();
|
|
1306 |
$mc_db_version = get_option('mc_db_version');
|
1307 |
$mc_uri = get_option('mc_uri');
|
1308 |
$mc_css = get_option('mc_css_file');
|
|
|
|
|
|
|
|
|
1309 |
// send fields for all plugins
|
1310 |
$wp_version = get_bloginfo('version');
|
1311 |
$home_url = home_url();
|
1312 |
-
$wp_url =
|
1313 |
$language = get_bloginfo('language');
|
1314 |
$charset = get_bloginfo('charset');
|
1315 |
// server
|
@@ -1351,6 +1362,7 @@ Version: $version
|
|
1351 |
DB Version: $mc_db_version
|
1352 |
URI: $mc_uri
|
1353 |
CSS: $mc_css
|
|
|
1354 |
|
1355 |
==WordPress:==
|
1356 |
Version: $wp_version
|
@@ -1373,6 +1385,7 @@ Version: $theme_version
|
|
1373 |
==Active Plugins:==
|
1374 |
$plugins_string
|
1375 |
";
|
|
|
1376 |
if ( isset($_POST['mc_support']) ) {
|
1377 |
$nonce=$_REQUEST['_wpnonce'];
|
1378 |
if (! wp_verify_nonce($nonce,'my-calendar-nonce') ) die("Security check failed");
|
@@ -1623,53 +1636,6 @@ function mc_increment_event( $id, $post=array() ) {
|
|
1623 |
$sql = $wpdb->insert( my_calendar_event_table(), $data, $format );
|
1624 |
$newbegin = my_calendar_add_date(date('Y-m-d H:i:s',$newbegin),28,0,0);
|
1625 |
$newend = my_calendar_add_date(date('Y-m-d H:i:s',$newend),28,0,0);
|
1626 |
-
// JCD NOTE old method of calculating month-by-day events, keeping in case of problems with new method. (Replaced in version 2.0.0)
|
1627 |
-
//$day_diff = jd_date_diff($approxbegin, $approxend);
|
1628 |
-
//$day_of_event = date('D',strtotime($event->event_begin) );
|
1629 |
-
/*for ($n=-6;$n<=6;$n++) {
|
1630 |
-
$timestamp = strtotime(my_calendar_add_date($approxbegin,$n,0,0));
|
1631 |
-
$current_day = date('D',$timestamp);
|
1632 |
-
if ($current_day == $day_of_event) {
|
1633 |
-
$current_week = week_of_month( date( 'd',$timestamp));
|
1634 |
-
$current_date = date( 'd',$timestamp);
|
1635 |
-
if ($current_day == $day_of_event && $current_week == $week_of_event) {
|
1636 |
-
$this_date = $current_date;
|
1637 |
-
} else {
|
1638 |
-
$first = $week_of_event*7;
|
1639 |
-
$last = $first+7;
|
1640 |
-
for ($s=$first;$s<=$last;$s++) {
|
1641 |
-
if ( $s > date('t',$timestamp) ) {
|
1642 |
-
$day = $s-date('t',$timestamp);
|
1643 |
-
$month = (date('m',$timestamp) == 12)?1:date('m',$timestamp)+1;
|
1644 |
-
} else {
|
1645 |
-
$day = $s;
|
1646 |
-
$month = date( 'm', $timestamp);
|
1647 |
-
}
|
1648 |
-
$string = date( 'Y', $timestamp ).'-'.$month.'-'.$day;
|
1649 |
-
$week = week_of_month($s);
|
1650 |
-
if ( date('D',strtotime($string)) == $day_of_event && $week == $week_of_event ) {
|
1651 |
-
$this_date = $s; break;
|
1652 |
-
}
|
1653 |
-
}
|
1654 |
-
if ( $fifth_week == 1 && $this_date > date('t',$timestamp) ) {
|
1655 |
-
$first = $first;
|
1656 |
-
$last = $first-7;
|
1657 |
-
for ($s=$last;$s<=$first;$s++) {
|
1658 |
-
$string = date( 'Y', $timestamp ).'-'.date('m', $timestamp).'-'.$s;
|
1659 |
-
if ( date('D',strtotime($string)) == $day_of_event ) {
|
1660 |
-
$this_date = $s; break;
|
1661 |
-
}
|
1662 |
-
}
|
1663 |
-
}
|
1664 |
-
}
|
1665 |
-
if ( ($current_day == $day_of_event && $current_week == $week_of_event) || ($current_date >= $this_date && $current_date <= $this_date+$day_diff && $this_date != '' ) ) {
|
1666 |
-
$begin = my_calendar_add_date($approxbegin,$n,0,0);
|
1667 |
-
$end = my_calendar_add_date($approxend,$n,0,0);
|
1668 |
-
$data = array( 'occur_event_id'=>$id, 'occur_begin'=>date('Y-m-d H:i:s',$begin), 'occur_end'=>date('Y-m-d H:i:s',$end), 'occur_group_id'=>$group_id );
|
1669 |
-
$sql = $wpdb->insert( my_calendar_event_table(), $data, $format );
|
1670 |
-
}
|
1671 |
-
}
|
1672 |
-
}*/
|
1673 |
}
|
1674 |
break;
|
1675 |
case "Y":
|
216 |
if ( get_option('mc_open_day_uri') == 'true' || get_option('mc_open_day_uri') == 'listanchor' || get_option('mc_open_day_uri') == 'calendaranchor') { $mini_js = str_replace('e.preventDefault();','',$mini_js); }
|
217 |
$ajax_js = stripcslashes( get_option( 'mc_ajaxjs' ) );
|
218 |
|
219 |
+
if ( is_object($wp_query) && isset($wp_query->post) ) {
|
220 |
$id = $wp_query->post->ID;
|
221 |
}
|
222 |
if ( get_option( 'mc_show_js' ) != '' ) {
|
408 |
|
409 |
// Function to check what version of My Calendar is installed and install or upgrade if needed
|
410 |
function check_my_calendar() {
|
411 |
+
global $wpdb, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs,$mc_version,$grid_template,$rss_template, $list_template,$mini_template,$single_template, $defaults;
|
412 |
$mcdb = $wpdb;
|
413 |
mc_if_needs_permissions();
|
414 |
$current_version = ( get_option('mc_version') == '') ? get_option('my_calendar_version') : get_option('mc_version');
|
460 |
if ( version_compare( $current_version, "1.11.0", "<" ) ) { $upgrade_path[] = "1.11.0"; }
|
461 |
if ( version_compare( $current_version, "1.11.1", "<" ) ) { $upgrade_path[] = "1.11.1"; }
|
462 |
if ( version_compare( $current_version, "2.0.0", "<" ) ) { $upgrade_path[] = "2.0.0"; }
|
463 |
+
if ( version_compare( $current_version, "2.0.4", "<" ) ) { $upgrade_path[] = "2.0.4"; }
|
464 |
+
if ( version_compare( $current_version, "2.1.0", "<" ) ) { $upgrade_path[] = "2.1.0"; }
|
465 |
}
|
466 |
// having determined upgrade path, assign new version number
|
467 |
update_option( 'mc_version' , $mc_version );
|
479 |
foreach ($upgrade_path as $upgrade) {
|
480 |
switch ($upgrade) {
|
481 |
// only upgrade db on most recent version
|
482 |
+
case '2.1.0':
|
483 |
+
$templates = get_option( 'mc_templates' );
|
484 |
+
global $rss_template;
|
485 |
+
$templates['rss'] = $rss_template;
|
486 |
+
update_option( 'mc_templates', $templates );
|
487 |
+
break;
|
488 |
case '2.0.4':
|
489 |
update_option('mc_ical_utc','true');
|
490 |
break;
|
1294 |
/* If you're looking at this, and have suggestions for other slugs I could be looking at, feel free to let me know. I didn't feel a need to be overly thorough. */
|
1295 |
$my_guesses = array( 'calendar','events','activities','classes','courses','rehearsals','schedule','calendario','actividades','eventos','kalender','veranstaltungen','unterrichten','eventi','classi' );
|
1296 |
foreach( $my_guesses as $guess ) {
|
1297 |
+
$value = $mcdb->get_var("SELECT id FROM $mcdb->posts WHERE post_name LIKE '%$guess%' AND post_status = 'publish'" );
|
1298 |
if ( $value ) {
|
1299 |
_e('Is this your calendar page?','my-calendar'); echo ' <code>'.get_permalink( $value ).'</code>';
|
1300 |
return;
|
1313 |
$mc_db_version = get_option('mc_db_version');
|
1314 |
$mc_uri = get_option('mc_uri');
|
1315 |
$mc_css = get_option('mc_css_file');
|
1316 |
+
|
1317 |
+
$license = ( get_option('mcs_license_key') != '' )?get_option('mcs_license_key'):'none';
|
1318 |
+
$license = "License Key: ".$license;
|
1319 |
+
|
1320 |
// send fields for all plugins
|
1321 |
$wp_version = get_bloginfo('version');
|
1322 |
$home_url = home_url();
|
1323 |
+
$wp_url = site_url();
|
1324 |
$language = get_bloginfo('language');
|
1325 |
$charset = get_bloginfo('charset');
|
1326 |
// server
|
1362 |
DB Version: $mc_db_version
|
1363 |
URI: $mc_uri
|
1364 |
CSS: $mc_css
|
1365 |
+
License: $license
|
1366 |
|
1367 |
==WordPress:==
|
1368 |
Version: $wp_version
|
1385 |
==Active Plugins:==
|
1386 |
$plugins_string
|
1387 |
";
|
1388 |
+
$request = '';
|
1389 |
if ( isset($_POST['mc_support']) ) {
|
1390 |
$nonce=$_REQUEST['_wpnonce'];
|
1391 |
if (! wp_verify_nonce($nonce,'my-calendar-nonce') ) die("Security check failed");
|
1636 |
$sql = $wpdb->insert( my_calendar_event_table(), $data, $format );
|
1637 |
$newbegin = my_calendar_add_date(date('Y-m-d H:i:s',$newbegin),28,0,0);
|
1638 |
$newend = my_calendar_add_date(date('Y-m-d H:i:s',$newend),28,0,0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1639 |
}
|
1640 |
break;
|
1641 |
case "Y":
|
my-calendar-event-manager.php
CHANGED
@@ -464,7 +464,7 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
464 |
|
465 |
<div class="ui-sortable meta-box-sortables">
|
466 |
<div class="postbox">
|
467 |
-
<h3><?php _e('Add/Edit Event','my-calendar');
|
468 |
<div class="inside">
|
469 |
<p>
|
470 |
<input type="submit" name="save" class="button-primary" value="<?php _e('Save Event','my-calendar'); ?>" />
|
@@ -495,7 +495,9 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
|
|
495 |
<input type="hidden" value="1" name="event_approved" />
|
496 |
<?php } ?>
|
497 |
<?php } else { // case: adding new event (if use can, then 1, else 0) ?>
|
498 |
-
<?php
|
|
|
|
|
499 |
<input type="hidden" value="<?php echo $dvalue; ?>" name="event_approved" />
|
500 |
<?php } ?>
|
501 |
</p>
|
@@ -953,7 +955,7 @@ function jd_events_display_list( $type='normal' ) {
|
|
953 |
$found_rows = $wpdb->get_col("SELECT FOUND_ROWS();");
|
954 |
$items = $found_rows[0];
|
955 |
?>
|
956 |
-
<h2 class='mc-clear'><?php _e('Manage Events','my-calendar'); ?></h2>
|
957 |
<?php if ( get_option('mc_event_approve') == 'true' ) { ?>
|
958 |
<ul class="links">
|
959 |
<li><a <?php echo ( isset($_GET['limit']) && $_GET['limit']=='published' )?' class="active-link"':''; ?> href="<?php echo admin_url('admin.php?page=my-calendar&limit=published#my-calendar-admin-table'); ?>"><?php _e('Published','my-calendar'); ?></a></li>
|
464 |
|
465 |
<div class="ui-sortable meta-box-sortables">
|
466 |
<div class="postbox">
|
467 |
+
<h3><?php _e('Add/Edit Event','my-calendar'); ?> <small>(<a href="#mc-manage"><?php _e('Edit events','my-calendar'); ?>)</a></small></h3>
|
468 |
<div class="inside">
|
469 |
<p>
|
470 |
<input type="submit" name="save" class="button-primary" value="<?php _e('Save Event','my-calendar'); ?>" />
|
495 |
<input type="hidden" value="1" name="event_approved" />
|
496 |
<?php } ?>
|
497 |
<?php } else { // case: adding new event (if use can, then 1, else 0) ?>
|
498 |
+
<?php if ( get_option( 'mc_event_approve') != 'true' ) {
|
499 |
+
$dvalue = 1;
|
500 |
+
} else if ( current_user_can( 'mc_approve_events' ) ) { $dvalue = 1; } else { $dvalue = 0; } ?>
|
501 |
<input type="hidden" value="<?php echo $dvalue; ?>" name="event_approved" />
|
502 |
<?php } ?>
|
503 |
</p>
|
955 |
$found_rows = $wpdb->get_col("SELECT FOUND_ROWS();");
|
956 |
$items = $found_rows[0];
|
957 |
?>
|
958 |
+
<h2 class='mc-clear' id='mc-manage'><?php _e('Manage Events','my-calendar'); ?></h2>
|
959 |
<?php if ( get_option('mc_event_approve') == 'true' ) { ?>
|
960 |
<ul class="links">
|
961 |
<li><a <?php echo ( isset($_GET['limit']) && $_GET['limit']=='published' )?' class="active-link"':''; ?> href="<?php echo admin_url('admin.php?page=my-calendar&limit=published#my-calendar-admin-table'); ?>"><?php _e('Published','my-calendar'); ?></a></li>
|
my-calendar-events.php
CHANGED
@@ -1,43 +1,45 @@
|
|
1 |
<?php
|
2 |
// used to generate upcoming events lists
|
3 |
-
function mc_get_all_events( $category, $before, $after, $today, $author ) {
|
4 |
global $wpdb;
|
5 |
$mcdb = $wpdb;
|
6 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
7 |
$select_category = ( $category!='default' )?mc_select_category($category):'';
|
8 |
$limit_string = mc_limit_string();
|
9 |
$select_author = ( $author != 'default' )?mc_select_author($author):'';
|
|
|
|
|
10 |
$date = date('Y', current_time('timestamp')).'-'.date('m', current_time('timestamp')).'-'.date('d', current_time('timestamp'));
|
11 |
// if a value is non-zero, I'll grab a handful of extra events so I can throw out holidays and others like that.
|
12 |
if ( $before > 0 ) {
|
13 |
$before = $before + 5;
|
14 |
-
$events1 = $mcdb->get_results("SELECT
|
15 |
FROM " . MY_CALENDAR_EVENTS_TABLE . "
|
16 |
JOIN " . MY_CALENDAR_TABLE . "
|
17 |
ON (event_id=occur_event_id)
|
18 |
JOIN " . MY_CALENDAR_CATEGORIES_TABLE . "
|
19 |
-
ON (event_category=category_id) WHERE $select_category $select_author $limit_string event_approved = 1 AND event_flagged <> 1
|
20 |
AND DATE(occur_begin) < '$date' ORDER BY occur_begin DESC LIMIT 0,$before");
|
21 |
} else { $events1 = array(); }
|
22 |
if ( $today == 'yes' ) {
|
23 |
-
$events3 = $mcdb->get_results("SELECT
|
24 |
FROM " . MY_CALENDAR_EVENTS_TABLE . "
|
25 |
JOIN " . MY_CALENDAR_TABLE . "
|
26 |
ON (event_id=occur_event_id)
|
27 |
JOIN " . MY_CALENDAR_CATEGORIES_TABLE . "
|
28 |
-
ON (event_category=category_id) WHERE $select_category $select_author $limit_string event_approved = 1 AND event_flagged <> 1
|
29 |
AND DATE(occur_begin) = '$date'");
|
30 |
} else {
|
31 |
$events3 = array();
|
32 |
}
|
33 |
if ( $after > 0 ) {
|
34 |
$after = $after + 5;
|
35 |
-
$events2 = $mcdb->get_results("SELECT
|
36 |
FROM " . MY_CALENDAR_EVENTS_TABLE . "
|
37 |
JOIN " . MY_CALENDAR_TABLE . "
|
38 |
ON (event_id=occur_event_id)
|
39 |
JOIN " . MY_CALENDAR_CATEGORIES_TABLE . "
|
40 |
-
ON (event_category=category_id) WHERE $select_category $select_author $limit_string event_approved = 1 AND event_flagged <> 1
|
41 |
AND DATE(occur_begin) > '$date' ORDER BY occur_begin ASC LIMIT 0,$after");
|
42 |
} else { $events2 = array(); }
|
43 |
$arr_events = array();
|
@@ -57,7 +59,7 @@ if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) {
|
|
57 |
// if a value is non-zero, I'll grab a handful of extra events so I can throw out holidays and others like that.
|
58 |
if ( $before > 0 ) {
|
59 |
$before = $before + 5;
|
60 |
-
$events1 = $mcdb->get_results("SELECT *
|
61 |
FROM " . MY_CALENDAR_EVENTS_TABLE . "
|
62 |
JOIN " . MY_CALENDAR_TABLE . "
|
63 |
ON (event_id=occur_event_id)
|
@@ -98,7 +100,7 @@ function mc_get_rss_events( $cat_id=false) { // JCD TODO: figure out how to outp
|
|
98 |
$mcdb = $wpdb;
|
99 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
100 |
if ( $cat_id ) { $cat = "WHERE event_category = $cat_id AND event_approved = 1"; } else { $cat = 'WHERE event_approved = 1'; }
|
101 |
-
$events = $mcdb->get_results("SELECT
|
102 |
foreach ( array_keys($events) as $key ) {
|
103 |
$event =& $events[$key];
|
104 |
$output[] = $event;
|
@@ -121,7 +123,7 @@ function mc_get_event( $id,$type='object' ) {
|
|
121 |
global $wpdb;
|
122 |
$mcdb = $wpdb;
|
123 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
124 |
-
$event = $mcdb->get_row("SELECT
|
125 |
$date = date('Y-m-d',strtotime($event->occur_begin) );
|
126 |
if ( $type == 'object' ) {
|
127 |
return $event;
|
@@ -132,24 +134,26 @@ function mc_get_event( $id,$type='object' ) {
|
|
132 |
}
|
133 |
|
134 |
// Grab all events for the requested date from calendar
|
135 |
-
function my_calendar_grab_events($from, $to,$category=null,$ltype='',$lvalue='',$source='calendar',$author=null) {
|
136 |
if ( isset($_GET['mcat']) ) { $ccategory = $_GET['mcat']; } else { $ccategory = $category; }
|
137 |
if ( isset($_GET['ltype']) ) { $cltype = $_GET['ltype']; } else { $cltype = $ltype; }
|
138 |
if ( isset($_GET['loc']) ) { $clvalue = $_GET['loc']; } else { $clvalue = $lvalue; }
|
139 |
if ( isset($_GET['mc_auth']) ) { $clauth = $_GET['mc_auth']; } else { $clauth = $author; }
|
|
|
140 |
|
141 |
if ( $ccategory == '' ) { $ccategory = 'all'; }
|
142 |
if ( $clvalue == '' ) { $clvalue = 'all'; }
|
143 |
if ( $cltype == '' ) { $cltype = 'all'; }
|
144 |
if ( $clvalue == 'all' ) { $cltype = 'all'; }
|
145 |
if ( $clauth == '' ) { $clauth = 'all'; }
|
|
|
146 |
|
147 |
if ( !mc_checkdate($from) || !mc_checkdate($to) ) { return; } // not valid dates
|
148 |
$caching = ( get_option('mc_caching_enabled') == 'true' )?true:false;
|
149 |
-
$hash = md5($from.$to.$ccategory.$cltype.$clvalue.$clauth);
|
150 |
if ( $source != 'upcoming' ) { // no caching on upcoming events by days widgets or lists
|
151 |
if ( $caching ) {
|
152 |
-
$output = mc_check_cache( $ccategory, $cltype, $clvalue, $clauth, $hash );
|
153 |
if ( $output && $output != 'empty' ) { return $output; }
|
154 |
if ( $output == 'empty' ) { return; }
|
155 |
}
|
@@ -159,21 +163,22 @@ function my_calendar_grab_events($from, $to,$category=null,$ltype='',$lvalue='',
|
|
159 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
160 |
$select_category = ( $category != null )?mc_select_category($category):'';
|
161 |
$select_author = ( $author != null )?mc_select_author($author):'';
|
|
|
162 |
$select_location = mc_limit_string( 'grab', $ltype, $lvalue );
|
163 |
|
164 |
-
if ( $caching && $source != 'upcoming' ) { $select_category = ''; $select_location = ''; $select_author = ''; }
|
165 |
// if caching, then need all categories/locations in cache. UNLESS this is an upcoming events list
|
166 |
|
167 |
$arr_events = array();
|
168 |
$limit_string = "event_flagged <> 1 AND event_approved = 1";
|
169 |
|
170 |
-
$event_query = "SELECT
|
171 |
FROM " . MY_CALENDAR_EVENTS_TABLE . "
|
172 |
JOIN " . MY_CALENDAR_TABLE . "
|
173 |
ON (event_id=occur_event_id)
|
174 |
JOIN " . MY_CALENDAR_CATEGORIES_TABLE . "
|
175 |
ON (event_category=category_id)
|
176 |
-
WHERE $select_category $select_location $select_author $limit_string
|
177 |
AND ( DATE(occur_begin) BETWEEN '$from 00:00:00' AND '$to 23:59:59'
|
178 |
OR DATE(occur_end) BETWEEN '$from 00:00:00' and '$to 23:59:59'
|
179 |
OR ( DATE('$from') BETWEEN DATE(occur_begin) AND DATE(occur_end) )
|
@@ -189,18 +194,18 @@ function my_calendar_grab_events($from, $to,$category=null,$ltype='',$lvalue='',
|
|
189 |
if ( $source != 'upcoming' && $caching ) {
|
190 |
$new_cache = mc_create_cache( $arr_events, $hash );
|
191 |
if ( $new_cache ) {
|
192 |
-
$output = mc_check_cache( $ccategory, $cltype, $clvalue, $clauth, $hash );
|
193 |
return $output;
|
194 |
} else {
|
195 |
// need to clean cache if the cache is maxed.
|
196 |
-
return mc_clean_cache( $arr_events, $ccategory, $cltype, $clvalue, $clauth );
|
197 |
}
|
198 |
} else {
|
199 |
return $arr_events;
|
200 |
}
|
201 |
}
|
202 |
|
203 |
-
function mc_check_cache( $category, $ltype, $lvalue, $auth, $hash) {
|
204 |
$caching = ( get_option('mc_caching_enabled') == 'true' )?true:false;
|
205 |
if ( $caching == true ) {
|
206 |
$cache = get_transient("mc_cache");
|
@@ -209,13 +214,13 @@ function mc_check_cache( $category, $ltype, $lvalue, $auth, $hash) {
|
|
209 |
} else {
|
210 |
return false;
|
211 |
}
|
212 |
-
if ( $value ) { return mc_clean_cache($value, $category,$ltype,$lvalue,$auth); } else { return false; }
|
213 |
} else {
|
214 |
return false;
|
215 |
}
|
216 |
}
|
217 |
|
218 |
-
function mc_clean_cache( $cache, $category, $ltype, $lvalue, $auth ) {
|
219 |
global $wpdb;
|
220 |
$mcdb = $wpdb;
|
221 |
// process cache to strip events which do not meet current restrictions
|
@@ -237,6 +242,13 @@ global $wpdb;
|
|
237 |
} else {
|
238 |
$authors = array($auth);
|
239 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
foreach ( $authors as $k=>$v ) {
|
241 |
if ( !is_numeric($v) && $v != 'all' ) {
|
242 |
$u = get_user_by('login',$v);
|
@@ -244,11 +256,19 @@ global $wpdb;
|
|
244 |
$authors[$k]= $id;
|
245 |
}
|
246 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
foreach ( $cache as $key=>$value ) {
|
248 |
foreach ( $cats as $cat ) {
|
249 |
if ( is_numeric($cat) ) { $cat = (int) $cat; }
|
250 |
if ( ( $value->event_category == $cat || $category == 'all' || $value->category_name == $cat )
|
251 |
&& ( $value->event_author == $auth || $auth == 'all' || in_array( $value->event_author,$authors ) )
|
|
|
252 |
&& ( $value->$type == $lvalue || ( $ltype == 'all' && $lvalue == 'all' ) ) ) {
|
253 |
$return[$key]=$value;
|
254 |
}
|
1 |
<?php
|
2 |
// used to generate upcoming events lists
|
3 |
+
function mc_get_all_events( $category, $before, $after, $today, $author, $host ) {
|
4 |
global $wpdb;
|
5 |
$mcdb = $wpdb;
|
6 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
7 |
$select_category = ( $category!='default' )?mc_select_category($category):'';
|
8 |
$limit_string = mc_limit_string();
|
9 |
$select_author = ( $author != 'default' )?mc_select_author($author):'';
|
10 |
+
$select_host = ( $host != 'default' )?mc_select_host($host):'';
|
11 |
+
|
12 |
$date = date('Y', current_time('timestamp')).'-'.date('m', current_time('timestamp')).'-'.date('d', current_time('timestamp'));
|
13 |
// if a value is non-zero, I'll grab a handful of extra events so I can throw out holidays and others like that.
|
14 |
if ( $before > 0 ) {
|
15 |
$before = $before + 5;
|
16 |
+
$events1 = $mcdb->get_results("SELECT *, UNIX_TIMESTAMP(occur_begin) AS ts_occur_begin, UNIX_TIMESTAMP(occur_end) AS ts_occur_end
|
17 |
FROM " . MY_CALENDAR_EVENTS_TABLE . "
|
18 |
JOIN " . MY_CALENDAR_TABLE . "
|
19 |
ON (event_id=occur_event_id)
|
20 |
JOIN " . MY_CALENDAR_CATEGORIES_TABLE . "
|
21 |
+
ON (event_category=category_id) WHERE $select_category $select_author $select_host $limit_string event_approved = 1 AND event_flagged <> 1
|
22 |
AND DATE(occur_begin) < '$date' ORDER BY occur_begin DESC LIMIT 0,$before");
|
23 |
} else { $events1 = array(); }
|
24 |
if ( $today == 'yes' ) {
|
25 |
+
$events3 = $mcdb->get_results("SELECT *, UNIX_TIMESTAMP(occur_begin) AS ts_occur_begin, UNIX_TIMESTAMP(occur_end) AS ts_occur_end
|
26 |
FROM " . MY_CALENDAR_EVENTS_TABLE . "
|
27 |
JOIN " . MY_CALENDAR_TABLE . "
|
28 |
ON (event_id=occur_event_id)
|
29 |
JOIN " . MY_CALENDAR_CATEGORIES_TABLE . "
|
30 |
+
ON (event_category=category_id) WHERE $select_category $select_author $select_host $limit_string event_approved = 1 AND event_flagged <> 1
|
31 |
AND DATE(occur_begin) = '$date'");
|
32 |
} else {
|
33 |
$events3 = array();
|
34 |
}
|
35 |
if ( $after > 0 ) {
|
36 |
$after = $after + 5;
|
37 |
+
$events2 = $mcdb->get_results("SELECT *, UNIX_TIMESTAMP(occur_begin) AS ts_occur_begin, UNIX_TIMESTAMP(occur_end) AS ts_occur_end
|
38 |
FROM " . MY_CALENDAR_EVENTS_TABLE . "
|
39 |
JOIN " . MY_CALENDAR_TABLE . "
|
40 |
ON (event_id=occur_event_id)
|
41 |
JOIN " . MY_CALENDAR_CATEGORIES_TABLE . "
|
42 |
+
ON (event_category=category_id) WHERE $select_category $select_author $select_host $limit_string event_approved = 1 AND event_flagged <> 1
|
43 |
AND DATE(occur_begin) > '$date' ORDER BY occur_begin ASC LIMIT 0,$after");
|
44 |
} else { $events2 = array(); }
|
45 |
$arr_events = array();
|
59 |
// if a value is non-zero, I'll grab a handful of extra events so I can throw out holidays and others like that.
|
60 |
if ( $before > 0 ) {
|
61 |
$before = $before + 5;
|
62 |
+
$events1 = $mcdb->get_results("SELECT *
|
63 |
FROM " . MY_CALENDAR_EVENTS_TABLE . "
|
64 |
JOIN " . MY_CALENDAR_TABLE . "
|
65 |
ON (event_id=occur_event_id)
|
100 |
$mcdb = $wpdb;
|
101 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
102 |
if ( $cat_id ) { $cat = "WHERE event_category = $cat_id AND event_approved = 1"; } else { $cat = 'WHERE event_approved = 1'; }
|
103 |
+
$events = $mcdb->get_results("SELECT *, UNIX_TIMESTAMP(occur_begin) AS ts_occur_begin, UNIX_TIMESTAMP(occur_end) AS ts_occur_end FROM " . MY_CALENDAR_EVENTS_TABLE . " JOIN " . MY_CALENDAR_TABLE . " ON (event_id=occur_event_id) JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) $cat ORDER BY event_added DESC LIMIT 0,30" );
|
104 |
foreach ( array_keys($events) as $key ) {
|
105 |
$event =& $events[$key];
|
106 |
$output[] = $event;
|
123 |
global $wpdb;
|
124 |
$mcdb = $wpdb;
|
125 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
126 |
+
$event = $mcdb->get_row("SELECT *, UNIX_TIMESTAMP(occur_begin) AS ts_occur_begin, UNIX_TIMESTAMP(occur_end) AS ts_occur_end FROM " . MY_CALENDAR_EVENTS_TABLE . " JOIN " . MY_CALENDAR_TABLE . " ON (event_id=occur_event_id) JOIN " . MY_CALENDAR_CATEGORIES_TABLE . " ON (event_category=category_id) WHERE occur_id=$id");
|
127 |
$date = date('Y-m-d',strtotime($event->occur_begin) );
|
128 |
if ( $type == 'object' ) {
|
129 |
return $event;
|
134 |
}
|
135 |
|
136 |
// Grab all events for the requested date from calendar
|
137 |
+
function my_calendar_grab_events($from, $to,$category=null,$ltype='',$lvalue='',$source='calendar',$author=null, $host=null) {
|
138 |
if ( isset($_GET['mcat']) ) { $ccategory = $_GET['mcat']; } else { $ccategory = $category; }
|
139 |
if ( isset($_GET['ltype']) ) { $cltype = $_GET['ltype']; } else { $cltype = $ltype; }
|
140 |
if ( isset($_GET['loc']) ) { $clvalue = $_GET['loc']; } else { $clvalue = $lvalue; }
|
141 |
if ( isset($_GET['mc_auth']) ) { $clauth = $_GET['mc_auth']; } else { $clauth = $author; }
|
142 |
+
if ( isset($_GET['mc_host']) ) { $clhost = $_GET['mc_host']; } else { $clhost = $host; }
|
143 |
|
144 |
if ( $ccategory == '' ) { $ccategory = 'all'; }
|
145 |
if ( $clvalue == '' ) { $clvalue = 'all'; }
|
146 |
if ( $cltype == '' ) { $cltype = 'all'; }
|
147 |
if ( $clvalue == 'all' ) { $cltype = 'all'; }
|
148 |
if ( $clauth == '' ) { $clauth = 'all'; }
|
149 |
+
if ( $clhost == '' ) { $clhost = 'all'; }
|
150 |
|
151 |
if ( !mc_checkdate($from) || !mc_checkdate($to) ) { return; } // not valid dates
|
152 |
$caching = ( get_option('mc_caching_enabled') == 'true' )?true:false;
|
153 |
+
$hash = md5($from.$to.$ccategory.$cltype.$clvalue.$clauth.$clhost);
|
154 |
if ( $source != 'upcoming' ) { // no caching on upcoming events by days widgets or lists
|
155 |
if ( $caching ) {
|
156 |
+
$output = mc_check_cache( $ccategory, $cltype, $clvalue, $clauth, $clhost, $hash );
|
157 |
if ( $output && $output != 'empty' ) { return $output; }
|
158 |
if ( $output == 'empty' ) { return; }
|
159 |
}
|
163 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
164 |
$select_category = ( $category != null )?mc_select_category($category):'';
|
165 |
$select_author = ( $author != null )?mc_select_author($author):'';
|
166 |
+
$select_host = ( $author != null )?mc_select_host($host):'';
|
167 |
$select_location = mc_limit_string( 'grab', $ltype, $lvalue );
|
168 |
|
169 |
+
if ( $caching && $source != 'upcoming' ) { $select_category = ''; $select_location = ''; $select_author = ''; $select_host = ''; }
|
170 |
// if caching, then need all categories/locations in cache. UNLESS this is an upcoming events list
|
171 |
|
172 |
$arr_events = array();
|
173 |
$limit_string = "event_flagged <> 1 AND event_approved = 1";
|
174 |
|
175 |
+
$event_query = "SELECT *, UNIX_TIMESTAMP(occur_begin) AS ts_occur_begin, UNIX_TIMESTAMP(occur_end) AS ts_occur_end
|
176 |
FROM " . MY_CALENDAR_EVENTS_TABLE . "
|
177 |
JOIN " . MY_CALENDAR_TABLE . "
|
178 |
ON (event_id=occur_event_id)
|
179 |
JOIN " . MY_CALENDAR_CATEGORIES_TABLE . "
|
180 |
ON (event_category=category_id)
|
181 |
+
WHERE $select_category $select_location $select_author $select_host $limit_string
|
182 |
AND ( DATE(occur_begin) BETWEEN '$from 00:00:00' AND '$to 23:59:59'
|
183 |
OR DATE(occur_end) BETWEEN '$from 00:00:00' and '$to 23:59:59'
|
184 |
OR ( DATE('$from') BETWEEN DATE(occur_begin) AND DATE(occur_end) )
|
194 |
if ( $source != 'upcoming' && $caching ) {
|
195 |
$new_cache = mc_create_cache( $arr_events, $hash );
|
196 |
if ( $new_cache ) {
|
197 |
+
$output = mc_check_cache( $ccategory, $cltype, $clvalue, $clauth, $clhost, $hash );
|
198 |
return $output;
|
199 |
} else {
|
200 |
// need to clean cache if the cache is maxed.
|
201 |
+
return mc_clean_cache( $arr_events, $ccategory, $cltype, $clvalue, $clauth, $clhost );
|
202 |
}
|
203 |
} else {
|
204 |
return $arr_events;
|
205 |
}
|
206 |
}
|
207 |
|
208 |
+
function mc_check_cache( $category, $ltype, $lvalue, $auth, $host, $hash) {
|
209 |
$caching = ( get_option('mc_caching_enabled') == 'true' )?true:false;
|
210 |
if ( $caching == true ) {
|
211 |
$cache = get_transient("mc_cache");
|
214 |
} else {
|
215 |
return false;
|
216 |
}
|
217 |
+
if ( $value ) { return mc_clean_cache($value, $category,$ltype,$lvalue,$auth,$host); } else { return false; }
|
218 |
} else {
|
219 |
return false;
|
220 |
}
|
221 |
}
|
222 |
|
223 |
+
function mc_clean_cache( $cache, $category, $ltype, $lvalue, $auth, $host ) {
|
224 |
global $wpdb;
|
225 |
$mcdb = $wpdb;
|
226 |
// process cache to strip events which do not meet current restrictions
|
242 |
} else {
|
243 |
$authors = array($auth);
|
244 |
}
|
245 |
+
if ( strpos( $host, ',' ) !== false ) {
|
246 |
+
$authors = explode(',',$host);
|
247 |
+
} else if ( strpos( $host, '|' ) !== false ) {
|
248 |
+
$authors = explode('|',$host);
|
249 |
+
} else {
|
250 |
+
$hosts = array($host);
|
251 |
+
}
|
252 |
foreach ( $authors as $k=>$v ) {
|
253 |
if ( !is_numeric($v) && $v != 'all' ) {
|
254 |
$u = get_user_by('login',$v);
|
256 |
$authors[$k]= $id;
|
257 |
}
|
258 |
}
|
259 |
+
foreach ( $hosts as $k=>$v ) {
|
260 |
+
if ( !is_numeric($v) && $v != 'all' ) {
|
261 |
+
$u = get_user_by('login',$v);
|
262 |
+
$id = $u->ID;
|
263 |
+
$hosts[$k]= $id;
|
264 |
+
}
|
265 |
+
}
|
266 |
foreach ( $cache as $key=>$value ) {
|
267 |
foreach ( $cats as $cat ) {
|
268 |
if ( is_numeric($cat) ) { $cat = (int) $cat; }
|
269 |
if ( ( $value->event_category == $cat || $category == 'all' || $value->category_name == $cat )
|
270 |
&& ( $value->event_author == $auth || $auth == 'all' || in_array( $value->event_author,$authors ) )
|
271 |
+
&& ( $value->event_host == $host || $host == 'all' || in_array( $value->event_host,$hosts ) )
|
272 |
&& ( $value->$type == $lvalue || ( $ltype == 'all' && $lvalue == 'all' ) ) ) {
|
273 |
$return[$key]=$value;
|
274 |
}
|
my-calendar-group-manager.php
CHANGED
@@ -526,7 +526,7 @@ if ( $action == 'add' || $action == 'edit' || $action == 'copy' ) {
|
|
526 |
$title = !empty($post['event_title']) ? trim($post['event_title']) : '';
|
527 |
$desc = !empty($post['content']) ? trim($post['content']) : '';
|
528 |
$short = !empty($post['event_short']) ? trim($post['event_short']) : '';
|
529 |
-
$repeats = (
|
530 |
$host = !empty($post['event_host']) ? $post['event_host'] : $current_user->ID;
|
531 |
$category = !empty($post['event_category']) ? $post['event_category'] : '';
|
532 |
$linky = !empty($post['event_link']) ? trim($post['event_link']) : '';
|
526 |
$title = !empty($post['event_title']) ? trim($post['event_title']) : '';
|
527 |
$desc = !empty($post['content']) ? trim($post['content']) : '';
|
528 |
$short = !empty($post['event_short']) ? trim($post['event_short']) : '';
|
529 |
+
$repeats = ( empty($post['event_repeats']) || trim($post['event_repeats'])=='' ) ? 0 : trim($post['event_repeats']);
|
530 |
$host = !empty($post['event_host']) ? $post['event_host'] : $current_user->ID;
|
531 |
$category = !empty($post['event_category']) ? $post['event_category'] : '';
|
532 |
$linky = !empty($post['event_link']) ? trim($post['event_link']) : '';
|
my-calendar-help.php
CHANGED
@@ -1,15 +1,47 @@
|
|
1 |
-
<?php
|
2 |
-
function my_calendar_help() {
|
3 |
-
global $wp_plugin_dir;
|
4 |
-
?>
|
5 |
|
6 |
<div class="wrap jd-my-calendar">
|
7 |
<h2><?php _e('How to use My Calendar','my-calendar'); ?></h2>
|
8 |
<div class="postbox-container" style="width: 70%">
|
9 |
<div class="metabox-holder">
|
10 |
|
11 |
-
<div class="ui-sortable meta-box-sortables">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
<div class="postbox">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
<h3><?php _e('Shortcode Syntax','my-calendar'); ?></h3>
|
14 |
<div class="inside">
|
15 |
<p>
|
@@ -22,7 +54,7 @@ global $wp_plugin_dir;
|
|
22 |
</p>
|
23 |
<p><code>[my_calendar format="list" showkey="yes" shownav="yes" toggle="no" time="week"]</code></p>
|
24 |
<p>
|
25 |
-
<?php _e('The shortcode supports
|
26 |
</p>
|
27 |
<ul>
|
28 |
<li><code>category</code>: <?php _e('Names or IDs of categories included in this calendar, comma or pipe separated.','my-calendar'); ?></li>
|
@@ -35,6 +67,7 @@ global $wp_plugin_dir;
|
|
35 |
<li><code>ltype</code>: <?php _e('The type of location data to restrict by.','my-calendar'); ?></li>
|
36 |
<li><code>lvalue</code>: <?php _e('The specific location information to filter to.','my-calendar'); ?></li>
|
37 |
<li><code>author</code>: <?php _e('Author or comma-separated list of authors (usernames or IDs) to show events from.','my-calendar'); ?></li>
|
|
|
38 |
</ul>
|
39 |
<p>
|
40 |
<em><?php _e('The main My Calendar short code can be generated from a button in your post and page editor. The mini calendar can also be accessed and configured as a widget.','my-calendar'); ?></em>
|
@@ -83,14 +116,14 @@ global $wp_plugin_dir;
|
|
83 |
<?php _e('My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc.','my-calendar'); ?>
|
84 |
</p>
|
85 |
<p>
|
86 |
-
<?php _e('The pre-installed category icons may not be especially useful for your needs or design. I\'m assuming that you\'re going to upload your own icons -- all you need to do is upload them to the plugin\'s icons folder, and they\'ll be available for immediate use, or place them in a folder at "my-calendar-custom" to avoid having them overwritten by upgrades.','my-calendar'); ?> <?php _e('Your icons folder is:','my-calendar'); ?> <code><?php echo
|
87 |
</p>
|
88 |
</div>
|
89 |
</div>
|
90 |
</div>
|
91 |
|
92 |
|
93 |
-
<div class="ui-sortable meta-box-sortables">
|
94 |
<div class="postbox">
|
95 |
<h3><?php _e('Custom Styles','my-calendar'); ?></h3>
|
96 |
<div class="inside">
|
@@ -98,8 +131,8 @@ global $wp_plugin_dir;
|
|
98 |
<?php _e('My Calendar comes with four basic stylesheets. My Calendar will retain changes to these basic stylesheets on upgrade, but if you want to add an entirely new stylesheet, you may wish to store it in the My Calendar custom styles directory.','my-calendar'); ?>
|
99 |
</p>
|
100 |
<ul>
|
101 |
-
<li><?php _e('Your stylesheet directory is','my-calendar'); ?>: <code><?php echo
|
102 |
-
<li><?php _e('Your custom stylesheets directory is','my-calendar'); ?>: <code><?php echo
|
103 |
</ul>
|
104 |
<p>
|
105 |
<?php _e('You can also add custom styles to your theme directory to provide print styles, mobile styles, and tablet styles. <code>mc-print.css</code>, <code>mc-mobile.css</code>, and <code>mc-tablet.css</code>.','my-calendar'); ?>
|
@@ -180,12 +213,18 @@ global $wp_plugin_dir;
|
|
180 |
<dt><code>{shortdesc_raw}</code></dt>
|
181 |
<dd><?php _e('Displays short description without converting paragraphs.','my-calendar'); ?></dd>
|
182 |
|
|
|
|
|
|
|
183 |
<dt><code>{description}</code></dt>
|
184 |
<dd><?php _e('Displays the description of the event.','my-calendar'); ?></dd>
|
185 |
|
186 |
<dt><code>{description_raw}</code></dt>
|
187 |
<dd><?php _e('Displays description without converting paragraphs.','my-calendar'); ?></dd>
|
188 |
|
|
|
|
|
|
|
189 |
<dt><code>{image}</code></dt>
|
190 |
<dd><?php _e('Image associated with the event.','my-calendar'); ?></dd>
|
191 |
|
@@ -301,7 +340,7 @@ global $wp_plugin_dir;
|
|
301 |
<?php } ?>
|
302 |
</div>
|
303 |
</div>
|
304 |
-
|
305 |
<div class="ui-sortable meta-box-sortables" id="notes">
|
306 |
<div class="postbox">
|
307 |
<h3 id="help"><?php _e('Helpful Information','my-calendar'); ?></h3>
|
1 |
+
<?php function my_calendar_help() { ?>
|
|
|
|
|
|
|
2 |
|
3 |
<div class="wrap jd-my-calendar">
|
4 |
<h2><?php _e('How to use My Calendar','my-calendar'); ?></h2>
|
5 |
<div class="postbox-container" style="width: 70%">
|
6 |
<div class="metabox-holder">
|
7 |
|
8 |
+
<div class="ui-sortable meta-box-sortables">
|
9 |
+
<div class="postbox">
|
10 |
+
<h3><?php _e('My Calendar Help','my-calendar'); ?></h3>
|
11 |
+
<div class="inside">
|
12 |
+
<ul class="mc-settings">
|
13 |
+
<li><a href="#mc-shortcodes"><?php _e('Shortcodes','my-calendar'); ?></a></li>
|
14 |
+
<li><a href="#icons"><?php _e('Icons','my-calendar'); ?></a></li>
|
15 |
+
<li><a href="#mc-styles"><?php _e('Styles','my-calendar'); ?></a></li>
|
16 |
+
<li><a href="#templates"><?php _e('Templating','my-calendar'); ?></a></li>
|
17 |
+
<li><a href="#get-support"><?php _e('Support Form','my-calendar'); ?></a></li>
|
18 |
+
<li><a href="#notes"><?php _e('Helpful Information','my-calendar'); ?></a></li>
|
19 |
+
</ul>
|
20 |
+
</div>
|
21 |
+
</div>
|
22 |
+
</div>
|
23 |
+
|
24 |
+
<div class="ui-sortable meta-box-sortables" id="get-started">
|
25 |
<div class="postbox">
|
26 |
+
<h3 id="help"><?php _e('Getting Started','my-calendar'); ?></h3>
|
27 |
+
<div class="inside">
|
28 |
+
<p>
|
29 |
+
<?php _e('Although the My Calendar plug-in is very complicated in terms of what can be customized, the basic usage is quite simple.','my-calendar'); ?>
|
30 |
+
</p>
|
31 |
+
<ul>
|
32 |
+
<li> - <?php _e('Add the My Calendar shortcode (<code>[my_calendar]</code>) to a page.','my-calendar'); ?></li>
|
33 |
+
<li> - <?php _e('Add events by clicking on the Add/Edit Events link in the admin sidebar or on "Add Events" in the admin toolbar.','my-calendar'); ?></li>
|
34 |
+
<li> - <?php _e('Select your preferred stylesheet in the Styles Editor','my-calendar'); ?></li>
|
35 |
+
</ul>
|
36 |
+
<p>
|
37 |
+
<?php _e('Read more of the basic help documentation on this page or purchase the My Calendar User\'s Guide to customize further -- but the above is all that you need to do to begin using the calendar.','my-calendar'); ?>
|
38 |
+
</p>
|
39 |
+
</div>
|
40 |
+
</div>
|
41 |
+
</div>
|
42 |
+
|
43 |
+
<div class="ui-sortable meta-box-sortables">
|
44 |
+
<div class="postbox" id="mc-shortcodes">
|
45 |
<h3><?php _e('Shortcode Syntax','my-calendar'); ?></h3>
|
46 |
<div class="inside">
|
47 |
<p>
|
54 |
</p>
|
55 |
<p><code>[my_calendar format="list" showkey="yes" shownav="yes" toggle="no" time="week"]</code></p>
|
56 |
<p>
|
57 |
+
<?php _e('The shortcode supports these attributes:','my-calendar'); ?>
|
58 |
</p>
|
59 |
<ul>
|
60 |
<li><code>category</code>: <?php _e('Names or IDs of categories included in this calendar, comma or pipe separated.','my-calendar'); ?></li>
|
67 |
<li><code>ltype</code>: <?php _e('The type of location data to restrict by.','my-calendar'); ?></li>
|
68 |
<li><code>lvalue</code>: <?php _e('The specific location information to filter to.','my-calendar'); ?></li>
|
69 |
<li><code>author</code>: <?php _e('Author or comma-separated list of authors (usernames or IDs) to show events from.','my-calendar'); ?></li>
|
70 |
+
<li><code>host</code>: <?php _e('Host or comma-separated list of hosts (WordPress usernames or IDs) to show events from.','my-calendar'); ?></li>
|
71 |
</ul>
|
72 |
<p>
|
73 |
<em><?php _e('The main My Calendar short code can be generated from a button in your post and page editor. The mini calendar can also be accessed and configured as a widget.','my-calendar'); ?></em>
|
116 |
<?php _e('My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can easily setup a calendar page which includes all categories, or you can dedicate separate pages to calendars in each category. For an example, this might be useful for you in managing the tour calendars for multiple bands; event calendars for a variety of locations, etc.','my-calendar'); ?>
|
117 |
</p>
|
118 |
<p>
|
119 |
+
<?php _e('The pre-installed category icons may not be especially useful for your needs or design. I\'m assuming that you\'re going to upload your own icons -- all you need to do is upload them to the plugin\'s icons folder, and they\'ll be available for immediate use, or place them in a folder at "my-calendar-custom" to avoid having them overwritten by upgrades.','my-calendar'); ?> <?php _e('Your icons folder is:','my-calendar'); ?> <code><?php echo plugin_dir_path( __FILE__ ).'icons/'; ?></code> <?php _e('You can alternately place icons in:','my-calendar'); ?> <code><?php echo str_replace( '/my-calendar','',plugin_dir_path( __FILE__ ) ).'my-calendar-custom/'; ?></code>
|
120 |
</p>
|
121 |
</div>
|
122 |
</div>
|
123 |
</div>
|
124 |
|
125 |
|
126 |
+
<div class="ui-sortable meta-box-sortables" id="mc-styles">
|
127 |
<div class="postbox">
|
128 |
<h3><?php _e('Custom Styles','my-calendar'); ?></h3>
|
129 |
<div class="inside">
|
131 |
<?php _e('My Calendar comes with four basic stylesheets. My Calendar will retain changes to these basic stylesheets on upgrade, but if you want to add an entirely new stylesheet, you may wish to store it in the My Calendar custom styles directory.','my-calendar'); ?>
|
132 |
</p>
|
133 |
<ul>
|
134 |
+
<li><?php _e('Your stylesheet directory is','my-calendar'); ?>: <code><?php echo plugin_dir_path( __FILE__ ).'styles/'; ?></code></li>
|
135 |
+
<li><?php _e('Your custom stylesheets directory is','my-calendar'); ?>: <code><?php echo str_replace( '/my-calendar','',plugin_dir_path( __FILE__ ) ).'my-calendar-custom/styles/'; ?></code></li>
|
136 |
</ul>
|
137 |
<p>
|
138 |
<?php _e('You can also add custom styles to your theme directory to provide print styles, mobile styles, and tablet styles. <code>mc-print.css</code>, <code>mc-mobile.css</code>, and <code>mc-tablet.css</code>.','my-calendar'); ?>
|
213 |
<dt><code>{shortdesc_raw}</code></dt>
|
214 |
<dd><?php _e('Displays short description without converting paragraphs.','my-calendar'); ?></dd>
|
215 |
|
216 |
+
<dt><code>{shortdesc_stripped}</code></dt>
|
217 |
+
<dd><?php _e('Displays short description with any HTML stripped out.','my-calendar'); ?></dd>
|
218 |
+
|
219 |
<dt><code>{description}</code></dt>
|
220 |
<dd><?php _e('Displays the description of the event.','my-calendar'); ?></dd>
|
221 |
|
222 |
<dt><code>{description_raw}</code></dt>
|
223 |
<dd><?php _e('Displays description without converting paragraphs.','my-calendar'); ?></dd>
|
224 |
|
225 |
+
<dt><code>{description_stripped}</code></dt>
|
226 |
+
<dd><?php _e('Displays description with any HTML stripped out.','my-calendar'); ?></dd>
|
227 |
+
|
228 |
<dt><code>{image}</code></dt>
|
229 |
<dd><?php _e('Image associated with the event.','my-calendar'); ?></dd>
|
230 |
|
340 |
<?php } ?>
|
341 |
</div>
|
342 |
</div>
|
343 |
+
|
344 |
<div class="ui-sortable meta-box-sortables" id="notes">
|
345 |
<div class="postbox">
|
346 |
<h3 id="help"><?php _e('Helpful Information','my-calendar'); ?></h3>
|
my-calendar-install.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
// define global variables;
|
3 |
-
global $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs, $initial_db, $initial_occur_db, $initial_loc_db, $initial_cat_db, $default_template,$default_user_settings, $mcdb,$grid_template,$list_template,$mini_template,$single_template, $defaults;
|
4 |
|
5 |
$defaults = array(
|
6 |
'upcoming'=>array(
|
@@ -59,6 +59,27 @@ $single_template = addslashes('<span class="event-time dtstart" title="{dtstart}
|
|
59 |
<div class="shortdesc">{image}{description}</div>
|
60 |
<p><a href="{link}" class="event-link external">{title}</a></p></div>');
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
$initial_ajaxjs = "jQuery(document).ready(function($){
|
63 |
$('.calendar .my-calendar-nav a').live('click', function(e){
|
64 |
e.preventDefault();
|
@@ -324,7 +345,7 @@ $default_user_settings = array(
|
|
324 |
);
|
325 |
|
326 |
function mc_default_settings( ) {
|
327 |
-
global $default_template, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs, $initial_db, $initial_occur_db, $initial_loc_db, $initial_cat_db, $default_user_settings,$grid_template,$list_template,$mini_template,$single_template,$mc_version, $defaults;
|
328 |
// no arguments
|
329 |
add_option('mc_display_author','false');
|
330 |
add_option('mc_display_jump','false');
|
@@ -374,6 +395,7 @@ global $default_template, $initial_listjs, $initial_caljs, $initial_minijs, $ini
|
|
374 |
'grid'=>$grid_template,
|
375 |
'list'=>$list_template,
|
376 |
'mini'=>$mini_template,
|
|
|
377 |
'details'=>$single_template,
|
378 |
'label'=>'{title}'
|
379 |
));
|
1 |
<?php
|
2 |
// define global variables;
|
3 |
+
global $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs, $initial_db, $initial_occur_db, $initial_loc_db, $initial_cat_db, $default_template,$default_user_settings, $mcdb,$grid_template,$list_template,$rss_template,$mini_template,$single_template, $defaults;
|
4 |
|
5 |
$defaults = array(
|
6 |
'upcoming'=>array(
|
59 |
<div class="shortdesc">{image}{description}</div>
|
60 |
<p><a href="{link}" class="event-link external">{title}</a></p></div>');
|
61 |
|
62 |
+
$rss_template = addslashes("\n<item>
|
63 |
+
<title>{title}</title>
|
64 |
+
<link>{link}</link>
|
65 |
+
<pubDate>{rssdate}</pubDate>
|
66 |
+
<dc:creator>{author}</dc:creator>
|
67 |
+
<description><![CDATA[{rss_description}]]></description>
|
68 |
+
<content:encoded><![CDATA[<div class='vevent'>
|
69 |
+
<h1 class='summary'>{rss_title}</h1>
|
70 |
+
<div class='description'>{rss_description}</div>
|
71 |
+
<p class='dtstart' title='{ical_start}'>Begins: {time} on {date}</p>
|
72 |
+
<p class='dtend' title='{ical_end}'>Ends: {endtime} on {enddate}</p>
|
73 |
+
<p>Recurrance: {recurs}</p>
|
74 |
+
<p>Repetition: {repeats} times</p>
|
75 |
+
<div class='location'>{rss_hcard}</div>
|
76 |
+
{link_title}
|
77 |
+
</div>]]></content:encoded>
|
78 |
+
<dc:format xmlns:dc='http://purl.org/dc/elements/1.1/'>text/html</dc:format>
|
79 |
+
<dc:source xmlns:dc='http://purl.org/dc/elements/1.1/'>".home_url()."</dc:source>
|
80 |
+
{guid}
|
81 |
+
</item>\n");
|
82 |
+
|
83 |
$initial_ajaxjs = "jQuery(document).ready(function($){
|
84 |
$('.calendar .my-calendar-nav a').live('click', function(e){
|
85 |
e.preventDefault();
|
345 |
);
|
346 |
|
347 |
function mc_default_settings( ) {
|
348 |
+
global $default_template, $initial_listjs, $initial_caljs, $initial_minijs, $initial_ajaxjs, $initial_db, $initial_occur_db, $initial_loc_db, $initial_cat_db, $default_user_settings,$grid_template,$rss_template, $list_template,$mini_template,$single_template,$mc_version, $defaults;
|
349 |
// no arguments
|
350 |
add_option('mc_display_author','false');
|
351 |
add_option('mc_display_jump','false');
|
395 |
'grid'=>$grid_template,
|
396 |
'list'=>$list_template,
|
397 |
'mini'=>$mini_template,
|
398 |
+
'rss'=>$rss_template,
|
399 |
'details'=>$single_template,
|
400 |
'label'=>'{title}'
|
401 |
));
|
my-calendar-limits.php
CHANGED
@@ -32,15 +32,19 @@ global $wpdb;
|
|
32 |
} else {
|
33 |
$key = esc_sql(trim($key));
|
34 |
$cat = $mcdb->get_row("SELECT category_id FROM " . my_calendar_categories_table() . " WHERE category_name = '$key'");
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
$
|
40 |
-
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
42 |
}
|
43 |
-
$i++;
|
44 |
}
|
45 |
}
|
46 |
} else {
|
@@ -60,7 +64,6 @@ global $wpdb;
|
|
60 |
}
|
61 |
}
|
62 |
|
63 |
-
|
64 |
function mc_select_author( $author, $type='event' ) {
|
65 |
$author = urldecode($author);
|
66 |
$key = '';
|
@@ -126,11 +129,76 @@ global $wpdb;
|
|
126 |
}
|
127 |
}
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
function mc_limit_string($type='',$ltype='',$lvalue='') {
|
130 |
global $user_ID;
|
131 |
$user_settings = get_option('mc_user_settings');
|
132 |
$limit_string = "";
|
133 |
-
if ( get_option('mc_user_settings_enabled') == 'true' && $user_settings['my_calendar_location_default']['enabled'] == 'on' || isset($_GET['loc']) && isset($_GET['ltype']) || ( $ltype !='' && $lvalue != '' ) ) {
|
134 |
if ( !isset($_GET['loc']) && !isset($_GET['ltype']) ) {
|
135 |
if ( $ltype == '' && $lvalue == '' ) {
|
136 |
if ( is_user_logged_in() ) {
|
32 |
} else {
|
33 |
$key = esc_sql(trim($key));
|
34 |
$cat = $mcdb->get_row("SELECT category_id FROM " . my_calendar_categories_table() . " WHERE category_name = '$key'");
|
35 |
+
if ( $cat ) {
|
36 |
+
$category_id = $cat->category_id;
|
37 |
+
if ($i == 1) { $select_category .= ($type=='all')?" WHERE (":' ('; }
|
38 |
+
$select_category .= " $data = $category_id";
|
39 |
+
if ($i < $numcat) {
|
40 |
+
$select_category .= " OR ";
|
41 |
+
} else if ($i == $numcat) {
|
42 |
+
$select_category .= ($type=='all')?") ":' ) AND';
|
43 |
+
}
|
44 |
+
$i++;
|
45 |
+
} else {
|
46 |
+
return;
|
47 |
}
|
|
|
48 |
}
|
49 |
}
|
50 |
} else {
|
64 |
}
|
65 |
}
|
66 |
|
|
|
67 |
function mc_select_author( $author, $type='event' ) {
|
68 |
$author = urldecode($author);
|
69 |
$key = '';
|
129 |
}
|
130 |
}
|
131 |
|
132 |
+
function mc_select_host( $host, $type='event' ) {
|
133 |
+
$host = urldecode($host);
|
134 |
+
$key = '';
|
135 |
+
if ( $host == '' || $host == 'all' || $host == 'default' || $host == null ) { return; }
|
136 |
+
global $wpdb;
|
137 |
+
$mcdb = $wpdb;
|
138 |
+
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
139 |
+
$select_author = '';
|
140 |
+
$data = 'event_host';
|
141 |
+
if ( isset( $_GET['mc_auth'] ) ) { $host = $_GET['mc_host']; }
|
142 |
+
if ( preg_match( '/^all$|^all,|,all$|,all,/i', $host ) > 0 ) {
|
143 |
+
return '';
|
144 |
+
} else {
|
145 |
+
if ( strpos( $host, "|" ) || strpos( $host, "," ) ) {
|
146 |
+
if ( strpos($host, "|" ) ) {
|
147 |
+
$hosts = explode( "|", $host );
|
148 |
+
} else {
|
149 |
+
$hosts = explode( ",", $host );
|
150 |
+
}
|
151 |
+
$numhost = count($hosts);
|
152 |
+
$i = 1;
|
153 |
+
foreach ($hosts as $key) {
|
154 |
+
if ( is_numeric($key) ) {
|
155 |
+
$key = (int) $key;
|
156 |
+
if ($i == 1) { $select_host .= ($type=='all')?" WHERE (":' ('; }
|
157 |
+
$select_host .= " $data = $key";
|
158 |
+
if ($i < $numhost) {
|
159 |
+
$select_host .= " OR ";
|
160 |
+
} else if ($i == $numhost) {
|
161 |
+
$select_host .= ($type=='all')?") ":' ) AND';
|
162 |
+
}
|
163 |
+
$i++;
|
164 |
+
} else {
|
165 |
+
$key = esc_sql(trim($key));
|
166 |
+
$host = get_user_by( 'login', $key ); // get host by username
|
167 |
+
$host_id = $host->ID;
|
168 |
+
if ($i == 1) { $select_host .= ($type=='all')?" WHERE (":' ('; }
|
169 |
+
$select_host .= " $data = $host_id";
|
170 |
+
if ($i < $numhost) {
|
171 |
+
$select_host .= " OR ";
|
172 |
+
} else if ($i == $numhost) {
|
173 |
+
$select_host .= ($type=='all')?") ":' ) AND';
|
174 |
+
}
|
175 |
+
$i++;
|
176 |
+
}
|
177 |
+
}
|
178 |
+
} else {
|
179 |
+
if ( is_numeric( $host ) ) {
|
180 |
+
$select_host = ($type=='all')?" WHERE $data = $host":" event_host = $host AND";
|
181 |
+
} else {
|
182 |
+
$host = esc_sql(trim($host));
|
183 |
+
$host = get_user_by( 'login', $host ); // get author by username
|
184 |
+
|
185 |
+
if ( is_object($host) ) {
|
186 |
+
$host_id = $host->ID;
|
187 |
+
$select_host = ($type=='all')?" WHERE $data = $host_id":" $data = $host_id AND";
|
188 |
+
} else {
|
189 |
+
$select_host = '';
|
190 |
+
}
|
191 |
+
}
|
192 |
+
}
|
193 |
+
return $select_host;
|
194 |
+
}
|
195 |
+
}
|
196 |
+
|
197 |
function mc_limit_string($type='',$ltype='',$lvalue='') {
|
198 |
global $user_ID;
|
199 |
$user_settings = get_option('mc_user_settings');
|
200 |
$limit_string = "";
|
201 |
+
if ( ( get_option('mc_user_settings_enabled') == 'true' && isset( $user_settings['my_calendar_location_default']['enabled'] ) && $user_settings['my_calendar_location_default']['enabled'] == 'on' ) || isset($_GET['loc']) && isset($_GET['ltype']) || ( $ltype !='' && $lvalue != '' ) ) {
|
202 |
if ( !isset($_GET['loc']) && !isset($_GET['ltype']) ) {
|
203 |
if ( $ltype == '' && $lvalue == '' ) {
|
204 |
if ( is_user_logged_in() ) {
|
my-calendar-output.php
CHANGED
@@ -54,36 +54,6 @@ function my_calendar_draw_events($events, $type, $process_date, $time, $template
|
|
54 |
$event =& $events[$key];
|
55 |
$output_array[] = my_calendar_draw_event($event, $type, $process_date,$time,$template);
|
56 |
}
|
57 |
-
//} else {
|
58 |
-
/* foreach(array_keys($events) as $key ) {
|
59 |
-
$event =& $events[$key];
|
60 |
-
$output_array[] = my_calendar_draw_event($event, $type, $process_date,$time,$template);
|
61 |
-
}
|
62 |
-
/*foreach(array_keys($temp_array) as $key) {
|
63 |
-
$event =& $temp_array[$key];
|
64 |
-
// if any event this date is in the holiday category, we are skipping
|
65 |
-
if ( $event->event_category == get_option('mc_skip_holidays_category') ) {
|
66 |
-
$skipping = true;
|
67 |
-
break;
|
68 |
-
}
|
69 |
-
}
|
70 |
-
// check each event, if we're skipping, only include the holiday events.
|
71 |
-
$sum = 0;
|
72 |
-
foreach(array_keys($temp_array) as $key) {
|
73 |
-
$event =& $temp_array[$key];
|
74 |
-
if ($skipping == true) {
|
75 |
-
if ($event->event_category == get_option('mc_skip_holidays_category') ) {
|
76 |
-
$output_array[] = my_calendar_draw_event($event, $type, $process_date,$time,$template);
|
77 |
-
} else {
|
78 |
-
if ( $event->event_holiday == '0' ) { // '1' means "is canceled"
|
79 |
-
$output_array[] = my_calendar_draw_event($event, $type, $process_date,$time,$template);
|
80 |
-
}
|
81 |
-
}
|
82 |
-
} else {
|
83 |
-
$output_array[] = my_calendar_draw_event($event, $type, $process_date,$time,$template);
|
84 |
-
}
|
85 |
-
}*/
|
86 |
-
//}
|
87 |
if ( is_array($output_array) ) {
|
88 |
foreach (array_keys($output_array) as $key) {
|
89 |
$value =& $output_array[$key];
|
@@ -200,7 +170,7 @@ jQuery(document).ready(function($) {
|
|
200 |
$current_date = date_i18n($date_format,strtotime($process_date));
|
201 |
$event_date = ($type == 'single')?$current_date.', ':'';
|
202 |
if ( $event->event_span == 1 ) { $group_class = ' multidate group'.$event->event_group_id; } else { $group_class = ''; }
|
203 |
-
$header_details .= ($type != '
|
204 |
$title = apply_filters( 'mc_before_event_title','',$event );
|
205 |
$title .= ($type == 'single' )?"<h2 class='event-title summary'>$image $mytitle</h2>\n":'';
|
206 |
$title .= apply_filters( 'mc_after_event_title','',$event );
|
@@ -324,7 +294,7 @@ jQuery(document).ready(function($) {
|
|
324 |
// if we're opening in a new page, there's no reason to display any of that. Later, re-write this section to make this easier to skip.
|
325 |
if ( $type == 'calendar' && get_option('mc_open_uri') == 'true' && $time != 'day' ) $body_details = $description = $short = $status = '';
|
326 |
|
327 |
-
$subdetails = ( get_option('mc_open_uri') =='true')?"":"<div class='sub-details'>$subdetails</div>";
|
328 |
$body_details .= $subdetails;
|
329 |
if ( $event_link != '' && get_option( 'mc_event_link' ) != 'false' ) {
|
330 |
$is_external = mc_external_link( $event_link );
|
@@ -450,7 +420,7 @@ $current_url = mc_get_current_url();
|
|
450 |
}
|
451 |
|
452 |
function my_calendar_print() {
|
453 |
-
|
454 |
$category=(isset($_GET['mcat']))?$_GET['mcat']:''; // these are all sanitized elsewhere
|
455 |
$time=(isset($_GET['time']))?$_GET['time']:'month';
|
456 |
$ltype=(isset($_GET['ltype']))?$_GET['ltype']:'';
|
@@ -485,7 +455,7 @@ echo "
|
|
485 |
<link rel='stylesheet' href='$stylesheet' type='text/css' media='screen,print' />
|
486 |
</head>
|
487 |
<body>\n";
|
488 |
-
echo my_calendar('print','calendar',$category,'no','no','no','no',$time,$ltype,$lvalue
|
489 |
$return_url = ( get_option('mc_uri') != '' )?get_option('mc_uri'):home_url();
|
490 |
echo "<p class='return'><a href='$return_url'>".__('Return to site','my-calendar')."</a></p>";
|
491 |
echo '
|
@@ -664,7 +634,11 @@ function my_calendar($name,$format,$category,$showkey,$shownav,$showjump,$toggle
|
|
664 |
if ( isset($_GET['yr']) && $main_class == $cid ) {
|
665 |
$c_year = (int) $_GET['yr'];
|
666 |
} else {
|
667 |
-
$
|
|
|
|
|
|
|
|
|
668 |
}
|
669 |
// Years get funny if we exceed 3000, so we use this check
|
670 |
if ( !($c_year <= 3000 && $c_year >= 0)) {
|
@@ -1185,12 +1159,12 @@ $home = '';
|
|
1185 |
$home = get_bloginfo('url') . '/';
|
1186 |
} else if ( is_home() ) {
|
1187 |
$page = get_option('page_for_posts');
|
1188 |
-
$home = get_permalink($page);
|
1189 |
} else if ( is_archive() ) {
|
1190 |
$home = ''; // an empty string seems to work best; leaving it open.
|
1191 |
} else {
|
1192 |
-
|
1193 |
-
|
1194 |
}
|
1195 |
}
|
1196 |
$variables = $_GET;
|
@@ -1384,7 +1358,7 @@ global $user_ID;
|
|
1384 |
if ( is_user_logged_in() ) {
|
1385 |
get_currentuserinfo();
|
1386 |
$current_settings = get_user_meta( $user_ID, 'my_calendar_user_settings', true );
|
1387 |
-
$tz = $current_settings['my_calendar_tz_default'];
|
1388 |
} else {
|
1389 |
$tz = '';
|
1390 |
}
|
54 |
$event =& $events[$key];
|
55 |
$output_array[] = my_calendar_draw_event($event, $type, $process_date,$time,$template);
|
56 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
if ( is_array($output_array) ) {
|
58 |
foreach (array_keys($output_array) as $key) {
|
59 |
$value =& $output_array[$key];
|
170 |
$current_date = date_i18n($date_format,strtotime($process_date));
|
171 |
$event_date = ($type == 'single')?$current_date.', ':'';
|
172 |
if ( $event->event_span == 1 ) { $group_class = ' multidate group'.$event->event_group_id; } else { $group_class = ''; }
|
173 |
+
$header_details .= ( $type != 'single' && $type != 'list' )?"<h3 class='event-title summary$group_class'>$wrap$image".$mytitle."$balance</h3>\n":'';
|
174 |
$title = apply_filters( 'mc_before_event_title','',$event );
|
175 |
$title .= ($type == 'single' )?"<h2 class='event-title summary'>$image $mytitle</h2>\n":'';
|
176 |
$title .= apply_filters( 'mc_after_event_title','',$event );
|
294 |
// if we're opening in a new page, there's no reason to display any of that. Later, re-write this section to make this easier to skip.
|
295 |
if ( $type == 'calendar' && get_option('mc_open_uri') == 'true' && $time != 'day' ) $body_details = $description = $short = $status = '';
|
296 |
|
297 |
+
$subdetails = ( get_option('mc_open_uri') == 'true' && $type == 'grid' || $type == 'mini' )?"":"<div class='sub-details'>$subdetails</div>";
|
298 |
$body_details .= $subdetails;
|
299 |
if ( $event_link != '' && get_option( 'mc_event_link' ) != 'false' ) {
|
300 |
$is_external = mc_external_link( $event_link );
|
420 |
}
|
421 |
|
422 |
function my_calendar_print() {
|
423 |
+
$wp_plugin_url = plugin_dir_url( __FILE__ );
|
424 |
$category=(isset($_GET['mcat']))?$_GET['mcat']:''; // these are all sanitized elsewhere
|
425 |
$time=(isset($_GET['time']))?$_GET['time']:'month';
|
426 |
$ltype=(isset($_GET['ltype']))?$_GET['ltype']:'';
|
455 |
<link rel='stylesheet' href='$stylesheet' type='text/css' media='screen,print' />
|
456 |
</head>
|
457 |
<body>\n";
|
458 |
+
echo my_calendar('print','calendar',$category,'no','no','no','no',$time,$ltype,$lvalue);
|
459 |
$return_url = ( get_option('mc_uri') != '' )?get_option('mc_uri'):home_url();
|
460 |
echo "<p class='return'><a href='$return_url'>".__('Return to site','my-calendar')."</a></p>";
|
461 |
echo '
|
634 |
if ( isset($_GET['yr']) && $main_class == $cid ) {
|
635 |
$c_year = (int) $_GET['yr'];
|
636 |
} else {
|
637 |
+
if ( $time == 'week' && date('j', current_time( 'timestamp' ) ) <= 6 && date('n', current_time( 'timestamp' ) ) == 1 ) {
|
638 |
+
$c_year = ( date("Y",current_time( 'timestamp' ) ) )-1;
|
639 |
+
} else {
|
640 |
+
$c_year = date("Y",current_time( 'timestamp' ) );
|
641 |
+
}
|
642 |
}
|
643 |
// Years get funny if we exceed 3000, so we use this check
|
644 |
if ( !($c_year <= 3000 && $c_year >= 0)) {
|
1159 |
$home = get_bloginfo('url') . '/';
|
1160 |
} else if ( is_home() ) {
|
1161 |
$page = get_option('page_for_posts');
|
1162 |
+
$home = get_permalink( $page );
|
1163 |
} else if ( is_archive() ) {
|
1164 |
$home = ''; // an empty string seems to work best; leaving it open.
|
1165 |
} else {
|
1166 |
+
wp_reset_query(); // break out of any alternate loop that's been set up.
|
1167 |
+
$home = get_permalink();
|
1168 |
}
|
1169 |
}
|
1170 |
$variables = $_GET;
|
1358 |
if ( is_user_logged_in() ) {
|
1359 |
get_currentuserinfo();
|
1360 |
$current_settings = get_user_meta( $user_ID, 'my_calendar_user_settings', true );
|
1361 |
+
$tz = ( isset($current_settings['my_calendar_tz_default'] ) )?$current_settings['my_calendar_tz_default']:'';
|
1362 |
} else {
|
1363 |
$tz = '';
|
1364 |
}
|
my-calendar-rss.php
CHANGED
@@ -23,6 +23,7 @@ if ( isset($_GET['mcat']) ) { $cat_id = (int) $_GET['mcat']; } else { $cat_id =
|
|
23 |
<dc:source xmlns:dc='http://purl.org/dc/elements/1.1/'>".home_url()."</dc:source>
|
24 |
{guid}
|
25 |
</item>\n";
|
|
|
26 |
// add RSS headers
|
27 |
$charset = get_bloginfo('charset');
|
28 |
$output = '<?xml version="1.0" encoding="'.$charset.'"?>
|
23 |
<dc:source xmlns:dc='http://purl.org/dc/elements/1.1/'>".home_url()."</dc:source>
|
24 |
{guid}
|
25 |
</item>\n";
|
26 |
+
if ( get_option( 'mc_use_rss_template' ) == 1 ) { $templates = get_option('mc_templates'); $template = $templates['rss']; }
|
27 |
// add RSS headers
|
28 |
$charset = get_bloginfo('charset');
|
29 |
$output = '<?xml version="1.0" encoding="'.$charset.'"?>
|
my-calendar-settings.php
CHANGED
@@ -143,14 +143,8 @@ function edit_my_calendar_config() {
|
|
143 |
}
|
144 |
// output
|
145 |
if (isset($_POST['mc_show_months']) ) {
|
146 |
-
|
147 |
-
$mc_details_label = $_POST['mc_details_label'];
|
148 |
-
$mc_link_label = $_POST['mc_link_label'];
|
149 |
$mc_open_day_uri = ( !empty($_POST['mc_open_day_uri']) )?$_POST['mc_open_day_uri']:'';
|
150 |
-
$templates = get_option('mc_templates');
|
151 |
-
$templates['title'] = $mc_title_template;
|
152 |
-
$templates['label'] = $mc_details_label;
|
153 |
-
$templates['link'] = $mc_link_label;
|
154 |
update_option('mc_uri',$_POST['mc_uri'] );
|
155 |
update_option('mc_open_uri',( !empty($_POST['mc_open_uri']) && $_POST['mc_open_uri']=='on' && get_option('mc_uri') != '')?'true':'false');
|
156 |
update_option('mc_day_uri',$_POST['mc_day_uri'] );
|
@@ -158,16 +152,11 @@ function edit_my_calendar_config() {
|
|
158 |
update_option('mc_open_day_uri', $mc_open_day_uri );
|
159 |
update_option('mc_skip_holidays_category',(int) $_POST['mc_skip_holidays_category']);
|
160 |
update_option('mc_skip_holidays',( !empty($_POST['mc_skip_holidays']) && $_POST['mc_skip_holidays']=='on')?'true':'false');
|
161 |
-
update_option('mc_templates',$templates);
|
162 |
update_option('mc_display_author',( !empty($_POST['mc_display_author']) && $_POST['mc_display_author']=='on')?'true':'false');
|
163 |
update_option('mc_show_event_vcal',( !empty($_POST['mc_show_event_vcal']) && $_POST['mc_show_event_vcal']=='on')?'true':'false');
|
164 |
update_option('mc_display_jump',( !empty($_POST['mc_display_jump']) && $_POST['mc_display_jump']=='on')?'true':'false');
|
165 |
update_option('mc_show_list_info',( !empty($_POST['mc_show_list_info']) && $_POST['mc_show_list_info']=='on')?'true':'false');
|
166 |
update_option('mc_show_months',(int) $_POST['mc_show_months']);
|
167 |
-
update_option('mc_date_format',stripslashes($_POST['mc_date_format']));
|
168 |
-
update_option('mc_week_format',stripslashes($_POST['my_calendar_week_format']));
|
169 |
-
update_option('mc_time_format',stripslashes($_POST['mc_time_format']));
|
170 |
-
update_option('mc_month_format',stripslashes($_POST['mc_month_format']));
|
171 |
update_option('mc_show_map',( !empty($_POST['mc_show_map']) && $_POST['mc_show_map']=='on')?'true':'false');
|
172 |
update_option('mc_show_address',( !empty($_POST['mc_show_address']) && $_POST['mc_show_address']=='on')?'true':'false');
|
173 |
update_option('mc_hide_icons',( !empty($_POST['mc_hide_icons']) && $_POST['mc_hide_icons']=='on')?'false':'true');
|
@@ -197,6 +186,13 @@ function edit_my_calendar_config() {
|
|
197 |
echo "<div class=\"updated\"><p><strong>".__('Output Settings saved','my-calendar').".$update_text</strong></p></div>";
|
198 |
}
|
199 |
// input
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
if (isset($_POST['mc_input'])) {
|
201 |
$mc_input_options_administrators = ( !empty($_POST['mc_input_options_administrators']) && $_POST['mc_input_options_administrators']=='on')?'true':'false';
|
202 |
$mc_input_options = array(
|
@@ -226,6 +222,10 @@ function edit_my_calendar_config() {
|
|
226 |
}
|
227 |
// custom text
|
228 |
if (isset( $_POST['mc_previous_events'] ) ) {
|
|
|
|
|
|
|
|
|
229 |
$mc_notime_text = $_POST['mc_notime_text'];
|
230 |
$mc_previous_events = $_POST['mc_previous_events'];
|
231 |
$mc_next_events = $_POST['mc_next_events'];
|
@@ -233,6 +233,12 @@ function edit_my_calendar_config() {
|
|
233 |
$mc_event_closed = $_POST['mc_event_closed'];
|
234 |
$mc_week_caption = $_POST['mc_week_caption'];
|
235 |
$my_calendar_caption = $_POST['my_calendar_caption'];
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
update_option('mc_notime_text',$mc_notime_text);
|
237 |
update_option('mc_week_caption',$mc_week_caption);
|
238 |
update_option('mc_next_events',$mc_next_events);
|
@@ -290,6 +296,7 @@ function edit_my_calendar_config() {
|
|
290 |
$mc_title_template = $templates['title'];
|
291 |
$mc_details_label = $templates['label'];
|
292 |
$mc_link_label = $templates['link'];
|
|
|
293 |
$mc_uri = get_option('mc_uri');
|
294 |
$mc_day_uri = get_option('mc_day_uri');
|
295 |
$mc_mini_uri = get_option('mc_mini_uri');
|
@@ -337,6 +344,7 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
|
|
337 |
<li><a href="#my-calendar-manage"><?php _e('Management','my-calendar'); ?></a></li>
|
338 |
<li><a href="#my-calendar-text"><?php _e('Customizable Text','my-calendar'); ?></a></li>
|
339 |
<li><a href="#my-calendar-output"><?php _e('Output','my-calendar'); ?></a></li>
|
|
|
340 |
<li><a href="#my-calendar-input"><?php _e('Input','my-calendar'); ?></a></li>
|
341 |
<?php if ( current_user_can('manage_network') ) { ?>
|
342 |
<li><a href="#my-calendar-multisite"><?php _e('Multi-site','my-calendar'); ?></a></li>
|
@@ -447,6 +455,25 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
|
|
447 |
<li>
|
448 |
<label for="my_calendar_caption"><?php _e('Extended caption:','my-calendar'); ?></label> <input type="text" id="my_calendar_caption" name="my_calendar_caption" value="<?php echo esc_attr( stripslashes( get_option('mc_caption') ) ); ?>" /><br /><small><?php _e('The calendar caption shows month and year in list and grid formats. This text is displayed after the month/year.','my-calendar'); ?></small>
|
449 |
</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
450 |
</ul>
|
451 |
</fieldset>
|
452 |
<p>
|
@@ -467,7 +494,7 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
|
|
467 |
<fieldset>
|
468 |
<legend><?php _e('Calendar Options: Customize the Output of your Calendar','my-calendar'); ?></legend>
|
469 |
<fieldset>
|
470 |
-
<legend><?php _e('
|
471 |
<ul>
|
472 |
<li>
|
473 |
<label for="mc_uri"><?php _e('Target <abbr title="Uniform resource locator">URL</abbr> for event details links:','my-calendar'); ?></label>
|
@@ -481,7 +508,7 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
|
|
481 |
<label for="mc_mini_uri"><?php _e('Target <abbr title="Uniform resource locator">URL</abbr> for mini calendar in-page anchors:','my-calendar'); ?></label>
|
482 |
<input type="text" name="mc_mini_uri" id="mc_mini_uri" size="60" value="<?php echo esc_url($mc_mini_uri); ?>" /><br /><small><?php _e('Can be any Page or Post with the <code>[my_calendar]</code> shortcode using format selected below','my-calendar'); ?></small>
|
483 |
</li>
|
484 |
-
<li><strong><?php _e('
|
485 |
<li>
|
486 |
<input type="checkbox" id="mc_open_uri" name="mc_open_uri"<?php if ( $mc_uri == '' ) { echo ' disabled="disabled"'; } ?> <?php mc_is_checked('mc_open_uri','true'); ?> /> <label for="mc_open_uri"><?php _e('Open calendar links to event details URL','my-calendar'); ?></label> <small><?php _e('Replaces pop-up in grid view.','my-calendar'); ?></small>
|
487 |
</li>
|
@@ -494,20 +521,7 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
|
|
494 |
</select>
|
495 |
<small><?php _e('Replaces pop-up in mini calendar','my-calendar'); ?></small>
|
496 |
</li>
|
497 |
-
<li
|
498 |
-
<label for='mc_month_format'><?php _e('Month format (calendar headings)','my-calendar'); ?></label><br /><input type="text" id="mc_month_format" name="mc_month_format" value="<?php if ( get_option('mc_month_format') == "") { echo ''; } else { echo esc_attr( get_option( 'mc_month_format') ); } ?>" /> <code><?php _e('Current:','my-calendar'); ?> <?php if ( get_option('mc_month_format') == '') { echo date_i18n( 'F Y' ); } else { echo date_i18n( get_option('mc_month_format') ); } ?></code>
|
499 |
-
<li class='mc-time-format'>
|
500 |
-
<label for="mc_time_format"><?php _e('Time format','my-calendar'); ?></label><br /><input type="text" id="mc_time_format" name="mc_time_format" value="<?php if ( get_option('mc_time_format') == "") { echo ''; } else { echo esc_attr( get_option( 'mc_time_format') ); } ?>" /> <code><?php _e('Current:','my-calendar'); ?> <?php if ( get_option('mc_time_format') == '') { echo date_i18n( get_option('time_format') ); } else { echo date_i18n( get_option('mc_time_format') ); } ?></code>
|
501 |
-
</li>
|
502 |
-
<li class='mc-week-format'>
|
503 |
-
<label for="mc_week_format"><?php _e('Date in grid mode, week view','my-calendar'); ?></label><br /><input type="text" id="mc_week_format" name="my_calendar_week_format" value="<?php if ( get_option('mc_week_format') == "") { echo ''; } else { echo esc_attr( get_option( 'mc_week_format') ); } ?>" /> <code><?php _e('Current:','my-calendar'); ?> <?php if ( get_option('mc_week_format') == '') { echo date_i18n('M j, \'y'); } else { echo date_i18n( get_option('mc_week_format') ); } ?></code>
|
504 |
-
</li>
|
505 |
-
<li class='mc-date-format'>
|
506 |
-
<label for="mc_date_format"><?php _e('Date Format in other views','my-calendar'); ?></label><br /><input type="text" id="mc_date_format" name="mc_date_format" value="<?php if ( get_option('mc_date_format') == "") { echo esc_attr( get_option('date_format') ); } else { echo esc_attr( get_option( 'mc_date_format') ); } ?>" /> <code><?php _e('Current:','my-calendar'); ?> <?php if ( get_option('mc_date_format') == '') { echo date_i18n(get_option('date_format')); } else { echo date_i18n( get_option('mc_date_format') ); } ?></code>
|
507 |
-
</li>
|
508 |
-
<li>
|
509 |
-
<small><?php _e('Date formats use the same syntax as the <a href="http://php.net/date">PHP <code>date()</code> function</a>. Save options to update sample output.','my-calendar'); ?></small>
|
510 |
-
</li>
|
511 |
<li>
|
512 |
<input type="checkbox" id="mc_show_rss" name="mc_show_rss" <?php mc_is_checked('mc_show_rss','true'); ?> /> <label for="mc_show_rss"><?php _e('Show link to My Calendar RSS feed.','my-calendar'); ?></label> <small><?php _e('RSS feed shows recently added events.','my-calendar'); ?></small>
|
513 |
</li>
|
@@ -517,11 +531,8 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
|
|
517 |
</li>
|
518 |
<li>
|
519 |
<input type="checkbox" id="mc_show_print" name="mc_show_print" <?php mc_is_checked('mc_show_print','true'); ?> /> <label for="mc_show_print"><?php _e('Show link to print-formatted view of calendar','my-calendar'); ?></label>
|
520 |
-
</li>
|
521 |
-
|
522 |
-
<input type="checkbox" id="mc_display_jump" name="mc_display_jump" <?php mc_is_checked('mc_display_jump','true'); ?> /> <label for="mc_display_jump"><?php _e('Display a jumpbox for changing month and year quickly?','my-calendar'); ?></label>
|
523 |
-
</li>
|
524 |
-
</ul>
|
525 |
<?php // End General Options // ?>
|
526 |
</fieldset>
|
527 |
|
@@ -553,22 +564,6 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
|
|
553 |
|
554 |
<fieldset>
|
555 |
<legend><?php _e('Event Details Options','my-calendar'); ?></legend>
|
556 |
-
<ul>
|
557 |
-
<li>
|
558 |
-
<label for="mc_title_template"><?php _e('Event title template','my-calendar'); ?></label>
|
559 |
-
<input type="text" name="mc_title_template" id="mc_title_template" size="30" value="<?php echo stripslashes(esc_attr($mc_title_template)); ?>" /> <small><a href="<?php echo admin_url("admin.php?page=my-calendar-help#templates"); ?>"><?php _e("Templating Help",'my-calendar'); ?></a> <?php _e('All template tags are available.','my-calendar'); ?></small>
|
560 |
-
</li>
|
561 |
-
<li>
|
562 |
-
<label for="mc_details_label"><?php _e('Event details link text','my-calendar'); ?></label>
|
563 |
-
<input type="text" name="mc_details_label" id="mc_details_label" size="30" value="<?php echo stripslashes(esc_attr($mc_details_label)); ?>" />
|
564 |
-
<br /><small><?php _e('Available tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>.','my-calendar'); ?></small>
|
565 |
-
</li>
|
566 |
-
<li>
|
567 |
-
<label for="mc_link_label"><?php _e('Event URL link text','my-calendar'); ?></label>
|
568 |
-
<input type="text" name="mc_link_label" id="mc_link_label" size="30" value="<?php echo stripslashes(esc_attr($mc_link_label)); ?>" />
|
569 |
-
<small><a href="<?php echo admin_url("admin.php?page=my-calendar-help#templates"); ?>"><?php _e("Templating Help",'my-calendar'); ?></a> <?php _e('All template tags are available.','my-calendar'); ?></small>
|
570 |
-
</li>
|
571 |
-
</ul>
|
572 |
<ul class="columns">
|
573 |
<li>
|
574 |
<input type="checkbox" id="mc_display_author" name="mc_display_author" <?php mc_is_checked('mc_display_author','true'); ?> /> <label for="mc_display_jump"><?php _e('Show author\'s name','my-calendar'); ?></label>
|
@@ -613,9 +608,9 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
|
|
613 |
</li>
|
614 |
</ul>
|
615 |
<?php // End Event Options // ?>
|
616 |
-
</fieldset>
|
617 |
<fieldset>
|
618 |
-
<legend><?php _e('Event Scheduling
|
619 |
<ul>
|
620 |
<li>
|
621 |
<input type="checkbox" id="mc_no_fifth_week" name="mc_no_fifth_week" value="on" <?php mc_is_checked('mc_no_fifth_week','true'); ?> /> <label for="mc_no_fifth_week"><?php _e('Default setting for event input: If a recurring event is scheduled for a date which doesn\'t exist (such as the 5th Wednesday in February), move it back one week.','my-calendar'); ?></label>
|
@@ -653,6 +648,41 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
|
|
653 |
</div>
|
654 |
</div>
|
655 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
656 |
<div class="ui-sortable meta-box-sortables">
|
657 |
<div class="postbox" id="my-calendar-input">
|
658 |
<h3><?php _e('Calendar Input Settings','my-calendar'); ?></h3>
|
143 |
}
|
144 |
// output
|
145 |
if (isset($_POST['mc_show_months']) ) {
|
146 |
+
|
|
|
|
|
147 |
$mc_open_day_uri = ( !empty($_POST['mc_open_day_uri']) )?$_POST['mc_open_day_uri']:'';
|
|
|
|
|
|
|
|
|
148 |
update_option('mc_uri',$_POST['mc_uri'] );
|
149 |
update_option('mc_open_uri',( !empty($_POST['mc_open_uri']) && $_POST['mc_open_uri']=='on' && get_option('mc_uri') != '')?'true':'false');
|
150 |
update_option('mc_day_uri',$_POST['mc_day_uri'] );
|
152 |
update_option('mc_open_day_uri', $mc_open_day_uri );
|
153 |
update_option('mc_skip_holidays_category',(int) $_POST['mc_skip_holidays_category']);
|
154 |
update_option('mc_skip_holidays',( !empty($_POST['mc_skip_holidays']) && $_POST['mc_skip_holidays']=='on')?'true':'false');
|
|
|
155 |
update_option('mc_display_author',( !empty($_POST['mc_display_author']) && $_POST['mc_display_author']=='on')?'true':'false');
|
156 |
update_option('mc_show_event_vcal',( !empty($_POST['mc_show_event_vcal']) && $_POST['mc_show_event_vcal']=='on')?'true':'false');
|
157 |
update_option('mc_display_jump',( !empty($_POST['mc_display_jump']) && $_POST['mc_display_jump']=='on')?'true':'false');
|
158 |
update_option('mc_show_list_info',( !empty($_POST['mc_show_list_info']) && $_POST['mc_show_list_info']=='on')?'true':'false');
|
159 |
update_option('mc_show_months',(int) $_POST['mc_show_months']);
|
|
|
|
|
|
|
|
|
160 |
update_option('mc_show_map',( !empty($_POST['mc_show_map']) && $_POST['mc_show_map']=='on')?'true':'false');
|
161 |
update_option('mc_show_address',( !empty($_POST['mc_show_address']) && $_POST['mc_show_address']=='on')?'true':'false');
|
162 |
update_option('mc_hide_icons',( !empty($_POST['mc_hide_icons']) && $_POST['mc_hide_icons']=='on')?'false':'true');
|
186 |
echo "<div class=\"updated\"><p><strong>".__('Output Settings saved','my-calendar').".$update_text</strong></p></div>";
|
187 |
}
|
188 |
// input
|
189 |
+
if ( isset($_POST['mc_dates']) ) {
|
190 |
+
update_option('mc_date_format',stripslashes($_POST['mc_date_format']));
|
191 |
+
update_option('mc_week_format',stripslashes($_POST['my_calendar_week_format']));
|
192 |
+
update_option('mc_time_format',stripslashes($_POST['mc_time_format']));
|
193 |
+
update_option('mc_month_format',stripslashes($_POST['mc_month_format']));
|
194 |
+
echo "<div class=\"updated\"><p><strong>".__('Date/Time Format Settings saved','my-calendar')."</strong></p></div>";
|
195 |
+
}
|
196 |
if (isset($_POST['mc_input'])) {
|
197 |
$mc_input_options_administrators = ( !empty($_POST['mc_input_options_administrators']) && $_POST['mc_input_options_administrators']=='on')?'true':'false';
|
198 |
$mc_input_options = array(
|
222 |
}
|
223 |
// custom text
|
224 |
if (isset( $_POST['mc_previous_events'] ) ) {
|
225 |
+
$mc_title_template = $_POST['mc_title_template'];
|
226 |
+
$mc_details_label = $_POST['mc_details_label'];
|
227 |
+
$mc_link_label = $_POST['mc_link_label'];
|
228 |
+
$mc_event_title_template = $_POST['mc_event_title_template'];
|
229 |
$mc_notime_text = $_POST['mc_notime_text'];
|
230 |
$mc_previous_events = $_POST['mc_previous_events'];
|
231 |
$mc_next_events = $_POST['mc_next_events'];
|
233 |
$mc_event_closed = $_POST['mc_event_closed'];
|
234 |
$mc_week_caption = $_POST['mc_week_caption'];
|
235 |
$my_calendar_caption = $_POST['my_calendar_caption'];
|
236 |
+
$templates = get_option('mc_templates');
|
237 |
+
$templates['title'] = $mc_title_template;
|
238 |
+
$templates['label'] = $mc_details_label;
|
239 |
+
$templates['link'] = $mc_link_label;
|
240 |
+
update_option('mc_templates',$templates);
|
241 |
+
update_option( 'mc_event_title_template', $mc_event_title_template );
|
242 |
update_option('mc_notime_text',$mc_notime_text);
|
243 |
update_option('mc_week_caption',$mc_week_caption);
|
244 |
update_option('mc_next_events',$mc_next_events);
|
296 |
$mc_title_template = $templates['title'];
|
297 |
$mc_details_label = $templates['label'];
|
298 |
$mc_link_label = $templates['link'];
|
299 |
+
$mc_event_title_template = get_option('mc_event_title_template');
|
300 |
$mc_uri = get_option('mc_uri');
|
301 |
$mc_day_uri = get_option('mc_day_uri');
|
302 |
$mc_mini_uri = get_option('mc_mini_uri');
|
344 |
<li><a href="#my-calendar-manage"><?php _e('Management','my-calendar'); ?></a></li>
|
345 |
<li><a href="#my-calendar-text"><?php _e('Customizable Text','my-calendar'); ?></a></li>
|
346 |
<li><a href="#my-calendar-output"><?php _e('Output','my-calendar'); ?></a></li>
|
347 |
+
<li><a href="#my-calendar-time"><?php _e('Date/Time','my-calendar'); ?></a></li>
|
348 |
<li><a href="#my-calendar-input"><?php _e('Input','my-calendar'); ?></a></li>
|
349 |
<?php if ( current_user_can('manage_network') ) { ?>
|
350 |
<li><a href="#my-calendar-multisite"><?php _e('Multi-site','my-calendar'); ?></a></li>
|
455 |
<li>
|
456 |
<label for="my_calendar_caption"><?php _e('Extended caption:','my-calendar'); ?></label> <input type="text" id="my_calendar_caption" name="my_calendar_caption" value="<?php echo esc_attr( stripslashes( get_option('mc_caption') ) ); ?>" /><br /><small><?php _e('The calendar caption shows month and year in list and grid formats. This text is displayed after the month/year.','my-calendar'); ?></small>
|
457 |
</li>
|
458 |
+
<li>
|
459 |
+
<label for="mc_title_template"><?php _e('Event title template','my-calendar'); ?></label>
|
460 |
+
<input type="text" name="mc_title_template" id="mc_title_template" size="30" value="<?php echo stripslashes(esc_attr($mc_title_template)); ?>" />></a> <?php _e('All template tags are available.','my-calendar'); ?></small>
|
461 |
+
</li>
|
462 |
+
<li>
|
463 |
+
<label for="mc_details_label"><?php _e('Event details link text','my-calendar'); ?></label>
|
464 |
+
<input type="text" name="mc_details_label" id="mc_details_label" size="30" value="<?php echo stripslashes(esc_attr($mc_details_label)); ?>" />
|
465 |
+
<br /><small><?php _e('Available tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>.','my-calendar'); ?></small>
|
466 |
+
</li>
|
467 |
+
<li>
|
468 |
+
<label for="mc_link_label"><?php _e('Event URL link text','my-calendar'); ?></label>
|
469 |
+
<input type="text" name="mc_link_label" id="mc_link_label" size="30" value="<?php echo stripslashes(esc_attr($mc_link_label)); ?>" />
|
470 |
+
<small><a href="<?php echo admin_url("admin.php?page=my-calendar-help#templates"); ?>"><?php _e("Templating Help",'my-calendar'); ?></a> <?php _e('All template tags are available.','my-calendar'); ?></small>
|
471 |
+
</li>
|
472 |
+
<li>
|
473 |
+
<label for="mc_event_title_template"><?php _e('Title tag template (event details pages)','my-calendar'); ?></label>
|
474 |
+
<input type="text" name="mc_event_title_template" id="mc_event_title_template" size="30" value="<?php echo stripslashes(esc_attr($mc_event_title_template)); ?>" />
|
475 |
+
<small><a href="<?php echo admin_url("admin.php?page=my-calendar-help#templates"); ?>"><?php _e("Templating Help",'my-calendar'); ?></a> <?php _e('All template tags are available.','my-calendar'); ?></small>
|
476 |
+
</li>
|
477 |
</ul>
|
478 |
</fieldset>
|
479 |
<p>
|
494 |
<fieldset>
|
495 |
<legend><?php _e('Calendar Options: Customize the Output of your Calendar','my-calendar'); ?></legend>
|
496 |
<fieldset>
|
497 |
+
<legend><?php _e('Calendar Link Targets','my-calendar'); ?></legend>
|
498 |
<ul>
|
499 |
<li>
|
500 |
<label for="mc_uri"><?php _e('Target <abbr title="Uniform resource locator">URL</abbr> for event details links:','my-calendar'); ?></label>
|
508 |
<label for="mc_mini_uri"><?php _e('Target <abbr title="Uniform resource locator">URL</abbr> for mini calendar in-page anchors:','my-calendar'); ?></label>
|
509 |
<input type="text" name="mc_mini_uri" id="mc_mini_uri" size="60" value="<?php echo esc_url($mc_mini_uri); ?>" /><br /><small><?php _e('Can be any Page or Post with the <code>[my_calendar]</code> shortcode using format selected below','my-calendar'); ?></small>
|
510 |
</li>
|
511 |
+
<li><strong><?php _e('Modify date and event link behaviors:','my-calendar'); ?></strong></li>
|
512 |
<li>
|
513 |
<input type="checkbox" id="mc_open_uri" name="mc_open_uri"<?php if ( $mc_uri == '' ) { echo ' disabled="disabled"'; } ?> <?php mc_is_checked('mc_open_uri','true'); ?> /> <label for="mc_open_uri"><?php _e('Open calendar links to event details URL','my-calendar'); ?></label> <small><?php _e('Replaces pop-up in grid view.','my-calendar'); ?></small>
|
514 |
</li>
|
521 |
</select>
|
522 |
<small><?php _e('Replaces pop-up in mini calendar','my-calendar'); ?></small>
|
523 |
</li>
|
524 |
+
<li><strong><?php _e('Show links to alternate formats:','my-calendar'); ?></strong></li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
<li>
|
526 |
<input type="checkbox" id="mc_show_rss" name="mc_show_rss" <?php mc_is_checked('mc_show_rss','true'); ?> /> <label for="mc_show_rss"><?php _e('Show link to My Calendar RSS feed.','my-calendar'); ?></label> <small><?php _e('RSS feed shows recently added events.','my-calendar'); ?></small>
|
527 |
</li>
|
531 |
</li>
|
532 |
<li>
|
533 |
<input type="checkbox" id="mc_show_print" name="mc_show_print" <?php mc_is_checked('mc_show_print','true'); ?> /> <label for="mc_show_print"><?php _e('Show link to print-formatted view of calendar','my-calendar'); ?></label>
|
534 |
+
</li>
|
535 |
+
</ul>
|
|
|
|
|
|
|
536 |
<?php // End General Options // ?>
|
537 |
</fieldset>
|
538 |
|
564 |
|
565 |
<fieldset>
|
566 |
<legend><?php _e('Event Details Options','my-calendar'); ?></legend>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
567 |
<ul class="columns">
|
568 |
<li>
|
569 |
<input type="checkbox" id="mc_display_author" name="mc_display_author" <?php mc_is_checked('mc_display_author','true'); ?> /> <label for="mc_display_jump"><?php _e('Show author\'s name','my-calendar'); ?></label>
|
608 |
</li>
|
609 |
</ul>
|
610 |
<?php // End Event Options // ?>
|
611 |
+
</fieldset>
|
612 |
<fieldset>
|
613 |
+
<legend><?php _e('Event Scheduling Defaults','my-calendar'); ?></legend>
|
614 |
<ul>
|
615 |
<li>
|
616 |
<input type="checkbox" id="mc_no_fifth_week" name="mc_no_fifth_week" value="on" <?php mc_is_checked('mc_no_fifth_week','true'); ?> /> <label for="mc_no_fifth_week"><?php _e('Default setting for event input: If a recurring event is scheduled for a date which doesn\'t exist (such as the 5th Wednesday in February), move it back one week.','my-calendar'); ?></label>
|
648 |
</div>
|
649 |
</div>
|
650 |
|
651 |
+
<div class="ui-sortable meta-box-sortables">
|
652 |
+
<div class="postbox" id="my-calendar-time">
|
653 |
+
<h3><?php _e('Calendar Time Formats','my-calendar'); ?></h3>
|
654 |
+
<div class="inside">
|
655 |
+
<form method="post" action="<?php echo admin_url("admin.php?page=my-calendar-config"); ?>">
|
656 |
+
<div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
|
657 |
+
<fieldset>
|
658 |
+
<legend><?php _e('Set default date/time formats','my-calendar'); ?></legend>
|
659 |
+
<div><input type='hidden' name='mc_dates' value='true' /></div>
|
660 |
+
<ul class="two-columns">
|
661 |
+
<li class='mc-month-format'>
|
662 |
+
<label for='mc_month_format'><?php _e('Month format (calendar headings)','my-calendar'); ?></label><br /><input type="text" id="mc_month_format" name="mc_month_format" value="<?php if ( get_option('mc_month_format') == "") { echo ''; } else { echo esc_attr( get_option( 'mc_month_format') ); } ?>" /> <code><?php _e('Now:','my-calendar'); ?> <?php if ( get_option('mc_month_format') == '') { echo date_i18n( 'F Y' ); } else { echo date_i18n( get_option('mc_month_format') ); } ?></code>
|
663 |
+
<li class='mc-time-format'>
|
664 |
+
<label for="mc_time_format"><?php _e('Time format','my-calendar'); ?></label><br /><input type="text" id="mc_time_format" name="mc_time_format" value="<?php if ( get_option('mc_time_format') == "") { echo ''; } else { echo esc_attr( get_option( 'mc_time_format') ); } ?>" /> <code><?php _e('Now:','my-calendar'); ?> <?php if ( get_option('mc_time_format') == '') { echo date_i18n( get_option('time_format') ); } else { echo date_i18n( get_option('mc_time_format') ); } ?></code>
|
665 |
+
</li>
|
666 |
+
<li class='mc-week-format'>
|
667 |
+
<label for="mc_week_format"><?php _e('Date in grid mode, week view','my-calendar'); ?></label><br /><input type="text" id="mc_week_format" name="my_calendar_week_format" value="<?php if ( get_option('mc_week_format') == "") { echo ''; } else { echo esc_attr( get_option( 'mc_week_format') ); } ?>" /> <code><?php _e('Now:','my-calendar'); ?> <?php if ( get_option('mc_week_format') == '') { echo date_i18n('M j, \'y'); } else { echo date_i18n( get_option('mc_week_format') ); } ?></code>
|
668 |
+
</li>
|
669 |
+
<li class='mc-date-format'>
|
670 |
+
<label for="mc_date_format"><?php _e('Date Format in other views','my-calendar'); ?></label><br /><input type="text" id="mc_date_format" name="mc_date_format" value="<?php if ( get_option('mc_date_format') == "") { echo esc_attr( get_option('date_format') ); } else { echo esc_attr( get_option( 'mc_date_format') ); } ?>" /> <code><?php _e('Now:','my-calendar'); ?> <?php if ( get_option('mc_date_format') == '') { echo date_i18n(get_option('date_format')); } else { echo date_i18n( get_option('mc_date_format') ); } ?></code>
|
671 |
+
</li>
|
672 |
+
<li>
|
673 |
+
<?php _e('Date formats use the same syntax as the <a href="http://php.net/date">PHP <code>date()</code> function</a>. Save options to update sample output.','my-calendar'); ?>
|
674 |
+
</li>
|
675 |
+
</ul>
|
676 |
+
</fieldset>
|
677 |
+
<p>
|
678 |
+
<input type="submit" name="save" class="button-primary" value="<?php _e('Save Date/Time Settings','my-calendar'); ?>" />
|
679 |
+
</p>
|
680 |
+
</form>
|
681 |
+
</div>
|
682 |
+
</div>
|
683 |
+
</div>
|
684 |
+
|
685 |
+
|
686 |
<div class="ui-sortable meta-box-sortables">
|
687 |
<div class="postbox" id="my-calendar-input">
|
688 |
<h3><?php _e('Calendar Input Settings','my-calendar'); ?></h3>
|
my-calendar-shortcodes.php
CHANGED
@@ -1,6 +1,4 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
function my_calendar_insert($atts,$content=null) {
|
5 |
extract(shortcode_atts(array(
|
6 |
'name' => 'all',
|
@@ -14,6 +12,7 @@ function my_calendar_insert($atts,$content=null) {
|
|
14 |
'ltype' => '',
|
15 |
'lvalue' => '',
|
16 |
'author' => 'all',
|
|
|
17 |
'id' => 'jd-calendar',
|
18 |
'template' => ''
|
19 |
), $atts));
|
@@ -23,7 +22,7 @@ function my_calendar_insert($atts,$content=null) {
|
|
23 |
}
|
24 |
}
|
25 |
//apply_filters( 'mc_filter_calendar_name',$all_styles,$styles );
|
26 |
-
return my_calendar($name,$format,$category,$showkey,$shownav,$showjump,$toggle,$time, $ltype, $lvalue, $id, $template,$content,$author );
|
27 |
}
|
28 |
|
29 |
function my_calendar_insert_upcoming($atts) {
|
@@ -37,7 +36,8 @@ function my_calendar_insert_upcoming($atts) {
|
|
37 |
'order' => 'asc',
|
38 |
'skip' => '0',
|
39 |
'show_today' => 'yes',
|
40 |
-
'author' => 'default'
|
|
|
41 |
), $atts));
|
42 |
return my_calendar_upcoming_events($before, $after, $type, $category, $template, $fallback, $order, $skip, $show_today, $author );
|
43 |
}
|
@@ -46,6 +46,7 @@ function my_calendar_insert_today($atts) {
|
|
46 |
extract(shortcode_atts(array(
|
47 |
'category' => 'default',
|
48 |
'author' => 'default',
|
|
|
49 |
'template' => 'default',
|
50 |
'fallback' => ''
|
51 |
), $atts));
|
1 |
<?php
|
|
|
|
|
2 |
function my_calendar_insert($atts,$content=null) {
|
3 |
extract(shortcode_atts(array(
|
4 |
'name' => 'all',
|
12 |
'ltype' => '',
|
13 |
'lvalue' => '',
|
14 |
'author' => 'all',
|
15 |
+
'host' => 'all',
|
16 |
'id' => 'jd-calendar',
|
17 |
'template' => ''
|
18 |
), $atts));
|
22 |
}
|
23 |
}
|
24 |
//apply_filters( 'mc_filter_calendar_name',$all_styles,$styles );
|
25 |
+
return my_calendar($name,$format,$category,$showkey,$shownav,$showjump,$toggle,$time, $ltype, $lvalue, $id, $template,$content,$author,$host );
|
26 |
}
|
27 |
|
28 |
function my_calendar_insert_upcoming($atts) {
|
36 |
'order' => 'asc',
|
37 |
'skip' => '0',
|
38 |
'show_today' => 'yes',
|
39 |
+
'author' => 'default',
|
40 |
+
'host' => 'default'
|
41 |
), $atts));
|
42 |
return my_calendar_upcoming_events($before, $after, $type, $category, $template, $fallback, $order, $skip, $show_today, $author );
|
43 |
}
|
46 |
extract(shortcode_atts(array(
|
47 |
'category' => 'default',
|
48 |
'author' => 'default',
|
49 |
+
'host' => 'default',
|
50 |
'template' => 'default',
|
51 |
'fallback' => ''
|
52 |
), $atts));
|
my-calendar-styles.php
CHANGED
@@ -64,6 +64,7 @@ function edit_my_calendar_styles() {
|
|
64 |
global $wpdb;
|
65 |
$wp_plugin_dir = plugin_dir_path( __FILE__ );
|
66 |
$mcdb = $wpdb;
|
|
|
67 |
// We can't use this page unless My Calendar is installed/upgraded
|
68 |
check_my_calendar();
|
69 |
if ( isset( $_POST['mc_edit_style'] ) ) {
|
@@ -79,10 +80,10 @@ function edit_my_calendar_styles() {
|
|
79 |
delete_option('mc_file_permissions');
|
80 |
delete_option('mc_style');
|
81 |
}
|
82 |
-
if ( $wrote_styles
|
83 |
-
$message
|
84 |
} else {
|
85 |
-
$message
|
86 |
}
|
87 |
|
88 |
$mc_show_css = ( empty($_POST['mc_show_css']))?'':$_POST['mc_show_css'];
|
64 |
global $wpdb;
|
65 |
$wp_plugin_dir = plugin_dir_path( __FILE__ );
|
66 |
$mcdb = $wpdb;
|
67 |
+
$wrote_styles = '';
|
68 |
// We can't use this page unless My Calendar is installed/upgraded
|
69 |
check_my_calendar();
|
70 |
if ( isset( $_POST['mc_edit_style'] ) ) {
|
80 |
delete_option('mc_file_permissions');
|
81 |
delete_option('mc_style');
|
82 |
}
|
83 |
+
if ( $wrote_styles === 'disabled' ) {
|
84 |
+
$message = "<p>".__( "Styles are disabled, and were not edited.",'my-calendar')."</p>";
|
85 |
} else {
|
86 |
+
$message = ( $wrote_styles == true)?'<p>'. __('The stylesheet has been updated.', 'my-calendar') .'</p>':'<p><strong>'. __('Write Error! Please verify write permissions on the style file.', 'my-calendar') .'</strong></p>';
|
87 |
}
|
88 |
|
89 |
$mc_show_css = ( empty($_POST['mc_show_css']))?'':$_POST['mc_show_css'];
|
my-calendar-templates.php
CHANGED
@@ -10,7 +10,7 @@ function jd_draw_template($array,$template,$type='list') {
|
|
10 |
} else {
|
11 |
if ( strpos( $template, "{".$key ) !== false ) {
|
12 |
if ($type != 'list') {
|
13 |
-
if ( $key == 'link' && $value == '') { $value = ( get_option('mc_uri') != '' )?get_option('mc_uri'):
|
14 |
if ( $key != 'guid') { $value = htmlentities($value); }
|
15 |
}
|
16 |
if ( strpos( $template, "{".$key." " ) !== false ) { // only do preg_match if appropriate
|
@@ -94,14 +94,16 @@ function mc_hcard( $event, $address='true', $map='true', $source='event' ) {
|
|
94 |
$hcard = "<div class=\"address vcard\">";
|
95 |
if ( $address == 'true' ) {
|
96 |
$hcard .= "<div class=\"adr\">";
|
97 |
-
if ($event_label != "") {$hcard .= "<strong class=\"org\">".$event_label."</strong><br />"; }
|
|
|
98 |
if ($event_street != "") {$hcard .= "<div class=\"street-address\">".$event_street."</div>";}
|
99 |
if ($event_street2 != "") { $hcard .= "<div class=\"street-address\">".$event_street2."</div>"; }
|
100 |
-
if ($event_city != "") {$hcard .= "<span class=\"locality\">".$event_city."</span>, ";}
|
101 |
if ($event_state != "") {$hcard .= "<span class=\"region\">".$event_state."</span> ";}
|
102 |
if ($event_postcode != "") {$hcard .= " <span class=\"postal-code\">".$event_postcode."</span>";}
|
103 |
if ($event_country != "") { $hcard .= "<div class=\"country-name\">".$event_country."</div>";}
|
104 |
if ($event_phone != "") { $hcard .= "<div class=\"tel\">".$event_phone."</div>";}
|
|
|
105 |
$hcard .= "</div>";
|
106 |
}
|
107 |
if ( $map == 'true' ) {
|
@@ -121,8 +123,8 @@ function event_as_array($event,$type='html') {
|
|
121 |
$details = array();
|
122 |
$date_format = ( get_option('mc_date_format') != '' )?get_option('mc_date_format'):get_option('date_format');
|
123 |
$dateid = $event->occur_id;
|
124 |
-
$month_date = date('dS',strtotime( $event->occur_begin ) );
|
125 |
-
$day_name = date_i18n('l',strtotime($event->occur_begin));
|
126 |
$week_number = mc_ordinal( week_of_month( date('j',strtotime($event->occur_begin) ) ) +1 );
|
127 |
$id = $event->event_id;
|
128 |
$offset = (60*60*get_option('gmt_offset'));
|
@@ -162,9 +164,14 @@ function event_as_array($event,$type='html') {
|
|
162 |
$details['repeats'] = $event->event_repeats;
|
163 |
$real_end_date = $event->occur_end;
|
164 |
$date = date_i18n( $date_format,strtotime( $event->occur_begin ) );
|
|
|
165 |
$date_end = date_i18n( $date_format,strtotime($real_end_date) );
|
|
|
|
|
|
|
166 |
$details['image'] = ( $event->event_image != '' )?"<img src='$event->event_image' alt='' class='mc-image' />":'';
|
167 |
-
|
|
|
168 |
$endtime = ( date( 'H:i:s', strtotime($event->occur_end) ) == '00:00:00')?'23:59:00':date( 'H:i:s',strtotime($event->occur_end) );
|
169 |
$details['endtime'] = ( $event->occur_end == $event->occur_begin || $event->event_hide_end == 1 )?'':date_i18n( get_option('mc_time_format'),strtotime( $endtime ));
|
170 |
$tz = mc_user_timezone();
|
@@ -175,9 +182,8 @@ function event_as_array($event,$type='html') {
|
|
175 |
$details['endusertime'] = ( $local_begin == $local_end )?'':"$local_end";
|
176 |
} else {
|
177 |
$details['usertime'] = $details['time'];
|
178 |
-
$details['endusertime'] = ( $details['time'] == $details['endtime'] )?'':$details['endtime'];
|
179 |
}
|
180 |
-
|
181 |
$offset = get_option('gmt_offset'); // reset offset in hours
|
182 |
$os = strtotime($event->occur_begin);
|
183 |
$oe = strtotime($event->occur_end);
|
@@ -187,7 +193,9 @@ function event_as_array($event,$type='html') {
|
|
187 |
$details['ical_end'] = $dtend;
|
188 |
$ical_link = mc_build_url( array('vcal'=>$dateid), array('month','dy','yr','ltype','loc','mcat','format'), get_option( 'mc_uri' ) );
|
189 |
$details['ical'] = $ical_link;
|
190 |
-
|
|
|
|
|
191 |
$details['ical_html'] = "<a class='ical' rel='nofollow' href='$ical_link'>".__('iCal','my-calendar')."</a>";
|
192 |
$details['dtstart'] = date( 'Y-m-d\TH:i:s', strtotime( $event->occur_begin ) );// hcal formatted
|
193 |
$details['dtend'] = date( 'Y-m-d\TH:i:s', strtotime($real_end_date.' '.$endtime) ); //hcal formatted end
|
@@ -220,6 +228,7 @@ function event_as_array($event,$type='html') {
|
|
220 |
|
221 |
$details['description'] = ( get_option('mc_process_shortcodes') == 'true' )?apply_filters('the_content',$event->event_desc):wpautop(stripslashes($event->event_desc));
|
222 |
$details['description_raw'] = stripslashes($event->event_desc);
|
|
|
223 |
$details['link_title'] = ($details['link'] != '')?"<a href='".$event->event_link."'>".stripslashes($event->event_title)."</a>":stripslashes($event->event_title);
|
224 |
$details['location'] = stripslashes($event->event_label);
|
225 |
$details['street'] = stripslashes($event->event_street);
|
@@ -233,6 +242,7 @@ function event_as_array($event,$type='html') {
|
|
233 |
$details['link_map'] = $map;
|
234 |
$details['shortdesc'] = ( get_option('mc_process_shortcodes') == 'true' )?apply_filters('the_content',$event->event_short):wpautop(stripslashes($event->event_short));
|
235 |
$details['shortdesc_raw'] = stripslashes($event->event_short);
|
|
|
236 |
$details['event_open'] = $event_open;
|
237 |
$details['icon'] = $category_icon;
|
238 |
$details['icon_html'] = "<img src='$category_icon' class='mc-category-icon' alt='".__('Category','my-calendar').": ".esc_attr($event->category_name)."' />";
|
@@ -254,7 +264,7 @@ function event_as_array($event,$type='html') {
|
|
254 |
$details['id'] = $id;
|
255 |
$details['group'] = $event->event_group_id;
|
256 |
$details['event_span'] = $event->event_span;
|
257 |
-
$details['datespan'] = ($event->event_span !=
|
258 |
$details['multidate'] = mc_format_date_span( $dates, 'complex', "<span class='fallback-date'>$date</span><span class='separator'>,</span> <span class='fallback-time'>$details[time]</span>–<span class='fallback-endtime'>$details[endtime]</span>" );
|
259 |
// RSS guid
|
260 |
$details['region'] = $event->event_region;
|
@@ -268,15 +278,18 @@ function event_as_array($event,$type='html') {
|
|
268 |
return $details;
|
269 |
}
|
270 |
|
271 |
-
function mc_event_date_span( $group_id, $event_span ) {
|
272 |
global $wpdb;
|
273 |
$mcdb = $wpdb;
|
274 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
275 |
-
$group_id = (int) $group_id;
|
276 |
-
if ( $group_id == 0
|
277 |
-
|
278 |
-
|
279 |
-
|
|
|
|
|
|
|
280 |
}
|
281 |
function mc_format_date_span( $dates, $display='simple',$default='' ) {
|
282 |
if ( !$dates ) return $default;
|
10 |
} else {
|
11 |
if ( strpos( $template, "{".$key ) !== false ) {
|
12 |
if ($type != 'list') {
|
13 |
+
if ( $key == 'link' && $value == '') { $value = ( get_option('mc_uri') != '' )?get_option('mc_uri'):home_url(); }
|
14 |
if ( $key != 'guid') { $value = htmlentities($value); }
|
15 |
}
|
16 |
if ( strpos( $template, "{".$key." " ) !== false ) { // only do preg_match if appropriate
|
94 |
$hcard = "<div class=\"address vcard\">";
|
95 |
if ( $address == 'true' ) {
|
96 |
$hcard .= "<div class=\"adr\">";
|
97 |
+
if ($event_label != "") {$hcard .= "<strong class=\"org\">".$event_label."</strong><br />"; }
|
98 |
+
$hcard .= ( $event_street.$event_street2.$event_city.$event_state.$event_postcode.$event_country.$event_phone == '' )?'':"<div class='sub-address'>";
|
99 |
if ($event_street != "") {$hcard .= "<div class=\"street-address\">".$event_street."</div>";}
|
100 |
if ($event_street2 != "") { $hcard .= "<div class=\"street-address\">".$event_street2."</div>"; }
|
101 |
+
if ($event_city != "") {$hcard .= "<span class=\"locality\">".$event_city."</span><span class='sep'>, </span>";}
|
102 |
if ($event_state != "") {$hcard .= "<span class=\"region\">".$event_state."</span> ";}
|
103 |
if ($event_postcode != "") {$hcard .= " <span class=\"postal-code\">".$event_postcode."</span>";}
|
104 |
if ($event_country != "") { $hcard .= "<div class=\"country-name\">".$event_country."</div>";}
|
105 |
if ($event_phone != "") { $hcard .= "<div class=\"tel\">".$event_phone."</div>";}
|
106 |
+
$hcard .= ( $event_street.$event_street2.$event_city.$event_state.$event_postcode.$event_country.$event_phone == '' )?'':"</div>";
|
107 |
$hcard .= "</div>";
|
108 |
}
|
109 |
if ( $map == 'true' ) {
|
123 |
$details = array();
|
124 |
$date_format = ( get_option('mc_date_format') != '' )?get_option('mc_date_format'):get_option('date_format');
|
125 |
$dateid = $event->occur_id;
|
126 |
+
$month_date = date( 'dS',strtotime( $event->occur_begin ) );
|
127 |
+
$day_name = date_i18n( 'l',strtotime( $event->occur_begin ) );
|
128 |
$week_number = mc_ordinal( week_of_month( date('j',strtotime($event->occur_begin) ) ) +1 );
|
129 |
$id = $event->event_id;
|
130 |
$offset = (60*60*get_option('gmt_offset'));
|
164 |
$details['repeats'] = $event->event_repeats;
|
165 |
$real_end_date = $event->occur_end;
|
166 |
$date = date_i18n( $date_format,strtotime( $event->occur_begin ) );
|
167 |
+
$date_utc = date_i18n( $date_format, $event->ts_occur_begin );
|
168 |
$date_end = date_i18n( $date_format,strtotime($real_end_date) );
|
169 |
+
$date_end_utc = date_i18n( $date_format, $event->ts_occur_end );
|
170 |
+
$details['date_utc'] = $date_utc;
|
171 |
+
$details['date_end_utc'] = $date_end_utc;
|
172 |
$details['image'] = ( $event->event_image != '' )?"<img src='$event->event_image' alt='' class='mc-image' />":'';
|
173 |
+
//$details['time'] = ( date( 'H:i:s', strtotime($event->occur_begin) ) == '00:00:00' )?get_option( 'mc_notime_text' ):date(get_option('mc_time_format'),strtotime($event->occur_begin));
|
174 |
+
$details['time'] = ( date( 'H:i:s', strtotime( $event->occur_begin ) ) == '00:00:00' )?get_option( 'mc_notime_text' ):date(get_option('mc_time_format'), strtotime( $event->occur_begin ) );
|
175 |
$endtime = ( date( 'H:i:s', strtotime($event->occur_end) ) == '00:00:00')?'23:59:00':date( 'H:i:s',strtotime($event->occur_end) );
|
176 |
$details['endtime'] = ( $event->occur_end == $event->occur_begin || $event->event_hide_end == 1 )?'':date_i18n( get_option('mc_time_format'),strtotime( $endtime ));
|
177 |
$tz = mc_user_timezone();
|
182 |
$details['endusertime'] = ( $local_begin == $local_end )?'':"$local_end";
|
183 |
} else {
|
184 |
$details['usertime'] = $details['time'];
|
185 |
+
$details['endusertime'] = ( $details['time'] == $details['endtime'] )?'':$details['endtime'];
|
186 |
}
|
|
|
187 |
$offset = get_option('gmt_offset'); // reset offset in hours
|
188 |
$os = strtotime($event->occur_begin);
|
189 |
$oe = strtotime($event->occur_end);
|
193 |
$details['ical_end'] = $dtend;
|
194 |
$ical_link = mc_build_url( array('vcal'=>$dateid), array('month','dy','yr','ltype','loc','mcat','format'), get_option( 'mc_uri' ) );
|
195 |
$details['ical'] = $ical_link;
|
196 |
+
$date_arr = array('occur_begin'=>$event->occur_begin,'occur_end'=>$event->occur_end );
|
197 |
+
$date_obj = (object) $date_arr;
|
198 |
+
$dates = mc_event_date_span( $event->event_group_id, $event->event_span, array( 0=>$date_obj ) );
|
199 |
$details['ical_html'] = "<a class='ical' rel='nofollow' href='$ical_link'>".__('iCal','my-calendar')."</a>";
|
200 |
$details['dtstart'] = date( 'Y-m-d\TH:i:s', strtotime( $event->occur_begin ) );// hcal formatted
|
201 |
$details['dtend'] = date( 'Y-m-d\TH:i:s', strtotime($real_end_date.' '.$endtime) ); //hcal formatted end
|
228 |
|
229 |
$details['description'] = ( get_option('mc_process_shortcodes') == 'true' )?apply_filters('the_content',$event->event_desc):wpautop(stripslashes($event->event_desc));
|
230 |
$details['description_raw'] = stripslashes($event->event_desc);
|
231 |
+
$details['description_stripped'] = strip_tags(stripslashes($event->event_desc));
|
232 |
$details['link_title'] = ($details['link'] != '')?"<a href='".$event->event_link."'>".stripslashes($event->event_title)."</a>":stripslashes($event->event_title);
|
233 |
$details['location'] = stripslashes($event->event_label);
|
234 |
$details['street'] = stripslashes($event->event_street);
|
242 |
$details['link_map'] = $map;
|
243 |
$details['shortdesc'] = ( get_option('mc_process_shortcodes') == 'true' )?apply_filters('the_content',$event->event_short):wpautop(stripslashes($event->event_short));
|
244 |
$details['shortdesc_raw'] = stripslashes($event->event_short);
|
245 |
+
$details['shortdesc_stripped'] = strip_tags(stripslashes($event->event_short));
|
246 |
$details['event_open'] = $event_open;
|
247 |
$details['icon'] = $category_icon;
|
248 |
$details['icon_html'] = "<img src='$category_icon' class='mc-category-icon' alt='".__('Category','my-calendar').": ".esc_attr($event->category_name)."' />";
|
264 |
$details['id'] = $id;
|
265 |
$details['group'] = $event->event_group_id;
|
266 |
$details['event_span'] = $event->event_span;
|
267 |
+
$details['datespan'] = ($event->event_span == 1 || ($details['date'] != $details['enddate']) )?mc_format_date_span( $dates ):$date;
|
268 |
$details['multidate'] = mc_format_date_span( $dates, 'complex', "<span class='fallback-date'>$date</span><span class='separator'>,</span> <span class='fallback-time'>$details[time]</span>–<span class='fallback-endtime'>$details[endtime]</span>" );
|
269 |
// RSS guid
|
270 |
$details['region'] = $event->event_region;
|
278 |
return $details;
|
279 |
}
|
280 |
|
281 |
+
function mc_event_date_span( $group_id, $event_span, $dates=array() ) {
|
282 |
global $wpdb;
|
283 |
$mcdb = $wpdb;
|
284 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
285 |
+
$group_id = (int) $group_id;
|
286 |
+
if ( $group_id == 0 && $event_span != 1 ) {
|
287 |
+
return $dates;
|
288 |
+
} else {
|
289 |
+
$sql = "SELECT occur_begin, occur_end FROM ".my_calendar_event_table()." WHERE occur_group_id = $group_id ORDER BY occur_begin ASC";
|
290 |
+
$dates = $mcdb->get_results( $sql );
|
291 |
+
return $dates;
|
292 |
+
}
|
293 |
}
|
294 |
function mc_format_date_span( $dates, $display='simple',$default='' ) {
|
295 |
if ( !$dates ) return $default;
|
my-calendar-templating.php
CHANGED
@@ -19,6 +19,18 @@ function edit_mc_templates() {
|
|
19 |
echo "<div class=\"updated\"><p><strong>".__('Grid Output Template saved','my-calendar').".</strong></p></div>";
|
20 |
}
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
if ( isset($_POST['mc_list_template'] ) ) {
|
23 |
$nonce=$_REQUEST['_wpnonce'];
|
24 |
if ( !wp_verify_nonce($nonce,'my-calendar-nonce') ) die("Security check failed");
|
@@ -52,9 +64,11 @@ function edit_mc_templates() {
|
|
52 |
update_option( 'mc_use_details_template',( empty($_POST['mc_use_details_template'])?0:1 ) );
|
53 |
echo "<div class=\"updated\"><p><strong>".__('Event Details Template saved','my-calendar').".</strong></p></div>";
|
54 |
}
|
55 |
-
global $grid_template, $list_template, $mini_template, $single_template;
|
56 |
$mc_grid_template = stripslashes( ($templates['grid']!='')?$templates['grid']:$grid_template );
|
57 |
$mc_use_grid_template = get_option('mc_use_grid_template');
|
|
|
|
|
58 |
$mc_list_template = stripslashes( ($templates['list']!='')?$templates['list']:$list_template );
|
59 |
$mc_use_list_template = get_option('mc_use_list_template');
|
60 |
$mc_mini_template = stripslashes( ($templates['mini']!='')?$templates['mini']:$mini_template );
|
@@ -153,6 +167,28 @@ function edit_mc_templates() {
|
|
153 |
</div>
|
154 |
</div>
|
155 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
</div>
|
157 |
</div>
|
158 |
|
19 |
echo "<div class=\"updated\"><p><strong>".__('Grid Output Template saved','my-calendar').".</strong></p></div>";
|
20 |
}
|
21 |
|
22 |
+
if ( isset($_POST['mc_rss_template'] ) ) {
|
23 |
+
$nonce=$_REQUEST['_wpnonce'];
|
24 |
+
if ( !wp_verify_nonce($nonce,'my-calendar-nonce') ) die("Security check failed");
|
25 |
+
|
26 |
+
$mc_rss_template = $_POST['mc_rss_template'];
|
27 |
+
$templates['rss'] = $mc_rss_template;
|
28 |
+
update_option( 'mc_templates', $templates );
|
29 |
+
update_option( 'mc_use_rss_template',( empty($_POST['mc_use_rss_template'])?0:1 ) );
|
30 |
+
|
31 |
+
echo "<div class=\"updated\"><p><strong>".__('RSS Feed Output Template saved','my-calendar').".</strong></p></div>";
|
32 |
+
}
|
33 |
+
|
34 |
if ( isset($_POST['mc_list_template'] ) ) {
|
35 |
$nonce=$_REQUEST['_wpnonce'];
|
36 |
if ( !wp_verify_nonce($nonce,'my-calendar-nonce') ) die("Security check failed");
|
64 |
update_option( 'mc_use_details_template',( empty($_POST['mc_use_details_template'])?0:1 ) );
|
65 |
echo "<div class=\"updated\"><p><strong>".__('Event Details Template saved','my-calendar').".</strong></p></div>";
|
66 |
}
|
67 |
+
global $grid_template, $list_template, $mini_template, $single_template, $rss_template;
|
68 |
$mc_grid_template = stripslashes( ($templates['grid']!='')?$templates['grid']:$grid_template );
|
69 |
$mc_use_grid_template = get_option('mc_use_grid_template');
|
70 |
+
$mc_rss_template = stripslashes( ($templates['rss']!='')?$templates['rss']:$rss_template );
|
71 |
+
$mc_use_rss_template = get_option('mc_use_rss_template');
|
72 |
$mc_list_template = stripslashes( ($templates['list']!='')?$templates['list']:$list_template );
|
73 |
$mc_use_list_template = get_option('mc_use_list_template');
|
74 |
$mc_mini_template = stripslashes( ($templates['mini']!='')?$templates['mini']:$mini_template );
|
167 |
</div>
|
168 |
</div>
|
169 |
</div>
|
170 |
+
|
171 |
+
<div class="ui-sortable meta-box-sortables">
|
172 |
+
<div class="postbox">
|
173 |
+
<h3><?php _e('My Calendar: RSS Event Template','my-calendar'); ?></h3>
|
174 |
+
<div class="inside">
|
175 |
+
<p><?php _e('Notice: HTML templates are very forgiving of errors. RSS templates are not. Be sure to test your changes.','my-calendar'); ?></p>
|
176 |
+
<form method="post" action="<?php echo admin_url("admin.php?page=my-calendar-templates"); ?>">
|
177 |
+
<div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
|
178 |
+
<p>
|
179 |
+
<input type="checkbox" id="mc_use_rss_template" name="mc_use_rss_template" value="1" <?php mc_is_checked('mc_use_rss_template',1); ?>/> <label for="mc_use_grid_template"><?php _e('Use this custom RSS event template','my-calendar'); ?></label>
|
180 |
+
</p>
|
181 |
+
<p>
|
182 |
+
<label for="mc_rss_template"><?php _e('Your custom template for events in the RSS feed.','my-calendar'); ?></label><br /><textarea id="mc_rss_template" name="mc_rss_template" class="template-editor" rows="12" cols="76"><?php echo $mc_rss_template; ?></textarea>
|
183 |
+
</p>
|
184 |
+
<p>
|
185 |
+
<input type="submit" name="save" class="button-primary" value="<?php _e('Save RSS Template','my-calendar'); ?>" />
|
186 |
+
</p>
|
187 |
+
</form>
|
188 |
+
</div>
|
189 |
+
</div>
|
190 |
+
</div>
|
191 |
+
|
192 |
</div>
|
193 |
</div>
|
194 |
|
my-calendar-widgets.php
CHANGED
@@ -12,6 +12,7 @@ function widget($args, $instance) {
|
|
12 |
$the_substitute = $instance['my_calendar_no_events_text'];
|
13 |
$the_category = ($instance['my_calendar_today_category']=='')?'default':esc_attr($instance['my_calendar_today_category']);
|
14 |
$author = ( !isset($instance['my_calendar_today_author']) || $instance['my_calendar_today_author']=='')?'all':esc_attr($instance['my_calendar_today_author']);
|
|
|
15 |
$widget_link = (!empty($instance['my_calendar_today_linked']) && $instance['my_calendar_today_linked']=='yes')?get_option('mc_uri'):'';
|
16 |
$widget_link = ( !empty($instance['mc_link']) )?esc_url($instance['mc_link']):$widget_link;
|
17 |
$widget_title = empty($the_title) ? '' : $the_title;
|
@@ -19,7 +20,7 @@ function widget($args, $instance) {
|
|
19 |
if ( strpos($widget_title,'{date}') !== false ) { $widget_title = str_replace( '{date}',date_i18n(get_option('mc_date_format'),time()+$offset),$widget_title ); }
|
20 |
$widget_title = ($widget_link=='') ? $widget_title : "<a href='$widget_link'>$widget_title</a>";
|
21 |
$widget_title = ($widget_title!='') ? $before_title . $widget_title . $after_title : '';
|
22 |
-
$the_events = my_calendar_todays_events($the_category,$the_template,$the_substitute,$author);
|
23 |
if ($the_events != '') {
|
24 |
echo $before_widget;
|
25 |
echo $widget_title;
|
@@ -39,6 +40,7 @@ function form($instance) {
|
|
39 |
if ( $widget_linked == 'yes' ) { $default_link = get_option('mc_uri'); } else { $default_link = ''; }
|
40 |
$widget_link = (!empty($instance['mc_link']))?esc_url($instance['mc_link']):$default_link;
|
41 |
$widget_author = (isset($instance['my_calendar_today_author']))?esc_attr($instance['my_calendar_today_author']):'';
|
|
|
42 |
|
43 |
?>
|
44 |
<p>
|
@@ -71,6 +73,10 @@ function form($instance) {
|
|
71 |
<p>
|
72 |
<label for="<?php echo $this->get_field_id('my_calendar_today_author'); ?>"><?php _e('Author or authors to show:','my-calendar'); ?></label><br />
|
73 |
<input class="widefat" type="text" id="<?php echo $this->get_field_id('my_calendar_today_author'); ?>" name="<?php echo $this->get_field_name('my_calendar_today_author'); ?>" value="<?php echo $widget_author; ?>" /></textarea>
|
|
|
|
|
|
|
|
|
74 |
</p>
|
75 |
<?php
|
76 |
}
|
@@ -84,6 +90,7 @@ function form($instance) {
|
|
84 |
$instance['my_calendar_today_linked'] = strip_tags($new_instance['my_calendar_today_linked']);
|
85 |
$instance['mc_link'] = esc_url($new_instance['mc_link']);
|
86 |
$instance['my_calendar_today_author'] = strip_tags($new_instance['my_calendar_today_author']);
|
|
|
87 |
return $instance;
|
88 |
}
|
89 |
|
@@ -108,12 +115,13 @@ function widget($args, $instance) {
|
|
108 |
$order = esc_attr($instance['my_calendar_upcoming_order']);
|
109 |
$the_category = ($instance['my_calendar_upcoming_category']=='')?'default':esc_attr($instance['my_calendar_upcoming_category']);
|
110 |
$author = ( !isset($instance['my_calendar_upcoming_author']) || $instance['my_calendar_upcoming_author']=='')?'default':esc_attr($instance['my_calendar_upcoming_author']);
|
|
|
111 |
$widget_link = ($instance['my_calendar_upcoming_linked']=='yes')?get_option('mc_uri'):'';
|
112 |
$widget_link = ( !empty($instance['mc_link']) )?esc_url($instance['mc_link']):$widget_link;
|
113 |
$widget_title = empty($the_title) ? '' : $the_title;
|
114 |
$widget_title = ($widget_link=='') ? $widget_title : "<a href='$widget_link'>$widget_title</a>";
|
115 |
$widget_title = ($widget_title!='') ? $before_title . $widget_title . $after_title : '';
|
116 |
-
$the_events = my_calendar_upcoming_events($before,$after,$type,$the_category,$the_template,$the_substitute, $order,$skip, $show_today,$author);
|
117 |
if ($the_events != '') {
|
118 |
echo $before_widget;
|
119 |
echo $widget_title;
|
@@ -132,6 +140,7 @@ function form($instance) {
|
|
132 |
$widget_text = (isset($instance['my_calendar_no_events_text']) )?esc_attr($instance['my_calendar_no_events_text']):'';
|
133 |
$widget_category = (isset($instance['my_calendar_upcoming_category']) )?esc_attr($instance['my_calendar_upcoming_category']):'';
|
134 |
$widget_author = (isset($instance['my_calendar_upcoming_author']) )?esc_attr($instance['my_calendar_upcoming_author']):'';
|
|
|
135 |
$widget_before = (isset($instance['my_calendar_upcoming_before']) )?esc_attr($instance['my_calendar_upcoming_before']):'';
|
136 |
$widget_after = (isset($instance['my_calendar_upcoming_after']) )?esc_attr($instance['my_calendar_upcoming_after']):'';
|
137 |
$widget_show_today = (isset($instance['my_calendar_upcoming_show_today']) )?esc_attr($instance['my_calendar_upcoming_show_today']):'';
|
@@ -169,6 +178,8 @@ function form($instance) {
|
|
169 |
<label for="<?php echo $this->get_field_id('my_calendar_upcoming_type'); ?>"><?php _e('Display upcoming events by:','my-calendar'); ?></label> <select id="<?php echo $this->get_field_id('my_calendar_upcoming_type'); ?>" name="<?php echo $this->get_field_name('my_calendar_upcoming_type'); ?>">
|
170 |
<option value="events" <?php echo ($widget_type == 'events')?'selected="selected"':''; ?>><?php _e('Events (e.g. 2 past, 3 future)','my-calendar') ?></option>
|
171 |
<option value="days" <?php echo ($widget_type == 'days')?'selected="selected"':''; ?>><?php _e('Dates (e.g. 4 days past, 5 forward)','my-calendar') ?></option>
|
|
|
|
|
172 |
</select>
|
173 |
</p>
|
174 |
<p>
|
@@ -179,11 +190,13 @@ function form($instance) {
|
|
179 |
<option value="asc" <?php echo ($widget_order == 'asc')?'selected="selected"':''; ?>><?php _e('Ascending (near to far)','my-calendar') ?></option>
|
180 |
<option value="desc" <?php echo ($widget_order == 'desc')?'selected="selected"':''; ?>><?php _e('Descending (far to near)','my-calendar') ?></option>
|
181 |
</select>
|
182 |
-
</p>
|
|
|
183 |
<p>
|
184 |
<input type="text" id="<?php echo $this->get_field_id('my_calendar_upcoming_after'); ?>" name="<?php echo $this->get_field_name('my_calendar_upcoming_after'); ?>" value="<?php echo $widget_after; ?>" size="1" maxlength="3" /> <label for="<?php echo $this->get_field_id('my_calendar_upcoming_after'); ?>"><?php _e("$widget_type into the future;",'my-calendar'); ?></label><br />
|
185 |
<input type="text" id="<?php echo $this->get_field_id('my_calendar_upcoming_before'); ?>" name="<?php echo $this->get_field_name('my_calendar_upcoming_before'); ?>" value="<?php echo $widget_before; ?>" size="1" maxlength="3" /> <label for="<?php echo $this->get_field_id('my_calendar_upcoming_after'); ?>"><?php _e("$widget_type from the past",'my-calendar'); ?></label>
|
186 |
</p>
|
|
|
187 |
<p>
|
188 |
<input type="checkbox" id="<?php echo $this->get_field_id('my_calendar_upcoming_show_today'); ?>" name="<?php echo $this->get_field_name('my_calendar_upcoming_show_today'); ?>" value="yes"<?php echo ($widget_show_today =='yes' || $widget_show_today == '' )?' checked="checked"':''; ?> /> <label for="<?php echo $this->get_field_id('my_calendar_upcoming_show_today'); ?>"><?php _e("Include today's events",'my-calendar'); ?></label>
|
189 |
</p>
|
@@ -199,6 +212,10 @@ function form($instance) {
|
|
199 |
<label for="<?php echo $this->get_field_id('my_calendar_upcoming_author'); ?>"><?php _e('Author or authors to show:','my-calendar'); ?></label><br />
|
200 |
<input class="widefat" type="text" id="<?php echo $this->get_field_id('my_calendar_upcoming_author'); ?>" name="<?php echo $this->get_field_name('my_calendar_upcoming_author'); ?>" value="<?php echo $widget_author; ?>" /></textarea>
|
201 |
</p>
|
|
|
|
|
|
|
|
|
202 |
<?php
|
203 |
}
|
204 |
|
@@ -209,6 +226,7 @@ function form($instance) {
|
|
209 |
$instance['my_calendar_no_events_text'] = strip_tags($new_instance['my_calendar_no_events_text']);
|
210 |
$instance['my_calendar_upcoming_category'] = strip_tags($new_instance['my_calendar_upcoming_category']);
|
211 |
$instance['my_calendar_upcoming_author'] = strip_tags($new_instance['my_calendar_upcoming_author']);
|
|
|
212 |
$instance['my_calendar_upcoming_before'] = strip_tags($new_instance['my_calendar_upcoming_before']);
|
213 |
$instance['my_calendar_upcoming_after'] = strip_tags($new_instance['my_calendar_upcoming_after']);
|
214 |
$instance['my_calendar_upcoming_show_today'] = ($new_instance['my_calendar_upcoming_show_today']=='yes')?'yes':'no';
|
@@ -222,7 +240,7 @@ function form($instance) {
|
|
222 |
}
|
223 |
|
224 |
// Widget upcoming events
|
225 |
-
function my_calendar_upcoming_events($before='default',$after='default',$type='default',$category='default',$template='default',$substitute='',$order='asc',$skip=0, $show_today='yes',$author='default' ) {
|
226 |
global $wpdb,$default_template,$defaults;
|
227 |
$mcdb = $wpdb;
|
228 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
@@ -249,15 +267,26 @@ function my_calendar_upcoming_events($before='default',$after='default',$type='d
|
|
249 |
$header = "<ul id='upcoming-events'>";
|
250 |
$footer = "</ul>";
|
251 |
$output ='';
|
252 |
-
if ($display_upcoming_type == "days") {
|
253 |
$temp_array = array();
|
254 |
-
|
255 |
-
$
|
256 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
if ( !get_option('mc_skip_holidays_category') || get_option('mc_skip_holidays_category') == '' ) {
|
258 |
$holidays = array();
|
259 |
} else {
|
260 |
-
$holidays = my_calendar_grab_events( $from, $to, get_option('mc_skip_holidays_category'),'','', 'upcoming', $author );
|
261 |
$holiday_array = mc_set_date_array( $holidays );
|
262 |
}
|
263 |
// get events into an easily parseable set, keyed by date.
|
@@ -279,13 +308,16 @@ function my_calendar_upcoming_events($before='default',$after='default',$type='d
|
|
279 |
}
|
280 |
}
|
281 |
$i = 0;
|
|
|
282 |
foreach ( reverse_array($temp_array, true, $order) as $details ) {
|
|
|
283 |
if ( $i < $skip && $skip != 0 ) {
|
284 |
$i++;
|
285 |
} else {
|
286 |
-
$output .=
|
287 |
}
|
288 |
-
|
|
|
289 |
} else {
|
290 |
$caching = ( get_option('mc_caching_enabled') == 'true' )?true:false;
|
291 |
if ( $caching ) {
|
@@ -296,17 +328,17 @@ function my_calendar_upcoming_events($before='default',$after='default',$type='d
|
|
296 |
$events = $cache[$category];
|
297 |
$cache = false; // take cache out of memory
|
298 |
} else {
|
299 |
-
$events = mc_get_all_events($category, $before, $after, $show_today, $author);
|
300 |
$cache[$category] = $events;
|
301 |
set_transient( 'mc_cache_upcoming', $cache, 60*30 );
|
302 |
}
|
303 |
} else {
|
304 |
-
$events = mc_get_all_events($category, $before, $after, $show_today, $author);
|
305 |
$cache[$category] = $events;
|
306 |
set_transient( 'mc_cache_upcoming', $cache, 60*30 );
|
307 |
}
|
308 |
} else {
|
309 |
-
$events = mc_get_all_events($category, $before, $after, $show_today, $author); // grab all events within reasonable proximity
|
310 |
}
|
311 |
if ( !get_option('mc_skip_holidays_category') || get_option('mc_skip_holidays_category') == '' ) {
|
312 |
$holidays = array();
|
@@ -321,7 +353,7 @@ function my_calendar_upcoming_events($before='default',$after='default',$type='d
|
|
321 |
$event_array = mc_holiday_limit( $event_array, $holiday_array ); // if there are holidays, rejigger.
|
322 |
}
|
323 |
}
|
324 |
-
$output .= mc_produce_upcoming_events( $event_array,$template,'list',$order,$skip,$before, $after );
|
325 |
}
|
326 |
if ($output != '') {
|
327 |
$output = $header.$output.$footer;
|
@@ -334,8 +366,7 @@ function mc_span_time( $group_id ) {
|
|
334 |
global $wpdb;
|
335 |
$mcdb = $wpdb;
|
336 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
337 |
-
|
338 |
-
$group_id = (int) $group_id;
|
339 |
$sql = "SELECT event_begin, event_time, event_end, event_endtime FROM ".my_calendar_table()." WHERE event_group_id = $group_id ORDER BY event_begin ASC";
|
340 |
$dates = $mcdb->get_results( $sql );
|
341 |
$count = count($dates);
|
@@ -344,136 +375,149 @@ $group_id = (int) $group_id;
|
|
344 |
$end = $dates[$last]->event_end . ' ' . $dates[$last]->event_endtime;
|
345 |
return array( $begin, $end );
|
346 |
}
|
347 |
-
//
|
348 |
-
function mc_produce_upcoming_events($events,$template,$type='list',$order='asc',$skip=0,$before, $after, $hash=false) {
|
349 |
// $events has +5 before and +5 after if those values are non-zero.
|
350 |
// $events equals array of events based on before/after queries. Nothing has been skipped, order is not set, holidays are removed.
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
385 |
}
|
386 |
-
|
387 |
-
if (
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
$
|
392 |
-
}
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
$near_events[] = $e; // split off another past event
|
399 |
-
$i++;
|
400 |
-
} else if ( $future <= $after && ( !my_calendar_date_comp( $end,$current ) ) ) {
|
401 |
-
$near_events[] = $e; // split off another future event
|
402 |
-
$i++;
|
403 |
-
}
|
404 |
-
if ( my_calendar_date_comp( $beginning,$current ) ) { $past++;
|
405 |
-
} else if ( my_calendar_date_equal( $beginning,$current ) ) { $present = 1;
|
406 |
-
} else { $future++; }
|
407 |
}
|
408 |
-
if (
|
409 |
-
|
|
|
|
|
|
|
|
|
|
|
410 |
}
|
|
|
|
|
|
|
|
|
|
|
411 |
}
|
412 |
}
|
413 |
}
|
414 |
}
|
415 |
}
|
416 |
}
|
417 |
-
$e = false;
|
418 |
-
}
|
419 |
-
$events = $near_events;
|
420 |
-
@usort( $events, "my_calendar_datetime_cmp" ); // sort split events by date
|
421 |
-
// If more items in the list than there should be (possible, due to handling of current-day's events), pop off.
|
422 |
-
$intended = $before + $after;
|
423 |
-
$actual = count($events);
|
424 |
-
if ( $actual > $intended ) {
|
425 |
-
for ( $i=0;$i<($actual-$intended);$i++ ) {
|
426 |
-
array_pop($events);
|
427 |
-
}
|
428 |
}
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
$output .= apply_filters('mc_event_upcoming',"$prepend".jd_draw_template($details,$template,$type)."$append",$event);
|
|
|
463 |
}
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
}
|
468 |
}
|
469 |
-
} else {
|
470 |
-
$output .= '';
|
471 |
}
|
|
|
|
|
|
|
472 |
return $output;
|
473 |
}
|
474 |
|
475 |
// Widget todays events
|
476 |
-
function my_calendar_todays_events($category='default',$template='default',$substitute='',$author='all') {
|
477 |
$caching = ( get_option('mc_caching_enabled') == 'true' )?true:false;
|
478 |
$todays_cache = ($caching)? get_transient('mc_todays_cache') :'';
|
479 |
|
@@ -482,7 +526,6 @@ if ( $caching && is_array($todays_cache) && @$todays_cache[$category] ) { return
|
|
482 |
$mcdb = $wpdb;
|
483 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
484 |
$output = '';
|
485 |
-
$offset = (60*60*get_option('gmt_offset'));
|
486 |
// This function cannot be called unless calendar is up to date
|
487 |
check_my_calendar();
|
488 |
$defaults = get_option('mc_widget_defaults');
|
@@ -492,8 +535,8 @@ if ( $caching && is_array($todays_cache) && @$todays_cache[$category] ) { return
|
|
492 |
$category = ($category == 'default')?$defaults['today']['category']:$category;
|
493 |
$no_event_text = ($substitute == '')?$defaults['today']['text']:$substitute;
|
494 |
|
495 |
-
$from = $to = date( 'Y-m-d',
|
496 |
-
$events = my_calendar_grab_events($from, $to,$category,'','','upcoming',$author);
|
497 |
$header = "<ul id='todays-events'>";
|
498 |
$footer = "</ul>";
|
499 |
$holiday_exists = false;
|
@@ -511,7 +554,7 @@ if ( $caching && is_array($todays_cache) && @$todays_cache[$category] ) { return
|
|
511 |
} else {
|
512 |
if ( !in_array( $event->event_group_id, $groups ) ) {
|
513 |
$event_details = event_as_array($event);
|
514 |
-
$date = date_i18n(get_option('mc_date_format'),
|
515 |
|
516 |
$this_event = '';
|
517 |
if ( $event->event_holiday == 0 ) {
|
@@ -540,7 +583,7 @@ if ( $caching && is_array($todays_cache) && @$todays_cache[$category] ) { return
|
|
540 |
} else {
|
541 |
$return = stripcslashes( $no_event_text );
|
542 |
}
|
543 |
-
$time = strtotime( date( 'Y-m-d H:m:s',
|
544 |
$time_remaining = 24*60*60 - $time;
|
545 |
$todays_cache[$category] = ($caching)?$return:'';
|
546 |
if ( $caching ) set_transient( 'mc_todays_cache', $todays_cache, $time_remaining );
|
12 |
$the_substitute = $instance['my_calendar_no_events_text'];
|
13 |
$the_category = ($instance['my_calendar_today_category']=='')?'default':esc_attr($instance['my_calendar_today_category']);
|
14 |
$author = ( !isset($instance['my_calendar_today_author']) || $instance['my_calendar_today_author']=='')?'all':esc_attr($instance['my_calendar_today_author']);
|
15 |
+
$host = ( !isset($instance['mc_host']) || $instance['mc_host']=='')?'all':esc_attr($instance['mc_host']);
|
16 |
$widget_link = (!empty($instance['my_calendar_today_linked']) && $instance['my_calendar_today_linked']=='yes')?get_option('mc_uri'):'';
|
17 |
$widget_link = ( !empty($instance['mc_link']) )?esc_url($instance['mc_link']):$widget_link;
|
18 |
$widget_title = empty($the_title) ? '' : $the_title;
|
20 |
if ( strpos($widget_title,'{date}') !== false ) { $widget_title = str_replace( '{date}',date_i18n(get_option('mc_date_format'),time()+$offset),$widget_title ); }
|
21 |
$widget_title = ($widget_link=='') ? $widget_title : "<a href='$widget_link'>$widget_title</a>";
|
22 |
$widget_title = ($widget_title!='') ? $before_title . $widget_title . $after_title : '';
|
23 |
+
$the_events = my_calendar_todays_events($the_category,$the_template,$the_substitute,$author, $host);
|
24 |
if ($the_events != '') {
|
25 |
echo $before_widget;
|
26 |
echo $widget_title;
|
40 |
if ( $widget_linked == 'yes' ) { $default_link = get_option('mc_uri'); } else { $default_link = ''; }
|
41 |
$widget_link = (!empty($instance['mc_link']))?esc_url($instance['mc_link']):$default_link;
|
42 |
$widget_author = (isset($instance['my_calendar_today_author']))?esc_attr($instance['my_calendar_today_author']):'';
|
43 |
+
$widget_host = (isset($instance['mc_host']))?esc_attr($instance['mc_host']):'';
|
44 |
|
45 |
?>
|
46 |
<p>
|
73 |
<p>
|
74 |
<label for="<?php echo $this->get_field_id('my_calendar_today_author'); ?>"><?php _e('Author or authors to show:','my-calendar'); ?></label><br />
|
75 |
<input class="widefat" type="text" id="<?php echo $this->get_field_id('my_calendar_today_author'); ?>" name="<?php echo $this->get_field_name('my_calendar_today_author'); ?>" value="<?php echo $widget_author; ?>" /></textarea>
|
76 |
+
</p>
|
77 |
+
<p>
|
78 |
+
<label for="<?php echo $this->get_field_id('mc_host'); ?>"><?php _e('Host or hosts to show:','my-calendar'); ?></label><br />
|
79 |
+
<input class="widefat" type="text" id="<?php echo $this->get_field_id('mc_host'); ?>" name="<?php echo $this->get_field_name('mc_host'); ?>" value="<?php echo $widget_host; ?>" /></textarea>
|
80 |
</p>
|
81 |
<?php
|
82 |
}
|
90 |
$instance['my_calendar_today_linked'] = strip_tags($new_instance['my_calendar_today_linked']);
|
91 |
$instance['mc_link'] = esc_url($new_instance['mc_link']);
|
92 |
$instance['my_calendar_today_author'] = strip_tags($new_instance['my_calendar_today_author']);
|
93 |
+
$instance['mc_host'] = strip_tags($new_instance['mc_host']);
|
94 |
return $instance;
|
95 |
}
|
96 |
|
115 |
$order = esc_attr($instance['my_calendar_upcoming_order']);
|
116 |
$the_category = ($instance['my_calendar_upcoming_category']=='')?'default':esc_attr($instance['my_calendar_upcoming_category']);
|
117 |
$author = ( !isset($instance['my_calendar_upcoming_author']) || $instance['my_calendar_upcoming_author']=='')?'default':esc_attr($instance['my_calendar_upcoming_author']);
|
118 |
+
$host = ( !isset($instance['mc_host']) || $instance['mc_host']=='')?'default':esc_attr($instance['mc_host']);
|
119 |
$widget_link = ($instance['my_calendar_upcoming_linked']=='yes')?get_option('mc_uri'):'';
|
120 |
$widget_link = ( !empty($instance['mc_link']) )?esc_url($instance['mc_link']):$widget_link;
|
121 |
$widget_title = empty($the_title) ? '' : $the_title;
|
122 |
$widget_title = ($widget_link=='') ? $widget_title : "<a href='$widget_link'>$widget_title</a>";
|
123 |
$widget_title = ($widget_title!='') ? $before_title . $widget_title . $after_title : '';
|
124 |
+
$the_events = my_calendar_upcoming_events($before,$after,$type,$the_category,$the_template,$the_substitute, $order,$skip, $show_today,$author, $host);
|
125 |
if ($the_events != '') {
|
126 |
echo $before_widget;
|
127 |
echo $widget_title;
|
140 |
$widget_text = (isset($instance['my_calendar_no_events_text']) )?esc_attr($instance['my_calendar_no_events_text']):'';
|
141 |
$widget_category = (isset($instance['my_calendar_upcoming_category']) )?esc_attr($instance['my_calendar_upcoming_category']):'';
|
142 |
$widget_author = (isset($instance['my_calendar_upcoming_author']) )?esc_attr($instance['my_calendar_upcoming_author']):'';
|
143 |
+
$widget_host = (isset($instance['mc_host']) )?esc_attr($instance['mc_host']):'';
|
144 |
$widget_before = (isset($instance['my_calendar_upcoming_before']) )?esc_attr($instance['my_calendar_upcoming_before']):'';
|
145 |
$widget_after = (isset($instance['my_calendar_upcoming_after']) )?esc_attr($instance['my_calendar_upcoming_after']):'';
|
146 |
$widget_show_today = (isset($instance['my_calendar_upcoming_show_today']) )?esc_attr($instance['my_calendar_upcoming_show_today']):'';
|
178 |
<label for="<?php echo $this->get_field_id('my_calendar_upcoming_type'); ?>"><?php _e('Display upcoming events by:','my-calendar'); ?></label> <select id="<?php echo $this->get_field_id('my_calendar_upcoming_type'); ?>" name="<?php echo $this->get_field_name('my_calendar_upcoming_type'); ?>">
|
179 |
<option value="events" <?php echo ($widget_type == 'events')?'selected="selected"':''; ?>><?php _e('Events (e.g. 2 past, 3 future)','my-calendar') ?></option>
|
180 |
<option value="days" <?php echo ($widget_type == 'days')?'selected="selected"':''; ?>><?php _e('Dates (e.g. 4 days past, 5 forward)','my-calendar') ?></option>
|
181 |
+
<option value="month" <?php echo ($widget_type == 'month')?'selected="selected"':''; ?>><?php _e('Show current month','my-calendar') ?></option>
|
182 |
+
<option value="year" <?php echo ($widget_type == 'year')?'selected="selected"':''; ?>><?php _e('Show current year','my-calendar') ?></option>
|
183 |
</select>
|
184 |
</p>
|
185 |
<p>
|
190 |
<option value="asc" <?php echo ($widget_order == 'asc')?'selected="selected"':''; ?>><?php _e('Ascending (near to far)','my-calendar') ?></option>
|
191 |
<option value="desc" <?php echo ($widget_order == 'desc')?'selected="selected"':''; ?>><?php _e('Descending (far to near)','my-calendar') ?></option>
|
192 |
</select>
|
193 |
+
</p>
|
194 |
+
<?php if ( !( $widget_type == 'month' || $widget_type == 'year' ) ) { ?>
|
195 |
<p>
|
196 |
<input type="text" id="<?php echo $this->get_field_id('my_calendar_upcoming_after'); ?>" name="<?php echo $this->get_field_name('my_calendar_upcoming_after'); ?>" value="<?php echo $widget_after; ?>" size="1" maxlength="3" /> <label for="<?php echo $this->get_field_id('my_calendar_upcoming_after'); ?>"><?php _e("$widget_type into the future;",'my-calendar'); ?></label><br />
|
197 |
<input type="text" id="<?php echo $this->get_field_id('my_calendar_upcoming_before'); ?>" name="<?php echo $this->get_field_name('my_calendar_upcoming_before'); ?>" value="<?php echo $widget_before; ?>" size="1" maxlength="3" /> <label for="<?php echo $this->get_field_id('my_calendar_upcoming_after'); ?>"><?php _e("$widget_type from the past",'my-calendar'); ?></label>
|
198 |
</p>
|
199 |
+
<?php } ?>
|
200 |
<p>
|
201 |
<input type="checkbox" id="<?php echo $this->get_field_id('my_calendar_upcoming_show_today'); ?>" name="<?php echo $this->get_field_name('my_calendar_upcoming_show_today'); ?>" value="yes"<?php echo ($widget_show_today =='yes' || $widget_show_today == '' )?' checked="checked"':''; ?> /> <label for="<?php echo $this->get_field_id('my_calendar_upcoming_show_today'); ?>"><?php _e("Include today's events",'my-calendar'); ?></label>
|
202 |
</p>
|
212 |
<label for="<?php echo $this->get_field_id('my_calendar_upcoming_author'); ?>"><?php _e('Author or authors to show:','my-calendar'); ?></label><br />
|
213 |
<input class="widefat" type="text" id="<?php echo $this->get_field_id('my_calendar_upcoming_author'); ?>" name="<?php echo $this->get_field_name('my_calendar_upcoming_author'); ?>" value="<?php echo $widget_author; ?>" /></textarea>
|
214 |
</p>
|
215 |
+
<p>
|
216 |
+
<label for="<?php echo $this->get_field_id('mc_host'); ?>"><?php _e('Host or hosts to show:','my-calendar'); ?></label><br />
|
217 |
+
<input class="widefat" type="text" id="<?php echo $this->get_field_id('mc_host'); ?>" name="<?php echo $this->get_field_name('mc_host'); ?>" value="<?php echo $widget_host; ?>" /></textarea>
|
218 |
+
</p>
|
219 |
<?php
|
220 |
}
|
221 |
|
226 |
$instance['my_calendar_no_events_text'] = strip_tags($new_instance['my_calendar_no_events_text']);
|
227 |
$instance['my_calendar_upcoming_category'] = strip_tags($new_instance['my_calendar_upcoming_category']);
|
228 |
$instance['my_calendar_upcoming_author'] = strip_tags($new_instance['my_calendar_upcoming_author']);
|
229 |
+
$instance['mc_host'] = strip_tags($new_instance['mc_host']);
|
230 |
$instance['my_calendar_upcoming_before'] = strip_tags($new_instance['my_calendar_upcoming_before']);
|
231 |
$instance['my_calendar_upcoming_after'] = strip_tags($new_instance['my_calendar_upcoming_after']);
|
232 |
$instance['my_calendar_upcoming_show_today'] = ($new_instance['my_calendar_upcoming_show_today']=='yes')?'yes':'no';
|
240 |
}
|
241 |
|
242 |
// Widget upcoming events
|
243 |
+
function my_calendar_upcoming_events($before='default',$after='default',$type='default',$category='default',$template='default',$substitute='',$order='asc',$skip=0, $show_today='yes',$author='default',$host='default' ) {
|
244 |
global $wpdb,$default_template,$defaults;
|
245 |
$mcdb = $wpdb;
|
246 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
267 |
$header = "<ul id='upcoming-events'>";
|
268 |
$footer = "</ul>";
|
269 |
$output ='';
|
270 |
+
if ( $display_upcoming_type == "days" || $display_upcoming_type == "month" || $display_upcoming_type == "year" ) {
|
271 |
$temp_array = array();
|
272 |
+
$event_array = array();
|
273 |
+
if ( $display_upcoming_type == "days" ) {
|
274 |
+
$from = date('Y-m-d',strtotime("-$before days") );
|
275 |
+
$to = date('Y-m-d',strtotime("+$after days") );
|
276 |
+
}
|
277 |
+
if ( $display_upcoming_type == "month" ) {
|
278 |
+
$from = date('Y-m-1' );
|
279 |
+
$to = date('Y-m-t' );
|
280 |
+
}
|
281 |
+
if ( $display_upcoming_type == "year" ) {
|
282 |
+
$from = date('Y-1-1' );
|
283 |
+
$to = date('Y-12-31' );
|
284 |
+
}
|
285 |
+
$events = my_calendar_grab_events( $from, $to, $category,'','','upcoming',$author, $host );
|
286 |
if ( !get_option('mc_skip_holidays_category') || get_option('mc_skip_holidays_category') == '' ) {
|
287 |
$holidays = array();
|
288 |
} else {
|
289 |
+
$holidays = my_calendar_grab_events( $from, $to, get_option('mc_skip_holidays_category'),'','', 'upcoming', $author, $host );
|
290 |
$holiday_array = mc_set_date_array( $holidays );
|
291 |
}
|
292 |
// get events into an easily parseable set, keyed by date.
|
308 |
}
|
309 |
}
|
310 |
$i = 0;
|
311 |
+
$last_item = '';
|
312 |
foreach ( reverse_array($temp_array, true, $order) as $details ) {
|
313 |
+
$item = jd_draw_template($details,$template);
|
314 |
if ( $i < $skip && $skip != 0 ) {
|
315 |
$i++;
|
316 |
} else {
|
317 |
+
$output .= ( $item == $last_item )?'':"<li>$item</li>";
|
318 |
}
|
319 |
+
$last_item = $item;
|
320 |
+
}
|
321 |
} else {
|
322 |
$caching = ( get_option('mc_caching_enabled') == 'true' )?true:false;
|
323 |
if ( $caching ) {
|
328 |
$events = $cache[$category];
|
329 |
$cache = false; // take cache out of memory
|
330 |
} else {
|
331 |
+
$events = mc_get_all_events($category, $before, $after, $show_today, $author, $host);
|
332 |
$cache[$category] = $events;
|
333 |
set_transient( 'mc_cache_upcoming', $cache, 60*30 );
|
334 |
}
|
335 |
} else {
|
336 |
+
$events = mc_get_all_events($category, $before, $after, $show_today, $author, $host);
|
337 |
$cache[$category] = $events;
|
338 |
set_transient( 'mc_cache_upcoming', $cache, 60*30 );
|
339 |
}
|
340 |
} else {
|
341 |
+
$events = mc_get_all_events($category, $before, $after, $show_today, $author, $host); // grab all events within reasonable proximity
|
342 |
}
|
343 |
if ( !get_option('mc_skip_holidays_category') || get_option('mc_skip_holidays_category') == '' ) {
|
344 |
$holidays = array();
|
353 |
$event_array = mc_holiday_limit( $event_array, $holiday_array ); // if there are holidays, rejigger.
|
354 |
}
|
355 |
}
|
356 |
+
$output .= mc_produce_upcoming_events( $event_array,$template,'list',$order,$skip,$before, $after, $show_today );
|
357 |
}
|
358 |
if ($output != '') {
|
359 |
$output = $header.$output.$footer;
|
366 |
global $wpdb;
|
367 |
$mcdb = $wpdb;
|
368 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
369 |
+
$group_id = (int) $group_id;
|
|
|
370 |
$sql = "SELECT event_begin, event_time, event_end, event_endtime FROM ".my_calendar_table()." WHERE event_group_id = $group_id ORDER BY event_begin ASC";
|
371 |
$dates = $mcdb->get_results( $sql );
|
372 |
$count = count($dates);
|
375 |
$end = $dates[$last]->event_end . ' ' . $dates[$last]->event_endtime;
|
376 |
return array( $begin, $end );
|
377 |
}
|
378 |
+
// function generates the list of upcoming events by event
|
379 |
+
function mc_produce_upcoming_events($events,$template,$type='list',$order='asc',$skip=0,$before, $after, $hash=false, $show_today='yes') {
|
380 |
// $events has +5 before and +5 after if those values are non-zero.
|
381 |
// $events equals array of events based on before/after queries. Nothing has been skipped, order is not set, holidays are removed.
|
382 |
+
$output = '';$near_events = $temp_array = array();$past = $future = 1;
|
383 |
+
$now = current_time( 'timestamp' );
|
384 |
+
$today = date('Y',$now).'-'.date('m',$now).'-'.date('d',$now);
|
385 |
+
@uksort( $events, "my_calendar_timediff_cmp" );// sort all events by proximity to current date
|
386 |
+
$count = count($events);
|
387 |
+
$skip = false;
|
388 |
+
$group = array();
|
389 |
+
$spans = array();
|
390 |
+
$last_date = $today;
|
391 |
+
$extra = 0;
|
392 |
+
$i = 0;
|
393 |
+
// create near_events array
|
394 |
+
$last_event = 0;
|
395 |
+
if ( is_array( $events ) ) {
|
396 |
+
foreach ( $events as $k=>$event ) {
|
397 |
+
if ( $i < $count ) {
|
398 |
+
if ( is_array( $event ) ) {
|
399 |
+
foreach ( $event as $e ) {
|
400 |
+
if ( $e->category_private == 1 && !is_user_logged_in() ) {
|
401 |
+
} else {
|
402 |
+
$beginning = $e->occur_begin;
|
403 |
+
$end = $e->occur_end;
|
404 |
+
// store span time in an array to avoid repeating database query
|
405 |
+
if ( $e->event_span == 1 && ( !isset($spans[ $e->occur_group_id ]) ) ) {
|
406 |
+
// this is a multi-day event: treat each event as if it spanned the entire range of the group.
|
407 |
+
$span_time = mc_span_time($e->occur_group_id);
|
408 |
+
$beginning = $span_time[0];
|
409 |
+
$end = $span_time[1];
|
410 |
+
$spans[ $e->occur_group_id ] = $span_time;
|
411 |
+
} else if ( $e->event_span == 1 && ( isset($spans[ $e->occur_group_id ]) ) ) {
|
412 |
+
$span_time = $spans[ $e->occur_group_id ];
|
413 |
+
$beginning = $span_time[0];
|
414 |
+
$end = $span_time[1];
|
415 |
+
}
|
416 |
+
$current = date('Y-m-d H:i:00',current_time( 'timestamp' ) );
|
417 |
+
if ( $e ) {
|
418 |
+
// if a multi-day event, show only once.
|
419 |
+
if ( $e->occur_group_id != 0 && $e->event_span == 1 && in_array( $e->occur_group_id, $group ) ) {
|
420 |
+
$skip = true;
|
421 |
+
} else {
|
422 |
+
$group[] = $e->occur_group_id; $skip=false;
|
423 |
}
|
424 |
+
// end multi-day reduction
|
425 |
+
if ( !$skip ) {
|
426 |
+
// with this code, I *expected* weekly recurring event with no intervening events to not display correctly...but it does. Not sure why.
|
427 |
+
$same_event = ( $e->occur_id == $last_event )?true:false;
|
428 |
+
if ( $show_today == 'yes' && my_calendar_date_equal( $beginning, $current ) ) {
|
429 |
+
$near_events[] = $e;
|
430 |
+
} else if ( ( $past<=$before && $future<=$after ) ) {
|
431 |
+
$near_events[] = $e; // if neither limit is reached, split off freely
|
432 |
+
} else if ( $past <= $before && ( my_calendar_date_comp( $beginning,$current ) ) ) {
|
433 |
+
$near_events[] = $e; // split off another past event
|
434 |
+
} else if ( $future <= $after && ( !my_calendar_date_comp( $end,$current ) ) ) {
|
435 |
+
$near_events[] = $e; // split off another future event
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
}
|
437 |
+
if ( my_calendar_date_comp( $beginning,$current ) ) {
|
438 |
+
if ( !$same_event ) { $past++; } else { $extra++; }
|
439 |
+
} else if ( my_calendar_date_equal( $beginning,$current ) ) {
|
440 |
+
$present = 1;
|
441 |
+
if ( $show_today == 'yes' ) { $extra++; }
|
442 |
+
} else {
|
443 |
+
if ( !$same_event ) { $future++; } else { $extra++; }
|
444 |
}
|
445 |
+
$last_event = $e->occur_id;
|
446 |
+
$last_date = $beginning;
|
447 |
+
}
|
448 |
+
if ( $past > $before && $future > $after && $show_today != 'yes' ) {
|
449 |
+
break;
|
450 |
}
|
451 |
}
|
452 |
}
|
453 |
}
|
454 |
}
|
455 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
}
|
457 |
+
$e = false;
|
458 |
+
}
|
459 |
+
$events = $near_events;
|
460 |
+
@usort( $events, "my_calendar_datetime_cmp" ); // sort split events by date
|
461 |
+
// If more items in the list than there should be (possible, due to handling of current-day's events), pop off.
|
462 |
+
$intended = $before + $after + $extra;
|
463 |
+
$actual = count($events);
|
464 |
+
if ( $actual > $intended ) {
|
465 |
+
for ( $i=0;$i<($actual-$intended);$i++ ) {
|
466 |
+
array_pop($events);
|
467 |
+
}
|
468 |
+
}
|
469 |
+
if ( is_array( $events ) ) {
|
470 |
+
foreach( array_keys($events) as $key ) {
|
471 |
+
$event =& $events[$key];
|
472 |
+
//echo $event->event_title . " " . $event->event_group_id."<br />";
|
473 |
+
$event_details = event_as_array( $event );
|
474 |
+
if ( get_option( 'mc_event_approve' ) == 'true' ) {
|
475 |
+
if ( $event->event_approved != 0 ) { $temp_array[] = $event_details; }
|
476 |
+
} else {
|
477 |
+
$temp_array[] = $event_details;
|
478 |
+
}
|
479 |
+
}
|
480 |
+
$i = 0;
|
481 |
+
$groups = array();
|
482 |
+
$skips = array();
|
483 |
+
|
484 |
+
foreach( reverse_array($temp_array, true, $order) as $details ) {
|
485 |
+
if ( !in_array( $details['group'], $groups ) ) {
|
486 |
+
$date = date('Y-m-d',strtotime($details['dtstart']));
|
487 |
+
$class = (my_calendar_date_comp( $date,$today )===true)?"past-event":"future-event";
|
488 |
+
if ( my_calendar_date_equal( $date,$today ) ) {
|
489 |
+
$class = "today";
|
490 |
+
}
|
491 |
+
if ( $details['event_span'] == 1 ) {
|
492 |
+
$class = "multiday";
|
493 |
+
}
|
494 |
+
if ($type == 'list') {
|
495 |
+
$prepend = "\n<li class=\"$class\">";
|
496 |
+
$append = "</li>\n";
|
497 |
+
} else {
|
498 |
+
$prepend = $append = '';
|
499 |
+
}
|
500 |
+
if ( $i < $skip && $skip != 0 ) {
|
501 |
+
$i++;
|
502 |
+
} else {
|
503 |
+
if ( !in_array( $details['dateid'], $skips ) ) {
|
504 |
$output .= apply_filters('mc_event_upcoming',"$prepend".jd_draw_template($details,$template,$type)."$append",$event);
|
505 |
+
$skips[] = $details['dateid'];
|
506 |
}
|
507 |
+
}
|
508 |
+
if ( $details['event_span'] == 1 ) {
|
509 |
+
$groups[] = $details['group'];
|
510 |
}
|
511 |
}
|
|
|
|
|
512 |
}
|
513 |
+
} else {
|
514 |
+
$output .= '';
|
515 |
+
}
|
516 |
return $output;
|
517 |
}
|
518 |
|
519 |
// Widget todays events
|
520 |
+
function my_calendar_todays_events($category='default',$template='default',$substitute='',$author='all', $host='all') {
|
521 |
$caching = ( get_option('mc_caching_enabled') == 'true' )?true:false;
|
522 |
$todays_cache = ($caching)? get_transient('mc_todays_cache') :'';
|
523 |
|
526 |
$mcdb = $wpdb;
|
527 |
if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
|
528 |
$output = '';
|
|
|
529 |
// This function cannot be called unless calendar is up to date
|
530 |
check_my_calendar();
|
531 |
$defaults = get_option('mc_widget_defaults');
|
535 |
$category = ($category == 'default')?$defaults['today']['category']:$category;
|
536 |
$no_event_text = ($substitute == '')?$defaults['today']['text']:$substitute;
|
537 |
|
538 |
+
$from = $to = date( 'Y-m-d', current_time( 'timestamp' ) );
|
539 |
+
$events = my_calendar_grab_events($from, $to,$category,'','','upcoming',$author, $host);
|
540 |
$header = "<ul id='todays-events'>";
|
541 |
$footer = "</ul>";
|
542 |
$holiday_exists = false;
|
554 |
} else {
|
555 |
if ( !in_array( $event->event_group_id, $groups ) ) {
|
556 |
$event_details = event_as_array($event);
|
557 |
+
$date = date_i18n(get_option('mc_date_format'), current_time( 'timestamp' ) );
|
558 |
|
559 |
$this_event = '';
|
560 |
if ( $event->event_holiday == 0 ) {
|
583 |
} else {
|
584 |
$return = stripcslashes( $no_event_text );
|
585 |
}
|
586 |
+
$time = strtotime( date( 'Y-m-d H:m:s', current_time( 'timestamp' ) ) ) - strtotime( date( 'Y-m-d', current_time( 'timestamp' ) ) );
|
587 |
$time_remaining = 24*60*60 - $time;
|
588 |
$todays_cache[$category] = ($caching)?$return:'';
|
589 |
if ( $caching ) set_transient( 'mc_todays_cache', $todays_cache, $time_remaining );
|
my-calendar.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.joedolson.com/articles/my-calendar/
|
|
5 |
Description: Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
|
6 |
Author: Joseph C Dolson
|
7 |
Author URI: http://www.joedolson.com
|
8 |
-
Version: 2.
|
9 |
*/
|
10 |
/* Copyright 2009-2012 Joe Dolson (email : joe@joedolson.com)
|
11 |
|
@@ -24,7 +24,7 @@ Version: 2.0.12
|
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
global $mc_version, $wpdb;
|
27 |
-
$mc_version = '2.
|
28 |
|
29 |
// Define the tables used in My Calendar
|
30 |
if ( function_exists('is_multisite') && is_multisite() && get_site_option('mc_multisite_show') == 1 ) {
|
@@ -106,6 +106,21 @@ add_action( 'init', 'my_calendar_export_vcal', 200 );
|
|
106 |
// Add filters
|
107 |
add_filter( 'widget_text', 'do_shortcode', 9 );
|
108 |
add_filter('plugin_action_links', 'jd_calendar_plugin_action', -10, 2);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
|
110 |
// produce admin support box
|
111 |
function jd_show_support_box( $show='', $add=false, $remove=false ) {
|
@@ -130,6 +145,10 @@ if ( current_user_can('mc_view_help') ) {
|
|
130 |
<div class="postbox support">
|
131 |
<h3><strong><?php _e('Support This Plug-in','my-calendar'); ?></strong></h3>
|
132 |
<div class="inside resources">
|
|
|
|
|
|
|
|
|
133 |
<p class="mcbuy"><img src="<?php echo plugins_url('my-calendar/images/guide.png'); ?>" alt="My Calendar User's Guide" class="alignleft" /><?php _e('Help me help you:','my-calendar'); ?> <a href="http://www.joedolson.com/articles/my-calendar/users-guide/" rel="external"><?php _e("Buy the My Calendar User's Guide",'my-calendar'); ?></a></p>
|
134 |
<p><?php _e('<strong>Or make a donation today!</strong> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!','my-calendar'); ?></p>
|
135 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
@@ -150,6 +169,7 @@ if ( current_user_can('mc_view_help') ) {
|
|
150 |
<h3><?php _e('Get Help','my-calendar'); ?></h3>
|
151 |
<div class="inside">
|
152 |
<ul>
|
|
|
153 |
<li><a href="<?php echo admin_url("admin.php?page=my-calendar-help"); ?>#get-support"><?php _e("Get Support",'my-calendar'); ?></a></li>
|
154 |
<li><a href="<?php echo admin_url("admin.php?page=my-calendar-help"); ?>"><?php _e("My Calendar Help",'my-calendar'); ?></a></li>
|
155 |
<li><a href="http://profiles.wordpress.org/users/joedolson/"><?php _e('Check out my other plug-ins','my-calendar'); ?></a></li>
|
@@ -344,7 +364,7 @@ function my_calendar_menu() {
|
|
344 |
// return a result for admin_url in 2.9.2
|
345 |
if ( !function_exists( 'admin_url' ) ) {
|
346 |
function admin_url() {
|
347 |
-
return
|
348 |
}
|
349 |
}
|
350 |
if ( !function_exists( 'home_url' ) ) {
|
5 |
Description: Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
|
6 |
Author: Joseph C Dolson
|
7 |
Author URI: http://www.joedolson.com
|
8 |
+
Version: 2.1.5
|
9 |
*/
|
10 |
/* Copyright 2009-2012 Joe Dolson (email : joe@joedolson.com)
|
11 |
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
global $mc_version, $wpdb;
|
27 |
+
$mc_version = '2.1.5';
|
28 |
|
29 |
// Define the tables used in My Calendar
|
30 |
if ( function_exists('is_multisite') && is_multisite() && get_site_option('mc_multisite_show') == 1 ) {
|
106 |
// Add filters
|
107 |
add_filter( 'widget_text', 'do_shortcode', 9 );
|
108 |
add_filter('plugin_action_links', 'jd_calendar_plugin_action', -10, 2);
|
109 |
+
add_filter( 'wp_title','mc_event_filter',10,3 );
|
110 |
+
|
111 |
+
function mc_event_filter( $title, $sep, $seplocation ) {
|
112 |
+
if ( isset($_GET['mc_id']) ) {
|
113 |
+
$id = (int) $_GET['mc_id'];
|
114 |
+
$event = mc_get_event( $id );
|
115 |
+
$array = event_as_array( $event );
|
116 |
+
$left_sep = ( $seplocation != 'right' ? ' ' . $sep . ' ' : '' );
|
117 |
+
$right_sep = ( $seplocation != 'right' ? '' : ' ' . $sep . ' ' );
|
118 |
+
$template = ( get_option( 'mc_event_title_template' ) != '' )? stripslashes( get_option( 'mc_event_title_template' ) ):"$left_sep {title} $sep {date} $right_sep ";
|
119 |
+
return jd_draw_template( $array, $template );
|
120 |
+
} else {
|
121 |
+
return $title;
|
122 |
+
}
|
123 |
+
}
|
124 |
|
125 |
// produce admin support box
|
126 |
function jd_show_support_box( $show='', $add=false, $remove=false ) {
|
145 |
<div class="postbox support">
|
146 |
<h3><strong><?php _e('Support This Plug-in','my-calendar'); ?></strong></h3>
|
147 |
<div class="inside resources">
|
148 |
+
<p>
|
149 |
+
<a href="https://twitter.com/intent/tweet?screen_name=joedolson&text=My%20Calendar%20is%20great%20-%20Thanks!" class="twitter-mention-button" data-size="large" data-related="joedolson">Tweet to @joedolson</a>
|
150 |
+
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
|
151 |
+
</p>
|
152 |
<p class="mcbuy"><img src="<?php echo plugins_url('my-calendar/images/guide.png'); ?>" alt="My Calendar User's Guide" class="alignleft" /><?php _e('Help me help you:','my-calendar'); ?> <a href="http://www.joedolson.com/articles/my-calendar/users-guide/" rel="external"><?php _e("Buy the My Calendar User's Guide",'my-calendar'); ?></a></p>
|
153 |
<p><?php _e('<strong>Or make a donation today!</strong> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!','my-calendar'); ?></p>
|
154 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
169 |
<h3><?php _e('Get Help','my-calendar'); ?></h3>
|
170 |
<div class="inside">
|
171 |
<ul>
|
172 |
+
<li><strong><a href="<?php echo admin_url("admin.php?page=my-calendar-help"); ?>#get-started"><?php _e("Getting Started",'my-calendar'); ?></strong></a></li>
|
173 |
<li><a href="<?php echo admin_url("admin.php?page=my-calendar-help"); ?>#get-support"><?php _e("Get Support",'my-calendar'); ?></a></li>
|
174 |
<li><a href="<?php echo admin_url("admin.php?page=my-calendar-help"); ?>"><?php _e("My Calendar Help",'my-calendar'); ?></a></li>
|
175 |
<li><a href="http://profiles.wordpress.org/users/joedolson/"><?php _e('Check out my other plug-ins','my-calendar'); ?></a></li>
|
364 |
// return a result for admin_url in 2.9.2
|
365 |
if ( !function_exists( 'admin_url' ) ) {
|
366 |
function admin_url() {
|
367 |
+
return site_url().'/wp-admin/';
|
368 |
}
|
369 |
}
|
370 |
if ( !function_exists( 'home_url' ) ) {
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: joedolson
|
|
3 |
Donate link: http://www.joedolson.com/donate.php
|
4 |
Tags: calendar, dates, times, events, scheduling, event manager, event calendar
|
5 |
Requires at least: 3.0.6
|
6 |
-
Tested up to: 3.
|
7 |
License: GPLv2 or later
|
8 |
Stable tag: trunk
|
9 |
|
@@ -16,7 +16,7 @@ My Calendar provides event management and numerous methods to display your event
|
|
16 |
* [User's Guide available for purchase](http://www.joedolson.com/articles/my-calendar/users-guide/) with extensive assistance in set up and use.
|
17 |
* [Paid plug-in to add front-end event contributions](https://www.joedolson.com/articles/my-calendar/submissions/)
|
18 |
|
19 |
-
Basic Features
|
20 |
|
21 |
* Standard calendar grid or list views of events
|
22 |
* Show events in monthly, weekly, or daily view.
|
@@ -48,25 +48,21 @@ Basic Features:
|
|
48 |
* Import from [Kieran O'Shea's Calendar plugin](http://wordpress.org/extend/plugins/calendar/)
|
49 |
* Integrated Help page to guide in use of shortcodes and template tags
|
50 |
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
* Czech ([globus2008](http://wordpress.org/support/profile/globus2008))
|
58 |
-
* French (Frederic Escallier)
|
59 |
-
* Dutch (Luud Heck, Wim Strijbos)
|
60 |
-
* Japanese ([Daisuke Abe](http://www.alter-ego.jp/))
|
61 |
-
* Russian ([Alex](http://blog.sotvoril.ru/)
|
62 |
-
* Turkish (Mehmet Koçali)
|
63 |
-
* German (Uwe Jonas, Florian Edelmann)
|
64 |
-
* Swedish (Efva Nyberg)
|
65 |
-
* Italian ([Sabir Musta](http://mustaphasabir.altervista.org), Massimo Sgobino)
|
66 |
-
* Brazilian Portuguese (Leonardo Kfoury, Alexandre Carvalho)
|
67 |
|
68 |
Translating my plug-ins is always appreciated. Visit <a href="http://translate.joedolson.com">my translations site</a> to start getting your language into shape!
|
69 |
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
== Installation ==
|
71 |
|
72 |
1. Upload the `/my-calendar/` directory into your WordPress plugins directory.
|
@@ -89,6 +85,46 @@ Translating my plug-ins is always appreciated. Visit <a href="http://translate.j
|
|
89 |
|
90 |
== Changelog ==
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
= 2.0.12 =
|
93 |
|
94 |
* I horribly screwed up the Upcoming Events widget in 2.0.11. Please accept my apologies.
|
@@ -933,7 +969,7 @@ Because the majority of users end up on my web site asking for help anyway -- an
|
|
933 |
|
934 |
= This plug-in is really complicated. Why can't you personally help me figure out how to use it? =
|
935 |
|
936 |
-
I can! Just not in person. I've written a User's Guide for My Calendar, which you can [purchase at my web site](https://www.joedolson.com/articles/my-calendar/users-guide/) for $
|
937 |
|
938 |
= How can visitors to my site submit events? =
|
939 |
|
@@ -954,11 +990,5 @@ I've written a paid plug-in that adds this feature to My Calendar, called My Cal
|
|
954 |
|
955 |
== Upgrade Notice ==
|
956 |
|
957 |
-
= 2.0.6 =
|
958 |
-
Thanks for your patience! With this major rewrite, I've wanted to clear out new bugs as fast as possible.
|
959 |
-
|
960 |
= 2.0.0 =
|
961 |
-
Major database redesign. Some new features, including single event view and pagination in events lists. Database update is non-destructive; no data will be deleted.
|
962 |
-
|
963 |
-
= 1.10.6 =
|
964 |
-
Fixes major XSS security flaw.
|
3 |
Donate link: http://www.joedolson.com/donate.php
|
4 |
Tags: calendar, dates, times, events, scheduling, event manager, event calendar
|
5 |
Requires at least: 3.0.6
|
6 |
+
Tested up to: 3.5.0
|
7 |
License: GPLv2 or later
|
8 |
Stable tag: trunk
|
9 |
|
16 |
* [User's Guide available for purchase](http://www.joedolson.com/articles/my-calendar/users-guide/) with extensive assistance in set up and use.
|
17 |
* [Paid plug-in to add front-end event contributions](https://www.joedolson.com/articles/my-calendar/submissions/)
|
18 |
|
19 |
+
=Basic Features:=
|
20 |
|
21 |
* Standard calendar grid or list views of events
|
22 |
* Show events in monthly, weekly, or daily view.
|
48 |
* Import from [Kieran O'Shea's Calendar plugin](http://wordpress.org/extend/plugins/calendar/)
|
49 |
* Integrated Help page to guide in use of shortcodes and template tags
|
50 |
|
51 |
+
=Translations=
|
52 |
+
|
53 |
+
Available languages (in order of completeness):
|
54 |
+
Japanese, Spanish, Danish, Czech, Hindi, Turkish, Dutch, French, Italian, German, Portuguese, Russian, Swedish, Finnish, Basque, Persian
|
55 |
+
|
56 |
+
Visit the [My Calendar translations site](http://translate.joedolson.com/projects/my-calendar) to check how complete a translation is.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
|
58 |
Translating my plug-ins is always appreciated. Visit <a href="http://translate.joedolson.com">my translations site</a> to start getting your language into shape!
|
59 |
|
60 |
+
Translator Credits (in no particular order)*:
|
61 |
+
|
62 |
+
[Ale Gonzalez](http://60rpm.tv/i), [Outshine Solutions](http://outshinesolutions.com), [Jakob Smith](http://www.omkalfatring.dk/),, [globus2008](http://wordpress.org/support/profile/globus2008), Frederic Escallier, Luud Heck, Wim Strijbos, [Daisuke Abe](http://www.alter-ego.jp/), [Alex](http://blog.sotvoril.ru/), Mehmet Koçali, Uwe Jonas, Florian Edelmann, Efva Nyberg, [Sabir Musta](http://mustaphasabir.altervista.org), Massimo Sgobino, Leonardo Kfoury, Alexandre Carvalho, Amir Khalilnejad, [Aurelio De Rosa](http://www.audero.it/), Bayram Dede, Dani Locasati, Dario Nunez, Dirk Ginader, Evren Erten, Flávio Pereira, Francois-Xavier Benard, [Gianni Diurno](http://www.gidibao.net), Giksi, Heinz Ochsner, Kazuyuki Kumai, Liam Boogar, Maks, Mano, Massimo Sgobino, Mohsen Aghaei, Oscar, [Rashid Niamat](http://niamatmediagroup.nl/), Stefan Wikstrom, Thomas Meyer, Vedar Ozdemir, [Vikas Arora](http://www.wiznicworld.com), [Miriam de Paula](http://wpmidia.com.br), [HostUCan](http://www.hostucan.com), [Alex Alexandrov](http://www.webhostingrating.com), [Alyona Lompar](http://www.webhostinggeeks.com), [David Gil Pérez](http://www.sohelet.com), [Burkov Boris](http://chernobog.ru), [Raivo Ratsep](http://raivoratsep.com), [Jibo](http://jibo.ro), [Rasmus Himmelstrup](http://seoanalyst.dk), [kndb](http://blog.layer8.sh/)
|
63 |
+
|
64 |
+
* Translators may not have contributed to this plug-in; but have contributed to my [translation repository](http://translate.joedolson.com).
|
65 |
+
|
66 |
== Installation ==
|
67 |
|
68 |
1. Upload the `/my-calendar/` directory into your WordPress plugins directory.
|
85 |
|
86 |
== Changelog ==
|
87 |
|
88 |
+
= 2.1.5 =
|
89 |
+
|
90 |
+
* Bug fix: upcoming events timestamps were converted to UTC.
|
91 |
+
|
92 |
+
= 2.1.4 =
|
93 |
+
|
94 |
+
* Bug fix: weekly view when crossing years jumped to next year
|
95 |
+
* Bug fix: Upcoming events sorting fix
|
96 |
+
* Bug fix: Upcoming events count fix
|
97 |
+
* Bug fix: print stylesheet directory fix.
|
98 |
+
|
99 |
+
= 2.1.3 =
|
100 |
+
|
101 |
+
* Bug fix: My Calendar stripped title elements from singular posts unless an SEO plug-in was installed.
|
102 |
+
|
103 |
+
= 2.1.2 =
|
104 |
+
|
105 |
+
* Bug fix: Miscounted number of events in upcoming events view when events were multiple days.
|
106 |
+
* Bug fix: My Calendar URL guessing now only selects from published Pages/posts
|
107 |
+
* Tweak: Minor change to HTML output in print view
|
108 |
+
* Added: Option to display current month or current year using Upcoming Events widget.
|
109 |
+
* Added: Filter to display a custom <title> on single event details pages with settings field to configure that title. (Improves SEO)
|
110 |
+
* Language updates: Italian, Russian, Basque
|
111 |
+
|
112 |
+
= 2.1.1 =
|
113 |
+
|
114 |
+
* Bug fix: users without 'Approve Event' ability submitted unapproved events even when event approval was disabled.
|
115 |
+
|
116 |
+
= 2.1.0 =
|
117 |
+
|
118 |
+
* Miscellaneous filepath fixes for custom icons
|
119 |
+
* Fixed filepath issue for custom content directory in loading calendar generator
|
120 |
+
* Added templating options to RSS feed event format
|
121 |
+
* Added two new template tags: description_stripped and shortdesc_stripped; returns the description fields with HTML removed.
|
122 |
+
* Re-organized settings to provide better grouping.
|
123 |
+
* Removed jumpbox default setting; jumpbox now only configurable via shortcode.
|
124 |
+
* Bug fix: titles missing in list view when open to details link enabled.
|
125 |
+
* Bug fix: Multi-day events listed only once in upcoming events lists.
|
126 |
+
* Minor stylesheet tweaks.
|
127 |
+
|
128 |
= 2.0.12 =
|
129 |
|
130 |
* I horribly screwed up the Upcoming Events widget in 2.0.11. Please accept my apologies.
|
969 |
|
970 |
= This plug-in is really complicated. Why can't you personally help me figure out how to use it? =
|
971 |
|
972 |
+
I can! Just not in person. I've written a User's Guide for My Calendar, which you can [purchase at my web site](https://www.joedolson.com/articles/my-calendar/users-guide/) for $23. ($19 if you're not interested in getting updates.) This helps defray the thousand plus hours I've spent in developing the plug-in and providing support. Please, consider buying the User's Guide or [making a donation](https://www.joedolson.com/donate.php) before asking for support!
|
973 |
|
974 |
= How can visitors to my site submit events? =
|
975 |
|
990 |
|
991 |
== Upgrade Notice ==
|
992 |
|
|
|
|
|
|
|
993 |
= 2.0.0 =
|
994 |
+
Major database redesign. Some new features, including single event view and pagination in events lists. Database update is non-destructive; no data will be deleted.
|
|
|
|
|
|
styles/dark.css
CHANGED
@@ -8,11 +8,13 @@
|
|
8 |
.mc-main .calendar-events {background: #222;color: #fff;}
|
9 |
.mc-main .category-key .no-icon {border: 1px solid #bbb;}
|
10 |
|
|
|
11 |
.mc-main caption, .mc-main .my-calendar-date-switcher, .mc-main .my-calendar-nav li a:hover, .mc-main .category-key {
|
12 |
border: 1px solid #222;
|
13 |
}
|
14 |
.mc-main .my-calendar-date-switcher {padding: 4px;margin: 0 0 10px;}
|
15 |
-
.mc-main .my-calendar-date-switcher input, .mc-main .my-calendar-date-switcher
|
|
|
16 |
.mc-main .my-calendar-date-switcher .button {font-size: .9em;}
|
17 |
.mc-main .list-event .details, .mc-main td {border:1px solid #222;}
|
18 |
.mc-main .calendar-event .details, .mc-main .calendar-events {background: #444;border: 1px solid #222;color:#fff;}
|
@@ -42,8 +44,8 @@ padding:2px!important;
|
|
42 |
.mini td {height: auto!important;}
|
43 |
.mc-main th {text-align: center;padding: 5px 0!important;letter-spacing: 1px;}
|
44 |
.mc-main th abbr {border-bottom: none;}
|
45 |
-
.mc-main h3 {
|
46 |
-
font: 700
|
47 |
margin:3px 0;
|
48 |
padding:0;
|
49 |
width: 100%;
|
8 |
.mc-main .calendar-events {background: #222;color: #fff;}
|
9 |
.mc-main .category-key .no-icon {border: 1px solid #bbb;}
|
10 |
|
11 |
+
.mc-main,.mc-list {background: #333; padding: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;color:#fff;}
|
12 |
.mc-main caption, .mc-main .my-calendar-date-switcher, .mc-main .my-calendar-nav li a:hover, .mc-main .category-key {
|
13 |
border: 1px solid #222;
|
14 |
}
|
15 |
.mc-main .my-calendar-date-switcher {padding: 4px;margin: 0 0 10px;}
|
16 |
+
.mc-main .my-calendar-date-switcher input, .mc-main .my-calendar-date-switcher select {margin: 0;padding: 0;color: #333;}
|
17 |
+
.mc-main .my-calendar-date-switcher label { margin: 0; padding: 0; color: #fff; }
|
18 |
.mc-main .my-calendar-date-switcher .button {font-size: .9em;}
|
19 |
.mc-main .list-event .details, .mc-main td {border:1px solid #222;}
|
20 |
.mc-main .calendar-event .details, .mc-main .calendar-events {background: #444;border: 1px solid #222;color:#fff;}
|
44 |
.mini td {height: auto!important;}
|
45 |
.mc-main th {text-align: center;padding: 5px 0!important;letter-spacing: 1px;}
|
46 |
.mc-main th abbr {border-bottom: none;}
|
47 |
+
.mc-main h3, .mc-main h3 a {
|
48 |
+
font: 700 10px Arial, Verdana, sans-serif;
|
49 |
margin:3px 0;
|
50 |
padding:0;
|
51 |
width: 100%;
|
styles/inherit.css
CHANGED
@@ -53,8 +53,8 @@ letter-spacing: 1px;
|
|
53 |
.mc-main th abbr {
|
54 |
border-bottom: none;
|
55 |
}
|
56 |
-
.mc-main h3 {
|
57 |
-
font: 700
|
58 |
margin:3px 0;
|
59 |
padding:0;
|
60 |
width: 100%;
|
53 |
.mc-main th abbr {
|
54 |
border-bottom: none;
|
55 |
}
|
56 |
+
.mc-main h3, .mc-main h3 a {
|
57 |
+
font: 700 10px Arial, Verdana, sans-serif;
|
58 |
margin:3px 0;
|
59 |
padding:0;
|
60 |
width: 100%;
|
styles/light.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/* A light-colored theme almost entirely in whites and light grays with black text. */
|
2 |
-
.mc-main,.mc-list
|
3 |
.mc-main caption, .mc-main .my-calendar-date-switcher, .mc-main .category-key, .mc-main .calendar-event .details,
|
4 |
.mc-main .calendar-events {background: #fff; }
|
5 |
.mc-main .category-key .no-icon {border: 1px solid #555; }
|
@@ -70,8 +70,8 @@ padding: 5px 0!important;
|
|
70 |
letter-spacing: 1px;
|
71 |
}
|
72 |
.mc-main th abbr {border-bottom: none;}
|
73 |
-
.mc-main h3 {
|
74 |
-
font: 700
|
75 |
margin:3px 0;
|
76 |
padding:0;
|
77 |
width: 100%;
|
@@ -194,7 +194,6 @@ padding:0;
|
|
194 |
.mini .my-calendar-nav ul {height: 2em!important;}
|
195 |
|
196 |
.mc-main .my-calendar-nav li {
|
197 |
-
float:left;
|
198 |
list-style-type: none!important; /* It really is pretty important. */;
|
199 |
}
|
200 |
|
@@ -211,7 +210,6 @@ padding: 1px 3px!important;
|
|
211 |
font-size: .7em;
|
212 |
}
|
213 |
.mc-main .my-calendar-next {
|
214 |
-
margin-left: 4px;
|
215 |
text-align:right;
|
216 |
}
|
217 |
.mc-main.mini .my-calendar-date-switcher label {
|
@@ -244,12 +242,16 @@ text-decoration: underline;
|
|
244 |
.mini .my-calendar-nav ul {height: 2em!important;}
|
245 |
.mini .my-calendar-nav li a {
|
246 |
padding: 1px 3px!important;
|
247 |
-
font-size:
|
248 |
}
|
249 |
.mc-main .nextmonth {
|
250 |
background: #f6f6f6;
|
251 |
color: #888;
|
252 |
}
|
|
|
|
|
|
|
|
|
253 |
.mc-main .nextmonth .event-title {opacity: .7;}
|
254 |
.mc-main .nextmonth .mc-date {background: #eee;}
|
255 |
.mc-main .nextmonth .weekend {color: #888;}
|
1 |
/* A light-colored theme almost entirely in whites and light grays with black text. */
|
2 |
+
.mc-main,.mc-list {background: #fff; padding: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;color:#333;}
|
3 |
.mc-main caption, .mc-main .my-calendar-date-switcher, .mc-main .category-key, .mc-main .calendar-event .details,
|
4 |
.mc-main .calendar-events {background: #fff; }
|
5 |
.mc-main .category-key .no-icon {border: 1px solid #555; }
|
70 |
letter-spacing: 1px;
|
71 |
}
|
72 |
.mc-main th abbr {border-bottom: none;}
|
73 |
+
.mc-main h3, .mc-main h3 a {
|
74 |
+
font: 700 10px Arial, Verdana, sans-serif;
|
75 |
margin:3px 0;
|
76 |
padding:0;
|
77 |
width: 100%;
|
194 |
.mini .my-calendar-nav ul {height: 2em!important;}
|
195 |
|
196 |
.mc-main .my-calendar-nav li {
|
|
|
197 |
list-style-type: none!important; /* It really is pretty important. */;
|
198 |
}
|
199 |
|
210 |
font-size: .7em;
|
211 |
}
|
212 |
.mc-main .my-calendar-next {
|
|
|
213 |
text-align:right;
|
214 |
}
|
215 |
.mc-main.mini .my-calendar-date-switcher label {
|
242 |
.mini .my-calendar-nav ul {height: 2em!important;}
|
243 |
.mini .my-calendar-nav li a {
|
244 |
padding: 1px 3px!important;
|
245 |
+
font-size: 10px;
|
246 |
}
|
247 |
.mc-main .nextmonth {
|
248 |
background: #f6f6f6;
|
249 |
color: #888;
|
250 |
}
|
251 |
+
.mc-main .my-calendar-nav { position: relative; }
|
252 |
+
.mc-main .my-calendar-prev { position: absolute; left: 0; top: 0;}
|
253 |
+
.mc-main .my-calendar-next { position: absolute; right: 0; top: 0; }
|
254 |
+
|
255 |
.mc-main .nextmonth .event-title {opacity: .7;}
|
256 |
.mc-main .nextmonth .mc-date {background: #eee;}
|
257 |
.mc-main .nextmonth .weekend {color: #888;}
|
styles/my-calendar.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
.mc-main,.mc-list {background: #fff;}
|
2 |
.mc-main caption, .mc-main .my-calendar-date-switcher,
|
3 |
.mc-main .category-key, .mc-main .calendar-event .details,
|
4 |
.mc-main .calendar-events {
|
@@ -72,8 +72,8 @@ padding: 5px 0!important;
|
|
72 |
letter-spacing: 1px;
|
73 |
}
|
74 |
.mc-main th abbr {border-bottom: none;}
|
75 |
-
.mc-main h3 {
|
76 |
-
font-size
|
77 |
font-family: Arial, Verdana, sans-serif;
|
78 |
font-weight:700;
|
79 |
margin:3px 0;
|
1 |
+
.mc-main,.mc-list {background: #fff; padding: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;color:#333;}
|
2 |
.mc-main caption, .mc-main .my-calendar-date-switcher,
|
3 |
.mc-main .category-key, .mc-main .calendar-event .details,
|
4 |
.mc-main .calendar-events {
|
72 |
letter-spacing: 1px;
|
73 |
}
|
74 |
.mc-main th abbr {border-bottom: none;}
|
75 |
+
.mc-main h3, .mc-main h3 a {
|
76 |
+
font-size:10px!important;
|
77 |
font-family: Arial, Verdana, sans-serif;
|
78 |
font-weight:700;
|
79 |
margin:3px 0;
|
styles/refresh.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
.mc-main,.mc-list {background: #fff;}
|
2 |
.mc-main .my-calendar-date-switcher, .mc-main .calendar-event .details, .mc-main .calendar-events {background: #edf7ff;}
|
3 |
.mc-main .my-calendar-date-switcher {
|
4 |
padding: 4px;
|
@@ -70,8 +70,8 @@ padding:2px!important;
|
|
70 |
.mini td {height: auto!important;}
|
71 |
|
72 |
.mc-main th abbr {border-bottom: none;}
|
73 |
-
.mc-main h3 {
|
74 |
-
font-size
|
75 |
font-family: Arial, Verdana, sans-serif;
|
76 |
font-weight:400;
|
77 |
margin:3px 0;
|
1 |
+
.mc-main,.mc-list {background: #fff; padding: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;color:#333;}
|
2 |
.mc-main .my-calendar-date-switcher, .mc-main .calendar-event .details, .mc-main .calendar-events {background: #edf7ff;}
|
3 |
.mc-main .my-calendar-date-switcher {
|
4 |
padding: 4px;
|
70 |
.mini td {height: auto!important;}
|
71 |
|
72 |
.mc-main th abbr {border-bottom: none;}
|
73 |
+
.mc-main h3, .mc-main h3 a {
|
74 |
+
font-size:10px!important;
|
75 |
font-family: Arial, Verdana, sans-serif;
|
76 |
font-weight:400;
|
77 |
margin:3px 0;
|
templates/dark.css
CHANGED
@@ -8,11 +8,13 @@
|
|
8 |
.mc-main .calendar-events {background: #222;color: #fff;}
|
9 |
.mc-main .category-key .no-icon {border: 1px solid #bbb;}
|
10 |
|
|
|
11 |
.mc-main caption, .mc-main .my-calendar-date-switcher, .mc-main .my-calendar-nav li a:hover, .mc-main .category-key {
|
12 |
border: 1px solid #222;
|
13 |
}
|
14 |
.mc-main .my-calendar-date-switcher {padding: 4px;margin: 0 0 10px;}
|
15 |
-
.mc-main .my-calendar-date-switcher input, .mc-main .my-calendar-date-switcher
|
|
|
16 |
.mc-main .my-calendar-date-switcher .button {font-size: .9em;}
|
17 |
.mc-main .list-event .details, .mc-main td {border:1px solid #222;}
|
18 |
.mc-main .calendar-event .details, .mc-main .calendar-events {background: #444;border: 1px solid #222;color:#fff;}
|
@@ -42,8 +44,8 @@ padding:2px!important;
|
|
42 |
.mini td {height: auto!important;}
|
43 |
.mc-main th {text-align: center;padding: 5px 0!important;letter-spacing: 1px;}
|
44 |
.mc-main th abbr {border-bottom: none;}
|
45 |
-
.mc-main h3 {
|
46 |
-
font: 700
|
47 |
margin:3px 0;
|
48 |
padding:0;
|
49 |
width: 100%;
|
8 |
.mc-main .calendar-events {background: #222;color: #fff;}
|
9 |
.mc-main .category-key .no-icon {border: 1px solid #bbb;}
|
10 |
|
11 |
+
.mc-main,.mc-list {background: #333; padding: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;color:#fff;}
|
12 |
.mc-main caption, .mc-main .my-calendar-date-switcher, .mc-main .my-calendar-nav li a:hover, .mc-main .category-key {
|
13 |
border: 1px solid #222;
|
14 |
}
|
15 |
.mc-main .my-calendar-date-switcher {padding: 4px;margin: 0 0 10px;}
|
16 |
+
.mc-main .my-calendar-date-switcher input, .mc-main .my-calendar-date-switcher select {margin: 0;padding: 0;color: #333;}
|
17 |
+
.mc-main .my-calendar-date-switcher label { margin: 0; padding: 0; color: #fff; }
|
18 |
.mc-main .my-calendar-date-switcher .button {font-size: .9em;}
|
19 |
.mc-main .list-event .details, .mc-main td {border:1px solid #222;}
|
20 |
.mc-main .calendar-event .details, .mc-main .calendar-events {background: #444;border: 1px solid #222;color:#fff;}
|
44 |
.mini td {height: auto!important;}
|
45 |
.mc-main th {text-align: center;padding: 5px 0!important;letter-spacing: 1px;}
|
46 |
.mc-main th abbr {border-bottom: none;}
|
47 |
+
.mc-main h3, .mc-main h3 a {
|
48 |
+
font: 700 10px Arial, Verdana, sans-serif;
|
49 |
margin:3px 0;
|
50 |
padding:0;
|
51 |
width: 100%;
|
templates/inherit.css
CHANGED
@@ -53,8 +53,8 @@ letter-spacing: 1px;
|
|
53 |
.mc-main th abbr {
|
54 |
border-bottom: none;
|
55 |
}
|
56 |
-
.mc-main h3 {
|
57 |
-
font: 700
|
58 |
margin:3px 0;
|
59 |
padding:0;
|
60 |
width: 100%;
|
53 |
.mc-main th abbr {
|
54 |
border-bottom: none;
|
55 |
}
|
56 |
+
.mc-main h3, .mc-main h3 a {
|
57 |
+
font: 700 10px Arial, Verdana, sans-serif;
|
58 |
margin:3px 0;
|
59 |
padding:0;
|
60 |
width: 100%;
|
templates/light.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/* A light-colored theme almost entirely in whites and light grays with black text. */
|
2 |
-
.mc-main,.mc-list
|
3 |
.mc-main caption, .mc-main .my-calendar-date-switcher, .mc-main .category-key, .mc-main .calendar-event .details,
|
4 |
.mc-main .calendar-events {background: #fff; }
|
5 |
.mc-main .category-key .no-icon {border: 1px solid #555; }
|
@@ -70,8 +70,8 @@ padding: 5px 0!important;
|
|
70 |
letter-spacing: 1px;
|
71 |
}
|
72 |
.mc-main th abbr {border-bottom: none;}
|
73 |
-
.mc-main h3 {
|
74 |
-
font: 700
|
75 |
margin:3px 0;
|
76 |
padding:0;
|
77 |
width: 100%;
|
1 |
/* A light-colored theme almost entirely in whites and light grays with black text. */
|
2 |
+
.mc-main,.mc-list {background: #fff; padding: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;color:#333;}
|
3 |
.mc-main caption, .mc-main .my-calendar-date-switcher, .mc-main .category-key, .mc-main .calendar-event .details,
|
4 |
.mc-main .calendar-events {background: #fff; }
|
5 |
.mc-main .category-key .no-icon {border: 1px solid #555; }
|
70 |
letter-spacing: 1px;
|
71 |
}
|
72 |
.mc-main th abbr {border-bottom: none;}
|
73 |
+
.mc-main h3, .mc-main h3 a {
|
74 |
+
font: 700 10px Arial, Verdana, sans-serif;
|
75 |
margin:3px 0;
|
76 |
padding:0;
|
77 |
width: 100%;
|
templates/my-calendar.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
.mc-main,.mc-list {background: #fff;}
|
2 |
.mc-main caption, .mc-main .my-calendar-date-switcher,
|
3 |
.mc-main .category-key, .mc-main .calendar-event .details,
|
4 |
.mc-main .calendar-events {
|
@@ -72,8 +72,8 @@ padding: 5px 0!important;
|
|
72 |
letter-spacing: 1px;
|
73 |
}
|
74 |
.mc-main th abbr {border-bottom: none;}
|
75 |
-
.mc-main h3 {
|
76 |
-
font-size
|
77 |
font-family: Arial, Verdana, sans-serif;
|
78 |
font-weight:700;
|
79 |
margin:3px 0;
|
1 |
+
.mc-main,.mc-list {background: #fff; padding: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;color:#333;}
|
2 |
.mc-main caption, .mc-main .my-calendar-date-switcher,
|
3 |
.mc-main .category-key, .mc-main .calendar-event .details,
|
4 |
.mc-main .calendar-events {
|
72 |
letter-spacing: 1px;
|
73 |
}
|
74 |
.mc-main th abbr {border-bottom: none;}
|
75 |
+
.mc-main h3, .mc-main h3 a {
|
76 |
+
font-size:10px!important;
|
77 |
font-family: Arial, Verdana, sans-serif;
|
78 |
font-weight:700;
|
79 |
margin:3px 0;
|
templates/refresh.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
.mc-main,.mc-list {background: #fff;}
|
2 |
.mc-main .my-calendar-date-switcher, .mc-main .calendar-event .details, .mc-main .calendar-events {background: #edf7ff;}
|
3 |
.mc-main .my-calendar-date-switcher {
|
4 |
padding: 4px;
|
@@ -70,8 +70,8 @@ padding:2px!important;
|
|
70 |
.mini td {height: auto!important;}
|
71 |
|
72 |
.mc-main th abbr {border-bottom: none;}
|
73 |
-
.mc-main h3 {
|
74 |
-
font-size
|
75 |
font-family: Arial, Verdana, sans-serif;
|
76 |
font-weight:400;
|
77 |
margin:3px 0;
|
1 |
+
.mc-main,.mc-list {background: #fff; padding: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;color:#333;}
|
2 |
.mc-main .my-calendar-date-switcher, .mc-main .calendar-event .details, .mc-main .calendar-events {background: #edf7ff;}
|
3 |
.mc-main .my-calendar-date-switcher {
|
4 |
padding: 4px;
|
70 |
.mini td {height: auto!important;}
|
71 |
|
72 |
.mc-main th abbr {border-bottom: none;}
|
73 |
+
.mc-main h3, .mc-main h3 a {
|
74 |
+
font-size:10px!important;
|
75 |
font-family: Arial, Verdana, sans-serif;
|
76 |
font-weight:400;
|
77 |
margin:3px 0;
|