My Calendar - Version 2.1.5

Version Description

  • Bug fix: upcoming events timestamps were converted to UTC.
Download this release

Release Info

Developer joedolson
Plugin Icon 128x128 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 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
- $firstdate = strtotime($early);
43
- $lastdate = strtotime($late);
44
- if ($early == $late) {
 
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
- $event_dt_a = strtotime($a->occur_begin);
84
- $event_dt_b = strtotime($b->occur_begin);
 
 
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> &mdash; 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 "&laquo; Previous Page"
280
+ msgstr "Aurreko orrialdea"
281
+
282
+ #: my-calendar-event-manager.php:979
283
+ msgid "Next Page &raquo;"
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 &ndash; 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 &raquo;"
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 "&laquo; 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-11-12 18:18:01+0000\n"
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:621
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:287
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:270
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:310
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:471
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:629
62
  msgid "Hide end time"
63
  msgstr "Nascondi l'orario finale"
64
 
65
- #: my-calendar-event-manager.php:644
66
  msgid "Dates for this event:"
67
  msgstr "Date per questo evento:"
68
 
69
- #: my-calendar-event-manager.php:645
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:655
74
  msgid "Related Events:"
75
  msgstr "Eventi collegati:"
76
 
77
- #: my-calendar-event-manager.php:655
78
  msgid "Edit group"
79
  msgstr "Modifica gruppo"
80
 
81
- #: my-calendar-event-manager.php:766
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:940
86
  msgid "Clear filters"
87
  msgstr "Elimina i filtri"
88
 
89
- #: my-calendar-event-manager.php:969
90
  msgid "&laquo; Previous Page"
91
  msgstr "&laquo; Pagina precedente"
92
 
93
- #: my-calendar-event-manager.php:970
94
  msgid "Next Page &raquo;"
95
  msgstr "Pagina successiva &raquo;"
96
 
97
- #: my-calendar-event-manager.php:1013
98
  msgid "Filter by location"
99
  msgstr "Filtro per località"
100
 
101
- #: my-calendar-event-manager.php:1036
102
  msgid "Filter by author"
103
  msgstr "Filtro per autore"
104
 
105
- #: my-calendar-event-manager.php:1045
106
  msgid "Filter by category"
107
  msgstr "Filtro per categoria"
108
 
109
- #: my-calendar-event-manager.php:1084
110
  msgid "Approve checked events"
111
  msgstr "Approva gli eventi selezionati"
112
 
113
- #: my-calendar-event-manager.php:1293
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:1482
118
  msgid "Editing: "
119
  msgstr "Modifica:"
120
 
121
- #: my-calendar-event-manager.php:1518 my-calendar-event-manager.php:1531
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:37
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:45
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 &ndash; 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:49
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:56
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:68
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:154
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:244
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:171
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:317
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:456
183
  msgid "iCal times are UTC"
184
  msgstr "Le ore su iCal sono UTC"
185
 
186
- #: my-calendar-settings.php:515
187
  msgid "Show author's name"
188
  msgstr "Mostra il nome dell'autore"
189
 
190
- #: my-calendar-settings.php:518
191
  msgid "Show link to single event iCal download"
192
  msgstr "Mostra link per scaricare in formato iCal. "
193
 
194
- #: my-calendar-settings.php:521
195
  msgid "Show category icons"
196
  msgstr "Mostra le icone di categoria"
197
 
198
- #: my-calendar-settings.php:530
199
  msgid "Show short description"
200
  msgstr "Mostra descrizione abbreviata"
201
 
202
- #: my-calendar-settings.php:533
203
  msgid "Show full description"
204
  msgstr "Mostra la descrizione completa"
205
 
206
- #: my-calendar-settings.php:536
207
  msgid "Process WordPress shortcodes in description fields"
208
  msgstr "Utilizza le abbreviazioni WordPress nei campi descrizione"
209
 
210
- #: my-calendar-settings.php:539
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:542
215
  msgid "Show external link"
216
  msgstr "Mostra collegamenti esterni"
217
 
218
- #: my-calendar-settings.php:609
219
  msgid "Show Event Image field"
220
  msgstr "Mostra il campo Immagine Evento"
221
 
222
- #: my-calendar-settings.php:609
223
  msgid "Show Event Registration options"
224
  msgstr "Mostra le opzioni Registrazione evento"
225
 
226
- #: my-calendar-settings.php:609
227
  msgid "Show Event Location fields"
228
  msgstr "Mostra i campi Luogo evento"
229
 
230
- #: my-calendar-settings.php:609
231
  msgid "Set Special Scheduling options"
232
  msgstr ""
233
 
234
- #: my-calendar-styles.php:81
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:195
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:65 my-calendar-widgets.php:185
243
  msgid "Author or authors to show:"
244
  msgstr "Autore od autori da mostrare:"
245
 
246
- #: my-calendar.php:134
247
  msgid "My Calendar: Submissions"
248
  msgstr "My Calendar: sottoscrizioni"
249
 
250
- #: my-calendar.php:136
251
- msgid "Buy the <a href='http://www.joedolson.com/articles/my-calendar/users-guide/' rel='external'>My Calendar: Submissions add-on</a> &mdash; 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> &mdash; 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:352
259
  msgid "Event Submissions"
260
  msgstr "Sottoscrizioni agli eventi"
261
 
262
- #: my-calendar.php:353
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:335
287
- #: my-calendar-settings.php:823
288
  msgid "Location Name"
289
  msgstr "Nome Località"
290
 
291
- #: button/generator.php:56 my-calendar-event-manager.php:786
292
  #: my-calendar-group-manager.php:460 my-calendar-locations.php:152
293
- #: my-calendar-settings.php:824
294
  msgid "City"
295
  msgstr "Città"
296
 
297
- #: button/generator.php:57 my-calendar-event-manager.php:833
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:802
303
  #: my-calendar-group-manager.php:463 my-calendar-locations.php:168
304
- #: my-calendar-settings.php:827
305
  msgid "Postal Code"
306
  msgstr "Codice Postale"
307
 
308
- #: button/generator.php:59 my-calendar-event-manager.php:818
309
  #: my-calendar-group-manager.php:467 my-calendar-locations.php:184
310
- #: my-calendar-settings.php:826
311
  msgid "Country"
312
  msgstr "Paese"
313
 
314
- #: button/generator.php:60 my-calendar-event-manager.php:809
315
- #: my-calendar-event-manager.php:834 my-calendar-group-manager.php:464
316
  #: my-calendar-group-manager.php:477 my-calendar-locations.php:175
317
- #: my-calendar-locations.php:198 my-calendar-settings.php:828
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:603
343
- #: my-calendar-widgets.php:609 my-calendar-widgets.php:615
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:604
349
- #: my-calendar-widgets.php:610 my-calendar-widgets.php:616
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:608
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:376
370
- #: my-calendar-widgets.php:621
371
  msgid "Month"
372
  msgstr "Mese"
373
 
374
- #: button/generator.php:106 my-calendar-widgets.php:622
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:214
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:214
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:284
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:286
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:204
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:267 my-calendar.php:339
590
  msgid "Manage Categories"
591
  msgstr "Gestione categorie"
592
 
593
- #: my-calendar-categories.php:283 my-calendar-event-manager.php:984
594
  #: my-calendar-group-manager.php:731 my-calendar-locations.php:288
595
  msgid "ID"
596
  msgstr "ID"
597
 
598
- #: my-calendar-categories.php:285
599
  msgid "Category Color"
600
  msgstr "Colore Categoria"
601
 
602
- #: my-calendar-categories.php:288 my-calendar-categories.php:304
603
- #: my-calendar-event-manager.php:1050 my-calendar-group-manager.php:740
604
  #: my-calendar-locations.php:290 my-calendar-locations.php:302
605
- #: my-calendar-output.php:310
606
  msgid "Edit"
607
  msgstr "Modifica"
608
 
609
- #: my-calendar-categories.php:289 my-calendar-categories.php:310
610
- #: my-calendar-event-manager.php:125 my-calendar-event-manager.php:1053
611
  #: my-calendar-locations.php:291 my-calendar-locations.php:303
612
- #: my-calendar-output.php:311
613
  msgid "Delete"
614
  msgstr "Cancella"
615
 
616
- #: my-calendar-categories.php:307 my-calendar-event-manager.php:1031
617
- #: my-calendar-group-manager.php:780 my-calendar-output.php:200
618
- #: my-calendar-settings.php:373
619
  msgid "N/A"
620
  msgstr "n.d."
621
 
622
- #: my-calendar-categories.php:310 my-calendar-locations.php:303
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:321
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:343
631
  msgid "Settings"
632
  msgstr "Impostazioni"
633
 
634
- #: my-calendar-core.php:59 my-calendar.php:347
635
  msgid "Help"
636
  msgstr "Aiuto"
637
 
638
- #: my-calendar-core.php:200
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:1042 my-calendar-event-manager.php:228
643
  msgid "Add Event"
644
  msgstr "Aggiungi Evento"
645
 
646
- #: my-calendar-core.php:1283
647
  msgid "Is this your calendar page?"
648
  msgstr "È la pagina del tuo calendario?"
649
 
650
- #: my-calendar-core.php:1286
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:1379
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:1381
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:1386
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:1388
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:1398
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:1400
675
  msgid "From:"
676
  msgstr "Da:"
677
 
678
- #: my-calendar-core.php:1403
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:1406
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:1409
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:1415
691
  msgid "Send Support Request"
692
  msgstr "Invia richiesta di assistenza"
693
 
694
- #: my-calendar-core.php:1418
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:851
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:858
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:259 my-calendar-event-manager.php:331
716
- #: my-calendar-event-manager.php:348 my-calendar-event-manager.php:362
717
- #: my-calendar-event-manager.php:1246 my-calendar-event-manager.php:1249
718
- #: my-calendar-event-manager.php:1259 my-calendar-event-manager.php:1266
719
- #: my-calendar-event-manager.php:1282 my-calendar-event-manager.php:1288
720
- #: my-calendar-event-manager.php:1293 my-calendar-group-manager.php:58
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:118
731
  msgid "Delete Event"
732
  msgstr "Cancellare evento"
733
 
734
- #: my-calendar-event-manager.php:118
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:132
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:147
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:162
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:199
751
  msgid "Currently editing your local calendar"
752
  msgstr "Sto modificando il tuo calendario locale"
753
 
754
- #: my-calendar-event-manager.php:201
755
  msgid "Currently editing your central calendar"
756
  msgstr "Sto modificando il tuo calendario centrale"
757
 
758
- #: my-calendar-event-manager.php:209 my-calendar-group-manager.php:798
759
  msgid "Edit Event"
760
  msgstr "Modifica evento"
761
 
762
- #: my-calendar-event-manager.php:212 my-calendar-event-manager.php:221
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:218
767
  msgid "Copy Event"
768
  msgstr "Copia Evento"
769
 
770
- #: my-calendar-event-manager.php:259
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:272
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:278 my-calendar-group-manager.php:56
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:331 my-calendar-group-manager.php:148
784
  msgid "Your event was not updated."
785
  msgstr "L'evento non è stato aggiornato."
786
 
787
- #: my-calendar-event-manager.php:306 my-calendar-event-manager.php:333
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:337 my-calendar-group-manager.php:62
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:341 my-calendar-group-manager.php:156
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:348
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:360
807
  msgid "Event deleted successfully"
808
  msgstr "Evento cancellato con successo"
809
 
810
- #: my-calendar-event-manager.php:362
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:375 my-calendar-group-manager.php:168
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:379 my-calendar-group-manager.php:172
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:405
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:458
827
  msgid "Add/Edit Event"
828
  msgstr "Aggiungi/Modifica evento"
829
 
830
- #: my-calendar-event-manager.php:461 my-calendar-event-manager.php:880
831
  msgid "Save Event"
832
  msgstr "Salva Evento"
833
 
834
- #: my-calendar-event-manager.php:475 my-calendar-group-manager.php:298
835
  msgid "Enter your Event Information"
836
  msgstr "Inserisci le informazioni del tuo evento"
837
 
838
- #: my-calendar-event-manager.php:477 my-calendar-group-manager.php:300
839
  msgid "Event Title"
840
  msgstr "Titolo dell'evento"
841
 
842
- #: my-calendar-event-manager.php:477 my-calendar-event-manager.php:615
843
  #: my-calendar-group-manager.php:300
844
  msgid "(required)"
845
  msgstr "(obbligatorio)"
846
 
847
- #: my-calendar-event-manager.php:481
848
  msgid "Publish"
849
  msgstr "Pubblica"
850
 
851
- #: my-calendar-event-manager.php:481
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:483
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:496
860
  msgid "This event is not spam"
861
  msgstr "Questo evento non è spam"
862
 
863
- #: my-calendar-event-manager.php:503 my-calendar-group-manager.php:314
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:525 my-calendar-event-manager.php:538
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:527 my-calendar-group-manager.php:327
873
  msgid "Add an image:"
874
  msgstr "Aggiungi un'immagine:"
875
 
876
- #: my-calendar-event-manager.php:529
877
  msgid "(URL to Event image)"
878
  msgstr "(URL dell'immagine dell'evento)"
879
 
880
- #: my-calendar-event-manager.php:531 my-calendar-group-manager.php:327
881
  msgid "Upload Image"
882
  msgstr "Carica immagine"
883
 
884
- #: my-calendar-event-manager.php:531 my-calendar-group-manager.php:327
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:544 my-calendar-group-manager.php:339
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:548 my-calendar-group-manager.php:343
893
  msgid "Event Host"
894
  msgstr "Assegna Evento a"
895
 
896
- #: my-calendar-event-manager.php:567 my-calendar-group-manager.php:362
897
  msgid "Event Category"
898
  msgstr "Categoria dell'evento "
899
 
900
- #: my-calendar-event-manager.php:579 my-calendar-group-manager.php:374
901
  msgid "Event Link (Optional)"
902
  msgstr "Link dell'evento (opzionale)"
903
 
904
- #: my-calendar-event-manager.php:579 my-calendar-group-manager.php:374
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:589 my-calendar-event-manager.php:597
909
  msgid "Event Date and Time"
910
  msgstr "Data e Ora dell'Evento"
911
 
912
- #: my-calendar-event-manager.php:615
913
  msgid "Start Date (YYYY-MM-DD)"
914
  msgstr "Data Inizio (YYYY-MM-DD)"
915
 
916
- #: my-calendar-event-manager.php:615
917
  msgid "Time (hh:mm am/pm)"
918
  msgstr "Ora (hh:mm am/pm)"
919
 
920
- #: my-calendar-event-manager.php:624
921
  msgid "End Date (YYYY-MM-DD)"
922
  msgstr "Data Fine (YYYY-MM-DD)"
923
 
924
- #: my-calendar-event-manager.php:624
925
  msgid "End Time (hh:mm am/pm)"
926
  msgstr "Ora fine (hh:mm am/pm)"
927
 
928
- #: my-calendar-event-manager.php:635
929
  msgid "This is a multi-day event."
930
  msgstr "Questo è un evento multi giornata."
931
 
932
- #: my-calendar-event-manager.php:637
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:637
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:639
941
  msgid "Add another occurrence"
942
  msgstr "Aggiungi un'altra occorrenza"
943
 
944
- #: my-calendar-event-manager.php:640
945
  msgid "Remove last occurrence"
946
  msgstr "Rimuovi l'ultima occorrenza"
947
 
948
- #: my-calendar-event-manager.php:662
949
  msgid "Current time difference from GMT is "
950
  msgstr "La differenza di ora rispetto al GMT è"
951
 
952
- #: my-calendar-event-manager.php:662
953
  msgid " hour(s)"
954
  msgstr " ora(e)"
955
 
956
- #: my-calendar-event-manager.php:672 my-calendar-event-manager.php:679
957
  msgid "Recurring Events"
958
  msgstr "Eventi ripetuti"
959
 
960
- #: my-calendar-event-manager.php:682
961
  msgid "Repeats for"
962
  msgstr "Ripete per"
963
 
964
- #: my-calendar-event-manager.php:683
965
  msgid "Units"
966
  msgstr "Unità"
967
 
968
- #: my-calendar-core.php:1439 my-calendar-templates.php:137
969
  msgid "Does not recur"
970
  msgstr "Non si ripresenta"
971
 
972
- #: my-calendar-core.php:1440 my-calendar-event-manager.php:1022
973
- #: my-calendar-group-manager.php:772 my-calendar-templates.php:138
974
  msgid "Daily"
975
  msgstr "Giornaliero"
976
 
977
- #: my-calendar-core.php:1441 my-calendar-templates.php:139
978
  msgid "Daily, weekdays only"
979
  msgstr "Giornaliero, solo nei feriali"
980
 
981
- #: my-calendar-core.php:1442 my-calendar-event-manager.php:1024
982
- #: my-calendar-group-manager.php:774 my-calendar-templates.php:140
983
  msgid "Weekly"
984
  msgstr "Settimanale"
985
 
986
- #: my-calendar-core.php:1443 my-calendar-templates.php:141
987
  msgid "Bi-weekly"
988
  msgstr "Bi-settimanale"
989
 
990
- #: my-calendar-core.php:1444
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:1445
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:1446 my-calendar-templates.php:144
999
  msgid "Annually"
1000
  msgstr "Annuale"
1001
 
1002
- #: my-calendar-event-manager.php:689
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:710
1007
  msgid "Event Registration Settings"
1008
  msgstr "Opzioni registrazione evento"
1009
 
1010
- #: my-calendar-event-manager.php:713 my-calendar-group-manager.php:388
1011
  msgid "Event Registration Status"
1012
  msgstr "Stato di Registrazione Evento"
1013
 
1014
- #: my-calendar-event-manager.php:714 my-calendar-group-manager.php:389
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:716 my-calendar-group-manager.php:391
1019
  msgid "Open"
1020
  msgstr "Aperto"
1021
 
1022
- #: my-calendar-event-manager.php:717 my-calendar-group-manager.php:392
1023
  msgid "Closed"
1024
  msgstr "Chiuso"
1025
 
1026
- #: my-calendar-event-manager.php:718 my-calendar-group-manager.php:393
1027
  msgid "Does not apply"
1028
  msgstr "Non si applica"
1029
 
1030
- #: my-calendar-event-manager.php:721 my-calendar-group-manager.php:396
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:738 my-calendar-event-manager.php:741
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:748 my-calendar-group-manager.php:423
1041
  msgid "Choose a preset location:"
1042
  msgstr "Scegliere una località predefinita:"
1043
 
1044
- #: my-calendar-event-manager.php:757 my-calendar-group-manager.php:436
1045
  msgid "Add recurring locations for later use."
1046
  msgstr "Aggiungi località ricorrenti per un uso successivo."
1047
 
1048
- #: my-calendar-event-manager.php:764 my-calendar-group-manager.php:445
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:768 my-calendar-group-manager.php:448
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:777 my-calendar-group-manager.php:451
1059
  #: my-calendar-locations.php:143
1060
  msgid "Street Address"
1061
  msgstr "Indirizzo"
1062
 
1063
- #: my-calendar-event-manager.php:780 my-calendar-group-manager.php:454
1064
  #: my-calendar-locations.php:146
1065
  msgid "Street Address (2)"
1066
  msgstr "Indirizzo (2)"
1067
 
1068
- #: my-calendar-event-manager.php:783 my-calendar-group-manager.php:457
1069
  #: my-calendar-locations.php:149
1070
  msgid "Phone"
1071
  msgstr "Telefono"
1072
 
1073
- #: my-calendar-event-manager.php:793 my-calendar-group-manager.php:460
1074
- #: my-calendar-locations.php:159 my-calendar-settings.php:825
1075
  msgid "State/Province"
1076
  msgstr "Regione/Provincia"
1077
 
1078
- #: my-calendar-event-manager.php:827 my-calendar-group-manager.php:470
1079
  #: my-calendar-locations.php:191
1080
  msgid "Initial Zoom"
1081
  msgstr "Zoom Iniziale"
1082
 
1083
- #: my-calendar-event-manager.php:829 my-calendar-group-manager.php:472
1084
  #: my-calendar-locations.php:193
1085
  msgid "Neighborhood"
1086
  msgstr "Quartiere"
1087
 
1088
- #: my-calendar-event-manager.php:830 my-calendar-group-manager.php:473
1089
  #: my-calendar-locations.php:194
1090
  msgid "Small City"
1091
  msgstr "Piccola città"
1092
 
1093
- #: my-calendar-event-manager.php:831 my-calendar-group-manager.php:474
1094
  #: my-calendar-locations.php:195
1095
  msgid "Large City"
1096
  msgstr "Città grande"
1097
 
1098
- #: my-calendar-event-manager.php:832 my-calendar-group-manager.php:475
1099
  #: my-calendar-locations.php:196
1100
  msgid "Greater Metro Area"
1101
  msgstr "Area metropolitana"
1102
 
1103
- #: my-calendar-event-manager.php:838 my-calendar-group-manager.php:481
1104
  msgid "Location URL"
1105
  msgstr "URL della località"
1106
 
1107
- #: my-calendar-event-manager.php:841 my-calendar-group-manager.php:484
1108
  #: my-calendar-locations.php:205
1109
  msgid "GPS Coordinates (optional)"
1110
  msgstr "Coordinate GPS (opzionale)"
1111
 
1112
- #: my-calendar-event-manager.php:843 my-calendar-group-manager.php:486
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:846 my-calendar-group-manager.php:489
1117
  #: my-calendar-locations.php:210
1118
  msgid "Latitude"
1119
  msgstr "Latitudine"
1120
 
1121
- #: my-calendar-event-manager.php:846 my-calendar-group-manager.php:489
1122
  #: my-calendar-locations.php:211
1123
  msgid "Longitude"
1124
  msgstr "Longitudine"
1125
 
1126
- #: my-calendar-event-manager.php:859
1127
  msgid "Special scheduling options"
1128
  msgstr ""
1129
 
1130
- #: my-calendar-event-manager.php:862
1131
  msgid "Special Options"
1132
  msgstr ""
1133
 
1134
- #: my-calendar-event-manager.php:864
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:867
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:947 my-calendar-settings.php:97
1143
- #: my-calendar-settings.php:689
1144
  msgid "Manage Events"
1145
  msgstr "Gestione Eventi"
1146
 
1147
- #: my-calendar-event-manager.php:950 my-calendar-templates.php:226
1148
  msgid "Published"
1149
  msgstr "Pubblicato"
1150
 
1151
- #: my-calendar-event-manager.php:951 my-calendar-templates.php:226
1152
  msgid "Reserved"
1153
  msgstr "Riservato"
1154
 
1155
- #: my-calendar-event-manager.php:952 my-calendar-group-manager.php:712
1156
  msgid "All"
1157
  msgstr "Tutti"
1158
 
1159
- #: my-calendar-event-manager.php:985 my-calendar-group-manager.php:733
1160
- #: my-calendar-settings.php:330 my-calendar-widgets.php:42
1161
- #: my-calendar-widgets.php:136 my-calendar-widgets.php:594
1162
  msgid "Title"
1163
  msgstr "Titolo"
1164
 
1165
- #: my-calendar-event-manager.php:986 my-calendar-group-manager.php:734
1166
  msgid "Where"
1167
  msgstr "Dove"
1168
 
1169
- #: my-calendar-event-manager.php:987 my-calendar-group-manager.php:735
1170
- #: my-calendar-settings.php:331
1171
  msgid "Description"
1172
  msgstr "Descrizione"
1173
 
1174
- #: my-calendar-event-manager.php:988 my-calendar-group-manager.php:736
1175
  msgid "Starts"
1176
  msgstr "Inizia"
1177
 
1178
- #: my-calendar-event-manager.php:989 my-calendar-group-manager.php:737
1179
  msgid "Recurs"
1180
  msgstr "Ricorrenza"
1181
 
1182
- #: my-calendar-event-manager.php:990 my-calendar-group-manager.php:738
1183
- #: my-calendar-settings.php:333
1184
  msgid "Author"
1185
  msgstr "Autore"
1186
 
1187
- #: my-calendar-event-manager.php:991 my-calendar-group-manager.php:739
1188
- #: my-calendar-output.php:128 my-calendar-settings.php:334
1189
- #: my-calendar-templates.php:224
1190
  msgid "Category"
1191
  msgstr "Categoria"
1192
 
1193
- #: my-calendar-event-manager.php:992
1194
  msgid "Edit / Delete"
1195
  msgstr "Modifica/Cancella"
1196
 
1197
- #: my-calendar-event-manager.php:1021 my-calendar-group-manager.php:771
1198
  msgid "Never"
1199
  msgstr "Mai"
1200
 
1201
- #: my-calendar-event-manager.php:1023 my-calendar-group-manager.php:773
1202
  msgid "Weekdays"
1203
  msgstr "Giorni feriali"
1204
 
1205
- #: my-calendar-event-manager.php:1025 my-calendar-group-manager.php:775
1206
  msgid "Bi-Weekly"
1207
  msgstr "Bi-Settimanale"
1208
 
1209
- #: my-calendar-event-manager.php:1026 my-calendar-group-manager.php:776
1210
  msgid "Monthly (by date)"
1211
  msgstr "Mensile (per data)"
1212
 
1213
- #: my-calendar-event-manager.php:1027 my-calendar-group-manager.php:777
1214
  msgid "Monthly (by day)"
1215
  msgstr "Mensile (per giorno)"
1216
 
1217
- #: my-calendar-event-manager.php:1028 my-calendar-group-manager.php:778
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:1032 my-calendar-event-manager.php:1033
1226
  #: my-calendar-group-manager.php:782
1227
  msgid "%d Times"
1228
  msgstr "%d volte"
1229
 
1230
- #: my-calendar-event-manager.php:1048
1231
  msgid "Copy"
1232
  msgstr "Copia"
1233
 
1234
- #: my-calendar-event-manager.php:1051 my-calendar-group-manager.php:800
1235
- #: my-calendar-output.php:305
1236
  msgid "Edit Group"
1237
  msgstr "Modifica gruppo"
1238
 
1239
- #: my-calendar-event-manager.php:1054 my-calendar-group-manager.php:804
1240
  msgid "Not editable."
1241
  msgstr "Non modificabili."
1242
 
1243
- #: my-calendar-event-manager.php:1060
1244
  msgid "Reject"
1245
  msgstr "Respinto"
1246
 
1247
- #: my-calendar-event-manager.php:1062
1248
  msgid "Approve"
1249
  msgstr "Approvare"
1250
 
1251
- #: my-calendar-event-manager.php:1067
1252
  msgid "Approved"
1253
  msgstr "Approvato"
1254
 
1255
- #: my-calendar-event-manager.php:1069
1256
  msgid "Rejected"
1257
  msgstr "Rifiutato"
1258
 
1259
- #: my-calendar-event-manager.php:1071
1260
  msgid "Awaiting Approval"
1261
  msgstr "In attesa di approvazione"
1262
 
1263
- #: my-calendar-event-manager.php:1082
1264
  msgid "Delete checked events"
1265
  msgstr "Cancella gli eventi selezionati"
1266
 
1267
- #: my-calendar-event-manager.php:1096 my-calendar-group-manager.php:818
1268
  msgid "There are no events in the database!"
1269
  msgstr "Non ci sono eventi nel database!"
1270
 
1271
- #: my-calendar-event-manager.php:1246
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:1249
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:1259
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:1288
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:340
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:7
1382
  msgid "How to use My Calendar"
1383
  msgstr "Come utilizzare il mio calendario"
1384
 
1385
- #: my-calendar-help.php:13
1386
  msgid "Shortcode Syntax"
1387
  msgstr "Sintassi Shortcode"
1388
 
1389
- #: my-calendar-help.php:16
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:18
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:21
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:25
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:29
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:30
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:31
1418
  msgid "Set as \"no\" to hide the month-by-month navigation."
1419
  msgstr ""
1420
 
1421
- #: my-calendar-help.php:32
1422
  msgid "Set to \"no\" or \"yes\" to override the default settings."
1423
  msgstr ""
1424
 
1425
- #: my-calendar-help.php:33
1426
  msgid "Set as \"yes\" to show a link to switch between list and grid formats."
1427
  msgstr ""
1428
 
1429
- #: my-calendar-help.php:34
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:35
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:36
1438
  msgid "The specific location information to filter to."
1439
  msgstr ""
1440
 
1441
- #: my-calendar-help.php:40
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:42
1446
  msgid "Additional Calendar Views (Upcoming events, today's events)"
1447
  msgstr ""
1448
 
1449
- #: my-calendar-help.php:52
1450
  msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
1451
  msgstr ""
1452
 
1453
- #: my-calendar-help.php:59
1454
  msgid "Supplement Features (Locations filter, Categories filter)"
1455
  msgstr ""
1456
 
1457
- #: my-calendar-help.php:63
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:67
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:72
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:80
1470
  msgid "Category Icons"
1471
  msgstr "Icone categoria"
1472
 
1473
- #: my-calendar-help.php:83
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:86
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:86
1482
  msgid "Your icons folder is:"
1483
  msgstr "La cartella delle icone è:"
1484
 
1485
- #: my-calendar-help.php:86
1486
  msgid "You can alternately place icons in:"
1487
  msgstr "È possibile alternativamente mettere le icone in:"
1488
 
1489
- #: my-calendar-help.php:95
1490
  msgid "Custom Styles"
1491
  msgstr "Stili personalizzati"
1492
 
1493
- #: my-calendar-help.php:98
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:101
1498
  msgid "Your stylesheet directory is"
1499
  msgstr "La tua cartella del foglio di stile è"
1500
 
1501
- #: my-calendar-help.php:102
1502
  msgid "Your custom stylesheets directory is"
1503
  msgstr "La tua cartella personalizzata fogli di stile è"
1504
 
1505
- #: my-calendar-help.php:105
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:113
1510
  msgid "Widget Templating"
1511
  msgstr ""
1512
 
1513
- #: my-calendar-help.php:116
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:119
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:122
1522
  msgid "Example:"
1523
  msgstr "Esempio:"
1524
 
1525
- #: my-calendar-help.php:124 my-calendar.php:191
1526
  msgid "Event Template Tags"
1527
  msgstr "Tag dei modelli evento"
1528
 
1529
- #: my-calendar-help.php:127
1530
  msgid "Displays the title of the event."
1531
  msgstr "Visualizza il titolo dell'evento."
1532
 
1533
- #: my-calendar-help.php:130
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:133
1538
  msgid "Displays the start time for the event."
1539
  msgstr "Visualizzare l'ora di inizio dell'evento."
1540
 
1541
- #: my-calendar-help.php:136
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:139
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:142
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:145
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:148
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:151
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:157
1566
  msgid "Timestamp for beginning of event."
1567
  msgstr "Marca temporale per l'inizio dell'evento"
1568
 
1569
- #: my-calendar-help.php:160
1570
  msgid "Timestamp for end of event."
1571
  msgstr ""
1572
 
1573
- #: my-calendar-help.php:163
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:166
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:169
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:172
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:175
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:178
1594
  msgid "Displays short description without converting paragraphs."
1595
  msgstr "Mostra la descrizione breve senza convertire i paragrafi."
1596
 
1597
- #: my-calendar-help.php:181
1598
  msgid "Displays the description of the event."
1599
  msgstr "visualizzare la descrizione dell'evento."
1600
 
1601
- #: my-calendar-help.php:184
1602
  msgid "Displays description without converting paragraphs."
1603
  msgstr "Mostra la descrizione senza convertire i paragrafi."
1604
 
1605
- #: my-calendar-help.php:187 my-calendar.php:237
1606
  msgid "Image associated with the event."
1607
  msgstr "Immagine associata all'evento."
1608
 
1609
- #: my-calendar-help.php:190
1610
  msgid "Displays the URL provided for the event."
1611
  msgstr "Visualizzare l'URL fornito per l'evento."
1612
 
1613
- #: my-calendar-help.php:193
1614
  msgid "Produces the URL to download an iCal formatted record for the event."
1615
  msgstr ""
1616
 
1617
- #: my-calendar-help.php:196
1618
  msgid "Produces a hyperlink to download an iCal formatted record for the event."
1619
  msgstr ""
1620
 
1621
- #: my-calendar-help.php:199
1622
  msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
1623
  msgstr ""
1624
 
1625
- #: my-calendar-help.php:202
1626
  msgid "Shows the number of repetitions of the event."
1627
  msgstr ""
1628
 
1629
- #: my-calendar-help.php:205
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:205
1634
  msgid "Requires that the site URL has been provided on the Settings page"
1635
  msgstr ""
1636
 
1637
- #: my-calendar-help.php:208
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:211
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:213 my-calendar.php:251
1646
  msgid "Location Template Tags"
1647
  msgstr ""
1648
 
1649
- #: my-calendar-help.php:217
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:220
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:223
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:226
1662
  msgid "Displays the city for the location."
1663
  msgstr ""
1664
 
1665
- #: my-calendar-help.php:229
1666
  msgid "Displays the state for the location."
1667
  msgstr ""
1668
 
1669
- #: my-calendar-help.php:232
1670
  msgid "Displays the postcode for the location."
1671
  msgstr ""
1672
 
1673
- #: my-calendar-help.php:235
1674
  msgid "Shows the custom region entered for the location."
1675
  msgstr ""
1676
 
1677
- #: my-calendar-help.php:238
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:241
1682
  msgid "Output the URL for the location link."
1683
  msgstr ""
1684
 
1685
- #: my-calendar-help.php:247
1686
  msgid "Output a hyperlink to the location's listed link with default link text."
1687
  msgstr ""
1688
 
1689
- #: my-calendar-help.php:250
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:253
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:255 my-calendar.php:287
1698
  msgid "Category Template Tags"
1699
  msgstr ""
1700
 
1701
- #: my-calendar-help.php:259
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:262
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:265
1710
  msgid "Produces the HTML for the current event's category icon."
1711
  msgstr ""
1712
 
1713
- #: my-calendar-help.php:268
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:271
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:275
1724
  msgid "Special use Template Tags"
1725
  msgstr ""
1726
 
1727
- #: my-calendar-help.php:279
1728
  msgid "A unique ID for the current instance of an event."
1729
  msgstr ""
1730
 
1731
- #: my-calendar-help.php:282
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:292
1736
  msgid "Get Plug-in Support"
1737
  msgstr "Ottieni supporto per il plug-in"
1738
 
1739
- #: my-calendar-help.php:297
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:304
1744
  msgid "Helpful Information"
1745
  msgstr "Informazioni utili"
1746
 
1747
- #: my-calendar-help.php:307
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:310
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:225
1756
  msgid "My Calendar Default Timezone"
1757
  msgstr "My Calendar Fuso Orario Predefinito"
1758
 
1759
- #: my-calendar-install.php:270
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:341
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:183 my-calendar-output.php:300
1836
  msgid "Close"
1837
  msgstr "Chiuso"
1838
 
1839
- #: my-calendar-output.php:194
1840
  msgid "(%s in your time zone)"
1841
  msgstr "(%s nel tuo fuso orario)"
1842
 
1843
- #: my-calendar-output.php:200
1844
  msgid "Not Applicable"
1845
  msgstr "Non applicabile"
1846
 
1847
- #: my-calendar-output.php:215
1848
  msgid "Posted by"
1849
  msgstr "Postato da"
1850
 
1851
- #: my-calendar-output.php:223 my-calendar-templates.php:228
1852
  msgid "Details about"
1853
  msgstr "Dettagli su"
1854
 
1855
- #: my-calendar-output.php:245 my-calendar-templates.php:177
1856
  msgid "iCal"
1857
  msgstr "iCal"
1858
 
1859
- #: my-calendar-output.php:280
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:285
1864
  msgid "View full calendar"
1865
  msgstr ""
1866
 
1867
- #: my-calendar-output.php:318
1868
  msgid "Edit This Date"
1869
  msgstr "Modifica questa data"
1870
 
1871
- #: my-calendar-output.php:319
1872
  msgid "Edit All"
1873
  msgstr "Modifica tutto"
1874
 
1875
- #: my-calendar-output.php:320
1876
  msgid "Delete This Date"
1877
  msgstr "Cancella questa data"
1878
 
1879
- #: my-calendar-output.php:321
1880
  msgid "Delete All"
1881
  msgstr "Cancella tutto"
1882
 
1883
- #: my-calendar-output.php:381
1884
  msgid "Year"
1885
  msgstr "Anno"
1886
 
1887
- #: my-calendar-output.php:409
1888
  msgid "Go"
1889
  msgstr "Vai"
1890
 
1891
- #: my-calendar-output.php:438
1892
  msgid "Calendar: Print View"
1893
  msgstr ""
1894
 
1895
- #: my-calendar-output.php:453
1896
  msgid "Return to site"
1897
  msgstr "Ritorna al sito"
1898
 
1899
- #: my-calendar-output.php:466
1900
  msgid "View as Grid"
1901
  msgstr "Visualizza come griglia"
1902
 
1903
- #: my-calendar-output.php:470
1904
  msgid "View as List"
1905
  msgstr "Visualizza come elenco"
1906
 
1907
- #: my-calendar-output.php:574
1908
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
1909
  msgstr "<abbr title=\"Domenica\">Dom</abbr>"
1910
 
1911
- #: my-calendar-output.php:575
1912
  msgid "<abbr title=\"Monday\">Mon</abbr>"
1913
  msgstr "<abbr title=\"Lunedì\">Lun</abbr>"
1914
 
1915
- #: my-calendar-output.php:576
1916
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
1917
  msgstr "<abbr title=\"Martedì\">Mar</abbr>"
1918
 
1919
- #: my-calendar-output.php:577
1920
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
1921
  msgstr "<abbr title=\"Mercoledì\">Mer</abbr>"
1922
 
1923
- #: my-calendar-output.php:578
1924
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
1925
  msgstr "<abbr title=\"Giovedì\">Giov</abbr>"
1926
 
1927
- #: my-calendar-output.php:579
1928
  msgid "<abbr title=\"Friday\">Fri</abbr>"
1929
  msgstr "<abbr title=\"Venerdì\">Ven</abbr>"
1930
 
1931
- #: my-calendar-output.php:580
1932
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
1933
  msgstr "<abbr title=\"Sabato\">Sab</abbr>"
1934
 
1935
- #: my-calendar-output.php:585
1936
  msgid "<abbr title=\"Sunday\">S</abbr>"
1937
  msgstr "<abbr title=\"Domenica\">Dom</abbr>"
1938
 
1939
- #: my-calendar-output.php:586
1940
  msgid "<abbr title=\"Monday\">M</abbr>"
1941
  msgstr "<abbr title=\"Lunedì\">Lun</abbr>"
1942
 
1943
- #: my-calendar-output.php:587
1944
  msgid "<abbr title=\"Tuesday\">T</abbr>"
1945
  msgstr "<abbr title=\"Martedì\">Mar</abbr>"
1946
 
1947
- #: my-calendar-output.php:588
1948
  msgid "<abbr title=\"Wednesday\">W</abbr>"
1949
  msgstr "<abbr title=\"Mercoledì\">Mer</abbr>"
1950
 
1951
- #: my-calendar-output.php:589
1952
  msgid "<abbr title=\"Thursday\">T</abbr>"
1953
  msgstr "<abbr title=\"Giovedì\">Giov</abbr>"
1954
 
1955
- #: my-calendar-output.php:590
1956
  msgid "<abbr title=\"Friday\">F</abbr>"
1957
  msgstr "<abbr title=\"Venerdì\">Ven</abbr>"
1958
 
1959
- #: my-calendar-output.php:591
1960
  msgid "<abbr title=\"Saturday\">S</abbr>"
1961
  msgstr "<abbr title=\"Sabato\">Sab</abbr>"
1962
 
1963
- #: my-calendar-output.php:701
1964
  msgid "Print View"
1965
  msgstr ""
1966
 
1967
- #: my-calendar-output.php:745
1968
  msgid "No events scheduled for today!"
1969
  msgstr "Nessun evento previsto per oggi!"
1970
 
1971
- #: my-calendar-output.php:760
1972
  msgid "and"
1973
  msgstr "e"
1974
 
1975
- #: my-calendar-output.php:777
1976
  msgid "Events in"
1977
  msgstr "Eventi a"
1978
 
1979
- #: my-calendar-output.php:528
1980
  msgid " and %d other event"
1981
  msgstr "e %d altri eventi"
1982
 
1983
- #: my-calendar-output.php:530
1984
  msgid " and %d other events"
1985
  msgstr " e %d altri eventi"
1986
 
1987
- #: my-calendar-output.php:810
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:908
1992
  msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
1993
  msgstr ""
1994
 
1995
- #: my-calendar-output.php:936
1996
  msgid "Category Key"
1997
  msgstr "Chiave Categoria"
1998
 
1999
- #: my-calendar-output.php:960
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:961
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:986
2008
  msgid "Next events &raquo;"
2009
  msgstr "Prossimi eventi &raquo;"
2010
 
2011
- #: my-calendar-output.php:1012 my-calendar-output.php:1056
2012
  msgid "Week of "
2013
  msgstr "Settimana di"
2014
 
2015
- #: my-calendar-output.php:1030
2016
  msgid "&laquo; Previous events"
2017
  msgstr ""
2018
 
2019
- #: my-calendar-output.php:1082
2020
  msgid "(select to include)"
2021
  msgstr ""
2022
 
2023
- #: my-calendar-output.php:1106 my-calendar-output.php:1109
2024
  msgid "All Categories"
2025
  msgstr "Tutte le categorie"
2026
 
2027
- #: my-calendar-output.php:1107
2028
  msgid "Categories"
2029
  msgstr ""
2030
 
2031
- #: my-calendar-output.php:1128 my-calendar-output.php:1320
2032
  msgid "Submit"
2033
  msgstr "Invia"
2034
 
2035
- #: my-calendar-output.php:1261 my-calendar-output.php:1282
2036
  msgid "Show all"
2037
  msgstr ""
2038
 
2039
- #: my-calendar-output.php:1280
2040
  msgid "Show events in:"
2041
  msgstr "Mostra gli eventi in:"
2042
 
2043
- #: my-calendar-settings.php:53
2044
  msgid "Categories imported successfully."
2045
  msgstr "Categorie importati con successo"
2046
 
2047
- #: my-calendar-settings.php:53
2048
  msgid "Categories not imported."
2049
  msgstr "Categorie non importati."
2050
 
2051
- #: my-calendar-settings.php:54
2052
  msgid "Events imported successfully."
2053
  msgstr "Eventi importati con successo"
2054
 
2055
- #: my-calendar-settings.php:54
2056
  msgid "Events not imported."
2057
  msgstr "Eventi non importati."
2058
 
2059
- #: my-calendar-settings.php:79
2060
  msgid "My Calendar Cache cleared"
2061
  msgstr "Cache di My Calendar Cache ripulita"
2062
 
2063
- #: my-calendar-settings.php:90
2064
  msgid "My Calendar Management Settings saved"
2065
  msgstr "Opzioni di gestione di My Calendar Management salvate"
2066
 
2067
- #: my-calendar-settings.php:95 my-calendar-settings.php:687
2068
  msgid "Add Events"
2069
  msgstr "Aggiungi eventi"
2070
 
2071
- #: my-calendar-settings.php:96 my-calendar-settings.php:688
2072
  msgid "Approve Events"
2073
  msgstr "Autorizza gli eventi"
2074
 
2075
- #: my-calendar-settings.php:98 my-calendar-settings.php:690
2076
  msgid "Edit Categories"
2077
  msgstr ""
2078
 
2079
- #: my-calendar-settings.php:99 my-calendar-settings.php:691
2080
  msgid "Edit Locations"
2081
  msgstr "Modifica la località"
2082
 
2083
- #: my-calendar-settings.php:100 my-calendar-settings.php:692
2084
  msgid "Edit Styles"
2085
  msgstr "Modifica gli stili"
2086
 
2087
- #: my-calendar-settings.php:101 my-calendar-settings.php:693
2088
  msgid "Edit Behaviors"
2089
  msgstr ""
2090
 
2091
- #: my-calendar-settings.php:102 my-calendar-settings.php:694
2092
  msgid "Edit Templates"
2093
  msgstr "Modifica il modello"
2094
 
2095
- #: my-calendar-settings.php:103 my-calendar-settings.php:695
2096
  msgid "Edit Settings"
2097
  msgstr ""
2098
 
2099
- #: my-calendar-settings.php:104 my-calendar-settings.php:696
2100
  msgid "View Help"
2101
  msgstr "Visualizza l'aiuto"
2102
 
2103
- #: my-calendar-settings.php:118
2104
  msgid "My Calendar Permissions Updated"
2105
  msgstr ""
2106
 
2107
- #: my-calendar-settings.php:172
2108
  msgid "Output Settings saved"
2109
  msgstr "Impostazioni di uscita salvate"
2110
 
2111
- #: my-calendar-settings.php:191
2112
  msgid "Input Settings saved"
2113
  msgstr "Impostazioni d'ingresso salvate"
2114
 
2115
- #: my-calendar-settings.php:199
2116
  msgid "Multisite settings saved"
2117
  msgstr ""
2118
 
2119
- #: my-calendar-settings.php:218
2120
  msgid "Custom text settings saved"
2121
  msgstr "Impostazioni del testo personalizzato salvato"
2122
 
2123
- #: my-calendar-settings.php:230
2124
  msgid "Email notice settings saved"
2125
  msgstr "Impostazioni e-mail avviso salvate"
2126
 
2127
- #: my-calendar-settings.php:244
2128
  msgid "User custom settings saved"
2129
  msgstr "Le impostazioni utente personalizzate salvate"
2130
 
2131
- #: my-calendar-settings.php:276
2132
  msgid "My Calendar Options"
2133
  msgstr "Opzioni My Calendar"
2134
 
2135
- #: my-calendar-settings.php:282
2136
  msgid "My Calendar Settings"
2137
  msgstr "Opzioni My Calendar"
2138
 
2139
- #: my-calendar-settings.php:285
2140
  msgid "Management"
2141
  msgstr ""
2142
 
2143
- #: my-calendar-settings.php:286
2144
  msgid "Customizable Text"
2145
  msgstr "Testo personalizzabile"
2146
 
2147
- #: my-calendar-settings.php:287
2148
  msgid "Output"
2149
  msgstr "Output"
2150
 
2151
- #: my-calendar-settings.php:288
2152
  msgid "Input"
2153
  msgstr ""
2154
 
2155
- #: my-calendar-settings.php:290
2156
  msgid "Multi-site"
2157
  msgstr "Multi-sito"
2158
 
2159
- #: my-calendar-settings.php:292
2160
  msgid "Permissions"
2161
  msgstr "Permessi"
2162
 
2163
- #: my-calendar-settings.php:293
2164
  msgid "Email Notifications"
2165
  msgstr "Notifiche via email"
2166
 
2167
- #: my-calendar-settings.php:294
2168
  msgid "Individual Users"
2169
  msgstr ""
2170
 
2171
- #: my-calendar-settings.php:302
2172
  msgid "Calendar Management Settings"
2173
  msgstr "Impostazioni di Gestione del Calendario"
2174
 
2175
- #: my-calendar-settings.php:308
2176
  msgid "Calendar Options: Management"
2177
  msgstr "Opzioni Calendario: Gestione"
2178
 
2179
- #: my-calendar-settings.php:310
2180
  msgid "Get data (events, categories and locations) from a remote database."
2181
  msgstr ""
2182
 
2183
- #: my-calendar-settings.php:312
2184
  msgid "Add this code to your theme's <code>functions.php</code> file:"
2185
  msgstr ""
2186
 
2187
- #: my-calendar-settings.php:320
2188
  msgid "Enable approval options."
2189
  msgstr "Attivare le opzioni di approvazione."
2190
 
2191
- #: my-calendar-settings.php:321
2192
  msgid "Enable caching."
2193
  msgstr ""
2194
 
2195
- #: my-calendar-settings.php:321
2196
  msgid "<em>Cannot use caching while accessing a remote database.</em>"
2197
  msgstr ""
2198
 
2199
- #: my-calendar-settings.php:323
2200
  msgid "Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)"
2201
  msgstr ""
2202
 
2203
- #: my-calendar-settings.php:327
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:329
2208
  msgid "Event ID"
2209
  msgstr "ID evento"
2210
 
2211
- #: my-calendar-settings.php:332
2212
  msgid "Start Date"
2213
  msgstr "Data Inizio"
2214
 
2215
- #: my-calendar-settings.php:340
2216
  msgid "Currently editing my local calendar"
2217
  msgstr ""
2218
 
2219
- #: my-calendar-settings.php:343
2220
  msgid "Currently editing the network calendar"
2221
  msgstr ""
2222
 
2223
- #: my-calendar-settings.php:347
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:353
2228
  msgid "Save Management Settings"
2229
  msgstr ""
2230
 
2231
- #: my-calendar-settings.php:357
2232
  msgid "My Calendar management settings are only available to administrators."
2233
  msgstr ""
2234
 
2235
- #: my-calendar-settings.php:365
2236
  msgid "Calendar Text Settings"
2237
  msgstr "Impostazioni Testo del Calendario"
2238
 
2239
- #: my-calendar-settings.php:370
2240
  msgid "Calendar Options: Customizable Text Fields"
2241
  msgstr ""
2242
 
2243
- #: my-calendar-settings.php:373
2244
  msgid "Label for events without a set time"
2245
  msgstr ""
2246
 
2247
- #: my-calendar-settings.php:376
2248
  msgid "Previous events link"
2249
  msgstr "Collegamento agli eventi precedenti"
2250
 
2251
- #: my-calendar-settings.php:376
2252
  msgid "Previous Events"
2253
  msgstr "Eventi Passati"
2254
 
2255
- #: my-calendar-settings.php:376 my-calendar-settings.php:379
2256
  msgid "Use <code>{date}</code> to display the appropriate date in navigation."
2257
  msgstr ""
2258
 
2259
- #: my-calendar-settings.php:379
2260
  msgid "Next events link"
2261
  msgstr "Collegamento ai prossimi eventi"
2262
 
2263
- #: my-calendar-settings.php:379
2264
  msgid "Next Events"
2265
  msgstr "Prossimi Eventi"
2266
 
2267
- #: my-calendar-settings.php:382
2268
  msgid "If events are open"
2269
  msgstr "Se gli eventi sono aperti"
2270
 
2271
- #: my-calendar-settings.php:382
2272
  msgid "Registration is open"
2273
  msgstr "Le Registrazioni sono aperte"
2274
 
2275
- #: my-calendar-settings.php:385
2276
  msgid "If events are closed"
2277
  msgstr "Se gli eventi sono chiusi"
2278
 
2279
- #: my-calendar-settings.php:385
2280
  msgid "Registration is closed"
2281
  msgstr "Le Registrazioni sono chiusi"
2282
 
2283
- #: my-calendar-settings.php:388
2284
  msgid "Week view caption:"
2285
  msgstr ""
2286
 
2287
- #: my-calendar-settings.php:391
2288
  msgid "Extended caption:"
2289
  msgstr ""
2290
 
2291
- #: my-calendar-settings.php:391
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:396
2296
  msgid "Save Custom Text Settings"
2297
  msgstr "Salva impostazioni testo personalizzato"
2298
 
2299
- #: my-calendar-settings.php:405
2300
  msgid "Calendar Output Settings"
2301
  msgstr "Impostazioni Uscita Calendario"
2302
 
2303
- #: my-calendar-settings.php:409 my-calendar-settings.php:590
2304
  msgid "Save Output Settings"
2305
  msgstr "Salva Impostazioni di uscita"
2306
 
2307
- #: my-calendar-settings.php:411
2308
  msgid "Calendar Options: Customize the Output of your Calendar"
2309
  msgstr ""
2310
 
2311
- #: my-calendar-settings.php:413
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:417
2320
  msgid "Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode."
2321
  msgstr ""
2322
 
2323
- #: my-calendar-settings.php:420
2324
  msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's timeline links."
2325
  msgstr ""
2326
 
2327
- #: my-calendar-settings.php:421
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:424
2332
  msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar in-page anchors:"
2333
  msgstr ""
2334
 
2335
- #: my-calendar-settings.php:425
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:427
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:429
2348
  msgid "Replaces pop-up in grid view."
2349
  msgstr ""
2350
 
2351
- #: my-calendar-settings.php:432
2352
  msgid "Mini calendar widget date links to:"
2353
  msgstr ""
2354
 
2355
- #: my-calendar-settings.php:433
2356
  msgid "jQuery pop-up view"
2357
  msgstr ""
2358
 
2359
- #: my-calendar-settings.php:434
2360
  msgid "daily view page (above)"
2361
  msgstr ""
2362
 
2363
- #: my-calendar-settings.php:435
2364
  msgid "in-page anchor on main calendar page (list)"
2365
  msgstr ""
2366
 
2367
- #: my-calendar-settings.php:436
2368
  msgid "in-page anchor on main calendar page (grid)"
2369
  msgstr ""
2370
 
2371
- #: my-calendar-settings.php:438
2372
  msgid "Replaces pop-up in mini calendar"
2373
  msgstr ""
2374
 
2375
- #: my-calendar-settings.php:441
2376
  msgid "Time format"
2377
  msgstr "Formato ora"
2378
 
2379
- #: my-calendar-settings.php:441 my-calendar-settings.php:444
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:447
2389
  msgid "Date Format in other views"
2390
  msgstr ""
2391
 
2392
- #: my-calendar-settings.php:450
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:453
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:453
2401
  msgid "RSS feed shows recently added events."
2402
  msgstr ""
2403
 
2404
- #: my-calendar-settings.php:456
2405
  msgid "Show link to iCal format download."
2406
  msgstr "Mostra link per scaricare in formato iCal."
2407
 
2408
- #: my-calendar-settings.php:456
2409
  msgid "iCal outputs events occurring in the current calendar month."
2410
  msgstr ""
2411
 
2412
- #: my-calendar-settings.php:460
2413
  msgid "Show link to print-formatted view of calendar"
2414
  msgstr ""
2415
 
2416
- #: my-calendar-settings.php:463
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:473
2425
  msgid "Show Weekends on Calendar"
2426
  msgstr ""
2427
 
2428
- #: my-calendar-settings.php:476
2429
  msgid "Switch to list view on mobile devices"
2430
  msgstr "Vai alla vista elenco sugli apparecchi mobili"
2431
 
2432
- #: my-calendar-settings.php:483
2433
  msgid "List Layout Options"
2434
  msgstr ""
2435
 
2436
- #: my-calendar-settings.php:486
2437
  msgid "How many months of events to show at a time:"
2438
  msgstr ""
2439
 
2440
- #: my-calendar-settings.php:489
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:496
2445
  msgid "Event Details Options"
2446
  msgstr "Opzioni per il dettaglio evento"
2447
 
2448
- #: my-calendar-settings.php:499
2449
  msgid "Event title template"
2450
  msgstr "Template del titolo evento"
2451
 
2452
- #: my-calendar-settings.php:500 my-calendar-settings.php:510
2453
  msgid "Templating Help"
2454
  msgstr ""
2455
 
2456
- #: my-calendar-settings.php:500 my-calendar-settings.php:510
2457
  msgid "All template tags are available."
2458
  msgstr ""
2459
 
2460
- #: my-calendar-settings.php:503
2461
  msgid "Event details link text"
2462
  msgstr ""
2463
 
2464
- #: my-calendar-settings.php:505
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:508
2469
  msgid "Event URL link text"
2470
  msgstr "Testo collegamento URL dell'evento"
2471
 
2472
- #: my-calendar-settings.php:524
2473
  msgid "Show Link to Google Map"
2474
  msgstr ""
2475
 
2476
- #: my-calendar-settings.php:527
2477
  msgid "Show Event Address"
2478
  msgstr ""
2479
 
2480
- #: my-calendar-settings.php:545
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:548
2485
  msgid "Show availability status"
2486
  msgstr ""
2487
 
2488
- #: my-calendar-settings.php:551
2489
  msgid "Default usage of category colors."
2490
  msgstr "L'utilizzo predefinito dei colori categoria."
2491
 
2492
- #: my-calendar-settings.php:552
2493
  msgid "Event titles are category colors."
2494
  msgstr ""
2495
 
2496
- #: my-calendar-settings.php:553
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:559
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:565
2509
  msgid "Holiday Category"
2510
  msgstr "Categoria Vacanze"
2511
 
2512
- #: my-calendar-settings.php:567
2513
  msgid "None"
2514
  msgstr "Nessuno"
2515
 
2516
- #: my-calendar-settings.php:583
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:599
2521
  msgid "Calendar Input Settings"
2522
  msgstr "Impostazioni ingresso del Calendario"
2523
 
2524
- #: my-calendar-settings.php:604
2525
  msgid "Select which input fields will be available when adding or editing events."
2526
  msgstr ""
2527
 
2528
- #: my-calendar-settings.php:609
2529
  msgid "Show Event Location Dropdown Menu"
2530
  msgstr "Mostra Località Evento nel menu a scomparsa"
2531
 
2532
- #: my-calendar-settings.php:609
2533
  msgid "Show Event Short Description field"
2534
  msgstr "Mostra campo Descrizione breve evento"
2535
 
2536
- #: my-calendar-settings.php:609
2537
  msgid "Show Event Description Field"
2538
  msgstr "Mostra campo Descrizione dell'evento"
2539
 
2540
- #: my-calendar-settings.php:609
2541
  msgid "Show Event Category field"
2542
  msgstr "Mostra campo Categoria dell'Evento "
2543
 
2544
- #: my-calendar-settings.php:609
2545
  msgid "Show Event Link field"
2546
  msgstr "Mostra campo Link dell'evento"
2547
 
2548
- #: my-calendar-settings.php:609
2549
  msgid "Show Event Recurrence Options"
2550
  msgstr "Mostra Opzioni di ricorrenza evento"
2551
 
2552
- #: my-calendar-settings.php:609
2553
  msgid "Use HTML Editor in Event Description Field"
2554
  msgstr ""
2555
 
2556
- #: my-calendar-settings.php:622
2557
  msgid "Administrators see all input options"
2558
  msgstr "Gli amministratori vedono tutte le opzioni di input"
2559
 
2560
- #: my-calendar-settings.php:627
2561
  msgid "Save Input Settings"
2562
  msgstr "Salva Impostazioni d'ingresso"
2563
 
2564
- #: my-calendar-settings.php:637
2565
  msgid "Multisite Settings (Network Administrators only)"
2566
  msgstr ""
2567
 
2568
- #: my-calendar-settings.php:639
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:644
2573
  msgid "Settings for WP MultiSite configurations"
2574
  msgstr "Opzioni per le configurazioni WP MultiSito"
2575
 
2576
- #: my-calendar-settings.php:645
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:647
2581
  msgid "Site owners may only post to their local calendar"
2582
  msgstr ""
2583
 
2584
- #: my-calendar-settings.php:648
2585
  msgid "Site owners may only post to the central calendar"
2586
  msgstr ""
2587
 
2588
- #: my-calendar-settings.php:649
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:651
2593
  msgid "Changes only effect input permissions. Public-facing calendars will be unchanged."
2594
  msgstr ""
2595
 
2596
- #: my-calendar-settings.php:653
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:654
2601
  msgid "Sub-site calendars show events from the central calendar."
2602
  msgstr ""
2603
 
2604
- #: my-calendar-settings.php:658
2605
  msgid "Save Multisite Settings"
2606
  msgstr ""
2607
 
2608
- #: my-calendar-settings.php:668
2609
  msgid "My Calendar Permissions"
2610
  msgstr "Permessi per My Calendar"
2611
 
2612
- #: my-calendar-settings.php:675
2613
  msgid "Calendar Options: Permissions"
2614
  msgstr "Opzioni calendario: permessi"
2615
 
2616
- #: my-calendar-settings.php:711
2617
  msgid "Save Permissions"
2618
  msgstr "Salva i permessi"
2619
 
2620
- #: my-calendar-settings.php:715
2621
  msgid "My Calendar permission settings are only available to administrators."
2622
  msgstr ""
2623
 
2624
- #: my-calendar-settings.php:723
2625
  msgid "Calendar Email Settings"
2626
  msgstr "Impostazioni Emali del Calendario"
2627
 
2628
- #: my-calendar-settings.php:728
2629
  msgid "Calendar Options: Email Notifications"
2630
  msgstr "Opzioni calendario: notifiche e-mail"
2631
 
2632
- #: my-calendar-settings.php:732
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:735
2637
  msgid "Notification messages are sent to: "
2638
  msgstr "I messaggi di notifica vengono inviati a:"
2639
 
2640
- #: my-calendar-settings.php:738
2641
  msgid "Email subject"
2642
  msgstr "Oggetto email"
2643
 
2644
- #: my-calendar-settings.php:738
2645
  msgid "New event Added"
2646
  msgstr "Nuovo evento aggiunto"
2647
 
2648
- #: my-calendar-settings.php:741
2649
  msgid "Message Body"
2650
  msgstr "Corpo del messaggio"
2651
 
2652
- #: my-calendar-settings.php:741
2653
  msgid "New Event:"
2654
  msgstr "Nuovo Evento:"
2655
 
2656
- #: my-calendar-settings.php:742
2657
  msgid "Shortcode Help"
2658
  msgstr "Aiuto Shortcode"
2659
 
2660
- #: my-calendar-settings.php:742
2661
  msgid "All template shortcodes are available."
2662
  msgstr "Tutti i codici brevi di templates sono disponibili."
2663
 
2664
- #: my-calendar-settings.php:747
2665
  msgid "Save Email Settings"
2666
  msgstr "Salva Impostazioni Email"
2667
 
2668
- #: my-calendar-settings.php:756
2669
  msgid "Calendar User Settings"
2670
  msgstr "Impostazioni dell'utente del Calendario"
2671
 
2672
- #: my-calendar-settings.php:764
2673
  msgid "Settings which can be configured in registered user's accounts"
2674
  msgstr ""
2675
 
2676
- #: my-calendar-settings.php:766
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:778
2681
  msgid "Timezone Settings"
2682
  msgstr "Impostazioni Fuso Orario"
2683
 
2684
- #: my-calendar-settings.php:779
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:781
2689
  msgid "Enable Timezone"
2690
  msgstr "Abilita il fuso orario"
2691
 
2692
- #: my-calendar-settings.php:784
2693
  msgid "Select Timezone Label"
2694
  msgstr "Selezione Etichetta Fuso orario"
2695
 
2696
- #: my-calendar-settings.php:787
2697
  msgid "Timezone Options"
2698
  msgstr "Opzione Fuso Orario"
2699
 
2700
- #: my-calendar-settings.php:787 my-calendar-settings.php:811
2701
  msgid "Value, Label; one per line"
2702
  msgstr "Valore, Etichetta; uno per riga"
2703
 
2704
- #: my-calendar-settings.php:799
2705
  msgid "Location Settings"
2706
  msgstr "Impostazioni Località"
2707
 
2708
- #: my-calendar-settings.php:800
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:802
2713
  msgid "Enable Location"
2714
  msgstr "Abilita Località"
2715
 
2716
- #: my-calendar-settings.php:805
2717
  msgid "Use this location list as input control"
2718
  msgstr ""
2719
 
2720
- #: my-calendar-settings.php:805
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:808
2725
  msgid "Select Location Label"
2726
  msgstr "Seleziona etichetta località"
2727
 
2728
- #: my-calendar-settings.php:811
2729
  msgid "Location Options"
2730
  msgstr "Opzioni Località"
2731
 
2732
- #: my-calendar-settings.php:821
2733
  msgid "Location Type"
2734
  msgstr "Tipo Località"
2735
 
2736
- #: my-calendar-settings.php:834
2737
  msgid "Save User Settings"
2738
  msgstr "Salva Impostazioni Utente"
2739
 
2740
- #: my-calendar-settings.php:838
2741
  msgid "Only users with the ability to edit user accounts may modify user settings."
2742
  msgstr ""
2743
 
2744
- #: my-calendar-styles.php:83
2745
  msgid "The stylesheet has been updated."
2746
  msgstr "Il foglio di stile è stato aggiornato."
2747
 
2748
- #: my-calendar-styles.php:83
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:97
2753
  msgid "Stylesheet reset to default."
2754
  msgstr "Foglio di stile ripristino delle impostazioni predefinite."
2755
 
2756
- #: my-calendar-styles.php:100
2757
  msgid "Style Settings Saved"
2758
  msgstr "Impostazioni Stile salvate"
2759
 
2760
- #: my-calendar-styles.php:109
2761
  msgid "New theme selected."
2762
  msgstr "Nuovo tema selezionato"
2763
 
2764
- #: my-calendar-styles.php:125
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:133
2769
  msgid "My Calendar Styles"
2770
  msgstr "Stile My Calendar"
2771
 
2772
- #: my-calendar-styles.php:139
2773
  msgid "Calendar Style Settings"
2774
  msgstr "Impostazioni Stile Calendario"
2775
 
2776
- #: my-calendar-styles.php:147
2777
  msgid "Select My Calendar Theme"
2778
  msgstr "Selezionare il Tema My Calendar"
2779
 
2780
- #: my-calendar-styles.php:155
2781
  msgid "Your Custom Stylesheets"
2782
  msgstr "I fogli di stile personalizzati"
2783
 
2784
- #: my-calendar-styles.php:164
2785
  msgid "Installed Stylesheets"
2786
  msgstr "Fogli di stile Installati"
2787
 
2788
- #: my-calendar-styles.php:172
2789
  msgid "Choose Style"
2790
  msgstr "Scegli stile"
2791
 
2792
- #: my-calendar-styles.php:185
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:193
2797
  msgid "CSS Style Options"
2798
  msgstr "Opzioni Style CSS"
2799
 
2800
- #: my-calendar-styles.php:198
2801
  msgid "Restore My Calendar stylesheet"
2802
  msgstr "Riattiva il foglio di stile My Calendar"
2803
 
2804
- #: my-calendar-styles.php:198
2805
  msgid "Disable My Calendar Stylesheet"
2806
  msgstr "Disattivare foglio di stile del mio Calendario"
2807
 
2808
- #: my-calendar-styles.php:201
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:214
2813
  msgid "Comparing Your Style with latest installed version of My Calendar"
2814
  msgstr ""
2815
 
2816
- #: my-calendar-styles.php:218
2817
  msgid "There have been updates to the stylesheet."
2818
  msgstr ""
2819
 
2820
- #: my-calendar-styles.php:218
2821
  msgid "Compare Your Stylesheet with latest installed version of My Calendar."
2822
  msgstr ""
2823
 
2824
- #: my-calendar-styles.php:222
2825
  msgid "Your stylesheet matches that included with My Calendar."
2826
  msgstr ""
2827
 
2828
- #: my-calendar-styles.php:230
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:58
2833
  msgid "Map<span> to %s</span>"
2834
  msgstr ""
2835
 
2836
- #: my-calendar-templates.php:79 my-calendar-templates.php:133
2837
  msgid "Visit web site<span>: %s</span>"
2838
  msgstr "Visita il sito web<span>: %s</span>"
2839
 
2840
- #: my-calendar-templates.php:142
2841
  msgid "Date of Month (the %s of each month)"
2842
  msgstr ""
2843
 
2844
- #: my-calendar-templates.php:143
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:31
2853
  msgid "List Output Template saved"
2854
  msgstr ""
2855
 
2856
- #: my-calendar-templating.php:42
2857
  msgid "Mini Output Template saved"
2858
  msgstr "Modello mini output salvato"
2859
 
2860
- #: my-calendar-templating.php:53
2861
  msgid "Event Details Template saved"
2862
  msgstr ""
2863
 
2864
- #: my-calendar-templating.php:69
2865
  msgid "My Calendar Information Templates"
2866
  msgstr ""
2867
 
2868
- #: my-calendar-templating.php:74
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:74
2873
  msgid "Templates Help"
2874
  msgstr ""
2875
 
2876
- #: my-calendar-templating.php:79
2877
  msgid "My Calendar: Grid Event Template"
2878
  msgstr "My Calendar: modello di griglia eventi"
2879
 
2880
- #: my-calendar-templating.php:84
2881
  msgid "Use this grid event template"
2882
  msgstr ""
2883
 
2884
- #: my-calendar-templating.php:87
2885
  msgid "Your custom template for events in the calendar grid output."
2886
  msgstr ""
2887
 
2888
- #: my-calendar-templating.php:90
2889
  msgid "Save Grid Template"
2890
  msgstr "Salva il modello a griglia"
2891
 
2892
- #: my-calendar-templating.php:99
2893
  msgid "My Calendar: List Event Template"
2894
  msgstr "My Calendar: modello lista eventi"
2895
 
2896
- #: my-calendar-templating.php:104
2897
  msgid "Use this list event template"
2898
  msgstr ""
2899
 
2900
- #: my-calendar-templating.php:107
2901
  msgid "Your custom template for events in calendar list output."
2902
  msgstr ""
2903
 
2904
- #: my-calendar-templating.php:110
2905
  msgid "Save List Template"
2906
  msgstr ""
2907
 
2908
- #: my-calendar-templating.php:119
2909
  msgid "My Calendar: Mini Calendar Template"
2910
  msgstr "My Calendar: modello per mini calendario"
2911
 
2912
- #: my-calendar-templating.php:124
2913
  msgid "Use this mini event template"
2914
  msgstr ""
2915
 
2916
- #: my-calendar-templating.php:127
2917
  msgid "Your custom template for events in sidebar/mini calendar output."
2918
  msgstr ""
2919
 
2920
- #: my-calendar-templating.php:130
2921
  msgid "Save Mini Template"
2922
  msgstr ""
2923
 
2924
- #: my-calendar-templating.php:139
2925
  msgid "My Calendar: Event Details Page Template"
2926
  msgstr ""
2927
 
2928
- #: my-calendar-templating.php:144
2929
  msgid "Use this details template"
2930
  msgstr "Usa questo modello per i dettagli"
2931
 
2932
- #: my-calendar-templating.php:147
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:150
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:46 my-calendar-widgets.php:140
2969
  msgid "Template"
2970
  msgstr "Template"
2971
 
2972
- #: my-calendar-widgets.php:49
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:51 my-calendar-widgets.php:148
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:61 my-calendar-widgets.php:181
2993
- #: my-calendar-widgets.php:598
2994
  msgid "Category or categories to display:"
2995
  msgstr "Categoria o le categorie da visualizzare:"
2996
 
2997
- #: my-calendar-widgets.php:87
2998
  msgid "My Calendar: Upcoming Events"
2999
  msgstr "My Calendar: Prossimi Eventi"
3000
 
3001
- #: my-calendar-widgets.php:144
3002
  msgid "Widget Options"
3003
  msgstr "Opzione Widget"
3004
 
3005
- #: my-calendar-widgets.php:155
3006
  msgid "Display upcoming events by:"
3007
  msgstr "Visualizzare prossimi eventi per:"
3008
 
3009
- #: my-calendar-widgets.php:156
3010
  msgid "Events (e.g. 2 past, 3 future)"
3011
  msgstr "Eventi (ad esempio 2 passate, 3 futuro)"
3012
 
3013
- #: my-calendar-widgets.php:157
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:161
3018
  msgid "Skip the first <em>n</em> events"
3019
  msgstr "Salta i primi <em>n</em> eventi"
3020
 
3021
- #: my-calendar-widgets.php:164
3022
  msgid "Events sort order:"
3023
  msgstr "Ordinamento degli eventi:"
3024
 
3025
- #: my-calendar-widgets.php:165
3026
  msgid "Ascending (near to far)"
3027
  msgstr ""
3028
 
3029
- #: my-calendar-widgets.php:166
3030
  msgid "Descending (far to near)"
3031
  msgstr "Discendente (dall'ultimo al primo)"
3032
 
3033
- #: my-calendar-widgets.php:174
3034
  msgid "Include today's events"
3035
  msgstr ""
3036
 
3037
- #: my-calendar-widgets.php:177
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:551
3042
  msgid "My Calendar: Mini Calendar"
3043
  msgstr "My Calendar: mini calendario"
3044
 
3045
- #: my-calendar-widgets.php:573
3046
  msgid "Calendar"
3047
  msgstr "Calendario"
3048
 
3049
- #: my-calendar-widgets.php:602
3050
  msgid "Show Next/Previous Navigation:"
3051
  msgstr ""
3052
 
3053
- #: my-calendar-widgets.php:614
3054
  msgid "Show Category Key:"
3055
  msgstr "Mostra la chiave della categoria"
3056
 
3057
- #: my-calendar-widgets.php:620
3058
  msgid "Mini-Calendar Timespan:"
3059
  msgstr ""
3060
 
3061
- #: my-calendar.php:144
3062
  msgid "Support This Plug-in"
3063
  msgstr ""
3064
 
3065
- #: my-calendar.php:146
3066
  msgid "Help me help you:"
3067
  msgstr ""
3068
 
3069
- #: my-calendar.php:146
3070
  msgid "Buy the My Calendar User's Guide"
3071
  msgstr "Compra la guida utente di My Calendar"
3072
 
3073
- #: my-calendar.php:147
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:152 my-calendar.php:155
3078
  msgid "Make a Donation"
3079
  msgstr "Fai una donazione"
3080
 
3081
- #: my-calendar.php:163
3082
  msgid "Get Help"
3083
  msgstr ""
3084
 
3085
- #: my-calendar.php:166
3086
  msgid "Get Support"
3087
  msgstr "ottenere assistenza"
3088
 
3089
- #: my-calendar.php:167 my-calendar.php:347
3090
  msgid "My Calendar Help"
3091
  msgstr "Aiuto My Calendar"
3092
 
3093
- #: my-calendar.php:168
3094
  msgid "Check out my other plug-ins"
3095
  msgstr ""
3096
 
3097
- #: my-calendar.php:169
3098
  msgid "Rate this plug-in 5 stars!"
3099
  msgstr "Assegna 5 stelle a questo plug-in!"
3100
 
3101
- #: my-calendar.php:195
3102
  msgid "Title of the event."
3103
- msgstr ""
3104
 
3105
- #: my-calendar.php:198
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:201
3110
  msgid "Start time for the event."
3111
  msgstr "Ora di inizio dell'evento."
3112
 
3113
- #: my-calendar.php:204
3114
  msgid "Event times adjusted to the current user's time zone if set."
3115
- msgstr ""
3116
 
3117
- #: my-calendar.php:207
3118
  msgid "Date on which the event begins."
3119
  msgstr "Data in cui inizia l'evento."
3120
 
3121
- #: my-calendar.php:210
3122
  msgid "Date on which the event ends."
3123
- msgstr ""
3124
 
3125
- #: my-calendar.php:213
3126
  msgid "Time at which the event ends."
3127
  msgstr "Ora in cui l'evento termina."
3128
 
3129
- #: my-calendar.php:216
3130
  msgid "Beginning date to end date; excludes end date if same as beginning."
3131
- msgstr ""
3132
 
3133
- #: my-calendar.php:219
3134
  msgid "Multi-day events: an unordered list of dates/times. Otherwise, beginning date/time."
3135
- msgstr ""
3136
 
3137
- #: my-calendar.php:222
3138
  msgid "Author who posted the event."
3139
  msgstr "Autore che ha pubblicato l'evento."
3140
 
3141
- #: my-calendar.php:225
3142
  msgid "Name of the assigned host for the event."
3143
  msgstr "Nome dell'ospite designato per l'evento"
3144
 
3145
- #: my-calendar.php:228
3146
  msgid "Email for the person assigned as host."
3147
  msgstr ""
3148
 
3149
- #: my-calendar.php:231
3150
  msgid "Short event description."
3151
  msgstr "Descrizione breve dell'evento."
3152
 
3153
- #: my-calendar.php:234
3154
  msgid "Description of the event."
3155
  msgstr "Descrizione dell'evento"
3156
 
3157
- #: my-calendar.php:240
3158
  msgid "URL provided for the event."
3159
  msgstr "URL fornito per l'evento."
3160
 
3161
- #: my-calendar.php:243
3162
  msgid "Link to an auto-generated page containing information about the event."
3163
  msgstr ""
3164
 
3165
- #: my-calendar.php:246
3166
  msgid "Whether event is currently open for registration."
3167
  msgstr "Se un evento è al momento disponibile alla registrazione."
3168
 
3169
- #: my-calendar.php:249
3170
  msgid "Current status of event: either \"Published\" or \"Reserved.\""
3171
  msgstr ""
3172
 
3173
- #: my-calendar.php:255
3174
  msgid "Name of the location of the event."
3175
  msgstr "Nome della località dell'evento."
3176
 
3177
- #: my-calendar.php:258
3178
  msgid "First line of the site address."
3179
  msgstr ""
3180
 
3181
- #: my-calendar.php:261
3182
  msgid "Second line of the site address."
3183
  msgstr "Seconda linea dell'indirizzo del sito."
3184
 
3185
- #: my-calendar.php:264
3186
  msgid "City."
3187
  msgstr "Città."
3188
 
3189
- #: my-calendar.php:267
3190
  msgid "State."
3191
  msgstr "Stato."
3192
 
3193
- #: my-calendar.php:270
3194
  msgid "Postal code/zip code."
3195
  msgstr "CAP"
3196
 
3197
- #: my-calendar.php:273
3198
  msgid "Custom region."
3199
  msgstr ""
3200
 
3201
- #: my-calendar.php:276
3202
  msgid "Country for the event location."
3203
  msgstr "Paese della località dell'evento"
3204
 
3205
- #: my-calendar.php:279
3206
  msgid "Output the URL for the location."
3207
- msgstr ""
3208
 
3209
- #: my-calendar.php:282
3210
  msgid "Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
3211
- msgstr ""
3212
 
3213
- #: my-calendar.php:285
3214
  msgid "Link to Google Map to the event, if address information is available."
3215
- msgstr ""
3216
 
3217
- #: my-calendar.php:291
3218
  msgid "Name of the category of the event."
3219
  msgstr "Nome della categoria dell'evento."
3220
 
3221
- #: my-calendar.php:294
3222
  msgid "URL for the event's category icon."
3223
  msgstr ""
3224
 
3225
- #: my-calendar.php:297
3226
  msgid "Hex code for the event's category color."
3227
  msgstr ""
3228
 
3229
- #: my-calendar.php:300
3230
  msgid "ID of the category of the event."
3231
  msgstr "ID della categoria dell'evento."
3232
 
3233
- #: my-calendar.php:320 my-calendar.php:322 my-calendar.php:327
3234
- #: my-calendar.php:329
3235
  msgid "My Calendar"
3236
  msgstr "My Calendar"
3237
 
3238
- #: my-calendar.php:338
3239
  msgid "Add/Edit Events"
3240
  msgstr "Aggiungere/Modificare eventi"
3241
 
3242
- #: my-calendar.php:344
3243
  msgid "Style Editor"
3244
  msgstr "Style Editor"
3245
 
3246
- #: my-calendar.php:345
3247
  msgid "Behavior Editor"
3248
  msgstr "Editore Behavior"
3249
 
3250
- #: my-calendar.php:346
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> &mdash; 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 "&laquo; Previous Page"
280
  msgstr "&laquo; Pagina precedente"
281
 
282
+ #: my-calendar-event-manager.php:979
283
  msgid "Next Page &raquo;"
284
  msgstr "Pagina successiva &raquo;"
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 &ndash; 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 &raquo;"
2182
  msgstr "Prossimi eventi &raquo;"
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 "&laquo; 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
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: My Calendar 1.5.8\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
5
- "POT-Creation-Date: 2011-04-05 19:02:47+00:00\n"
6
- "PO-Revision-Date: 2011-04-16 15:49-0600\n"
7
- "Last-Translator: Joseph Dolson <design@joedolson.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Russian\n"
14
- "X-Poedit-Country: RUSSIA\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
17
- "X-Poedit-Basepath: \n"
18
- "X-Poedit-Bookmarks: \n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Textdomain-Support: yes"
21
-
22
- #: my-calendar-styles.php:79
23
- #@ my-calendar
24
- msgid "The stylesheet has been updated."
25
- msgstr "Таблица стилей была обновлена."
26
-
27
- #: my-calendar-styles.php:79
28
- #@ my-calendar
29
- msgid "Write Error! Please verify write permissions on the style file."
30
- msgstr "Ошибка записи! Пожалуйста проверьте разрешения на запись файла стиля."
31
-
32
- #: my-calendar-styles.php:93
33
- #@ my-calendar
34
- msgid "Stylesheet reset to default."
35
- msgstr "Сбросить таблицу стилей на значения по умолчанию."
36
-
37
- #: my-calendar-styles.php:96
38
- #@ my-calendar
39
- msgid "Style Settings Saved"
40
- msgstr "Настройки стиля сохранены"
41
-
42
- #: my-calendar-styles.php:105
43
- #@ my-calendar
44
- msgid "New theme selected."
45
- msgstr "Новая тема выбрана."
46
-
47
- #: my-calendar-styles.php:121
48
- #@ my-calendar
49
- msgid "Sorry. The file you are looking for doesn't appear to exist. Please check your file name and location!"
50
- msgstr "Извините. Файл, который вы ищете, кажется, не существует. Проверьте имя файла и место!"
51
-
52
- #: my-calendar-styles.php:129
53
- #@ my-calendar
54
- msgid "My Calendar Styles"
55
- msgstr "Стили My Calendar"
56
-
57
- #: my-calendar-styles.php:133
58
- #@ my-calendar
59
- msgid "Calendar Style Settings"
60
- msgstr "Настройки стиля календаря"
61
-
62
- #: my-calendar-styles.php:141
63
- #@ my-calendar
64
- msgid "Select My Calendar Theme"
65
- msgstr "Выберите тему для My Calendar"
66
-
67
- #: my-calendar-styles.php:149
68
- #@ default
69
- msgid "Your Custom Stylesheets"
70
- msgstr "Ваши пользовательские таблицы стилей"
71
-
72
- #: my-calendar-styles.php:158
73
- #@ my-calendar
74
- msgid "Installed Stylesheets"
75
- msgstr "Установленные таблицы стилей"
76
-
77
- #: my-calendar-styles.php:166
78
- #@ my-calendar
79
- msgid "Choose Style"
80
- msgstr "Выберите стиль"
81
-
82
- #: my-calendar-styles.php:179
83
- #@ my-calendar
84
- 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."
85
- msgstr "My Calendar не смог обновить CSS файлы во время обновления. Проверьте права доступа к файлу, если вы хотите редактировать стили My Calendar. Ваши ранее сохраненные стили ниже. Это сообщение и эти стили будут удалены из базы данных, когда вы обновите ваш стиль."
86
-
87
- #: my-calendar-styles.php:187
88
- #@ my-calendar
89
- msgid "CSS Style Options"
90
- msgstr "Настройки CSS-стиля"
91
-
92
- #: my-calendar-styles.php:189
93
- #@ my-calendar
94
- msgid "Apply CSS only on these pages (comma separated page IDs)"
95
- msgstr "Применить CSS только на этих страницах (ID через запятую)"
96
-
97
- #: my-calendar-styles.php:192
98
- #@ my-calendar
99
- msgid "Disable My Calendar Stylesheet"
100
- msgstr "Выключить таблицу стилей My Calendar"
101
-
102
- #: my-calendar-styles.php:195
103
- #@ my-calendar
104
- msgid "Edit the stylesheet for My Calendar"
105
- msgstr "Редактировать таблицу стилей для My Calendar"
106
-
107
- #: my-calendar-behaviors.php:91
108
- #: my-calendar-behaviors.php:122
109
- #: my-calendar-behaviors.php:153
110
- #: my-calendar-behaviors.php:184
111
- #: my-calendar-behaviors.php:205
112
- #@ my-calendar
113
- msgid "Save"
114
- msgstr "Сохранить"
115
-
116
- #: button/generator.php:18
117
- #: button/generator.php:44
118
- #@ my-calendar
119
- msgid "My Calendar Shortcode Generator"
120
- msgstr "Генератор шорт-кодов My Calendar"
121
-
122
- #: button/generator.php:68
123
- #@ my-calendar
124
- msgid "Format"
125
- msgstr "Формат"
126
-
127
- #: button/generator.php:75
128
- #@ my-calendar
129
- msgid "Show Category Key"
130
- msgstr "Показывать легенду"
131
-
132
- #: button/generator.php:82
133
- #@ my-calendar
134
- msgid "Show Previous/Next Links"
135
- msgstr "Показывать ссылки назад/вперед"
136
-
137
- #: button/generator.php:89
138
- #@ my-calendar
139
- msgid "Show Format Toggle"
140
- msgstr "Показывать переключение формата"
141
-
142
- #: button/generator.php:96
143
- #@ my-calendar
144
- msgid "Time Segment"
145
- msgstr "Составляющая времени"
146
-
147
- #: button/generator.php:105
148
- #@ my-calendar
149
- msgid "Generate Shortcode"
150
- msgstr "Создать шорт-код"
151
-
152
- #: button/generator.php:117
153
- #@ my-calendar
154
- msgid "My Calendar: this generator isn't going to put the shortcode in your page. Sorry!"
155
- msgstr "My Calendar: этот генератор не собирается вставлять шорт-код в вашу страницу. Извините!"
156
-
157
- #: my-calendar-categories.php:103
158
- #@ my-calendar
159
- msgid "Category added successfully"
160
- msgstr "Категория успешно добавлена"
161
-
162
- #: my-calendar-categories.php:105
163
- #@ my-calendar
164
- msgid "Category addition failed."
165
- msgstr "Добавление категории не удалось."
166
-
167
- #: my-calendar-categories.php:115
168
- #@ my-calendar
169
- msgid "Category deleted successfully. Categories in calendar updated."
170
- msgstr "Категория успешно удалена. Категории в календаре обновлены."
171
-
172
- #: my-calendar-categories.php:117
173
- #@ my-calendar
174
- msgid "Category deleted successfully. Categories in calendar not updated."
175
- msgstr "Категория успешно удалена. Категории в календаре не обновлены."
176
-
177
- #: my-calendar-categories.php:119
178
- #@ my-calendar
179
- msgid "Category not deleted. Categories in calendar updated."
180
- msgstr "Категория не удалена. Категории в календаре обновлены."
181
-
182
- #: my-calendar-categories.php:135
183
- #@ my-calendar
184
- msgid "Category edited successfully"
185
- msgstr "Категория успешно отредактирована"
186
-
187
- #: my-calendar-categories.php:170
188
- #: my-calendar-categories.php:195
189
- #: my-calendar-categories.php:212
190
- #@ my-calendar
191
- msgid "Add Category"
192
- msgstr "Добавить категорию"
193
-
194
- #: my-calendar-categories.php:172
195
- #: my-calendar-categories.php:195
196
- #@ my-calendar
197
- msgid "Edit Category"
198
- msgstr "Редактировать категорию"
199
-
200
- #: my-calendar-categories.php:179
201
- #@ my-calendar
202
- msgid "Category Editor"
203
- msgstr "Редактор категории"
204
-
205
- #: my-calendar-categories.php:196
206
- #: my-calendar-categories.php:240
207
- #@ my-calendar
208
- msgid "Category Name"
209
- msgstr "Имя категории"
210
-
211
- #: my-calendar-categories.php:197
212
- #@ my-calendar
213
- msgid "Category Color (Hex format)"
214
- msgstr "Цвет категории (в hex-формате)"
215
-
216
- #: my-calendar-categories.php:198
217
- #: my-calendar-categories.php:242
218
- #@ my-calendar
219
- msgid "Category Icon"
220
- msgstr "Значок категории"
221
-
222
- #: my-calendar-categories.php:212
223
- #: my-calendar-locations.php:215
224
- #: my-calendar-styles.php:198
225
- #@ my-calendar
226
- msgid "Save Changes"
227
- msgstr "Сохранить изменения"
228
-
229
- #: my-calendar-categories.php:228
230
- #: my-calendar.php:168
231
- #@ my-calendar
232
- msgid "Manage Categories"
233
- msgstr "Управление категориями"
234
-
235
- #: my-calendar-categories.php:239
236
- #: my-calendar-event-manager.php:934
237
- #: my-calendar-group-manager.php:706
238
- #: my-calendar-locations.php:275
239
- #@ my-calendar
240
- msgid "ID"
241
- msgstr "ID"
242
-
243
- #: my-calendar-categories.php:241
244
- #@ my-calendar
245
- msgid "Category Color"
246
- msgstr "Цвет категории"
247
-
248
- #: my-calendar-categories.php:243
249
- #: my-calendar-categories.php:257
250
- #: my-calendar-event-manager.php:1001
251
- #: my-calendar-group-manager.php:715
252
- #: my-calendar-locations.php:277
253
- #: my-calendar-locations.php:289
254
- #: my-calendar-output.php:292
255
- #@ my-calendar
256
- msgid "Edit"
257
- msgstr "Редактировать"
258
-
259
- #: my-calendar-categories.php:244
260
- #: my-calendar-categories.php:263
261
- #: my-calendar-event-manager.php:183
262
- #: my-calendar-event-manager.php:1004
263
- #: my-calendar-locations.php:278
264
- #: my-calendar-locations.php:290
265
- #: my-calendar-output.php:293
266
- #@ my-calendar
267
- msgid "Delete"
268
- msgstr "Удалить"
269
-
270
- #: my-calendar-categories.php:260
271
- #: my-calendar-event-manager.php:982
272
- #: my-calendar-group-manager.php:755
273
- #: my-calendar-output.php:186
274
- #: my-calendar-settings.php:307
275
- #@ my-calendar
276
- msgid "N/A"
277
- msgstr "неизв."
278
-
279
- #: my-calendar-categories.php:263
280
- #: my-calendar-locations.php:290
281
- #@ my-calendar
282
- msgid "Are you sure you want to delete this category?"
283
- msgstr "Вы уверены, что хотите удалить категорию?"
284
-
285
- #: my-calendar-categories.php:274
286
- #@ my-calendar
287
- msgid "There are no categories in the database - something has gone wrong!"
288
- msgstr "В базе данных нет категорий - что-то пошло не так!"
289
-
290
- #: my-calendar-widgets.php:5
291
- #@ my-calendar
292
- msgid "My Calendar: Today's Events"
293
- msgstr "My Calendar: События на сегодня"
294
-
295
- #: my-calendar-event-manager.php:935
296
- #: my-calendar-group-manager.php:708
297
- #: my-calendar-settings.php:508
298
- #: my-calendar-widgets.php:38
299
- #: my-calendar-widgets.php:124
300
- #: my-calendar-widgets.php:571
301
- #@ my-calendar
302
- msgid "Title"
303
- msgstr "Название"
304
-
305
- #: my-calendar-widgets.php:42
306
- #: my-calendar-widgets.php:128
307
- #@ my-calendar
308
- msgid "Template"
309
- msgstr "Шаблон"
310
-
311
- #: my-calendar-widgets.php:45
312
- #@ my-calendar
313
- msgid "Add calendar URL to use this option."
314
- msgstr "Добавьте URL календаря чтобы использовать эту опцию."
315
-
316
- #: my-calendar-widgets.php:47
317
- #: my-calendar-widgets.php:136
318
- #@ my-calendar
319
- msgid "Link widget title to calendar:"
320
- msgstr "Ссылка загаловка виджета на календарь:"
321
-
322
- #: my-calendar-widgets.php:48
323
- #: my-calendar-widgets.php:137
324
- #@ my-calendar
325
- msgid "Not Linked"
326
- msgstr "Не привязано"
327
-
328
- #: my-calendar-widgets.php:49
329
- #: my-calendar-widgets.php:138
330
- #@ my-calendar
331
- msgid "Linked"
332
- msgstr "Привязано"
333
-
334
- #: my-calendar-widgets.php:53
335
- #@ my-calendar
336
- msgid "Show this text if there are no events today:"
337
- msgstr "Показывать этот текст если на сегодня нет событий:"
338
-
339
- #: my-calendar-widgets.php:57
340
- #: my-calendar-widgets.php:169
341
- #: my-calendar-widgets.php:575
342
- #@ my-calendar
343
- msgid "Category or categories to display:"
344
- msgstr "Категория или категории для показа:"
345
-
346
- #: my-calendar-widgets.php:78
347
- #@ my-calendar
348
- msgid "My Calendar: Upcoming Events"
349
- msgstr "My Calendar: Грядущие события"
350
-
351
- #: my-calendar-widgets.php:132
352
- #@ my-calendar
353
- msgid "Widget Options"
354
- msgstr "Настройки виджета"
355
-
356
- #: my-calendar-widgets.php:143
357
- #@ my-calendar
358
- msgid "Display upcoming events by:"
359
- msgstr "Показывать грядущие события по: "
360
-
361
- #: my-calendar-widgets.php:144
362
- #@ my-calendar
363
- msgid "Events (e.g. 2 past, 3 future)"
364
- msgstr "События (т.е. 2 прошедших, 3 будущих)"
365
-
366
- #: my-calendar-widgets.php:145
367
- #@ my-calendar
368
- msgid "Dates (e.g. 4 days past, 5 forward)"
369
- msgstr "Даты (т.е. 4 прошедших дня, 5 будущих)"
370
-
371
- #: my-calendar-widgets.php:152
372
- #@ my-calendar
373
- msgid "Events sort order:"
374
- msgstr "Порядок сортировки событийЖ"
375
-
376
- #: my-calendar-widgets.php:153
377
- #@ my-calendar
378
- msgid "Ascending (near to far)"
379
- msgstr "Восходящий (от ближайшего к дальнейшему)"
380
-
381
- #: my-calendar-widgets.php:154
382
- #@ my-calendar
383
- msgid "Descending (far to near)"
384
- msgstr "Низходящий (от дальнейшего к ближайшему)"
385
-
386
- #: my-calendar-widgets.php:165
387
- #@ my-calendar
388
- msgid "Show this text if there are no events meeting your criteria:"
389
- msgstr "Показывать этот текст если нет событий отвечающих вашим критериям:"
390
-
391
- #: my-calendar-widgets.php:530
392
- #@ my-calendar
393
- msgid "My Calendar: Mini Calendar"
394
- msgstr "My Calendar: Вид мини-календаря"
395
-
396
- #: my-calendar-widgets.php:551
397
- #@ my-calendar
398
- msgid "Calendar"
399
- msgstr "Календарь"
400
-
401
- #: my-calendar-widgets.php:579
402
- #@ my-calendar
403
- msgid "Show Next/Previous Navigation:"
404
- msgstr "Показывать навигацию вперед/назад:"
405
-
406
- #: button/generator.php:77
407
- #: button/generator.php:84
408
- #: button/generator.php:91
409
- #: my-calendar-widgets.php:580
410
- #: my-calendar-widgets.php:586
411
- #@ my-calendar
412
- msgid "Yes"
413
- msgstr "Да"
414
-
415
- #: button/generator.php:78
416
- #: button/generator.php:85
417
- #: button/generator.php:92
418
- #: my-calendar-widgets.php:581
419
- #: my-calendar-widgets.php:587
420
- #@ my-calendar
421
- msgid "No"
422
- msgstr "Нет"
423
-
424
- #: my-calendar-widgets.php:585
425
- #@ my-calendar
426
- msgid "Show Category Key:"
427
- msgstr "Показывать легенду:"
428
-
429
- #: button/generator.php:98
430
- #: my-calendar-output.php:356
431
- #: my-calendar-widgets.php:592
432
- #@ my-calendar
433
- msgid "Month"
434
- msgstr "Месяц"
435
-
436
- #: button/generator.php:99
437
- #: my-calendar-widgets.php:593
438
- #@ my-calendar
439
- msgid "Week"
440
- msgstr "Неделя"
441
-
442
- #: my-calendar-settings.php:52
443
- #@ my-calendar
444
- msgid "Categories imported successfully."
445
- msgstr "Категории успешно импортированы."
446
-
447
- #: my-calendar-settings.php:52
448
- #@ my-calendar
449
- msgid "Categories not imported."
450
- msgstr "Категории не импортированы."
451
-
452
- #: my-calendar-settings.php:53
453
- #@ my-calendar
454
- msgid "Events imported successfully."
455
- msgstr "События успешно импортированы."
456
-
457
- #: my-calendar-settings.php:53
458
- #@ my-calendar
459
- msgid "Events not imported."
460
- msgstr "События не импортированы."
461
-
462
- #: my-calendar-settings.php:89
463
- #@ my-calendar
464
- msgid "Permissions Settings saved"
465
- msgstr "Настройки разрешений сохранены"
466
-
467
- #: my-calendar-settings.php:134
468
- #@ my-calendar
469
- msgid "Output Settings saved"
470
- msgstr "Настройки вывода сохранены"
471
-
472
- #: my-calendar-settings.php:153
473
- #@ my-calendar
474
- msgid "Input Settings saved"
475
- msgstr "Настройки ввода сохранены"
476
-
477
- #: my-calendar-settings.php:180
478
- #@ my-calendar
479
- msgid "Custom text settings saved"
480
- msgstr "Настройки пользовательского текста сохранены"
481
-
482
- #: my-calendar-settings.php:192
483
- #@ my-calendar
484
- msgid "Email notice settings saved"
485
- msgstr "Электронное сообщение сохранено"
486
-
487
- #: my-calendar-settings.php:206
488
- #@ my-calendar
489
- msgid "User custom settings saved"
490
- msgstr "Пользовательские настройки сохранены"
491
-
492
- #: my-calendar-settings.php:237
493
- #@ my-calendar
494
- msgid "My Calendar Options"
495
- msgstr "Настройки My Calendar"
496
-
497
- #: my-calendar-settings.php:241
498
- #@ my-calendar
499
- msgid "Calendar Management Settings"
500
- msgstr "Настройки управления календаря"
501
-
502
- #: my-calendar-settings.php:246
503
- #@ my-calendar
504
- msgid "Calendar Options: Management"
505
- msgstr "Настройки календаря: управление"
506
-
507
- #: my-calendar-settings.php:248
508
- #@ my-calendar
509
- msgid "Lowest user group that may create events"
510
- msgstr "Низшая группа, которая может создавать события"
511
-
512
- #: my-calendar-settings.php:249
513
- #: my-calendar-settings.php:258
514
- #@ my-calendar
515
- msgid "Subscriber"
516
- msgstr "Подписчик"
517
-
518
- #: my-calendar-settings.php:250
519
- #: my-calendar-settings.php:259
520
- #: my-calendar-settings.php:267
521
- #@ my-calendar
522
- msgid "Contributor"
523
- msgstr "Помощник"
524
-
525
- #: my-calendar-event-manager.php:940
526
- #: my-calendar-group-manager.php:713
527
- #: my-calendar-settings.php:251
528
- #: my-calendar-settings.php:260
529
- #: my-calendar-settings.php:268
530
- #: my-calendar-settings.php:511
531
- #@ my-calendar
532
- msgid "Author"
533
- msgstr "Автор"
534
-
535
- #: my-calendar-settings.php:252
536
- #: my-calendar-settings.php:261
537
- #: my-calendar-settings.php:269
538
- #@ my-calendar
539
- msgid "Editor"
540
- msgstr "Редактор"
541
-
542
- #: my-calendar-settings.php:253
543
- #: my-calendar-settings.php:262
544
- #: my-calendar-settings.php:270
545
- #@ my-calendar
546
- msgid "Administrator"
547
- msgstr "Администратор"
548
-
549
- #: my-calendar-settings.php:257
550
- #@ my-calendar
551
- msgid "Lowest user group that may approve events"
552
- msgstr "Низшая группа, которая может подтверждать события"
553
-
554
- #: my-calendar-settings.php:263
555
- #@ my-calendar
556
- msgid "Enable approval options."
557
- msgstr "Включить опцию подтверждения."
558
-
559
- #: my-calendar-settings.php:266
560
- #@ my-calendar
561
- msgid "Lowest user group that may edit or delete all events"
562
- msgstr "Низшая группа, которая может редактировать или удалить любое событие"
563
-
564
- #: my-calendar-settings.php:272
565
- #@ my-calendar
566
- msgid "By default, only administrators may edit or delete any event. Other users may only edit or delete events which they authored."
567
- msgstr "По умолчанию, только администратор может редактировать или удалить любое событие. Остальные пользователи могут редактировать или удалять только собственные события."
568
-
569
- #: my-calendar-settings.php:299
570
- #@ my-calendar
571
- msgid "Calendar Text Settings"
572
- msgstr "Настройки текста календаря"
573
-
574
- #: my-calendar-settings.php:304
575
- #@ my-calendar
576
- msgid "Calendar Options: Customizable Text Fields"
577
- msgstr "Настройки календаря: Настраиваемые текстовые поля"
578
-
579
- #: my-calendar-settings.php:307
580
- #@ my-calendar
581
- msgid "Label for events without a set time"
582
- msgstr "Отметка для событий без определенного времени"
583
-
584
- #: my-calendar-settings.php:310
585
- #@ my-calendar
586
- msgid "Previous events link"
587
- msgstr "Ссылка «предыдущие события»"
588
-
589
- #: my-calendar-settings.php:310
590
- #@ my-calendar
591
- msgid "Previous Events"
592
- msgstr "Предыдущие события"
593
-
594
- #: my-calendar-settings.php:313
595
- #@ my-calendar
596
- msgid "Next events link"
597
- msgstr "Ссылка «следующие события»"
598
-
599
- #: my-calendar-settings.php:313
600
- #@ my-calendar
601
- msgid "Next Events"
602
- msgstr "Следующие события"
603
-
604
- #: my-calendar-settings.php:316
605
- #@ my-calendar
606
- msgid "If events are open"
607
- msgstr "Если события открыты"
608
-
609
- #: my-calendar-settings.php:316
610
- #@ my-calendar
611
- msgid "Registration is open"
612
- msgstr "Регистрация открыта"
613
-
614
- #: my-calendar-settings.php:319
615
- #@ my-calendar
616
- msgid "If events are closed"
617
- msgstr "Если события закрыты"
618
-
619
- #: my-calendar-settings.php:319
620
- #@ my-calendar
621
- msgid "Registration is closed"
622
- msgstr "Регистрация закрыта"
623
-
624
- #: my-calendar-settings.php:325
625
- #@ my-calendar
626
- msgid "Additional caption:"
627
- msgstr "Добавочный текст заголовка:"
628
-
629
- #: my-calendar-settings.php:325
630
- #@ my-calendar
631
- msgid "The calendar caption is the text containing the displayed month and year in either list or calendar format. This text will be displayed following that existing text."
632
- msgstr "Заголовок календаря — это текст, содержащий отображаемый месяц и год в любом формате списка или календаря. Этот текст будет отображаться следующим, после имеющегося текста."
633
-
634
- #: my-calendar-settings.php:330
635
- #@ my-calendar
636
- msgid "Save Custom Text Settings"
637
- msgstr "Сохранить настройки пользовательского текста"
638
-
639
- #: my-calendar-settings.php:336
640
- #@ my-calendar
641
- msgid "Calendar Output Settings"
642
- msgstr "Настройки вывода календаря"
643
-
644
- #: my-calendar-settings.php:342
645
- #@ my-calendar
646
- msgid "Calendar Options: Customize the Output of your Calendar"
647
- msgstr "Настройки календаря: Настройте вывод вашего календаря"
648
-
649
- #: my-calendar-settings.php:426
650
- #@ my-calendar
651
- msgid "Event title template"
652
- msgstr "Шаблон названия события"
653
-
654
- #: my-calendar-settings.php:609
655
- #@ my-calendar
656
- msgid "All template shortcodes are available."
657
- msgstr "Все шорткоды шаблона доступны."
658
-
659
- #: my-calendar-settings.php:505
660
- #@ my-calendar
661
- msgid "Default Sort order for Admin Events List"
662
- msgstr "Порядок сортировки по умолчанию для администраторского списка событий"
663
-
664
- #: my-calendar-settings.php:484
665
- #@ my-calendar
666
- msgid "Holiday Category"
667
- msgstr "Категория праздников"
668
-
669
- #: my-calendar-settings.php:403
670
- #@ my-calendar
671
- msgid "Show Weekends on Calendar"
672
- msgstr "Показывать выходные в календаре"
673
-
674
- #: my-calendar-settings.php:393
675
- #@ my-calendar
676
- msgid "Display a jumpbox for changing month and year quickly?"
677
- msgstr "Показать джамп-бокс для быстрой смены месяца и года? "
678
-
679
- #: my-calendar-settings.php:455
680
- #@ my-calendar
681
- msgid "Show short description field on calendar."
682
- msgstr "Показывать короткое описание в календаре."
683
-
684
- #: my-calendar-settings.php:458
685
- #@ my-calendar
686
- msgid "Show full description field on calendar."
687
- msgstr "Показывать полное описание в календаре."
688
-
689
- #: my-calendar-settings.php:384
690
- #@ my-calendar
691
- msgid "Show link to My Calendar RSS feed."
692
- msgstr "Показать ссылку на My Calendar RSS-канал."
693
-
694
- #: my-calendar-settings.php:387
695
- #@ my-calendar
696
- msgid "Show link to iCal format download."
697
- msgstr "Показывать ссылку на загрузку файла в iCal-формате."
698
-
699
- #: my-calendar-settings.php:470
700
- #@ my-calendar
701
- msgid "Default usage of category colors."
702
- msgstr "Использование цветов категории по умолчанию."
703
-
704
- #: my-calendar-settings.php:471
705
- #@ my-calendar
706
- msgid "Apply category colors to event titles as a font color."
707
- msgstr "Применяет цвет категории к названиям как цвет шрифта."
708
-
709
- #: my-calendar-settings.php:472
710
- #@ my-calendar
711
- msgid "Apply category colors to event titles as a background color."
712
- msgstr "Применяет цвет категории к названиям как цвет фона."
713
-
714
- #: my-calendar-settings.php:340
715
- #: my-calendar-settings.php:521
716
- #@ my-calendar
717
- msgid "Save Output Settings"
718
- msgstr "Сохранить настройки вывода"
719
-
720
- #: my-calendar-settings.php:527
721
- #@ my-calendar
722
- msgid "Calendar Input Settings"
723
- msgstr "Настройки ввода календаря"
724
-
725
- #: my-calendar-settings.php:532
726
- #@ my-calendar
727
- msgid "Select which input fields will be available when adding or editing events."
728
- msgstr "Выберите поля ввода, которые будут доступны при добавлении и редактировании событий."
729
-
730
- #: my-calendar-settings.php:537
731
- #@ my-calendar
732
- msgid "Show Event Location Dropdown Menu"
733
- msgstr "Показать выпадающее меню местаположения"
734
-
735
- #: my-calendar-settings.php:537
736
- #@ my-calendar
737
- msgid "Show Event Short Description field"
738
- msgstr "Показывать короткое описание события"
739
-
740
- #: my-calendar-settings.php:537
741
- #@ my-calendar
742
- msgid "Show Event Description Field"
743
- msgstr "Показывать описание события"
744
-
745
- #: my-calendar-settings.php:537
746
- #@ my-calendar
747
- msgid "Show Event Category field"
748
- msgstr "Показывать категорию события"
749
-
750
- #: my-calendar-settings.php:537
751
- #@ my-calendar
752
- msgid "Show Event Link field"
753
- msgstr "Показывать адрес события"
754
-
755
- #: my-calendar-settings.php:537
756
- #@ my-calendar
757
- msgid "Show Event Recurrence Options"
758
- msgstr "Показывать параметры повтора"
759
-
760
- #: my-calendar-settings.php:537
761
- #@ default
762
- msgid "Use HTML Editor in Event Description Field"
763
- msgstr "Использовать HTML-редактор в поле описания события "
764
-
765
- #: my-calendar-settings.php:550
766
- #@ my-calendar
767
- msgid "Administrators see all input options"
768
- msgstr "Администраторы видят все параметры ввода"
769
-
770
- #: my-calendar-settings.php:555
771
- #@ my-calendar
772
- msgid "Save Input Settings"
773
- msgstr "Сохранить настройки ввода"
774
-
775
- #: my-calendar-settings.php:590
776
- #@ my-calendar
777
- msgid "Calendar Email Settings"
778
- msgstr "Настройки электропочты"
779
-
780
- #: my-calendar-settings.php:595
781
- #@ my-calendar
782
- msgid "Calendar Options: Email Notifications"
783
- msgstr "Настройки календаря: электропочтовые уведомления"
784
-
785
- #: my-calendar-settings.php:599
786
- #@ my-calendar
787
- msgid "Send Email Notifications when new events are scheduled or reserved."
788
- msgstr "Отправлять уведомления о новых запланированных или зарезервированных событиях."
789
-
790
- #: my-calendar-settings.php:602
791
- #@ my-calendar
792
- msgid "Notification messages are sent to: "
793
- msgstr "Уведомление отправлено на: "
794
-
795
- #: my-calendar-settings.php:605
796
- #@ my-calendar
797
- msgid "Email subject"
798
- msgstr "Тема письма"
799
-
800
- #: my-calendar-settings.php:605
801
- #@ my-calendar
802
- msgid "New event Added"
803
- msgstr "Новое событие добавлено"
804
-
805
- #: my-calendar-settings.php:608
806
- #@ my-calendar
807
- msgid "Message Body"
808
- msgstr "Сообщение"
809
-
810
- #: my-calendar-settings.php:608
811
- #@ my-calendar
812
- msgid "New Event:"
813
- msgstr "Новое событие:"
814
-
815
- #: my-calendar-settings.php:609
816
- #@ my-calendar
817
- msgid "Shortcode Help"
818
- msgstr "Помощь по «шорт-кодам»"
819
-
820
- #: my-calendar-settings.php:614
821
- #@ my-calendar
822
- msgid "Save Email Settings"
823
- msgstr "Сохранить настройки электропочты"
824
-
825
- #: my-calendar-settings.php:620
826
- #@ my-calendar
827
- msgid "Calendar User Settings"
828
- msgstr "Пользовательские настройки календаря"
829
-
830
- #: my-calendar-settings.php:627
831
- #@ my-calendar
832
- msgid "Settings which can be configured in registered user's accounts"
833
- msgstr "Настройки которые могут быть изменены в аккаунтах зарегистрированных пользователей"
834
-
835
- #: my-calendar-settings.php:629
836
- #@ my-calendar
837
- msgid "Allow registered users to provide timezone or location presets in their user profiles."
838
- msgstr "Разрешить зарегистрированным пользователям предоставлять информацию о часовом поясе и местоположении в их профиле."
839
-
840
- #: my-calendar-settings.php:641
841
- #@ my-calendar
842
- msgid "Timezone Settings"
843
- msgstr "Настройки часового пояся "
844
-
845
- #: my-calendar-settings.php:642
846
- #@ my-calendar
847
- 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."
848
- msgstr "Эти настройки предоставляют возможность зарегистрированным пользователям выбирать часовой пояс в их пользовательских профилях. Когда они просматривают календарь, время событий будут отображаться с учетом выбранного часового пояса."
849
-
850
- #: my-calendar-settings.php:644
851
- #@ my-calendar
852
- msgid "Enable Timezone"
853
- msgstr "Включить часовые пояса"
854
-
855
- #: my-calendar-settings.php:647
856
- #@ my-calendar
857
- msgid "Select Timezone Label"
858
- msgstr "Выберите название часового пояса"
859
-
860
- #: my-calendar-settings.php:650
861
- #@ my-calendar
862
- msgid "Timezone Options"
863
- msgstr "Настройки часового пояся"
864
-
865
- #: my-calendar-settings.php:650
866
- #: my-calendar-settings.php:674
867
- #@ my-calendar
868
- msgid "Value, Label; one per line"
869
- msgstr "Значение, название; одно на строку"
870
-
871
- #: my-calendar-settings.php:662
872
- #@ my-calendar
873
- msgid "Location Settings"
874
- msgstr "Настройки местоположения"
875
-
876
- #: my-calendar-settings.php:665
877
- #@ my-calendar
878
- msgid "Enable Location"
879
- msgstr "Включить местоположение"
880
-
881
- #: my-calendar-settings.php:671
882
- #@ my-calendar
883
- msgid "Select Location Label"
884
- msgstr "Выберите название места"
885
-
886
- #: my-calendar-settings.php:674
887
- #@ my-calendar
888
- msgid "Location Options"
889
- msgstr "Редактор мест"
890
-
891
- #: my-calendar-settings.php:684
892
- #@ my-calendar
893
- msgid "Location Type"
894
- msgstr "Тип места"
895
-
896
- #: button/generator.php:55
897
- #: my-calendar-settings.php:513
898
- #: my-calendar-settings.php:686
899
- #@ my-calendar
900
- msgid "Location Name"
901
- msgstr "Название места"
902
-
903
- #: button/generator.php:56
904
- #: my-calendar-event-manager.php:762
905
- #: my-calendar-group-manager.php:460
906
- #: my-calendar-locations.php:150
907
- #: my-calendar-settings.php:687
908
- #@ my-calendar
909
- msgid "City"
910
- msgstr "Город"
911
-
912
- #: my-calendar-event-manager.php:769
913
- #: my-calendar-group-manager.php:460
914
- #: my-calendar-locations.php:157
915
- #: my-calendar-settings.php:688
916
- #@ my-calendar
917
- msgid "State/Province"
918
- msgstr "Федеральный округ/Обасть"
919
-
920
- #: button/generator.php:59
921
- #: my-calendar-event-manager.php:794
922
- #: my-calendar-group-manager.php:466
923
- #: my-calendar-locations.php:182
924
- #: my-calendar-settings.php:689
925
- #@ my-calendar
926
- msgid "Country"
927
- msgstr "Страна"
928
-
929
- #: button/generator.php:58
930
- #: my-calendar-event-manager.php:776
931
- #: my-calendar-group-manager.php:460
932
- #: my-calendar-locations.php:164
933
- #: my-calendar-settings.php:690
934
- #@ my-calendar
935
- msgid "Postal Code"
936
- msgstr "Индекс"
937
-
938
- #: button/generator.php:60
939
- #: my-calendar-event-manager.php:785
940
- #: my-calendar-event-manager.php:810
941
- #: my-calendar-group-manager.php:463
942
- #: my-calendar-group-manager.php:476
943
- #: my-calendar-locations.php:173
944
- #: my-calendar-locations.php:198
945
- #: my-calendar-settings.php:691
946
- #@ my-calendar
947
- msgid "Region"
948
- msgstr "Регион"
949
-
950
- #: my-calendar-settings.php:697
951
- #@ my-calendar
952
- msgid "Save User Settings"
953
- msgstr "Сохранить пользовательские настройки"
954
-
955
- #: my-calendar-event-manager.php:102
956
- #: my-calendar-settings.php:711
957
- #@ my-calendar
958
- 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?"
959
- msgstr "My Calendar определил, что у вас установлен плагин Kieran O'Shean. Вы можете импортировать события и категории в базу My Calendar. Желаете импортировать эти события?"
960
-
961
- #: my-calendar-event-manager.php:109
962
- #: my-calendar-settings.php:718
963
- #@ my-calendar
964
- msgid "Import from Calendar"
965
- msgstr "Импорт из календаря"
966
-
967
- #: my-calendar-help.php:7
968
- #@ my-calendar
969
- msgid "How to use My Calendar"
970
- msgstr "Как использовать My Calendar"
971
-
972
- #: my-calendar-help.php:12
973
- #@ my-calendar
974
- msgid "Shortcode Syntax"
975
- msgstr "Синтаксис «шорт-кодов»"
976
-
977
- #: my-calendar-help.php:15
978
- #@ my-calendar
979
- msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
980
- msgstr "Эти шорт-коды могут быть использованы в записях, страницах или в виджетах"
981
-
982
- #: my-calendar-help.php:19
983
- #@ my-calendar
984
- 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."
985
- msgstr "Этот базовый шорт-код покажет календарь в записи или странице, включаяя все категории и легенду, в традиционном формате. "
986
-
987
- #: my-calendar-help.php:42
988
- #@ my-calendar
989
- msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with three configurable attributes: category, template and fallback text."
990
- msgstr "Как и следовало ожидать, этот шорт-код выводит виджет Сегодня, с тремя настраиваемыми атрибутами: категории, шаблоны и текст при отсутствии информации."
991
-
992
- #: my-calendar-help.php:51
993
- #@ my-calendar
994
- 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>."
995
- 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> (почтовый индекс)."
996
-
997
- #: my-calendar-help.php:57
998
- #@ my-calendar
999
- 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>."
1000
- msgstr "Этот шорт-код выводит список категорий событий, в виде списка либо в виде выпадающей формы. Атрибут <code>show</code> может принимать значения <code>list</code> либо <code>form</code>."
1001
-
1002
- #: my-calendar-help.php:63
1003
- #@ my-calendar
1004
- msgid "Category Icons"
1005
- msgstr "Значки категорий"
1006
-
1007
- #: my-calendar-help.php:66
1008
- #@ my-calendar
1009
- 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."
1010
- msgstr "Мой Календарь предназначен для управления несколькими календарями. Основа для этих календарей — категори; вы можете легко настроить страницу календаря, который включает все категории, или вы можете выделить отдельные страницы для календарей в каждой категории. Для примера, это может быть полезным для управления календарями туров нескольких групп; календари событий для различных мест, и т.д."
1011
-
1012
- #: my-calendar-help.php:69
1013
- #@ my-calendar
1014
- 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."
1015
- msgstr "Предустановленные значки категорий могут быть бесполезны для ваших нужд или дизайна. Я предусмотрел, что вы соберетесь использовать свои собственные иконки – все, что вам нужно сделать, это загрузить их в папку плагина иконки, и они будут доступны для использования, или поместить их в папку \"my-calendar-custom\" wp-content/plugins, чтобы избежать их перезаписи при обновлении."
1016
-
1017
- #: my-calendar-help.php:69
1018
- #@ my-calendar
1019
- msgid "Your icons folder is:"
1020
- msgstr "Ваша папка со значками: "
1021
-
1022
- #: my-calendar-help.php:69
1023
- #@ my-calendar
1024
- msgid "You can alternately place icons in:"
1025
- msgstr "Кроме того, вы можете поместить значки в папку: "
1026
-
1027
- #: my-calendar-help.php:77
1028
- #@ my-calendar
1029
- msgid "Custom Styles"
1030
- msgstr "Пользовательские стили"
1031
-
1032
- #: my-calendar-help.php:80
1033
- #@ my-calendar
1034
- 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."
1035
- msgstr "My Calendar поставляется с четырьмя основными стилями. My Calendar будет сохранять изменения этих основных стилей при обновлении, но если вы хотите добавить совершенно новый стиль, вы можете сохранить его в пользовательский каталог стилей."
1036
-
1037
- #: my-calendar-help.php:83
1038
- #@ my-calendar
1039
- msgid "Your stylesheet directory is"
1040
- msgstr "Директория ваших таблиц стилей "
1041
-
1042
- #: my-calendar-help.php:84
1043
- #@ my-calendar
1044
- msgid "Your custom stylesheets directory is"
1045
- msgstr "Директория пользовательских таблиц стилей "
1046
-
1047
- #: my-calendar-help.php:92
1048
- #@ my-calendar
1049
- msgid "Widget Templating"
1050
- msgstr "Шаблонизация виджета"
1051
-
1052
- #: my-calendar-help.php:95
1053
- #@ my-calendar
1054
- msgid "These codes are available in calendar widgets, email notifications, and event titles."
1055
- msgstr "Эти коды доступны в виджетах календаря, электропочтовых уведомлениях и названиях событий."
1056
-
1057
- #: my-calendar-help.php:220
1058
- #@ my-calendar
1059
- msgid "Displays the name of the category the event is in."
1060
- msgstr "Показывает имя категории, содержащей события."
1061
-
1062
- #: my-calendar-help.php:100
1063
- #@ my-calendar
1064
- msgid "Displays the title of the event."
1065
- msgstr "Показывает название события."
1066
-
1067
- #: my-calendar-help.php:106
1068
- #@ my-calendar
1069
- msgid "Displays the start time for the event."
1070
- msgstr "Показывает время начала события."
1071
-
1072
- #: my-calendar-help.php:115
1073
- #@ my-calendar
1074
- msgid "Displays the date on which the event begins."
1075
- msgstr "Показывает дату начала события."
1076
-
1077
- #: my-calendar-help.php:118
1078
- #@ my-calendar
1079
- msgid "Displays the date on which the event ends."
1080
- msgstr "Показывает дату окончания события."
1081
-
1082
- #: my-calendar-help.php:121
1083
- #@ my-calendar
1084
- msgid "Displays the time at which the event ends."
1085
- msgstr "Показывает время окончания события."
1086
-
1087
- #: my-calendar-help.php:130
1088
- #@ my-calendar
1089
- msgid "Displays the WordPress author who posted the event."
1090
- msgstr "Показывает WordPress-автора, кто разместил событие."
1091
-
1092
- #: my-calendar-help.php:133
1093
- #@ my-calendar
1094
- msgid "Displays the name of the person assigned as host for the event."
1095
- msgstr "Показывает имя персоны, подписавшейся инициатором события."
1096
-
1097
- #: my-calendar-help.php:154
1098
- #@ my-calendar
1099
- msgid "Displays the URL provided for the event."
1100
- msgstr "Показывает ссылку предоставленную для события."
1101
-
1102
- #: my-calendar-help.php:145
1103
- #@ my-calendar
1104
- msgid "Displays the description of the event."
1105
- msgstr "Показывает описание события."
1106
-
1107
- #: my-calendar-help.php:103
1108
- #@ my-calendar
1109
- msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
1110
- msgstr "Показывает название события как ссылку если для события таковая предоставлена события."
1111
-
1112
- #: my-calendar-help.php:181
1113
- #@ my-calendar
1114
- msgid "Displays the name of the location of the event."
1115
- msgstr "Показывает название местоположения события."
1116
-
1117
- #: my-calendar-help.php:184
1118
- #@ my-calendar
1119
- msgid "Displays the first line of the site address."
1120
- msgstr "Показывает первую линию адреса события."
1121
-
1122
- #: my-calendar-help.php:187
1123
- #@ my-calendar
1124
- msgid "Displays the second line of the site address."
1125
- msgstr "Показывает вторую линию адреса события."
1126
-
1127
- #: my-calendar-help.php:202
1128
- #@ my-calendar
1129
- msgid "Displays the country for the event location."
1130
- msgstr "Показывает страну для местоположения события."
1131
-
1132
- #: my-calendar-help.php:211
1133
- #@ my-calendar
1134
- msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
1135
- msgstr "Показывает адрес события в формате <a href=\"http://microformats.org/wiki/hcard\">hcard</a>."
1136
-
1137
- #: my-calendar-help.php:214
1138
- #@ my-calendar
1139
- msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
1140
- msgstr "Показывает ссылку на Google-карту события, если имеется адрес. Если нет, будет пустая строка."
1141
-
1142
- #: my-calendar-help.php:172
1143
- #@ my-calendar
1144
- msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
1145
- msgstr "Отображает текст указывающий, является ли регистрация на мероприятие открытой или закрытой; ничего не показывает, если это определено в выбраном событии."
1146
-
1147
- #: my-calendar-help.php:139
1148
- #@ my-calendar
1149
- msgid "Displays the short version of the event description."
1150
- msgstr "Показывать короткую версию описания."
1151
-
1152
- #: my-calendar-help.php:175
1153
- #@ my-calendar
1154
- msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
1155
- msgstr "Показывает текущее состояние события: либо \"Опубликовано\", либо \"Зарезервировано\" - в основном используется в шаблонах электропочты."
1156
-
1157
- #: my-calendar-help.php:223
1158
- #@ my-calendar
1159
- msgid "Produces the address of the current event's category icon."
1160
- msgstr "Дает адрес значка категории текущего события."
1161
-
1162
- #: my-calendar-help.php:229
1163
- #@ my-calendar
1164
- msgid "Produces the hex code for the current event's category color."
1165
- msgstr "Дает цвет в hex-формате категории текущего события."
1166
-
1167
- #: my-calendar-help.php:260
1168
- #@ my-calendar
1169
- msgid "Helpful Information"
1170
- msgstr "Полезная информация"
1171
-
1172
- #: my-calendar-help.php:263
1173
- #@ my-calendar
1174
- 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."
1175
- msgstr "<strong>Удаление плагина</strong>: Хотя по стандартам WordPress ожидается удаление всех пользовательских таблицы из базы данных, при деинсталяции плагина, My Calendar <em>не делает этого</em>. Это было сознательное решение с моей стороны — данные, хранящиеся в таблицах My Calendar ваши; за единственным исключением — категорией \"Общие \", вы добавляли каждый кусочек самостоятельно. Я предполагаю что, это будет крупный ущерб для вас если удалится эта информация, при удалении плагина. В результате, если вы хотите избавиться от плагина полностью, вы должны будете удалить эти таблицы самомтоятельно. Однако, все ваши настройки будут удалены."
1176
-
1177
- #: my-calendar-core.php:70
1178
- #: my-calendar.php:171
1179
- #@ my-calendar
1180
- msgid "Settings"
1181
- msgstr "Настройки"
1182
-
1183
- #: my-calendar-core.php:71
1184
- #: my-calendar.php:175
1185
- #@ my-calendar
1186
- msgid "Help"
1187
- msgstr "Помощь"
1188
-
1189
- #: my-calendar-core.php:953
1190
- #@ my-calendar
1191
- msgid "You're currently allowing to subscribers to post events, but aren't using Akismet. My Calendar can use Akismet to check for spam in event submissions. <a href='https://akismet.com/signup/'>Get an Akismet API Key now.</a>"
1192
- msgstr "Сейчас вы разрешаете подписчикам создавать события, но не используете Akismet. My Calendar может использовать Akismet для проверки на спам каждого события. <a href='https://akismet.com/signup/'>Получить Akismet API-ключ .</a>"
1193
-
1194
- #: my-calendar-behaviors.php:43
1195
- #@ my-calendar
1196
- msgid "Behavior Settings saved"
1197
- msgstr "Настройки представления сохранены"
1198
-
1199
- #: my-calendar-behaviors.php:67
1200
- #@ my-calendar
1201
- msgid "My Calendar Behaviors"
1202
- msgstr "Представления My Calendar"
1203
-
1204
- #: my-calendar-behaviors.php:72
1205
- #@ my-calendar
1206
- msgid "Calendar Behavior Settings"
1207
- msgstr "Настройки представления календаря"
1208
-
1209
- #: my-calendar-behaviors.php:77
1210
- #@ my-calendar
1211
- msgid "Apply JavaScript only on these pages (comma separated page IDs)"
1212
- msgstr "Применить JavaScript только к этим страницам (ID через запятую)"
1213
-
1214
- #: my-calendar-behaviors.php:83
1215
- #@ my-calendar
1216
- msgid "Calendar Behaviors: Calendar View"
1217
- msgstr "Представления календаря: Календарный вид"
1218
-
1219
- #: my-calendar-behaviors.php:85
1220
- #@ my-calendar
1221
- msgid "Disable Calendar Javascript Effects"
1222
- msgstr "Выключить Javascript-эффекты календаря"
1223
-
1224
- #: my-calendar-behaviors.php:88
1225
- #@ my-calendar
1226
- msgid "Edit the jQuery scripts for My Calendar in Calendar format"
1227
- msgstr "Редактировать jQuery-скрипты My Calendar в календарном формате"
1228
-
1229
- #: my-calendar-behaviors.php:114
1230
- #@ my-calendar
1231
- msgid "Calendar Behaviors: List View"
1232
- msgstr "Представления календаря: В виде списка"
1233
-
1234
- #: my-calendar-behaviors.php:116
1235
- #@ my-calendar
1236
- msgid "Disable List Javascript Effects"
1237
- msgstr "Выключить Javascript-эффекты списка"
1238
-
1239
- #: my-calendar-behaviors.php:119
1240
- #@ my-calendar
1241
- msgid "Edit the jQuery scripts for My Calendar in List format"
1242
- msgstr "Редактировать jQuery-скрипты My Calendar в формате списка"
1243
-
1244
- #: my-calendar-behaviors.php:145
1245
- #@ my-calendar
1246
- msgid "Calendar Behaviors: Mini Calendar View"
1247
- msgstr "Представления календаря: Вид мини-календаря"
1248
-
1249
- #: my-calendar-behaviors.php:147
1250
- #@ my-calendar
1251
- msgid "Disable Mini Javascript Effects"
1252
- msgstr "Выключить Javascript-эффекты списка"
1253
-
1254
- #: my-calendar-behaviors.php:150
1255
- #@ my-calendar
1256
- msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
1257
- msgstr "Редактировать jQuery-скрипты My Calendar в формате мини календаря"
1258
-
1259
- #: my-calendar-behaviors.php:176
1260
- #@ my-calendar
1261
- msgid "Calendar Behaviors: AJAX Navigation"
1262
- msgstr "Представления календаря: AJAX-навигация"
1263
-
1264
- #: my-calendar-behaviors.php:178
1265
- #@ my-calendar
1266
- msgid "Disable AJAX Effects"
1267
- msgstr "Выключить AJAX-эффекты"
1268
-
1269
- #: my-calendar-behaviors.php:181
1270
- #@ my-calendar
1271
- msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
1272
- msgstr "Редактировать jQuery-скрипты My Calendar AJAX-навигации"
1273
-
1274
- #: my-calendar-upgrade-db.php:17
1275
- #: my-calendar-upgrade-db.php:25
1276
- #@ my-calendar
1277
- msgid "The My Calendar database needs to be updated."
1278
- msgstr "База данных My Calendar нуждается в обновлении."
1279
-
1280
- #: my-calendar-upgrade-db.php:18
1281
- #: my-calendar-upgrade-db.php:38
1282
- #@ my-calendar
1283
- msgid "Update now"
1284
- msgstr "Оновить сейчас"
1285
-
1286
- #: my-calendar-upgrade-db.php:37
1287
- #@ my-calendar
1288
- 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!"
1289
- msgstr "Вы не ввели каких либо событий, т. е. My Calendar не может сказать является ли база данных в актуальном состоянии. Если вы не можете добавлять события, обновить базу данных!"
1290
-
1291
- #: my-calendar-upgrade-db.php:47
1292
- #@ my-calendar
1293
- msgid "My Calendar Database is updated."
1294
- msgstr "Стили My Calendar"
1295
-
1296
- #: my-calendar.php:130
1297
- #@ my-calendar
1298
- msgid "Get Support"
1299
- msgstr "Получить поддержку"
1300
-
1301
- #: my-calendar.php:132
1302
- #: my-calendar.php:175
1303
- #@ my-calendar
1304
- msgid "My Calendar Help"
1305
- msgstr "Помощь My Calendar"
1306
-
1307
- #: my-calendar.php:133
1308
- #@ my-calendar
1309
- msgid "Make a Donation"
1310
- msgstr "Сделать пожертвование"
1311
-
1312
- #: my-calendar.php:158
1313
- #: my-calendar.php:161
1314
- #@ my-calendar
1315
- msgid "My Calendar"
1316
- msgstr "My Calendar"
1317
-
1318
- #: my-calendar.php:167
1319
- #@ my-calendar
1320
- msgid "Add/Edit Events"
1321
- msgstr "Добавить / Редактировать события"
1322
-
1323
- #: my-calendar-locations.php:263
1324
- #: my-calendar.php:170
1325
- #@ my-calendar
1326
- msgid "Manage Locations"
1327
- msgstr "Управление местоположениями"
1328
-
1329
- #: my-calendar.php:172
1330
- #@ my-calendar
1331
- msgid "Style Editor"
1332
- msgstr "Редактор стиля"
1333
-
1334
- #: my-calendar.php:173
1335
- #@ my-calendar
1336
- msgid "Behavior Editor"
1337
- msgstr "Редактор представлений"
1338
-
1339
- #: my-calendar-event-manager.php:919
1340
- #: my-calendar-templates.php:203
1341
- #@ my-calendar
1342
- msgid "Published"
1343
- msgstr "Опубликовано"
1344
-
1345
- #: my-calendar-event-manager.php:920
1346
- #: my-calendar-templates.php:203
1347
- #@ my-calendar
1348
- msgid "Reserved"
1349
- msgstr "Зарезервировано"
1350
-
1351
- #: my-calendar-user.php:36
1352
- #@ my-calendar
1353
- msgid "My Calendar User Settings"
1354
- msgstr "Настройки календаря"
1355
-
1356
- #: my-calendar-event-manager.php:114
1357
- #@ my-calendar
1358
- 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>!"
1359
- msgstr "Вполне возможно, что не удастся правильно импортировать. Это не должно оказывать никакого влияния на текущую базу данных календаря. Если у вас возникли проблемы, <a href=\"http://www.joedolson.com/contact.php\">обратитесь к разработчику плагина</a>!"
1360
-
1361
- #: my-calendar-event-manager.php:161
1362
- #, php-format
1363
- #@ my-calendar
1364
- msgid "%1$d events deleted successfully out of %2$d selected"
1365
- msgstr "События успешно удалены (%1$d из %2$d)"
1366
-
1367
- #: my-calendar-event-manager.php:163
1368
- #: my-calendar-event-manager.php:323
1369
- #: my-calendar-event-manager.php:356
1370
- #: my-calendar-event-manager.php:373
1371
- #: my-calendar-event-manager.php:389
1372
- #: my-calendar-event-manager.php:1184
1373
- #: my-calendar-event-manager.php:1187
1374
- #: my-calendar-event-manager.php:1190
1375
- #: my-calendar-event-manager.php:1199
1376
- #: my-calendar-event-manager.php:1206
1377
- #: my-calendar-event-manager.php:1222
1378
- #: my-calendar-event-manager.php:1228
1379
- #: my-calendar-group-manager.php:57
1380
- #: my-calendar-group-manager.php:83
1381
- #: my-calendar-group-manager.php:150
1382
- #: my-calendar-group-manager.php:576
1383
- #@ my-calendar
1384
- msgid "Error"
1385
- msgstr "Ошибка"
1386
-
1387
- #: my-calendar-event-manager.php:163
1388
- #@ my-calendar
1389
- msgid "Your events have not been deleted. Please investigate."
1390
- msgstr "Ваше событие не может быть удалено. Пожалуйста разберитесь."
1391
-
1392
- #: my-calendar-event-manager.php:174
1393
- #@ my-calendar
1394
- msgid "Delete Event"
1395
- msgstr "Удалить событие"
1396
-
1397
- #: my-calendar-event-manager.php:174
1398
- #@ my-calendar
1399
- msgid "Are you sure you want to delete this event?"
1400
- msgstr "Вы уверены, что хотите удалить событие?"
1401
-
1402
- #: my-calendar-event-manager.php:191
1403
- #@ my-calendar
1404
- msgid "You do not have permission to delete that event."
1405
- msgstr "У вас нет полномочий для удаления этого события."
1406
-
1407
- #: my-calendar-event-manager.php:206
1408
- #@ my-calendar
1409
- msgid "You do not have permission to approve that event."
1410
- msgstr вас нет полномочий для подтверждения этого события."
1411
-
1412
- #: my-calendar-event-manager.php:221
1413
- #@ my-calendar
1414
- msgid "You do not have permission to reject that event."
1415
- msgstr "У вас нет полномочий для отклонения этого события."
1416
-
1417
- #: my-calendar-event-manager.php:273
1418
- #: my-calendar-group-manager.php:773
1419
- #@ my-calendar
1420
- msgid "Edit Event"
1421
- msgstr "Редактировать событие"
1422
-
1423
- #: my-calendar-event-manager.php:277
1424
- #: my-calendar-event-manager.php:288
1425
- #@ my-calendar
1426
- msgid "You must provide an event id in order to edit it"
1427
- msgstr "Вы должны ввести ID события, потом вы можете его редактировать"
1428
-
1429
- #: my-calendar-event-manager.php:284
1430
- #@ my-calendar
1431
- msgid "Copy Event"
1432
- msgstr "Копировать событие"
1433
-
1434
- #: my-calendar-core.php:858
1435
- #: my-calendar-event-manager.php:296
1436
- #@ my-calendar
1437
- msgid "Add Event"
1438
- msgstr "Добавить событие"
1439
-
1440
- #: my-calendar-event-manager.php:323
1441
- #@ my-calendar
1442
- msgid "I'm sorry! I couldn't add that event to the database."
1443
- msgstr "Извините! Я не могу добавить это событие в базу."
1444
-
1445
- #: my-calendar-event-manager.php:333
1446
- #@ my-calendar
1447
- msgid "Event added. It will now show in your calendar."
1448
- msgstr "Событие добавлено. Сейчас оно будет показано в календаре."
1449
-
1450
- #: my-calendar-event-manager.php:356
1451
- #: my-calendar-group-manager.php:150
1452
- #@ my-calendar
1453
- msgid "Your event was not updated."
1454
- msgstr "События не были обновлены."
1455
-
1456
- #: my-calendar-event-manager.php:358
1457
- #: my-calendar-group-manager.php:59
1458
- #: my-calendar-group-manager.php:85
1459
- #: my-calendar-group-manager.php:152
1460
- #@ my-calendar
1461
- msgid "Nothing was changed in that update."
1462
- msgstr "При обновлении ничего не изменилось."
1463
-
1464
- #: my-calendar-event-manager.php:362
1465
- #: my-calendar-group-manager.php:61
1466
- #: my-calendar-group-manager.php:154
1467
- #@ my-calendar
1468
- msgid "Event updated successfully"
1469
- msgstr "Событие успешно обновлено"
1470
-
1471
- #: my-calendar-event-manager.php:366
1472
- #: my-calendar-group-manager.php:158
1473
- #@ my-calendar
1474
- msgid "You do not have sufficient permissions to edit that event."
1475
- msgstr "Вы не имеете соответствующих привелегий для редактирования этого события. "
1476
-
1477
- #: my-calendar-event-manager.php:373
1478
- #@ my-calendar
1479
- msgid "You can't delete an event if you haven't submitted an event id"
1480
- msgstr "Вы не можете удалить событие без указания его ID"
1481
-
1482
- #: my-calendar-event-manager.php:387
1483
- #@ my-calendar
1484
- msgid "Event deleted successfully"
1485
- msgstr "Событие успешно удалено"
1486
-
1487
- #: my-calendar-event-manager.php:389
1488
- #@ my-calendar
1489
- msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
1490
- msgstr "Если вы удалите событие, а оно по-прежнему появляется в базе данных. Пожалуйста разберитесь."
1491
-
1492
- #: my-calendar-event-manager.php:401
1493
- #: my-calendar-group-manager.php:169
1494
- #@ my-calendar
1495
- msgid "Sorry! That's an invalid event key."
1496
- msgstr "Извините! Это неправильный ключ события."
1497
-
1498
- #: my-calendar-event-manager.php:405
1499
- #: my-calendar-group-manager.php:173
1500
- #@ my-calendar
1501
- msgid "Sorry! We couldn't find an event with that ID."
1502
- msgstr "Извините! Мы не можем найти событие с этим ID"
1503
-
1504
- #: my-calendar-event-manager.php:430
1505
- #@ my-calendar
1506
- msgid "This event must be approved in order for it to appear on the calendar."
1507
- msgstr "Это событие должно быть подтверждено чтобы оно появилось в календаре."
1508
-
1509
- #: my-calendar-event-manager.php:439
1510
- #: my-calendar-event-manager.php:473
1511
- #@ my-calendar
1512
- msgid "Save Event"
1513
- msgstr "Сохранить событие"
1514
-
1515
- #: my-calendar-event-manager.php:487
1516
- #: my-calendar-group-manager.php:290
1517
- #@ my-calendar
1518
- msgid "Enter your Event Information"
1519
- msgstr "Введите информацию о событии"
1520
-
1521
- #: my-calendar-event-manager.php:489
1522
- #: my-calendar-group-manager.php:292
1523
- #@ my-calendar
1524
- msgid "Event Title"
1525
- msgstr "Название события "
1526
-
1527
- #: my-calendar-event-manager.php:489
1528
- #: my-calendar-event-manager.php:618
1529
- #: my-calendar-group-manager.php:292
1530
- #@ my-calendar
1531
- msgid "(required)"
1532
- msgstr "(обязательно)"
1533
-
1534
- #: my-calendar-event-manager.php:493
1535
- #@ my-calendar
1536
- msgid "Publish"
1537
- msgstr "Публиковать"
1538
-
1539
- #: my-calendar-event-manager.php:493
1540
- #@ my-calendar
1541
- msgid "You must approve this event to promote it to the calendar."
1542
- msgstr "Вы должны подтвердить это событие чтобы оно появилось в календаре."
1543
-
1544
- #: my-calendar-event-manager.php:495
1545
- #@ my-calendar
1546
- msgid "An administrator must approve your new event."
1547
- msgstr "Администратор должен подтвердить ваше новое событие."
1548
-
1549
- #: my-calendar-event-manager.php:515
1550
- #: my-calendar-group-manager.php:306
1551
- #@ my-calendar
1552
- msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
1553
- msgstr "Описание события (<abbr title=\"hypertext markup language\">HTML</abbr> разрешен)"
1554
-
1555
- #: my-calendar-event-manager.php:545
1556
- #: my-calendar-group-manager.php:331
1557
- #@ my-calendar
1558
- msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
1559
- msgstr "Короткое описание события (<abbr title=\"hypertext markup language\">HTML</abbr> разрешен)"
1560
-
1561
- #: my-calendar-event-manager.php:549
1562
- #: my-calendar-group-manager.php:335
1563
- #@ my-calendar
1564
- msgid "Event Host"
1565
- msgstr "Инициатор события"
1566
-
1567
- #: my-calendar-event-manager.php:568
1568
- #: my-calendar-group-manager.php:354
1569
- #@ my-calendar
1570
- msgid "Event Category"
1571
- msgstr "Категория события"
1572
-
1573
- #: my-calendar-event-manager.php:593
1574
- #: my-calendar-group-manager.php:379
1575
- #@ my-calendar
1576
- msgid "Event Link (Optional)"
1577
- msgstr "Ссылка события (опционально)"
1578
-
1579
- #: my-calendar-event-manager.php:593
1580
- #: my-calendar-group-manager.php:379
1581
- #@ my-calendar
1582
- msgid "This link will expire when the event passes."
1583
- msgstr "Эта ссылка события будет аннулирована когда событие произойдет."
1584
-
1585
- #: my-calendar-event-manager.php:601
1586
- #@ my-calendar
1587
- msgid "Event Date and Time"
1588
- msgstr "Время и дата события"
1589
-
1590
- #: my-calendar-event-manager.php:618
1591
- #@ my-calendar
1592
- msgid "Start Date (YYYY-MM-DD)"
1593
- msgstr "Дата начала (ГГГГ-ММ-ДД)"
1594
-
1595
- #: my-calendar-event-manager.php:618
1596
- #@ my-calendar
1597
- msgid "Time (hh:mm am/pm)"
1598
- msgstr "Время (чч:мм)"
1599
-
1600
- #: my-calendar-event-manager.php:627
1601
- #@ my-calendar
1602
- msgid "End Date (YYYY-MM-DD)"
1603
- msgstr "Дата окончания (ГГГГ-ММ-ДД)"
1604
-
1605
- #: my-calendar-event-manager.php:627
1606
- #@ my-calendar
1607
- msgid "End Time (hh:mm am/pm)"
1608
- msgstr "Время окончания (чч:мм)"
1609
-
1610
- #: my-calendar-event-manager.php:646
1611
- #@ my-calendar
1612
- msgid "Current time difference from GMT is "
1613
- msgstr "Текущее отличие времени от GMT "
1614
-
1615
- #: my-calendar-event-manager.php:646
1616
- #@ my-calendar
1617
- msgid " hour(s)"
1618
- msgstr " час(ов)"
1619
-
1620
- #: my-calendar-event-manager.php:655
1621
- #@ my-calendar
1622
- msgid "Recurring Events"
1623
- msgstr "Повторяющееся событие"
1624
-
1625
- #: my-calendar-event-manager.php:658
1626
- #@ my-calendar
1627
- msgid "Repeats for"
1628
- msgstr "Повторять"
1629
-
1630
- #: my-calendar-event-manager.php:659
1631
- #@ my-calendar
1632
- msgid "Units"
1633
- msgstr "Единицы"
1634
-
1635
- #: my-calendar-event-manager.php:660
1636
- #: my-calendar-templates.php:115
1637
- #@ my-calendar
1638
- msgid "Does not recur"
1639
- msgstr "Не повторять"
1640
-
1641
- #: my-calendar-event-manager.php:661
1642
- #: my-calendar-event-manager.php:974
1643
- #: my-calendar-group-manager.php:747
1644
- #: my-calendar-templates.php:116
1645
- #@ my-calendar
1646
- msgid "Daily"
1647
- msgstr "Ежедневно"
1648
-
1649
- #: my-calendar-event-manager.php:663
1650
- #: my-calendar-event-manager.php:976
1651
- #: my-calendar-group-manager.php:749
1652
- #: my-calendar-templates.php:118
1653
- #@ my-calendar
1654
- msgid "Weekly"
1655
- msgstr "Еженедельно"
1656
-
1657
- #: my-calendar-event-manager.php:664
1658
- #: my-calendar-templates.php:119
1659
- #@ my-calendar
1660
- msgid "Bi-weekly"
1661
- msgstr "Раз в две недели"
1662
-
1663
- #: my-calendar-event-manager.php:665
1664
- #@ my-calendar
1665
- msgid "Date of Month (e.g., the 24th of each month)"
1666
- msgstr "Дата месяца (напр. 24-е число каждого месяца)"
1667
-
1668
- #: my-calendar-event-manager.php:666
1669
- #@ my-calendar
1670
- msgid "Day of Month (e.g., the 3rd Monday of each month)"
1671
- msgstr "День месяца (напр. 3-ий понедельник каждого месяца)"
1672
-
1673
- #: my-calendar-event-manager.php:667
1674
- #: my-calendar-templates.php:122
1675
- #@ my-calendar
1676
- msgid "Annually"
1677
- msgstr "Ежегодно"
1678
-
1679
- #: my-calendar-event-manager.php:669
1680
- #@ my-calendar
1681
- msgid "Enter \"0\" if the event should recur indefinitely. 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."
1682
- msgstr "Введите \"0\", если событие должно повторяться бесконечно. Веденное число показывает сколько раз должно повториться событие: число 2 означает, что событие произойдет три раза."
1683
-
1684
- #: my-calendar-event-manager.php:686
1685
- #: my-calendar-group-manager.php:390
1686
- #@ my-calendar
1687
- msgid "Event Registration Status"
1688
- msgstr "Статус регистрации события"
1689
-
1690
- #: my-calendar-event-manager.php:687
1691
- #: my-calendar-group-manager.php:391
1692
- #@ my-calendar
1693
- msgid "My Calendar does not manage event registrations. Use this for information only."
1694
- msgstr "My Calendar не управляет регистрацией событий. Используйте только для информации."
1695
-
1696
- #: my-calendar-event-manager.php:689
1697
- #: my-calendar-group-manager.php:393
1698
- #@ my-calendar
1699
- msgid "Open"
1700
- msgstr "Открыто"
1701
-
1702
- #: my-calendar-event-manager.php:690
1703
- #: my-calendar-group-manager.php:394
1704
- #@ my-calendar
1705
- msgid "Closed"
1706
- msgstr "Закрыто"
1707
-
1708
- #: my-calendar-event-manager.php:691
1709
- #: my-calendar-group-manager.php:395
1710
- #@ my-calendar
1711
- msgid "Does not apply"
1712
- msgstr "Не применять"
1713
-
1714
- #: my-calendar-event-manager.php:694
1715
- #: my-calendar-group-manager.php:398
1716
- #@ my-calendar
1717
- msgid "If this event recurs, it can only be registered for as a complete series."
1718
- msgstr "Если это событие повторяется, оно может быть зарегистрировано только как полная серия."
1719
-
1720
- #: my-calendar-event-manager.php:711
1721
- #: my-calendar-group-manager.php:415
1722
- #: my-calendar-locations.php:127
1723
- #@ my-calendar
1724
- msgid "Event Location"
1725
- msgstr "Местоположение события"
1726
-
1727
- #: my-calendar-event-manager.php:718
1728
- #: my-calendar-group-manager.php:422
1729
- #@ my-calendar
1730
- msgid "Choose a preset location:"
1731
- msgstr "Выберите установленное местоположение:"
1732
-
1733
- #: my-calendar-event-manager.php:732
1734
- #: my-calendar-group-manager.php:436
1735
- #@ my-calendar
1736
- msgid "Add recurring locations for later use."
1737
- msgstr "Добавить повторяющиеся местоположения для дальнейшего использования."
1738
-
1739
- #: my-calendar-event-manager.php:741
1740
- #: my-calendar-group-manager.php:445
1741
- #: my-calendar-locations.php:129
1742
- #@ my-calendar
1743
- msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
1744
- msgstr "Все связанные с местоположением поля не являются обязательными: <em> недостаточная информации может привести к неточностям на карте</em>."
1745
-
1746
- #: my-calendar-event-manager.php:744
1747
- #: my-calendar-group-manager.php:448
1748
- #: my-calendar-locations.php:132
1749
- #@ my-calendar
1750
- msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
1751
- msgstr "Название местоположения (напр. <em>Сырники у тёти Глаши</em>)"
1752
-
1753
- #: my-calendar-event-manager.php:753
1754
- #: my-calendar-group-manager.php:451
1755
- #: my-calendar-locations.php:141
1756
- #@ my-calendar
1757
- msgid "Street Address"
1758
- msgstr "Адрес"
1759
-
1760
- #: my-calendar-event-manager.php:756
1761
- #: my-calendar-group-manager.php:454
1762
- #: my-calendar-locations.php:144
1763
- #@ my-calendar
1764
- msgid "Street Address (2)"
1765
- msgstr "Адрес (2)"
1766
-
1767
- #: my-calendar-event-manager.php:803
1768
- #: my-calendar-group-manager.php:469
1769
- #: my-calendar-locations.php:191
1770
- #@ my-calendar
1771
- msgid "Initial Zoom"
1772
- msgstr "Начальное увеличение"
1773
-
1774
- #: my-calendar-event-manager.php:805
1775
- #: my-calendar-group-manager.php:471
1776
- #: my-calendar-locations.php:193
1777
- #@ my-calendar
1778
- msgid "Neighborhood"
1779
- msgstr "Окрестности"
1780
-
1781
- #: my-calendar-event-manager.php:806
1782
- #: my-calendar-group-manager.php:472
1783
- #: my-calendar-locations.php:194
1784
- #@ my-calendar
1785
- msgid "Small City"
1786
- msgstr "Маленький город"
1787
-
1788
- #: my-calendar-event-manager.php:807
1789
- #: my-calendar-group-manager.php:473
1790
- #: my-calendar-locations.php:195
1791
- #@ my-calendar
1792
- msgid "Large City"
1793
- msgstr "Большой город"
1794
-
1795
- #: my-calendar-event-manager.php:808
1796
- #: my-calendar-group-manager.php:474
1797
- #: my-calendar-locations.php:196
1798
- #@ my-calendar
1799
- msgid "Greater Metro Area"
1800
- msgstr "Ближайшее метро"
1801
-
1802
- #: button/generator.php:57
1803
- #: my-calendar-event-manager.php:809
1804
- #: my-calendar-group-manager.php:475
1805
- #: my-calendar-locations.php:197
1806
- #@ my-calendar
1807
- msgid "State"
1808
- msgstr "Федеральный округ"
1809
-
1810
- #: my-calendar-event-manager.php:817
1811
- #: my-calendar-group-manager.php:483
1812
- #: my-calendar-locations.php:205
1813
- #@ my-calendar
1814
- msgid "GPS Coordinates (optional)"
1815
- msgstr "GPS координаты (опционально)"
1816
-
1817
- #: my-calendar-event-manager.php:819
1818
- #: my-calendar-group-manager.php:485
1819
- #@ my-calendar
1820
- 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."
1821
- msgstr "Если вы укажете GPS координаты вашего местоположения, они будут использоваться вместо любой другой информации, адреса для обеспечения ссылки на карту."
1822
-
1823
- #: my-calendar-event-manager.php:822
1824
- #: my-calendar-group-manager.php:488
1825
- #: my-calendar-locations.php:210
1826
- #@ my-calendar
1827
- msgid "Latitude"
1828
- msgstr "Широта"
1829
-
1830
- #: my-calendar-event-manager.php:822
1831
- #: my-calendar-group-manager.php:488
1832
- #: my-calendar-locations.php:211
1833
- #@ my-calendar
1834
- msgid "Longitude"
1835
- msgstr "Долгота"
1836
-
1837
- #: my-calendar-event-manager.php:916
1838
- #@ my-calendar
1839
- msgid "Manage Events"
1840
- msgstr "Управление событиями"
1841
-
1842
- #: my-calendar-event-manager.php:931
1843
- #: my-calendar-group-manager.php:703
1844
- #@ my-calendar
1845
- msgid "Table of Calendar Events"
1846
- msgstr "Таблица событий календаря"
1847
-
1848
- #: my-calendar-event-manager.php:936
1849
- #: my-calendar-group-manager.php:709
1850
- #: my-calendar-locations.php:276
1851
- #@ my-calendar
1852
- msgid "Location"
1853
- msgstr "Местоположение"
1854
-
1855
- #: my-calendar-event-manager.php:937
1856
- #: my-calendar-group-manager.php:710
1857
- #: my-calendar-settings.php:509
1858
- #@ my-calendar
1859
- msgid "Description"
1860
- msgstr "Описание"
1861
-
1862
- #: my-calendar-event-manager.php:938
1863
- #: my-calendar-group-manager.php:711
1864
- #: my-calendar-settings.php:510
1865
- #@ my-calendar
1866
- msgid "Start Date"
1867
- msgstr "Дата начала"
1868
-
1869
- #: my-calendar-event-manager.php:939
1870
- #: my-calendar-group-manager.php:712
1871
- #@ my-calendar
1872
- msgid "Recurs"
1873
- msgstr "Интервал повтора "
1874
-
1875
- #: my-calendar-event-manager.php:941
1876
- #: my-calendar-group-manager.php:714
1877
- #: my-calendar-settings.php:512
1878
- #@ my-calendar
1879
- msgid "Category"
1880
- msgstr "Категория"
1881
-
1882
- #: my-calendar-event-manager.php:942
1883
- #@ my-calendar
1884
- msgid "Edit / Delete"
1885
- msgstr "Редактировать / Удалить"
1886
-
1887
- #: my-calendar-event-manager.php:973
1888
- #: my-calendar-group-manager.php:746
1889
- #@ my-calendar
1890
- msgid "Never"
1891
- msgstr "Никогда"
1892
-
1893
- #: my-calendar-event-manager.php:977
1894
- #: my-calendar-group-manager.php:750
1895
- #@ my-calendar
1896
- msgid "Bi-Weekly"
1897
- msgstr "Раз в две недели"
1898
-
1899
- #: my-calendar-event-manager.php:978
1900
- #: my-calendar-group-manager.php:751
1901
- #@ my-calendar
1902
- msgid "Monthly (by date)"
1903
- msgstr "Ежемесячно (по дате)"
1904
-
1905
- #: my-calendar-event-manager.php:979
1906
- #: my-calendar-group-manager.php:752
1907
- #@ my-calendar
1908
- msgid "Monthly (by day)"
1909
- msgstr "Ежемесячно день)"
1910
-
1911
- #: my-calendar-event-manager.php:980
1912
- #: my-calendar-group-manager.php:753
1913
- #@ my-calendar
1914
- msgid "Yearly"
1915
- msgstr "Раз в год"
1916
-
1917
- #: my-calendar-event-manager.php:983
1918
- #: my-calendar-group-manager.php:756
1919
- #@ my-calendar
1920
- msgid "Forever"
1921
- msgstr "Всегда"
1922
-
1923
- #: my-calendar-event-manager.php:999
1924
- #@ my-calendar
1925
- msgid "Copy"
1926
- msgstr "Копировать"
1927
-
1928
- #: my-calendar-event-manager.php:1005
1929
- #: my-calendar-group-manager.php:779
1930
- #@ my-calendar
1931
- msgid "Not editable."
1932
- msgstr "Не редактируемо."
1933
-
1934
- #: my-calendar-event-manager.php:1011
1935
- #@ my-calendar
1936
- msgid "Reject"
1937
- msgstr "Отклонить"
1938
-
1939
- #: my-calendar-event-manager.php:1013
1940
- #@ my-calendar
1941
- msgid "Approve"
1942
- msgstr "Подтвердить"
1943
-
1944
- #: my-calendar-event-manager.php:1018
1945
- #@ my-calendar
1946
- msgid "Approved"
1947
- msgstr "Подтверждено"
1948
-
1949
- #: my-calendar-event-manager.php:1020
1950
- #@ my-calendar
1951
- msgid "Rejected"
1952
- msgstr "Отклонить"
1953
-
1954
- #: my-calendar-event-manager.php:1022
1955
- #@ my-calendar
1956
- msgid "Awaiting Approval"
1957
- msgstr "Ждет подтверждения"
1958
-
1959
- #: my-calendar-event-manager.php:1044
1960
- #: my-calendar-group-manager.php:793
1961
- #@ my-calendar
1962
- msgid "There are no events in the database!"
1963
- msgstr "Нет событий в базе!"
1964
-
1965
- #: my-calendar-event-manager.php:1184
1966
- #@ my-calendar
1967
- msgid "Your event end date must be either after or the same as your event begin date"
1968
- msgstr "Дата окончания события должна быть позже чем или такой же как дата начала "
1969
-
1970
- #: my-calendar-event-manager.php:1187
1971
- #@ my-calendar
1972
- 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."
1973
- msgstr "Форматирование даты правильное, но одна или более ваших дат являются недействительными. Проверьте количество дней в месяце и не високосный ли год."
1974
-
1975
- #: my-calendar-event-manager.php:1190
1976
- #@ my-calendar
1977
- msgid "Both start and end dates must be in the format YYYY-MM-DD"
1978
- msgstr "Дата начала и окончания должны быть введены в формате ГГГГ-ММ-ДД"
1979
-
1980
- #: my-calendar-event-manager.php:1199
1981
- #@ my-calendar
1982
- msgid "The time field must either be blank or be entered in the format hh:mm"
1983
- msgstr "Информация в поле времени должна быть введена в формате ЧЧ:ММ либо полностью отсутствовать"
1984
-
1985
- #: my-calendar-event-manager.php:1206
1986
- #@ my-calendar
1987
- msgid "The end time field must either be blank or be entered in the format hh:mm"
1988
- msgstr "Информация в поле времени должна быть введена в формате ЧЧ:ММ либо полностью отсутствовать"
1989
-
1990
- #: my-calendar-event-manager.php:1222
1991
- #: my-calendar-group-manager.php:576
1992
- #@ my-calendar
1993
- msgid "The event title must be between 1 and 255 characters in length."
1994
- msgstr "Заголовок должен быть от 1 до 255 символов в длину."
1995
-
1996
- #: my-calendar-event-manager.php:1228
1997
- #@ my-calendar
1998
- msgid "The repetition value must be 0 unless a type of recurrence is selected."
1999
- msgstr "Значение повтора должно быть 0, за исключением периодического повтора, когда оно должно быть 0 или больше."
2000
-
2001
- #: my-calendar-locations.php:44
2002
- #@ my-calendar
2003
- msgid "Location added successfully"
2004
- msgstr "Местоположение успешно добавлено"
2005
-
2006
- #: my-calendar-locations.php:46
2007
- #@ my-calendar
2008
- msgid "Location could not be added to database"
2009
- msgstr "Местоположение не может быть добавлено."
2010
-
2011
- #: my-calendar-locations.php:52
2012
- #@ my-calendar
2013
- msgid "Location deleted successfully"
2014
- msgstr "Местоположение успешно удалено"
2015
-
2016
- #: my-calendar-locations.php:54
2017
- #@ my-calendar
2018
- msgid "Location could not be deleted"
2019
- msgstr "Местоположение не может быть удалено."
2020
-
2021
- #: my-calendar-locations.php:80
2022
- #@ my-calendar
2023
- msgid "Location could not be edited."
2024
- msgstr "Местоположение не может быть отредактировано."
2025
-
2026
- #: my-calendar-locations.php:82
2027
- #@ my-calendar
2028
- msgid "Location was not changed."
2029
- msgstr "Местоположение не было изменено."
2030
-
2031
- #: my-calendar-locations.php:84
2032
- #@ my-calendar
2033
- msgid "Location edited successfully"
2034
- msgstr "Местоположение успешно отредактировано"
2035
-
2036
- #: my-calendar-locations.php:104
2037
- #@ my-calendar
2038
- msgid "Add New Location"
2039
- msgstr "Добавить новое местоположение"
2040
-
2041
- #: my-calendar-locations.php:106
2042
- #@ my-calendar
2043
- msgid "Edit Location"
2044
- msgstr "Редактировать местоположение"
2045
-
2046
- #: my-calendar-locations.php:111
2047
- #@ my-calendar
2048
- msgid "Location Editor"
2049
- msgstr "Редактор местоположений"
2050
-
2051
- #: my-calendar-locations.php:207
2052
- #@ my-calendar
2053
- msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
2054
- msgstr "Если вы поддерживаете GPS-координаты вашего местоположения, они будут использованы вместо адреса в обозначении вашего местоположения."
2055
-
2056
- #: my-calendar-locations.php:215
2057
- #@ my-calendar
2058
- msgid "Add Location"
2059
- msgstr "Добавить местоположение"
2060
-
2061
- #: my-calendar-locations.php:298
2062
- #@ my-calendar
2063
- msgid "There are no locations in the database yet!"
2064
- msgstr "Базе не содержит мест! "
2065
-
2066
- #: my-calendar-locations.php:302
2067
- #@ my-calendar
2068
- 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."
2069
- msgstr "Пожалуйста, обратите внимание: редактирование или удаление, сохраненных для повторного использования, местоположений не повлияет на уже созданные события. База местоположений существует только для более удобного ввода часто используемых местоположений в записи события."
2070
-
2071
- #: my-calendar-install.php:213
2072
- #@ my-calendar
2073
- msgid "My Calendar Default Timezone"
2074
- msgstr "Часовой пояс My Calendar по умолчанию "
2075
-
2076
- #: my-calendar-install.php:258
2077
- #@ my-calendar
2078
- msgid "My Calendar Default Location"
2079
- msgstr "Местоположение My Calendar по умолчанию "
2080
-
2081
- #: my-calendar-output.php:148
2082
- #@ my-calendar
2083
- msgid "Event Details"
2084
- msgstr "Подробности события"
2085
-
2086
- #: my-calendar-output.php:171
2087
- #: my-calendar-output.php:282
2088
- #@ my-calendar
2089
- msgid "Close"
2090
- msgstr "Закрыть"
2091
-
2092
- #: my-calendar-output.php:186
2093
- #@ my-calendar
2094
- msgid "Not Applicable"
2095
- msgstr "Не доступно"
2096
-
2097
- #: my-calendar-output.php:200
2098
- #@ my-calendar
2099
- msgid "Posted by"
2100
- msgstr "Опубликовал"
2101
-
2102
- #: my-calendar-output.php:262
2103
- #@ my-calendar
2104
- msgid "This class is part of a series. You must register for the first event in this series to attend."
2105
- msgstr "Этот класс является частью серии. Вы должны зарегистрироваться на первое мероприятие в этой серии чтобы принять в нем участие."
2106
-
2107
- #: my-calendar-output.php:267
2108
- #@ my-calendar
2109
- msgid "View full calendar"
2110
- msgstr "Показывать полный календарь"
2111
-
2112
- #: my-calendar-output.php:361
2113
- #@ my-calendar
2114
- msgid "Year"
2115
- msgstr "Год"
2116
-
2117
- #: my-calendar-output.php:389
2118
- #@ my-calendar
2119
- msgid "Go"
2120
- msgstr "Пошел"
2121
-
2122
- #: my-calendar-output.php:456
2123
- #@ my-calendar
2124
- msgid "View as Grid"
2125
- msgstr "Показывать как сетку"
2126
-
2127
- #: my-calendar-output.php:460
2128
- #@ my-calendar
2129
- msgid "View as List"
2130
- msgstr "Показывать как список"
2131
-
2132
- #: my-calendar-output.php:481
2133
- #@ my-calendar
2134
- msgid "<abbr title=\"Sunday\">Sun</abbr>"
2135
- msgstr "<abbr title=\"Воскресенье\">Вс</abbr>"
2136
-
2137
- #: my-calendar-output.php:482
2138
- #@ my-calendar
2139
- msgid "<abbr title=\"Monday\">Mon</abbr>"
2140
- msgstr "<abbr title=\"Понедельник\">Пн</abbr>"
2141
-
2142
- #: my-calendar-output.php:483
2143
- #@ my-calendar
2144
- msgid "<abbr title=\"Tuesday\">Tues</abbr>"
2145
- msgstr "<abbr title=\"Вторник\">Вт</abbr>"
2146
-
2147
- #: my-calendar-output.php:484
2148
- #@ my-calendar
2149
- msgid "<abbr title=\"Wednesday\">Wed</abbr>"
2150
- msgstr "<abbr title=\"Среда\">Ср</abbr>"
2151
-
2152
- #: my-calendar-output.php:485
2153
- #@ my-calendar
2154
- msgid "<abbr title=\"Thursday\">Thur</abbr>"
2155
- msgstr "<abbr title=\"Четверг\">Чт</abbr>"
2156
-
2157
- #: my-calendar-output.php:486
2158
- #@ my-calendar
2159
- msgid "<abbr title=\"Friday\">Fri</abbr>"
2160
- msgstr "<abbr title=\"Пятница\">Пт</abbr>"
2161
-
2162
- #: my-calendar-output.php:487
2163
- #@ my-calendar
2164
- msgid "<abbr title=\"Saturday\">Sat</abbr>"
2165
- msgstr "<abbr title=\"Суббота\">Сб</abbr>"
2166
-
2167
- #: my-calendar-output.php:492
2168
- #@ my-calendar
2169
- msgid "<abbr title=\"Sunday\">S</abbr>"
2170
- msgstr "<abbr title=\"Воскресенье\">Вс</abbr>"
2171
-
2172
- #: my-calendar-output.php:493
2173
- #@ my-calendar
2174
- msgid "<abbr title=\"Monday\">M</abbr>"
2175
- msgstr "<abbr title=\"Понедельник\">Пн</abbr>"
2176
-
2177
- #: my-calendar-output.php:494
2178
- #@ my-calendar
2179
- msgid "<abbr title=\"Tuesday\">T</abbr>"
2180
- msgstr "<abbr title=\"Вторник\">Вт</abbr>"
2181
-
2182
- #: my-calendar-output.php:495
2183
- #@ my-calendar
2184
- msgid "<abbr title=\"Wednesday\">W</abbr>"
2185
- msgstr "<abbr title=\"Среда\">Ср</abbr>"
2186
-
2187
- #: my-calendar-output.php:496
2188
- #@ my-calendar
2189
- msgid "<abbr title=\"Thursday\">T</abbr>"
2190
- msgstr "<abbr title=\"Четверг\">Чт</abbr>"
2191
-
2192
- #: my-calendar-output.php:497
2193
- #@ my-calendar
2194
- msgid "<abbr title=\"Friday\">F</abbr>"
2195
- msgstr "<abbr title=\"Пятница\">Пт</abbr>"
2196
-
2197
- #: my-calendar-output.php:498
2198
- #@ my-calendar
2199
- msgid "<abbr title=\"Saturday\">S</abbr>"
2200
- msgstr "<abbr title=\"Суббота\">Сб</abbr>"
2201
-
2202
- #: my-calendar-output.php:627
2203
- #@ my-calendar
2204
- msgid "and"
2205
- msgstr "и"
2206
-
2207
- #: my-calendar-output.php:648
2208
- #@ my-calendar
2209
- msgid "Events in"
2210
- msgstr "События в"
2211
-
2212
- #: my-calendar-output.php:874
2213
- #@ my-calendar
2214
- msgid "There are no events scheduled during this period."
2215
- msgstr "Нет событий в течение этого периода."
2216
-
2217
- #: my-calendar-output.php:887
2218
- #@ my-calendar
2219
- msgid "Category Key"
2220
- msgstr "Легенда"
2221
-
2222
- #: my-calendar-output.php:923
2223
- #@ my-calendar
2224
- msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
2225
- msgstr "Подписаться на <abbr title=\"Really Simple Syndication\">RSS</abbr>-канал"
2226
-
2227
- #: my-calendar-output.php:924
2228
- #@ my-calendar
2229
- msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
2230
- msgstr "Загрузить как <abbr title=\"iCal Экспорт событий\">iCal</abbr>-файл"
2231
-
2232
- #: my-calendar-output.php:1043
2233
- #@ my-calendar
2234
- msgid "(select to include)"
2235
- msgstr "(выберите чтобы включить)"
2236
-
2237
- #: my-calendar-output.php:1068
2238
- #@ my-calendar
2239
- msgid "Categories"
2240
- msgstr "Категории"
2241
-
2242
- #: my-calendar-output.php:1089
2243
- #: my-calendar-output.php:1267
2244
- #@ my-calendar
2245
- msgid "Submit"
2246
- msgstr "Отправить"
2247
-
2248
- #: my-calendar-output.php:1208
2249
- #: my-calendar-output.php:1229
2250
- #@ my-calendar
2251
- msgid "Show all"
2252
- msgstr "Показать все"
2253
-
2254
- #: my-calendar-output.php:1227
2255
- #@ my-calendar
2256
- msgid "Show events in:"
2257
- msgstr "Показывать события в:"
2258
-
2259
- #: button/generator.php:12
2260
- #@ my-calendar
2261
- msgid "You don't have access to this function."
2262
- msgstr ""
2263
-
2264
- #: button/generator.php:47
2265
- #@ my-calendar
2266
- msgid "Shortcode Attributes"
2267
- msgstr ""
2268
-
2269
- #: button/generator.php:52
2270
- #@ my-calendar
2271
- msgid "Location filter type:"
2272
- msgstr ""
2273
-
2274
- #: button/generator.php:54
2275
- #@ my-calendar
2276
- msgid "All locations"
2277
- msgstr ""
2278
-
2279
- #: button/generator.php:64
2280
- #@ my-calendar
2281
- msgid "Location filter value:"
2282
- msgstr ""
2283
-
2284
- #: button/generator.php:70
2285
- #@ my-calendar
2286
- msgid "Grid"
2287
- msgstr ""
2288
-
2289
- #: button/generator.php:71
2290
- #@ my-calendar
2291
- msgid "List"
2292
- msgstr ""
2293
-
2294
- #: button/generator.php:100
2295
- #@ my-calendar
2296
- msgid "Day"
2297
- msgstr ""
2298
-
2299
- #: button/generator.php:107
2300
- #@ my-calendar
2301
- 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\")"
2302
- msgstr ""
2303
-
2304
- #: my-calendar-behaviors.php:85
2305
- #@ my-calendar
2306
- msgid "Update/Reset the My Calendar Calendar Javascript"
2307
- msgstr ""
2308
-
2309
- #: my-calendar-behaviors.php:100
2310
- #: my-calendar-behaviors.php:131
2311
- #: my-calendar-behaviors.php:162
2312
- #: my-calendar-behaviors.php:192
2313
- #@ my-calendar
2314
- msgid "Comparing scripts with latest installed version of My Calendar"
2315
- msgstr ""
2316
-
2317
- #: my-calendar-behaviors.php:100
2318
- #: my-calendar-behaviors.php:131
2319
- #: my-calendar-behaviors.php:162
2320
- #: my-calendar-behaviors.php:192
2321
- #: my-calendar-styles.php:208
2322
- #@ my-calendar
2323
- msgid "Latest (from plugin)"
2324
- msgstr ""
2325
-
2326
- #: my-calendar-behaviors.php:100
2327
- #: my-calendar-behaviors.php:131
2328
- #: my-calendar-behaviors.php:162
2329
- #: my-calendar-behaviors.php:192
2330
- #: my-calendar-styles.php:208
2331
- #@ my-calendar
2332
- msgid "Current (in use)"
2333
- msgstr ""
2334
-
2335
- #: my-calendar-behaviors.php:104
2336
- #@ my-calendar
2337
- msgid "There have been updates to the calendar view scripts."
2338
- msgstr ""
2339
-
2340
- #: my-calendar-behaviors.php:104
2341
- #: my-calendar-behaviors.php:135
2342
- #: my-calendar-behaviors.php:166
2343
- #: my-calendar-behaviors.php:196
2344
- #@ my-calendar
2345
- msgid "Compare your scripts with latest installed version of My Calendar."
2346
- msgstr ""
2347
-
2348
- #: my-calendar-behaviors.php:108
2349
- #: my-calendar-behaviors.php:139
2350
- #: my-calendar-behaviors.php:170
2351
- #: my-calendar-behaviors.php:200
2352
- #@ my-calendar
2353
- msgid "Your script matches that included with My Calendar."
2354
- msgstr ""
2355
-
2356
- #: my-calendar-behaviors.php:116
2357
- #@ my-calendar
2358
- msgid "Update/Reset the My Calendar List Javascript"
2359
- msgstr ""
2360
-
2361
- #: my-calendar-behaviors.php:135
2362
- #@ my-calendar
2363
- msgid "There have been updates to the list view scripts."
2364
- msgstr ""
2365
-
2366
- #: my-calendar-behaviors.php:147
2367
- #@ my-calendar
2368
- msgid "Update/Reset the My Calendar Mini Format Javascript"
2369
- msgstr ""
2370
-
2371
- #: my-calendar-behaviors.php:166
2372
- #@ my-calendar
2373
- msgid "There have been updates to the mini view scripts."
2374
- msgstr ""
2375
-
2376
- #: my-calendar-behaviors.php:178
2377
- #@ my-calendar
2378
- msgid "Update/Reset the My Calendar AJAX Javascript"
2379
- msgstr ""
2380
-
2381
- #: my-calendar-behaviors.php:196
2382
- #@ my-calendar
2383
- msgid "There have been updates to the AJAX scripts."
2384
- msgstr ""
2385
-
2386
- #: my-calendar-behaviors.php:210
2387
- #@ my-calendar
2388
- msgid "Resetting JavaScript will set that script to the version currently distributed with the plug-in."
2389
- msgstr ""
2390
-
2391
- #: my-calendar-categories.php:137
2392
- #@ my-calendar
2393
- msgid "Error: Category was not edited."
2394
- msgstr ""
2395
-
2396
- #: my-calendar-categories.php:218
2397
- #@ my-calendar
2398
- msgid "Add a New Category"
2399
- msgstr ""
2400
-
2401
- #: my-calendar-core.php:198
2402
- #, php-format
2403
- #@ my-calendar
2404
- msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
2405
- msgstr ""
2406
-
2407
- #: my-calendar-core.php:1078
2408
- #@ my-calendar
2409
- msgid "Is this your calendar page?"
2410
- msgstr ""
2411
-
2412
- #: my-calendar-core.php:1081
2413
- #@ my-calendar
2414
- msgid "I tried to guess, but don't have a suggestion for you."
2415
- msgstr ""
2416
-
2417
- #: my-calendar-event-manager.php:263
2418
- #@ my-calendar
2419
- msgid "Currently editing your local calendar"
2420
- msgstr ""
2421
-
2422
- #: my-calendar-event-manager.php:265
2423
- #@ my-calendar
2424
- msgid "Currently editing your central calendar"
2425
- msgstr ""
2426
-
2427
- #: my-calendar-event-manager.php:483
2428
- #@ my-calendar
2429
- msgid "There was an error acquiring information about this event instance. The date for this event was not provided. <strong>You are editing this entire recurrence set.</strong>"
2430
- msgstr ""
2431
-
2432
- #: my-calendar-event-manager.php:508
2433
- #@ my-calendar
2434
- msgid "This event is not spam"
2435
- msgstr ""
2436
-
2437
- #: my-calendar-event-manager.php:526
2438
- #: my-calendar-event-manager.php:539
2439
- #: my-calendar-group-manager.php:317
2440
- #: my-calendar-group-manager.php:325
2441
- #@ my-calendar
2442
- msgid "This event's image:"
2443
- msgstr ""
2444
-
2445
- #: my-calendar-event-manager.php:528
2446
- #: my-calendar-group-manager.php:319
2447
- #@ my-calendar
2448
- msgid "Add an image:"
2449
- msgstr ""
2450
-
2451
- #: my-calendar-event-manager.php:532
2452
- #: my-calendar-group-manager.php:319
2453
- #@ my-calendar
2454
- msgid "Upload Image"
2455
- msgstr ""
2456
-
2457
- #: my-calendar-event-manager.php:532
2458
- #: my-calendar-group-manager.php:319
2459
- #@ my-calendar
2460
- msgid "Include your image URL or upload an image."
2461
- msgstr ""
2462
-
2463
- #: my-calendar-event-manager.php:641
2464
- #@ my-calendar
2465
- msgid "Add another occurrence"
2466
- msgstr ""
2467
-
2468
- #: my-calendar-event-manager.php:642
2469
- #@ my-calendar
2470
- msgid "Remove last occurrence"
2471
- msgstr ""
2472
-
2473
- #: my-calendar-event-manager.php:662
2474
- #: my-calendar-templates.php:117
2475
- #@ my-calendar
2476
- msgid "Daily, weekdays only"
2477
- msgstr ""
2478
-
2479
- #: my-calendar-event-manager.php:814
2480
- #: my-calendar-group-manager.php:480
2481
- #@ my-calendar
2482
- msgid "Location URL"
2483
- msgstr ""
2484
-
2485
- #: my-calendar-event-manager.php:835
2486
- #@ my-calendar
2487
- msgid "Special Options"
2488
- msgstr ""
2489
-
2490
- #: my-calendar-event-manager.php:837
2491
- #@ my-calendar
2492
- msgid "Cancel this event if it occurs on a date with an event in the Holidays category"
2493
- msgstr ""
2494
-
2495
- #: my-calendar-event-manager.php:840
2496
- #@ my-calendar
2497
- 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."
2498
- msgstr ""
2499
-
2500
- #: my-calendar-event-manager.php:921
2501
- #@ my-calendar
2502
- msgid "All"
2503
- msgstr ""
2504
-
2505
- #: my-calendar-event-manager.php:975
2506
- #: my-calendar-group-manager.php:748
2507
- #@ my-calendar
2508
- msgid "Weekdays"
2509
- msgstr ""
2510
-
2511
- #: my-calendar-event-manager.php:984
2512
- #: my-calendar-group-manager.php:757
2513
- #, php-format
2514
- #@ my-calendar
2515
- msgid "%d Times"
2516
- msgstr ""
2517
-
2518
- #: my-calendar-event-manager.php:1002
2519
- #: my-calendar-group-manager.php:775
2520
- #: my-calendar-output.php:287
2521
- #@ my-calendar
2522
- msgid "Edit Group"
2523
- msgstr ""
2524
-
2525
- #: my-calendar-event-manager.php:1033
2526
- #@ my-calendar
2527
- msgid "Delete checked events"
2528
- msgstr ""
2529
-
2530
- #: my-calendar-group-manager.php:57
2531
- #@ my-calendar
2532
- msgid "Event not updated."
2533
- msgstr ""
2534
-
2535
- #: my-calendar-group-manager.php:83
2536
- #@ my-calendar
2537
- msgid "Event not grouped."
2538
- msgstr ""
2539
-
2540
- #: my-calendar-group-manager.php:87
2541
- #@ my-calendar
2542
- msgid "Event grouped successfully"
2543
- msgstr ""
2544
-
2545
- #: my-calendar-group-manager.php:105
2546
- #: my-calendar-group-manager.php:261
2547
- #: my-calendar-group-manager.php:287
2548
- #@ my-calendar
2549
- msgid "Edit Event Group"
2550
- msgstr ""
2551
-
2552
- #: my-calendar-group-manager.php:109
2553
- #@ my-calendar
2554
- msgid "You must provide an event group id in order to edit it"
2555
- msgstr ""
2556
-
2557
- #: my-calendar-group-manager.php:117
2558
- #: my-calendar.php:169
2559
- #@ my-calendar
2560
- msgid "Manage Event Groups"
2561
- msgstr ""
2562
-
2563
- #: my-calendar-group-manager.php:119
2564
- #@ my-calendar
2565
- 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.)"
2566
- msgstr ""
2567
-
2568
- #: my-calendar-group-manager.php:120
2569
- #@ my-calendar
2570
- 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."
2571
- msgstr ""
2572
-
2573
- #: my-calendar-group-manager.php:214
2574
- #@ my-calendar
2575
- msgid "<strong>NOTE:</strong> The group editable fields for the events in this group do not match"
2576
- msgstr ""
2577
-
2578
- #: my-calendar-group-manager.php:221
2579
- #@ my-calendar
2580
- msgid "Apply these changes to:"
2581
- msgstr ""
2582
-
2583
- #: my-calendar-group-manager.php:232
2584
- #@ my-calendar
2585
- msgid "Check/Uncheck all"
2586
- msgstr ""
2587
-
2588
- #: my-calendar-group-manager.php:234
2589
- #@ my-calendar
2590
- msgid "Remove checked events from this group"
2591
- msgstr ""
2592
-
2593
- #: my-calendar-group-manager.php:251
2594
- #@ my-calendar
2595
- msgid "You must provide a group ID to edit groups"
2596
- msgstr ""
2597
-
2598
- #: my-calendar-group-manager.php:690
2599
- #@ my-calendar
2600
- msgid "Create/Modify Groups"
2601
- msgstr ""
2602
-
2603
- #: my-calendar-group-manager.php:691
2604
- #@ my-calendar
2605
- msgid "Check a set of events to group them for mass editing."
2606
- msgstr ""
2607
-
2608
- #: my-calendar-group-manager.php:701
2609
- #: my-calendar-group-manager.php:787
2610
- #@ my-calendar
2611
- msgid "Group checked events for mass editing"
2612
- msgstr ""
2613
-
2614
- #: my-calendar-group-manager.php:707
2615
- #@ my-calendar
2616
- msgid "Group"
2617
- msgstr ""
2618
-
2619
- #: my-calendar-group-manager.php:777
2620
- #@ my-calendar
2621
- msgid "Ungrouped"
2622
- msgstr ""
2623
-
2624
- #: my-calendar-help.php:17
2625
- #@ my-calendar
2626
- msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
2627
- msgstr ""
2628
-
2629
- #: my-calendar-help.php:22
2630
- #@ my-calendar
2631
- msgid "The shortcode supports eight attributes:"
2632
- msgstr ""
2633
-
2634
- #: my-calendar-help.php:24
2635
- #@ my-calendar
2636
- msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
2637
- msgstr ""
2638
-
2639
- #: my-calendar-help.php:25
2640
- #@ my-calendar
2641
- 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."
2642
- msgstr ""
2643
-
2644
- #: my-calendar-help.php:26
2645
- #@ my-calendar
2646
- msgid "Set as \"no\" to hide the category key."
2647
- msgstr ""
2648
-
2649
- #: my-calendar-help.php:27
2650
- #@ my-calendar
2651
- msgid "Set as \"no\" to hide the month-by-month navigation."
2652
- msgstr ""
2653
-
2654
- #: my-calendar-help.php:28
2655
- #@ my-calendar
2656
- msgid "Set as \"yes\" to show a link to switch between list and grid formats."
2657
- msgstr ""
2658
-
2659
- #: my-calendar-help.php:29
2660
- #@ my-calendar
2661
- 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.)"
2662
- msgstr ""
2663
-
2664
- #: my-calendar-help.php:30
2665
- #@ my-calendar
2666
- msgid "The type of location data to restrict by."
2667
- msgstr ""
2668
-
2669
- #: my-calendar-help.php:31
2670
- #@ my-calendar
2671
- msgid "The specific location information to filter to."
2672
- msgstr ""
2673
-
2674
- #: my-calendar-help.php:35
2675
- #@ my-calendar
2676
- 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."
2677
- msgstr ""
2678
-
2679
- #: my-calendar-help.php:37
2680
- #@ my-calendar
2681
- msgid "Additional Calendar Views (Upcoming events, today's events)"
2682
- msgstr ""
2683
-
2684
- #: my-calendar-help.php:45
2685
- #@ my-calendar
2686
- msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
2687
- msgstr ""
2688
-
2689
- #: my-calendar-help.php:48
2690
- #@ my-calendar
2691
- msgid "Supplement Features (Locations filter, Categories filter)"
2692
- msgstr ""
2693
-
2694
- #: my-calendar-help.php:54
2695
- #@ my-calendar
2696
- 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."
2697
- msgstr ""
2698
-
2699
- #: my-calendar-help.php:97
2700
- #: my-calendar-templating.php:70
2701
- #@ my-calendar
2702
- msgid "Event Template Tags"
2703
- msgstr ""
2704
-
2705
- #: my-calendar-help.php:109
2706
- #@ my-calendar
2707
- 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."
2708
- msgstr ""
2709
-
2710
- #: my-calendar-help.php:112
2711
- #@ my-calendar
2712
- 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."
2713
- msgstr ""
2714
-
2715
- #: my-calendar-help.php:136
2716
- #@ my-calendar
2717
- msgid "Displays the email address of the person assigned as host for the event."
2718
- msgstr ""
2719
-
2720
- #: my-calendar-help.php:151
2721
- #: my-calendar-templating.php:115
2722
- #@ my-calendar
2723
- msgid "Image associated with the event."
2724
- msgstr ""
2725
-
2726
- #: my-calendar-help.php:157
2727
- #@ my-calendar
2728
- msgid "Produces the URL to download an iCal formatted record for the event."
2729
- msgstr ""
2730
-
2731
- #: my-calendar-help.php:160
2732
- #@ my-calendar
2733
- msgid "Produces a hyperlink to download an iCal formatted record for the event."
2734
- msgstr ""
2735
-
2736
- #: my-calendar-help.php:163
2737
- #@ my-calendar
2738
- msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
2739
- msgstr ""
2740
-
2741
- #: my-calendar-help.php:166
2742
- #@ my-calendar
2743
- msgid "Shows the number of repetitions of the event."
2744
- msgstr ""
2745
-
2746
- #: my-calendar-help.php:169
2747
- #@ my-calendar
2748
- msgid "Provides a link to an auto-generated page containing all information on the given event."
2749
- msgstr ""
2750
-
2751
- #: my-calendar-help.php:169
2752
- #@ my-calendar
2753
- msgid "Requires that the site URL has been provided on the Settings page"
2754
- msgstr ""
2755
-
2756
- #: my-calendar-help.php:177
2757
- #: my-calendar-templating.php:129
2758
- #@ my-calendar
2759
- msgid "Location Template Tags"
2760
- msgstr ""
2761
-
2762
- #: my-calendar-help.php:190
2763
- #@ my-calendar
2764
- msgid "Displays the city for the location."
2765
- msgstr ""
2766
-
2767
- #: my-calendar-help.php:193
2768
- #@ my-calendar
2769
- msgid "Displays the state for the location."
2770
- msgstr ""
2771
-
2772
- #: my-calendar-help.php:196
2773
- #@ my-calendar
2774
- msgid "Displays the postcode for the location."
2775
- msgstr ""
2776
-
2777
- #: my-calendar-help.php:199
2778
- #@ my-calendar
2779
- msgid "Shows the custom region entered for the location."
2780
- msgstr ""
2781
-
2782
- #: my-calendar-help.php:205
2783
- #@ my-calendar
2784
- msgid "Output the URL for the location link."
2785
- msgstr ""
2786
-
2787
- #: my-calendar-help.php:208
2788
- #@ my-calendar
2789
- msgid "Output a hyperlink to the location's listed link with default link text."
2790
- msgstr ""
2791
-
2792
- #: my-calendar-help.php:216
2793
- #: my-calendar-templating.php:165
2794
- #@ my-calendar
2795
- msgid "Category Template Tags"
2796
- msgstr ""
2797
-
2798
- #: my-calendar-help.php:226
2799
- #@ my-calendar
2800
- msgid "Produces the HTML for the current event's category icon."
2801
- msgstr ""
2802
-
2803
- #: my-calendar-help.php:232
2804
- #@ my-calendar
2805
- msgid ""
2806
- "Displays the ID for\n"
2807
- " the category the event is in."
2808
- msgstr ""
2809
-
2810
- #: my-calendar-help.php:236
2811
- #@ my-calendar
2812
- msgid "Special use Template Tags"
2813
- msgstr ""
2814
-
2815
- #: my-calendar-help.php:240
2816
- #@ my-calendar
2817
- msgid "A unique ID for the current instance of an event."
2818
- msgstr ""
2819
-
2820
- #: my-calendar-help.php:243
2821
- #@ my-calendar
2822
- msgid "The ID for the event record associated with the current instance of an event."
2823
- msgstr ""
2824
-
2825
- #: my-calendar-help.php:266
2826
- #@ my-calendar
2827
- 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!"
2828
- msgstr ""
2829
-
2830
- #: my-calendar-locations.php:202
2831
- #@ my-calendar
2832
- msgid "Website"
2833
- msgstr ""
2834
-
2835
- #: my-calendar-locations.php:222
2836
- #@ my-calendar
2837
- msgid "Add a New Location"
2838
- msgstr ""
2839
-
2840
- #: my-calendar-output.php:180
2841
- #, php-format
2842
- #@ my-calendar
2843
- msgid "(%s in your time zone)"
2844
- msgstr ""
2845
-
2846
- #: my-calendar-output.php:207
2847
- #: my-calendar-templates.php:205
2848
- #@ my-calendar
2849
- msgid "Details about"
2850
- msgstr ""
2851
-
2852
- #: my-calendar-output.php:228
2853
- #: my-calendar-templates.php:155
2854
- #@ my-calendar
2855
- msgid "iCal"
2856
- msgstr ""
2857
-
2858
- #: my-calendar-output.php:300
2859
- #@ my-calendar
2860
- msgid "Edit This Date"
2861
- msgstr ""
2862
-
2863
- #: my-calendar-output.php:301
2864
- #@ my-calendar
2865
- msgid "Edit All"
2866
- msgstr ""
2867
-
2868
- #: my-calendar-output.php:302
2869
- #@ my-calendar
2870
- msgid "Delete This Date"
2871
- msgstr ""
2872
-
2873
- #: my-calendar-output.php:303
2874
- #@ my-calendar
2875
- msgid "Delete All"
2876
- msgstr ""
2877
-
2878
- #: my-calendar-output.php:600
2879
- #@ my-calendar
2880
- msgid "No events scheduled for today!"
2881
- msgstr ""
2882
-
2883
- #: my-calendar-output.php:855
2884
- #, php-format
2885
- #@ my-calendar
2886
- msgid " and %d other event"
2887
- msgstr ""
2888
-
2889
- #: my-calendar-output.php:857
2890
- #, php-format
2891
- #@ my-calendar
2892
- msgid " and %d other events"
2893
- msgstr ""
2894
-
2895
- #: my-calendar-output.php:1067
2896
- #: my-calendar-output.php:1070
2897
- #@ my-calendar
2898
- msgid "All Categories"
2899
- msgstr ""
2900
-
2901
- #: my-calendar-settings.php:282
2902
- #@ my-calendar
2903
- msgid "Currently editing my local calendar"
2904
- msgstr ""
2905
-
2906
- #: my-calendar-settings.php:285
2907
- #@ my-calendar
2908
- msgid "Currently editing the network calendar"
2909
- msgstr ""
2910
-
2911
- #: my-calendar-settings.php:344
2912
- #@ my-calendar
2913
- msgid "General Calendar Options"
2914
- msgstr ""
2915
-
2916
- #: my-calendar-settings.php:348
2917
- #@ my-calendar
2918
- msgid "Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode."
2919
- msgstr ""
2920
-
2921
- #: my-calendar-settings.php:372
2922
- #@ my-calendar
2923
- msgid "Time format"
2924
- msgstr ""
2925
-
2926
- #: my-calendar-settings.php:372
2927
- #: my-calendar-settings.php:375
2928
- #: my-calendar-settings.php:378
2929
- #@ my-calendar
2930
- msgid "Current:"
2931
- msgstr ""
2932
-
2933
- #: my-calendar-settings.php:384
2934
- #@ my-calendar
2935
- msgid "RSS feed shows recently added events."
2936
- msgstr ""
2937
-
2938
- #: my-calendar-settings.php:387
2939
- #@ my-calendar
2940
- msgid "iCal outputs events occurring in the current calendar month."
2941
- msgstr ""
2942
-
2943
- #: my-calendar-settings.php:400
2944
- #@ my-calendar
2945
- msgid "Grid Layout Options"
2946
- msgstr ""
2947
-
2948
- #: my-calendar-settings.php:410
2949
- #@ my-calendar
2950
- msgid "List Layout Options"
2951
- msgstr ""
2952
-
2953
- #: my-calendar-settings.php:423
2954
- #@ my-calendar
2955
- msgid "Event Details Options"
2956
- msgstr ""
2957
-
2958
- #: my-calendar-settings.php:427
2959
- #: my-calendar-settings.php:437
2960
- #@ my-calendar
2961
- msgid "Templating Help"
2962
- msgstr ""
2963
-
2964
- #: my-calendar-settings.php:427
2965
- #: my-calendar-settings.php:437
2966
- #@ my-calendar
2967
- msgid "All template tags are available."
2968
- msgstr ""
2969
-
2970
- #: my-calendar-settings.php:430
2971
- #@ my-calendar
2972
- msgid "Event details link text"
2973
- msgstr ""
2974
-
2975
- #: my-calendar-settings.php:435
2976
- #@ my-calendar
2977
- msgid "Event URL link text"
2978
- msgstr ""
2979
-
2980
- #: my-calendar-settings.php:440
2981
- #@ my-calendar
2982
- msgid "Display author's name"
2983
- msgstr ""
2984
-
2985
- #: my-calendar-settings.php:446
2986
- #@ my-calendar
2987
- msgid "Hide category icons"
2988
- msgstr ""
2989
-
2990
- #: my-calendar-settings.php:449
2991
- #@ my-calendar
2992
- msgid "Show Link to Google Map"
2993
- msgstr ""
2994
-
2995
- #: my-calendar-settings.php:452
2996
- #@ my-calendar
2997
- msgid "Show Event Address"
2998
- msgstr ""
2999
-
3000
- #: my-calendar-settings.php:461
3001
- #@ my-calendar
3002
- msgid "Show link to single-event details. (requires <a href='#mc_uri'>URL, above</a>)"
3003
- msgstr ""
3004
-
3005
- #: my-calendar-settings.php:464
3006
- #@ my-calendar
3007
- msgid "Event links expire after the event has passed."
3008
- msgstr ""
3009
-
3010
- #: my-calendar-settings.php:467
3011
- #@ my-calendar
3012
- msgid "Show current availability status"
3013
- msgstr ""
3014
-
3015
- #: my-calendar-settings.php:478
3016
- #@ my-calendar
3017
- msgid "Event Scheduling Options"
3018
- msgstr ""
3019
-
3020
- #: my-calendar-settings.php:481
3021
- #@ my-calendar
3022
- 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."
3023
- msgstr ""
3024
-
3025
- #: my-calendar-settings.php:502
3026
- #@ my-calendar
3027
- msgid "Default setting for event input: If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
3028
- msgstr ""
3029
-
3030
- #: my-calendar-settings.php:507
3031
- #@ my-calendar
3032
- msgid "Event ID"
3033
- msgstr ""
3034
-
3035
- #: my-calendar-settings.php:537
3036
- #@ my-calendar
3037
- msgid "Show Event image field"
3038
- msgstr ""
3039
-
3040
- #: my-calendar-settings.php:537
3041
- #@ my-calendar
3042
- msgid "Show Event registration options"
3043
- msgstr ""
3044
-
3045
- #: my-calendar-settings.php:537
3046
- #@ my-calendar
3047
- msgid "Show Event location fields"
3048
- msgstr ""
3049
-
3050
- #: my-calendar-settings.php:562
3051
- #@ my-calendar
3052
- msgid "Multisite Settings (Network Administrators only)"
3053
- msgstr ""
3054
-
3055
- #: my-calendar-settings.php:564
3056
- #@ my-calendar
3057
- msgid "Multisite support is a beta feature - use with caution."
3058
- msgstr ""
3059
-
3060
- #: my-calendar-settings.php:569
3061
- #@ my-calendar
3062
- msgid "Settings for WP MultiSite configurations"
3063
- msgstr ""
3064
-
3065
- #: my-calendar-settings.php:570
3066
- #@ my-calendar
3067
- msgid "The central calendar is the calendar associated with the primary site in your WordPress Multisite network."
3068
- msgstr ""
3069
-
3070
- #: my-calendar-settings.php:572
3071
- #@ my-calendar
3072
- msgid "Site owners may only post to their local calendar"
3073
- msgstr ""
3074
-
3075
- #: my-calendar-settings.php:573
3076
- #@ my-calendar
3077
- msgid "Site owners may only post to the central calendar"
3078
- msgstr ""
3079
-
3080
- #: my-calendar-settings.php:574
3081
- #@ my-calendar
3082
- msgid "Site owners may manage either calendar"
3083
- msgstr ""
3084
-
3085
- #: my-calendar-settings.php:576
3086
- #@ my-calendar
3087
- msgid "Changes only effect input permissions. Public-facing calendars will be unchanged."
3088
- msgstr ""
3089
-
3090
- #: my-calendar-settings.php:583
3091
- #@ my-calendar
3092
- msgid "Save Multisite Settings"
3093
- msgstr ""
3094
-
3095
- #: my-calendar-settings.php:663
3096
- #@ my-calendar
3097
- 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."
3098
- msgstr ""
3099
-
3100
- #: my-calendar-settings.php:668
3101
- #@ my-calendar
3102
- msgid "Use this location list as input control"
3103
- msgstr ""
3104
-
3105
- #: my-calendar-settings.php:668
3106
- #@ my-calendar
3107
- msgid "The normal text entry for this location type will be replaced by a drop down containing these choices."
3108
- msgstr ""
3109
-
3110
- #: my-calendar-styles.php:192
3111
- #@ my-calendar
3112
- msgid "Restore My Calendar stylesheet"
3113
- msgstr ""
3114
-
3115
- #: my-calendar-styles.php:208
3116
- #@ my-calendar
3117
- msgid "Comparing Your Style with latest installed version of My Calendar"
3118
- msgstr ""
3119
-
3120
- #: my-calendar-styles.php:212
3121
- #@ my-calendar
3122
- msgid "There have been updates to the stylesheet."
3123
- msgstr ""
3124
-
3125
- #: my-calendar-styles.php:212
3126
- #@ my-calendar
3127
- msgid "Compare Your Stylesheet with latest installed version of My Calendar."
3128
- msgstr ""
3129
-
3130
- #: my-calendar-styles.php:216
3131
- #@ my-calendar
3132
- msgid "Your stylesheet matches that included with My Calendar."
3133
- msgstr ""
3134
-
3135
- #: my-calendar-styles.php:224
3136
- #@ my-calendar
3137
- msgid "Resetting your stylesheet will set your stylesheet to the version of that style currently distributed with the plug-in."
3138
- msgstr ""
3139
-
3140
- #: my-calendar-templates.php:42
3141
- #, php-format
3142
- #@ my-calendar
3143
- msgid "Map<span> to %s</span>"
3144
- msgstr ""
3145
-
3146
- #: my-calendar-templates.php:63
3147
- #: my-calendar-templates.php:111
3148
- #, php-format
3149
- #@ my-calendar
3150
- msgid "Visit web site<span>: %s</span>"
3151
- msgstr ""
3152
-
3153
- #: my-calendar-templates.php:120
3154
- #, php-format
3155
- #@ my-calendar
3156
- msgid "Date of Month (the %s of each month)"
3157
- msgstr ""
3158
-
3159
- #: my-calendar-templates.php:121
3160
- #, php-format
3161
- #@ my-calendar
3162
- msgid "Day of Month (the %s %s of each month)"
3163
- msgstr ""
3164
-
3165
- #: my-calendar-templating.php:18
3166
- #@ my-calendar
3167
- msgid "Grid Output Template saved"
3168
- msgstr ""
3169
-
3170
- #: my-calendar-templating.php:30
3171
- #@ my-calendar
3172
- msgid "List Output Template saved"
3173
- msgstr ""
3174
-
3175
- #: my-calendar-templating.php:41
3176
- #@ my-calendar
3177
- msgid "Mini Output Template saved"
3178
- msgstr ""
3179
-
3180
- #: my-calendar-templating.php:52
3181
- #@ my-calendar
3182
- msgid "Event Details Template saved"
3183
- msgstr ""
3184
-
3185
- #: my-calendar-templating.php:67
3186
- #@ my-calendar
3187
- msgid "My Calendar Information Templates"
3188
- msgstr ""
3189
-
3190
- #: my-calendar-templating.php:73
3191
- #@ my-calendar
3192
- msgid "Title of the event."
3193
- msgstr ""
3194
-
3195
- #: my-calendar-templating.php:76
3196
- #@ my-calendar
3197
- msgid "Title of the event as a link if a URL is present, or the title alone if not."
3198
- msgstr ""
3199
-
3200
- #: my-calendar-templating.php:79
3201
- #@ my-calendar
3202
- msgid "Start time for the event."
3203
- msgstr ""
3204
-
3205
- #: my-calendar-templating.php:82
3206
- #@ my-calendar
3207
- msgid "Event times adjusted to the current user's time zone if set."
3208
- msgstr ""
3209
-
3210
- #: my-calendar-templating.php:85
3211
- #@ my-calendar
3212
- msgid "Date on which the event begins."
3213
- msgstr ""
3214
-
3215
- #: my-calendar-templating.php:88
3216
- #@ my-calendar
3217
- msgid "Date on which the event ends."
3218
- msgstr ""
3219
-
3220
- #: my-calendar-templating.php:91
3221
- #@ my-calendar
3222
- msgid "Time at which the event ends."
3223
- msgstr ""
3224
-
3225
- #: my-calendar-templating.php:100
3226
- #@ my-calendar
3227
- msgid "Author who posted the event."
3228
- msgstr ""
3229
-
3230
- #: my-calendar-templating.php:103
3231
- #@ my-calendar
3232
- msgid "Name of the assigned host for the event."
3233
- msgstr ""
3234
-
3235
- #: my-calendar-templating.php:106
3236
- #@ my-calendar
3237
- msgid "Email for the person assigned as host."
3238
- msgstr ""
3239
-
3240
- #: my-calendar-templating.php:109
3241
- #@ my-calendar
3242
- msgid "Short event description."
3243
- msgstr ""
3244
-
3245
- #: my-calendar-templating.php:112
3246
- #@ my-calendar
3247
- msgid "Description of the event."
3248
- msgstr ""
3249
-
3250
- #: my-calendar-templating.php:118
3251
- #@ my-calendar
3252
- msgid "URL provided for the event."
3253
- msgstr ""
3254
-
3255
- #: my-calendar-templating.php:121
3256
- #@ my-calendar
3257
- msgid "Link to an auto-generated page containing information about the event."
3258
- msgstr ""
3259
-
3260
- #: my-calendar-templating.php:124
3261
- #@ my-calendar
3262
- msgid "Whether event is currently open for registration."
3263
- msgstr ""
3264
-
3265
- #: my-calendar-templating.php:127
3266
- #@ my-calendar
3267
- msgid "Current status of event: either \"Published\" or \"Reserved.\""
3268
- msgstr ""
3269
-
3270
- #: my-calendar-templating.php:133
3271
- #@ my-calendar
3272
- msgid "Name of the location of the event."
3273
- msgstr ""
3274
-
3275
- #: my-calendar-templating.php:136
3276
- #@ my-calendar
3277
- msgid "First line of the site address."
3278
- msgstr ""
3279
-
3280
- #: my-calendar-templating.php:139
3281
- #@ my-calendar
3282
- msgid "Second line of the site address."
3283
- msgstr ""
3284
-
3285
- #: my-calendar-templating.php:142
3286
- #@ my-calendar
3287
- msgid "City."
3288
- msgstr ""
3289
-
3290
- #: my-calendar-templating.php:145
3291
- #@ my-calendar
3292
- msgid "State."
3293
- msgstr ""
3294
-
3295
- #: my-calendar-templating.php:148
3296
- #@ my-calendar
3297
- msgid "Postal code/zip code."
3298
- msgstr ""
3299
-
3300
- #: my-calendar-templating.php:151
3301
- #@ my-calendar
3302
- msgid "Custom region."
3303
- msgstr ""
3304
-
3305
- #: my-calendar-templating.php:154
3306
- #@ my-calendar
3307
- msgid "Country for the event location."
3308
- msgstr ""
3309
-
3310
- #: my-calendar-templating.php:157
3311
- #@ my-calendar
3312
- msgid "Output the URL for the location."
3313
- msgstr ""
3314
-
3315
- #: my-calendar-templating.php:160
3316
- #@ my-calendar
3317
- msgid "Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
3318
- msgstr ""
3319
-
3320
- #: my-calendar-templating.php:163
3321
- #@ my-calendar
3322
- msgid "Link to Google Map to the event, if address information is available."
3323
- msgstr ""
3324
-
3325
- #: my-calendar-templating.php:169
3326
- #@ my-calendar
3327
- msgid "Name of the category of the event."
3328
- msgstr ""
3329
-
3330
- #: my-calendar-templating.php:172
3331
- #@ my-calendar
3332
- msgid "URL for the event's category icon."
3333
- msgstr ""
3334
-
3335
- #: my-calendar-templating.php:175
3336
- #@ my-calendar
3337
- msgid "Hex code for the event's category color."
3338
- msgstr ""
3339
-
3340
- #: my-calendar-templating.php:178
3341
- #@ my-calendar
3342
- msgid "ID of the category of the event."
3343
- msgstr ""
3344
-
3345
- #: my-calendar-templating.php:181
3346
- #@ my-calendar
3347
- msgid "Advanced users may wish to customize the HTML elements and order of items presented for each event. This page provides the ability to create a customized view of your events in each different context. All available template tags are documented on the Help page. The default templates provided are based on the default views assuming all output is enabled. <strong>Custom templates will override any other output rules you've configured in settings.</strong>"
3348
- msgstr ""
3349
-
3350
- #: my-calendar-templating.php:181
3351
- #@ my-calendar
3352
- msgid "Templates Help"
3353
- msgstr ""
3354
-
3355
- #: my-calendar-templating.php:184
3356
- #@ my-calendar
3357
- msgid "My Calendar: Grid Event Template"
3358
- msgstr ""
3359
-
3360
- #: my-calendar-templating.php:189
3361
- #@ my-calendar
3362
- msgid "Use this grid event template"
3363
- msgstr ""
3364
-
3365
- #: my-calendar-templating.php:192
3366
- #@ my-calendar
3367
- msgid "Your custom template for events in the calendar grid output."
3368
- msgstr ""
3369
-
3370
- #: my-calendar-templating.php:195
3371
- #@ my-calendar
3372
- msgid "Save Grid Template"
3373
- msgstr ""
3374
-
3375
- #: my-calendar-templating.php:204
3376
- #@ my-calendar
3377
- msgid "My Calendar: List Event Template"
3378
- msgstr ""
3379
-
3380
- #: my-calendar-templating.php:209
3381
- #@ my-calendar
3382
- msgid "Use this list event template"
3383
- msgstr ""
3384
-
3385
- #: my-calendar-templating.php:212
3386
- #@ my-calendar
3387
- msgid "Your custom template for events in calendar list output."
3388
- msgstr ""
3389
-
3390
- #: my-calendar-templating.php:215
3391
- #@ my-calendar
3392
- msgid "Save List Template"
3393
- msgstr ""
3394
-
3395
- #: my-calendar-templating.php:224
3396
- #@ my-calendar
3397
- msgid "My Calendar: Mini Calendar Template"
3398
- msgstr ""
3399
-
3400
- #: my-calendar-templating.php:229
3401
- #@ my-calendar
3402
- msgid "Use this mini event template"
3403
- msgstr ""
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 &ndash; 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 &raquo;"
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 "&laquo; 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> &mdash; 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 "&laquo; Previous Page"
280
+ msgstr ""
281
+
282
+ #: my-calendar-event-manager.php:979
283
+ msgid "Next Page &raquo;"
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 &ndash; 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 &raquo;"
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 "&laquo; 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: -24px; right: 10px;}
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( $wp_plugin_dir . '/my-calendar-custom/' ) ) {
65
- $results = my_dirlist( $wp_plugin_dir . '/my-calendar-custom/' );
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 = $wp_plugin_dir . '/my-calendar-custom/';
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 = get_bloginfo('wpurl');
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'); ?></h3>
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 if ( current_user_can( 'mc_approve_events' ) ) { $dvalue = 1; } else { $dvalue = 0; } ?>
 
 
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&amp;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&amp;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 * 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" );
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 * 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");
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 = ( !empty($post['event_repeats']) || trim($post['event_repeats'])=='' ) ? trim($post['event_repeats']) : 0;
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 nine attributes:','my-calendar'); ?>
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 $wp_plugin_dir; ?>/my-calendar/icons/</code> <?php _e('You can alternately place icons in:','my-calendar'); ?> <code><?php echo $wp_plugin_dir; ?>/my-calendar-custom/</code>
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 $wp_plugin_dir; ?>/my-calendar/styles/</code></li>
102
- <li><?php _e('Your custom stylesheets directory is','my-calendar'); ?>: <code><?php echo $wp_plugin_dir; ?>/my-calendar-custom/styles/</code></li>
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
- $category_id = $cat->category_id;
36
- if ($i == 1) { $select_category .= ($type=='all')?" WHERE (":' ('; }
37
- $select_category .= " $data = $category_id";
38
- if ($i < $numcat) {
39
- $select_category .= " OR ";
40
- } else if ($i == $numcat) {
41
- $select_category .= ($type=='all')?") ":' ) AND';
 
 
 
 
 
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 != 'list' && $type != 'single')?"<h3 class='event-title summary$group_class'>$wrap$image".$mytitle."$balance</h3>\n":'';
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
- global $wp_plugin_url;
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,$id,$template,$content,$author);
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
- $c_year = date("Y",time()+($offset));
 
 
 
 
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
- $home = get_permalink(); // so, if the calendar is in a custom post type which is inserted in a page, this gets the post type's link.
1193
- // I think that's actually what it should do, and am not inclined to fix it...have to think.
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
- $mc_title_template = $_POST['mc_title_template'];
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('General Calendar Options','my-calendar'); ?></legend>
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('With above settings:','my-calendar'); ?></strong></li>
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 class='mc-month-format'>
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
- <li>
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 Options','my-calendar'); ?></legend>
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 == 'disabled' ) {
83
- $message .= "<p>".__('Styles are disabled, and were not edited.','my-calendar')."</p>";
84
  } else {
85
- $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>';
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'):get_bloginfo('url'); }
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
- $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));
 
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
- $dates = mc_event_date_span( $event->event_group_id, $event->event_span, $date );
 
 
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 != 1)?$date:mc_format_date_span( $dates );
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>&ndash;<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 || $event_span != 1 ) return false;
277
- $sql = "SELECT occur_begin, occur_end FROM ".my_calendar_event_table()." WHERE occur_group_id = $group_id ORDER BY occur_begin ASC";
278
- $dates = $mcdb->get_results( $sql );
279
- return $dates;
 
 
 
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>&ndash;<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
- $from = date('Y-m-d',strtotime("-$before days") );
255
- $to = date('Y-m-d',strtotime("+$after days") );
256
- $events = my_calendar_grab_events( $from, $to, $category,'','','upcoming',$author );
 
 
 
 
 
 
 
 
 
 
 
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 .= "<li>".jd_draw_template($details,$template)."</li>";
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
- // make this function time-sensitive, not date-sensitive.
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
- $output = '';$near_events = $temp_array = array();$past = $future = 1;
352
- $offset = (60*60*get_option('gmt_offset'));
353
- $today = date('Y',time()+($offset)).'-'.date('m',time()+($offset)).'-'.date('d',time()+($offset));
354
- @usort( $e, "my_calendar_timediff_cmp" );// sort all events by proximity to current date
355
- $count = count($events);
356
- $skip = false;
357
- $group = array();
358
- $spans = array();
359
- $i = 0;
360
- // create near_events array
361
- if ( is_array( $events ) ) {
362
- foreach ( $events as $k=>$event ) {
363
- if ( $i < $count ) {
364
- if ( is_array( $event ) ) {
365
- foreach ( $event as $e ) {
366
- if ( $e->category_private == 1 && !is_user_logged_in() ) {
367
- } else {
368
- // if the beginning of an event is after the current time, it is in the future
369
- $beginning = $e->occur_begin;
370
- $date = date('Y-m-d', strtotime($beginning));
371
- // if the end of an event is before the current time, it is in the past.
372
- if ( date('H:i:s',strtotime($e->occur_end) ) == '00:00:00' ) { $endtime = date('H:i:s',strtotime($e->occur_begin) ); } else { $endtime = date('H:i:s',strtotime($e->occur_end) ); }
373
- $end = $e->occur_end;
374
- // store span time in an array to avoid repeating database query
375
- if ( $e->event_span == 1 && ( !isset($spans[ $e->occur_group_id ]) ) ) {
376
- // this is a multi-day event: treat each event as if it spanned the entire range of the group.
377
- $span_time = mc_span_time($e->occur_group_id);
378
- $beginning = $span_time[0];
379
- $end = $span_time[1];
380
- $spans[ $e->occur_group_id ] = $span_time;
381
- } else if ( $e->event_span == 1 && ( isset($spans[ $e->occur_group_id ]) ) ) {
382
- $span_time = $spans[ $e->occur_group_id ];
383
- $beginning = $span_time[0];
384
- $end = $span_time[1];
 
 
 
 
 
 
 
385
  }
386
- $current = date('Y-m-d H:i',time()+$offset);
387
- if ( $e ) {
388
- if ( $e->occur_group_id != 0 && $e->event_span == 1 && in_array( $e->occur_group_id, $group ) ) {
389
- $skip = true;
390
- } else {
391
- $group[] = $e->occur_group_id; $skip=false;
392
- }
393
- if ( !$skip ) {
394
- if ( ( $past<=$before && $future<=$after ) ) {
395
- $near_events[] = $e; // if neither limit is reached, split off freely
396
- $i++;
397
- } else if ( $past <= $before && ( my_calendar_date_comp( $beginning,$current ) ) ) {
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 ($past > $before && $future > $after) {
409
- break;
 
 
 
 
 
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
- if ( is_array( $events ) ) {
430
- foreach( array_keys($events) as $key ) {
431
- $event =& $events[$key];
432
- //echo $event->event_title . " " . $event->event_group_id."<br />";
433
- $event_details = event_as_array( $event );
434
- if ( get_option( 'mc_event_approve' ) == 'true' ) {
435
- if ( $event->event_approved != 0 ) { $temp_array[] = $event_details; }
436
- } else {
437
- $temp_array[] = $event_details;
438
- }
439
- }
440
- $i = 0;
441
- $groups = array();
442
- foreach( reverse_array($temp_array, true, $order) as $details ) {
443
- if ( !in_array( $details['group'], $groups ) ) {
444
- $date = date('Y-m-d',strtotime($details['dtstart']));
445
- $class = (my_calendar_date_comp( $date,$today )===true)?"past-event":"future-event";
446
- if ( my_calendar_date_equal( $date,$today ) ) {
447
- $class = "today";
448
- }
449
- if ( $details['event_span'] == 1 ) {
450
- $class = "multiday";
451
- }
452
- if ($type == 'list') {
453
- $prepend = "\n<li class=\"$class\">";
454
- $append = "</li>\n";
455
- } else {
456
- $prepend = $append = '';
457
- }
458
- // if any event this date is in the holiday category, we are skipping
459
- if ( $i < $skip && $skip != 0 ) {
460
- $i++;
461
- } else {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  $output .= apply_filters('mc_event_upcoming',"$prepend".jd_draw_template($details,$template,$type)."$append",$event);
 
463
  }
464
- if ( $details['event_span'] == 1 ) {
465
- $groups[] = $details['group'];
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',time()+$offset );
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'),time()+$offset);
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',time()+$offset ) ) - strtotime( date( 'Y-m-d',time()+$offset ) );
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.0.12
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.0.12';
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 get_bloginfo('wpurl').'/wp-admin/';
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.4.2
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
- Languages available: [visit the My Calendar translations page to see how complete these are](http://translate.joedolson.com/projects/my-calendar).
52
-
53
- * American English (Default)
54
- * Spanish ([Ale Gonzalez](http://60rpm.tv/i))
55
- * Hindi ([Outshine Solutions](http://outshinesolutions.com))
56
- * Danish ([Jakob Smith](http://www.omkalfatring.dk/))
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&ccedil;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 $21. ($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!
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&ccedil;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&aacute;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&eacute;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 label, .mc-main .my-calendar-date-switcher select {margin: 0;padding: 0;color: #333;}
 
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 .8em Arial, Verdana, sans-serif;
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 .8em Arial, Verdana, sans-serif;
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 {background: #fff; }
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 .8em Arial, Verdana, sans-serif;
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: .7em;
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:.8em!important;
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:.7em!important;
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 label, .mc-main .my-calendar-date-switcher select {margin: 0;padding: 0;color: #333;}
 
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 .8em Arial, Verdana, sans-serif;
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 .8em Arial, Verdana, sans-serif;
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 {background: #fff; }
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 .8em Arial, Verdana, sans-serif;
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:.8em!important;
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:.7em!important;
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;