My Calendar - Version 2.2.13

Version Description

  • Bug fix: Threw error if network-activated (wp_is_mobile() not defined yet)
  • Bug fix: Calendar URI could be saved as integer instead of as URL.
  • Bug fix: hide screen options that current user can't use.
  • Improved localization of Calendrical jQuery plug-in.
  • Feature: my_calendar_upcoming and my_calendar_today shortcodes now support filtering by host.
  • New filter: mc_send_notification -- passes event and user data to determine whether a new event email notification should be sent. Return true|false.
Download this release

Release Info

Developer joedolson
Plugin Icon 128x128 My Calendar
Version 2.2.13
Comparing to
See all releases

Code changes from version 2.2.9 to 2.2.13

button/generator.php CHANGED
@@ -75,12 +75,14 @@ do_action('admin_head');
75
  </select>
76
  </p>
77
  <p>
78
- <label for="above"><?php _e('Navigation above calendar','my-calendar'); ?></label>
79
- <input type="text" name="above" id="above" value="nav,toggle,jump,print,timeframe" />
 
80
  </p>
81
  <p>
82
- <label for="below"><?php _e('Navigation below calendar','my-calendar'); ?></label>
83
- <input type="text" name="below" id="below" value="key,feeds" />
 
84
  </p>
85
  <p>
86
  <label for="time"><?php _e('Time Segment', 'my-calendar'); ?></label>
75
  </select>
76
  </p>
77
  <p>
78
+ <label for="above" id='labove'><?php _e('Navigation above calendar','my-calendar'); ?></label>
79
+ <input type="text" name="above" id="above" value="nav,toggle,jump,print,timeframe" aria-labelledby='labove aboveLabel' /><br />
80
+ <em id="aboveLabel"><?php _e('Use "none" for no navigation.','my-calendar'); ?></em>
81
  </p>
82
  <p>
83
+ <label for="below" id='lbelow'><?php _e('Navigation below calendar','my-calendar'); ?></label>
84
+ <input type="text" name="below" id="below" value="key,feeds" aria-labelledby='lbelow belowLabel' /><br />
85
+ <em id="belowLabel"><?php _e('Use "none" for no navigation.','my-calendar'); ?></em>
86
  </p>
87
  <p>
88
  <label for="time"><?php _e('Time Segment', 'my-calendar'); ?></label>
js/calendrical.css CHANGED
@@ -1,22 +1,28 @@
1
  #event_begin, #event_time, #event_end, #event_endtime {position: relative}
2
- .calendricalDatePopup {background: #fff;border: solid 1px #999;padding: 3px;text-align: center;width: 170px; z-index: 5;box-shadow: 1px 1px 2px #aaa}
3
- .calendricalDatePopup table {border-collapse: collapse;width: 168px;margin: 0 auto}
4
  .calendricalDatePopup td { border: 1px solid #eee}
5
- .calendricalDatePopup table .monthCell {padding: 2px 0}
6
- .calendricalDatePopup table .monthCell a {display: block;float: left;line-height: 20px}
7
- .calendricalDatePopup table .monthCell .prevMonth, .calendricalDatePopup table .monthCell .nextMonth {width: 24px}
8
- .calendricalDatePopup table .monthCell .monthName {width: 110px}
 
 
 
 
 
 
9
  .calendricalDatePopup table a {text-decoration: none}
10
- .calendricalDatePopup table td {text-align: center;font-size: 12px;padding: 0}
11
- .calendricalDatePopup table a {display: block;padding: 1px}
12
- .calendricalDatePopup table a:hover {background: #ccf;border: none; text-decoration: underline}
13
- .calendricalDatePopup table td.today a {background: #ffd}
14
- .calendricalDatePopup table td.selected a {background: #ccf}
15
- .calendricalDatePopup table td.today_selected a {background: #eeb;border: solid 1px #dd6;padding: 1px 2px}
16
- .calendricalDatePopup table td.nonMonth a {color: #999}
17
- .calendricalTimePopup {background: #fff;border: solid 1px #999;width: 110px;height: 150px;overflow: auto;z-index: 5;box-shadow: 1px 1px 2px #aaa}
18
  .calendricalTimePopup ul {margin: 0;padding: 0}
19
  .calendricalTimePopup ul li {list-style: none;margin: 0}
20
  .calendricalTimePopup ul li a, .calendricalTimePopup ul li a:visited {text-indent: 10px;padding: 4px;display: block;color: black;text-decoration: none}
21
- .calendricalTimePopup ul li a:hover, .calendricalTimePopup ul li.selected a {background: #ccf}
22
  .calendricalEndTimePopup {width: 160px}
1
  #event_begin, #event_time, #event_end, #event_endtime {position: relative}
2
+ .calendricalDatePopup {background: #fff;border: 1px solid #bbb;padding: 3px;text-align: center; border-radius: 0 0 5px 5px; z-index: 5;box-shadow: 1px 1px 2px #aaa}
3
+ .calendricalDatePopup table {border-collapse: collapse; margin: 0 auto}
4
  .calendricalDatePopup td { border: 1px solid #eee}
5
+ .calendricalDatePopup table .monthCell {padding: 0 0 6px; font-size: 1.2em; font-weight: 400; line-height: 1; }
6
+ .calendricalDatePopup table .monthCell:nth-of-type(1) { text-align: right; }
7
+ .calendricalDatePopup table .monthCell:nth-of-type(2) { text-align: center; }
8
+ .calendricalDatePopup table .monthCell:nth-of-type(3) { text-align: left; }
9
+ .calendricalDatePopup table .monthCell a {display: block;}
10
+ .calendricalDatePopup table .monthCell .monthName { background: #eee; width: 100%; padding: 2px; }
11
+ .calendricalDatePopup table .monthCell .prevMonth, .calendricalDatePopup table .monthCell .nextMonth { color: #fff; background: #777; display: block; line-height: 1; padding: 2px 8px; }
12
+ .calendricalDatePopup table .monthCell .prevMonth:hover, .calendricalDatePopup table .monthCell .nextMonth:hover, .calendricalDatePopup table .monthCell .prevMonth:focus, .calendricalDatePopup table .monthCell .nextMonth:focus { background: #000; }
13
+ .calendricalDatePopup table .monthCell .prevMonth { border-radius: 16px 0 0 16px; }
14
+ .calendricalDatePopup table .monthCell .nextMonth { border-radius: 0 16px 16px 0; }
15
  .calendricalDatePopup table a {text-decoration: none}
16
+ .calendricalDatePopup table td {text-align: center;padding: 0; }
17
+ .calendricalDatePopup table a {display: block; padding: 6px 8px; line-height: 1; }
18
+ .calendricalDatePopup table a:hover, .calendricalDatePopup table a:focus {background: #eee;border: none; text-decoration: underline}
19
+ .calendricalDatePopup table td.today a {background: #ffc}
20
+ .calendricalDatePopup table td.selected a {background: #eef}
21
+ .calendricalDatePopup table td.today_selected a {background: #ffc;}
22
+ .calendricalDatePopup table td.nonMonth a {color: #555; background: #f9f9f9; }
23
+ .calendricalTimePopup {background: #fff;border: 1px solid #bbb;width: 110px;height: 170px;overflow: auto;z-index: 5;box-shadow: 1px 1px 2px #aaa}
24
  .calendricalTimePopup ul {margin: 0;padding: 0}
25
  .calendricalTimePopup ul li {list-style: none;margin: 0}
26
  .calendricalTimePopup ul li a, .calendricalTimePopup ul li a:visited {text-indent: 10px;padding: 4px;display: block;color: black;text-decoration: none}
27
+ .calendricalTimePopup ul li a:hover, .calendricalTimePopup ul li a:focus, .calendricalTimePopup ul li.selected a {background: #ccf}
28
  .calendricalEndTimePopup {width: 160px}
js/color-picker.js ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ jQuery(document).ready(function($){
2
+ $('.mc-color-input').wpColorPicker();
3
+ });
js/jquery.addfields.js CHANGED
@@ -27,4 +27,33 @@ jQuery(document).ready(function($) {
27
  });
28
  $('#del_field').attr('disabled','disabled');
29
  $('#event_span').attr('disabled','disabled');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  });
27
  });
28
  $('#del_field').attr('disabled','disabled');
29
  $('#event_span').attr('disabled','disabled');
30
+ });
31
+
32
+ jQuery(document).ready(function($) {
33
+ $('#add_price').on('click',function() {
34
+ var num = $('.clonedPrice').length; // how many "duplicatable" input fields we currently have
35
+ var newNum = new Number(num + 1); // the numeric ID of the new input field being added
36
+ // create the new element via clone(), and manipulate it's ID using newNum value
37
+ var newElem = $('#price' + num).clone().attr('id', 'price' + newNum);
38
+ // manipulate the name/id values of the input inside the new element
39
+ // insert the new element after the last "duplicatable" input field
40
+ $('#price' + num).after(newElem);
41
+ // enable the "remove" button
42
+ $('#del_price').removeAttr('disabled');
43
+ // business rule: you can only add 6 variations
44
+ if ( newNum == 6 )
45
+ $('#add_price').attr('disabled','disabled');
46
+ });
47
+
48
+ $('#del_price').on('click',function() {
49
+ var num = $('.clonedPrice').length; // how many "duplicatable" input fields we currently have
50
+ $('#price' + num).remove(); // remove the last element
51
+ // enable the "add" button
52
+ $('#add_price').removeAttr('disabled');
53
+ // if only one element remains, disable the "remove" button
54
+ if (num-1 == 1)
55
+ $('#del_price').attr('disabled','disabled');
56
+ $('#event_span').attr('disabled','disabled');
57
+ });
58
+ $('#del_price').attr('disabled','disabled');
59
  });
js/jquery.calendrical.js CHANGED
@@ -1,22 +1,18 @@
1
  (function($) {
2
- var monthNames = ['January', 'February', 'March', 'April', 'May', 'June',
3
- 'July', 'August', 'September', 'October', 'November', 'December'];
4
-
5
- function getToday()
6
- {
7
  var date = new Date();
8
  return new Date(date.getFullYear(), date.getMonth(), date.getDate());
9
  }
10
 
11
- function areDatesEqual(date1, date2)
12
- {
13
  return String(date1) == String(date2);
14
  }
15
 
16
- function daysInMonth(year, month)
17
- {
18
  if (year instanceof Date) return daysInMonth(year.getFullYear(), year.getMonth());
19
- if (month == 1) {
20
  var leapYear = (year % 4 == 0) &&
21
  (!(year % 100 == 0) || (year % 400 == 0));
22
  return leapYear ? 29 : 28;
@@ -27,8 +23,7 @@
27
  }
28
  }
29
 
30
- function dayAfter(date)
31
- {
32
  var year = date.getFullYear();
33
  var month = date.getMonth();
34
  var day = date.getDate();
@@ -41,8 +36,7 @@
41
  new Date(year, month, day + 1);
42
  }
43
 
44
- function dayBefore(date)
45
- {
46
  var year = date.getFullYear();
47
  var month = date.getMonth();
48
  var day = date.getDate();
@@ -54,15 +48,13 @@
54
  new Date(year, month, day - 1);
55
  }
56
 
57
- function monthAfter(year, month)
58
- {
59
  return (month == 11) ?
60
  new Date(year + 1, 0, 1) :
61
  new Date(year, month + 1, 1);
62
  }
63
 
64
- function formatDate(date)
65
- {
66
  var d = date.getDate();
67
  var m = date.getMonth() + 1;
68
  var dlen = d.toString();
@@ -72,8 +64,7 @@
72
  return (date.getFullYear() + '-' + month + '-' + day );
73
  }
74
 
75
- function parseDate(date)
76
- {
77
  a = date.split(/[\.\-\/]/);
78
  var year = a.shift();
79
  var month = a.shift()-1;
@@ -81,25 +72,19 @@
81
  return new Date( year, month, day );
82
  }
83
 
84
- function formatTime(hour, minute)
85
- {
86
- var printHour = hour % 12;
87
- if (printHour == 0) printHour = 12;
88
- var printMinute = minute;
89
- if (minute < 10) printMinute = '0' + minute;
90
- var half = (hour < 12) ? 'am' : 'pm';
91
-
92
- return printHour + ':' + printMinute + half;
93
- }
94
-
95
- function parseTime(text)
96
- {
97
- var match = match = /(\d+)\s*[:\-\.,]\s*(\d+)\s*(am|pm)?/i.exec(text);
98
  if (match && match.length >= 3) {
99
  var hour = Number(match[1]);
100
- var minute = Number(match[2])
101
- if (hour == 12 && match[3]) hour -= 12;
102
- if (match[3] && match[3].toLowerCase() == 'pm') hour += 12;
103
  return {
104
  hour: hour,
105
  minute: minute
@@ -113,8 +98,7 @@
113
  * Generates calendar header, with month name, << and >> controls, and
114
  * initials for days of the week.
115
  */
116
- function renderCalendarHeader(element, year, month, options)
117
- {
118
  //Prepare thead element
119
  var thead = $('<thead />');
120
  var titleRow = $('<tr />').appendTo(thead);
@@ -123,7 +107,7 @@
123
  $('<th />').addClass('monthCell').append(
124
  $('<a href="javascript:;">&laquo;</a>')
125
  .addClass('prevMonth')
126
- .mousedown(function(e) {
127
  renderCalendarPage(element,
128
  month == 0 ? (year - 1) : year,
129
  month == 0 ? 11 : (month - 1), options
@@ -142,7 +126,7 @@
142
  $('<th />').addClass('monthCell').append(
143
  $('<a href="javascript:;">&raquo;</a>')
144
  .addClass('nextMonth')
145
- .mousedown(function() {
146
  renderCalendarPage(element,
147
  month == 11 ? (year + 1) : year,
148
  month == 11 ? 0 : (month + 1), options
@@ -159,8 +143,7 @@
159
  return thead;
160
  }
161
 
162
- function renderCalendarPage(element, year, month, options)
163
- {
164
  options = options || {};
165
 
166
  var today = getToday();
@@ -231,15 +214,14 @@
231
  return result;
232
  }
233
 
234
- function renderTimeSelect(element, options)
235
- {
236
  var selection = options.selection && parseTime(options.selection);
237
  if (selection) {
238
  selection.minute = Math.floor(selection.minute / 15.0) * 15;
239
  }
240
  var startTime = options.startTime &&
241
  (options.startTime.hour * 60 + options.startTime.minute);
242
-
243
  var scrollTo; //Element to scroll the dropdown box to when shown
244
  var ul = $('<ul />');
245
  var first = $('<li />').append(
@@ -254,14 +236,15 @@
254
  ).appendTo(ul);
255
  for (var hour = 0; hour < 24; hour++) {
256
  for (var minute = 0; minute < 60; minute += 15) {
257
- //if (startTime && startTime > (hour * 60 + minute)) continue;
258
 
259
  (function() {
260
- var timeText = formatTime(hour, minute);
261
  var fullText = timeText;
262
- if (startTime != null) {
263
  var duration = roundNumber( ( (hour * 60 + minute) - startTime ), 2 );
264
- if (duration < 60 && duration >= 0) {
 
 
265
  fullText += ' (' + duration + ' mins)';
266
  } else if (duration == 60) {
267
  fullText += ' (1 hr)';
@@ -324,8 +307,7 @@
324
  element.empty().append(ul);
325
  }
326
 
327
- $.fn.calendricalDate = function( options )
328
- {
329
  options = options || {};
330
  options.padding = options.padding || 4;
331
 
@@ -334,7 +316,8 @@
334
  var div;
335
  var within = false;
336
 
337
- element.bind('focus click', function() {
 
338
  if (div) return;
339
  var offset = element.position();
340
  var padding = element.css('padding-left');
@@ -350,8 +333,7 @@
350
  left: offset.left,
351
  top: offset.top + element.height
352
  });
353
- element.after(div);
354
-
355
  var selected = parseDate(element.val());
356
  if (!selected.getFullYear()) selected = getToday();
357
 
@@ -394,8 +376,7 @@
394
  });
395
  };
396
 
397
- $.fn.calendricalDateRange = function(options)
398
- {
399
  if (this.length >= 2) {
400
  $(this[0]).calendricalDate($.extend({
401
  endDate: $(this[1])
@@ -405,8 +386,7 @@
405
  return this;
406
  };
407
 
408
- $.fn.calendricalTime = function(options)
409
- {
410
  options = options || {};
411
  options.padding = options.padding || 4;
412
 
@@ -416,7 +396,8 @@
416
  var within = false;
417
 
418
  element.attr( "autocomplete", "off" );
419
- element.bind('focus click', function() {
 
420
  if (div) return;
421
 
422
  var useStartTime = options.startTime;
@@ -475,8 +456,7 @@
475
  });
476
  },
477
 
478
- $.fn.calendricalTimeRange = function(options)
479
- {
480
  if (this.length >= 2) {
481
  $(this[0]).calendricalTime(options);
482
  $(this[1]).calendricalTime($.extend({
@@ -486,8 +466,7 @@
486
  return this;
487
  };
488
 
489
- $.fn.calendricalDateTimeRange = function(options)
490
- {
491
  if (this.length >= 4) {
492
  $(this[0]).calendricalDate($.extend({
493
  endDate: $(this[2])
1
  (function($) {
2
+ var monthNames = mc_months;
3
+
4
+ function getToday() {
 
 
5
  var date = new Date();
6
  return new Date(date.getFullYear(), date.getMonth(), date.getDate());
7
  }
8
 
9
+ function areDatesEqual(date1, date2) {
 
10
  return String(date1) == String(date2);
11
  }
12
 
13
+ function daysInMonth(year, month) {
 
14
  if (year instanceof Date) return daysInMonth(year.getFullYear(), year.getMonth());
15
+ if ( month == 1 ) {
16
  var leapYear = (year % 4 == 0) &&
17
  (!(year % 100 == 0) || (year % 400 == 0));
18
  return leapYear ? 29 : 28;
23
  }
24
  }
25
 
26
+ function dayAfter(date) {
 
27
  var year = date.getFullYear();
28
  var month = date.getMonth();
29
  var day = date.getDate();
36
  new Date(year, month, day + 1);
37
  }
38
 
39
+ function dayBefore(date) {
 
40
  var year = date.getFullYear();
41
  var month = date.getMonth();
42
  var day = date.getDate();
48
  new Date(year, month, day - 1);
49
  }
50
 
51
+ function monthAfter(year, month) {
 
52
  return (month == 11) ?
53
  new Date(year + 1, 0, 1) :
54
  new Date(year, month + 1, 1);
55
  }
56
 
57
+ function formatDate(date) {
 
58
  var d = date.getDate();
59
  var m = date.getMonth() + 1;
60
  var dlen = d.toString();
64
  return (date.getFullYear() + '-' + month + '-' + day );
65
  }
66
 
67
+ function parseDate(date) {
 
68
  a = date.split(/[\.\-\/]/);
69
  var year = a.shift();
70
  var month = a.shift()-1;
72
  return new Date( year, month, day );
73
  }
74
 
75
+ function formatTime( hour, minute ) {
76
+ var d = new Date( 2013, 9, 1, hour, minute );
77
+ var t=d.toLocaleTimeString();
78
+ return t;
79
+ }
80
+
81
+ function parseTime(text) {
82
+ var match = match = /(\d+)\s*[:\-\.,]\s*(\d+)\s*[:\-\.,]\s*(\d+)\s*(am|pm)?/i.exec(text);
 
 
 
 
 
 
83
  if (match && match.length >= 3) {
84
  var hour = Number(match[1]);
85
+ var minute = Number(match[2]);
86
+ if (hour == 12 && match[4]) { hour -= 12; }
87
+ if (match[4] && match[4].toLowerCase() == 'pm') { hour += 12; }
88
  return {
89
  hour: hour,
90
  minute: minute
98
  * Generates calendar header, with month name, << and >> controls, and
99
  * initials for days of the week.
100
  */
101
+ function renderCalendarHeader(element, year, month, options) {
 
102
  //Prepare thead element
103
  var thead = $('<thead />');
104
  var titleRow = $('<tr />').appendTo(thead);
107
  $('<th />').addClass('monthCell').append(
108
  $('<a href="javascript:;">&laquo;</a>')
109
  .addClass('prevMonth')
110
+ .on('click',function(e) {
111
  renderCalendarPage(element,
112
  month == 0 ? (year - 1) : year,
113
  month == 0 ? 11 : (month - 1), options
126
  $('<th />').addClass('monthCell').append(
127
  $('<a href="javascript:;">&raquo;</a>')
128
  .addClass('nextMonth')
129
+ .on('click',function() {
130
  renderCalendarPage(element,
131
  month == 11 ? (year + 1) : year,
132
  month == 11 ? 0 : (month + 1), options
143
  return thead;
144
  }
145
 
146
+ function renderCalendarPage(element, year, month, options) {
 
147
  options = options || {};
148
 
149
  var today = getToday();
214
  return result;
215
  }
216
 
217
+ function renderTimeSelect(element, options) {
 
218
  var selection = options.selection && parseTime(options.selection);
219
  if (selection) {
220
  selection.minute = Math.floor(selection.minute / 15.0) * 15;
221
  }
222
  var startTime = options.startTime &&
223
  (options.startTime.hour * 60 + options.startTime.minute);
224
+
225
  var scrollTo; //Element to scroll the dropdown box to when shown
226
  var ul = $('<ul />');
227
  var first = $('<li />').append(
236
  ).appendTo(ul);
237
  for (var hour = 0; hour < 24; hour++) {
238
  for (var minute = 0; minute < 60; minute += 15) {
 
239
 
240
  (function() {
241
+ var timeText = formatTime(hour, minute);
242
  var fullText = timeText;
243
+ if ( startTime != null ) {
244
  var duration = roundNumber( ( (hour * 60 + minute) - startTime ), 2 );
245
+ if ( duration < 0 ) {
246
+ fullText = '<s>' + fullText + '</s>';
247
+ } else if (duration < 60 && duration >= 0) {
248
  fullText += ' (' + duration + ' mins)';
249
  } else if (duration == 60) {
250
  fullText += ' (1 hr)';
307
  element.empty().append(ul);
308
  }
309
 
310
+ $.fn.calendricalDate = function( options ) {
 
311
  options = options || {};
312
  options.padding = options.padding || 4;
313
 
316
  var div;
317
  var within = false;
318
 
319
+ element.bind('click', function() {
320
+ //element.bind('focus click', function() {
321
  if (div) return;
322
  var offset = element.position();
323
  var padding = element.css('padding-left');
333
  left: offset.left,
334
  top: offset.top + element.height
335
  });
336
+ element.after(div);
 
337
  var selected = parseDate(element.val());
338
  if (!selected.getFullYear()) selected = getToday();
339
 
376
  });
377
  };
378
 
379
+ $.fn.calendricalDateRange = function(options) {
 
380
  if (this.length >= 2) {
381
  $(this[0]).calendricalDate($.extend({
382
  endDate: $(this[1])
386
  return this;
387
  };
388
 
389
+ $.fn.calendricalTime = function(options) {
 
390
  options = options || {};
391
  options.padding = options.padding || 4;
392
 
396
  var within = false;
397
 
398
  element.attr( "autocomplete", "off" );
399
+ element.bind('click', function() {
400
+ //element.bind('focus click', function() { // only allow keyboard focus once it works properly.
401
  if (div) return;
402
 
403
  var useStartTime = options.startTime;
456
  });
457
  },
458
 
459
+ $.fn.calendricalTimeRange = function(options) {
 
460
  if (this.length >= 2) {
461
  $(this[0]).calendricalTime(options);
462
  $(this[1]).calendricalTime($.extend({
466
  return this;
467
  };
468
 
469
+ $.fn.calendricalDateTimeRange = function(options) {
 
470
  if (this.length >= 4) {
471
  $(this[0]).calendricalDate($.extend({
472
  endDate: $(this[2])
js/jquery.easydrag.js DELETED
@@ -1,199 +0,0 @@
1
- /**
2
- * EasyDrag 1.5 - Drag & Drop jQuery Plug-in
3
- *
4
- * Thanks for the community that is helping the improvement
5
- * of this little piece of code.
6
- *
7
- * For usage instructions please visit http://fromvega.com/scripts
8
- */
9
-
10
- (function($){
11
-
12
- // to track if the mouse button is pressed
13
- var isMouseDown = false;
14
-
15
- // to track the current element being dragged
16
- var currentElement = null;
17
-
18
- // callback holders
19
- var dropCallbacks = {};
20
- var dragCallbacks = {};
21
-
22
- // bubbling status
23
- var bubblings = {};
24
-
25
- // global position records
26
- var lastMouseX;
27
- var lastMouseY;
28
- var lastElemTop;
29
- var lastElemLeft;
30
-
31
- // track element dragStatus
32
- var dragStatus = {};
33
-
34
- // if user is holding any handle or not
35
- var holdingHandler = false;
36
-
37
- // returns the mouse (cursor) current position
38
- $.getMousePosition = function(e){
39
- var posx = 0;
40
- var posy = 0;
41
-
42
- if (!e) var e = window.event;
43
-
44
- if (e.pageX || e.pageY) {
45
- posx = e.pageX;
46
- posy = e.pageY;
47
- }
48
- else if (e.clientX || e.clientY) {
49
- posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
50
- posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
51
- }
52
-
53
- return { 'x': posx, 'y': posy };
54
- };
55
-
56
- // updates the position of the current element being dragged
57
- $.updatePosition = function(e) {
58
- var pos = $.getMousePosition(e);
59
-
60
- var spanX = (pos.x - lastMouseX);
61
- var spanY = (pos.y - lastMouseY);
62
-
63
- $(currentElement).css("top", (lastElemTop + spanY));
64
- $(currentElement).css("left", (lastElemLeft + spanX));
65
- };
66
-
67
- // when the mouse is moved while the mouse button is pressed
68
- $(document).mousemove(function(e){
69
- if(isMouseDown && dragStatus[currentElement.id] != 'false'){
70
- // update the position and call the registered function
71
- $.updatePosition(e);
72
- if(dragCallbacks[currentElement.id] != undefined){
73
- dragCallbacks[currentElement.id](e, currentElement);
74
- }
75
-
76
- return false;
77
- }
78
- });
79
-
80
- // when the mouse button is released
81
- $(document).mouseup(function(e){
82
- if(isMouseDown && dragStatus[currentElement.id] != 'false'){
83
- isMouseDown = false;
84
- if(dropCallbacks[currentElement.id] != undefined){
85
- dropCallbacks[currentElement.id](e, currentElement);
86
- }
87
-
88
- return false;
89
- }
90
- });
91
-
92
- // register the function to be called while an element is being dragged
93
- $.fn.ondrag = function(callback){
94
- return this.each(function(){
95
- dragCallbacks[this.id] = callback;
96
- });
97
- };
98
-
99
- // register the function to be called when an element is dropped
100
- $.fn.ondrop = function(callback){
101
- return this.each(function(){
102
- dropCallbacks[this.id] = callback;
103
- });
104
- };
105
-
106
- // disable the dragging feature for the element
107
- $.fn.dragOff = function(){
108
- return this.each(function(){
109
- dragStatus[this.id] = 'off';
110
- });
111
- };
112
-
113
- // enable the dragging feature for the element
114
- $.fn.dragOn = function(){
115
- return this.each(function(){
116
- dragStatus[this.id] = 'on';
117
- });
118
- };
119
-
120
- // set a child element as a handler
121
- $.fn.setHandler = function(handlerId){
122
- return this.each(function(){
123
- var draggable = this;
124
-
125
- // enable event bubbling so the user can reach the handle
126
- bubblings[this.id] = true;
127
-
128
- // reset cursor style
129
- $(draggable).css("cursor", "");
130
-
131
- // set current drag status
132
- dragStatus[draggable.id] = "handler";
133
-
134
- // change handle cursor type
135
- $("#"+handlerId).css("cursor", "move");
136
-
137
- // bind event handler
138
- $("#"+handlerId).mousedown(function(e){
139
- holdingHandler = true;
140
- $(draggable).trigger('mousedown', e);
141
- });
142
-
143
- // bind event handler
144
- $("#"+handlerId).mouseup(function(e){
145
- holdingHandler = false;
146
- });
147
- });
148
- }
149
-
150
- // set an element as draggable - allowBubbling enables/disables event bubbling
151
- $.fn.easydrag = function(allowBubbling){
152
-
153
- return this.each(function(){
154
-
155
- // if no id is defined assign a unique one
156
- if(undefined == this.id || !this.id.length) this.id = "easydrag"+(new Date().getTime());
157
-
158
- // save event bubbling status
159
- bubblings[this.id] = allowBubbling ? true : false;
160
-
161
- // set dragStatus
162
- dragStatus[this.id] = "on";
163
-
164
- // change the mouse pointer
165
- $(this).css("cursor", "move");
166
-
167
- // when an element receives a mouse press
168
- $(this).mousedown(function(e){
169
-
170
- // just when "on" or "handler"
171
- if((dragStatus[this.id] == "off") || (dragStatus[this.id] == "handler" && !holdingHandler))
172
- return bubblings[this.id];
173
-
174
- // set it as absolute positioned
175
- $(this).css("position", "absolute");
176
-
177
- // set z-index
178
- $(this).css("z-index", parseInt( new Date().getTime()/1000 ));
179
-
180
- // update track variables
181
- isMouseDown = true;
182
- currentElement = this;
183
-
184
- // retrieve positioning properties
185
- var pos = $.getMousePosition(e);
186
- lastMouseX = pos.x;
187
- lastMouseY = pos.y;
188
-
189
- lastElemTop = this.offsetTop;
190
- lastElemLeft = this.offsetLeft;
191
-
192
- $.updatePosition(e);
193
-
194
- return bubblings[this.id];
195
- });
196
- });
197
- };
198
-
199
- })(jQuery);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/my-calendar-de_DE.mo CHANGED
Binary file
lang/my-calendar-de_DE.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: 2013-04-09 15:11:58+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,21 +10,367 @@ msgstr ""
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 "Termine bearbeiten"
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 "Kurzwahlen"
28
 
29
  #: my-calendar-help.php:14
30
  msgid "Icons"
@@ -32,7 +378,7 @@ msgstr "Symbole"
32
 
33
  #: my-calendar-help.php:15
34
  msgid "Styles"
35
- msgstr "Ansichten"
36
 
37
  #: my-calendar-help.php:16
38
  msgid "Templating"
@@ -40,128 +386,124 @@ msgstr "Vorlagen"
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 "Die Kurzwahlen unterstützen folgende Attribute:"
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 "Gastgeber oder mit Kommas getrennte Liste von Gastgebern (WordPress Benutzernamen oder IDs) um davon Termine anzuzeigen"
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 "Datum/Uhrzeit"
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 "Jetzt:"
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."
@@ -169,202 +511,202 @@ msgstr "Achtung: HTML Vorlagen sind sehr fehlertolerant, RSS Vorlagen jedoch nic
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
 
@@ -372,81 +714,65 @@ msgstr ""
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."
@@ -456,123 +782,99 @@ msgstr "Sie haben keinen Zugang zu dieser Funktion."
456
  msgid "My Calendar Shortcode Generator"
457
  msgstr "My Calendar Shortcodegenerator."
458
 
459
- #: button/generator.php:47
460
  msgid "Shortcode Attributes"
461
  msgstr "Shortcode-Attribute"
462
 
463
- #: button/generator.php:52
464
  msgid "Location filter type:"
465
  msgstr "Art des Ortfilters:"
466
 
467
- #: button/generator.php:54
468
  msgid "All locations"
469
  msgstr "Alle Orte"
470
 
471
- #: button/generator.php:55 my-calendar-settings.php:393
472
- #: my-calendar-settings.php:904
473
  msgid "Location Name"
474
  msgstr "Standort-Name"
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 "Stadt"
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 "Bundesland"
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 "Postleitzahl"
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 "Land"
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 "Region"
505
 
506
- #: button/generator.php:64
507
  msgid "Location filter value:"
508
  msgstr "Ortfilter-Wert:"
509
 
510
- #: button/generator.php:68
511
  msgid "Format"
512
  msgstr "Format"
513
 
514
- #: button/generator.php:70
515
  msgid "Grid"
516
  msgstr "Raster"
517
 
518
- #: button/generator.php:71
519
  msgid "List"
520
  msgstr "Liste"
521
 
522
- #: button/generator.php:75
523
- msgid "Show Category Key"
524
- msgstr "Kategorie-Schlüssel zeigen"
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 "Ja"
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 "Nein"
537
-
538
- #: button/generator.php:82
539
- msgid "Show Previous/Next Links"
540
- msgstr "Zurück/Weiter Links zeigen"
541
-
542
- #: button/generator.php:89 my-calendar-widgets.php:639
543
- msgid "Show Jumpbox"
544
- msgstr "Jumpbox zeigen"
545
-
546
- #: button/generator.php:96
547
- msgid "Show Format Toggle"
548
- msgstr "Format-Umschaltfläche zeigen"
549
-
550
- #: button/generator.php:103
551
  msgid "Time Segment"
552
  msgstr "Zeitabschnitt"
553
 
554
- #: button/generator.php:105 my-calendar-output.php:383
555
- #: my-calendar-widgets.php:652
 
556
  msgid "Month"
557
  msgstr "Monat"
558
 
559
- #: button/generator.php:106 my-calendar-widgets.php:653
 
 
560
  msgid "Week"
561
  msgstr "Woche"
562
 
563
- #: button/generator.php:107
 
564
  msgid "Day"
565
  msgstr "Tag"
566
 
567
- #: button/generator.php:112
568
  msgid "Generate Shortcode"
569
  msgstr "Shortcode machen"
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 "<strong>Achtung:</strong>Wenn Sie einem Ortfilter Wert geben, muss er zu den gespeicherten Events Informationen genau passen. (z.B. \"Saint Paul\" passt nicht zu \"saint paul\" oder \"St. Paul\")"
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: diese Generator wird keine Shortcode auf Ihre Seite stellen."
578
 
@@ -771,12 +1073,12 @@ msgstr "Neue Kategorie hinzufügen"
771
  msgid "Category List"
772
  msgstr "Kategorieliste"
773
 
774
- #: my-calendar-categories.php:266 my-calendar.php:327
775
  msgid "Manage Categories"
776
  msgstr "Kategorien verwalten"
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
 
@@ -785,22 +1087,20 @@ msgid "Category Color"
785
  msgstr "Kategorie-Farbe"
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 "Editieren"
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 "Löschen"
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/v"
806
 
@@ -812,660 +1112,638 @@ msgstr "Sind sie sicher, dass sie diese Kategorie löschen wollen?"
812
  msgid "There are no categories in the database - something has gone wrong!"
813
  msgstr "Es sind keine Kategorie in der Datenbank - etwas lief schief!"
814
 
815
- #: my-calendar-core.php:58 my-calendar.php:331
816
  msgid "Settings"
817
  msgstr "Einstellungen"
818
 
819
- #: my-calendar-core.php:59 my-calendar.php:335
820
  msgid "Help"
821
  msgstr "Hilfe"
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>Achtung:</strong> Bitte, bevor upgraden, die <a class=\"thickbox\" href=\"%1$s\">changelog</a> nachprüfen ."
826
 
827
- #: my-calendar-core.php:1053 my-calendar-event-manager.php:233
828
  msgid "Add Event"
829
  msgstr "Event hinzufügen"
830
 
831
- #: my-calendar-core.php:1299
832
  msgid "Is this your calendar page?"
833
  msgstr "Ist das Ihre Kalender Seite?"
834
 
835
- #: my-calendar-core.php:1302
836
  msgid "I tried to guess, but don't have a suggestion for you."
837
  msgstr "Ich habe versucht zu erraten, aber habe keinen Vorschlag für Sie."
838
 
839
- #: my-calendar-core.php:1396
840
  msgid "Please read the FAQ and other Help documents before making a support request."
841
  msgstr "Bitte lies die FAQ und andere Hilfeseiten, bevor du eine Support-Anfrage machst."
842
 
843
- #: my-calendar-core.php:1398
844
  msgid "Please describe your problem in detail. I'm not psychic."
845
  msgstr "Bitte beschreib dein Problem in allen Details. Ich kann keine Gedanken lesen."
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 "Danke, dass du die weitere Entwicklung des Plugins unterstützt! Ich komme so bald wie möglich auf dich zurück."
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 "Von:"
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 "Ich habe die <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">FAQ für dieses Plugin</a> gelesen."
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 "Ich habe <a href=\"http://www.joedolson.com/donate.php\">gespendet, um das Plugin zu unterstützen</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 "Ich habe den<a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">User's Guide gekauft</a>, konnte aber keine Antwort auf meine Frage finden."
874
 
875
- #: my-calendar-core.php:1432
876
  msgid "Send Support Request"
877
  msgstr "Support-Anfrage senden"
878
 
879
- #: my-calendar-core.php:1435
880
  msgid "The following additional information will be sent with your support request:"
881
  msgstr "Die folgenden zusätzlichen Daten werden mit deiner Support-Anfrage gesendet:"
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 Calender hat erkannt, dass sie das Kalenderplugin von Kieran O'Shea installiert haben - wollen sie diese Events und Kategorien importieren?"
886
 
887
- #: my-calendar-event-manager.php:20 my-calendar-settings.php:328
888
  msgid "Import from Calendar"
889
  msgstr "Importieren von Calender"
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 "Trotzdem kann es sein, dass der Import fehlschlägt, dies wird aber keine Auswirkungen auf die existierende Kalender-Datenbank haben. Wenn sie ein Problem gefunden haben, schreiben sie eine eMail an <a href=\"http://www.joedolson.com/contact.php\">please contact me</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 Events erfolgreich gelöscht, von %2$d ausgewählten"
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 "Fehler"
910
 
911
- #: my-calendar-event-manager.php:76
912
  msgid "Your events have not been deleted. Please investigate."
913
  msgstr "Ihre Events wurden nicht gelöscht. Bitte untersuchen."
914
 
915
- #: my-calendar-event-manager.php:126
916
  msgid "Delete Event"
917
  msgstr "Event löschen"
918
 
919
- #: my-calendar-event-manager.php:126
920
  msgid "Are you sure you want to delete this event?"
921
  msgstr "Sind sie sicher, dass sie das Event löschen wollen?"
922
 
923
- #: my-calendar-event-manager.php:138
924
  msgid "You do not have permission to delete that event."
925
  msgstr "Sie haben keine Rechte das Event zu löschen!"
926
 
927
- #: my-calendar-event-manager.php:152
928
  msgid "You do not have permission to approve that event."
929
  msgstr "Sie haben keine Berechtigung, diesen Event zu genehmigen."
930
 
931
- #: my-calendar-event-manager.php:167
932
  msgid "You do not have permission to reject that event."
933
  msgstr "Sie haben keine Berechtigung, diesen Event abzulehnen."
934
 
935
- #: my-calendar-event-manager.php:204
936
  msgid "Currently editing your local calendar"
937
  msgstr "Zurzeit wird Ihre Lokalkalender bearbeitet."
938
 
939
- #: my-calendar-event-manager.php:206
940
  msgid "Currently editing your central calendar"
941
  msgstr "Zurzeit wird Ihre Zentralkalender bearbeitet."
942
 
943
- #: my-calendar-event-manager.php:214 my-calendar-group-manager.php:798
944
  msgid "Edit Event"
945
  msgstr "Event editieren"
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 "Sie müssen eine event-id angeben um ein Event zu editieren"
950
 
951
- #: my-calendar-event-manager.php:223
952
  msgid "Copy Event"
953
  msgstr "Event kopieren"
954
 
955
- #: my-calendar-event-manager.php:264
956
  msgid "I'm sorry! I couldn't add that event to the database."
957
  msgstr "Es tut mir leid! Ich konnte den Event nicht der Datenbank hinzufügen."
958
 
959
- #: my-calendar-event-manager.php:276
960
- msgid "Event added. It will now show in your calendar."
961
- msgstr "Event hinzugefügt und im Kalender erschienen."
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 "<a href=\"%s\">Deinen Kalender ansehen</a>."
967
 
968
- #: my-calendar-event-manager.php:335 my-calendar-group-manager.php:148
969
  msgid "Your event was not updated."
970
  msgstr "Ihr Event wurde nicht aktualisiert"
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 "In diesem Update gab es keine Änderungen"
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 "Event erfolgreich aktualisert"
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 "Sie haben keine ausreichenden Rechte um das Event zu ändern."
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 "Sie können kein Event löschen, wenn sie nicht die event-id eingegeben haben"
990
 
991
- #: my-calendar-event-manager.php:369
992
  msgid "Event deleted successfully"
993
  msgstr "Event erfolgreich gelöscht"
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 "Trotz des Versuchts das Event zu löschen befindet es sich noch in der Datenbank, bitte untersuchen sie das Problem"
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 "Entschuldigung, das ist ein falscher Event-Schlüssel."
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 "Entschuldigung, wir konnten mit kein Event mit dieser ID finden."
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 "Dieses Ereignis muss genehmigt werden, damit es im Kalender erscheint."
1010
 
1011
- #: my-calendar-event-manager.php:467
1012
  msgid "Add/Edit Event"
1013
  msgstr "Event hinzufügen / bearbeiten"
1014
 
1015
- #: my-calendar-event-manager.php:470 my-calendar-event-manager.php:889
1016
  msgid "Save Event"
1017
  msgstr "Event speichern"
1018
 
1019
- #: my-calendar-event-manager.php:484 my-calendar-group-manager.php:298
1020
  msgid "Enter your Event Information"
1021
  msgstr "Geben sie ihre Eventinformationen ein"
1022
 
1023
- #: my-calendar-event-manager.php:486 my-calendar-group-manager.php:300
1024
  msgid "Event Title"
1025
  msgstr "Event Titel"
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 "(erforderlich)"
1031
 
1032
- #: my-calendar-event-manager.php:490
1033
  msgid "Publish"
1034
  msgstr "Veröffentlichen"
1035
 
1036
- #: my-calendar-event-manager.php:490
1037
  msgid "You must approve this event to promote it to the calendar."
1038
  msgstr "Sie müssen dem Event zustimmen, um ihn in den Kalender zu befördern."
1039
 
1040
- #: my-calendar-event-manager.php:492
1041
  msgid "An administrator must approve your new event."
1042
  msgstr "Ein Administrator muss Ihren neuen Event genehmigen."
1043
 
1044
- #: my-calendar-event-manager.php:505
1045
  msgid "This event is not spam"
1046
  msgstr "Dieses Event ist kein 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 "Event Beschreibung (<abbr title=\"hypertext markup language\">HTML</abbr> erlaubt)"
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 "Bild für dieses Event:"
1056
 
1057
- #: my-calendar-event-manager.php:536 my-calendar-group-manager.php:327
1058
  msgid "Add an image:"
1059
  msgstr "Bild hinzufügen:"
1060
 
1061
- #: my-calendar-event-manager.php:538
1062
  msgid "(URL to Event image)"
1063
  msgstr "(URL zum Event-Bild)"
1064
 
1065
- #: my-calendar-event-manager.php:540 my-calendar-group-manager.php:327
1066
  msgid "Upload Image"
1067
  msgstr "Bild hochladen"
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 "Bild-Adresse angeben oder Bild hochladen."
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 "Event Kurzbeschreibung (<abbr title=\"hypertext markup language\">HTML</abbr> erlaubt)"
1076
 
1077
- #: my-calendar-event-manager.php:557 my-calendar-group-manager.php:343
1078
  msgid "Event Host"
1079
  msgstr "Event-Gastgeber"
1080
 
1081
- #: my-calendar-event-manager.php:576 my-calendar-group-manager.php:362
1082
  msgid "Event Category"
1083
  msgstr "Event Kategorie"
1084
 
1085
- #: my-calendar-event-manager.php:588 my-calendar-group-manager.php:374
1086
  msgid "Event Link (Optional)"
1087
  msgstr "Event Link (optional)"
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 "Dieser Link wird ungültig, wenn das Event vorrüber ist."
1092
 
1093
- #: my-calendar-event-manager.php:598 my-calendar-event-manager.php:606
1094
  msgid "Event Date and Time"
1095
  msgstr "Event-Datum und -Zeit"
1096
 
1097
- #: my-calendar-event-manager.php:624
1098
  msgid "Start Date (YYYY-MM-DD)"
1099
  msgstr "Start Datum (JJJJ-MM-TT)"
1100
 
1101
- #: my-calendar-event-manager.php:624
1102
  msgid "Time (hh:mm am/pm)"
1103
  msgstr "Zeit (SS:MM)"
1104
 
1105
- #: my-calendar-event-manager.php:633
1106
  msgid "End Date (YYYY-MM-DD)"
1107
  msgstr "Ende-Datum (YYYY-MM-DD)"
1108
 
1109
- #: my-calendar-event-manager.php:633
1110
  msgid "End Time (hh:mm am/pm)"
1111
  msgstr "Endzeit (SS:MM)"
1112
 
1113
- #: my-calendar-event-manager.php:644
1114
  msgid "This is a multi-day event."
1115
  msgstr "Dies ist ein Event, das mehrere Tage dauert."
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 "Gib die Anfangs- und Endzeiten für jedes Auftreten des Events ein."
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 "Wenn dies ein Event ist, das mehrere Tage dauert, wird es ein einziges Event mit mehreren Zeiten erstellen, ansonsten ein einzelnes für jedes Auftreten."
1124
 
1125
- #: my-calendar-event-manager.php:648
1126
  msgid "Add another occurrence"
1127
  msgstr "Weiteres Auftreten hinzufügen"
1128
 
1129
- #: my-calendar-event-manager.php:649
1130
  msgid "Remove last occurrence"
1131
  msgstr "Letztes Auftreten löschen"
1132
 
1133
- #: my-calendar-event-manager.php:671
1134
  msgid "Current time difference from GMT is "
1135
  msgstr "Aktuelle Zeitdifferenz vom GMT ist "
1136
 
1137
- #: my-calendar-event-manager.php:671
1138
  msgid " hour(s)"
1139
  msgstr "Stunde(n)"
1140
 
1141
- #: my-calendar-event-manager.php:681 my-calendar-event-manager.php:688
1142
  msgid "Recurring Events"
1143
  msgstr "Wiederkehrende Events"
1144
 
1145
- #: my-calendar-event-manager.php:691
1146
- msgid "Repeats for"
1147
- msgstr "Wiederholen für"
1148
-
1149
- #: my-calendar-event-manager.php:692
1150
  msgid "Units"
1151
  msgstr "Einheiten"
1152
 
1153
- #: my-calendar-core.php:1456 my-calendar-templates.php:151
1154
  msgid "Does not recur"
1155
  msgstr "Erscheint nicht"
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 "täglich"
1161
 
1162
- #: my-calendar-core.php:1458 my-calendar-templates.php:153
1163
  msgid "Daily, weekdays only"
1164
  msgstr "Täglich, nur Wochentage"
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 "wöchentlich"
1170
 
1171
- #: my-calendar-core.php:1460 my-calendar-templates.php:155
1172
  msgid "Bi-weekly"
1173
  msgstr "aller zwei Wochen"
1174
 
1175
- #: my-calendar-core.php:1461
1176
- msgid "Date of Month (e.g., the 24th of each month)"
1177
- msgstr "Datum des Monats (z.B. der 24. eines jeden Monats)"
1178
-
1179
- #: my-calendar-core.php:1462
1180
- msgid "Day of Month (e.g., the 3rd Monday of each month)"
1181
- msgstr "Tag des Monats (z.B. der 3. Montag des Monats)"
1182
-
1183
- #: my-calendar-core.php:1463 my-calendar-templates.php:158
1184
  msgid "Annually"
1185
  msgstr "jährlich"
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 "Deine Eingabe ist die Anzahl von Events nach dem ersten Auftreten: eine Eingabe von <em>2</em> bedeutet, dass es drei Mal stattfindet."
1190
 
1191
- #: my-calendar-event-manager.php:719
1192
  msgid "Event Registration Settings"
1193
  msgstr "Event-Registrierungseinstellungen"
1194
 
1195
- #: my-calendar-event-manager.php:722 my-calendar-group-manager.php:388
1196
  msgid "Event Registration Status"
1197
  msgstr "Registierungsstatus des Events"
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 bewältigt keine Event-Registrierungen. Verwenden Sie diese nur zur Information."
1202
 
1203
- #: my-calendar-event-manager.php:725 my-calendar-group-manager.php:391
1204
  msgid "Open"
1205
  msgstr "offen"
1206
 
1207
- #: my-calendar-event-manager.php:726 my-calendar-group-manager.php:392
1208
  msgid "Closed"
1209
  msgstr "geschlossen"
1210
 
1211
- #: my-calendar-event-manager.php:727 my-calendar-group-manager.php:393
1212
  msgid "Does not apply"
1213
  msgstr "wird nicht angenommen"
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 "Wenn dieser Event auftritt, kann er nur für eine komplette Serie registriert werden."
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 "Veranstaltungsort"
1224
 
1225
- #: my-calendar-event-manager.php:757 my-calendar-group-manager.php:423
1226
  msgid "Choose a preset location:"
1227
  msgstr "Einen vordefinierten Ort auswählen"
1228
 
1229
- #: my-calendar-event-manager.php:766 my-calendar-group-manager.php:436
1230
  msgid "Add recurring locations for later use."
1231
  msgstr "Wiederkehrenden Ort für spätere benutzung hinzufügen"
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 "Alle Felder sind optional (können aber in einem Kartenfehler resultieren)."
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 "Name des Orts"
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 "Straßenname"
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 "Straßenname (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 "Telefon"
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 "Bundesland/Provinz"
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 "Zoomstufe"
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 "Nachbarschaft"
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 "Kleinstadt"
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 "Großstadt"
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 "Größeres Ballungsgebiet"
1287
 
1288
- #: my-calendar-event-manager.php:847 my-calendar-group-manager.php:481
1289
  msgid "Location URL"
1290
  msgstr "Ort-URL"
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 Koordinaten (optional)"
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 "Wenn Sie GPS-Koordinaten für Ihren Standort hinzufügen, werden diese an Stelle von anderen Adressinformationen für Ihren Karten-Link verwendet."
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 "Breite"
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 "Länge"
1310
 
1311
- #: my-calendar-event-manager.php:868
1312
  msgid "Special scheduling options"
1313
  msgstr "Spezielle Planungs-Optionen"
1314
 
1315
- #: my-calendar-event-manager.php:871
1316
  msgid "Special Options"
1317
  msgstr "Spezielle Optionen"
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 "Dieses Event abbrechen, wenn es an einem Tag mit einem Event der Ferien-Kategorie auftritt"
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 "Wenn sich dieses Event wiederholt und auf eine fünfte Woche in einem Monat fällt, der nur vier Wochen hat, verschiebe es um eine Woche nach hinten."
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 "Events verwalten"
1331
 
1332
- #: my-calendar-event-manager.php:959 my-calendar-templates.php:244
1333
  msgid "Published"
1334
  msgstr "Veröffentlicht"
1335
 
1336
- #: my-calendar-event-manager.php:960 my-calendar-templates.php:244
1337
  msgid "Reserved"
1338
  msgstr "Reserviert"
1339
 
1340
- #: my-calendar-event-manager.php:961 my-calendar-group-manager.php:712
1341
  msgid "All"
1342
  msgstr "Alle"
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 "Titel"
1349
 
1350
- #: my-calendar-event-manager.php:995 my-calendar-group-manager.php:734
1351
  msgid "Where"
1352
  msgstr "Wo"
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 "Beschreibung"
1358
 
1359
- #: my-calendar-event-manager.php:997 my-calendar-group-manager.php:736
1360
  msgid "Starts"
1361
  msgstr "Anfangsdatum"
1362
 
1363
- #: my-calendar-event-manager.php:998 my-calendar-group-manager.php:737
1364
  msgid "Recurs"
1365
  msgstr "Wiederholungen"
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 "Autor"
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 "Kategorie"
1377
 
1378
- #: my-calendar-event-manager.php:1001
1379
- msgid "Edit / Delete"
1380
- msgstr "editieren/löschen"
1381
-
1382
- #: my-calendar-event-manager.php:1030 my-calendar-group-manager.php:771
1383
  msgid "Never"
1384
  msgstr "niemals"
1385
 
1386
- #: my-calendar-event-manager.php:1032 my-calendar-group-manager.php:773
1387
  msgid "Weekdays"
1388
  msgstr "Wochentage"
1389
 
1390
- #: my-calendar-event-manager.php:1034 my-calendar-group-manager.php:775
1391
  msgid "Bi-Weekly"
1392
  msgstr "aller zwei Wochen"
1393
 
1394
- #: my-calendar-event-manager.php:1035 my-calendar-group-manager.php:776
1395
  msgid "Monthly (by date)"
1396
  msgstr "Monatlich (nach Datum)"
1397
 
1398
- #: my-calendar-event-manager.php:1036 my-calendar-group-manager.php:777
1399
  msgid "Monthly (by day)"
1400
  msgstr "Monatlich (nach Tag)"
1401
 
1402
- #: my-calendar-event-manager.php:1037 my-calendar-group-manager.php:778
1403
  msgid "Yearly"
1404
  msgstr "jährlich"
1405
 
1406
- #: my-calendar-group-manager.php:781
1407
  msgid "Forever"
1408
  msgstr "für immer"
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 Mal"
1414
 
1415
- #: my-calendar-event-manager.php:1057
1416
  msgid "Copy"
1417
  msgstr "kopieren"
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 "Gruppe bearbeiten"
1423
 
1424
- #: my-calendar-event-manager.php:1063 my-calendar-group-manager.php:804
1425
  msgid "Not editable."
1426
  msgstr "Kann nicht bearbeitet werden."
1427
 
1428
- #: my-calendar-event-manager.php:1069
1429
  msgid "Reject"
1430
  msgstr "Ablehnen"
1431
 
1432
- #: my-calendar-event-manager.php:1071
1433
  msgid "Approve"
1434
  msgstr "Genehmigen"
1435
 
1436
- #: my-calendar-event-manager.php:1076
1437
  msgid "Approved"
1438
  msgstr "Genehmigt"
1439
 
1440
- #: my-calendar-event-manager.php:1078
1441
  msgid "Rejected"
1442
  msgstr "Abgelehnt"
1443
 
1444
- #: my-calendar-event-manager.php:1080
1445
  msgid "Awaiting Approval"
1446
  msgstr "Wartet auf Genehmigung"
1447
 
1448
- #: my-calendar-event-manager.php:1091
1449
  msgid "Delete checked events"
1450
  msgstr "Ausgewählte Events löschen"
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 "Es sind keine Events in der Datenbank"
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 "Das Eventende muss entweder am oder nach dem Startdatum liegen"
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 "Die Datumsformatierung ist korrekt aber eine oder mehrere Daten sind ungültig. Überprüfen sie die Anzahl der Tage im Monat oder Fehler auf Grund eines Schaltjahres"
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 "Der Eventtitel muss zwischen 1 und 255 Zeichen haben"
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 "Der Wiederholungswert muss 0 sein, ausgenommen eine Art von Wiederholung ist ausgewählt."
1471
 
@@ -1481,8 +1759,8 @@ msgstr "Event nicht gruppiert."
1481
  msgid "Event grouped successfully"
1482
  msgstr "Event erfolgreich gruppiert"
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 "Event-Gruppe bearbeiten"
1488
 
@@ -1490,8 +1768,8 @@ msgstr "Event-Gruppe bearbeiten"
1490
  msgid "You must provide an event group id in order to edit it"
1491
  msgstr "Du musst eine Event-Gruppen-ID angeben, um sie zu bearbeiten"
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 "Event-Gruppen"
1497
 
@@ -1503,55 +1781,55 @@ msgstr "Gruppierte Events können simultan bearbeitet werden. Wenn du eine Grupp
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 "Die folgenden Felder werden niemals verändert, wenn du eine Gruppe bearbeitest: Registrierung verfügbar, Event-Publizierungs-Status, Spam-Markierung, Event-Wiederholungen und Start- und Endzeiten für dieses Event."
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 "<strong>ANMERKUNG:</strong> Die bearbeitbaren Felder für die Events in dieser Gruppe stimmen nicht überein."
1509
 
1510
- #: my-calendar-group-manager.php:220
1511
  msgid "The group editable fields for the events in this group match."
1512
  msgstr "Die bearbeitbaren Felder für die Events in dieser Gruppe stimmen überein. "
1513
 
1514
- #: my-calendar-group-manager.php:227
1515
  msgid "Apply these changes to:"
1516
  msgstr "Diese Änderungen anwenden auf:"
1517
 
1518
- #: my-calendar-group-manager.php:238
1519
  msgid "Check/Uncheck all"
1520
  msgstr "Alle / keine auswählen"
1521
 
1522
- #: my-calendar-group-manager.php:240
1523
  msgid "Remove checked events from this group"
1524
  msgstr "Ausgewählte Events aus dieser Gruppe löschen"
1525
 
1526
- #: my-calendar-group-manager.php:258
1527
  msgid "You must provide a group ID to edit groups"
1528
  msgstr "Du musst eine Gruppen-ID angeben, um Gruppen zu bearbeiten"
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 "Event-Registrierungsoptionen"
1537
 
1538
- #: my-calendar-group-manager.php:707
1539
  msgid "Create/Modify Groups"
1540
  msgstr "Gruppen erstellen / ändern"
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 "Ausgewählte Events zum gemeinsamen Bearbeiten gruppieren"
1549
 
1550
- #: my-calendar-group-manager.php:732
1551
  msgid "Group"
1552
  msgstr "Gruppe"
1553
 
1554
- #: my-calendar-group-manager.php:802
1555
  msgid "Ungrouped"
1556
  msgstr "Nicht gruppiert"
1557
 
@@ -1571,10 +1849,6 @@ msgstr "Diese Shortcodes können in Artikeln, Seiten oder in Textwidgets verwend
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 "Dieser Shortcodes zeigt den Kalender in Artikeln oder Seiten inklusive aller Kategorien und Kategorie-Schlüssel in einem Monat-für-Monat format an"
1577
-
1578
  #: my-calendar-help.php:60
1579
  msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
1580
  msgstr ""
@@ -1583,353 +1857,337 @@ msgstr ""
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 "Kategorie Icon"
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 Calender ist designt um mehrere Kalender zu verwalten. Die Basis dieser Kalender sind Kategorien. Sie können einfach eine Kalenderseite erstellen, die alle Kategorien einschließt oder mehre Seiten erstellen und verschiedene Kategorien in jeder anzeigen. Zum Beispiel könnte dies sinnvoll sein, wenn Sie einen Tourkalender für mehre Bands verwalten wollen oder Kalender für mehre Veranstaltungsorte usw."
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 "Das vorinstallierte Kategorie Icon ist möglicherweise nicht sinnvoll für ihre Anforderung oder ihre Homepagedesign. Ich nehme an, dass sie ihr eigenes Icon hochladen. Dazu müssen sie das Icon in den \"icon\"-Ordner im \"plugin\"-Verzeichnis hochladen oder sie ersetzten den order \"my-candar-costum\" um das Überschreiben bei Updates zu vermeiden."
1653
 
1654
- #: my-calendar-help.php:119
1655
  msgid "Your icons folder is:"
1656
  msgstr "Ihr Icon-Ordnder ist:"
1657
 
1658
- #: my-calendar-help.php:119
1659
  msgid "You can alternately place icons in:"
1660
  msgstr "Sie können Icons alternativ ablegen unter:"
1661
 
1662
- #: my-calendar-help.php:128
1663
  msgid "Custom Styles"
1664
  msgstr "Benutzerdefinierte Stile"
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 ist mit vier grundlegenden Stylesheets ausgestattet. My Calendar wird bei der Änderung dieser grundlegenden Stylesheets beim Upgrade beibehalten, aber wenn man ein völlig neues Stylesheet hinzufügen möchten, möchten Sie es vielleicht im benutzerdefinierten Stylesheets-Verzeichnis von My Calendar speichern."
1669
 
1670
- #: my-calendar-help.php:134
1671
  msgid "Your stylesheet directory is"
1672
  msgstr "Ihr Stylesheet-Verzeichnis ist"
1673
 
1674
- #: my-calendar-help.php:135
1675
  msgid "Your custom stylesheets directory is"
1676
  msgstr "Ihr benutzerdefiniertes Stylesheets-Verzeichnis ist"
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 "Widget-Einstellungen"
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 "Beispiel:"
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 "Zeigt den Titel des Events."
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 "Zeigt den Titel des Events als einen Link wenn eine URL hinterlegt wurde oder nur den Titel, wenn keine URL hinterlegt ist."
1709
 
1710
- #: my-calendar-help.php:166
1711
  msgid "Displays the start time for the event."
1712
  msgstr "Zeigt die Startzeit des Events."
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 "Zeigt das Startdatum des Events."
1725
 
1726
- #: my-calendar-help.php:181
1727
  msgid "Displays the date on which the event ends."
1728
  msgstr "Zeigt das Enddatum des Events."
1729
 
1730
- #: my-calendar-help.php:184
1731
  msgid "Displays the time at which the event ends."
1732
  msgstr "Zeigt die Endzeit des Events."
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 "Zeigt den Wordpress Autor des Events."
1753
 
1754
- #: my-calendar-help.php:205
1755
  msgid "Displays the name of the person assigned as host for the event."
1756
  msgstr "Zeigt den Namen der Person, die als Gastgeber für den Event vergeben wurde."
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 "Zeigt die Kurtversion der Eventbeschreibung"
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 "Zeigt die Beschreibung des Events."
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 "Zeigt die URL im Events."
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 "Zeigt die Text an, ob die Registration geöffnet oder geschlossen ist. "
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 "Zeigt den aktuellen Status der Veranstaltung: entweder \"Published\" or \"Reserved\" - direkt in E-Mail-Vorlagen verwendet."
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 "Zeigt den Namen des Veranstaltungsortes des Events."
1825
 
1826
- #: my-calendar-help.php:262
1827
  msgid "Displays the first line of the site address."
1828
  msgstr "Zeigt die erste Zeile des Straßenfeldes."
1829
 
1830
- #: my-calendar-help.php:265
1831
  msgid "Displays the second line of the site address."
1832
  msgstr "Zeigt die zweite Zeile des Straßenfeldes."
1833
 
1834
- #: my-calendar-help.php:268
1835
  msgid "Displays the city for the location."
1836
  msgstr "Zeigt die Ortschaft des Veranstaltungsortes"
1837
 
1838
- #: my-calendar-help.php:271
1839
  msgid "Displays the state for the location."
1840
  msgstr "Zeigt den Bundesstaat des Veranstaltungsortes"
1841
 
1842
- #: my-calendar-help.php:274
1843
  msgid "Displays the postcode for the location."
1844
  msgstr "Zeigt die Postleitzahl des Veranstaltungsortes"
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 "Zeigt das Land das Veranstaltungsortes"
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 "Zeigt die Eventadresse im <a href=\"http://microformats.org/wiki/hcard\">HCard</a>-Format"
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 "Zeigt den Link zu Google Maps für das Event, wenn genügend Informationen hinterlegt sind, sonst bleibt das Feld leer."
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 "Zeigt den Namen der Kategorie in der das Event ist."
1877
 
1878
- #: my-calendar-help.php:304
1879
  msgid "Produces the address of the current event's category icon."
1880
  msgstr "Erzeugt die Adresse des aktuellen Event-Kategorie-Symbols."
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 "Erzeugt den Hex-Code für die aktuelle Event-Kategorie-Farbe."
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 "My Calendar Standard-Zeitzone"
1931
 
1932
- #: my-calendar-install.php:291
1933
  msgid "My Calendar Default Location"
1934
  msgstr "My Calendar Standard-Standort"
1935
 
@@ -1989,11 +2247,11 @@ msgstr "Ort hinzufügen"
1989
  msgid "Add a New Location"
1990
  msgstr "Neuen Ort hinzufügen"
1991
 
1992
- #: my-calendar-locations.php:228 my-calendar.php:329
1993
  msgid "Manage Locations"
1994
  msgstr "Orte verwalten"
1995
 
1996
- #: my-calendar-locations.php:289
1997
  msgid "Location"
1998
  msgstr "Ort"
1999
 
@@ -2005,211 +2263,211 @@ msgstr "Bisher sind keine Orte in der Datenbank"
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 "Achtung: Ändern oder Löschen von Orten, die für die Wiederverwendung gespeichert wurden, wird keinen Effekt auf vorher geplante Events haben haben."
2007
 
2008
- #: my-calendar-output.php:191 my-calendar-output.php:308
2009
  msgid "Close"
2010
  msgstr "geschlossen"
2011
 
2012
- #: my-calendar-output.php:202
2013
  msgid "(%s in your time zone)"
2014
  msgstr "(%s liegt in Deiner Zeitzone)"
2015
 
2016
- #: my-calendar-output.php:208
2017
  msgid "Not Applicable"
2018
  msgstr "entfällt"
2019
 
2020
- #: my-calendar-output.php:223
2021
  msgid "Posted by"
2022
  msgstr "Verfasst von:"
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 "Dieses Veranstaltung ist Teil einer Serie. Sie müssen sich für das erste Event anmelden, um teilzunehmen."
2035
 
2036
- #: my-calendar-output.php:293
2037
  msgid "View full calendar"
2038
  msgstr "Kompletten Kalender ansehen"
2039
 
2040
- #: my-calendar-output.php:326
2041
  msgid "Edit This Date"
2042
  msgstr "Dieses Datum bearbeiten"
2043
 
2044
- #: my-calendar-output.php:327
2045
  msgid "Edit All"
2046
  msgstr "Alle bearbeiten"
2047
 
2048
- #: my-calendar-output.php:328
2049
  msgid "Delete This Date"
2050
  msgstr "Dieses Datum löschen"
2051
 
2052
- #: my-calendar-output.php:329
2053
  msgid "Delete All"
2054
  msgstr "Alle löschen"
2055
 
2056
- #: my-calendar-output.php:388
2057
  msgid "Year"
2058
  msgstr "Jahr"
2059
 
2060
- #: my-calendar-output.php:416
2061
  msgid "Go"
2062
  msgstr "los"
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 "Als Kalender ansehen"
2075
 
2076
- #: my-calendar-output.php:477
2077
  msgid "View as List"
2078
  msgstr "Als Liste ansehen"
2079
 
2080
- #: my-calendar-output.php:581
2081
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
2082
  msgstr "<abbr title=\"Sonntag\">So</abbr>"
2083
 
2084
- #: my-calendar-output.php:582
2085
  msgid "<abbr title=\"Monday\">Mon</abbr>"
2086
  msgstr "<abbr title=\"Montag\">Mo</abbr>"
2087
 
2088
- #: my-calendar-output.php:583
2089
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
2090
  msgstr "<abbr title=\"Dienstag\">Di</abbr>"
2091
 
2092
- #: my-calendar-output.php:584
2093
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
2094
  msgstr "<abbr title=\"Mittwoch\">Mi</abbr>"
2095
 
2096
- #: my-calendar-output.php:585
2097
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
2098
  msgstr "<abbr title=\"Donnerstag\">Do</abbr>"
2099
 
2100
- #: my-calendar-output.php:586
2101
  msgid "<abbr title=\"Friday\">Fri</abbr>"
2102
  msgstr "<abbr title=\"Freitag\">Fr</abbr>"
2103
 
2104
- #: my-calendar-output.php:587
2105
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
2106
  msgstr "<abbr title=\"Samstag\">Sa</abbr>"
2107
 
2108
- #: my-calendar-output.php:592
2109
  msgid "<abbr title=\"Sunday\">S</abbr>"
2110
  msgstr "<abbr title=\"Sonntag\">So</abbr>"
2111
 
2112
- #: my-calendar-output.php:593
2113
  msgid "<abbr title=\"Monday\">M</abbr>"
2114
  msgstr "<abbr title=\"Montag\">Mo</abbr>"
2115
 
2116
- #: my-calendar-output.php:594
2117
  msgid "<abbr title=\"Tuesday\">T</abbr>"
2118
  msgstr "<abbr title=\"Dienstag\">Di</abbr>"
2119
 
2120
- #: my-calendar-output.php:595
2121
  msgid "<abbr title=\"Wednesday\">W</abbr>"
2122
  msgstr "<abbr title=\"Mittwoch\">Mi</abbr>"
2123
 
2124
- #: my-calendar-output.php:596
2125
  msgid "<abbr title=\"Thursday\">T</abbr>"
2126
  msgstr "<abbr title=\"Donnerstag\">Do</abbr>"
2127
 
2128
- #: my-calendar-output.php:597
2129
  msgid "<abbr title=\"Friday\">F</abbr>"
2130
  msgstr "<abbr title=\"Freitag\">Fr</abbr>"
2131
 
2132
- #: my-calendar-output.php:598
2133
  msgid "<abbr title=\"Saturday\">S</abbr>"
2134
  msgstr "<abbr title=\"Samstag\">Sa</abbr>"
2135
 
2136
- #: my-calendar-output.php:700
2137
  msgid "Print View"
2138
  msgstr "Druckansicht"
2139
 
2140
- #: my-calendar-output.php:752
2141
  msgid "No events scheduled for today!"
2142
  msgstr "Keine Events heute!"
2143
 
2144
- #: my-calendar-output.php:767
2145
  msgid "and"
2146
  msgstr "und"
2147
 
2148
- #: my-calendar-output.php:784
2149
  msgid "Events in"
2150
  msgstr "Events im"
2151
 
2152
- #: my-calendar-output.php:536
2153
  msgid " and %d other event"
2154
  msgstr " und %d weiterer Termin"
2155
 
2156
- #: my-calendar-output.php:538
2157
  msgid " and %d other events"
2158
  msgstr " und %d weitere Termine"
2159
 
2160
- #: my-calendar-output.php:817
2161
  msgid "There are no events scheduled during this period."
2162
  msgstr "In diesem Zeitraum sind keine Events geplant."
2163
 
2164
- #: my-calendar-output.php:920
2165
  msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
2166
  msgstr "Kalenderformat nicht erkannt. Verwende bitte 'list','calendar', oder 'mini'"
2167
 
2168
- #: my-calendar-output.php:948
2169
  msgid "Category Key"
2170
  msgstr "Kategorie-Schlüssel"
2171
 
2172
- #: my-calendar-output.php:972
2173
  msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
2174
  msgstr "Abonnieren von <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 "Download als <abbr title=\\\"iCal Ereignisse exportieren\\\">iCal</abbr>"
2179
 
2180
- #: my-calendar-output.php:998
2181
  msgid "Next events &raquo;"
2182
  msgstr "Nächste Termine &raquo;"
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 "&laquo; Frühere Termine"
2191
 
2192
- #: my-calendar-output.php:1094
2193
  msgid "(select to include)"
2194
  msgstr "(auswählen um einzufügen)"
2195
 
2196
- #: my-calendar-output.php:1118 my-calendar-output.php:1121
2197
  msgid "All Categories"
2198
  msgstr "Alle Kategorien"
2199
 
2200
- #: my-calendar-output.php:1119
2201
  msgid "Categories"
2202
  msgstr "Kategorien"
2203
 
2204
- #: my-calendar-output.php:1140 my-calendar-output.php:1333
2205
  msgid "Submit"
2206
  msgstr "los"
2207
 
2208
- #: my-calendar-output.php:1274 my-calendar-output.php:1295
2209
  msgid "Show all"
2210
  msgstr "Alle"
2211
 
2212
- #: my-calendar-output.php:1293
2213
  msgid "Show events in:"
2214
  msgstr "Standort:"
2215
 
@@ -2233,235 +2491,227 @@ msgstr "Events nicht importiert."
2233
  msgid "My Calendar Cache cleared"
2234
  msgstr "My Calendar Cache gelöscht"
2235
 
2236
- #: my-calendar-settings.php:114
2237
  msgid "My Calendar Management Settings saved"
2238
  msgstr "My Calender-Management-Einstellungen gespeichert"
2239
 
2240
- #: my-calendar-settings.php:119 my-calendar-settings.php:768
2241
  msgid "Add Events"
2242
  msgstr "Events hinzufügen"
2243
 
2244
- #: my-calendar-settings.php:120 my-calendar-settings.php:769
2245
  msgid "Approve Events"
2246
  msgstr "Events genehmigen"
2247
 
2248
- #: my-calendar-settings.php:122 my-calendar-settings.php:771
2249
  msgid "Edit Categories"
2250
  msgstr "Kategorien bearbeiten"
2251
 
2252
- #: my-calendar-settings.php:123 my-calendar-settings.php:772
2253
  msgid "Edit Locations"
2254
  msgstr "Orte bearbeiten"
2255
 
2256
- #: my-calendar-settings.php:124 my-calendar-settings.php:773
2257
  msgid "Edit Styles"
2258
  msgstr "Stile bearbeiten"
2259
 
2260
- #: my-calendar-settings.php:125 my-calendar-settings.php:774
2261
  msgid "Edit Behaviors"
2262
  msgstr "Verhaltensweisen bearbeiten"
2263
 
2264
- #: my-calendar-settings.php:126 my-calendar-settings.php:775
2265
  msgid "Edit Templates"
2266
  msgstr "Templates bearbeiten"
2267
 
2268
- #: my-calendar-settings.php:127 my-calendar-settings.php:776
2269
  msgid "Edit Settings"
2270
  msgstr "Einstellungen bearbeiten"
2271
 
2272
- #: my-calendar-settings.php:128 my-calendar-settings.php:777
2273
  msgid "View Help"
2274
  msgstr "Hilfe ansehen"
2275
 
2276
- #: my-calendar-settings.php:142
2277
  msgid "My Calendar Permissions Updated"
2278
  msgstr "My Calendar-Berechtigungen aktualisiert"
2279
 
2280
- #: my-calendar-settings.php:186
2281
  msgid "Output Settings saved"
2282
  msgstr "Ausgabe-Einstellungen gespeichert"
2283
 
2284
- #: my-calendar-settings.php:212
2285
  msgid "Input Settings saved"
2286
  msgstr "Eingabe-Einstellungen gespeichert"
2287
 
2288
- #: my-calendar-settings.php:220
2289
  msgid "Multisite settings saved"
2290
  msgstr "Multisite-Einstellungen gespeichert"
2291
 
2292
- #: my-calendar-settings.php:248
2293
  msgid "Custom text settings saved"
2294
  msgstr "Benutzerdefinierte Text-Einstellungen gespeichert"
2295
 
2296
- #: my-calendar-settings.php:260
2297
  msgid "Email notice settings saved"
2298
  msgstr "E-Mail-Benachrichtigung-Einstellungen gespeichert"
2299
 
2300
- #: my-calendar-settings.php:274
2301
  msgid "User custom settings saved"
2302
  msgstr "Benutzer benutzerdefinierte Einstellungen gespeichert"
2303
 
2304
- #: my-calendar-settings.php:307
2305
  msgid "My Calendar Options"
2306
  msgstr "My Calender Optionen"
2307
 
2308
- #: my-calendar-settings.php:339
2309
  msgid "My Calendar Settings"
2310
  msgstr "My Calendar-Einstellungen"
2311
 
2312
- #: my-calendar-settings.php:342
2313
  msgid "Management"
2314
  msgstr "Verwaltung"
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 "E-Mail-Benachrichtigungen"
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 "Kalender-Management-Einstellungen"
2347
 
2348
- #: my-calendar-settings.php:366
2349
  msgid "Calendar Options: Management"
2350
  msgstr "Kalender Optionen: Management"
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 "Aktiviere Genehmigung-Optionen."
2363
 
2364
- #: my-calendar-settings.php:379
2365
  msgid "Enable caching."
2366
  msgstr "Caching aktivieren."
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 "Anfangsdatum"
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 "Kalender-Texteinstellungen"
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 "Frühere Termine Link"
2423
 
2424
- #: my-calendar-settings.php:439
2425
  msgid "Previous Events"
2426
  msgstr "Frühere Termine"
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 "Kommende Events"
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 "Registrierung geöffnet"
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 "Registrierung geschlossen"
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 "Erweiterte Beschriftung:"
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 "Die Kalender-Beschriftung zeigt Monat und Jahr in der Listen- und Kalenderansicht. Der Text wird nach dem Monat / Jahr angezeigt."
2467
 
@@ -2473,61 +2723,61 @@ msgstr "Benutzerdefinierte Texteinstellungen speichern"
2473
  msgid "Calendar Output Settings"
2474
  msgstr "Kalender-Ausgabe-Einstellungen"
2475
 
2476
- #: my-calendar-settings.php:485 my-calendar-settings.php:636
2477
  msgid "Save Output Settings"
2478
  msgstr "Ausgabe-Einstellungen speichern"
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)"
@@ -2537,19 +2787,19 @@ msgstr ""
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
 
@@ -2569,327 +2819,300 @@ msgstr "Zeige Link zu iCal-Format-Download."
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 "Event-Titel-Vorlage"
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 "Event-Links werden ungültig, wenn das Event vorrüber ist."
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 "Standartbenutzung von Kategoriefarben"
2647
-
2648
- #: my-calendar-settings.php:598
2649
  msgid "Event titles are category colors."
2650
  msgstr "Event-Titel sind Kategoriefarben."
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 "Feiertag-Kategorie"
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 "Kalender-Eingabe-Einstellungen"
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 "Zeige Veranstaltungsort Auswahlliste"
2683
-
2684
- #: my-calendar-settings.php:690
2685
- msgid "Show Event Short Description field"
2686
- msgstr "Zeige Event Kurzbeschreibungsfeld"
2687
-
2688
- #: my-calendar-settings.php:690
2689
- msgid "Show Event Description Field"
2690
- msgstr "Zeige Event Beschreibungsfeld"
2691
-
2692
- #: my-calendar-settings.php:690
2693
- msgid "Show Event Category field"
2694
- msgstr "Zeige Event Kategorienfeld"
2695
-
2696
- #: my-calendar-settings.php:690
2697
- msgid "Show Event Link field"
2698
- msgstr "Zeige Event Link-Feld"
2699
-
2700
- #: my-calendar-settings.php:690
2701
- msgid "Show Event Recurrence Options"
2702
- msgstr "Zeige Event-Serienoptionen"
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 "Administratoren sehen alle Eingabefelder"
2711
 
2712
- #: my-calendar-settings.php:708
2713
  msgid "Save Input Settings"
2714
  msgstr "Eingabe-Einstellungen speichern"
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 "My Calender-Berechtigungen"
2763
 
2764
- #: my-calendar-settings.php:756
2765
  msgid "Calendar Options: Permissions"
2766
  msgstr "Kalender-Optionen: Berechtigungen"
2767
 
2768
- #: my-calendar-settings.php:792
2769
  msgid "Save Permissions"
2770
  msgstr "Berechtigungen speichern"
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 "Kalender-E-Mail-Einstellungen"
2779
 
2780
- #: my-calendar-settings.php:809
2781
  msgid "Calendar Options: Email Notifications"
2782
  msgstr "Kalender-Optionen: E-Mail-Benachrichtigung"
2783
 
2784
- #: my-calendar-settings.php:813
2785
  msgid "Send Email Notifications when new events are scheduled or reserved."
2786
  msgstr "Senden Sie E-Mail Benachrichtigungen, wenn neue Termine geplant sind oder reserviert."
2787
 
2788
- #: my-calendar-settings.php:816
2789
  msgid "Notification messages are sent to: "
2790
  msgstr "Benachrichtigungen sind zu richten an: "
2791
 
2792
- #: my-calendar-settings.php:819
2793
  msgid "Email subject"
2794
  msgstr "Email-Betreff"
2795
 
2796
- #: my-calendar-settings.php:819
2797
  msgid "New event Added"
2798
  msgstr "Neuer Termin hinzugefügt"
2799
 
2800
- #: my-calendar-settings.php:822
2801
  msgid "Message Body"
2802
  msgstr "Nachrichtentext"
2803
 
2804
- #: my-calendar-settings.php:822
2805
  msgid "New Event:"
2806
  msgstr "Neuer Event:"
2807
 
2808
- #: my-calendar-settings.php:823
2809
  msgid "Shortcode Help"
2810
  msgstr "Shortcode-Hilfe"
2811
 
2812
- #: my-calendar-settings.php:823
2813
  msgid "All template shortcodes are available."
2814
  msgstr "Alle Template-Shortcodes sind verfügbar."
2815
 
2816
- #: my-calendar-settings.php:828
2817
  msgid "Save Email Settings"
2818
  msgstr "E-Mail-Einstellungen speichern"
2819
 
2820
- #: my-calendar-settings.php:837
2821
  msgid "Calendar User Settings"
2822
  msgstr "Kalender Benutzer-Einstellungen"
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 "Registrierten Benutzern erlauben, Zeitzone oder Standard-Standort in ihren Benutzer-Profilen anzubieten."
2831
 
2832
- #: my-calendar-settings.php:859
2833
  msgid "Timezone Settings"
2834
  msgstr "Zeitzone-Einstellungen"
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 "Diese Einstellungen bieten Benutzern die Möglichkeit, eine Zeitzone in ihrem Benutzerprofil zu wählen. Wenn sie ihren Kalender ansehen, wird die Zeit für Events in der Zeit ihrer Zeitzone sowie der eingegebene Wert angezeigt."
2839
 
2840
- #: my-calendar-settings.php:862
2841
  msgid "Enable Timezone"
2842
  msgstr "Aktiviere Zeitzone"
2843
 
2844
- #: my-calendar-settings.php:865
2845
  msgid "Select Timezone Label"
2846
  msgstr "Wählen Sie den Zeitzonen-Namen"
2847
 
2848
- #: my-calendar-settings.php:868
2849
  msgid "Timezone Options"
2850
  msgstr "Zeitzonen-Optionen"
2851
 
2852
- #: my-calendar-settings.php:868 my-calendar-settings.php:892
2853
  msgid "Value, Label; one per line"
2854
  msgstr "Wert, Beschriftung; eine pro Zeile"
2855
 
2856
- #: my-calendar-settings.php:880
2857
  msgid "Location Settings"
2858
  msgstr "Standorteinstellungen"
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 "Standort freigeben"
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 "Wählen Sie Standort-Namen"
2879
 
2880
- #: my-calendar-settings.php:892
2881
  msgid "Location Options"
2882
  msgstr "Standort-Optionen"
2883
 
2884
- #: my-calendar-settings.php:902
2885
  msgid "Location Type"
2886
  msgstr "Standort-Typ"
2887
 
2888
- #: my-calendar-settings.php:915
2889
  msgid "Save User Settings"
2890
  msgstr "Benutzereinstellungen sichern"
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
 
@@ -2981,19 +3204,19 @@ msgstr ""
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
 
@@ -3109,285 +3332,269 @@ msgstr "Sie haben keine Events eingegeben. My Calendar kann daher nicht sagen, o
3109
  msgid "My Calendar Database is updated."
3110
  msgstr "My Calendar Datenbank ist geupdated."
3111
 
3112
- #: my-calendar-user.php:36
3113
  msgid "My Calendar User Settings"
3114
  msgstr "My Calendar Benutzereinstellungen"
3115
 
3116
- #: my-calendar-widgets.php:5
3117
  msgid "My Calendar: Today's Events"
3118
  msgstr "My Calendar: Heutige Events"
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 ""
3127
 
3128
- #: my-calendar-widgets.php:66
3129
  msgid "Show this text if there are no events today:"
3130
  msgstr "Zeige diesen Text, wenn heute keine Events stattfinden:"
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 "Kategorie oder Kategorien für Anzeige:"
3136
 
3137
- #: my-calendar-widgets.php:102
3138
  msgid "My Calendar: Upcoming Events"
3139
  msgstr "My Calendar: Kommende Events"
3140
 
3141
- #: my-calendar-widgets.php:164
3142
  msgid "Widget Options"
3143
  msgstr "Widget Optionen"
3144
 
3145
- #: my-calendar-widgets.php:178
3146
  msgid "Display upcoming events by:"
3147
  msgstr "Zeige kommende Events:"
3148
 
3149
- #: my-calendar-widgets.php:179
3150
  msgid "Events (e.g. 2 past, 3 future)"
3151
  msgstr "Events (z.B. 2 in der Vergangenheit, 3 in der Zukunft)"
3152
 
3153
- #: my-calendar-widgets.php:180
3154
  msgid "Dates (e.g. 4 days past, 5 forward)"
3155
  msgstr "Daten (z.B. vor 4 Tagen in 5 Tagen)"
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 "Zeige diesen Text, wenn es keine Events gibt, die Ihren Kriterien entsprechen:"
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 "Kalender"
3188
 
3189
- #: my-calendar-widgets.php:633
3190
- msgid "Show Next/Previous Navigation:"
3191
- msgstr "Zurück/Weiter Navigation zeigen"
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 "Kauf den My Calendar User's Guide"
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 "Spenden"
3220
 
3221
- #: my-calendar.php:150
3222
  msgid "Get Help"
3223
  msgstr "Hilfe bekommen"
3224
 
3225
- #: my-calendar.php:154
3226
  msgid "Get Support"
3227
  msgstr "Support bekommen"
3228
 
3229
- #: my-calendar-help.php:10 my-calendar.php:155 my-calendar.php:335
3230
  msgid "My Calendar Help"
3231
  msgstr "My Calendar Hilfe"
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 "Email des Gastgebers"
3288
 
3289
- #: my-calendar.php:219
3290
  msgid "Short event description."
3291
  msgstr "Kurzbeschreibung des Termins"
3292
 
3293
- #: my-calendar.php:222
3294
  msgid "Description of the event."
3295
  msgstr "Beschreibung des Termins"
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 "Name des Terminorts"
3316
 
3317
- #: my-calendar.php:246
3318
  msgid "First line of the site address."
3319
  msgstr "Erste Adresszeile"
3320
 
3321
- #: my-calendar.php:249
3322
  msgid "Second line of the site address."
3323
  msgstr "Zweite Adresszeile"
3324
 
3325
- #: my-calendar.php:252
3326
  msgid "City."
3327
  msgstr "Stadt"
3328
 
3329
- #: my-calendar.php:255
3330
  msgid "State."
3331
  msgstr "Bundesland"
3332
 
3333
- #: my-calendar.php:258
3334
  msgid "Postal code/zip code."
3335
  msgstr "Postleitzahl"
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 "Link zur Google Map des Termins, wenn die Adress-Informationen vorhanden sind"
3356
 
3357
- #: my-calendar.php:279
3358
  msgid "Name of the category of the event."
3359
  msgstr "Name der Kategorie des Termins"
3360
 
3361
- #: my-calendar.php:282
3362
  msgid "URL for the event's category icon."
3363
  msgstr "Symbol-URL der Kategorie des Termins"
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 "Events hinzufügen/editieren"
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 "Verhaltens Editor"
3389
-
3390
- #: my-calendar.php:334
3391
  msgid "Template Editor"
3392
  msgstr "Vorlagen Editor"
3393
 
2
  # This file is distributed under the same license as the My Calendar package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-09-30 19:38:54+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-settings.php:443
14
+ msgid "Label for all-day events"
15
+ msgstr "Label für Ganztages Veranstaltungen"
16
+
17
+ #: my-calendar-help.php:53
18
+ msgid "This basic shortcode will show the one-week view of the calendar on a post or page including all categories and the category key, in a list format. The standard previous/next navigation will be included above the calendar, the link to the print format (if enabled) will be shown below."
19
+ msgstr "Dieser Basis Shortcode wird Dir die Wochenvorschau des Kalenders in einem Beitrag oder einer Seite mit allen Kategorien, Kategorie-Keys im Listenformat anzeigen. Die Standard früher/später Navigation wird oberhalb des Kalenders, der Link zum Print-Format (wenn aktiviert) wird darunter angezeigt."
20
+
21
+ #: button/generator.php:46
22
+ msgid "Navigational fields above and below the calendar: Feed links and print view will only display if they are enabled on your settings page. All other fields will appear if specified; the defaults specified in your settings will be used if the attribute is left blank. Use <code>none</code> to hide all navigation elements."
23
+ msgstr "Navigationsfelder über und unter dem Kalender: Links und die Print-Ansicht werden nur angezeigt, wenn sie über die Einstellungsseite aktiviert wurden. Alle anderen Felder werden erscheinen wenn spezifiziert; die Standardeinstellungen werden benutzt, falls die Attribute leer bleiben. Benutze <code>none</code> um alle Navigationseelemente zu verstecken."
24
+
25
+ #: button/generator.php:78 my-calendar-widgets.php:699
26
+ msgid "Navigation above calendar"
27
+ msgstr "Navigation über dem Kalender"
28
+
29
+ #: button/generator.php:82 my-calendar-widgets.php:703
30
+ msgid "Navigation below calendar"
31
+ msgstr "Navigation unter dem Kalender"
32
+
33
+ #: button/generator.php:101 my-calendar-widgets.php:707
34
+ msgid "Limit by Author"
35
+ msgstr "Limitierung durch den Autor"
36
+
37
+ #: button/generator.php:103 my-calendar-widgets.php:709
38
+ msgid "All authors"
39
+ msgstr "Alle Autoren"
40
+
41
+ #: button/generator.php:108 my-calendar-widgets.php:714
42
+ msgid "Limit by Host"
43
+ msgstr "Limitierung durch den Host"
44
+
45
+ #: button/generator.php:110 my-calendar-widgets.php:716
46
+ msgid "All hosts"
47
+ msgstr "Alle Hosts"
48
+
49
+ #: my-calendar-core.php:1169
50
+ msgid "Event Notifications"
51
+ msgstr "Veranstaltungsinformationen"
52
+
53
+ #: my-calendar-core.php:1537
54
+ msgid "Days"
55
+ msgstr "Tage"
56
+
57
+ #: my-calendar-core.php:1538
58
+ msgid "Days, weekdays only"
59
+ msgstr "Tags, Nur Wochentage"
60
+
61
+ #: my-calendar-core.php:1539
62
+ msgid "Weeks"
63
+ msgstr "Wochen"
64
+
65
+ #: my-calendar-core.php:1540
66
+ msgid "Months by date (e.g., the 24th of each month)"
67
+ msgstr "Monate durch Datum (z.B. der 24. jeden Monats)"
68
+
69
+ #: my-calendar-core.php:1541
70
+ msgid "Month by day (e.g., the 3rd Monday of each month)"
71
+ msgstr "Monate durch Tage (z.B. der 3. Montag jeden Monats)"
72
+
73
+ #: my-calendar-event-manager.php:149
74
+ msgid "My Events"
75
+ msgstr "Meine Veranstaltungen"
76
+
77
+ #: my-calendar-event-manager.php:226
78
+ msgid "Return to Calendar"
79
+ msgstr "Zurück zum Kalender"
80
+
81
+ #: my-calendar-event-manager.php:320
82
+ msgid "Event added. It will now show on the calendar."
83
+ msgstr "Veranstaltung hinzugefügt. Sie wird nun im Kalender angezeigt."
84
+
85
+ #: my-calendar-event-manager.php:574
86
+ msgid "Post to Twitter (via WP to Twitter)"
87
+ msgstr "Poste zu Twitter (via WP zu Twitter)"
88
+
89
+ #: my-calendar-event-manager.php:702
90
+ msgid "(optional)"
91
+ msgstr "(optional)"
92
+
93
+ #: my-calendar-event-manager.php:767
94
+ msgid "Repeats"
95
+ msgstr "Wiederholungen"
96
+
97
+ #: my-calendar-event-manager.php:767
98
+ msgid "times"
99
+ msgstr "Mal(e)"
100
+
101
+ #: my-calendar-event-manager.php:768
102
+ msgid "every"
103
+ msgstr "jeder"
104
+
105
+ #: my-calendar-event-manager.php:1046
106
+ msgid "Spam"
107
+ msgstr "Spam"
108
+
109
+ #: my-calendar-event-manager.php:1114
110
+ msgid "Possible spam"
111
+ msgstr "Möglicher Spam"
112
+
113
+ #: my-calendar-event-manager.php:1154 my-calendar-event-manager.php:1182
114
+ #: my-calendar-event-manager.php:1191
115
+ msgid "Show only: "
116
+ msgstr "Zeige nur:"
117
+
118
+ #: my-calendar-event-manager.php:1158
119
+ msgid "Recurs:"
120
+ msgstr "Wiedererscheinung:"
121
+
122
+ #: my-calendar-event-manager.php:1167
123
+ msgid "Every %d days"
124
+ msgstr "Alle %d Tage"
125
+
126
+ #: my-calendar-event-manager.php:1168
127
+ msgid "Every %d weekdays"
128
+ msgstr "Alle %d Wochentage"
129
+
130
+ #: my-calendar-event-manager.php:1169
131
+ msgid "Every %d weeks"
132
+ msgstr "Alle %d Wochen"
133
+
134
+ #: my-calendar-event-manager.php:1171
135
+ msgid "Every %d months (by date)"
136
+ msgstr "Alle %d Monate (durch Tagsteuerung)"
137
+
138
+ #: my-calendar-event-manager.php:1173
139
+ msgid "Every %d years"
140
+ msgstr "Alle %d Jahre"
141
+
142
+ #: my-calendar-event-manager.php:1177 my-calendar-event-manager.php:1178
143
+ msgid "&ndash; %d Times"
144
+ msgstr "&ndash: %d Male"
145
+
146
+ #: my-calendar-event-manager.php:1213
147
+ msgid "There are no events in the database meeting your current criteria."
148
+ msgstr "Es sind keine Veranstaltungen in der Datenbank die mit diesen Kriterien übereinstimmen."
149
+
150
+ #: my-calendar-group-manager.php:123
151
+ msgid "Select an event group to edit."
152
+ msgstr "Selektiere eine Veranstaltungsgruppe zur Bearbeitung."
153
+
154
+ #: my-calendar-help.php:62
155
+ msgid "Comma-separated list of navigational features to display above or below the calendar. Available: <strong>nav, toggle, jump, print, key, feeds</strong>. Order listed determines the order displayed. Feed links and print view will only display if they are enabled on the settings page. All other fields will appear if specified; the defaults specified in settings will be used if the attribute is left blank. Use <em>none</em> to hide all navigation elements."
156
+ msgstr "Komma-getrennte Liste von Navigationseigenschaften zur Ansicht über oder unter dem Kalender. Verfügbar: <strong>nav, toggle, jump, print, key, feeds</strong>. Die Reihenfolge betsimmt die Platzierung. Links und Druckansicht werden nur angezeigt, wenn sie auf der Einstellungsseite aktiviert sind. Alle anderen Felder werden erscheinen wie eingestellt; die Standardeinstellungen werden benutzt wenn keine Einstellung gemacht wurde. Benutze <em>none</em> um alle Navigationselemente zu verstecken,"
157
+
158
+ #: my-calendar-help.php:68
159
+ msgid "String to give this specific calendar shortcode a unique ID. Use when showing multiple calendars in a Page or post."
160
+ msgstr "Kombination um dem speziellen Kalender shortcode eine einzigartige ID zu geben. Benutze diese Kombination, wenn Du verschiedene Kalender in Deinen Seiten oder beiträgen anzeigen möchtest."
161
+
162
+ #: my-calendar-help.php:69 my-calendar-help.php:70 my-calendar-help.php:71
163
+ #: my-calendar-help.php:72
164
+ msgid "Deprecated"
165
+ msgstr "Abgelehnt"
166
+
167
+ #: my-calendar-help.php:69
168
+ msgid "Use \"key\" in <code>above</code> or <code>below</code>"
169
+ msgstr "Benutze \"key\" in <code>above</code> oder <code>below</code>"
170
+
171
+ #: my-calendar-help.php:70
172
+ msgid "Use \"nav\" in <code>above</code> or <code>below</code>"
173
+ msgstr "Benutze \"nav\" in <code>above</code> oder <code>below</code>"
174
+
175
+ #: my-calendar-help.php:71
176
+ msgid "Use \"jump\" in <code>above</code> or <code>below</code>"
177
+ msgstr "Benutze \"jump\" in <code>above</code> oder <code>below</code>"
178
+
179
+ #: my-calendar-help.php:72
180
+ msgid "Use \"toggle\" in <code>above</code> or <code>below</code>"
181
+ msgstr "Benutze \"toggle\" in <code>above</code> oder <code>below</code>"
182
+
183
+ #: my-calendar-help.php:207
184
+ msgid "Displays the gravatar image for the event author."
185
+ msgstr "Zeigt das Gravatar-Icon des eintragenden Veranstalters."
186
+
187
+ #: my-calendar-help.php:216
188
+ msgid "Displays the gravatar image for the event host."
189
+ msgstr "Zeigt das Gravatar-Icon des Veranstaltungs-Host"
190
+
191
+ #: my-calendar-help.php:237
192
+ msgid "Image associated with the event. (HTMl)"
193
+ msgstr "Bild welches sich auf die Veranstaltung bezieht. (HTMI)"
194
+
195
+ #: my-calendar-help.php:240
196
+ msgid "Image associated with the event. (image URL only)"
197
+ msgstr "Bild welches sich auf die Veranstaltung bezieht. (Nur die Bild URL)"
198
+
199
+ #: my-calendar-help.php:261
200
+ msgid "Provides a link to the defined event URL when present, otherwise the {details} link."
201
+ msgstr "Bereitstellung eines Links zur definierten Veranstaltungs-URL wenn verfügbar, andernfalls den {Detail} Link."
202
+
203
+ #: my-calendar-output.php:587
204
+ msgid "Event search results for &ldquo;%1$s&rdquo;"
205
+ msgstr "Veranstaltungs Suchergebnis für &ldquo;%1$s&rdquo;"
206
+
207
+ #: my-calendar-output.php:659
208
+ msgid "Sorry, your search produced no results."
209
+ msgstr "Schade, Deine Suche ist ergebnislos."
210
+
211
+ #: my-calendar-output.php:697
212
+ msgid "<strong>Admin Notice:</strong> The <code>showkey</code>, <code>shownav</code>, <code>showjump</code>, and <code>toggle</code> shortcode attributes have been deprecated. Use <code>above</code> and <code>below</code> instead."
213
+ msgstr "<strong>Administrator Info:</strong> Der <code>showkey</code>, <code>shownav</code>, <code>showjump</code>, und die <code>toggle</code> Shortcode Eigenschaften wurden abgelehnt. Benutze stattdessen <code>above</code> und <code>below</code> ."
214
+
215
+ #: my-calendar-output.php:1452
216
+ msgid "Search events:"
217
+ msgstr "Suche Veranstaltungen:"
218
+
219
+ #: my-calendar-output.php:1454
220
+ msgid "Search Events"
221
+ msgstr "Suche Veranstaltungen"
222
+
223
+ #: my-calendar-settings.php:371
224
+ msgid "My Calendar Management"
225
+ msgstr "Mein Kalender Management"
226
+
227
+ #: my-calendar-settings.php:448
228
+ msgid "Available tag: <code>{date format=\"\"}</code>"
229
+ msgstr "Verfügbarer tag: <code>{date format=\"\"}</code>"
230
+
231
+ #: my-calendar-settings.php:465
232
+ msgid "Title tag template (event details pages)"
233
+ msgstr "Titel Tag Template (Veranstaltungs Detail Seiten)"
234
+
235
+ #: my-calendar-settings.php:531
236
+ msgid "General Layout Options"
237
+ msgstr "Generelle Gestaltungsoptionen"
238
+
239
+ #: my-calendar-settings.php:532
240
+ msgid "Comma-separated list to indicate what order the navigational elements of My Calendar should appear in."
241
+ msgstr "Komma-getrennte Liste zur Zurordnung der Reihenfolge in der die Navigationselemente erscheinen."
242
+
243
+ #: my-calendar-settings.php:535
244
+ msgid "Show above the calendar:"
245
+ msgstr "Zeige oberhalb des Kalenders:"
246
+
247
+ #: my-calendar-settings.php:537
248
+ msgid "Default: <code>nav,toggle,jump,print,timeframe</code>"
249
+ msgstr "Standardwert: <code>nav,toggle,jump,print,timeframe</code>"
250
+
251
+ #: my-calendar-settings.php:540
252
+ msgid "Show below the calendar:"
253
+ msgstr "Zeige unterhalb des Kalenders:"
254
+
255
+ #: my-calendar-settings.php:542
256
+ msgid "Default: <code>key,feeds</code>"
257
+ msgstr "Standardwert: <code>key,feeds</code>"
258
+
259
+ #: my-calendar-settings.php:576
260
+ msgid "The checked items will be shown in your event details view. Does not apply if you are using a custom template"
261
+ msgstr "Die überprüften Elemente werden in der Detailansicht der Veranstaltung angezeigt. Wird nicht umgesetzt, wenn Du ein eigenes Template benutzt."
262
+
263
+ #: my-calendar-settings.php:585
264
+ msgid "Show link to submit event to Google Calendar"
265
+ msgstr "Zeige Link zur Übertragung der Veranstaltung in den Google Kalender"
266
+
267
+ #: my-calendar-settings.php:603
268
+ msgid "Process WordPress shortcodes in descriptions"
269
+ msgstr "Nutze WordPress Shortcodes in den Beschreibungen"
270
+
271
+ #: my-calendar-settings.php:620
272
+ msgid "Event Display Options"
273
+ msgstr "Anzeigeoptionen für Veranstaltungen"
274
+
275
+ #: my-calendar-settings.php:623
276
+ msgid "No category colors with event titles."
277
+ msgstr "Keine Kategoriefarbe bei Veranstaltungstiteln."
278
+
279
+ #: my-calendar-settings.php:628
280
+ msgid "Ensure best contrast for category color usage."
281
+ msgstr "Stelle besten Kontrast durch die Farbwahl für die Kategorien sicher."
282
+
283
+ #: my-calendar-settings.php:719 my-calendar.php:389
284
+ msgid "Event Location Dropdown Menu"
285
+ msgstr "Dropdown Menü für die Veranstaltungsorte"
286
+
287
+ #: my-calendar-settings.php:719 my-calendar.php:389
288
+ msgid "Event Short Description field"
289
+ msgstr "Kurzbeschreibung zur Veranstaltung"
290
+
291
+ #: my-calendar-settings.php:719 my-calendar.php:389
292
+ msgid "Event Description Field"
293
+ msgstr "Feld zur Beschreibung der Veranstaltung"
294
+
295
+ #: my-calendar-settings.php:719 my-calendar.php:389
296
+ msgid "Event Category field"
297
+ msgstr "Feld zur Veranstaltungskategorie"
298
+
299
+ #: my-calendar-settings.php:719 my-calendar.php:389
300
+ msgid "Event Image field"
301
+ msgstr "Feld für das Bild zu Veranstaltung"
302
+
303
+ #: my-calendar-settings.php:719 my-calendar.php:389
304
+ msgid "Event Link field"
305
+ msgstr "Feld für den Link zur Veranstaltung"
306
+
307
+ #: my-calendar-settings.php:719 my-calendar.php:389
308
+ msgid "Event Recurrence Options"
309
+ msgstr "Veranstaltung Wiederholungsoptionen"
310
+
311
+ #: my-calendar-settings.php:719 my-calendar.php:389
312
+ msgid "Event Registration options"
313
+ msgstr "Veranstaltung Registrierungsoptionen"
314
+
315
+ #: my-calendar-settings.php:719 my-calendar.php:389
316
+ msgid "Event Location fields"
317
+ msgstr "Feld für den Veranstaltungsort"
318
+
319
+ #: my-calendar-settings.php:848
320
+ msgid "Notification messages are sent from: "
321
+ msgstr "Benachrichtigungen wurden gesendet von:"
322
+
323
+ #: my-calendar-settings.php:858
324
+ msgid "Send HTML email"
325
+ msgstr "Verschicke HTML E-Mail"
326
+
327
+ #: my-calendar-templates.php:305
328
+ msgid "<span class=\"screenreader\">Send %1$s to </span>Google Calendar"
329
+ msgstr "<span class=\"screenreader\">Sende %1$s an </span>Google Calendar"
330
+
331
+ #: my-calendar-widgets.php:4
332
+ msgid "My Calendar: Simple Event Search"
333
+ msgstr "Mein Kelnder: Einfache Veranstaltungssuche"
334
+
335
+ #: my-calendar-widgets.php:194
336
+ msgid "Show current month"
337
+ msgstr "Zeige aktuellen Monat"
338
+
339
+ #: my-calendar-widgets.php:195
340
+ msgid "Show current year"
341
+ msgstr "Zeige aktuelles Jahr"
342
+
343
+ #: my-calendar.php:345
344
+ msgid "Add New Event"
345
+ msgstr "Füge neue Veranstaltung hinzu"
346
+
347
+ #: my-calendar.php:354
348
+ msgid "Script Editor"
349
+ msgstr "Script Editor"
350
+
351
+ #: my-calendar.php:401
352
+ msgid "Apply"
353
+ msgstr "anwenden"
354
+
355
+ #: my-calendar.php:404
356
+ msgid "Event editing fields to show"
357
+ msgstr "Beschreibbare Veranstaltungsfelder"
358
+
359
+ #: my-calendar-event-manager.php:526
360
  msgid "Edit events"
361
+ msgstr "Veranstaltungen bearbeiten"
362
 
363
+ #: my-calendar-event-manager.php:1379
364
  msgid "The time field must either be blank or be entered in the format hh:mm am/pm"
365
+ msgstr "Das Zeitfeld muss entweder leer bleiben oder das Format \"hh:mm am/pm\" haben"
366
 
367
+ #: my-calendar-event-manager.php:1386
368
  msgid "The end time field must either be blank or be entered in the format hh:mm am/pm"
369
+ msgstr "Das Veranstaltungsende muss entweder leer bleiben oder das Format \"hh:mm am/pm\" haben"
370
 
371
  #: my-calendar-help.php:13
372
  msgid "Shortcodes"
373
+ msgstr "Shortcodes"
374
 
375
  #: my-calendar-help.php:14
376
  msgid "Icons"
378
 
379
  #: my-calendar-help.php:15
380
  msgid "Styles"
381
+ msgstr "Stile"
382
 
383
  #: my-calendar-help.php:16
384
  msgid "Templating"
386
 
387
  #: my-calendar-help.php:17
388
  msgid "Support Form"
389
+ msgstr "Support Formular"
390
 
391
+ #: my-calendar-help.php:26 my-calendar.php:172
392
  msgid "Getting Started"
393
+ msgstr "Einführung"
394
 
395
  #: my-calendar-help.php:29
396
  msgid "Although the My Calendar plug-in is very complicated in terms of what can be customized, the basic usage is quite simple."
397
+ msgstr "Übrigens ist das My Calendar Plugin sehr kompliziert was das individuelle Einstellen angeht, der Standardgebrauch ist allerdings ganz einfach."
398
 
399
  #: my-calendar-help.php:32
400
  msgid "Add the My Calendar shortcode (<code>[my_calendar]</code>) to a page."
401
+ msgstr "Füge den My Calendar shortcode <code>[my_calendar]</code>) in eine Seite ein. "
402
 
403
  #: my-calendar-help.php:33
404
  msgid "Add events by clicking on the Add/Edit Events link in the admin sidebar or on \"Add Events\" in the admin toolbar."
405
+ msgstr "Alle Veranstaltungen durch klicken auf den \"Add/Edit Events\" Link in der admin Seitenleiste oder durch klicken auf \"Add Events\" in der admin Werkzeugliste."
406
 
407
  #: my-calendar-help.php:34
408
  msgid "Select your preferred stylesheet in the Styles Editor"
409
+ msgstr "Selektiere Dein bevorzugtes Stylesheet im Styles Editor"
410
 
411
  #: my-calendar-help.php:37
412
  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."
413
+ msgstr "Lese mehr von der Basis Hilfe Beschreibung auf dieser Seite oder kaufe das My Calendar Benutzer Handbauch um weitere individuelle Einstellungen vornehmen zu können -- aber vorallem beginne und nutze den Kalender."
414
 
415
  #: my-calendar-help.php:57
416
  msgid "The shortcode supports these attributes:"
417
+ msgstr "Die Shortcodes unterstützen folgende Eigenschaften:"
418
 
419
+ #: my-calendar-help.php:67
420
  msgid "Host or comma-separated list of hosts (WordPress usernames or IDs) to show events from."
421
+ msgstr "Gastgeber oder mit Kommas getrennte Liste von Gastgebern (WordPress Benutzernamen oder IDs) um davon Veranstaltungen anzuzeigen"
422
 
423
+ #: my-calendar-help.php:180
424
  msgid "Displays the date on which the series of events began (for recurring events)."
425
+ msgstr "Zeige die Datumwerte an welchen die Veranstaltungen begannen (für abgelehnte Veranstaltungen)."
426
 
427
+ #: my-calendar-help.php:225
428
  msgid "Displays short description with any HTML stripped out."
429
+ msgstr "Zeigt die Kurzbeschreibung ohne jegliches HTML."
430
 
431
+ #: my-calendar-help.php:234
432
  msgid "Displays description with any HTML stripped out."
433
+ msgstr "Zeigt die Beschreibung ohne jegliches HTML."
434
 
435
  #: my-calendar-settings.php:84
436
  msgid "Dropping occurrences database table"
437
+ msgstr "Datenbank Ereignis Tabelle"
438
 
439
  #: my-calendar-settings.php:87
440
  msgid "Reinstalling occurrences database table."
441
+ msgstr "Re-Installierung der Datenbank Ereignis Tabelle."
442
 
443
  #: my-calendar-settings.php:90
444
  msgid "Generating event occurrences."
445
+ msgstr "Erstelle Veranstaltungsereignisse."
446
 
447
  #: my-calendar-settings.php:92
448
  msgid "Event generation completed."
449
+ msgstr "Veranstaltungsdefinition abgeschlossen."
450
 
451
+ #: my-calendar-settings.php:197
452
  msgid "Date/Time Format Settings saved"
453
+ msgstr "Datum/Zeit Format Einstellungen gespeichert"
454
 
455
+ #: my-calendar-event-manager.php:1094 my-calendar-settings.php:356
456
  msgid "Date/Time"
457
  msgstr "Datum/Uhrzeit"
458
 
459
+ #: my-calendar-settings.php:419
 
 
 
 
460
  msgid "Re-generate event occurrences table."
461
+ msgstr "Erzeuge die Veranstaltung Ereignistabelle neu."
462
 
463
  #: my-calendar-settings.php:489
464
  msgid "Calendar Link Targets"
465
+ msgstr "Kalender Link Ziele"
466
 
467
  #: my-calendar-settings.php:503
468
  msgid "Modify date and event link behaviors:"
469
+ msgstr "Modifiziere das Datum und das Verhalten des Veranstaltungslinks:"
470
 
471
  #: my-calendar-settings.php:516
472
  msgid "Show links to alternate formats:"
473
+ msgstr "Zeige Links zu alternativen Formaten:"
474
 
475
+ #: my-calendar-settings.php:634
476
  msgid "Event Scheduling Defaults"
477
+ msgstr "Veranstaltung Terminplanungs Standards"
478
 
479
+ #: my-calendar-settings.php:674
480
  msgid "Calendar Time Formats"
481
+ msgstr "Kalender Zeit Formate"
482
 
483
+ #: my-calendar-settings.php:679
484
  msgid "Set default date/time formats"
485
+ msgstr "Setze Standard Datum/Zeit Format"
486
 
487
+ #: my-calendar-settings.php:683
488
  msgid "Month format (calendar headings)"
489
+ msgstr "Format des Monats (Kalender Kopfzeilen)"
490
 
491
+ #: my-calendar-settings.php:683 my-calendar-settings.php:685
492
+ #: my-calendar-settings.php:688 my-calendar-settings.php:691
493
  msgid "Now:"
494
  msgstr "Jetzt:"
495
 
496
+ #: my-calendar-settings.php:699
497
  msgid "Save Date/Time Settings"
498
+ msgstr "Speichere die Datum/Zeit Einstellungen"
499
 
500
  #: my-calendar-templating.php:31
501
  msgid "RSS Feed Output Template saved"
502
+ msgstr "RSS Feed Ausgabe Template gespeichert"
503
 
504
  #: my-calendar-templating.php:173
505
  msgid "My Calendar: RSS Event Template"
506
+ msgstr "My Calendar: RSS Veranstaltungs Template"
507
 
508
  #: my-calendar-templating.php:175
509
  msgid "Notice: HTML templates are very forgiving of errors. RSS templates are not. Be sure to test your changes."
511
 
512
  #: my-calendar-templating.php:179
513
  msgid "Use this custom RSS event template"
514
+ msgstr "Benutze diese Custom RSS Veranstaltungs Template"
515
 
516
  #: my-calendar-templating.php:182
517
  msgid "Your custom template for events in the RSS feed."
518
+ msgstr "Dein Custom Template für Veranstaltungen im RSS feed."
519
 
520
  #: my-calendar-templating.php:185
521
  msgid "Save RSS Template"
522
+ msgstr "Speichere das RSS Template"
523
 
524
+ #: my-calendar-widgets.php:75 my-calendar-widgets.php:187
525
  msgid "Widget title links to:"
526
+ msgstr "Widget Titel Link nach:"
527
 
528
+ #: my-calendar-widgets.php:91 my-calendar-widgets.php:229
529
  msgid "Host or hosts to show:"
530
+ msgstr "Gastgeber zur Ansicht:"
531
 
532
+ #: my-calendar-widgets.php:683
533
  msgid "Widget Title Link"
534
+ msgstr "Widget Titel Link"
535
 
536
+ #: my-calendar.php:138
537
  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."
538
+ msgstr "Kaufe <a href='http://www.joedolson.com/articles/my-calendar/submissions/' rel='external'>My Calendar: Submissions add-on</a> &mdash; damit Deine Seitenbesucher Dir beim Aufbau des Kalenders helfen können."
539
 
540
+ #: my-calendar.php:177
541
  msgid "Help translate this plug-in!"
542
+ msgstr "Hilf mit beim Übersetzen dieses Plugins!"
543
 
544
+ #: my-calendar-event-manager.php:699
545
  msgid "All day event"
546
+ msgstr "Ganztagesveranstaltung"
547
 
548
  #: my-calendar-categories.php:106 my-calendar-categories.php:146
549
  msgid "Default category changed."
550
+ msgstr "Standard Kategorie wurde geändert."
551
 
552
  #: my-calendar-categories.php:151
553
  msgid "Category edited successfully."
554
+ msgstr "Kategorie wurde erfolgreich bearbeitet."
555
 
556
  #: my-calendar-categories.php:153
557
  msgid "Category was not edited."
558
+ msgstr "Kategorie wurde nicht bearbeitet."
559
 
560
  #: my-calendar-categories.php:230
561
  msgid "Default category"
562
+ msgstr "Standard Kategorie"
563
 
564
  #: my-calendar-categories.php:232
565
  msgid "Private category (logged-in users only)"
566
+ msgstr "Geheim Kategorie (Nur angemeldete Benutzer)"
567
 
568
  #: my-calendar-categories.php:286
569
  msgid "Private"
570
+ msgstr "Geheim"
571
 
572
+ #: my-calendar-event-manager.php:135
573
  msgid "%1$d events approved successfully out of %2$d selected"
574
+ msgstr "%1$d Veranstaltungen von %2$d ausgewählten erfolgreich freigegeben."
575
 
576
+ #: my-calendar-event-manager.php:137
577
  msgid "Your events have not been approved. Please investigate."
578
+ msgstr "Deine Veranstaltungen wurden nicht freigegeben. Bitte untersuchen."
579
 
580
+ #: my-calendar-event-manager.php:315
581
  msgid "Event saved. An administrator will review and approve your event."
582
+ msgstr "Veranstaltung gespeichert. Ein Administrator wird Deine Veranstaltung ansehen und freischalten."
583
 
584
+ #: my-calendar-event-manager.php:358
585
  msgid "Date/time information for this event has been updated."
586
+ msgstr "Datum/Zeit Informationen für diese Veranstaltung wurden übearbeitet."
587
 
588
+ #: my-calendar-event-manager.php:539
589
  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>"
590
+ msgstr "Es entstand ein Fehler bei der Anforderung von Informationen zu dieser Veranstaltungsversion. Die ID für diese Veranstaltungsversion steht nicht zur Verfügung. <strong>Du bearbeitest das komplette Wiederholungs Set.</strong>"
591
 
592
+ #: my-calendar-event-manager.php:707
593
  msgid "Hide end time"
594
+ msgstr "Verstecke das Ende der Veranstaltung"
595
 
596
+ #: my-calendar-event-manager.php:722
597
  msgid "Dates for this event:"
598
+ msgstr "Datumsangaben für diese Veranstaltung:"
599
 
600
+ #: my-calendar-event-manager.php:723
601
  msgid "Editing a single date of an event changes only that event. Editing the root event changes all events in the series."
602
+ msgstr "Die Bearbeitung einer Einzelveranstaltung ändert auch nur diese. Wenn die Ursprungsveranstaltung geändert wird, werden alle Veranstaltungen der Serie geändert."
603
 
604
+ #: my-calendar-event-manager.php:733
605
  msgid "Related Events:"
606
+ msgstr "Veranstaltungen mit Bezug:"
607
 
608
+ #: my-calendar-event-manager.php:733
609
  msgid "Edit group"
610
+ msgstr "Bearbeite die Gruppe"
611
 
612
+ #: my-calendar-event-manager.php:850
613
  msgid "Copy this location into the locations table"
614
+ msgstr "Kopiere diesen Ort in die Orte Tabelle"
615
 
616
+ #: my-calendar-event-manager.php:1025
617
  msgid "Clear filters"
618
+ msgstr "Lösche die Filter"
619
 
620
+ #: my-calendar-event-manager.php:1064
621
  msgid "&laquo; Previous Page"
622
+ msgstr "&laquo; Vorherige Seite"
623
 
624
+ #: my-calendar-event-manager.php:1065
625
  msgid "Next Page &raquo;"
626
+ msgstr "Nächste Seite &raquo;"
627
 
628
+ #: my-calendar-event-manager.php:1154
629
  msgid "Filter by location"
630
+ msgstr "Ortsfilter"
631
 
632
+ #: my-calendar-event-manager.php:1182
633
  msgid "Filter by author"
634
+ msgstr "Filter Autor"
635
 
636
+ #: my-calendar-event-manager.php:1191
637
  msgid "Filter by category"
638
+ msgstr "Filter Kategorie"
639
 
640
+ #: my-calendar-event-manager.php:1084 my-calendar-event-manager.php:1201
641
  msgid "Approve checked events"
642
+ msgstr "Überprüfe diese Veranstaltungen"
643
 
644
+ #: my-calendar-event-manager.php:1414
645
  msgid "That event conflicts with a previously scheduled event."
646
+ msgstr "Diese Veranstaltung überschneidet sich mit einer vorher eingestellten Veranstaltung."
647
 
648
+ #: my-calendar-event-manager.php:1603
649
  msgid "Editing: "
650
+ msgstr "Bearbeitung:"
651
 
652
+ #: my-calendar-event-manager.php:1639 my-calendar-event-manager.php:1652
653
  msgid "No related events"
654
+ msgstr "Keine betroffenen Veranstaltungen"
655
+
656
+ #: my-calendar-group-manager.php:314 my-calendar-group-manager.php:322
657
+ #: my-calendar-group-manager.php:328 my-calendar-group-manager.php:341
658
+ #: my-calendar-group-manager.php:353 my-calendar-group-manager.php:357
659
+ #: my-calendar-group-manager.php:376 my-calendar-group-manager.php:388
660
+ #: my-calendar-group-manager.php:402 my-calendar-group-manager.php:462
661
+ #: my-calendar-group-manager.php:465 my-calendar-group-manager.php:468
662
+ #: my-calendar-group-manager.php:471 my-calendar-group-manager.php:474
663
+ #: my-calendar-group-manager.php:477 my-calendar-group-manager.php:478
664
+ #: my-calendar-group-manager.php:481 my-calendar-group-manager.php:484
665
+ #: my-calendar-group-manager.php:495 my-calendar-group-manager.php:503
666
  msgid "Fields do not match"
667
+ msgstr "Felder passen nicht"
668
 
669
+ #: my-calendar-group-manager.php:724
670
  msgid "Grouped Events"
671
  msgstr ""
672
 
673
+ #: my-calendar-group-manager.php:725
674
  msgid "Ungrouped Events"
675
  msgstr ""
676
 
677
+ #: my-calendar-help.php:66
678
  msgid "Author or comma-separated list of authors (usernames or IDs) to show events from."
679
  msgstr ""
680
 
681
+ #: my-calendar-help.php:80
682
  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."
683
  msgstr ""
684
 
685
+ #: my-calendar-help.php:84
686
  msgid "Predictably enough, this shortcode displays the output of the Today's Events widget, with four configurable attributes: category, author, template and fallback text."
687
  msgstr ""
688
 
689
+ #: my-calendar-help.php:91
690
  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"
691
  msgstr ""
692
 
693
+ #: my-calendar-help.php:103
694
  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."
695
  msgstr ""
696
 
697
+ #: my-calendar-help.php:192
698
  msgid "Displays the beginning and end times for events. Does not show end time if same as start or if marked as hidden."
699
  msgstr ""
700
 
701
+ #: my-calendar-help.php:300
702
  msgid "Output the stored phone number for the location."
703
  msgstr ""
704
 
705
+ #: my-calendar-settings.php:188
706
  msgid "Visit your <a href=\"%s\">permalinks settings</a> and re-save them."
707
  msgstr ""
708
 
709
+ #: my-calendar-settings.php:386
710
  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."
711
  msgstr ""
712
 
714
  msgid "iCal times are UTC"
715
  msgstr ""
716
 
717
+ #: my-calendar-settings.php:579
718
  msgid "Show author's name"
719
  msgstr ""
720
 
721
+ #: my-calendar-settings.php:582
722
  msgid "Show link to single event iCal download"
723
  msgstr ""
724
 
725
+ #: my-calendar-settings.php:588
726
  msgid "Show category icons"
727
  msgstr ""
728
 
729
+ #: my-calendar-settings.php:597
730
  msgid "Show short description"
731
+ msgstr "Zeige Kurzbeschreibung"
732
 
733
+ #: my-calendar-settings.php:600
734
  msgid "Show full description"
735
+ msgstr "Zeige ganze Beschreibung"
 
 
 
 
736
 
737
+ #: my-calendar-settings.php:606
738
  msgid "Show link to single-event details (requires <a href='#mc_uri'>URL</a>)"
739
+ msgstr "Zeige Link zu den Veranstaltungs-Details (benötigt <a href='#mc_uri'>URL</a>)"
740
 
741
+ #: my-calendar-settings.php:609
742
  msgid "Show external link"
743
+ msgstr "Zeige externen Link"
 
 
 
 
 
 
 
 
 
 
 
 
744
 
745
+ #: my-calendar-settings.php:719 my-calendar.php:389
746
  msgid "Set Special Scheduling options"
747
+ msgstr "Setze spezielle Termin Optionen"
748
 
749
  #: my-calendar-styles.php:84
750
  msgid "Styles are disabled, and were not edited."
751
+ msgstr "Styles sind abgeschaltet und werden nicht bearbeitet."
752
 
753
  #: my-calendar-styles.php:197
754
  msgid "Apply CSS on these pages (comma separated IDs)"
755
+ msgstr "Wende CSS auf diesen Seiten an (Komma getrennte ID's)"
756
 
757
+ #: my-calendar-widgets.php:87 my-calendar-widgets.php:225
758
  msgid "Author or authors to show:"
759
+ msgstr "Autor(en):"
760
 
761
+ #: my-calendar.php:136
762
  msgid "My Calendar: Submissions"
763
+ msgstr "My Calendar: Terminmeldung"
764
 
765
+ #: my-calendar.php:139
766
  msgid "Learn more!"
767
+ msgstr "Lerne mehr!"
768
 
769
+ #: my-calendar.php:362
770
  msgid "Event Submissions"
771
+ msgstr "Veranstaltungen anmelden"
772
 
773
+ #: my-calendar.php:363
774
  msgid "Payments"
775
+ msgstr "Bezahlarten"
776
 
777
  #: button/generator.php:12
778
  msgid "You don't have access to this function."
782
  msgid "My Calendar Shortcode Generator"
783
  msgstr "My Calendar Shortcodegenerator."
784
 
785
+ #: button/generator.php:50
786
  msgid "Shortcode Attributes"
787
  msgstr "Shortcode-Attribute"
788
 
789
+ #: button/generator.php:55
790
  msgid "Location filter type:"
791
  msgstr "Art des Ortfilters:"
792
 
793
+ #: button/generator.php:57
794
  msgid "All locations"
795
  msgstr "Alle Orte"
796
 
797
+ #: button/generator.php:58 my-calendar-settings.php:404
798
+ #: my-calendar-settings.php:939
799
  msgid "Location Name"
800
  msgstr "Standort-Name"
801
 
802
+ #: button/generator.php:59 my-calendar-event-manager.php:870
803
+ #: my-calendar-group-manager.php:474 my-calendar-locations.php:152
804
+ #: my-calendar-settings.php:940
805
  msgid "City"
806
  msgstr "Stadt"
807
 
808
+ #: button/generator.php:60 my-calendar-event-manager.php:917
809
+ #: my-calendar-group-manager.php:490 my-calendar-locations.php:197
810
  msgid "State"
811
  msgstr "Bundesland"
812
 
813
+ #: button/generator.php:61 my-calendar-event-manager.php:886
814
+ #: my-calendar-group-manager.php:477 my-calendar-locations.php:168
815
+ #: my-calendar-settings.php:943
816
  msgid "Postal Code"
817
  msgstr "Postleitzahl"
818
 
819
+ #: button/generator.php:62 my-calendar-event-manager.php:902
820
+ #: my-calendar-group-manager.php:481 my-calendar-locations.php:184
821
+ #: my-calendar-settings.php:942
822
  msgid "Country"
823
  msgstr "Land"
824
 
825
+ #: button/generator.php:63 my-calendar-event-manager.php:893
826
+ #: my-calendar-event-manager.php:918 my-calendar-group-manager.php:478
827
+ #: my-calendar-group-manager.php:491 my-calendar-locations.php:175
828
+ #: my-calendar-locations.php:198 my-calendar-settings.php:944
829
  msgid "Region"
830
  msgstr "Region"
831
 
832
+ #: button/generator.php:67
833
  msgid "Location filter value:"
834
  msgstr "Ortfilter-Wert:"
835
 
836
+ #: button/generator.php:71
837
  msgid "Format"
838
  msgstr "Format"
839
 
840
+ #: button/generator.php:73
841
  msgid "Grid"
842
  msgstr "Raster"
843
 
844
+ #: button/generator.php:74
845
  msgid "List"
846
  msgstr "Liste"
847
 
848
+ #: button/generator.php:86
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
849
  msgid "Time Segment"
850
  msgstr "Zeitabschnitt"
851
 
852
+ #: button/generator.php:88 my-calendar-output.php:390
853
+ #: my-calendar-output.php:501 my-calendar-output.php:508
854
+ #: my-calendar-output.php:514 my-calendar-widgets.php:723
855
  msgid "Month"
856
  msgstr "Monat"
857
 
858
+ #: button/generator.php:89 my-calendar-output.php:502
859
+ #: my-calendar-output.php:510 my-calendar-output.php:516
860
+ #: my-calendar-widgets.php:724
861
  msgid "Week"
862
  msgstr "Woche"
863
 
864
+ #: button/generator.php:90 my-calendar-output.php:504
865
+ #: my-calendar-output.php:511 my-calendar-output.php:518
866
  msgid "Day"
867
  msgstr "Tag"
868
 
869
+ #: button/generator.php:116
870
  msgid "Generate Shortcode"
871
  msgstr "Shortcode machen"
872
 
873
+ #: button/generator.php:118
874
  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\")"
875
  msgstr "<strong>Achtung:</strong>Wenn Sie einem Ortfilter Wert geben, muss er zu den gespeicherten Events Informationen genau passen. (z.B. \"Saint Paul\" passt nicht zu \"saint paul\" oder \"St. Paul\")"
876
 
877
+ #: button/generator.php:128
878
  msgid "My Calendar: this generator isn't going to put the shortcode in your page. Sorry!"
879
  msgstr "My Calendar: diese Generator wird keine Shortcode auf Ihre Seite stellen."
880
 
1073
  msgid "Category List"
1074
  msgstr "Kategorieliste"
1075
 
1076
+ #: my-calendar-categories.php:266 my-calendar.php:349
1077
  msgid "Manage Categories"
1078
  msgstr "Kategorien verwalten"
1079
 
1080
+ #: my-calendar-categories.php:282 my-calendar-event-manager.php:1091
1081
+ #: my-calendar-group-manager.php:745 my-calendar-locations.php:288
1082
  msgid "ID"
1083
  msgstr "ID"
1084
 
1087
  msgstr "Kategorie-Farbe"
1088
 
1089
  #: my-calendar-categories.php:287 my-calendar-categories.php:303
1090
+ #: my-calendar-event-manager.php:1131 my-calendar-locations.php:290
1091
+ #: my-calendar-locations.php:302 my-calendar-output.php:325
 
1092
  msgid "Edit"
1093
  msgstr "Editieren"
1094
 
1095
  #: my-calendar-categories.php:288 my-calendar-categories.php:309
1096
+ #: my-calendar-event-manager.php:37 my-calendar-event-manager.php:1134
1097
  #: my-calendar-locations.php:291 my-calendar-locations.php:303
1098
+ #: my-calendar-output.php:326
1099
  msgid "Delete"
1100
  msgstr "Löschen"
1101
 
1102
+ #: my-calendar-categories.php:306 my-calendar-group-manager.php:810
1103
+ #: my-calendar-output.php:206 my-calendar-settings.php:443
 
1104
  msgid "N/A"
1105
  msgstr "n/v"
1106
 
1112
  msgid "There are no categories in the database - something has gone wrong!"
1113
  msgstr "Es sind keine Kategorie in der Datenbank - etwas lief schief!"
1114
 
1115
+ #: my-calendar-core.php:69 my-calendar.php:356
1116
  msgid "Settings"
1117
  msgstr "Einstellungen"
1118
 
1119
+ #: my-calendar-core.php:70 my-calendar.php:357
1120
  msgid "Help"
1121
  msgstr "Hilfe"
1122
 
1123
+ #: my-calendar-core.php:265
1124
  msgid "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href=\"%1$s\">changelog</a> before upgrading."
1125
  msgstr "<br /><strong>Achtung:</strong> Bitte, bevor upgraden, die <a class=\"thickbox\" href=\"%1$s\">changelog</a> nachprüfen ."
1126
 
1127
+ #: my-calendar-core.php:1112 my-calendar-event-manager.php:267
1128
  msgid "Add Event"
1129
  msgstr "Event hinzufügen"
1130
 
1131
+ #: my-calendar-core.php:1375
1132
  msgid "Is this your calendar page?"
1133
  msgstr "Ist das Ihre Kalender Seite?"
1134
 
1135
+ #: my-calendar-core.php:1378
1136
  msgid "I tried to guess, but don't have a suggestion for you."
1137
  msgstr "Ich habe versucht zu erraten, aber habe keinen Vorschlag für Sie."
1138
 
1139
+ #: my-calendar-core.php:1477
1140
  msgid "Please read the FAQ and other Help documents before making a support request."
1141
  msgstr "Bitte lies die FAQ und andere Hilfeseiten, bevor du eine Support-Anfrage machst."
1142
 
1143
+ #: my-calendar-core.php:1479
1144
  msgid "Please describe your problem in detail. I'm not psychic."
1145
  msgstr "Bitte beschreib dein Problem in allen Details. Ich kann keine Gedanken lesen."
1146
 
1147
+ #: my-calendar-core.php:1484
1148
  msgid "Thank you for supporting the continuing development of this plug-in! I'll get back to you as soon as I can."
1149
  msgstr "Danke, dass du die weitere Entwicklung des Plugins unterstützt! Ich komme so bald wie möglich auf dich zurück."
1150
 
1151
+ #: my-calendar-core.php:1486
1152
  msgid "I'll get back to you as soon as I can, after dealing with any support requests from plug-in supporters."
1153
+ msgstr "I werde mich so schnell es geht zurückmelden, nachdem alle anstehenden Support Anfragen bearbeitet wurden."
1154
 
1155
+ #: my-calendar-core.php:1496
1156
  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>"
1157
+ msgstr "Zur Info: Ich behalte Datensätze von denen die per Donation bezahlt haben. <strong>Sollte Deine Donation von einem anderen Account als von Deinem eigenen kommen, gib das bitte in Deiner Nachricht an. </strong>"
1158
 
1159
+ #: my-calendar-core.php:1498
1160
  msgid "From:"
1161
  msgstr "Von:"
1162
 
1163
+ #: my-calendar-core.php:1501
1164
  msgid "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">the FAQ for this plug-in</a>."
1165
  msgstr "Ich habe die <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">FAQ für dieses Plugin</a> gelesen."
1166
 
1167
+ #: my-calendar-core.php:1504
1168
  msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
1169
  msgstr "Ich habe <a href=\"http://www.joedolson.com/donate.php\">gespendet, um das Plugin zu unterstützen</a>."
1170
 
1171
+ #: my-calendar-core.php:1507
1172
  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."
1173
  msgstr "Ich habe den<a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">User's Guide gekauft</a>, konnte aber keine Antwort auf meine Frage finden."
1174
 
1175
+ #: my-calendar-core.php:1513
1176
  msgid "Send Support Request"
1177
  msgstr "Support-Anfrage senden"
1178
 
1179
+ #: my-calendar-core.php:1516
1180
  msgid "The following additional information will be sent with your support request:"
1181
  msgstr "Die folgenden zusätzlichen Daten werden mit deiner Support-Anfrage gesendet:"
1182
 
1183
+ #: my-calendar-event-manager.php:169 my-calendar-settings.php:333
1184
  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?"
1185
  msgstr "My Calender hat erkannt, dass sie das Kalenderplugin von Kieran O'Shea installiert haben - wollen sie diese Events und Kategorien importieren?"
1186
 
1187
+ #: my-calendar-event-manager.php:176 my-calendar-settings.php:339
1188
  msgid "Import from Calendar"
1189
  msgstr "Importieren von Calender"
1190
 
1191
+ #: my-calendar-event-manager.php:181
1192
  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>!"
1193
  msgstr "Trotzdem kann es sein, dass der Import fehlschlägt, dies wird aber keine Auswirkungen auf die existierende Kalender-Datenbank haben. Wenn sie ein Problem gefunden haben, schreiben sie eine eMail an <a href=\"http://www.joedolson.com/contact.php\">please contact me</a>!"
1194
 
1195
+ #: my-calendar-event-manager.php:105
1196
  msgid "%1$d events deleted successfully out of %2$d selected"
1197
  msgstr "%1$d Events erfolgreich gelöscht, von %2$d ausgewählten"
1198
 
1199
+ #: my-calendar-event-manager.php:107 my-calendar-event-manager.php:137
1200
+ #: my-calendar-event-manager.php:305 my-calendar-event-manager.php:379
1201
+ #: my-calendar-event-manager.php:397 my-calendar-event-manager.php:416
1202
+ #: my-calendar-event-manager.php:1366 my-calendar-event-manager.php:1369
1203
+ #: my-calendar-event-manager.php:1379 my-calendar-event-manager.php:1386
1204
+ #: my-calendar-event-manager.php:1402 my-calendar-event-manager.php:1409
1205
+ #: my-calendar-event-manager.php:1414 my-calendar-group-manager.php:58
1206
+ #: my-calendar-group-manager.php:84 my-calendar-group-manager.php:162
1207
+ #: my-calendar-group-manager.php:599
1208
  msgid "Error"
1209
  msgstr "Fehler"
1210
 
1211
+ #: my-calendar-event-manager.php:107
1212
  msgid "Your events have not been deleted. Please investigate."
1213
  msgstr "Ihre Events wurden nicht gelöscht. Bitte untersuchen."
1214
 
1215
+ #: my-calendar-event-manager.php:26
1216
  msgid "Delete Event"
1217
  msgstr "Event löschen"
1218
 
1219
+ #: my-calendar-event-manager.php:26
1220
  msgid "Are you sure you want to delete this event?"
1221
  msgstr "Sind sie sicher, dass sie das Event löschen wollen?"
1222
 
1223
+ #: my-calendar-event-manager.php:42
1224
  msgid "You do not have permission to delete that event."
1225
  msgstr "Sie haben keine Rechte das Event zu löschen!"
1226
 
1227
+ #: my-calendar-event-manager.php:56
1228
  msgid "You do not have permission to approve that event."
1229
  msgstr "Sie haben keine Berechtigung, diesen Event zu genehmigen."
1230
 
1231
+ #: my-calendar-event-manager.php:71
1232
  msgid "You do not have permission to reject that event."
1233
  msgstr "Sie haben keine Berechtigung, diesen Event abzulehnen."
1234
 
1235
+ #: my-calendar-event-manager.php:238
1236
  msgid "Currently editing your local calendar"
1237
  msgstr "Zurzeit wird Ihre Lokalkalender bearbeitet."
1238
 
1239
+ #: my-calendar-event-manager.php:240
1240
  msgid "Currently editing your central calendar"
1241
  msgstr "Zurzeit wird Ihre Zentralkalender bearbeitet."
1242
 
1243
+ #: my-calendar-event-manager.php:248 my-calendar-group-manager.php:782
1244
  msgid "Edit Event"
1245
  msgstr "Event editieren"
1246
 
1247
+ #: my-calendar-event-manager.php:251 my-calendar-event-manager.php:260
1248
  msgid "You must provide an event id in order to edit it"
1249
  msgstr "Sie müssen eine event-id angeben um ein Event zu editieren"
1250
 
1251
+ #: my-calendar-event-manager.php:257
1252
  msgid "Copy Event"
1253
  msgstr "Event kopieren"
1254
 
1255
+ #: my-calendar-event-manager.php:305
1256
  msgid "I'm sorry! I couldn't add that event to the database."
1257
  msgstr "Es tut mir leid! Ich konnte den Event nicht der Datenbank hinzufügen."
1258
 
1259
+ #: my-calendar-event-manager.php:326 my-calendar-group-manager.php:56
1260
+ #: my-calendar-group-manager.php:160
 
 
 
 
1261
  msgid "View <a href=\"%s\">your calendar</a>."
1262
  msgstr "<a href=\"%s\">Deinen Kalender ansehen</a>."
1263
 
1264
+ #: my-calendar-event-manager.php:379 my-calendar-group-manager.php:162
1265
  msgid "Your event was not updated."
1266
  msgstr "Ihr Event wurde nicht aktualisiert"
1267
 
1268
+ #: my-calendar-event-manager.php:354 my-calendar-event-manager.php:381
1269
  #: my-calendar-group-manager.php:60 my-calendar-group-manager.php:86
1270
+ #: my-calendar-group-manager.php:164
1271
  msgid "Nothing was changed in that update."
1272
  msgstr "In diesem Update gab es keine Änderungen"
1273
 
1274
+ #: my-calendar-event-manager.php:386 my-calendar-group-manager.php:62
1275
+ #: my-calendar-group-manager.php:166
1276
  msgid "Event updated successfully"
1277
  msgstr "Event erfolgreich aktualisert"
1278
 
1279
+ #: my-calendar-event-manager.php:390 my-calendar-group-manager.php:170
1280
  msgid "You do not have sufficient permissions to edit that event."
1281
  msgstr "Sie haben keine ausreichenden Rechte um das Event zu ändern."
1282
 
1283
+ #: my-calendar-event-manager.php:397
1284
  msgid "You can't delete an event if you haven't submitted an event id"
1285
  msgstr "Sie können kein Event löschen, wenn sie nicht die event-id eingegeben haben"
1286
 
1287
+ #: my-calendar-event-manager.php:414
1288
  msgid "Event deleted successfully"
1289
  msgstr "Event erfolgreich gelöscht"
1290
 
1291
+ #: my-calendar-event-manager.php:416
1292
  msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
1293
  msgstr "Trotz des Versuchts das Event zu löschen befindet es sich noch in der Datenbank, bitte untersuchen sie das Problem"
1294
 
1295
+ #: my-calendar-event-manager.php:429 my-calendar-group-manager.php:182
1296
  msgid "Sorry! That's an invalid event key."
1297
  msgstr "Entschuldigung, das ist ein falscher Event-Schlüssel."
1298
 
1299
+ #: my-calendar-event-manager.php:433 my-calendar-group-manager.php:186
1300
  msgid "Sorry! We couldn't find an event with that ID."
1301
  msgstr "Entschuldigung, wir konnten mit kein Event mit dieser ID finden."
1302
 
1303
+ #: my-calendar-event-manager.php:458
1304
  msgid "This event must be approved in order for it to appear on the calendar."
1305
  msgstr "Dieses Ereignis muss genehmigt werden, damit es im Kalender erscheint."
1306
 
1307
+ #: my-calendar-event-manager.php:526
1308
  msgid "Add/Edit Event"
1309
  msgstr "Event hinzufügen / bearbeiten"
1310
 
1311
+ #: my-calendar-event-manager.php:529 my-calendar-event-manager.php:964
1312
  msgid "Save Event"
1313
  msgstr "Event speichern"
1314
 
1315
+ #: my-calendar-event-manager.php:543 my-calendar-group-manager.php:312
1316
  msgid "Enter your Event Information"
1317
  msgstr "Geben sie ihre Eventinformationen ein"
1318
 
1319
+ #: my-calendar-event-manager.php:545 my-calendar-group-manager.php:314
1320
  msgid "Event Title"
1321
  msgstr "Event Titel"
1322
 
1323
+ #: my-calendar-event-manager.php:545 my-calendar-event-manager.php:693
1324
+ #: my-calendar-group-manager.php:314
1325
  msgid "(required)"
1326
  msgstr "(erforderlich)"
1327
 
1328
+ #: my-calendar-event-manager.php:550
1329
  msgid "Publish"
1330
  msgstr "Veröffentlichen"
1331
 
1332
+ #: my-calendar-event-manager.php:550
1333
  msgid "You must approve this event to promote it to the calendar."
1334
  msgstr "Sie müssen dem Event zustimmen, um ihn in den Kalender zu befördern."
1335
 
1336
+ #: my-calendar-event-manager.php:552
1337
  msgid "An administrator must approve your new event."
1338
  msgstr "Ein Administrator muss Ihren neuen Event genehmigen."
1339
 
1340
+ #: my-calendar-event-manager.php:567
1341
  msgid "This event is not spam"
1342
  msgstr "Dieses Event ist kein Spam"
1343
 
1344
+ #: my-calendar-event-manager.php:582 my-calendar-group-manager.php:328
1345
  msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
1346
  msgstr "Event Beschreibung (<abbr title=\"hypertext markup language\">HTML</abbr> erlaubt)"
1347
 
1348
+ #: my-calendar-event-manager.php:603 my-calendar-event-manager.php:616
1349
+ #: my-calendar-group-manager.php:339 my-calendar-group-manager.php:347
1350
  msgid "This event's image:"
1351
  msgstr "Bild für dieses Event:"
1352
 
1353
+ #: my-calendar-event-manager.php:605 my-calendar-group-manager.php:341
1354
  msgid "Add an image:"
1355
  msgstr "Bild hinzufügen:"
1356
 
1357
+ #: my-calendar-event-manager.php:607
1358
  msgid "(URL to Event image)"
1359
  msgstr "(URL zum Event-Bild)"
1360
 
1361
+ #: my-calendar-event-manager.php:609 my-calendar-group-manager.php:341
1362
  msgid "Upload Image"
1363
  msgstr "Bild hochladen"
1364
 
1365
+ #: my-calendar-event-manager.php:609 my-calendar-group-manager.php:341
1366
  msgid "Include your image URL or upload an image."
1367
  msgstr "Bild-Adresse angeben oder Bild hochladen."
1368
 
1369
+ #: my-calendar-event-manager.php:622 my-calendar-group-manager.php:353
1370
  msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
1371
  msgstr "Event Kurzbeschreibung (<abbr title=\"hypertext markup language\">HTML</abbr> erlaubt)"
1372
 
1373
+ #: my-calendar-event-manager.php:626 my-calendar-group-manager.php:357
1374
  msgid "Event Host"
1375
  msgstr "Event-Gastgeber"
1376
 
1377
+ #: my-calendar-event-manager.php:645 my-calendar-group-manager.php:376
1378
  msgid "Event Category"
1379
  msgstr "Event Kategorie"
1380
 
1381
+ #: my-calendar-event-manager.php:657 my-calendar-group-manager.php:388
1382
  msgid "Event Link (Optional)"
1383
  msgstr "Event Link (optional)"
1384
 
1385
+ #: my-calendar-event-manager.php:657 my-calendar-group-manager.php:388
1386
  msgid "This link will expire when the event passes."
1387
  msgstr "Dieser Link wird ungültig, wenn das Event vorrüber ist."
1388
 
1389
+ #: my-calendar-event-manager.php:667 my-calendar-event-manager.php:675
1390
  msgid "Event Date and Time"
1391
  msgstr "Event-Datum und -Zeit"
1392
 
1393
+ #: my-calendar-event-manager.php:693
1394
  msgid "Start Date (YYYY-MM-DD)"
1395
  msgstr "Start Datum (JJJJ-MM-TT)"
1396
 
1397
+ #: my-calendar-event-manager.php:693
1398
  msgid "Time (hh:mm am/pm)"
1399
  msgstr "Zeit (SS:MM)"
1400
 
1401
+ #: my-calendar-event-manager.php:702
1402
  msgid "End Date (YYYY-MM-DD)"
1403
  msgstr "Ende-Datum (YYYY-MM-DD)"
1404
 
1405
+ #: my-calendar-event-manager.php:702
1406
  msgid "End Time (hh:mm am/pm)"
1407
  msgstr "Endzeit (SS:MM)"
1408
 
1409
+ #: my-calendar-event-manager.php:713
1410
  msgid "This is a multi-day event."
1411
  msgstr "Dies ist ein Event, das mehrere Tage dauert."
1412
 
1413
+ #: my-calendar-event-manager.php:715
1414
  msgid "Enter the beginning and ending dates/times for each occurrence of the event."
1415
  msgstr "Gib die Anfangs- und Endzeiten für jedes Auftreten des Events ein."
1416
 
1417
+ #: my-calendar-event-manager.php:715
1418
  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."
1419
  msgstr "Wenn dies ein Event ist, das mehrere Tage dauert, wird es ein einziges Event mit mehreren Zeiten erstellen, ansonsten ein einzelnes für jedes Auftreten."
1420
 
1421
+ #: my-calendar-event-manager.php:717
1422
  msgid "Add another occurrence"
1423
  msgstr "Weiteres Auftreten hinzufügen"
1424
 
1425
+ #: my-calendar-event-manager.php:718
1426
  msgid "Remove last occurrence"
1427
  msgstr "Letztes Auftreten löschen"
1428
 
1429
+ #: my-calendar-event-manager.php:740
1430
  msgid "Current time difference from GMT is "
1431
  msgstr "Aktuelle Zeitdifferenz vom GMT ist "
1432
 
1433
+ #: my-calendar-event-manager.php:740
1434
  msgid " hour(s)"
1435
  msgstr "Stunde(n)"
1436
 
1437
+ #: my-calendar-event-manager.php:750 my-calendar-event-manager.php:764
1438
  msgid "Recurring Events"
1439
  msgstr "Wiederkehrende Events"
1440
 
1441
+ #: my-calendar-event-manager.php:769
 
 
 
 
1442
  msgid "Units"
1443
  msgstr "Einheiten"
1444
 
1445
+ #: my-calendar-core.php:1536 my-calendar-templates.php:173
1446
  msgid "Does not recur"
1447
  msgstr "Erscheint nicht"
1448
 
1449
+ #: my-calendar-event-manager.php:1167 my-calendar-group-manager.php:802
1450
+ #: my-calendar-templates.php:174
1451
  msgid "Daily"
1452
  msgstr "täglich"
1453
 
1454
+ #: my-calendar-templates.php:175
1455
  msgid "Daily, weekdays only"
1456
  msgstr "Täglich, nur Wochentage"
1457
 
1458
+ #: my-calendar-event-manager.php:1169 my-calendar-group-manager.php:804
1459
+ #: my-calendar-templates.php:176
1460
  msgid "Weekly"
1461
  msgstr "wöchentlich"
1462
 
1463
+ #: my-calendar-templates.php:177
1464
  msgid "Bi-weekly"
1465
  msgstr "aller zwei Wochen"
1466
 
1467
+ #: my-calendar-templates.php:180
 
 
 
 
 
 
 
 
1468
  msgid "Annually"
1469
  msgstr "jährlich"
1470
 
1471
+ #: my-calendar-event-manager.php:772
1472
  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."
1473
  msgstr "Deine Eingabe ist die Anzahl von Events nach dem ersten Auftreten: eine Eingabe von <em>2</em> bedeutet, dass es drei Mal stattfindet."
1474
 
1475
+ #: my-calendar-event-manager.php:793
1476
  msgid "Event Registration Settings"
1477
  msgstr "Event-Registrierungseinstellungen"
1478
 
1479
+ #: my-calendar-event-manager.php:796 my-calendar-group-manager.php:402
1480
  msgid "Event Registration Status"
1481
  msgstr "Registierungsstatus des Events"
1482
 
1483
+ #: my-calendar-event-manager.php:797 my-calendar-group-manager.php:403
1484
  msgid "My Calendar does not manage event registrations. Use this for information only."
1485
  msgstr "My Calendar bewältigt keine Event-Registrierungen. Verwenden Sie diese nur zur Information."
1486
 
1487
+ #: my-calendar-event-manager.php:799 my-calendar-group-manager.php:405
1488
  msgid "Open"
1489
  msgstr "offen"
1490
 
1491
+ #: my-calendar-event-manager.php:800 my-calendar-group-manager.php:406
1492
  msgid "Closed"
1493
  msgstr "geschlossen"
1494
 
1495
+ #: my-calendar-event-manager.php:801 my-calendar-group-manager.php:407
1496
  msgid "Does not apply"
1497
  msgstr "wird nicht angenommen"
1498
 
1499
+ #: my-calendar-event-manager.php:804 my-calendar-group-manager.php:410
1500
  msgid "If this event recurs, it can only be registered for as a complete series."
1501
  msgstr "Wenn dieser Event auftritt, kann er nur für eine komplette Serie registriert werden."
1502
 
1503
+ #: my-calendar-event-manager.php:821 my-calendar-event-manager.php:824
1504
+ #: my-calendar-group-manager.php:427 my-calendar-group-manager.php:430
1505
  #: my-calendar-locations.php:129
1506
  msgid "Event Location"
1507
  msgstr "Veranstaltungsort"
1508
 
1509
+ #: my-calendar-event-manager.php:831 my-calendar-group-manager.php:437
1510
  msgid "Choose a preset location:"
1511
  msgstr "Einen vordefinierten Ort auswählen"
1512
 
1513
+ #: my-calendar-event-manager.php:841 my-calendar-group-manager.php:450
1514
  msgid "Add recurring locations for later use."
1515
  msgstr "Wiederkehrenden Ort für spätere benutzung hinzufügen"
1516
 
1517
+ #: my-calendar-event-manager.php:848 my-calendar-group-manager.php:459
1518
  #: my-calendar-locations.php:131
1519
  msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
1520
  msgstr "Alle Felder sind optional (können aber in einem Kartenfehler resultieren)."
1521
 
1522
+ #: my-calendar-event-manager.php:852 my-calendar-group-manager.php:462
1523
  #: my-calendar-locations.php:134
1524
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
1525
  msgstr "Name des Orts"
1526
 
1527
+ #: my-calendar-event-manager.php:861 my-calendar-group-manager.php:465
1528
  #: my-calendar-locations.php:143
1529
  msgid "Street Address"
1530
  msgstr "Straßenname"
1531
 
1532
+ #: my-calendar-event-manager.php:864 my-calendar-group-manager.php:468
1533
  #: my-calendar-locations.php:146
1534
  msgid "Street Address (2)"
1535
  msgstr "Straßenname (2)"
1536
 
1537
+ #: my-calendar-event-manager.php:867 my-calendar-group-manager.php:471
1538
  #: my-calendar-locations.php:149
1539
  msgid "Phone"
1540
  msgstr "Telefon"
1541
 
1542
+ #: my-calendar-event-manager.php:877 my-calendar-group-manager.php:474
1543
+ #: my-calendar-locations.php:159 my-calendar-settings.php:941
1544
  msgid "State/Province"
1545
  msgstr "Bundesland/Provinz"
1546
 
1547
+ #: my-calendar-event-manager.php:911 my-calendar-group-manager.php:484
1548
  #: my-calendar-locations.php:191
1549
  msgid "Initial Zoom"
1550
  msgstr "Zoomstufe"
1551
 
1552
+ #: my-calendar-event-manager.php:913 my-calendar-group-manager.php:486
1553
  #: my-calendar-locations.php:193
1554
  msgid "Neighborhood"
1555
  msgstr "Nachbarschaft"
1556
 
1557
+ #: my-calendar-event-manager.php:914 my-calendar-group-manager.php:487
1558
  #: my-calendar-locations.php:194
1559
  msgid "Small City"
1560
  msgstr "Kleinstadt"
1561
 
1562
+ #: my-calendar-event-manager.php:915 my-calendar-group-manager.php:488
1563
  #: my-calendar-locations.php:195
1564
  msgid "Large City"
1565
  msgstr "Großstadt"
1566
 
1567
+ #: my-calendar-event-manager.php:916 my-calendar-group-manager.php:489
1568
  #: my-calendar-locations.php:196
1569
  msgid "Greater Metro Area"
1570
  msgstr "Größeres Ballungsgebiet"
1571
 
1572
+ #: my-calendar-event-manager.php:922 my-calendar-group-manager.php:495
1573
  msgid "Location URL"
1574
  msgstr "Ort-URL"
1575
 
1576
+ #: my-calendar-event-manager.php:925 my-calendar-group-manager.php:498
1577
  #: my-calendar-locations.php:205
1578
  msgid "GPS Coordinates (optional)"
1579
  msgstr "GPS Koordinaten (optional)"
1580
 
1581
+ #: my-calendar-event-manager.php:927 my-calendar-group-manager.php:500
1582
  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."
1583
  msgstr "Wenn Sie GPS-Koordinaten für Ihren Standort hinzufügen, werden diese an Stelle von anderen Adressinformationen für Ihren Karten-Link verwendet."
1584
 
1585
+ #: my-calendar-event-manager.php:930 my-calendar-group-manager.php:503
1586
  #: my-calendar-locations.php:210
1587
  msgid "Latitude"
1588
  msgstr "Breite"
1589
 
1590
+ #: my-calendar-event-manager.php:930 my-calendar-group-manager.php:503
1591
  #: my-calendar-locations.php:211
1592
  msgid "Longitude"
1593
  msgstr "Länge"
1594
 
1595
+ #: my-calendar-event-manager.php:943
1596
  msgid "Special scheduling options"
1597
  msgstr "Spezielle Planungs-Optionen"
1598
 
1599
+ #: my-calendar-event-manager.php:946
1600
  msgid "Special Options"
1601
  msgstr "Spezielle Optionen"
1602
 
1603
+ #: my-calendar-event-manager.php:948
1604
  msgid "Cancel this event if it occurs on a date with an event in the Holidays category"
1605
  msgstr "Dieses Event abbrechen, wenn es an einem Tag mit einem Event der Ferien-Kategorie auftritt"
1606
 
1607
+ #: my-calendar-event-manager.php:951
1608
  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."
1609
  msgstr "Wenn sich dieses Event wiederholt und auf eine fünfte Woche in einem Monat fällt, der nur vier Wochen hat, verschiebe es um eine Woche nach hinten."
1610
 
1611
+ #: my-calendar-event-manager.php:144 my-calendar-settings.php:120
1612
+ #: my-calendar-settings.php:799 my-calendar.php:347
1613
  msgid "Manage Events"
1614
  msgstr "Events verwalten"
1615
 
1616
+ #: my-calendar-event-manager.php:1051 my-calendar-templates.php:271
1617
  msgid "Published"
1618
  msgstr "Veröffentlicht"
1619
 
1620
+ #: my-calendar-event-manager.php:1052 my-calendar-templates.php:271
1621
  msgid "Reserved"
1622
  msgstr "Reserviert"
1623
 
1624
+ #: my-calendar-event-manager.php:1053 my-calendar-group-manager.php:726
1625
  msgid "All"
1626
  msgstr "Alle"
1627
 
1628
+ #: my-calendar-event-manager.php:1092 my-calendar-group-manager.php:747
1629
+ #: my-calendar-settings.php:399 my-calendar-widgets.php:60
1630
+ #: my-calendar-widgets.php:169 my-calendar-widgets.php:679
1631
  msgid "Title"
1632
  msgstr "Titel"
1633
 
1634
+ #: my-calendar-group-manager.php:748
1635
  msgid "Where"
1636
  msgstr "Wo"
1637
 
1638
+ #: my-calendar-settings.php:400
 
1639
  msgid "Description"
1640
  msgstr "Beschreibung"
1641
 
1642
+ #: my-calendar-group-manager.php:749
1643
  msgid "Starts"
1644
  msgstr "Anfangsdatum"
1645
 
1646
+ #: my-calendar-group-manager.php:750
1647
  msgid "Recurs"
1648
  msgstr "Wiederholungen"
1649
 
1650
+ #: my-calendar-event-manager.php:1095 my-calendar-group-manager.php:751
1651
+ #: my-calendar-settings.php:402
1652
  msgid "Author"
1653
  msgstr "Autor"
1654
 
1655
+ #: my-calendar-event-manager.php:1096 my-calendar-group-manager.php:752
1656
+ #: my-calendar-output.php:138 my-calendar-settings.php:403
1657
+ #: my-calendar-templates.php:269
1658
  msgid "Category"
1659
  msgstr "Kategorie"
1660
 
1661
+ #: my-calendar-event-manager.php:1166 my-calendar-group-manager.php:801
 
 
 
 
1662
  msgid "Never"
1663
  msgstr "niemals"
1664
 
1665
+ #: my-calendar-event-manager.php:1168 my-calendar-group-manager.php:803
1666
  msgid "Weekdays"
1667
  msgstr "Wochentage"
1668
 
1669
+ #: my-calendar-event-manager.php:1170 my-calendar-group-manager.php:805
1670
  msgid "Bi-Weekly"
1671
  msgstr "aller zwei Wochen"
1672
 
1673
+ #: my-calendar-event-manager.php:1171 my-calendar-group-manager.php:806
1674
  msgid "Monthly (by date)"
1675
  msgstr "Monatlich (nach Datum)"
1676
 
1677
+ #: my-calendar-event-manager.php:1172 my-calendar-group-manager.php:807
1678
  msgid "Monthly (by day)"
1679
  msgstr "Monatlich (nach Tag)"
1680
 
1681
+ #: my-calendar-event-manager.php:1173 my-calendar-group-manager.php:808
1682
  msgid "Yearly"
1683
  msgstr "jährlich"
1684
 
1685
+ #: my-calendar-group-manager.php:811
1686
  msgid "Forever"
1687
  msgstr "für immer"
1688
 
1689
+ #: my-calendar-group-manager.php:812
 
1690
  msgid "%d Times"
1691
  msgstr "%d Mal"
1692
 
1693
+ #: my-calendar-event-manager.php:1129
1694
  msgid "Copy"
1695
  msgstr "kopieren"
1696
 
1697
+ #: my-calendar-event-manager.php:1132 my-calendar-group-manager.php:784
1698
+ #: my-calendar-output.php:316
1699
  msgid "Edit Group"
1700
  msgstr "Gruppe bearbeiten"
1701
 
1702
+ #: my-calendar-event-manager.php:1135 my-calendar-group-manager.php:788
1703
  msgid "Not editable."
1704
  msgstr "Kann nicht bearbeitet werden."
1705
 
1706
+ #: my-calendar-event-manager.php:1139
1707
  msgid "Reject"
1708
  msgstr "Ablehnen"
1709
 
1710
+ #: my-calendar-event-manager.php:1139
1711
  msgid "Approve"
1712
  msgstr "Genehmigen"
1713
 
1714
+ #: my-calendar-event-manager.php:1144
1715
  msgid "Approved"
1716
  msgstr "Genehmigt"
1717
 
1718
+ #: my-calendar-event-manager.php:1146
1719
  msgid "Rejected"
1720
  msgstr "Abgelehnt"
1721
 
1722
+ #: my-calendar-event-manager.php:1148
1723
  msgid "Awaiting Approval"
1724
  msgstr "Wartet auf Genehmigung"
1725
 
1726
+ #: my-calendar-event-manager.php:1082 my-calendar-event-manager.php:1199
1727
  msgid "Delete checked events"
1728
  msgstr "Ausgewählte Events löschen"
1729
 
1730
+ #: my-calendar-group-manager.php:838
1731
  msgid "There are no events in the database!"
1732
  msgstr "Es sind keine Events in der Datenbank"
1733
 
1734
+ #: my-calendar-event-manager.php:1366
1735
  msgid "Your event end date must be either after or the same as your event begin date"
1736
  msgstr "Das Eventende muss entweder am oder nach dem Startdatum liegen"
1737
 
1738
+ #: my-calendar-event-manager.php:1369
1739
  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."
1740
  msgstr "Die Datumsformatierung ist korrekt aber eine oder mehrere Daten sind ungültig. Überprüfen sie die Anzahl der Tage im Monat oder Fehler auf Grund eines Schaltjahres"
1741
 
1742
+ #: my-calendar-event-manager.php:1402 my-calendar-group-manager.php:599
1743
  msgid "The event title must be between 1 and 255 characters in length."
1744
  msgstr "Der Eventtitel muss zwischen 1 und 255 Zeichen haben"
1745
 
1746
+ #: my-calendar-event-manager.php:1409
1747
  msgid "The repetition value must be 0 unless a type of recurrence is selected."
1748
  msgstr "Der Wiederholungswert muss 0 sein, ausgenommen eine Art von Wiederholung ist ausgewählt."
1749
 
1759
  msgid "Event grouped successfully"
1760
  msgstr "Event erfolgreich gruppiert"
1761
 
1762
+ #: my-calendar-group-manager.php:103 my-calendar-group-manager.php:309
1763
+ #: my-calendar-group-manager.php:514
1764
  msgid "Edit Event Group"
1765
  msgstr "Event-Gruppe bearbeiten"
1766
 
1768
  msgid "You must provide an event group id in order to edit it"
1769
  msgstr "Du musst eine Event-Gruppen-ID angeben, um sie zu bearbeiten"
1770
 
1771
+ #: my-calendar-group-manager.php:113 my-calendar-group-manager.php:121
1772
+ #: my-calendar-group-manager.php:306 my-calendar.php:351
1773
  msgid "Manage Event Groups"
1774
  msgstr "Event-Gruppen"
1775
 
1781
  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."
1782
  msgstr "Die folgenden Felder werden niemals verändert, wenn du eine Gruppe bearbeitest: Registrierung verfügbar, Event-Publizierungs-Status, Spam-Markierung, Event-Wiederholungen und Start- und Endzeiten für dieses Event."
1783
 
1784
+ #: my-calendar-group-manager.php:234
1785
  msgid "<strong>NOTE:</strong> The group editable fields for the events in this group do not match"
1786
  msgstr "<strong>ANMERKUNG:</strong> Die bearbeitbaren Felder für die Events in dieser Gruppe stimmen nicht überein."
1787
 
1788
+ #: my-calendar-group-manager.php:234
1789
  msgid "The group editable fields for the events in this group match."
1790
  msgstr "Die bearbeitbaren Felder für die Events in dieser Gruppe stimmen überein. "
1791
 
1792
+ #: my-calendar-group-manager.php:241
1793
  msgid "Apply these changes to:"
1794
  msgstr "Diese Änderungen anwenden auf:"
1795
 
1796
+ #: my-calendar-event-manager.php:1091 my-calendar-group-manager.php:252
1797
  msgid "Check/Uncheck all"
1798
  msgstr "Alle / keine auswählen"
1799
 
1800
+ #: my-calendar-group-manager.php:254
1801
  msgid "Remove checked events from this group"
1802
  msgstr "Ausgewählte Events aus dieser Gruppe löschen"
1803
 
1804
+ #: my-calendar-group-manager.php:272
1805
  msgid "You must provide a group ID to edit groups"
1806
  msgstr "Du musst eine Gruppen-ID angeben, um Gruppen zu bearbeiten"
1807
 
1808
+ #: my-calendar-group-manager.php:322
1809
  msgid "Selected dates are a single multi-day event."
1810
+ msgstr "Selektierte Daten gehören zu einer mehrtägigen Veranstaltung."
1811
 
1812
+ #: my-calendar-group-manager.php:399
1813
  msgid "Event Registration Options"
1814
  msgstr "Event-Registrierungsoptionen"
1815
 
1816
+ #: my-calendar-group-manager.php:721
1817
  msgid "Create/Modify Groups"
1818
  msgstr "Gruppen erstellen / ändern"
1819
 
1820
+ #: my-calendar-group-manager.php:730
1821
  msgid "Check a set of events to group them for mass editing."
1822
  msgstr ""
1823
 
1824
+ #: my-calendar-group-manager.php:740 my-calendar-group-manager.php:832
1825
  msgid "Group checked events for mass editing"
1826
  msgstr "Ausgewählte Events zum gemeinsamen Bearbeiten gruppieren"
1827
 
1828
+ #: my-calendar-group-manager.php:746
1829
  msgid "Group"
1830
  msgstr "Gruppe"
1831
 
1832
+ #: my-calendar-group-manager.php:786
1833
  msgid "Ungrouped"
1834
  msgstr "Nicht gruppiert"
1835
 
1849
  msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
1850
  msgstr ""
1851
 
 
 
 
 
1852
  #: my-calendar-help.php:60
1853
  msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
1854
  msgstr ""
1857
  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."
1858
  msgstr ""
1859
 
 
 
 
 
1860
  #: my-calendar-help.php:63
 
 
 
 
 
 
 
 
 
 
 
 
1861
  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.)"
1862
  msgstr ""
1863
 
1864
+ #: my-calendar-help.php:64
1865
  msgid "The type of location data to restrict by."
1866
  msgstr ""
1867
 
1868
+ #: my-calendar-help.php:65
1869
  msgid "The specific location information to filter to."
1870
  msgstr ""
1871
 
1872
+ #: my-calendar-help.php:75
1873
  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."
1874
  msgstr ""
1875
 
1876
+ #: my-calendar-help.php:77
1877
  msgid "Additional Calendar Views (Upcoming events, today's events)"
1878
  msgstr ""
1879
 
1880
+ #: my-calendar-help.php:87
1881
  msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
1882
  msgstr ""
1883
 
1884
+ #: my-calendar-help.php:94
1885
  msgid "Supplement Features (Locations filter, Categories filter)"
1886
  msgstr ""
1887
 
1888
+ #: my-calendar-help.php:98
1889
  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>."
1890
  msgstr ""
1891
 
1892
+ #: my-calendar-help.php:102
1893
  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."
1894
  msgstr ""
1895
 
1896
+ #: my-calendar-help.php:107
1897
  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>."
1898
  msgstr ""
1899
 
1900
+ #: my-calendar-help.php:115
1901
  msgid "Category Icons"
1902
  msgstr "Kategorie Icon"
1903
 
1904
+ #: my-calendar-help.php:118
1905
  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."
1906
  msgstr "My Calender ist designt um mehrere Kalender zu verwalten. Die Basis dieser Kalender sind Kategorien. Sie können einfach eine Kalenderseite erstellen, die alle Kategorien einschließt oder mehre Seiten erstellen und verschiedene Kategorien in jeder anzeigen. Zum Beispiel könnte dies sinnvoll sein, wenn Sie einen Tourkalender für mehre Bands verwalten wollen oder Kalender für mehre Veranstaltungsorte usw."
1907
 
1908
+ #: my-calendar-help.php:121
1909
  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."
1910
  msgstr "Das vorinstallierte Kategorie Icon ist möglicherweise nicht sinnvoll für ihre Anforderung oder ihre Homepagedesign. Ich nehme an, dass sie ihr eigenes Icon hochladen. Dazu müssen sie das Icon in den \"icon\"-Ordner im \"plugin\"-Verzeichnis hochladen oder sie ersetzten den order \"my-candar-costum\" um das Überschreiben bei Updates zu vermeiden."
1911
 
1912
+ #: my-calendar-help.php:121
1913
  msgid "Your icons folder is:"
1914
  msgstr "Ihr Icon-Ordnder ist:"
1915
 
1916
+ #: my-calendar-help.php:121
1917
  msgid "You can alternately place icons in:"
1918
  msgstr "Sie können Icons alternativ ablegen unter:"
1919
 
1920
+ #: my-calendar-help.php:130
1921
  msgid "Custom Styles"
1922
  msgstr "Benutzerdefinierte Stile"
1923
 
1924
+ #: my-calendar-help.php:133
1925
  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."
1926
  msgstr "My Calendar ist mit vier grundlegenden Stylesheets ausgestattet. My Calendar wird bei der Änderung dieser grundlegenden Stylesheets beim Upgrade beibehalten, aber wenn man ein völlig neues Stylesheet hinzufügen möchten, möchten Sie es vielleicht im benutzerdefinierten Stylesheets-Verzeichnis von My Calendar speichern."
1927
 
1928
+ #: my-calendar-help.php:136
1929
  msgid "Your stylesheet directory is"
1930
  msgstr "Ihr Stylesheet-Verzeichnis ist"
1931
 
1932
+ #: my-calendar-help.php:137
1933
  msgid "Your custom stylesheets directory is"
1934
  msgstr "Ihr benutzerdefiniertes Stylesheets-Verzeichnis ist"
1935
 
1936
+ #: my-calendar-help.php:140
1937
  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>."
1938
  msgstr ""
1939
 
1940
+ #: my-calendar-help.php:148
1941
  msgid "Widget Templating"
1942
  msgstr "Widget-Einstellungen"
1943
 
1944
+ #: my-calendar-help.php:151
1945
  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."
1946
+ msgstr "Alle Template tags unterstützen zwei Eigenschaften: before=\"value\" und after=\"value\". Die Werte der Eigenschaften sollten vor und nach den Ausgabewerte platziert werden. Diese Eigenschaftswerte <strong>müssen</strong> in \" \" (Gänsefüsschen) gesetzt werden."
1947
 
1948
+ #: my-calendar-help.php:154
1949
  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."
1950
+ msgstr "Dateum/Zeit Template tags unterstützen die \"Format\" Eigenschaft: format=\"M, Y\", dessen Werte in einem php formatieren String übergeben werden. Nur <code>dtstart</code> und <code>dtend</code> beinhalten die ganze Datum/Zeit Information zu formatieren."
1951
 
1952
+ #: my-calendar-help.php:157
1953
  msgid "Example:"
1954
  msgstr "Beispiel:"
1955
 
1956
+ #: my-calendar-help.php:159 my-calendar.php:198
1957
  msgid "Event Template Tags"
1958
+ msgstr "Veranstaltungs Template Tag"
1959
 
1960
+ #: my-calendar-help.php:162
1961
  msgid "Displays the title of the event."
1962
  msgstr "Zeigt den Titel des Events."
1963
 
1964
+ #: my-calendar-help.php:165
1965
  msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
1966
  msgstr "Zeigt den Titel des Events als einen Link wenn eine URL hinterlegt wurde oder nur den Titel, wenn keine URL hinterlegt ist."
1967
 
1968
+ #: my-calendar-help.php:168
1969
  msgid "Displays the start time for the event."
1970
  msgstr "Zeigt die Startzeit des Events."
1971
 
1972
+ #: my-calendar-help.php:171
1973
  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."
1974
+ msgstr "Zeigt die Startzeit der Veranstaltung orientiert an der aktuellen Zeitzone der Benutzer Einstellungen. <code>{time}</code> wenn die Benutzer Einstellungen sind abgeschaltet oder wenn der Benutzer keine bevorzugte Zeitzone gewählt hat."
1975
 
1976
+ #: my-calendar-help.php:174
1977
  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."
1978
+ msgstr "Zeigt die Endezeit der Veranstaltung orientiert an der aktuellen Zeitzone der Benutzer Einstellungen. <code>{endtime}</code> wenn die Benutzer Einstellungen sind abgeschaltet oder wenn der Benutzer keine bevorzugte Zeitzone gewählt hat."
1979
 
1980
+ #: my-calendar-help.php:177
1981
  msgid "Displays the date on which the event begins."
1982
  msgstr "Zeigt das Startdatum des Events."
1983
 
1984
+ #: my-calendar-help.php:183
1985
  msgid "Displays the date on which the event ends."
1986
  msgstr "Zeigt das Enddatum des Events."
1987
 
1988
+ #: my-calendar-help.php:186
1989
  msgid "Displays the time at which the event ends."
1990
  msgstr "Zeigt die Endzeit des Events."
1991
 
1992
+ #: my-calendar-help.php:189
1993
  msgid "Displays the beginning date to the end date for events. Does not show end date if same as start date."
1994
+ msgstr "Zeigt das Zeitfenster der Veranstaltung. Es wird keine Endezeit angezeigt wenn diese gleich der Startzeit ist."
1995
 
1996
+ #: my-calendar-help.php:195
1997
  msgid "Timestamp for beginning of event."
1998
+ msgstr "Zeitcode für die Startzeit der Veranstaltung."
1999
 
2000
+ #: my-calendar-help.php:198
2001
  msgid "Timestamp for end of event."
2002
+ msgstr "Zeitcode für das Ende der Veranstaltung."
2003
 
2004
+ #: my-calendar-help.php:201
2005
  msgid "For multi-day events displays an unordered list of dates and times for events in this group. Otherwise, beginning date/time."
2006
+ msgstr "Beim einer Mehrtagesveranstaltung wird eine unsortierte Liste der Daten und Zeiten in dieser Gruppe angezeigt. Andernfalls Datum/Zeit."
2007
 
2008
+ #: my-calendar-help.php:204
2009
  msgid "Displays the WordPress author who posted the event."
2010
  msgstr "Zeigt den Wordpress Autor des Events."
2011
 
2012
+ #: my-calendar-help.php:210
2013
  msgid "Displays the name of the person assigned as host for the event."
2014
  msgstr "Zeigt den Namen der Person, die als Gastgeber für den Event vergeben wurde."
2015
 
2016
+ #: my-calendar-help.php:213
2017
  msgid "Displays the email address of the person assigned as host for the event."
2018
+ msgstr "Zeigt die E-Mail Adresse der Person die als Gastgeber für die Veranstaltung angegeben ist."
2019
 
2020
+ #: my-calendar-help.php:219
2021
  msgid "Displays the short version of the event description."
2022
  msgstr "Zeigt die Kurtversion der Eventbeschreibung"
2023
 
2024
+ #: my-calendar-help.php:222
2025
  msgid "Displays short description without converting paragraphs."
2026
+ msgstr "Zeigt die Kurzbeschreibung ohne umgewandelte Abschnitte."
2027
 
2028
+ #: my-calendar-help.php:228
2029
  msgid "Displays the description of the event."
2030
  msgstr "Zeigt die Beschreibung des Events."
2031
 
2032
+ #: my-calendar-help.php:231
2033
  msgid "Displays description without converting paragraphs."
2034
+ msgstr "Zeigt die Beschreibung ohne umgewandelte Abschnitte."
2035
 
2036
+ #: my-calendar.php:244
2037
  msgid "Image associated with the event."
2038
+ msgstr "Bild mit Bezug zur Veranstaltung."
2039
 
2040
+ #: my-calendar-help.php:243
2041
  msgid "Displays the URL provided for the event."
2042
  msgstr "Zeigt die URL im Events."
2043
 
2044
+ #: my-calendar-help.php:246
2045
  msgid "Produces the URL to download an iCal formatted record for the event."
2046
+ msgstr "Erstellt die URL zum Download eines iCal formatierten Datensatzes dieser Veranstaltung."
2047
 
2048
+ #: my-calendar-help.php:249
2049
  msgid "Produces a hyperlink to download an iCal formatted record for the event."
2050
+ msgstr "Erstellt einen Link zum Download eines iCal formattierten Datensatzes dieser Veranstaltung."
2051
 
2052
+ #: my-calendar-help.php:252
2053
  msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
2054
  msgstr ""
2055
 
2056
+ #: my-calendar-help.php:255
2057
  msgid "Shows the number of repetitions of the event."
2058
  msgstr ""
2059
 
2060
+ #: my-calendar-help.php:258
2061
  msgid "Provides a link to an auto-generated page containing all information on the given event."
2062
  msgstr ""
2063
 
2064
+ #: my-calendar-help.php:258 my-calendar-help.php:261
2065
  msgid "Requires that the site URL has been provided on the Settings page"
2066
  msgstr ""
2067
 
2068
+ #: my-calendar-help.php:264
2069
  msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
2070
  msgstr "Zeigt die Text an, ob die Registration geöffnet oder geschlossen ist. "
2071
 
2072
+ #: my-calendar-help.php:267
2073
  msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
2074
  msgstr "Zeigt den aktuellen Status der Veranstaltung: entweder \"Published\" or \"Reserved\" - direkt in E-Mail-Vorlagen verwendet."
2075
 
2076
+ #: my-calendar-help.php:269 my-calendar.php:258
2077
  msgid "Location Template Tags"
2078
  msgstr ""
2079
 
2080
+ #: my-calendar-help.php:273
2081
  msgid "Displays the name of the location of the event."
2082
  msgstr "Zeigt den Namen des Veranstaltungsortes des Events."
2083
 
2084
+ #: my-calendar-help.php:276
2085
  msgid "Displays the first line of the site address."
2086
  msgstr "Zeigt die erste Zeile des Straßenfeldes."
2087
 
2088
+ #: my-calendar-help.php:279
2089
  msgid "Displays the second line of the site address."
2090
  msgstr "Zeigt die zweite Zeile des Straßenfeldes."
2091
 
2092
+ #: my-calendar-help.php:282
2093
  msgid "Displays the city for the location."
2094
  msgstr "Zeigt die Ortschaft des Veranstaltungsortes"
2095
 
2096
+ #: my-calendar-help.php:285
2097
  msgid "Displays the state for the location."
2098
  msgstr "Zeigt den Bundesstaat des Veranstaltungsortes"
2099
 
2100
+ #: my-calendar-help.php:288
2101
  msgid "Displays the postcode for the location."
2102
  msgstr "Zeigt die Postleitzahl des Veranstaltungsortes"
2103
 
2104
+ #: my-calendar-help.php:291
2105
  msgid "Shows the custom region entered for the location."
2106
  msgstr ""
2107
 
2108
+ #: my-calendar-help.php:294
2109
  msgid "Displays the country for the event location."
2110
  msgstr "Zeigt das Land das Veranstaltungsortes"
2111
 
2112
+ #: my-calendar-help.php:297
2113
  msgid "Output the URL for the location link."
2114
  msgstr ""
2115
 
2116
+ #: my-calendar-help.php:303
2117
  msgid "Output a hyperlink to the location's listed link with default link text."
2118
  msgstr ""
2119
 
2120
+ #: my-calendar-help.php:306
2121
  msgid "Displays the event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
2122
  msgstr "Zeigt die Eventadresse im <a href=\"http://microformats.org/wiki/hcard\">HCard</a>-Format"
2123
 
2124
+ #: my-calendar-help.php:309
2125
  msgid "Displays a link to a Google Map of the event, if sufficient address information is available. If not, will be empty."
2126
  msgstr "Zeigt den Link zu Google Maps für das Event, wenn genügend Informationen hinterlegt sind, sonst bleibt das Feld leer."
2127
 
2128
+ #: my-calendar-help.php:311 my-calendar.php:294
2129
  msgid "Category Template Tags"
2130
  msgstr ""
2131
 
2132
+ #: my-calendar-help.php:315
2133
  msgid "Displays the name of the category the event is in."
2134
  msgstr "Zeigt den Namen der Kategorie in der das Event ist."
2135
 
2136
+ #: my-calendar-help.php:318
2137
  msgid "Produces the address of the current event's category icon."
2138
  msgstr "Erzeugt die Adresse des aktuellen Event-Kategorie-Symbols."
2139
 
2140
+ #: my-calendar-help.php:321
2141
  msgid "Produces the HTML for the current event's category icon."
2142
  msgstr ""
2143
 
2144
+ #: my-calendar-help.php:324
2145
  msgid "Produces the hex code for the current event's category color."
2146
  msgstr "Erzeugt den Hex-Code für die aktuelle Event-Kategorie-Farbe."
2147
 
2148
+ #: my-calendar-help.php:327
2149
  msgid ""
2150
  "Displays the ID forr\n"
2151
  "\t\t the category the event is in."
2152
  msgstr ""
2153
 
2154
+ #: my-calendar-help.php:331
2155
  msgid "Special use Template Tags"
2156
  msgstr ""
2157
 
2158
+ #: my-calendar-help.php:335
2159
  msgid "A unique ID for the current instance of an event."
2160
  msgstr ""
2161
 
2162
+ #: my-calendar-help.php:338
2163
  msgid "The ID for the event record associated with the current instance of an event."
2164
  msgstr ""
2165
 
2166
+ #: my-calendar-help.php:348
2167
  msgid "Get Plug-in Support"
2168
  msgstr ""
2169
 
2170
+ #: my-calendar-help.php:353
2171
  msgid "My Calendar support requests can only be sent by administrators."
2172
+ msgstr "Ma Calendar unterstützt Anfragen welche nur durch Administratoren abgeschickt werden können."
2173
 
2174
+ #: my-calendar-help.php:18 my-calendar-help.php:360
2175
  msgid "Helpful Information"
2176
+ msgstr "Hilfreiche Informationen"
2177
 
2178
+ #: my-calendar-help.php:363
2179
  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."
2180
+ msgstr "<strong>Plugin deinstallieren</strong>: Normalerweise werden bei einer Deinstallation alle Datenbanktabellen gelöscht. My Calendar <em>macht das nicht</em>. Dies war meine Entscheidung, um einen besseren Service anzubieten und nicht alle Angaben und Einstellungen zu löschen. Wenn Du das Plugin mit allen Daten loswerden möchtest. ist es notwendig die Tabellen in der Datenbank manuell zu löschen. Alle Deine My Calendar Einstellungen werden gelöscht. (Aus dem Kontext versucht zu übersetzen)"
2181
 
2182
+ #: my-calendar-help.php:366
2183
  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!"
2184
+ msgstr "<strong>Donations</strong>: Ich freue mich über jede Zahlung. $2 erscheinen wenig, aber das kann sich aufaddieren, wenn Tausende die Software nutzen. Bitte, nehme zur Kenntnis, dass ich keine gemeinnützige Organisation bin und Dein Entgegenkommen nicht steuerlich abzugsfähig ist. Danke!"
2185
 
2186
+ #: my-calendar-install.php:249
2187
  msgid "My Calendar Default Timezone"
2188
  msgstr "My Calendar Standard-Zeitzone"
2189
 
2190
+ #: my-calendar-install.php:294
2191
  msgid "My Calendar Default Location"
2192
  msgstr "My Calendar Standard-Standort"
2193
 
2247
  msgid "Add a New Location"
2248
  msgstr "Neuen Ort hinzufügen"
2249
 
2250
+ #: my-calendar-locations.php:228 my-calendar.php:350
2251
  msgid "Manage Locations"
2252
  msgstr "Orte verwalten"
2253
 
2254
+ #: my-calendar-event-manager.php:1093 my-calendar-locations.php:289
2255
  msgid "Location"
2256
  msgstr "Ort"
2257
 
2263
  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."
2264
  msgstr "Achtung: Ändern oder Löschen von Orten, die für die Wiederverwendung gespeichert wurden, wird keinen Effekt auf vorher geplante Events haben haben."
2265
 
2266
+ #: my-calendar-output.php:187 my-calendar-output.php:311
2267
  msgid "Close"
2268
  msgstr "geschlossen"
2269
 
2270
+ #: my-calendar-output.php:200
2271
  msgid "(%s in your time zone)"
2272
  msgstr "(%s liegt in Deiner Zeitzone)"
2273
 
2274
+ #: my-calendar-output.php:206
2275
  msgid "Not Applicable"
2276
  msgstr "entfällt"
2277
 
2278
+ #: my-calendar-output.php:221
2279
  msgid "Posted by"
2280
  msgstr "Verfasst von:"
2281
 
2282
+ #: my-calendar-output.php:229 my-calendar-templates.php:273
2283
  msgid "Details about"
2284
+ msgstr "Details über"
2285
 
2286
+ #: my-calendar-output.php:256 my-calendar-templates.php:220
2287
  msgid "iCal"
2288
+ msgstr "iCal"
2289
 
2290
+ #: my-calendar-output.php:291
2291
  msgid "This class is part of a series. You must register for the first event in this series to attend."
2292
  msgstr "Dieses Veranstaltung ist Teil einer Serie. Sie müssen sich für das erste Event anmelden, um teilzunehmen."
2293
 
2294
+ #: my-calendar-output.php:296
2295
  msgid "View full calendar"
2296
  msgstr "Kompletten Kalender ansehen"
2297
 
2298
+ #: my-calendar-output.php:333
2299
  msgid "Edit This Date"
2300
  msgstr "Dieses Datum bearbeiten"
2301
 
2302
+ #: my-calendar-output.php:334
2303
  msgid "Edit All"
2304
  msgstr "Alle bearbeiten"
2305
 
2306
+ #: my-calendar-output.php:335
2307
  msgid "Delete This Date"
2308
  msgstr "Dieses Datum löschen"
2309
 
2310
+ #: my-calendar-output.php:336
2311
  msgid "Delete All"
2312
  msgstr "Alle löschen"
2313
 
2314
+ #: my-calendar-core.php:1542 my-calendar-output.php:395
2315
  msgid "Year"
2316
  msgstr "Jahr"
2317
 
2318
+ #: my-calendar-output.php:423
2319
  msgid "Go"
2320
  msgstr "los"
2321
 
2322
+ #: my-calendar-output.php:452
2323
  msgid "Calendar: Print View"
2324
+ msgstr "Kalender: Druckansicht"
2325
 
2326
+ #: my-calendar-output.php:467
2327
  msgid "Return to site"
2328
+ msgstr "Zurück zur WebSite"
2329
 
2330
+ #: my-calendar-output.php:480
2331
  msgid "View as Grid"
2332
  msgstr "Als Kalender ansehen"
2333
 
2334
+ #: my-calendar-output.php:484
2335
  msgid "View as List"
2336
  msgstr "Als Liste ansehen"
2337
 
2338
+ #: my-calendar-output.php:738
2339
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
2340
  msgstr "<abbr title=\"Sonntag\">So</abbr>"
2341
 
2342
+ #: my-calendar-output.php:739
2343
  msgid "<abbr title=\"Monday\">Mon</abbr>"
2344
  msgstr "<abbr title=\"Montag\">Mo</abbr>"
2345
 
2346
+ #: my-calendar-output.php:740
2347
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
2348
  msgstr "<abbr title=\"Dienstag\">Di</abbr>"
2349
 
2350
+ #: my-calendar-output.php:741
2351
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
2352
  msgstr "<abbr title=\"Mittwoch\">Mi</abbr>"
2353
 
2354
+ #: my-calendar-output.php:742
2355
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
2356
  msgstr "<abbr title=\"Donnerstag\">Do</abbr>"
2357
 
2358
+ #: my-calendar-output.php:743
2359
  msgid "<abbr title=\"Friday\">Fri</abbr>"
2360
  msgstr "<abbr title=\"Freitag\">Fr</abbr>"
2361
 
2362
+ #: my-calendar-output.php:744
2363
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
2364
  msgstr "<abbr title=\"Samstag\">Sa</abbr>"
2365
 
2366
+ #: my-calendar-output.php:749
2367
  msgid "<abbr title=\"Sunday\">S</abbr>"
2368
  msgstr "<abbr title=\"Sonntag\">So</abbr>"
2369
 
2370
+ #: my-calendar-output.php:750
2371
  msgid "<abbr title=\"Monday\">M</abbr>"
2372
  msgstr "<abbr title=\"Montag\">Mo</abbr>"
2373
 
2374
+ #: my-calendar-output.php:751
2375
  msgid "<abbr title=\"Tuesday\">T</abbr>"
2376
  msgstr "<abbr title=\"Dienstag\">Di</abbr>"
2377
 
2378
+ #: my-calendar-output.php:752
2379
  msgid "<abbr title=\"Wednesday\">W</abbr>"
2380
  msgstr "<abbr title=\"Mittwoch\">Mi</abbr>"
2381
 
2382
+ #: my-calendar-output.php:753
2383
  msgid "<abbr title=\"Thursday\">T</abbr>"
2384
  msgstr "<abbr title=\"Donnerstag\">Do</abbr>"
2385
 
2386
+ #: my-calendar-output.php:754
2387
  msgid "<abbr title=\"Friday\">F</abbr>"
2388
  msgstr "<abbr title=\"Freitag\">Fr</abbr>"
2389
 
2390
+ #: my-calendar-output.php:755
2391
  msgid "<abbr title=\"Saturday\">S</abbr>"
2392
  msgstr "<abbr title=\"Samstag\">Sa</abbr>"
2393
 
2394
+ #: my-calendar-output.php:861
2395
  msgid "Print View"
2396
  msgstr "Druckansicht"
2397
 
2398
+ #: my-calendar-output.php:967
2399
  msgid "No events scheduled for today!"
2400
  msgstr "Keine Events heute!"
2401
 
2402
+ #: my-calendar-output.php:983
2403
  msgid "and"
2404
  msgstr "und"
2405
 
2406
+ #: my-calendar-output.php:997
2407
  msgid "Events in"
2408
  msgstr "Events im"
2409
 
2410
+ #: my-calendar-output.php:577
2411
  msgid " and %d other event"
2412
  msgstr " und %d weiterer Termin"
2413
 
2414
+ #: my-calendar-output.php:579
2415
  msgid " and %d other events"
2416
  msgstr " und %d weitere Termine"
2417
 
2418
+ #: my-calendar-output.php:1029
2419
  msgid "There are no events scheduled during this period."
2420
  msgstr "In diesem Zeitraum sind keine Events geplant."
2421
 
2422
+ #: my-calendar-output.php:1140
2423
  msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
2424
  msgstr "Kalenderformat nicht erkannt. Verwende bitte 'list','calendar', oder 'mini'"
2425
 
2426
+ #: my-calendar-output.php:1160
2427
  msgid "Category Key"
2428
  msgstr "Kategorie-Schlüssel"
2429
 
2430
+ #: my-calendar-output.php:1183
2431
  msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
2432
  msgstr "Abonnieren von <abbr title=\\\"Really Simple Syndication\\\">RSS</abbr>"
2433
 
2434
+ #: my-calendar-output.php:1184
2435
  msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
2436
  msgstr "Download als <abbr title=\\\"iCal Ereignisse exportieren\\\">iCal</abbr>"
2437
 
2438
+ #: my-calendar-output.php:1209
2439
  msgid "Next events &raquo;"
2440
  msgstr "Nächste Termine &raquo;"
2441
 
2442
+ #: my-calendar-output.php:1235 my-calendar-output.php:1279
2443
  msgid "Week of "
2444
+ msgstr "Woche von "
2445
 
2446
+ #: my-calendar-output.php:1253
2447
  msgid "&laquo; Previous events"
2448
  msgstr "&laquo; Frühere Termine"
2449
 
2450
+ #: my-calendar-output.php:1305
2451
  msgid "(select to include)"
2452
  msgstr "(auswählen um einzufügen)"
2453
 
2454
+ #: my-calendar-output.php:1329 my-calendar-output.php:1332
2455
  msgid "All Categories"
2456
  msgstr "Alle Kategorien"
2457
 
2458
+ #: my-calendar-output.php:1330
2459
  msgid "Categories"
2460
  msgstr "Kategorien"
2461
 
2462
+ #: my-calendar-output.php:1351 my-calendar-output.php:1561
2463
  msgid "Submit"
2464
  msgstr "los"
2465
 
2466
+ #: my-calendar-output.php:1502 my-calendar-output.php:1523
2467
  msgid "Show all"
2468
  msgstr "Alle"
2469
 
2470
+ #: my-calendar-output.php:1521
2471
  msgid "Show events in:"
2472
  msgstr "Standort:"
2473
 
2491
  msgid "My Calendar Cache cleared"
2492
  msgstr "My Calendar Cache gelöscht"
2493
 
2494
+ #: my-calendar-settings.php:113
2495
  msgid "My Calendar Management Settings saved"
2496
  msgstr "My Calender-Management-Einstellungen gespeichert"
2497
 
2498
+ #: my-calendar-settings.php:118 my-calendar-settings.php:797
2499
  msgid "Add Events"
2500
  msgstr "Events hinzufügen"
2501
 
2502
+ #: my-calendar-settings.php:119 my-calendar-settings.php:798
2503
  msgid "Approve Events"
2504
  msgstr "Events genehmigen"
2505
 
2506
+ #: my-calendar-settings.php:121 my-calendar-settings.php:800
2507
  msgid "Edit Categories"
2508
  msgstr "Kategorien bearbeiten"
2509
 
2510
+ #: my-calendar-settings.php:122 my-calendar-settings.php:801
2511
  msgid "Edit Locations"
2512
  msgstr "Orte bearbeiten"
2513
 
2514
+ #: my-calendar-settings.php:123 my-calendar-settings.php:802
2515
  msgid "Edit Styles"
2516
  msgstr "Stile bearbeiten"
2517
 
2518
+ #: my-calendar-settings.php:124 my-calendar-settings.php:803
2519
  msgid "Edit Behaviors"
2520
  msgstr "Verhaltensweisen bearbeiten"
2521
 
2522
+ #: my-calendar-settings.php:125 my-calendar-settings.php:804
2523
  msgid "Edit Templates"
2524
  msgstr "Templates bearbeiten"
2525
 
2526
+ #: my-calendar-settings.php:126 my-calendar-settings.php:805
2527
  msgid "Edit Settings"
2528
  msgstr "Einstellungen bearbeiten"
2529
 
2530
+ #: my-calendar-settings.php:127 my-calendar-settings.php:806
2531
  msgid "View Help"
2532
  msgstr "Hilfe ansehen"
2533
 
2534
+ #: my-calendar-settings.php:141
2535
  msgid "My Calendar Permissions Updated"
2536
  msgstr "My Calendar-Berechtigungen aktualisiert"
2537
 
2538
+ #: my-calendar-settings.php:189
2539
  msgid "Output Settings saved"
2540
  msgstr "Ausgabe-Einstellungen gespeichert"
2541
 
2542
+ #: my-calendar-settings.php:215
2543
  msgid "Input Settings saved"
2544
  msgstr "Eingabe-Einstellungen gespeichert"
2545
 
2546
+ #: my-calendar-settings.php:223
2547
  msgid "Multisite settings saved"
2548
  msgstr "Multisite-Einstellungen gespeichert"
2549
 
2550
+ #: my-calendar-settings.php:252
2551
  msgid "Custom text settings saved"
2552
  msgstr "Benutzerdefinierte Text-Einstellungen gespeichert"
2553
 
2554
+ #: my-calendar-settings.php:268
2555
  msgid "Email notice settings saved"
2556
  msgstr "E-Mail-Benachrichtigung-Einstellungen gespeichert"
2557
 
2558
+ #: my-calendar-settings.php:282
2559
  msgid "User custom settings saved"
2560
  msgstr "Benutzer benutzerdefinierte Einstellungen gespeichert"
2561
 
2562
+ #: my-calendar-settings.php:318
2563
  msgid "My Calendar Options"
2564
  msgstr "My Calender Optionen"
2565
 
2566
+ #: my-calendar-settings.php:350
2567
  msgid "My Calendar Settings"
2568
  msgstr "My Calendar-Einstellungen"
2569
 
2570
+ #: my-calendar-settings.php:353
2571
  msgid "Management"
2572
  msgstr "Verwaltung"
2573
 
2574
+ #: my-calendar-settings.php:354
2575
  msgid "Customizable Text"
2576
+ msgstr "Einstellbarer Text"
2577
 
2578
+ #: my-calendar-settings.php:355
2579
  msgid "Output"
2580
+ msgstr "Ausgabe"
2581
 
2582
+ #: my-calendar-settings.php:357
2583
  msgid "Input"
2584
+ msgstr "Eingabe"
2585
 
2586
+ #: my-calendar-settings.php:359
2587
  msgid "Multi-site"
2588
+ msgstr "Multi-Site"
2589
 
2590
+ #: my-calendar-settings.php:361
2591
  msgid "Permissions"
2592
+ msgstr "Verbote"
2593
 
2594
+ #: my-calendar-settings.php:362
2595
  msgid "Email Notifications"
2596
  msgstr "E-Mail-Benachrichtigungen"
2597
 
2598
+ #: my-calendar-settings.php:363
2599
  msgid "Individual Users"
2600
+ msgstr "Einzelne Benutzer"
 
 
 
 
2601
 
2602
+ #: my-calendar-settings.php:377
2603
  msgid "Calendar Options: Management"
2604
  msgstr "Kalender Optionen: Management"
2605
 
2606
+ #: my-calendar-settings.php:379
2607
  msgid "Get data (events, categories and locations) from a remote database."
2608
  msgstr ""
2609
 
2610
+ #: my-calendar-settings.php:381
2611
  msgid "Add this code to your theme's <code>functions.php</code> file:"
2612
  msgstr ""
2613
 
2614
+ #: my-calendar-settings.php:389
2615
  msgid "Enable approval options."
2616
  msgstr "Aktiviere Genehmigung-Optionen."
2617
 
2618
+ #: my-calendar-settings.php:390
2619
  msgid "Enable caching."
2620
  msgstr "Caching aktivieren."
2621
 
2622
+ #: my-calendar-settings.php:390
2623
  msgid "<em>Cannot use caching while accessing a remote database.</em>"
2624
  msgstr ""
2625
 
2626
+ #: my-calendar-settings.php:392
2627
  msgid "Clear current cache. (Necessary if you edit shortcodes to change displayed categories, for example.)"
2628
  msgstr ""
2629
 
2630
+ #: my-calendar-settings.php:396
2631
  msgid "Default Sort order for Admin Events List"
2632
  msgstr ""
2633
 
2634
+ #: my-calendar-settings.php:398
2635
  msgid "Event ID"
2636
  msgstr ""
2637
 
2638
+ #: my-calendar-settings.php:401
2639
  msgid "Start Date"
2640
  msgstr "Anfangsdatum"
2641
 
2642
+ #: my-calendar-settings.php:409
2643
  msgid "Currently editing my local calendar"
2644
  msgstr ""
2645
 
2646
+ #: my-calendar-settings.php:412
2647
  msgid "Currently editing the network calendar"
2648
  msgstr ""
2649
 
2650
+ #: my-calendar-settings.php:416
2651
  msgid "You are currently working in the primary site for this network; your local calendar is also the global table."
2652
  msgstr ""
2653
 
2654
+ #: my-calendar-settings.php:424
2655
  msgid "Save Management Settings"
2656
  msgstr ""
2657
 
2658
+ #: my-calendar-settings.php:428
2659
  msgid "My Calendar management settings are only available to administrators."
2660
  msgstr ""
2661
 
2662
+ #: my-calendar-settings.php:436
2663
  msgid "Calendar Text Settings"
2664
  msgstr "Kalender-Texteinstellungen"
2665
 
2666
+ #: my-calendar-settings.php:441
2667
  msgid "Calendar Options: Customizable Text Fields"
2668
  msgstr ""
2669
 
2670
+ #: my-calendar-settings.php:444
 
 
 
 
2671
  msgid "Previous events link"
2672
  msgstr "Frühere Termine Link"
2673
 
2674
+ #: my-calendar-settings.php:444
2675
  msgid "Previous Events"
2676
  msgstr "Frühere Termine"
2677
 
2678
+ #: my-calendar-settings.php:444 my-calendar-settings.php:445
2679
  msgid "Use <code>{date}</code> to display the appropriate date in navigation."
2680
  msgstr ""
2681
 
2682
+ #: my-calendar-settings.php:445
2683
  msgid "Next events link"
2684
  msgstr ""
2685
 
2686
+ #: my-calendar-settings.php:445
2687
  msgid "Next Events"
2688
  msgstr "Kommende Events"
2689
 
2690
+ #: my-calendar-settings.php:446
2691
  msgid "If events are open"
2692
  msgstr ""
2693
 
2694
+ #: my-calendar-settings.php:446
2695
  msgid "Registration is open"
2696
  msgstr "Registrierung geöffnet"
2697
 
2698
+ #: my-calendar-settings.php:447
2699
  msgid "If events are closed"
2700
+ msgstr "Wenn Veranstaltungen geschlossen sind"
2701
 
2702
+ #: my-calendar-settings.php:447
2703
  msgid "Registration is closed"
2704
  msgstr "Registrierung geschlossen"
2705
 
2706
+ #: my-calendar-settings.php:448
2707
  msgid "Week view caption:"
2708
+ msgstr "Beschriftung der Wochen Ansicht:"
2709
 
2710
+ #: my-calendar-settings.php:449
2711
  msgid "Extended caption:"
2712
  msgstr "Erweiterte Beschriftung:"
2713
 
2714
+ #: my-calendar-settings.php:449
2715
  msgid "The calendar caption shows month and year in list and grid formats. This text is displayed after the month/year."
2716
  msgstr "Die Kalender-Beschriftung zeigt Monat und Jahr in der Listen- und Kalenderansicht. Der Text wird nach dem Monat / Jahr angezeigt."
2717
 
2723
  msgid "Calendar Output Settings"
2724
  msgstr "Kalender-Ausgabe-Einstellungen"
2725
 
2726
+ #: my-calendar-settings.php:485 my-calendar-settings.php:665
2727
  msgid "Save Output Settings"
2728
  msgstr "Ausgabe-Einstellungen speichern"
2729
 
2730
  #: my-calendar-settings.php:487
2731
  msgid "Calendar Options: Customize the Output of your Calendar"
2732
+ msgstr "Kalender Optionen: Gestalte die Ausgabe Deines Kalenders"
2733
 
2734
  #: my-calendar-settings.php:492
2735
  msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details links:"
2736
+ msgstr "Ziel <abbr title=\"Uniform resource locator\">URL</abbr> für den Link zu den Veranstaltungsdetails:"
2737
 
2738
  #: my-calendar-settings.php:493
2739
  msgid "Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode."
2740
+ msgstr "Kann jede Seite or Beitrag sein welcher den Shortcode <code>[my_calendar]</code> enthält. "
2741
 
2742
  #: my-calendar-settings.php:496
2743
  msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's timeline links."
2744
+ msgstr "Ziel <abbr title=\"Uniform resource locator\">URL</abbr> für den Link zu Tagesveranstaltungen."
2745
 
2746
  #: my-calendar-settings.php:497
2747
  msgid "Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> shortcode."
2748
+ msgstr "Kann jede Seite oder Beitrag sein mit dem <code>[my_calendar time=\"day\"]</code> Shortcode."
2749
 
2750
  #: my-calendar-settings.php:500
2751
  msgid "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar in-page anchors:"
2752
+ msgstr "Ziel <abbr title=\"Uniform resource locator\">URL</abbr> für den Mini-Kalender mit In-Page Ankern."
2753
 
2754
  #: my-calendar-settings.php:501
2755
  msgid "Can be any Page or Post with the <code>[my_calendar]</code> shortcode using format selected below"
2756
+ msgstr "Kann jede Seite oder Beitrag sein mit dem <code>[my_calendar]</code> Shortcode using format selected below"
2757
 
2758
  #: my-calendar-settings.php:505
2759
  msgid "Open calendar links to event details URL"
2760
+ msgstr "Offene Kalender Links zur URL mit den Veranstaltungs Details"
2761
 
2762
  #: my-calendar-settings.php:505
2763
  msgid "Replaces pop-up in grid view."
2764
+ msgstr "Replatziert Pop-Up in Raster Ansicht."
2765
 
2766
  #: my-calendar-settings.php:508
2767
  msgid "Mini calendar widget date links to:"
2768
+ msgstr "Mini Kalender Widget verweist auf:"
2769
 
2770
  #: my-calendar-settings.php:509
2771
  msgid "jQuery pop-up view"
2772
+ msgstr "jQuery Pop-Up Ansicht"
2773
 
2774
  #: my-calendar-settings.php:510
2775
  msgid "daily view page (above)"
2776
+ msgstr "Tagesaktuelle Seitenansicht (oberhalb)"
2777
 
2778
  #: my-calendar-settings.php:511
2779
  msgid "in-page anchor on main calendar page (list)"
2780
+ msgstr "In-Page Anker zur Haupt Kalender Seite (list)"
2781
 
2782
  #: my-calendar-settings.php:512
2783
  msgid "in-page anchor on main calendar page (grid)"
2787
  msgid "Replaces pop-up in mini calendar"
2788
  msgstr ""
2789
 
2790
+ #: my-calendar-settings.php:685
2791
  msgid "Time format"
2792
  msgstr ""
2793
 
2794
+ #: my-calendar-settings.php:688
2795
  msgid "Date in grid mode, week view"
2796
  msgstr ""
2797
 
2798
+ #: my-calendar-settings.php:691
2799
  msgid "Date Format in other views"
2800
  msgstr ""
2801
 
2802
+ #: my-calendar-settings.php:694
2803
  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."
2804
  msgstr ""
2805
 
2819
  msgid "iCal outputs events occurring in the current calendar month."
2820
  msgstr ""
2821
 
2822
+ #: my-calendar-settings.php:524
2823
  msgid "Show link to print-formatted view of calendar"
2824
  msgstr ""
2825
 
2826
+ #: my-calendar-settings.php:549
2827
  msgid "Grid Layout Options"
2828
  msgstr ""
2829
 
2830
+ #: my-calendar-settings.php:552
2831
  msgid "Show Weekends on Calendar"
2832
  msgstr ""
2833
 
2834
+ #: my-calendar-settings.php:555
2835
  msgid "Switch to list view on mobile devices"
2836
  msgstr ""
2837
 
2838
+ #: my-calendar-settings.php:562
2839
  msgid "List Layout Options"
2840
  msgstr ""
2841
 
2842
+ #: my-calendar-settings.php:565
2843
  msgid "How many months of events to show at a time:"
2844
  msgstr ""
2845
 
2846
+ #: my-calendar-settings.php:568
2847
  msgid "Show the first event's title and the number of events that day next to the date."
2848
  msgstr ""
2849
 
2850
+ #: my-calendar-settings.php:575
2851
  msgid "Event Details Options"
2852
  msgstr ""
2853
 
2854
+ #: my-calendar-settings.php:451
2855
  msgid "Event title template"
2856
  msgstr "Event-Titel-Vorlage"
2857
 
2858
+ #: my-calendar-settings.php:462 my-calendar-settings.php:467
2859
  msgid "Templating Help"
2860
  msgstr ""
2861
 
2862
+ #: my-calendar-settings.php:452 my-calendar-settings.php:462
2863
+ #: my-calendar-settings.php:467
2864
  msgid "All template tags are available."
2865
  msgstr ""
2866
 
2867
+ #: my-calendar-settings.php:455
2868
  msgid "Event details link text"
2869
  msgstr ""
2870
 
2871
+ #: my-calendar-settings.php:457
2872
  msgid "Available tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
2873
  msgstr ""
2874
 
2875
+ #: my-calendar-settings.php:460
2876
  msgid "Event URL link text"
2877
  msgstr ""
2878
 
2879
+ #: my-calendar-settings.php:591
2880
  msgid "Show Link to Google Map"
2881
  msgstr ""
2882
 
2883
+ #: my-calendar-settings.php:594
2884
  msgid "Show Event Address"
2885
  msgstr ""
2886
 
2887
+ #: my-calendar-settings.php:615
2888
  msgid "Event links expire after event passes."
2889
  msgstr "Event-Links werden ungültig, wenn das Event vorrüber ist."
2890
 
2891
+ #: my-calendar-settings.php:612
2892
  msgid "Show availability status"
2893
  msgstr ""
2894
 
2895
+ #: my-calendar-settings.php:624
 
 
 
 
2896
  msgid "Event titles are category colors."
2897
  msgstr "Event-Titel sind Kategoriefarben."
2898
 
2899
+ #: my-calendar-settings.php:625
2900
  msgid "Event titles have category color as background."
2901
  msgstr ""
2902
 
2903
+ #: my-calendar-settings.php:637
2904
  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."
2905
  msgstr ""
2906
 
2907
+ #: my-calendar-settings.php:640
2908
  msgid "Holiday Category"
2909
  msgstr "Feiertag-Kategorie"
2910
 
2911
+ #: my-calendar-settings.php:642
2912
  msgid "None"
2913
  msgstr ""
2914
 
2915
+ #: my-calendar-settings.php:658
2916
  msgid "Default setting for event input: If an event coincides with an event in the designated \"Holiday\" category, do not show the event."
2917
  msgstr ""
2918
 
2919
+ #: my-calendar-settings.php:709
2920
  msgid "Calendar Input Settings"
2921
  msgstr "Kalender-Eingabe-Einstellungen"
2922
 
2923
+ #: my-calendar-settings.php:714
2924
  msgid "Select which input fields will be available when adding or editing events."
2925
  msgstr ""
2926
 
2927
+ #: my-calendar-settings.php:719 my-calendar.php:389
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2928
  msgid "Use HTML Editor in Event Description Field"
2929
  msgstr ""
2930
 
2931
+ #: my-calendar-settings.php:732
2932
  msgid "Administrators see all input options"
2933
  msgstr "Administratoren sehen alle Eingabefelder"
2934
 
2935
+ #: my-calendar-settings.php:737
2936
  msgid "Save Input Settings"
2937
  msgstr "Eingabe-Einstellungen speichern"
2938
 
2939
+ #: my-calendar-settings.php:747
2940
  msgid "Multisite Settings (Network Administrators only)"
2941
  msgstr ""
2942
 
2943
+ #: my-calendar-settings.php:749
2944
  msgid "Multisite support is a beta feature - use with caution."
2945
  msgstr ""
2946
 
2947
+ #: my-calendar-settings.php:754
2948
  msgid "Settings for WP MultiSite configurations"
2949
  msgstr ""
2950
 
2951
+ #: my-calendar-settings.php:755
2952
  msgid "The central calendar is the calendar associated with the primary site in your WordPress Multisite network."
2953
  msgstr ""
2954
 
2955
+ #: my-calendar-settings.php:757
2956
  msgid "Site owners may only post to their local calendar"
2957
  msgstr ""
2958
 
2959
+ #: my-calendar-settings.php:758
2960
  msgid "Site owners may only post to the central calendar"
2961
  msgstr ""
2962
 
2963
+ #: my-calendar-settings.php:759
2964
  msgid "Site owners may manage either calendar"
2965
  msgstr ""
2966
 
2967
+ #: my-calendar-settings.php:761
2968
  msgid "Changes only effect input permissions. Public-facing calendars will be unchanged."
2969
  msgstr ""
2970
 
2971
+ #: my-calendar-settings.php:763
2972
  msgid "Sub-site calendars show events from their local calendar."
2973
  msgstr ""
2974
 
2975
+ #: my-calendar-settings.php:764
2976
  msgid "Sub-site calendars show events from the central calendar."
2977
  msgstr ""
2978
 
2979
+ #: my-calendar-settings.php:768
2980
  msgid "Save Multisite Settings"
2981
  msgstr ""
2982
 
2983
+ #: my-calendar-settings.php:778
2984
  msgid "My Calendar Permissions"
2985
  msgstr "My Calender-Berechtigungen"
2986
 
2987
+ #: my-calendar-settings.php:785
2988
  msgid "Calendar Options: Permissions"
2989
  msgstr "Kalender-Optionen: Berechtigungen"
2990
 
2991
+ #: my-calendar-settings.php:821
2992
  msgid "Save Permissions"
2993
  msgstr "Berechtigungen speichern"
2994
 
2995
+ #: my-calendar-settings.php:825
2996
  msgid "My Calendar permission settings are only available to administrators."
2997
  msgstr ""
2998
 
2999
+ #: my-calendar-settings.php:833
3000
  msgid "Calendar Email Settings"
3001
  msgstr "Kalender-E-Mail-Einstellungen"
3002
 
3003
+ #: my-calendar-settings.php:838
3004
  msgid "Calendar Options: Email Notifications"
3005
  msgstr "Kalender-Optionen: E-Mail-Benachrichtigung"
3006
 
3007
+ #: my-calendar-settings.php:842
3008
  msgid "Send Email Notifications when new events are scheduled or reserved."
3009
  msgstr "Senden Sie E-Mail Benachrichtigungen, wenn neue Termine geplant sind oder reserviert."
3010
 
3011
+ #: my-calendar-settings.php:845
3012
  msgid "Notification messages are sent to: "
3013
  msgstr "Benachrichtigungen sind zu richten an: "
3014
 
3015
+ #: my-calendar-settings.php:851
3016
  msgid "Email subject"
3017
  msgstr "Email-Betreff"
3018
 
3019
+ #: my-calendar-settings.php:851
3020
  msgid "New event Added"
3021
  msgstr "Neuer Termin hinzugefügt"
3022
 
3023
+ #: my-calendar-settings.php:854
3024
  msgid "Message Body"
3025
  msgstr "Nachrichtentext"
3026
 
3027
+ #: my-calendar-settings.php:854
3028
  msgid "New Event:"
3029
  msgstr "Neuer Event:"
3030
 
3031
+ #: my-calendar-settings.php:855
3032
  msgid "Shortcode Help"
3033
  msgstr "Shortcode-Hilfe"
3034
 
3035
+ #: my-calendar-settings.php:855
3036
  msgid "All template shortcodes are available."
3037
  msgstr "Alle Template-Shortcodes sind verfügbar."
3038
 
3039
+ #: my-calendar-settings.php:863
3040
  msgid "Save Email Settings"
3041
  msgstr "E-Mail-Einstellungen speichern"
3042
 
3043
+ #: my-calendar-settings.php:872
3044
  msgid "Calendar User Settings"
3045
  msgstr "Kalender Benutzer-Einstellungen"
3046
 
3047
+ #: my-calendar-settings.php:880
3048
  msgid "Settings which can be configured in registered user's accounts"
3049
  msgstr ""
3050
 
3051
+ #: my-calendar-settings.php:882
3052
  msgid "Allow registered users to provide timezone or location presets in their user profiles."
3053
  msgstr "Registrierten Benutzern erlauben, Zeitzone oder Standard-Standort in ihren Benutzer-Profilen anzubieten."
3054
 
3055
+ #: my-calendar-settings.php:894
3056
  msgid "Timezone Settings"
3057
  msgstr "Zeitzone-Einstellungen"
3058
 
3059
+ #: my-calendar-settings.php:895
3060
  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."
3061
  msgstr "Diese Einstellungen bieten Benutzern die Möglichkeit, eine Zeitzone in ihrem Benutzerprofil zu wählen. Wenn sie ihren Kalender ansehen, wird die Zeit für Events in der Zeit ihrer Zeitzone sowie der eingegebene Wert angezeigt."
3062
 
3063
+ #: my-calendar-settings.php:897
3064
  msgid "Enable Timezone"
3065
  msgstr "Aktiviere Zeitzone"
3066
 
3067
+ #: my-calendar-settings.php:900
3068
  msgid "Select Timezone Label"
3069
  msgstr "Wählen Sie den Zeitzonen-Namen"
3070
 
3071
+ #: my-calendar-settings.php:903
3072
  msgid "Timezone Options"
3073
  msgstr "Zeitzonen-Optionen"
3074
 
3075
+ #: my-calendar-settings.php:903 my-calendar-settings.php:927
3076
  msgid "Value, Label; one per line"
3077
  msgstr "Wert, Beschriftung; eine pro Zeile"
3078
 
3079
+ #: my-calendar-settings.php:915
3080
  msgid "Location Settings"
3081
  msgstr "Standorteinstellungen"
3082
 
3083
+ #: my-calendar-settings.php:916
3084
  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."
3085
  msgstr ""
3086
 
3087
+ #: my-calendar-settings.php:918
3088
  msgid "Enable Location"
3089
  msgstr "Standort freigeben"
3090
 
3091
+ #: my-calendar-settings.php:921
3092
  msgid "Use this location list as input control"
3093
  msgstr ""
3094
 
3095
+ #: my-calendar-settings.php:921
3096
  msgid "The normal text entry for this location type will be replaced by a drop down containing these choices."
3097
  msgstr ""
3098
 
3099
+ #: my-calendar-settings.php:924
3100
  msgid "Select Location Label"
3101
  msgstr "Wählen Sie Standort-Namen"
3102
 
3103
+ #: my-calendar-settings.php:927
3104
  msgid "Location Options"
3105
  msgstr "Standort-Optionen"
3106
 
3107
+ #: my-calendar-settings.php:937
3108
  msgid "Location Type"
3109
  msgstr "Standort-Typ"
3110
 
3111
+ #: my-calendar-settings.php:950
3112
  msgid "Save User Settings"
3113
  msgstr "Benutzereinstellungen sichern"
3114
 
3115
+ #: my-calendar-settings.php:954
3116
  msgid "Only users with the ability to edit user accounts may modify user settings."
3117
  msgstr ""
3118
 
3204
  msgid "Resetting your stylesheet will set your stylesheet to the version of that style currently distributed with the plug-in."
3205
  msgstr ""
3206
 
3207
+ #: my-calendar-templates.php:74
3208
  msgid "Map<span> to %s</span>"
3209
  msgstr ""
3210
 
3211
+ #: my-calendar-templates.php:107 my-calendar-templates.php:166
3212
  msgid "Visit web site<span>: %s</span>"
3213
  msgstr ""
3214
 
3215
+ #: my-calendar-templates.php:178
3216
  msgid "Date of Month (the %s of each month)"
3217
  msgstr ""
3218
 
3219
+ #: my-calendar-templates.php:179
3220
  msgid "Day of Month (the %s %s of each month)"
3221
  msgstr ""
3222
 
3332
  msgid "My Calendar Database is updated."
3333
  msgstr "My Calendar Datenbank ist geupdated."
3334
 
3335
+ #: my-calendar-user.php:41
3336
  msgid "My Calendar User Settings"
3337
  msgstr "My Calendar Benutzereinstellungen"
3338
 
3339
+ #: my-calendar-widgets.php:18
3340
  msgid "My Calendar: Today's Events"
3341
  msgstr "My Calendar: Heutige Events"
3342
 
3343
+ #: my-calendar-widgets.php:64 my-calendar-widgets.php:173
3344
  msgid "Template"
3345
  msgstr "Template"
3346
 
3347
+ #: my-calendar-widgets.php:67
3348
  msgid "Add calendar URL to use this option."
3349
  msgstr ""
3350
 
3351
+ #: my-calendar-widgets.php:79
3352
  msgid "Show this text if there are no events today:"
3353
  msgstr "Zeige diesen Text, wenn heute keine Events stattfinden:"
3354
 
3355
+ #: my-calendar-widgets.php:83 my-calendar-widgets.php:221
3356
+ #: my-calendar-widgets.php:687
3357
  msgid "Category or categories to display:"
3358
  msgstr "Kategorie oder Kategorien für Anzeige:"
3359
 
3360
+ #: my-calendar-widgets.php:115
3361
  msgid "My Calendar: Upcoming Events"
3362
  msgstr "My Calendar: Kommende Events"
3363
 
3364
+ #: my-calendar-widgets.php:177
3365
  msgid "Widget Options"
3366
  msgstr "Widget Optionen"
3367
 
3368
+ #: my-calendar-widgets.php:191
3369
  msgid "Display upcoming events by:"
3370
  msgstr "Zeige kommende Events:"
3371
 
3372
+ #: my-calendar-widgets.php:192
3373
  msgid "Events (e.g. 2 past, 3 future)"
3374
  msgstr "Events (z.B. 2 in der Vergangenheit, 3 in der Zukunft)"
3375
 
3376
+ #: my-calendar-widgets.php:193
3377
  msgid "Dates (e.g. 4 days past, 5 forward)"
3378
  msgstr "Daten (z.B. vor 4 Tagen in 5 Tagen)"
3379
 
3380
+ #: my-calendar-widgets.php:199
3381
  msgid "Skip the first <em>n</em> events"
3382
  msgstr ""
3383
 
3384
+ #: my-calendar-widgets.php:202
3385
  msgid "Events sort order:"
3386
  msgstr ""
3387
 
3388
+ #: my-calendar-widgets.php:203
3389
  msgid "Ascending (near to far)"
3390
  msgstr ""
3391
 
3392
+ #: my-calendar-widgets.php:204
3393
  msgid "Descending (far to near)"
3394
  msgstr ""
3395
 
3396
+ #: my-calendar-widgets.php:214
3397
  msgid "Include today's events"
3398
  msgstr ""
3399
 
3400
+ #: my-calendar-widgets.php:217
3401
  msgid "Show this text if there are no events meeting your criteria:"
3402
  msgstr "Zeige diesen Text, wenn es keine Events gibt, die Ihren Kriterien entsprechen:"
3403
 
3404
+ #: my-calendar-widgets.php:622
3405
  msgid "My Calendar: Mini Calendar"
3406
  msgstr ""
3407
 
3408
+ #: my-calendar-widgets.php:651
3409
  msgid "Calendar"
3410
  msgstr "Kalender"
3411
 
3412
+ #: my-calendar-widgets.php:722
 
 
 
 
 
 
 
 
3413
  msgid "Mini-Calendar Timespan:"
3414
  msgstr ""
3415
 
3416
+ #: my-calendar.php:146
3417
  msgid "Support This Plug-in"
3418
  msgstr ""
3419
 
3420
+ #: my-calendar.php:152
3421
  msgid "Help me help you:"
3422
  msgstr ""
3423
 
3424
+ #: my-calendar.php:152
3425
  msgid "Buy the My Calendar User's Guide"
3426
  msgstr "Kauf den My Calendar User's Guide"
3427
 
3428
+ #: my-calendar.php:153
3429
  msgid "<strong>Or make a donation today!</strong> Every donation counts - donate $2, $10, or $100 and help me keep this plug-in running!"
3430
  msgstr ""
3431
 
3432
+ #: my-calendar.php:158 my-calendar.php:161
3433
  msgid "Make a Donation"
3434
  msgstr "Spenden"
3435
 
3436
+ #: my-calendar.php:169
3437
  msgid "Get Help"
3438
  msgstr "Hilfe bekommen"
3439
 
3440
+ #: my-calendar.php:173
3441
  msgid "Get Support"
3442
  msgstr "Support bekommen"
3443
 
3444
+ #: my-calendar-help.php:10 my-calendar.php:174 my-calendar.php:357
3445
  msgid "My Calendar Help"
3446
  msgstr "My Calendar Hilfe"
3447
 
3448
+ #: my-calendar.php:175
3449
  msgid "Check out my other plug-ins"
3450
  msgstr ""
3451
 
3452
+ #: my-calendar.php:176
3453
  msgid "Rate this plug-in 5 stars!"
3454
  msgstr ""
3455
 
3456
+ #: my-calendar.php:202
3457
  msgid "Title of the event."
3458
  msgstr ""
3459
 
3460
+ #: my-calendar.php:205
3461
  msgid "Title of the event as a link if a URL is present, or the title alone if not."
3462
  msgstr ""
3463
 
3464
+ #: my-calendar.php:208
3465
  msgid "Start time for the event."
3466
  msgstr ""
3467
 
3468
+ #: my-calendar.php:211
3469
  msgid "Event times adjusted to the current user's time zone if set."
3470
  msgstr ""
3471
 
3472
+ #: my-calendar.php:214
3473
  msgid "Date on which the event begins."
3474
  msgstr ""
3475
 
3476
+ #: my-calendar.php:217
3477
  msgid "Date on which the event ends."
3478
  msgstr ""
3479
 
3480
+ #: my-calendar.php:220
3481
  msgid "Time at which the event ends."
3482
  msgstr ""
3483
 
3484
+ #: my-calendar.php:223
3485
  msgid "Beginning date to end date; excludes end date if same as beginning."
3486
  msgstr ""
3487
 
3488
+ #: my-calendar.php:226
3489
  msgid "Multi-day events: an unordered list of dates/times. Otherwise, beginning date/time."
3490
  msgstr ""
3491
 
3492
+ #: my-calendar.php:229
3493
  msgid "Author who posted the event."
3494
  msgstr ""
3495
 
3496
+ #: my-calendar.php:232
3497
  msgid "Name of the assigned host for the event."
3498
  msgstr ""
3499
 
3500
+ #: my-calendar.php:235
3501
  msgid "Email for the person assigned as host."
3502
  msgstr "Email des Gastgebers"
3503
 
3504
+ #: my-calendar.php:238
3505
  msgid "Short event description."
3506
  msgstr "Kurzbeschreibung des Termins"
3507
 
3508
+ #: my-calendar.php:241
3509
  msgid "Description of the event."
3510
  msgstr "Beschreibung des Termins"
3511
 
3512
+ #: my-calendar.php:247
3513
  msgid "URL provided for the event."
3514
  msgstr ""
3515
 
3516
+ #: my-calendar.php:250
3517
  msgid "Link to an auto-generated page containing information about the event."
3518
  msgstr ""
3519
 
3520
+ #: my-calendar.php:253
3521
  msgid "Whether event is currently open for registration."
3522
  msgstr ""
3523
 
3524
+ #: my-calendar.php:256
3525
  msgid "Current status of event: either \"Published\" or \"Reserved.\""
3526
  msgstr ""
3527
 
3528
+ #: my-calendar.php:262
3529
  msgid "Name of the location of the event."
3530
  msgstr "Name des Terminorts"
3531
 
3532
+ #: my-calendar.php:265
3533
  msgid "First line of the site address."
3534
  msgstr "Erste Adresszeile"
3535
 
3536
+ #: my-calendar.php:268
3537
  msgid "Second line of the site address."
3538
  msgstr "Zweite Adresszeile"
3539
 
3540
+ #: my-calendar.php:271
3541
  msgid "City."
3542
  msgstr "Stadt"
3543
 
3544
+ #: my-calendar.php:274
3545
  msgid "State."
3546
  msgstr "Bundesland"
3547
 
3548
+ #: my-calendar.php:277
3549
  msgid "Postal code/zip code."
3550
  msgstr "Postleitzahl"
3551
 
3552
+ #: my-calendar.php:280
3553
  msgid "Custom region."
3554
  msgstr ""
3555
 
3556
+ #: my-calendar.php:283
3557
  msgid "Country for the event location."
3558
  msgstr ""
3559
 
3560
+ #: my-calendar.php:286
3561
  msgid "Output the URL for the location."
3562
  msgstr ""
3563
 
3564
+ #: my-calendar.php:289
3565
  msgid "Event address in <a href=\"http://microformats.org/wiki/hcard\">hcard</a> format."
3566
  msgstr ""
3567
 
3568
+ #: my-calendar.php:292
3569
  msgid "Link to Google Map to the event, if address information is available."
3570
  msgstr "Link zur Google Map des Termins, wenn die Adress-Informationen vorhanden sind"
3571
 
3572
+ #: my-calendar.php:298
3573
  msgid "Name of the category of the event."
3574
  msgstr "Name der Kategorie des Termins"
3575
 
3576
+ #: my-calendar.php:301
3577
  msgid "URL for the event's category icon."
3578
  msgstr "Symbol-URL der Kategorie des Termins"
3579
 
3580
+ #: my-calendar.php:304
3581
  msgid "Hex code for the event's category color."
3582
  msgstr ""
3583
 
3584
+ #: my-calendar.php:307
3585
  msgid "ID of the category of the event."
3586
  msgstr ""
3587
 
3588
+ #: my-calendar.php:327 my-calendar.php:329 my-calendar.php:334
3589
+ #: my-calendar.php:336
3590
  msgid "My Calendar"
3591
  msgstr "My Calendar"
3592
 
3593
+ #: my-calendar.php:353
 
 
 
 
3594
  msgid "Style Editor"
3595
  msgstr "Style Editor"
3596
 
3597
+ #: my-calendar.php:355
 
 
 
 
3598
  msgid "Template Editor"
3599
  msgstr "Vorlagen Editor"
3600
 
lang/my-calendar-sl_SI.mo CHANGED
Binary file
lang/my-calendar-sl_SI.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: 2013-08-20 19:44:56+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -1154,7 +1154,7 @@ msgstr ""
1154
 
1155
  #: my-calendar-core.php:1496
1156
  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>"
1157
- msgstr ""
1158
 
1159
  #: my-calendar-core.php:1498
1160
  msgid "From:"
@@ -1162,39 +1162,39 @@ msgstr "Od:"
1162
 
1163
  #: my-calendar-core.php:1501
1164
  msgid "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">the FAQ for this plug-in</a>."
1165
- msgstr ""
1166
 
1167
  #: my-calendar-core.php:1504
1168
  msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
1169
- msgstr ""
1170
 
1171
  #: my-calendar-core.php:1507
1172
  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."
1173
- msgstr ""
1174
 
1175
  #: my-calendar-core.php:1513
1176
  msgid "Send Support Request"
1177
- msgstr ""
1178
 
1179
  #: my-calendar-core.php:1516
1180
  msgid "The following additional information will be sent with your support request:"
1181
- msgstr ""
1182
 
1183
  #: my-calendar-event-manager.php:169 my-calendar-settings.php:333
1184
  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?"
1185
- msgstr ""
1186
 
1187
  #: my-calendar-event-manager.php:176 my-calendar-settings.php:339
1188
  msgid "Import from Calendar"
1189
- msgstr ""
1190
 
1191
  #: my-calendar-event-manager.php:181
1192
  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>!"
1193
- msgstr ""
1194
 
1195
  #: my-calendar-event-manager.php:105
1196
  msgid "%1$d events deleted successfully out of %2$d selected"
1197
- msgstr ""
1198
 
1199
  #: my-calendar-event-manager.php:107 my-calendar-event-manager.php:137
1200
  #: my-calendar-event-manager.php:305 my-calendar-event-manager.php:379
@@ -1206,19 +1206,19 @@ msgstr ""
1206
  #: my-calendar-group-manager.php:84 my-calendar-group-manager.php:162
1207
  #: my-calendar-group-manager.php:599
1208
  msgid "Error"
1209
- msgstr ""
1210
 
1211
  #: my-calendar-event-manager.php:107
1212
  msgid "Your events have not been deleted. Please investigate."
1213
- msgstr ""
1214
 
1215
  #: my-calendar-event-manager.php:26
1216
  msgid "Delete Event"
1217
- msgstr ""
1218
 
1219
  #: my-calendar-event-manager.php:26
1220
  msgid "Are you sure you want to delete this event?"
1221
- msgstr ""
1222
 
1223
  #: my-calendar-event-manager.php:42
1224
  msgid "You do not have permission to delete that event."
@@ -1286,604 +1286,604 @@ msgstr "Brisanje dogodka ni mogoče brez vnešenega id-ja dogodka."
1286
 
1287
  #: my-calendar-event-manager.php:414
1288
  msgid "Event deleted successfully"
1289
- msgstr ""
1290
 
1291
  #: my-calendar-event-manager.php:416
1292
  msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
1293
- msgstr ""
1294
 
1295
  #: my-calendar-event-manager.php:429 my-calendar-group-manager.php:182
1296
  msgid "Sorry! That's an invalid event key."
1297
- msgstr ""
1298
 
1299
  #: my-calendar-event-manager.php:433 my-calendar-group-manager.php:186
1300
  msgid "Sorry! We couldn't find an event with that ID."
1301
- msgstr ""
1302
 
1303
  #: my-calendar-event-manager.php:458
1304
  msgid "This event must be approved in order for it to appear on the calendar."
1305
- msgstr ""
1306
 
1307
  #: my-calendar-event-manager.php:526
1308
  msgid "Add/Edit Event"
1309
- msgstr ""
1310
 
1311
  #: my-calendar-event-manager.php:529 my-calendar-event-manager.php:964
1312
  msgid "Save Event"
1313
- msgstr ""
1314
 
1315
  #: my-calendar-event-manager.php:543 my-calendar-group-manager.php:312
1316
  msgid "Enter your Event Information"
1317
- msgstr ""
1318
 
1319
  #: my-calendar-event-manager.php:545 my-calendar-group-manager.php:314
1320
  msgid "Event Title"
1321
- msgstr ""
1322
 
1323
  #: my-calendar-event-manager.php:545 my-calendar-event-manager.php:693
1324
  #: my-calendar-group-manager.php:314
1325
  msgid "(required)"
1326
- msgstr ""
1327
 
1328
  #: my-calendar-event-manager.php:550
1329
  msgid "Publish"
1330
- msgstr ""
1331
 
1332
  #: my-calendar-event-manager.php:550
1333
  msgid "You must approve this event to promote it to the calendar."
1334
- msgstr ""
1335
 
1336
  #: my-calendar-event-manager.php:552
1337
  msgid "An administrator must approve your new event."
1338
- msgstr ""
1339
 
1340
  #: my-calendar-event-manager.php:567
1341
  msgid "This event is not spam"
1342
- msgstr ""
1343
 
1344
  #: my-calendar-event-manager.php:582 my-calendar-group-manager.php:328
1345
  msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
1346
- msgstr ""
1347
 
1348
  #: my-calendar-event-manager.php:603 my-calendar-event-manager.php:616
1349
  #: my-calendar-group-manager.php:339 my-calendar-group-manager.php:347
1350
  msgid "This event's image:"
1351
- msgstr ""
1352
 
1353
  #: my-calendar-event-manager.php:605 my-calendar-group-manager.php:341
1354
  msgid "Add an image:"
1355
- msgstr ""
1356
 
1357
  #: my-calendar-event-manager.php:607
1358
  msgid "(URL to Event image)"
1359
- msgstr ""
1360
 
1361
  #: my-calendar-event-manager.php:609 my-calendar-group-manager.php:341
1362
  msgid "Upload Image"
1363
- msgstr ""
1364
 
1365
  #: my-calendar-event-manager.php:609 my-calendar-group-manager.php:341
1366
  msgid "Include your image URL or upload an image."
1367
- msgstr ""
1368
 
1369
  #: my-calendar-event-manager.php:622 my-calendar-group-manager.php:353
1370
  msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
1371
- msgstr ""
1372
 
1373
  #: my-calendar-event-manager.php:626 my-calendar-group-manager.php:357
1374
  msgid "Event Host"
1375
- msgstr ""
1376
 
1377
  #: my-calendar-event-manager.php:645 my-calendar-group-manager.php:376
1378
  msgid "Event Category"
1379
- msgstr ""
1380
 
1381
  #: my-calendar-event-manager.php:657 my-calendar-group-manager.php:388
1382
  msgid "Event Link (Optional)"
1383
- msgstr ""
1384
 
1385
  #: my-calendar-event-manager.php:657 my-calendar-group-manager.php:388
1386
  msgid "This link will expire when the event passes."
1387
- msgstr ""
1388
 
1389
  #: my-calendar-event-manager.php:667 my-calendar-event-manager.php:675
1390
  msgid "Event Date and Time"
1391
- msgstr ""
1392
 
1393
  #: my-calendar-event-manager.php:693
1394
  msgid "Start Date (YYYY-MM-DD)"
1395
- msgstr ""
1396
 
1397
  #: my-calendar-event-manager.php:693
1398
  msgid "Time (hh:mm am/pm)"
1399
- msgstr ""
1400
 
1401
  #: my-calendar-event-manager.php:702
1402
  msgid "End Date (YYYY-MM-DD)"
1403
- msgstr ""
1404
 
1405
  #: my-calendar-event-manager.php:702
1406
  msgid "End Time (hh:mm am/pm)"
1407
- msgstr ""
1408
 
1409
  #: my-calendar-event-manager.php:713
1410
  msgid "This is a multi-day event."
1411
- msgstr ""
1412
 
1413
  #: my-calendar-event-manager.php:715
1414
  msgid "Enter the beginning and ending dates/times for each occurrence of the event."
1415
- msgstr ""
1416
 
1417
  #: my-calendar-event-manager.php:715
1418
  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."
1419
- msgstr ""
1420
 
1421
  #: my-calendar-event-manager.php:717
1422
  msgid "Add another occurrence"
1423
- msgstr ""
1424
 
1425
  #: my-calendar-event-manager.php:718
1426
  msgid "Remove last occurrence"
1427
- msgstr ""
1428
 
1429
  #: my-calendar-event-manager.php:740
1430
  msgid "Current time difference from GMT is "
1431
- msgstr ""
1432
 
1433
  #: my-calendar-event-manager.php:740
1434
  msgid " hour(s)"
1435
- msgstr ""
1436
 
1437
  #: my-calendar-event-manager.php:750 my-calendar-event-manager.php:764
1438
  msgid "Recurring Events"
1439
- msgstr ""
1440
 
1441
  #: my-calendar-event-manager.php:769
1442
  msgid "Units"
1443
- msgstr ""
1444
 
1445
  #: my-calendar-core.php:1536 my-calendar-templates.php:173
1446
  msgid "Does not recur"
1447
- msgstr ""
1448
 
1449
  #: my-calendar-event-manager.php:1167 my-calendar-group-manager.php:802
1450
  #: my-calendar-templates.php:174
1451
  msgid "Daily"
1452
- msgstr ""
1453
 
1454
  #: my-calendar-templates.php:175
1455
  msgid "Daily, weekdays only"
1456
- msgstr ""
1457
 
1458
  #: my-calendar-event-manager.php:1169 my-calendar-group-manager.php:804
1459
  #: my-calendar-templates.php:176
1460
  msgid "Weekly"
1461
- msgstr ""
1462
 
1463
  #: my-calendar-templates.php:177
1464
  msgid "Bi-weekly"
1465
- msgstr ""
1466
 
1467
  #: my-calendar-templates.php:180
1468
  msgid "Annually"
1469
- msgstr ""
1470
 
1471
  #: my-calendar-event-manager.php:772
1472
  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."
1473
- msgstr ""
1474
 
1475
  #: my-calendar-event-manager.php:793
1476
  msgid "Event Registration Settings"
1477
- msgstr ""
1478
 
1479
  #: my-calendar-event-manager.php:796 my-calendar-group-manager.php:402
1480
  msgid "Event Registration Status"
1481
- msgstr ""
1482
 
1483
  #: my-calendar-event-manager.php:797 my-calendar-group-manager.php:403
1484
  msgid "My Calendar does not manage event registrations. Use this for information only."
1485
- msgstr ""
1486
 
1487
  #: my-calendar-event-manager.php:799 my-calendar-group-manager.php:405
1488
  msgid "Open"
1489
- msgstr ""
1490
 
1491
  #: my-calendar-event-manager.php:800 my-calendar-group-manager.php:406
1492
  msgid "Closed"
1493
- msgstr ""
1494
 
1495
  #: my-calendar-event-manager.php:801 my-calendar-group-manager.php:407
1496
  msgid "Does not apply"
1497
- msgstr ""
1498
 
1499
  #: my-calendar-event-manager.php:804 my-calendar-group-manager.php:410
1500
  msgid "If this event recurs, it can only be registered for as a complete series."
1501
- msgstr ""
1502
 
1503
  #: my-calendar-event-manager.php:821 my-calendar-event-manager.php:824
1504
  #: my-calendar-group-manager.php:427 my-calendar-group-manager.php:430
1505
  #: my-calendar-locations.php:129
1506
  msgid "Event Location"
1507
- msgstr ""
1508
 
1509
  #: my-calendar-event-manager.php:831 my-calendar-group-manager.php:437
1510
  msgid "Choose a preset location:"
1511
- msgstr ""
1512
 
1513
  #: my-calendar-event-manager.php:841 my-calendar-group-manager.php:450
1514
  msgid "Add recurring locations for later use."
1515
- msgstr ""
1516
 
1517
  #: my-calendar-event-manager.php:848 my-calendar-group-manager.php:459
1518
  #: my-calendar-locations.php:131
1519
  msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
1520
- msgstr ""
1521
 
1522
  #: my-calendar-event-manager.php:852 my-calendar-group-manager.php:462
1523
  #: my-calendar-locations.php:134
1524
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
1525
- msgstr ""
1526
 
1527
  #: my-calendar-event-manager.php:861 my-calendar-group-manager.php:465
1528
  #: my-calendar-locations.php:143
1529
  msgid "Street Address"
1530
- msgstr ""
1531
 
1532
  #: my-calendar-event-manager.php:864 my-calendar-group-manager.php:468
1533
  #: my-calendar-locations.php:146
1534
  msgid "Street Address (2)"
1535
- msgstr ""
1536
 
1537
  #: my-calendar-event-manager.php:867 my-calendar-group-manager.php:471
1538
  #: my-calendar-locations.php:149
1539
  msgid "Phone"
1540
- msgstr ""
1541
 
1542
  #: my-calendar-event-manager.php:877 my-calendar-group-manager.php:474
1543
  #: my-calendar-locations.php:159 my-calendar-settings.php:941
1544
  msgid "State/Province"
1545
- msgstr ""
1546
 
1547
  #: my-calendar-event-manager.php:911 my-calendar-group-manager.php:484
1548
  #: my-calendar-locations.php:191
1549
  msgid "Initial Zoom"
1550
- msgstr ""
1551
 
1552
  #: my-calendar-event-manager.php:913 my-calendar-group-manager.php:486
1553
  #: my-calendar-locations.php:193
1554
  msgid "Neighborhood"
1555
- msgstr ""
1556
 
1557
  #: my-calendar-event-manager.php:914 my-calendar-group-manager.php:487
1558
  #: my-calendar-locations.php:194
1559
  msgid "Small City"
1560
- msgstr ""
1561
 
1562
  #: my-calendar-event-manager.php:915 my-calendar-group-manager.php:488
1563
  #: my-calendar-locations.php:195
1564
  msgid "Large City"
1565
- msgstr ""
1566
 
1567
  #: my-calendar-event-manager.php:916 my-calendar-group-manager.php:489
1568
  #: my-calendar-locations.php:196
1569
  msgid "Greater Metro Area"
1570
- msgstr ""
1571
 
1572
  #: my-calendar-event-manager.php:922 my-calendar-group-manager.php:495
1573
  msgid "Location URL"
1574
- msgstr ""
1575
 
1576
  #: my-calendar-event-manager.php:925 my-calendar-group-manager.php:498
1577
  #: my-calendar-locations.php:205
1578
  msgid "GPS Coordinates (optional)"
1579
- msgstr ""
1580
 
1581
  #: my-calendar-event-manager.php:927 my-calendar-group-manager.php:500
1582
  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."
1583
- msgstr ""
1584
 
1585
  #: my-calendar-event-manager.php:930 my-calendar-group-manager.php:503
1586
  #: my-calendar-locations.php:210
1587
  msgid "Latitude"
1588
- msgstr ""
1589
 
1590
  #: my-calendar-event-manager.php:930 my-calendar-group-manager.php:503
1591
  #: my-calendar-locations.php:211
1592
  msgid "Longitude"
1593
- msgstr ""
1594
 
1595
  #: my-calendar-event-manager.php:943
1596
  msgid "Special scheduling options"
1597
- msgstr ""
1598
 
1599
  #: my-calendar-event-manager.php:946
1600
  msgid "Special Options"
1601
- msgstr ""
1602
 
1603
  #: my-calendar-event-manager.php:948
1604
  msgid "Cancel this event if it occurs on a date with an event in the Holidays category"
1605
- msgstr ""
1606
 
1607
  #: my-calendar-event-manager.php:951
1608
  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."
1609
- msgstr ""
1610
 
1611
  #: my-calendar-event-manager.php:144 my-calendar-settings.php:120
1612
  #: my-calendar-settings.php:799 my-calendar.php:347
1613
  msgid "Manage Events"
1614
- msgstr ""
1615
 
1616
  #: my-calendar-event-manager.php:1051 my-calendar-templates.php:271
1617
  msgid "Published"
1618
- msgstr ""
1619
 
1620
  #: my-calendar-event-manager.php:1052 my-calendar-templates.php:271
1621
  msgid "Reserved"
1622
- msgstr ""
1623
 
1624
  #: my-calendar-event-manager.php:1053 my-calendar-group-manager.php:726
1625
  msgid "All"
1626
- msgstr ""
1627
 
1628
  #: my-calendar-event-manager.php:1092 my-calendar-group-manager.php:747
1629
  #: my-calendar-settings.php:399 my-calendar-widgets.php:60
1630
  #: my-calendar-widgets.php:169 my-calendar-widgets.php:679
1631
  msgid "Title"
1632
- msgstr ""
1633
 
1634
  #: my-calendar-group-manager.php:748
1635
  msgid "Where"
1636
- msgstr ""
1637
 
1638
  #: my-calendar-settings.php:400
1639
  msgid "Description"
1640
- msgstr ""
1641
 
1642
  #: my-calendar-group-manager.php:749
1643
  msgid "Starts"
1644
- msgstr ""
1645
 
1646
  #: my-calendar-group-manager.php:750
1647
  msgid "Recurs"
1648
- msgstr ""
1649
 
1650
  #: my-calendar-event-manager.php:1095 my-calendar-group-manager.php:751
1651
  #: my-calendar-settings.php:402
1652
  msgid "Author"
1653
- msgstr ""
1654
 
1655
  #: my-calendar-event-manager.php:1096 my-calendar-group-manager.php:752
1656
  #: my-calendar-output.php:138 my-calendar-settings.php:403
1657
  #: my-calendar-templates.php:269
1658
  msgid "Category"
1659
- msgstr ""
1660
 
1661
  #: my-calendar-event-manager.php:1166 my-calendar-group-manager.php:801
1662
  msgid "Never"
1663
- msgstr ""
1664
 
1665
  #: my-calendar-event-manager.php:1168 my-calendar-group-manager.php:803
1666
  msgid "Weekdays"
1667
- msgstr ""
1668
 
1669
  #: my-calendar-event-manager.php:1170 my-calendar-group-manager.php:805
1670
  msgid "Bi-Weekly"
1671
- msgstr ""
1672
 
1673
  #: my-calendar-event-manager.php:1171 my-calendar-group-manager.php:806
1674
  msgid "Monthly (by date)"
1675
- msgstr ""
1676
 
1677
  #: my-calendar-event-manager.php:1172 my-calendar-group-manager.php:807
1678
  msgid "Monthly (by day)"
1679
- msgstr ""
1680
 
1681
  #: my-calendar-event-manager.php:1173 my-calendar-group-manager.php:808
1682
  msgid "Yearly"
1683
- msgstr ""
1684
 
1685
  #: my-calendar-group-manager.php:811
1686
  msgid "Forever"
1687
- msgstr ""
1688
 
1689
  #: my-calendar-group-manager.php:812
1690
  msgid "%d Times"
1691
- msgstr ""
1692
 
1693
  #: my-calendar-event-manager.php:1129
1694
  msgid "Copy"
1695
- msgstr ""
1696
 
1697
  #: my-calendar-event-manager.php:1132 my-calendar-group-manager.php:784
1698
  #: my-calendar-output.php:316
1699
  msgid "Edit Group"
1700
- msgstr ""
1701
 
1702
  #: my-calendar-event-manager.php:1135 my-calendar-group-manager.php:788
1703
  msgid "Not editable."
1704
- msgstr ""
1705
 
1706
  #: my-calendar-event-manager.php:1139
1707
  msgid "Reject"
1708
- msgstr ""
1709
 
1710
  #: my-calendar-event-manager.php:1139
1711
  msgid "Approve"
1712
- msgstr ""
1713
 
1714
  #: my-calendar-event-manager.php:1144
1715
  msgid "Approved"
1716
- msgstr ""
1717
 
1718
  #: my-calendar-event-manager.php:1146
1719
  msgid "Rejected"
1720
- msgstr ""
1721
 
1722
  #: my-calendar-event-manager.php:1148
1723
  msgid "Awaiting Approval"
1724
- msgstr ""
1725
 
1726
  #: my-calendar-event-manager.php:1082 my-calendar-event-manager.php:1199
1727
  msgid "Delete checked events"
1728
- msgstr ""
1729
 
1730
  #: my-calendar-group-manager.php:838
1731
  msgid "There are no events in the database!"
1732
- msgstr ""
1733
 
1734
  #: my-calendar-event-manager.php:1366
1735
  msgid "Your event end date must be either after or the same as your event begin date"
1736
- msgstr ""
1737
 
1738
  #: my-calendar-event-manager.php:1369
1739
  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."
1740
- msgstr ""
1741
 
1742
  #: my-calendar-event-manager.php:1402 my-calendar-group-manager.php:599
1743
  msgid "The event title must be between 1 and 255 characters in length."
1744
- msgstr ""
1745
 
1746
  #: my-calendar-event-manager.php:1409
1747
  msgid "The repetition value must be 0 unless a type of recurrence is selected."
1748
- msgstr ""
1749
 
1750
  #: my-calendar-group-manager.php:58
1751
  msgid "Event not updated."
1752
- msgstr ""
1753
 
1754
  #: my-calendar-group-manager.php:84
1755
  msgid "Event not grouped."
1756
- msgstr ""
1757
 
1758
  #: my-calendar-group-manager.php:88
1759
  msgid "Event grouped successfully"
1760
- msgstr ""
1761
 
1762
  #: my-calendar-group-manager.php:103 my-calendar-group-manager.php:309
1763
  #: my-calendar-group-manager.php:514
1764
  msgid "Edit Event Group"
1765
- msgstr ""
1766
 
1767
  #: my-calendar-group-manager.php:106
1768
  msgid "You must provide an event group id in order to edit it"
1769
- msgstr ""
1770
 
1771
  #: my-calendar-group-manager.php:113 my-calendar-group-manager.php:121
1772
  #: my-calendar-group-manager.php:306 my-calendar.php:351
1773
  msgid "Manage Event Groups"
1774
- msgstr ""
1775
 
1776
  #: my-calendar-group-manager.php:114
1777
  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.)"
1778
- msgstr ""
1779
 
1780
  #: my-calendar-group-manager.php:115
1781
  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."
1782
- msgstr ""
1783
 
1784
  #: my-calendar-group-manager.php:234
1785
  msgid "<strong>NOTE:</strong> The group editable fields for the events in this group do not match"
1786
- msgstr ""
1787
 
1788
  #: my-calendar-group-manager.php:234
1789
  msgid "The group editable fields for the events in this group match."
1790
- msgstr ""
1791
 
1792
  #: my-calendar-group-manager.php:241
1793
  msgid "Apply these changes to:"
1794
- msgstr ""
1795
 
1796
  #: my-calendar-event-manager.php:1091 my-calendar-group-manager.php:252
1797
  msgid "Check/Uncheck all"
1798
- msgstr ""
1799
 
1800
  #: my-calendar-group-manager.php:254
1801
  msgid "Remove checked events from this group"
1802
- msgstr ""
1803
 
1804
  #: my-calendar-group-manager.php:272
1805
  msgid "You must provide a group ID to edit groups"
1806
- msgstr ""
1807
 
1808
  #: my-calendar-group-manager.php:322
1809
  msgid "Selected dates are a single multi-day event."
1810
- msgstr ""
1811
 
1812
  #: my-calendar-group-manager.php:399
1813
  msgid "Event Registration Options"
1814
- msgstr ""
1815
 
1816
  #: my-calendar-group-manager.php:721
1817
  msgid "Create/Modify Groups"
1818
- msgstr ""
1819
 
1820
  #: my-calendar-group-manager.php:730
1821
  msgid "Check a set of events to group them for mass editing."
1822
- msgstr ""
1823
 
1824
  #: my-calendar-group-manager.php:740 my-calendar-group-manager.php:832
1825
  msgid "Group checked events for mass editing"
1826
- msgstr ""
1827
 
1828
  #: my-calendar-group-manager.php:746
1829
  msgid "Group"
1830
- msgstr ""
1831
 
1832
  #: my-calendar-group-manager.php:786
1833
  msgid "Ungrouped"
1834
- msgstr ""
1835
 
1836
  #: my-calendar-help.php:4
1837
  msgid "How to use My Calendar"
1838
- msgstr ""
1839
 
1840
  #: my-calendar-help.php:45
1841
  msgid "Shortcode Syntax"
1842
- msgstr ""
1843
 
1844
  #: my-calendar-help.php:48
1845
  msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
1846
- msgstr ""
1847
 
1848
  #: my-calendar-help.php:50
1849
  msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
1850
- msgstr ""
1851
 
1852
  #: my-calendar-help.php:60
1853
  msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
1854
- msgstr ""
1855
 
1856
  #: my-calendar-help.php:61
1857
  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."
1858
- msgstr ""
1859
 
1860
  #: my-calendar-help.php:63
1861
  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.)"
1862
- msgstr ""
1863
 
1864
  #: my-calendar-help.php:64
1865
  msgid "The type of location data to restrict by."
1866
- msgstr ""
1867
 
1868
  #: my-calendar-help.php:65
1869
  msgid "The specific location information to filter to."
1870
- msgstr ""
1871
 
1872
  #: my-calendar-help.php:75
1873
  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."
1874
- msgstr ""
1875
 
1876
  #: my-calendar-help.php:77
1877
  msgid "Additional Calendar Views (Upcoming events, today's events)"
1878
- msgstr ""
1879
 
1880
  #: my-calendar-help.php:87
1881
  msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
1882
- msgstr ""
1883
 
1884
  #: my-calendar-help.php:94
1885
  msgid "Supplement Features (Locations filter, Categories filter)"
1886
- msgstr ""
1887
 
1888
  #: my-calendar-help.php:98
1889
  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>."
@@ -1911,87 +1911,87 @@ msgstr ""
1911
 
1912
  #: my-calendar-help.php:121
1913
  msgid "Your icons folder is:"
1914
- msgstr ""
1915
 
1916
  #: my-calendar-help.php:121
1917
  msgid "You can alternately place icons in:"
1918
- msgstr ""
1919
 
1920
  #: my-calendar-help.php:130
1921
  msgid "Custom Styles"
1922
- msgstr ""
1923
 
1924
  #: my-calendar-help.php:133
1925
  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."
1926
- msgstr ""
1927
 
1928
  #: my-calendar-help.php:136
1929
  msgid "Your stylesheet directory is"
1930
- msgstr ""
1931
 
1932
  #: my-calendar-help.php:137
1933
  msgid "Your custom stylesheets directory is"
1934
- msgstr ""
1935
 
1936
  #: my-calendar-help.php:140
1937
  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>."
1938
- msgstr ""
1939
 
1940
  #: my-calendar-help.php:148
1941
  msgid "Widget Templating"
1942
- msgstr ""
1943
 
1944
  #: my-calendar-help.php:151
1945
  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."
1946
- msgstr ""
1947
 
1948
  #: my-calendar-help.php:154
1949
  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."
1950
- msgstr ""
1951
 
1952
  #: my-calendar-help.php:157
1953
  msgid "Example:"
1954
- msgstr ""
1955
 
1956
  #: my-calendar-help.php:159 my-calendar.php:198
1957
  msgid "Event Template Tags"
1958
- msgstr ""
1959
 
1960
  #: my-calendar-help.php:162
1961
  msgid "Displays the title of the event."
1962
- msgstr ""
1963
 
1964
  #: my-calendar-help.php:165
1965
  msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
1966
- msgstr ""
1967
 
1968
  #: my-calendar-help.php:168
1969
  msgid "Displays the start time for the event."
1970
- msgstr ""
1971
 
1972
  #: my-calendar-help.php:171
1973
  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."
1974
- msgstr ""
1975
 
1976
  #: my-calendar-help.php:174
1977
  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."
1978
- msgstr ""
1979
 
1980
  #: my-calendar-help.php:177
1981
  msgid "Displays the date on which the event begins."
1982
- msgstr ""
1983
 
1984
  #: my-calendar-help.php:183
1985
  msgid "Displays the date on which the event ends."
1986
- msgstr ""
1987
 
1988
  #: my-calendar-help.php:186
1989
  msgid "Displays the time at which the event ends."
1990
- msgstr ""
1991
 
1992
  #: my-calendar-help.php:189
1993
  msgid "Displays the beginning date to the end date for events. Does not show end date if same as start date."
1994
- msgstr ""
1995
 
1996
  #: my-calendar-help.php:195
1997
  msgid "Timestamp for beginning of event."
@@ -2007,7 +2007,7 @@ msgstr ""
2007
 
2008
  #: my-calendar-help.php:204
2009
  msgid "Displays the WordPress author who posted the event."
2010
- msgstr ""
2011
 
2012
  #: my-calendar-help.php:210
2013
  msgid "Displays the name of the person assigned as host for the event."
@@ -2031,83 +2031,83 @@ msgstr ""
2031
 
2032
  #: my-calendar-help.php:231
2033
  msgid "Displays description without converting paragraphs."
2034
- msgstr ""
2035
 
2036
  #: my-calendar.php:244
2037
  msgid "Image associated with the event."
2038
- msgstr ""
2039
 
2040
  #: my-calendar-help.php:243
2041
  msgid "Displays the URL provided for the event."
2042
- msgstr ""
2043
 
2044
  #: my-calendar-help.php:246
2045
  msgid "Produces the URL to download an iCal formatted record for the event."
2046
- msgstr ""
2047
 
2048
  #: my-calendar-help.php:249
2049
  msgid "Produces a hyperlink to download an iCal formatted record for the event."
2050
- msgstr ""
2051
 
2052
  #: my-calendar-help.php:252
2053
  msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
2054
- msgstr ""
2055
 
2056
  #: my-calendar-help.php:255
2057
  msgid "Shows the number of repetitions of the event."
2058
- msgstr ""
2059
 
2060
  #: my-calendar-help.php:258
2061
  msgid "Provides a link to an auto-generated page containing all information on the given event."
2062
- msgstr ""
2063
 
2064
  #: my-calendar-help.php:258 my-calendar-help.php:261
2065
  msgid "Requires that the site URL has been provided on the Settings page"
2066
- msgstr ""
2067
 
2068
  #: my-calendar-help.php:264
2069
  msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
2070
- msgstr ""
2071
 
2072
  #: my-calendar-help.php:267
2073
  msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
2074
- msgstr ""
2075
 
2076
  #: my-calendar-help.php:269 my-calendar.php:258
2077
  msgid "Location Template Tags"
2078
- msgstr ""
2079
 
2080
  #: my-calendar-help.php:273
2081
  msgid "Displays the name of the location of the event."
2082
- msgstr ""
2083
 
2084
  #: my-calendar-help.php:276
2085
  msgid "Displays the first line of the site address."
2086
- msgstr ""
2087
 
2088
  #: my-calendar-help.php:279
2089
  msgid "Displays the second line of the site address."
2090
- msgstr ""
2091
 
2092
  #: my-calendar-help.php:282
2093
  msgid "Displays the city for the location."
2094
- msgstr ""
2095
 
2096
  #: my-calendar-help.php:285
2097
  msgid "Displays the state for the location."
2098
- msgstr ""
2099
 
2100
  #: my-calendar-help.php:288
2101
  msgid "Displays the postcode for the location."
2102
- msgstr ""
2103
 
2104
  #: my-calendar-help.php:291
2105
  msgid "Shows the custom region entered for the location."
2106
- msgstr ""
2107
 
2108
  #: my-calendar-help.php:294
2109
  msgid "Displays the country for the event location."
2110
- msgstr ""
2111
 
2112
  #: my-calendar-help.php:297
2113
  msgid "Output the URL for the location link."
@@ -2233,7 +2233,7 @@ msgstr ""
2233
 
2234
  #: my-calendar-locations.php:202
2235
  msgid "Website"
2236
- msgstr ""
2237
 
2238
  #: my-calendar-locations.php:207
2239
  msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
@@ -2241,11 +2241,11 @@ msgstr ""
2241
 
2242
  #: my-calendar-locations.php:215
2243
  msgid "Add Location"
2244
- msgstr ""
2245
 
2246
  #: my-calendar-locations.php:223
2247
  msgid "Add a New Location"
2248
- msgstr ""
2249
 
2250
  #: my-calendar-locations.php:228 my-calendar.php:350
2251
  msgid "Manage Locations"
@@ -2253,7 +2253,7 @@ msgstr ""
2253
 
2254
  #: my-calendar-event-manager.php:1093 my-calendar-locations.php:289
2255
  msgid "Location"
2256
- msgstr ""
2257
 
2258
  #: my-calendar-locations.php:311
2259
  msgid "There are no locations in the database yet!"
@@ -2265,7 +2265,7 @@ msgstr ""
2265
 
2266
  #: my-calendar-output.php:187 my-calendar-output.php:311
2267
  msgid "Close"
2268
- msgstr ""
2269
 
2270
  #: my-calendar-output.php:200
2271
  msgid "(%s in your time zone)"
@@ -2313,19 +2313,19 @@ msgstr ""
2313
 
2314
  #: my-calendar-core.php:1542 my-calendar-output.php:395
2315
  msgid "Year"
2316
- msgstr ""
2317
 
2318
  #: my-calendar-output.php:423
2319
  msgid "Go"
2320
- msgstr ""
2321
 
2322
  #: my-calendar-output.php:452
2323
  msgid "Calendar: Print View"
2324
- msgstr ""
2325
 
2326
  #: my-calendar-output.php:467
2327
  msgid "Return to site"
2328
- msgstr ""
2329
 
2330
  #: my-calendar-output.php:480
2331
  msgid "View as Grid"
@@ -2337,59 +2337,59 @@ msgstr ""
2337
 
2338
  #: my-calendar-output.php:738
2339
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
2340
- msgstr ""
2341
 
2342
  #: my-calendar-output.php:739
2343
  msgid "<abbr title=\"Monday\">Mon</abbr>"
2344
- msgstr ""
2345
 
2346
  #: my-calendar-output.php:740
2347
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
2348
- msgstr ""
2349
 
2350
  #: my-calendar-output.php:741
2351
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
2352
- msgstr ""
2353
 
2354
  #: my-calendar-output.php:742
2355
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
2356
- msgstr ""
2357
 
2358
  #: my-calendar-output.php:743
2359
  msgid "<abbr title=\"Friday\">Fri</abbr>"
2360
- msgstr ""
2361
 
2362
  #: my-calendar-output.php:744
2363
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
2364
- msgstr ""
2365
 
2366
  #: my-calendar-output.php:749
2367
  msgid "<abbr title=\"Sunday\">S</abbr>"
2368
- msgstr ""
2369
 
2370
  #: my-calendar-output.php:750
2371
  msgid "<abbr title=\"Monday\">M</abbr>"
2372
- msgstr ""
2373
 
2374
  #: my-calendar-output.php:751
2375
  msgid "<abbr title=\"Tuesday\">T</abbr>"
2376
- msgstr ""
2377
 
2378
  #: my-calendar-output.php:752
2379
  msgid "<abbr title=\"Wednesday\">W</abbr>"
2380
- msgstr ""
2381
 
2382
  #: my-calendar-output.php:753
2383
  msgid "<abbr title=\"Thursday\">T</abbr>"
2384
- msgstr ""
2385
 
2386
  #: my-calendar-output.php:754
2387
  msgid "<abbr title=\"Friday\">F</abbr>"
2388
- msgstr ""
2389
 
2390
  #: my-calendar-output.php:755
2391
  msgid "<abbr title=\"Saturday\">S</abbr>"
2392
- msgstr ""
2393
 
2394
  #: my-calendar-output.php:861
2395
  msgid "Print View"
@@ -2401,7 +2401,7 @@ msgstr ""
2401
 
2402
  #: my-calendar-output.php:983
2403
  msgid "and"
2404
- msgstr ""
2405
 
2406
  #: my-calendar-output.php:997
2407
  msgid "Events in"
@@ -2417,7 +2417,7 @@ msgstr ""
2417
 
2418
  #: my-calendar-output.php:1029
2419
  msgid "There are no events scheduled during this period."
2420
- msgstr ""
2421
 
2422
  #: my-calendar-output.php:1140
2423
  msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
@@ -2425,7 +2425,7 @@ msgstr ""
2425
 
2426
  #: my-calendar-output.php:1160
2427
  msgid "Category Key"
2428
- msgstr ""
2429
 
2430
  #: my-calendar-output.php:1183
2431
  msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
@@ -2453,11 +2453,11 @@ msgstr ""
2453
 
2454
  #: my-calendar-output.php:1329 my-calendar-output.php:1332
2455
  msgid "All Categories"
2456
- msgstr ""
2457
 
2458
  #: my-calendar-output.php:1330
2459
  msgid "Categories"
2460
- msgstr ""
2461
 
2462
  #: my-calendar-output.php:1351 my-calendar-output.php:1561
2463
  msgid "Submit"
@@ -2465,7 +2465,7 @@ msgstr ""
2465
 
2466
  #: my-calendar-output.php:1502 my-calendar-output.php:1523
2467
  msgid "Show all"
2468
- msgstr ""
2469
 
2470
  #: my-calendar-output.php:1521
2471
  msgid "Show events in:"
@@ -3539,7 +3539,7 @@ msgstr ""
3539
 
3540
  #: my-calendar.php:271
3541
  msgid "City."
3542
- msgstr ""
3543
 
3544
  #: my-calendar.php:274
3545
  msgid "State."
@@ -3547,7 +3547,7 @@ msgstr ""
3547
 
3548
  #: my-calendar.php:277
3549
  msgid "Postal code/zip code."
3550
- msgstr ""
3551
 
3552
  #: my-calendar.php:280
3553
  msgid "Custom region."
2
  # This file is distributed under the same license as the My Calendar package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-09-30 19:43:32+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
1154
 
1155
  #: my-calendar-core.php:1496
1156
  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>"
1157
+ msgstr "Opomba: Hranim seznam ljudi ki so donirali, <strong>vendar, v primeru da je bila vaša donacija opravljena z drugim računom na tej strani, prosim na to opozorite v sporočilu.</strong>"
1158
 
1159
  #: my-calendar-core.php:1498
1160
  msgid "From:"
1162
 
1163
  #: my-calendar-core.php:1501
1164
  msgid "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">the FAQ for this plug-in</a>."
1165
+ msgstr "Prebral sem <a href=\"http://www.joedolson.com/articles/my-calendar/faq/\">pogosto zastavljena vprašanja (FAQ)</a> za ta vtičnik."
1166
 
1167
  #: my-calendar-core.php:1504
1168
  msgid "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to help support this plug-in</a>."
1169
+ msgstr "<a href=\"http://www.joedolson.com/donate.php\">Doniral sem, da pomagam razvijalcem vtičnika</a>."
1170
 
1171
  #: my-calendar-core.php:1507
1172
  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."
1173
+ msgstr "<a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/\">Kupil sem navodila za uporabo</a>, vendar v njem nisem našel odgovora za to vprašanje."
1174
 
1175
  #: my-calendar-core.php:1513
1176
  msgid "Send Support Request"
1177
+ msgstr "Pošlji prošnjo za pomoč"
1178
 
1179
  #: my-calendar-core.php:1516
1180
  msgid "The following additional information will be sent with your support request:"
1181
+ msgstr "Naslednje dodatne informacije bodo poslane poleg vaše prošnje za pomoč:"
1182
 
1183
  #: my-calendar-event-manager.php:169 my-calendar-settings.php:333
1184
  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?"
1185
+ msgstr "Vtičnik My Calendar je zaznal, da imate naložen naložen koledarski vtičnik proizvajalca Kieran O'Shea. Lahko uvozite dogodke in kategorijo v podatkovno bazo vtičnika My Calendar. Ali ćelite uvoziti te dogodke?"
1186
 
1187
  #: my-calendar-event-manager.php:176 my-calendar-settings.php:339
1188
  msgid "Import from Calendar"
1189
+ msgstr "Uvozi iz koledarja"
1190
 
1191
  #: my-calendar-event-manager.php:181
1192
  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>!"
1193
+ msgstr "Čeprav je mogoče, da prenos dogodkov ne bo uspešno zaključen, to nebi smelo vplivati na vašo obstoječo podatkovno bazo koledarja. V primeru, da naletite na težave, <a href=\"http://www.joedolson.com/contact.php\">me prosim kontaktirajte</a>!"
1194
 
1195
  #: my-calendar-event-manager.php:105
1196
  msgid "%1$d events deleted successfully out of %2$d selected"
1197
+ msgstr "%1$d od %2$d izbranih dogodkov je bilo uspešno izbrisanih"
1198
 
1199
  #: my-calendar-event-manager.php:107 my-calendar-event-manager.php:137
1200
  #: my-calendar-event-manager.php:305 my-calendar-event-manager.php:379
1206
  #: my-calendar-group-manager.php:84 my-calendar-group-manager.php:162
1207
  #: my-calendar-group-manager.php:599
1208
  msgid "Error"
1209
+ msgstr "Napaka"
1210
 
1211
  #: my-calendar-event-manager.php:107
1212
  msgid "Your events have not been deleted. Please investigate."
1213
+ msgstr "Vaši dogodki niso bili odstranjeni. Prosim preverite."
1214
 
1215
  #: my-calendar-event-manager.php:26
1216
  msgid "Delete Event"
1217
+ msgstr "Odstrani dogodek"
1218
 
1219
  #: my-calendar-event-manager.php:26
1220
  msgid "Are you sure you want to delete this event?"
1221
+ msgstr "Ali ste prepričani, da želite odstraniti ta dogodek?"
1222
 
1223
  #: my-calendar-event-manager.php:42
1224
  msgid "You do not have permission to delete that event."
1286
 
1287
  #: my-calendar-event-manager.php:414
1288
  msgid "Event deleted successfully"
1289
+ msgstr "Dogodek je bil uspešno odstranjen"
1290
 
1291
  #: my-calendar-event-manager.php:416
1292
  msgid "Despite issuing a request to delete, the event still remains in the database. Please investigate."
1293
+ msgstr "Kljub zahtevi za brisanje dogodka, le ta še vedno ostaja v podatkovni bazi. Prosim preverite."
1294
 
1295
  #: my-calendar-event-manager.php:429 my-calendar-group-manager.php:182
1296
  msgid "Sorry! That's an invalid event key."
1297
+ msgstr "Oprostite! Ključ dogodka ni veljaven."
1298
 
1299
  #: my-calendar-event-manager.php:433 my-calendar-group-manager.php:186
1300
  msgid "Sorry! We couldn't find an event with that ID."
1301
+ msgstr "Oprostite! Dogodka s tem ID-jem ni bilo mogoče najti."
1302
 
1303
  #: my-calendar-event-manager.php:458
1304
  msgid "This event must be approved in order for it to appear on the calendar."
1305
+ msgstr "Ta dogodek mora biti potrjen preden bo viden v koledarju."
1306
 
1307
  #: my-calendar-event-manager.php:526
1308
  msgid "Add/Edit Event"
1309
+ msgstr "Dodaj/uredi dogodek"
1310
 
1311
  #: my-calendar-event-manager.php:529 my-calendar-event-manager.php:964
1312
  msgid "Save Event"
1313
+ msgstr "Shrani dogodek"
1314
 
1315
  #: my-calendar-event-manager.php:543 my-calendar-group-manager.php:312
1316
  msgid "Enter your Event Information"
1317
+ msgstr "Vnesite informacije vašega dogodka"
1318
 
1319
  #: my-calendar-event-manager.php:545 my-calendar-group-manager.php:314
1320
  msgid "Event Title"
1321
+ msgstr "Naslov dogodka"
1322
 
1323
  #: my-calendar-event-manager.php:545 my-calendar-event-manager.php:693
1324
  #: my-calendar-group-manager.php:314
1325
  msgid "(required)"
1326
+ msgstr "(obvezno)"
1327
 
1328
  #: my-calendar-event-manager.php:550
1329
  msgid "Publish"
1330
+ msgstr "Objavi"
1331
 
1332
  #: my-calendar-event-manager.php:550
1333
  msgid "You must approve this event to promote it to the calendar."
1334
+ msgstr "Ta dogodek morate potrditi da ga uvrstite na koledar."
1335
 
1336
  #: my-calendar-event-manager.php:552
1337
  msgid "An administrator must approve your new event."
1338
+ msgstr "Administrator mora potrditi vaš dogodek."
1339
 
1340
  #: my-calendar-event-manager.php:567
1341
  msgid "This event is not spam"
1342
+ msgstr "To ni nezaželjen dogodek"
1343
 
1344
  #: my-calendar-event-manager.php:582 my-calendar-group-manager.php:328
1345
  msgid "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
1346
+ msgstr "Opis dogodka (<abbr title=\"hypertext markup language\">HTML</abbr> dovoljen)"
1347
 
1348
  #: my-calendar-event-manager.php:603 my-calendar-event-manager.php:616
1349
  #: my-calendar-group-manager.php:339 my-calendar-group-manager.php:347
1350
  msgid "This event's image:"
1351
+ msgstr "Slika tega dogodka:"
1352
 
1353
  #: my-calendar-event-manager.php:605 my-calendar-group-manager.php:341
1354
  msgid "Add an image:"
1355
+ msgstr "Dodaj sliko:"
1356
 
1357
  #: my-calendar-event-manager.php:607
1358
  msgid "(URL to Event image)"
1359
+ msgstr "(povezava do slike dogodka)"
1360
 
1361
  #: my-calendar-event-manager.php:609 my-calendar-group-manager.php:341
1362
  msgid "Upload Image"
1363
+ msgstr "Naloži sliko"
1364
 
1365
  #: my-calendar-event-manager.php:609 my-calendar-group-manager.php:341
1366
  msgid "Include your image URL or upload an image."
1367
+ msgstr "Vnesite povezavo do slike ali naložite novo sliko."
1368
 
1369
  #: my-calendar-event-manager.php:622 my-calendar-group-manager.php:353
1370
  msgid "Event Short Description (<abbr title=\"hypertext markup language\">HTML</abbr> allowed)"
1371
+ msgstr "Kratek opis dogodka (<abbr title=\"hypertext markup language\">HTML</abbr> dovoljen)"
1372
 
1373
  #: my-calendar-event-manager.php:626 my-calendar-group-manager.php:357
1374
  msgid "Event Host"
1375
+ msgstr "Gostitelj dogodka"
1376
 
1377
  #: my-calendar-event-manager.php:645 my-calendar-group-manager.php:376
1378
  msgid "Event Category"
1379
+ msgstr "Kategorija dogodka"
1380
 
1381
  #: my-calendar-event-manager.php:657 my-calendar-group-manager.php:388
1382
  msgid "Event Link (Optional)"
1383
+ msgstr "Povezava dogodka (neobvezno)"
1384
 
1385
  #: my-calendar-event-manager.php:657 my-calendar-group-manager.php:388
1386
  msgid "This link will expire when the event passes."
1387
+ msgstr "Ta povezava bo potekla po preteku dogodka."
1388
 
1389
  #: my-calendar-event-manager.php:667 my-calendar-event-manager.php:675
1390
  msgid "Event Date and Time"
1391
+ msgstr "Datum in čas dogodka"
1392
 
1393
  #: my-calendar-event-manager.php:693
1394
  msgid "Start Date (YYYY-MM-DD)"
1395
+ msgstr "Datum začetka (LLLL-MM-DD)"
1396
 
1397
  #: my-calendar-event-manager.php:693
1398
  msgid "Time (hh:mm am/pm)"
1399
+ msgstr "Čas (uu:mm am/pm)"
1400
 
1401
  #: my-calendar-event-manager.php:702
1402
  msgid "End Date (YYYY-MM-DD)"
1403
+ msgstr "Datum zaključka (LLLL-MM-DD)"
1404
 
1405
  #: my-calendar-event-manager.php:702
1406
  msgid "End Time (hh:mm am/pm)"
1407
+ msgstr "Čas zaključka (uu:mm am/pm)"
1408
 
1409
  #: my-calendar-event-manager.php:713
1410
  msgid "This is a multi-day event."
1411
+ msgstr "To je večdnevni dogodek."
1412
 
1413
  #: my-calendar-event-manager.php:715
1414
  msgid "Enter the beginning and ending dates/times for each occurrence of the event."
1415
+ msgstr "Vnesite začetne in končne datume in čase za vsako ponovitev dogodka."
1416
 
1417
  #: my-calendar-event-manager.php:715
1418
  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."
1419
+ msgstr "Če gre za več-dnevni dogodek, bo ustvarjen en dogodek z večimi datumi; drugače bo ustvarjen posamezen dogodek pri vsakem pojavljanju dogodka."
1420
 
1421
  #: my-calendar-event-manager.php:717
1422
  msgid "Add another occurrence"
1423
+ msgstr "Dodaj nov pojav dogodka"
1424
 
1425
  #: my-calendar-event-manager.php:718
1426
  msgid "Remove last occurrence"
1427
+ msgstr "Odstrani zadnji pojav dogodka"
1428
 
1429
  #: my-calendar-event-manager.php:740
1430
  msgid "Current time difference from GMT is "
1431
+ msgstr "Trenutni časovni zamik od GTM je"
1432
 
1433
  #: my-calendar-event-manager.php:740
1434
  msgid " hour(s)"
1435
+ msgstr "ur(a)"
1436
 
1437
  #: my-calendar-event-manager.php:750 my-calendar-event-manager.php:764
1438
  msgid "Recurring Events"
1439
+ msgstr "Ponavljajoči dogodki"
1440
 
1441
  #: my-calendar-event-manager.php:769
1442
  msgid "Units"
1443
+ msgstr "Enote"
1444
 
1445
  #: my-calendar-core.php:1536 my-calendar-templates.php:173
1446
  msgid "Does not recur"
1447
+ msgstr "Se ne ponavlja"
1448
 
1449
  #: my-calendar-event-manager.php:1167 my-calendar-group-manager.php:802
1450
  #: my-calendar-templates.php:174
1451
  msgid "Daily"
1452
+ msgstr "Dnevno"
1453
 
1454
  #: my-calendar-templates.php:175
1455
  msgid "Daily, weekdays only"
1456
+ msgstr "Dnevno, samo med delavniki"
1457
 
1458
  #: my-calendar-event-manager.php:1169 my-calendar-group-manager.php:804
1459
  #: my-calendar-templates.php:176
1460
  msgid "Weekly"
1461
+ msgstr "Tedensko"
1462
 
1463
  #: my-calendar-templates.php:177
1464
  msgid "Bi-weekly"
1465
+ msgstr "Dvo-tedensko"
1466
 
1467
  #: my-calendar-templates.php:180
1468
  msgid "Annually"
1469
+ msgstr "Letno"
1470
 
1471
  #: my-calendar-event-manager.php:772
1472
  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."
1473
+ msgstr "Vaš vnos je število dogodkov po prvem pojavu tega dogodka: vrednost ponavljanja <em>2</em> pomeni, da se bo dogodek pojavil trikrat."
1474
 
1475
  #: my-calendar-event-manager.php:793
1476
  msgid "Event Registration Settings"
1477
+ msgstr "Nastavitve prijavljanja na dogodek"
1478
 
1479
  #: my-calendar-event-manager.php:796 my-calendar-group-manager.php:402
1480
  msgid "Event Registration Status"
1481
+ msgstr "Status prijavljanja na dogodk"
1482
 
1483
  #: my-calendar-event-manager.php:797 my-calendar-group-manager.php:403
1484
  msgid "My Calendar does not manage event registrations. Use this for information only."
1485
+ msgstr "My Calendar ne ureja registracij dogodka. Uporabite to le za informacije."
1486
 
1487
  #: my-calendar-event-manager.php:799 my-calendar-group-manager.php:405
1488
  msgid "Open"
1489
+ msgstr "Odprto"
1490
 
1491
  #: my-calendar-event-manager.php:800 my-calendar-group-manager.php:406
1492
  msgid "Closed"
1493
+ msgstr "Zaprto"
1494
 
1495
  #: my-calendar-event-manager.php:801 my-calendar-group-manager.php:407
1496
  msgid "Does not apply"
1497
+ msgstr "Ne velja"
1498
 
1499
  #: my-calendar-event-manager.php:804 my-calendar-group-manager.php:410
1500
  msgid "If this event recurs, it can only be registered for as a complete series."
1501
+ msgstr "V primeru da gre za ponovljiv dogodek, se lahko prijavite le na vse dogodke."
1502
 
1503
  #: my-calendar-event-manager.php:821 my-calendar-event-manager.php:824
1504
  #: my-calendar-group-manager.php:427 my-calendar-group-manager.php:430
1505
  #: my-calendar-locations.php:129
1506
  msgid "Event Location"
1507
+ msgstr "Lokacija dogodka"
1508
 
1509
  #: my-calendar-event-manager.php:831 my-calendar-group-manager.php:437
1510
  msgid "Choose a preset location:"
1511
+ msgstr "izberite trenutno lokacijo:"
1512
 
1513
  #: my-calendar-event-manager.php:841 my-calendar-group-manager.php:450
1514
  msgid "Add recurring locations for later use."
1515
+ msgstr "Dodajte ponavljajočo lokacijo za kasnejšo uporabo."
1516
 
1517
  #: my-calendar-event-manager.php:848 my-calendar-group-manager.php:459
1518
  #: my-calendar-locations.php:131
1519
  msgid "All location fields are optional: <em>insufficient information may result in an inaccurate map</em>."
1520
+ msgstr "Nobeno polje za lokacijo ni obvezno: <em>pomankanje informacije lahko povzroči nepopoln zemljevid</em>."
1521
 
1522
  #: my-calendar-event-manager.php:852 my-calendar-group-manager.php:462
1523
  #: my-calendar-locations.php:134
1524
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
1525
+ msgstr "Ime lokacije (primer: <em>gostilna pri Martinu</em>)"
1526
 
1527
  #: my-calendar-event-manager.php:861 my-calendar-group-manager.php:465
1528
  #: my-calendar-locations.php:143
1529
  msgid "Street Address"
1530
+ msgstr "Naslov"
1531
 
1532
  #: my-calendar-event-manager.php:864 my-calendar-group-manager.php:468
1533
  #: my-calendar-locations.php:146
1534
  msgid "Street Address (2)"
1535
+ msgstr "Naslov (2)"
1536
 
1537
  #: my-calendar-event-manager.php:867 my-calendar-group-manager.php:471
1538
  #: my-calendar-locations.php:149
1539
  msgid "Phone"
1540
+ msgstr "Telefon"
1541
 
1542
  #: my-calendar-event-manager.php:877 my-calendar-group-manager.php:474
1543
  #: my-calendar-locations.php:159 my-calendar-settings.php:941
1544
  msgid "State/Province"
1545
+ msgstr "Regija"
1546
 
1547
  #: my-calendar-event-manager.php:911 my-calendar-group-manager.php:484
1548
  #: my-calendar-locations.php:191
1549
  msgid "Initial Zoom"
1550
+ msgstr "Prvotna povečava"
1551
 
1552
  #: my-calendar-event-manager.php:913 my-calendar-group-manager.php:486
1553
  #: my-calendar-locations.php:193
1554
  msgid "Neighborhood"
1555
+ msgstr "Soseska"
1556
 
1557
  #: my-calendar-event-manager.php:914 my-calendar-group-manager.php:487
1558
  #: my-calendar-locations.php:194
1559
  msgid "Small City"
1560
+ msgstr "Majhno mesto"
1561
 
1562
  #: my-calendar-event-manager.php:915 my-calendar-group-manager.php:488
1563
  #: my-calendar-locations.php:195
1564
  msgid "Large City"
1565
+ msgstr "Veliko mesto"
1566
 
1567
  #: my-calendar-event-manager.php:916 my-calendar-group-manager.php:489
1568
  #: my-calendar-locations.php:196
1569
  msgid "Greater Metro Area"
1570
+ msgstr "Širše območje"
1571
 
1572
  #: my-calendar-event-manager.php:922 my-calendar-group-manager.php:495
1573
  msgid "Location URL"
1574
+ msgstr "Povezava lokacije"
1575
 
1576
  #: my-calendar-event-manager.php:925 my-calendar-group-manager.php:498
1577
  #: my-calendar-locations.php:205
1578
  msgid "GPS Coordinates (optional)"
1579
+ msgstr "Koordinate GPS (ni obvezno)"
1580
 
1581
  #: my-calendar-event-manager.php:927 my-calendar-group-manager.php:500
1582
  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."
1583
+ msgstr "V primeru, da navedete GPS koordinate, bodo uporabljene namesto ostalih navedenih naslovov za prikaz zemljevida."
1584
 
1585
  #: my-calendar-event-manager.php:930 my-calendar-group-manager.php:503
1586
  #: my-calendar-locations.php:210
1587
  msgid "Latitude"
1588
+ msgstr "pasovna širina"
1589
 
1590
  #: my-calendar-event-manager.php:930 my-calendar-group-manager.php:503
1591
  #: my-calendar-locations.php:211
1592
  msgid "Longitude"
1593
+ msgstr "pasovna dolžina"
1594
 
1595
  #: my-calendar-event-manager.php:943
1596
  msgid "Special scheduling options"
1597
+ msgstr "Posebne možnosti sporeda"
1598
 
1599
  #: my-calendar-event-manager.php:946
1600
  msgid "Special Options"
1601
+ msgstr "Posebne možnosti"
1602
 
1603
  #: my-calendar-event-manager.php:948
1604
  msgid "Cancel this event if it occurs on a date with an event in the Holidays category"
1605
+ msgstr "Prekličite ta dogodek, v primeru, da datum sovpada z dogodkom v kategoriiji počitnic."
1606
 
1607
  #: my-calendar-event-manager.php:951
1608
  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."
1609
+ msgstr "Če ponavljajoči dogodek pridena peti teden v mesecu s štirimi tedni, premakni ta dogodek za en teden nazaj."
1610
 
1611
  #: my-calendar-event-manager.php:144 my-calendar-settings.php:120
1612
  #: my-calendar-settings.php:799 my-calendar.php:347
1613
  msgid "Manage Events"
1614
+ msgstr "Urejaj dogodke"
1615
 
1616
  #: my-calendar-event-manager.php:1051 my-calendar-templates.php:271
1617
  msgid "Published"
1618
+ msgstr "Objavljeno"
1619
 
1620
  #: my-calendar-event-manager.php:1052 my-calendar-templates.php:271
1621
  msgid "Reserved"
1622
+ msgstr "Rezervirano"
1623
 
1624
  #: my-calendar-event-manager.php:1053 my-calendar-group-manager.php:726
1625
  msgid "All"
1626
+ msgstr "Vsi"
1627
 
1628
  #: my-calendar-event-manager.php:1092 my-calendar-group-manager.php:747
1629
  #: my-calendar-settings.php:399 my-calendar-widgets.php:60
1630
  #: my-calendar-widgets.php:169 my-calendar-widgets.php:679
1631
  msgid "Title"
1632
+ msgstr "Naslov"
1633
 
1634
  #: my-calendar-group-manager.php:748
1635
  msgid "Where"
1636
+ msgstr "Kje"
1637
 
1638
  #: my-calendar-settings.php:400
1639
  msgid "Description"
1640
+ msgstr "Opis"
1641
 
1642
  #: my-calendar-group-manager.php:749
1643
  msgid "Starts"
1644
+ msgstr "Se prične"
1645
 
1646
  #: my-calendar-group-manager.php:750
1647
  msgid "Recurs"
1648
+ msgstr "Se ponavlja"
1649
 
1650
  #: my-calendar-event-manager.php:1095 my-calendar-group-manager.php:751
1651
  #: my-calendar-settings.php:402
1652
  msgid "Author"
1653
+ msgstr "Avtor"
1654
 
1655
  #: my-calendar-event-manager.php:1096 my-calendar-group-manager.php:752
1656
  #: my-calendar-output.php:138 my-calendar-settings.php:403
1657
  #: my-calendar-templates.php:269
1658
  msgid "Category"
1659
+ msgstr "Kategorija"
1660
 
1661
  #: my-calendar-event-manager.php:1166 my-calendar-group-manager.php:801
1662
  msgid "Never"
1663
+ msgstr "Nikoli"
1664
 
1665
  #: my-calendar-event-manager.php:1168 my-calendar-group-manager.php:803
1666
  msgid "Weekdays"
1667
+ msgstr "Delavniki"
1668
 
1669
  #: my-calendar-event-manager.php:1170 my-calendar-group-manager.php:805
1670
  msgid "Bi-Weekly"
1671
+ msgstr "Dvo-tedenski"
1672
 
1673
  #: my-calendar-event-manager.php:1171 my-calendar-group-manager.php:806
1674
  msgid "Monthly (by date)"
1675
+ msgstr "Mesečno (po datumu)"
1676
 
1677
  #: my-calendar-event-manager.php:1172 my-calendar-group-manager.php:807
1678
  msgid "Monthly (by day)"
1679
+ msgstr "Mesečno (po dnevih)"
1680
 
1681
  #: my-calendar-event-manager.php:1173 my-calendar-group-manager.php:808
1682
  msgid "Yearly"
1683
+ msgstr "Letno"
1684
 
1685
  #: my-calendar-group-manager.php:811
1686
  msgid "Forever"
1687
+ msgstr "Vedno"
1688
 
1689
  #: my-calendar-group-manager.php:812
1690
  msgid "%d Times"
1691
+ msgstr "%d časov"
1692
 
1693
  #: my-calendar-event-manager.php:1129
1694
  msgid "Copy"
1695
+ msgstr "Kopiraj"
1696
 
1697
  #: my-calendar-event-manager.php:1132 my-calendar-group-manager.php:784
1698
  #: my-calendar-output.php:316
1699
  msgid "Edit Group"
1700
+ msgstr "Uredi skupino"
1701
 
1702
  #: my-calendar-event-manager.php:1135 my-calendar-group-manager.php:788
1703
  msgid "Not editable."
1704
+ msgstr "Urejanje onemogočeno"
1705
 
1706
  #: my-calendar-event-manager.php:1139
1707
  msgid "Reject"
1708
+ msgstr "Zavrni"
1709
 
1710
  #: my-calendar-event-manager.php:1139
1711
  msgid "Approve"
1712
+ msgstr "Potrdi"
1713
 
1714
  #: my-calendar-event-manager.php:1144
1715
  msgid "Approved"
1716
+ msgstr "Potrjeno"
1717
 
1718
  #: my-calendar-event-manager.php:1146
1719
  msgid "Rejected"
1720
+ msgstr "Zavrnjeno"
1721
 
1722
  #: my-calendar-event-manager.php:1148
1723
  msgid "Awaiting Approval"
1724
+ msgstr "Čakam na potrditev"
1725
 
1726
  #: my-calendar-event-manager.php:1082 my-calendar-event-manager.php:1199
1727
  msgid "Delete checked events"
1728
+ msgstr "Zbriči izbrane dogodke"
1729
 
1730
  #: my-calendar-group-manager.php:838
1731
  msgid "There are no events in the database!"
1732
+ msgstr "Ni dogodkov v podatkovni bazi!"
1733
 
1734
  #: my-calendar-event-manager.php:1366
1735
  msgid "Your event end date must be either after or the same as your event begin date"
1736
+ msgstr "Končni datum vašega dogodka mora biti za ali kvečjemu enak začetnemu datumu"
1737
 
1738
  #: my-calendar-event-manager.php:1369
1739
  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."
1740
+ msgstr "Vaš zapis datumov je pravilen vendar je eden ali več od navedenih datumov neveljaven. Preverite število dni v mesecih in napake povezane z prestopnimi leti."
1741
 
1742
  #: my-calendar-event-manager.php:1402 my-calendar-group-manager.php:599
1743
  msgid "The event title must be between 1 and 255 characters in length."
1744
+ msgstr "Naslov dogodka mora vsebovati vsaj en in največ 255 znakov."
1745
 
1746
  #: my-calendar-event-manager.php:1409
1747
  msgid "The repetition value must be 0 unless a type of recurrence is selected."
1748
+ msgstr "Vrednost ponavljanja mora biti 0 razen če je izbran način ponavljanja."
1749
 
1750
  #: my-calendar-group-manager.php:58
1751
  msgid "Event not updated."
1752
+ msgstr "Dogodek ni bil posodobljen."
1753
 
1754
  #: my-calendar-group-manager.php:84
1755
  msgid "Event not grouped."
1756
+ msgstr "Dogodek ni v skupini."
1757
 
1758
  #: my-calendar-group-manager.php:88
1759
  msgid "Event grouped successfully"
1760
+ msgstr "Dogodek je bil uspešno dodan v skupino"
1761
 
1762
  #: my-calendar-group-manager.php:103 my-calendar-group-manager.php:309
1763
  #: my-calendar-group-manager.php:514
1764
  msgid "Edit Event Group"
1765
+ msgstr "Urejaj skupino dogodka"
1766
 
1767
  #: my-calendar-group-manager.php:106
1768
  msgid "You must provide an event group id in order to edit it"
1769
+ msgstr "Za urejanje skupine dogodka morate vnesti njen id"
1770
 
1771
  #: my-calendar-group-manager.php:113 my-calendar-group-manager.php:121
1772
  #: my-calendar-group-manager.php:306 my-calendar.php:351
1773
  msgid "Manage Event Groups"
1774
+ msgstr "Urejaj skupine dogodka"
1775
 
1776
  #: my-calendar-group-manager.php:114
1777
  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.)"
1778
+ msgstr "Dogodke v isti skupina lahko urejate istočasno. Ko izberete skupino dogodkov za urejanje, bo obrazec avtomatično zapolnjen s podatki, ki ustrezajo članu skupine dogodka iz katerega ste začeli. (primer: če kliknete na povezavo \"Uredi skupino\" za tretji skupek dogodkov, bodo uporabljeni podatki skladni s tem dogodkom.). Prikazana bodo tudi potrditvena polja, ki bodo določala za katere dogodke bodo uporabljene spremembe. (Vse dogodke v skupinah se lahko ureja tudi posamično.)"
1779
 
1780
  #: my-calendar-group-manager.php:115
1781
  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."
1782
+ msgstr "Med urejanjem skupin naslednja polja ne bodo nikoli spremenjena: odprtost prijave, status objave dogodka, nezaželjeno označevanje, ponovljiv dogodek, ponavljanje dogodka in datum pričetka in datum zaključka in časov dogodka."
1783
 
1784
  #: my-calendar-group-manager.php:234
1785
  msgid "<strong>NOTE:</strong> The group editable fields for the events in this group do not match"
1786
+ msgstr "<strong>OPOMBA:</strong> Polja za urejanje dogodkov v tej skupini se ne ujemajo"
1787
 
1788
  #: my-calendar-group-manager.php:234
1789
  msgid "The group editable fields for the events in this group match."
1790
+ msgstr "Polja za urejanje dogodkov v tej skupini se ujemajo."
1791
 
1792
  #: my-calendar-group-manager.php:241
1793
  msgid "Apply these changes to:"
1794
+ msgstr "Uveljavi te spremembe za:"
1795
 
1796
  #: my-calendar-event-manager.php:1091 my-calendar-group-manager.php:252
1797
  msgid "Check/Uncheck all"
1798
+ msgstr "Izberi vse/ne izberi ničesar"
1799
 
1800
  #: my-calendar-group-manager.php:254
1801
  msgid "Remove checked events from this group"
1802
+ msgstr "Odstrani označene dogodke iz te skupine"
1803
 
1804
  #: my-calendar-group-manager.php:272
1805
  msgid "You must provide a group ID to edit groups"
1806
+ msgstr "Vnesti morate ID skupine za urejanje skupin"
1807
 
1808
  #: my-calendar-group-manager.php:322
1809
  msgid "Selected dates are a single multi-day event."
1810
+ msgstr "Izbrani datumi spadajo pod en več-dneven dogodek."
1811
 
1812
  #: my-calendar-group-manager.php:399
1813
  msgid "Event Registration Options"
1814
+ msgstr "Možnosti prijavljanja na dogodek"
1815
 
1816
  #: my-calendar-group-manager.php:721
1817
  msgid "Create/Modify Groups"
1818
+ msgstr "Ustvari/uredi skupine"
1819
 
1820
  #: my-calendar-group-manager.php:730
1821
  msgid "Check a set of events to group them for mass editing."
1822
+ msgstr "Izberite sklop dogodkov za množično urejanje."
1823
 
1824
  #: my-calendar-group-manager.php:740 my-calendar-group-manager.php:832
1825
  msgid "Group checked events for mass editing"
1826
+ msgstr "Dogodki izbrani za množično urejanje"
1827
 
1828
  #: my-calendar-group-manager.php:746
1829
  msgid "Group"
1830
+ msgstr "Skupina"
1831
 
1832
  #: my-calendar-group-manager.php:786
1833
  msgid "Ungrouped"
1834
+ msgstr "Ni v skupini"
1835
 
1836
  #: my-calendar-help.php:4
1837
  msgid "How to use My Calendar"
1838
+ msgstr "Kako uporabljati My Calendar"
1839
 
1840
  #: my-calendar-help.php:45
1841
  msgid "Shortcode Syntax"
1842
+ msgstr "Sintaksa kratke kode"
1843
 
1844
  #: my-calendar-help.php:48
1845
  msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
1846
+ msgstr "Kratke kode lahko uporabljate v prispevkih, na straneh in v tekstovnih gradnikih."
1847
 
1848
  #: my-calendar-help.php:50
1849
  msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
1850
+ msgstr "Kratka koda glavnega koledarja (seznam ali tabela, tedenski ali mesečni pogeld)"
1851
 
1852
  #: my-calendar-help.php:60
1853
  msgid "Names or IDs of categories included in this calendar, comma or pipe separated."
1854
+ msgstr "Imena ali ID-ji vključenih kategorij v tem koledarju ločene z vejico ali z |."
1855
 
1856
  #: my-calendar-help.php:61
1857
  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."
1858
+ msgstr "\"seznam\" ali \"mini\" za prikaz pogleda seznama ali mini koledarja; izpustite ali vnesite katerokoli drugo vrednost za prikaz glavne tabele koledarja."
1859
 
1860
  #: my-calendar-help.php:63
1861
  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.)"
1862
+ msgstr "Nastavite \"teden\" za tedenski prikaz ali na \"dan\" za dnevni prikaz. Ob katerikoli drugi vrednosti bo prikazan mesečni pogled. (Dnevni prikaz prikaže seznam ne glede na nastavitve formata.)"
1863
 
1864
  #: my-calendar-help.php:64
1865
  msgid "The type of location data to restrict by."
1866
+ msgstr "Tip podatka lokacije za omejevanje."
1867
 
1868
  #: my-calendar-help.php:65
1869
  msgid "The specific location information to filter to."
1870
+ msgstr "Željena informacija lokacije za filtriranje."
1871
 
1872
  #: my-calendar-help.php:75
1873
  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."
1874
+ msgstr "Glavne kratke kode My Calendar vtičnika lahko zgenerirate z gumbom v urejevalniku prispevkov in strani. Mini koledar je prav tako nastavljiv kot gradnik."
1875
 
1876
  #: my-calendar-help.php:77
1877
  msgid "Additional Calendar Views (Upcoming events, today's events)"
1878
+ msgstr "Dodatni prikazi koledarja (prihajajoči dogodki, današnji dogodki)"
1879
 
1880
  #: my-calendar-help.php:87
1881
  msgid "Both Upcoming Events and Today's Events can also be configured using widgets."
1882
+ msgstr "Prikaz prihodnjih dogodkov in današnjih dogodkov se lahko nastavi tudi z uporabo gradnika."
1883
 
1884
  #: my-calendar-help.php:94
1885
  msgid "Supplement Features (Locations filter, Categories filter)"
1886
+ msgstr "Dopolnjevalne lastnosti (filtri lokacije, filtri kategorij)"
1887
 
1888
  #: my-calendar-help.php:98
1889
  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>."
1911
 
1912
  #: my-calendar-help.php:121
1913
  msgid "Your icons folder is:"
1914
+ msgstr "Vaša mapa za ikone je:"
1915
 
1916
  #: my-calendar-help.php:121
1917
  msgid "You can alternately place icons in:"
1918
+ msgstr "Alternativno lahko vstavite ikone v:"
1919
 
1920
  #: my-calendar-help.php:130
1921
  msgid "Custom Styles"
1922
+ msgstr "Slogi po meri"
1923
 
1924
  #: my-calendar-help.php:133
1925
  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."
1926
+ msgstr "My Calendar že vsebuje štiri osnovne slogovne predloge. My Calendar bo, med posodobitvijo, obdržal spremembe, ki so bile narjene v osnovnih slogovnih predlogah. Če želite dodati novo slogovno predlogo je priporočljivo, da jo shranite v direktoriju za slogovne predloge po meri."
1927
 
1928
  #: my-calendar-help.php:136
1929
  msgid "Your stylesheet directory is"
1930
+ msgstr "Vaš direktorij z slogovnimi predlogami je"
1931
 
1932
  #: my-calendar-help.php:137
1933
  msgid "Your custom stylesheets directory is"
1934
+ msgstr "Direktorij za slogovne predloge po meri je"
1935
 
1936
  #: my-calendar-help.php:140
1937
  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>."
1938
+ msgstr "Prav tako lahko dodate sloge po meri v direktorij teme in s tem priskrbite slog za printanje, mobilni slog in slog za tablice. <code>mc-print.css</code>, <code>mc-mobile.css</code> in <code>mc-tablet.css</code>."
1939
 
1940
  #: my-calendar-help.php:148
1941
  msgid "Widget Templating"
1942
+ msgstr "Predloga vričnika"
1943
 
1944
  #: my-calendar-help.php:151
1945
  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."
1946
+ msgstr "Vse značke predloge podpirajo dva atributa: before=\"vrednost\" in after=\"vrednost\". Vrednost atributov bo postavljena pred in za izhodno vrednostjo. Te vrednosti atributov <strong>morajo</strong> biti obdane z dvojnimi narekovaji."
1947
 
1948
  #: my-calendar-help.php:154
1949
  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."
1950
+ msgstr "Značke predloge datuma/časa podpirajo atribute \"format\": format=\"M, Y\", kjer je vrednost predstavljena s časovnim tekstom formatiranim po PHP standardu. Samo <code>dtstart</code> in <code>dtend</code> vključujeta polno informacijo za datuma/časa."
1951
 
1952
  #: my-calendar-help.php:157
1953
  msgid "Example:"
1954
+ msgstr "Primer:"
1955
 
1956
  #: my-calendar-help.php:159 my-calendar.php:198
1957
  msgid "Event Template Tags"
1958
+ msgstr "Značke predloge dogodka"
1959
 
1960
  #: my-calendar-help.php:162
1961
  msgid "Displays the title of the event."
1962
+ msgstr "Prikaži naslov dogodka."
1963
 
1964
  #: my-calendar-help.php:165
1965
  msgid "Displays title of the event as a link if a URL is present, or the title alone if no URL is available."
1966
+ msgstr "Prikaže naslov dogodka kot povezavo, če je URL obstaja, drugače prikaže samo naslov."
1967
 
1968
  #: my-calendar-help.php:168
1969
  msgid "Displays the start time for the event."
1970
+ msgstr "Prikaže čas začetka za dogodek."
1971
 
1972
  #: my-calendar-help.php:171
1973
  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."
1974
+ msgstr "Prikaže čas začetka dogodka prilagojen za uporabnikov časovni pas. Vrne <code>{time}</code> v primeru da so uporabniške nastavitve onemogočene ali če uporabnik ni nastavil željenega časovnega območja."
1975
 
1976
  #: my-calendar-help.php:174
1977
  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."
1978
+ msgstr "Prikaže čas konca dogodka prilagojem uporabnikovim nastavitvam časovnega pasu. Vrne <code>{endtime}</code>, če so uporabniške nastavitve onemogočene ali če uporabnik ni nastavil časovnega pasu."
1979
 
1980
  #: my-calendar-help.php:177
1981
  msgid "Displays the date on which the event begins."
1982
+ msgstr "Prikaže datum na katerega se dogodek prične."
1983
 
1984
  #: my-calendar-help.php:183
1985
  msgid "Displays the date on which the event ends."
1986
+ msgstr "Prikaže datum na katerega se dogodek konča."
1987
 
1988
  #: my-calendar-help.php:186
1989
  msgid "Displays the time at which the event ends."
1990
+ msgstr "Prikaže čas ob katerem se dogodek konča."
1991
 
1992
  #: my-calendar-help.php:189
1993
  msgid "Displays the beginning date to the end date for events. Does not show end date if same as start date."
1994
+ msgstr "Prikaže datum začetka in datum konca za dogodke. Ne prikaže datuma v primeru, da sta datum začetka in datum konca dogodka enaka."
1995
 
1996
  #: my-calendar-help.php:195
1997
  msgid "Timestamp for beginning of event."
2007
 
2008
  #: my-calendar-help.php:204
2009
  msgid "Displays the WordPress author who posted the event."
2010
+ msgstr "Prikaže avtorja Wordpress-a, ki je objavil dogodek."
2011
 
2012
  #: my-calendar-help.php:210
2013
  msgid "Displays the name of the person assigned as host for the event."
2031
 
2032
  #: my-calendar-help.php:231
2033
  msgid "Displays description without converting paragraphs."
2034
+ msgstr "Prikaže opis brez pretvarjanja odstavkov."
2035
 
2036
  #: my-calendar.php:244
2037
  msgid "Image associated with the event."
2038
+ msgstr "Sliak pripeta k dogodku."
2039
 
2040
  #: my-calendar-help.php:243
2041
  msgid "Displays the URL provided for the event."
2042
+ msgstr "Prikaže URL, ki je bil dodan k dogodku."
2043
 
2044
  #: my-calendar-help.php:246
2045
  msgid "Produces the URL to download an iCal formatted record for the event."
2046
+ msgstr "Prikaže spletno povezavo za prenos dogodka v formatu za iCal."
2047
 
2048
  #: my-calendar-help.php:249
2049
  msgid "Produces a hyperlink to download an iCal formatted record for the event."
2050
+ msgstr "Proizvede povezavo za prenos dogodka v formatu za iCal."
2051
 
2052
  #: my-calendar-help.php:252
2053
  msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
2054
+ msgstr "Prikaže status ponavljanja dogodka. (dnevno, tedensko, ...)"
2055
 
2056
  #: my-calendar-help.php:255
2057
  msgid "Shows the number of repetitions of the event."
2058
+ msgstr "Prikaže število ponovitev dogodka."
2059
 
2060
  #: my-calendar-help.php:258
2061
  msgid "Provides a link to an auto-generated page containing all information on the given event."
2062
+ msgstr "Proizvede povezavo do avtomatsko zgenerirane strani, ki vsebuje vse informacije o danem dogodku."
2063
 
2064
  #: my-calendar-help.php:258 my-calendar-help.php:261
2065
  msgid "Requires that the site URL has been provided on the Settings page"
2066
+ msgstr "Potrebuje vpisano spletno povezavo do strani na nastavitveni strani."
2067
 
2068
  #: my-calendar-help.php:264
2069
  msgid "Displays text indicating whether registration for the event is currently open or closed; displays nothing if that choice is selected in the event."
2070
+ msgstr "Prikaže tekst, ki ponazarja status prijavljanja na trenuten dogodek (odprto ali zaprto); Ne prikaže ničesar. če je ta možnost izbrana za dogodek."
2071
 
2072
  #: my-calendar-help.php:267
2073
  msgid "Displays the current status of the event: either \"Published\" or \"Reserved\" - primary used in email templates."
2074
+ msgstr "Prikaže trenuten status dogodka: \"Objavljeno\" ali \"Rezervirano\" - primarno za uporabo v predlogah za email."
2075
 
2076
  #: my-calendar-help.php:269 my-calendar.php:258
2077
  msgid "Location Template Tags"
2078
+ msgstr "Značke predlog lokacije"
2079
 
2080
  #: my-calendar-help.php:273
2081
  msgid "Displays the name of the location of the event."
2082
+ msgstr "Prikaže ime lokacije dogodka."
2083
 
2084
  #: my-calendar-help.php:276
2085
  msgid "Displays the first line of the site address."
2086
+ msgstr "Prikaže prvo vrstico naslova."
2087
 
2088
  #: my-calendar-help.php:279
2089
  msgid "Displays the second line of the site address."
2090
+ msgstr "Prikaže drugo vrstico naslova."
2091
 
2092
  #: my-calendar-help.php:282
2093
  msgid "Displays the city for the location."
2094
+ msgstr "Prikaže naselje lokacije dogodka."
2095
 
2096
  #: my-calendar-help.php:285
2097
  msgid "Displays the state for the location."
2098
+ msgstr "Prikaže državo za lokacijo."
2099
 
2100
  #: my-calendar-help.php:288
2101
  msgid "Displays the postcode for the location."
2102
+ msgstr "Prikaže poštno številko za lokacijo."
2103
 
2104
  #: my-calendar-help.php:291
2105
  msgid "Shows the custom region entered for the location."
2106
+ msgstr "Prikaže vnešeno regijo po meri za lokacijo."
2107
 
2108
  #: my-calendar-help.php:294
2109
  msgid "Displays the country for the event location."
2110
+ msgstr "Prikaže drgažvo za lokacijo dogodka."
2111
 
2112
  #: my-calendar-help.php:297
2113
  msgid "Output the URL for the location link."
2233
 
2234
  #: my-calendar-locations.php:202
2235
  msgid "Website"
2236
+ msgstr "Spletna stran"
2237
 
2238
  #: my-calendar-locations.php:207
2239
  msgid "If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location."
2241
 
2242
  #: my-calendar-locations.php:215
2243
  msgid "Add Location"
2244
+ msgstr "Dodaj lokacijo"
2245
 
2246
  #: my-calendar-locations.php:223
2247
  msgid "Add a New Location"
2248
+ msgstr "Dodaj novo lokacijo"
2249
 
2250
  #: my-calendar-locations.php:228 my-calendar.php:350
2251
  msgid "Manage Locations"
2253
 
2254
  #: my-calendar-event-manager.php:1093 my-calendar-locations.php:289
2255
  msgid "Location"
2256
+ msgstr "Uredi lokacije"
2257
 
2258
  #: my-calendar-locations.php:311
2259
  msgid "There are no locations in the database yet!"
2265
 
2266
  #: my-calendar-output.php:187 my-calendar-output.php:311
2267
  msgid "Close"
2268
+ msgstr "Zapri"
2269
 
2270
  #: my-calendar-output.php:200
2271
  msgid "(%s in your time zone)"
2313
 
2314
  #: my-calendar-core.php:1542 my-calendar-output.php:395
2315
  msgid "Year"
2316
+ msgstr "Leto"
2317
 
2318
  #: my-calendar-output.php:423
2319
  msgid "Go"
2320
+ msgstr "Pojdi"
2321
 
2322
  #: my-calendar-output.php:452
2323
  msgid "Calendar: Print View"
2324
+ msgstr "Prikaz za tisk"
2325
 
2326
  #: my-calendar-output.php:467
2327
  msgid "Return to site"
2328
+ msgstr "Vrni se na stran"
2329
 
2330
  #: my-calendar-output.php:480
2331
  msgid "View as Grid"
2337
 
2338
  #: my-calendar-output.php:738
2339
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
2340
+ msgstr "<abbr title=\"Sunday\">Ned</abbr>"
2341
 
2342
  #: my-calendar-output.php:739
2343
  msgid "<abbr title=\"Monday\">Mon</abbr>"
2344
+ msgstr "<abbr title=\"Monday\">Pon</abbr>"
2345
 
2346
  #: my-calendar-output.php:740
2347
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
2348
+ msgstr "<abbr title=\"Tuesday\">Tor</abbr>"
2349
 
2350
  #: my-calendar-output.php:741
2351
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
2352
+ msgstr "<abbr title=\"Wednesday\">Sre</abbr>"
2353
 
2354
  #: my-calendar-output.php:742
2355
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
2356
+ msgstr "<abbr title=\"Thursday\">Čet</abbr>"
2357
 
2358
  #: my-calendar-output.php:743
2359
  msgid "<abbr title=\"Friday\">Fri</abbr>"
2360
+ msgstr "<abbr title=\"Friday\">Pet</abbr>"
2361
 
2362
  #: my-calendar-output.php:744
2363
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
2364
+ msgstr "<abbr title=\"Saturday\">Sob</abbr>"
2365
 
2366
  #: my-calendar-output.php:749
2367
  msgid "<abbr title=\"Sunday\">S</abbr>"
2368
+ msgstr "<abbr title=\"Sunday\">N</abbr>"
2369
 
2370
  #: my-calendar-output.php:750
2371
  msgid "<abbr title=\"Monday\">M</abbr>"
2372
+ msgstr "<abbr title=\"Monday\">P</abbr>"
2373
 
2374
  #: my-calendar-output.php:751
2375
  msgid "<abbr title=\"Tuesday\">T</abbr>"
2376
+ msgstr "<abbr title=\"Tuesday\">T</abbr>"
2377
 
2378
  #: my-calendar-output.php:752
2379
  msgid "<abbr title=\"Wednesday\">W</abbr>"
2380
+ msgstr "<abbr title=\"Wednesday\">S</abbr>"
2381
 
2382
  #: my-calendar-output.php:753
2383
  msgid "<abbr title=\"Thursday\">T</abbr>"
2384
+ msgstr "<abbr title=\"Thursday\">Č</abbr>"
2385
 
2386
  #: my-calendar-output.php:754
2387
  msgid "<abbr title=\"Friday\">F</abbr>"
2388
+ msgstr "<abbr title=\"Friday\">P</abbr>"
2389
 
2390
  #: my-calendar-output.php:755
2391
  msgid "<abbr title=\"Saturday\">S</abbr>"
2392
+ msgstr "<abbr title=\"Saturday\">S</abbr>"
2393
 
2394
  #: my-calendar-output.php:861
2395
  msgid "Print View"
2401
 
2402
  #: my-calendar-output.php:983
2403
  msgid "and"
2404
+ msgstr "in"
2405
 
2406
  #: my-calendar-output.php:997
2407
  msgid "Events in"
2417
 
2418
  #: my-calendar-output.php:1029
2419
  msgid "There are no events scheduled during this period."
2420
+ msgstr "V tem obdobju ni predvidenih dogodkov."
2421
 
2422
  #: my-calendar-output.php:1140
2423
  msgid "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
2425
 
2426
  #: my-calendar-output.php:1160
2427
  msgid "Category Key"
2428
+ msgstr "Legenda kategorij"
2429
 
2430
  #: my-calendar-output.php:1183
2431
  msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
2453
 
2454
  #: my-calendar-output.php:1329 my-calendar-output.php:1332
2455
  msgid "All Categories"
2456
+ msgstr "Vse kategorije"
2457
 
2458
  #: my-calendar-output.php:1330
2459
  msgid "Categories"
2460
+ msgstr "Kategorije"
2461
 
2462
  #: my-calendar-output.php:1351 my-calendar-output.php:1561
2463
  msgid "Submit"
2465
 
2466
  #: my-calendar-output.php:1502 my-calendar-output.php:1523
2467
  msgid "Show all"
2468
+ msgstr "Prikaži vse"
2469
 
2470
  #: my-calendar-output.php:1521
2471
  msgid "Show events in:"
3539
 
3540
  #: my-calendar.php:271
3541
  msgid "City."
3542
+ msgstr "Mesto"
3543
 
3544
  #: my-calendar.php:274
3545
  msgid "State."
3547
 
3548
  #: my-calendar.php:277
3549
  msgid "Postal code/zip code."
3550
+ msgstr "Poštna številka"
3551
 
3552
  #: my-calendar.php:280
3553
  msgid "Custom region."
lang/my-calendar.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the My Calendar package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: My Calendar 2.2.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
7
- "POT-Creation-Date: 2013-04-17 22:17:25+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -41,38 +41,39 @@ msgstr ""
41
  msgid "All locations"
42
  msgstr ""
43
 
44
- #: button/generator.php:58 my-calendar-settings.php:404
45
- #: my-calendar-settings.php:939
46
  msgid "Location Name"
47
  msgstr ""
48
 
49
- #: button/generator.php:59 my-calendar-event-manager.php:870
50
- #: my-calendar-group-manager.php:474 my-calendar-locations.php:152
51
- #: my-calendar-settings.php:940
52
  msgid "City"
53
  msgstr ""
54
 
55
- #: button/generator.php:60 my-calendar-event-manager.php:917
56
- #: my-calendar-group-manager.php:490 my-calendar-locations.php:197
 
57
  msgid "State"
58
  msgstr ""
59
 
60
- #: button/generator.php:61 my-calendar-event-manager.php:886
61
- #: my-calendar-group-manager.php:477 my-calendar-locations.php:168
62
- #: my-calendar-settings.php:943
63
  msgid "Postal Code"
64
  msgstr ""
65
 
66
- #: button/generator.php:62 my-calendar-event-manager.php:902
67
- #: my-calendar-group-manager.php:481 my-calendar-locations.php:184
68
- #: my-calendar-settings.php:942
69
  msgid "Country"
70
  msgstr ""
71
 
72
- #: button/generator.php:63 my-calendar-event-manager.php:893
73
- #: my-calendar-event-manager.php:918 my-calendar-group-manager.php:478
74
- #: my-calendar-group-manager.php:491 my-calendar-locations.php:175
75
- #: my-calendar-locations.php:198 my-calendar-settings.php:944
76
  msgid "Region"
77
  msgstr ""
78
 
@@ -92,69 +93,73 @@ msgstr ""
92
  msgid "List"
93
  msgstr ""
94
 
95
- #: button/generator.php:78 my-calendar-widgets.php:699
96
  msgid "Navigation above calendar"
97
  msgstr ""
98
 
99
- #: button/generator.php:82 my-calendar-widgets.php:703
 
 
 
 
100
  msgid "Navigation below calendar"
101
  msgstr ""
102
 
103
- #: button/generator.php:86
104
  msgid "Time Segment"
105
  msgstr ""
106
 
107
- #: button/generator.php:88 my-calendar-output.php:390
108
- #: my-calendar-output.php:501 my-calendar-output.php:508
109
- #: my-calendar-output.php:514 my-calendar-widgets.php:723
110
  msgid "Month"
111
  msgstr ""
112
 
113
- #: button/generator.php:89 my-calendar-output.php:502
114
- #: my-calendar-output.php:510 my-calendar-output.php:516
115
- #: my-calendar-widgets.php:724
116
  msgid "Week"
117
  msgstr ""
118
 
119
- #: button/generator.php:90 my-calendar-output.php:504
120
- #: my-calendar-output.php:511 my-calendar-output.php:518
121
  msgid "Day"
122
  msgstr ""
123
 
124
- #: button/generator.php:101 my-calendar-widgets.php:707
125
  msgid "Limit by Author"
126
  msgstr ""
127
 
128
- #: button/generator.php:103 my-calendar-widgets.php:709
129
  msgid "All authors"
130
  msgstr ""
131
 
132
- #: button/generator.php:108 my-calendar-widgets.php:714
133
  msgid "Limit by Host"
134
  msgstr ""
135
 
136
- #: button/generator.php:110 my-calendar-widgets.php:716
137
  msgid "All hosts"
138
  msgstr ""
139
 
140
- #: button/generator.php:116
141
  msgid "Generate Shortcode"
142
  msgstr ""
143
 
144
- #: button/generator.php:118
145
  msgid ""
146
  "<strong>Note:</strong> If you provide a location filter value, it must be an "
147
  "exact match for that information as saved with your events. (e.g. \"Saint "
148
  "Paul\" is not equivalent to \"saint paul\" or \"St. Paul\")"
149
  msgstr ""
150
 
151
- #: button/generator.php:128
152
  msgid ""
153
  "My Calendar: this generator isn't going to put the shortcode in your page. "
154
  "Sorry!"
155
  msgstr ""
156
 
157
- #: my-calendar-behaviors.php:44
158
  msgid "Behavior Settings saved"
159
  msgstr ""
160
 
@@ -171,182 +176,177 @@ msgid "Insert scripts on these pages (comma separated post IDs)"
171
  msgstr ""
172
 
173
  #: my-calendar-behaviors.php:83
174
- msgid "Details boxes are draggable"
175
- msgstr ""
176
-
177
- #: my-calendar-behaviors.php:86
178
  msgid "Calendar Behaviors: Calendar View"
179
  msgstr ""
180
 
181
- #: my-calendar-behaviors.php:88
182
  msgid "Update/Reset the My Calendar Calendar Javascript"
183
  msgstr ""
184
 
185
- #: my-calendar-behaviors.php:88
186
  msgid "Disable Calendar Javascript Effects"
187
  msgstr ""
188
 
189
- #: my-calendar-behaviors.php:91
190
  msgid "Edit the jQuery scripts for My Calendar in Calendar format"
191
  msgstr ""
192
 
193
- #: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
194
- #: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
195
  msgid "Comparing scripts with latest installed version of My Calendar"
196
  msgstr ""
197
 
198
- #: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
199
- #: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
200
- #: my-calendar-styles.php:217
201
  msgid "Latest (from plugin)"
202
  msgstr ""
203
 
204
- #: my-calendar-behaviors.php:98 my-calendar-behaviors.php:130
205
- #: my-calendar-behaviors.php:161 my-calendar-behaviors.php:193
206
- #: my-calendar-styles.php:217
207
  msgid "Current (in use)"
208
  msgstr ""
209
 
210
- #: my-calendar-behaviors.php:102
211
  msgid "There have been updates to the calendar view scripts."
212
  msgstr ""
213
 
214
- #: my-calendar-behaviors.php:102 my-calendar-behaviors.php:134
215
- #: my-calendar-behaviors.php:165 my-calendar-behaviors.php:197
216
  msgid "Compare your scripts with latest installed version of My Calendar."
217
  msgstr ""
218
 
219
- #: my-calendar-behaviors.php:106 my-calendar-behaviors.php:138
220
- #: my-calendar-behaviors.php:169 my-calendar-behaviors.php:201
221
  msgid "Your script matches that included with My Calendar."
222
  msgstr ""
223
 
224
- #: my-calendar-behaviors.php:111 my-calendar-behaviors.php:143
225
- #: my-calendar-behaviors.php:174 my-calendar-behaviors.php:206
226
- #: my-calendar-behaviors.php:211
227
  msgid "Save"
228
  msgstr ""
229
 
230
- #: my-calendar-behaviors.php:118
231
  msgid "Calendar Behaviors: List View"
232
  msgstr ""
233
 
234
- #: my-calendar-behaviors.php:120
235
  msgid "Update/Reset the My Calendar List Javascript"
236
  msgstr ""
237
 
238
- #: my-calendar-behaviors.php:120
239
  msgid "Disable List Javascript Effects"
240
  msgstr ""
241
 
242
- #: my-calendar-behaviors.php:123
243
  msgid "Edit the jQuery scripts for My Calendar in List format"
244
  msgstr ""
245
 
246
- #: my-calendar-behaviors.php:134
247
  msgid "There have been updates to the list view scripts."
248
  msgstr ""
249
 
250
- #: my-calendar-behaviors.php:149
251
  msgid "Calendar Behaviors: Mini Calendar View"
252
  msgstr ""
253
 
254
- #: my-calendar-behaviors.php:151
255
  msgid "Update/Reset the My Calendar Mini Format Javascript"
256
  msgstr ""
257
 
258
- #: my-calendar-behaviors.php:151
259
  msgid "Disable Mini Javascript Effects"
260
  msgstr ""
261
 
262
- #: my-calendar-behaviors.php:154
263
  msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
264
  msgstr ""
265
 
266
- #: my-calendar-behaviors.php:165
267
  msgid "There have been updates to the mini view scripts."
268
  msgstr ""
269
 
270
- #: my-calendar-behaviors.php:181
271
  msgid "Calendar Behaviors: AJAX Navigation"
272
  msgstr ""
273
 
274
- #: my-calendar-behaviors.php:183
275
  msgid "Update/Reset the My Calendar AJAX Javascript"
276
  msgstr ""
277
 
278
- #: my-calendar-behaviors.php:183
279
  msgid "Disable AJAX Effects"
280
  msgstr ""
281
 
282
- #: my-calendar-behaviors.php:186
283
  msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
284
  msgstr ""
285
 
286
- #: my-calendar-behaviors.php:197
287
  msgid "There have been updates to the AJAX scripts."
288
  msgstr ""
289
 
290
- #: my-calendar-behaviors.php:217
291
  msgid ""
292
  "Resetting JavaScript will set that script to the version currently "
293
  "distributed with the plug-in."
294
  msgstr ""
295
 
296
- #: my-calendar-categories.php:106 my-calendar-categories.php:146
297
  msgid "Default category changed."
298
  msgstr ""
299
 
300
- #: my-calendar-categories.php:109
301
  msgid "Category added successfully"
302
  msgstr ""
303
 
304
- #: my-calendar-categories.php:111
305
  msgid "Category addition failed."
306
  msgstr ""
307
 
308
- #: my-calendar-categories.php:126
309
  msgid "Category deleted successfully. Categories in calendar updated."
310
  msgstr ""
311
 
312
- #: my-calendar-categories.php:128
313
  msgid "Category deleted successfully. Categories in calendar not updated."
314
  msgstr ""
315
 
316
- #: my-calendar-categories.php:130
317
  msgid "Category not deleted. Categories in calendar updated."
318
  msgstr ""
319
 
320
- #: my-calendar-categories.php:151
321
  msgid "Category edited successfully."
322
  msgstr ""
323
 
324
- #: my-calendar-categories.php:153
325
  msgid "Category was not edited."
326
  msgstr ""
327
 
328
- #: my-calendar-categories.php:187 my-calendar-categories.php:213
329
- #: my-calendar-categories.php:236
330
  msgid "Add Category"
331
  msgstr ""
332
 
333
- #: my-calendar-categories.php:189 my-calendar-categories.php:213
334
  msgid "Edit Category"
335
  msgstr ""
336
 
337
- #: my-calendar-categories.php:197
338
  msgid "Category Editor"
339
  msgstr ""
340
 
341
- #: my-calendar-categories.php:214 my-calendar-categories.php:283
342
  msgid "Category Name"
343
  msgstr ""
344
 
345
- #: my-calendar-categories.php:215
346
  msgid "Category Color (Hex format)"
347
  msgstr ""
348
 
349
- #: my-calendar-categories.php:216 my-calendar-categories.php:285
350
  msgid "Category Icon"
351
  msgstr ""
352
 
@@ -358,8 +358,8 @@ msgstr ""
358
  msgid "Private category (logged-in users only)"
359
  msgstr ""
360
 
361
- #: my-calendar-categories.php:236 my-calendar-locations.php:215
362
- #: my-calendar-styles.php:206
363
  msgid "Save Changes"
364
  msgstr ""
365
 
@@ -367,240 +367,244 @@ msgstr ""
367
  msgid "Add a New Category"
368
  msgstr ""
369
 
370
- #: my-calendar-categories.php:248
371
  msgid "Category List"
372
  msgstr ""
373
 
374
- #: my-calendar-categories.php:266 my-calendar.php:349
375
  msgid "Manage Categories"
376
  msgstr ""
377
 
378
- #: my-calendar-categories.php:282 my-calendar-event-manager.php:1091
379
- #: my-calendar-group-manager.php:745 my-calendar-locations.php:288
380
  msgid "ID"
381
  msgstr ""
382
 
383
- #: my-calendar-categories.php:284
384
  msgid "Category Color"
385
  msgstr ""
386
 
387
- #: my-calendar-categories.php:286
388
  msgid "Private"
389
  msgstr ""
390
 
391
- #: my-calendar-categories.php:287 my-calendar-categories.php:303
392
- #: my-calendar-event-manager.php:1131 my-calendar-locations.php:290
393
- #: my-calendar-locations.php:302 my-calendar-output.php:325
394
  msgid "Edit"
395
  msgstr ""
396
 
397
- #: my-calendar-categories.php:288 my-calendar-categories.php:309
398
- #: my-calendar-event-manager.php:37 my-calendar-event-manager.php:1134
399
  #: my-calendar-locations.php:291 my-calendar-locations.php:303
400
- #: my-calendar-output.php:326
401
  msgid "Delete"
402
  msgstr ""
403
 
404
- #: my-calendar-categories.php:306 my-calendar-group-manager.php:810
405
- #: my-calendar-output.php:206 my-calendar-settings.php:443
 
 
 
 
 
 
 
 
406
  msgid "N/A"
407
  msgstr ""
408
 
409
- #: my-calendar-categories.php:309 my-calendar-locations.php:303
410
  msgid "Are you sure you want to delete this category?"
411
  msgstr ""
412
 
413
- #: my-calendar-categories.php:320
414
- msgid "There are no categories in the database - something has gone wrong!"
415
  msgstr ""
416
 
417
- #: my-calendar-core.php:69 my-calendar.php:356
418
  msgid "Settings"
419
  msgstr ""
420
 
421
- #: my-calendar-core.php:70 my-calendar.php:357
422
  msgid "Help"
423
  msgstr ""
424
 
425
- #: my-calendar-core.php:265
426
  msgid ""
427
  "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href="
428
  "\"%1$s\">changelog</a> before upgrading."
429
  msgstr ""
430
 
431
- #: my-calendar-core.php:1112 my-calendar-event-manager.php:267
432
  msgid "Add Event"
433
  msgstr ""
434
 
435
- #: my-calendar-core.php:1169
436
  msgid "Event Notifications"
437
  msgstr ""
438
 
439
- #: my-calendar-core.php:1375
440
  msgid "Is this your calendar page?"
441
  msgstr ""
442
 
443
- #: my-calendar-core.php:1378
444
- msgid "I tried to guess, but don't have a suggestion for you."
445
- msgstr ""
446
-
447
- #: my-calendar-core.php:1477
448
  msgid ""
449
  "Please read the FAQ and other Help documents before making a support request."
450
  msgstr ""
451
 
452
- #: my-calendar-core.php:1479
453
  msgid "Please describe your problem in detail. I'm not psychic."
454
  msgstr ""
455
 
456
- #: my-calendar-core.php:1484
457
  msgid ""
458
  "Thank you for supporting the continuing development of this plug-in! I'll "
459
  "get back to you as soon as I can."
460
  msgstr ""
461
 
462
- #: my-calendar-core.php:1486
463
  msgid ""
464
  "I'll get back to you as soon as I can, after dealing with any support "
465
  "requests from plug-in supporters."
466
  msgstr ""
467
 
468
- #: my-calendar-core.php:1496
469
  msgid ""
470
  "Please note: I do keep records of those who have donated, <strong>but if "
471
  "your donation came from somebody other than your account at this web site, "
472
  "please note this in your message.</strong>"
473
  msgstr ""
474
 
475
- #: my-calendar-core.php:1498
476
  msgid "From:"
477
  msgstr ""
478
 
479
- #: my-calendar-core.php:1501
480
  msgid ""
481
  "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/"
482
  "\">the FAQ for this plug-in</a>."
483
  msgstr ""
484
 
485
- #: my-calendar-core.php:1504
486
  msgid ""
487
  "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to "
488
  "help support this plug-in</a>."
489
  msgstr ""
490
 
491
- #: my-calendar-core.php:1507
492
  msgid ""
493
  "I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/"
494
  "\">purchased the User's Guide</a>, but could not find an answer to this "
495
  "question."
496
  msgstr ""
497
 
498
- #: my-calendar-core.php:1513
499
  msgid "Send Support Request"
500
  msgstr ""
501
 
502
- #: my-calendar-core.php:1516
503
  msgid ""
504
  "The following additional information will be sent with your support request:"
505
  msgstr ""
506
 
507
- #: my-calendar-core.php:1536 my-calendar-templates.php:173
508
  msgid "Does not recur"
509
  msgstr ""
510
 
511
- #: my-calendar-core.php:1537
512
  msgid "Days"
513
  msgstr ""
514
 
515
- #: my-calendar-core.php:1538
516
  msgid "Days, weekdays only"
517
  msgstr ""
518
 
519
- #: my-calendar-core.php:1539
520
  msgid "Weeks"
521
  msgstr ""
522
 
523
- #: my-calendar-core.php:1540
524
  msgid "Months by date (e.g., the 24th of each month)"
525
  msgstr ""
526
 
527
- #: my-calendar-core.php:1541
528
  msgid "Month by day (e.g., the 3rd Monday of each month)"
529
  msgstr ""
530
 
531
- #: my-calendar-core.php:1542 my-calendar-output.php:395
532
  msgid "Year"
533
  msgstr ""
534
 
535
- #: my-calendar-event-manager.php:26
536
  msgid "Delete Event"
537
  msgstr ""
538
 
539
- #: my-calendar-event-manager.php:26
540
  msgid "Are you sure you want to delete this event?"
541
  msgstr ""
542
 
543
- #: my-calendar-event-manager.php:42
544
  msgid "You do not have permission to delete that event."
545
  msgstr ""
546
 
547
- #: my-calendar-event-manager.php:56
548
  msgid "You do not have permission to approve that event."
549
  msgstr ""
550
 
551
- #: my-calendar-event-manager.php:71
552
  msgid "You do not have permission to reject that event."
553
  msgstr ""
554
 
555
- #: my-calendar-event-manager.php:105
556
  msgid "%1$d events deleted successfully out of %2$d selected"
557
  msgstr ""
558
 
559
- #: my-calendar-event-manager.php:107 my-calendar-event-manager.php:137
560
- #: my-calendar-event-manager.php:305 my-calendar-event-manager.php:379
561
- #: my-calendar-event-manager.php:397 my-calendar-event-manager.php:416
562
- #: my-calendar-event-manager.php:1366 my-calendar-event-manager.php:1369
563
- #: my-calendar-event-manager.php:1379 my-calendar-event-manager.php:1386
564
- #: my-calendar-event-manager.php:1402 my-calendar-event-manager.php:1409
565
- #: my-calendar-event-manager.php:1414 my-calendar-group-manager.php:58
566
- #: my-calendar-group-manager.php:84 my-calendar-group-manager.php:162
567
- #: my-calendar-group-manager.php:599
568
  msgid "Error"
569
  msgstr ""
570
 
571
- #: my-calendar-event-manager.php:107
572
  msgid "Your events have not been deleted. Please investigate."
573
  msgstr ""
574
 
575
- #: my-calendar-event-manager.php:135
576
- msgid "%1$d events approved successfully out of %2$d selected"
577
  msgstr ""
578
 
579
- #: my-calendar-event-manager.php:137
580
- msgid "Your events have not been approved. Please investigate."
581
  msgstr ""
582
 
583
- #: my-calendar-event-manager.php:144 my-calendar-settings.php:120
584
- #: my-calendar-settings.php:799 my-calendar.php:347
585
  msgid "Manage Events"
586
  msgstr ""
587
 
588
- #: my-calendar-event-manager.php:149
589
  msgid "My Events"
590
  msgstr ""
591
 
592
- #: my-calendar-event-manager.php:169 my-calendar-settings.php:333
593
  msgid ""
594
  "My Calendar has identified that you have the Calendar plugin by Kieran "
595
  "O'Shea installed. You can import those events and categories into the My "
596
  "Calendar database. Would you like to import these events?"
597
  msgstr ""
598
 
599
- #: my-calendar-event-manager.php:176 my-calendar-settings.php:339
600
  msgid "Import from Calendar"
601
  msgstr ""
602
 
603
- #: my-calendar-event-manager.php:181
604
  msgid ""
605
  "Although it is possible that this import could fail to import your events "
606
  "correctly, it should not have any impact on your existing Calendar database. "
@@ -608,709 +612,724 @@ msgid ""
608
  "\">please contact me</a>!"
609
  msgstr ""
610
 
611
- #: my-calendar-event-manager.php:226
612
  msgid "Return to Calendar"
613
  msgstr ""
614
 
615
- #: my-calendar-event-manager.php:238
616
  msgid "Currently editing your local calendar"
617
  msgstr ""
618
 
619
- #: my-calendar-event-manager.php:240
620
  msgid "Currently editing your central calendar"
621
  msgstr ""
622
 
623
- #: my-calendar-event-manager.php:248 my-calendar-group-manager.php:782
624
  msgid "Edit Event"
625
  msgstr ""
626
 
627
- #: my-calendar-event-manager.php:251 my-calendar-event-manager.php:260
628
  msgid "You must provide an event id in order to edit it"
629
  msgstr ""
630
 
631
- #: my-calendar-event-manager.php:257
632
  msgid "Copy Event"
633
  msgstr ""
634
 
635
- #: my-calendar-event-manager.php:305
636
  msgid "I'm sorry! I couldn't add that event to the database."
637
  msgstr ""
638
 
639
- #: my-calendar-event-manager.php:315
640
  msgid "Event saved. An administrator will review and approve your event."
641
  msgstr ""
642
 
643
- #: my-calendar-event-manager.php:320
644
  msgid "Event added. It will now show on the calendar."
645
  msgstr ""
646
 
647
- #: my-calendar-event-manager.php:326 my-calendar-group-manager.php:56
648
- #: my-calendar-group-manager.php:160
649
  msgid "View <a href=\"%s\">your calendar</a>."
650
  msgstr ""
651
 
652
- #: my-calendar-event-manager.php:354 my-calendar-event-manager.php:381
653
- #: my-calendar-group-manager.php:60 my-calendar-group-manager.php:86
654
- #: my-calendar-group-manager.php:164
655
  msgid "Nothing was changed in that update."
656
  msgstr ""
657
 
658
- #: my-calendar-event-manager.php:358
659
  msgid "Date/time information for this event has been updated."
660
  msgstr ""
661
 
662
- #: my-calendar-event-manager.php:379 my-calendar-group-manager.php:162
663
  msgid "Your event was not updated."
664
  msgstr ""
665
 
666
- #: my-calendar-event-manager.php:386 my-calendar-group-manager.php:62
 
 
 
 
667
  #: my-calendar-group-manager.php:166
668
  msgid "Event updated successfully"
669
  msgstr ""
670
 
671
- #: my-calendar-event-manager.php:390 my-calendar-group-manager.php:170
672
  msgid "You do not have sufficient permissions to edit that event."
673
  msgstr ""
674
 
675
- #: my-calendar-event-manager.php:397
676
  msgid "You can't delete an event if you haven't submitted an event id"
677
  msgstr ""
678
 
679
- #: my-calendar-event-manager.php:414
680
  msgid "Event deleted successfully"
681
  msgstr ""
682
 
683
- #: my-calendar-event-manager.php:416
684
  msgid ""
685
  "Despite issuing a request to delete, the event still remains in the "
686
  "database. Please investigate."
687
  msgstr ""
688
 
689
- #: my-calendar-event-manager.php:429 my-calendar-group-manager.php:182
690
  msgid "Sorry! That's an invalid event key."
691
  msgstr ""
692
 
693
- #: my-calendar-event-manager.php:433 my-calendar-group-manager.php:186
694
  msgid "Sorry! We couldn't find an event with that ID."
695
  msgstr ""
696
 
697
- #: my-calendar-event-manager.php:458
698
  msgid "This event must be approved in order for it to appear on the calendar."
699
  msgstr ""
700
 
701
- #: my-calendar-event-manager.php:526
702
- msgid "Add/Edit Event"
 
 
703
  msgstr ""
704
 
705
- #: my-calendar-event-manager.php:526
706
- msgid "Edit events"
 
 
707
  msgstr ""
708
 
709
- #: my-calendar-event-manager.php:529 my-calendar-event-manager.php:964
710
- msgid "Save Event"
711
  msgstr ""
712
 
713
- #: my-calendar-event-manager.php:539
 
 
 
 
714
  msgid ""
715
  "There was an error acquiring information about this event instance. The ID "
716
  "for this event instance was not provided. <strong>You are editing this "
717
  "entire recurrence set.</strong>"
718
  msgstr ""
719
 
720
- #: my-calendar-event-manager.php:543 my-calendar-group-manager.php:312
721
  msgid "Enter your Event Information"
722
  msgstr ""
723
 
724
- #: my-calendar-event-manager.php:545 my-calendar-group-manager.php:314
725
  msgid "Event Title"
726
  msgstr ""
727
 
728
- #: my-calendar-event-manager.php:545 my-calendar-event-manager.php:693
729
- #: my-calendar-group-manager.php:314
730
  msgid "(required)"
731
  msgstr ""
732
 
733
- #: my-calendar-event-manager.php:550
734
  msgid "Publish"
735
  msgstr ""
736
 
737
- #: my-calendar-event-manager.php:550
738
  msgid "You must approve this event to promote it to the calendar."
739
  msgstr ""
740
 
741
- #: my-calendar-event-manager.php:552
742
  msgid "An administrator must approve your new event."
743
  msgstr ""
744
 
745
- #: my-calendar-event-manager.php:567
746
  msgid "This event is not spam"
747
  msgstr ""
748
 
749
- #: my-calendar-event-manager.php:574
750
  msgid "Post to Twitter (via WP to Twitter)"
751
  msgstr ""
752
 
753
- #: my-calendar-event-manager.php:582 my-calendar-group-manager.php:328
754
  msgid ""
755
  "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> "
756
  "allowed)"
757
  msgstr ""
758
 
759
- #: my-calendar-event-manager.php:603 my-calendar-event-manager.php:616
760
- #: my-calendar-group-manager.php:339 my-calendar-group-manager.php:347
761
  msgid "This event's image:"
762
  msgstr ""
763
 
764
- #: my-calendar-event-manager.php:605 my-calendar-group-manager.php:341
765
  msgid "Add an image:"
766
  msgstr ""
767
 
768
- #: my-calendar-event-manager.php:607
769
  msgid "(URL to Event image)"
770
  msgstr ""
771
 
772
- #: my-calendar-event-manager.php:609 my-calendar-group-manager.php:341
773
  msgid "Upload Image"
774
  msgstr ""
775
 
776
- #: my-calendar-event-manager.php:609 my-calendar-group-manager.php:341
777
  msgid "Include your image URL or upload an image."
778
  msgstr ""
779
 
780
- #: my-calendar-event-manager.php:622 my-calendar-group-manager.php:353
781
  msgid ""
782
  "Event Short Description (<abbr title=\"hypertext markup language\">HTML</"
783
  "abbr> allowed)"
784
  msgstr ""
785
 
786
- #: my-calendar-event-manager.php:626 my-calendar-group-manager.php:357
787
  msgid "Event Host"
788
  msgstr ""
789
 
790
- #: my-calendar-event-manager.php:645 my-calendar-group-manager.php:376
791
  msgid "Event Category"
792
  msgstr ""
793
 
794
- #: my-calendar-event-manager.php:657 my-calendar-group-manager.php:388
795
  msgid "Event Link (Optional)"
796
  msgstr ""
797
 
798
- #: my-calendar-event-manager.php:657 my-calendar-group-manager.php:388
799
  msgid "This link will expire when the event passes."
800
  msgstr ""
801
 
802
- #: my-calendar-event-manager.php:667 my-calendar-event-manager.php:675
803
  msgid "Event Date and Time"
804
  msgstr ""
805
 
806
- #: my-calendar-event-manager.php:693
807
  msgid "Start Date (YYYY-MM-DD)"
808
  msgstr ""
809
 
810
- #: my-calendar-event-manager.php:693
811
  msgid "Time (hh:mm am/pm)"
812
  msgstr ""
813
 
814
- #: my-calendar-event-manager.php:699
815
  msgid "All day event"
816
  msgstr ""
817
 
818
- #: my-calendar-event-manager.php:702
819
  msgid "End Date (YYYY-MM-DD)"
820
  msgstr ""
821
 
822
- #: my-calendar-event-manager.php:702
823
  msgid "(optional)"
824
  msgstr ""
825
 
826
- #: my-calendar-event-manager.php:702
827
  msgid "End Time (hh:mm am/pm)"
828
  msgstr ""
829
 
830
- #: my-calendar-event-manager.php:707
831
  msgid "Hide end time"
832
  msgstr ""
833
 
834
- #: my-calendar-event-manager.php:713
835
  msgid "This is a multi-day event."
836
  msgstr ""
837
 
838
- #: my-calendar-event-manager.php:715
839
  msgid ""
840
  "Enter the beginning and ending dates/times for each occurrence of the event."
841
  msgstr ""
842
 
843
- #: my-calendar-event-manager.php:715
844
  msgid ""
845
  "If this is a multi-day event, it creates a single event with multiple dates/"
846
  "times; otherwise it creates separate events for each occurrence."
847
  msgstr ""
848
 
849
- #: my-calendar-event-manager.php:717
850
  msgid "Add another occurrence"
851
  msgstr ""
852
 
853
- #: my-calendar-event-manager.php:718
854
  msgid "Remove last occurrence"
855
  msgstr ""
856
 
857
- #: my-calendar-event-manager.php:722
858
  msgid "Dates for this event:"
859
  msgstr ""
860
 
861
- #: my-calendar-event-manager.php:723
862
  msgid ""
863
  "Editing a single date of an event changes only that event. Editing the root "
864
  "event changes all events in the series."
865
  msgstr ""
866
 
867
- #: my-calendar-event-manager.php:733
868
  msgid "Related Events:"
869
  msgstr ""
870
 
871
- #: my-calendar-event-manager.php:733
872
  msgid "Edit group"
873
  msgstr ""
874
 
875
- #: my-calendar-event-manager.php:740
876
  msgid "Current time difference from GMT is "
877
  msgstr ""
878
 
879
- #: my-calendar-event-manager.php:740
880
  msgid " hour(s)"
881
  msgstr ""
882
 
883
- #: my-calendar-event-manager.php:750 my-calendar-event-manager.php:764
 
 
 
 
884
  msgid "Recurring Events"
885
  msgstr ""
886
 
887
- #: my-calendar-event-manager.php:767
888
  msgid "Repeats"
889
  msgstr ""
890
 
891
- #: my-calendar-event-manager.php:767
892
  msgid "times"
893
  msgstr ""
894
 
895
- #: my-calendar-event-manager.php:768
896
  msgid "every"
897
  msgstr ""
898
 
899
- #: my-calendar-event-manager.php:769
900
  msgid "Units"
901
  msgstr ""
902
 
903
- #: my-calendar-event-manager.php:772
904
  msgid ""
905
  "Your entry is the number of events after the first occurrence of the event: "
906
  "a recurrence of <em>2</em> means the event will happen three times."
907
  msgstr ""
908
 
909
- #: my-calendar-event-manager.php:793
910
  msgid "Event Registration Settings"
911
  msgstr ""
912
 
913
- #: my-calendar-event-manager.php:796 my-calendar-group-manager.php:402
914
- msgid "Event Registration Status"
915
- msgstr ""
916
-
917
- #: my-calendar-event-manager.php:797 my-calendar-group-manager.php:403
918
- msgid ""
919
- "My Calendar does not manage event registrations. Use this for information "
920
- "only."
921
- msgstr ""
922
-
923
- #: my-calendar-event-manager.php:799 my-calendar-group-manager.php:405
924
- msgid "Open"
925
  msgstr ""
926
 
927
- #: my-calendar-event-manager.php:800 my-calendar-group-manager.php:406
928
- msgid "Closed"
929
- msgstr ""
930
-
931
- #: my-calendar-event-manager.php:801 my-calendar-group-manager.php:407
932
- msgid "Does not apply"
933
- msgstr ""
934
-
935
- #: my-calendar-event-manager.php:804 my-calendar-group-manager.php:410
936
- msgid ""
937
- "If this event recurs, it can only be registered for as a complete series."
938
- msgstr ""
939
-
940
- #: my-calendar-event-manager.php:821 my-calendar-event-manager.php:824
941
- #: my-calendar-group-manager.php:427 my-calendar-group-manager.php:430
942
  #: my-calendar-locations.php:129
943
  msgid "Event Location"
944
  msgstr ""
945
 
946
- #: my-calendar-event-manager.php:831 my-calendar-group-manager.php:437
947
  msgid "Choose a preset location:"
948
  msgstr ""
949
 
950
- #: my-calendar-event-manager.php:841 my-calendar-group-manager.php:450
951
  msgid "Add recurring locations for later use."
952
  msgstr ""
953
 
954
- #: my-calendar-event-manager.php:848 my-calendar-group-manager.php:459
955
  #: my-calendar-locations.php:131
956
  msgid ""
957
  "All location fields are optional: <em>insufficient information may result in "
958
  "an inaccurate map</em>."
959
  msgstr ""
960
 
961
- #: my-calendar-event-manager.php:850
962
  msgid "Copy this location into the locations table"
963
  msgstr ""
964
 
965
- #: my-calendar-event-manager.php:852 my-calendar-group-manager.php:462
966
  #: my-calendar-locations.php:134
967
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
968
  msgstr ""
969
 
970
- #: my-calendar-event-manager.php:861 my-calendar-group-manager.php:465
971
  #: my-calendar-locations.php:143
972
  msgid "Street Address"
973
  msgstr ""
974
 
975
- #: my-calendar-event-manager.php:864 my-calendar-group-manager.php:468
976
  #: my-calendar-locations.php:146
977
  msgid "Street Address (2)"
978
  msgstr ""
979
 
980
- #: my-calendar-event-manager.php:867 my-calendar-group-manager.php:471
981
  #: my-calendar-locations.php:149
982
  msgid "Phone"
983
  msgstr ""
984
 
985
- #: my-calendar-event-manager.php:877 my-calendar-group-manager.php:474
986
- #: my-calendar-locations.php:159 my-calendar-settings.php:941
987
  msgid "State/Province"
988
  msgstr ""
989
 
990
- #: my-calendar-event-manager.php:911 my-calendar-group-manager.php:484
991
  #: my-calendar-locations.php:191
992
  msgid "Initial Zoom"
993
  msgstr ""
994
 
995
- #: my-calendar-event-manager.php:913 my-calendar-group-manager.php:486
996
  #: my-calendar-locations.php:193
997
  msgid "Neighborhood"
998
  msgstr ""
999
 
1000
- #: my-calendar-event-manager.php:914 my-calendar-group-manager.php:487
1001
  #: my-calendar-locations.php:194
1002
  msgid "Small City"
1003
  msgstr ""
1004
 
1005
- #: my-calendar-event-manager.php:915 my-calendar-group-manager.php:488
1006
  #: my-calendar-locations.php:195
1007
  msgid "Large City"
1008
  msgstr ""
1009
 
1010
- #: my-calendar-event-manager.php:916 my-calendar-group-manager.php:489
1011
  #: my-calendar-locations.php:196
1012
  msgid "Greater Metro Area"
1013
  msgstr ""
1014
 
1015
- #: my-calendar-event-manager.php:922 my-calendar-group-manager.php:495
1016
  msgid "Location URL"
1017
  msgstr ""
1018
 
1019
- #: my-calendar-event-manager.php:925 my-calendar-group-manager.php:498
1020
  #: my-calendar-locations.php:205
1021
  msgid "GPS Coordinates (optional)"
1022
  msgstr ""
1023
 
1024
- #: my-calendar-event-manager.php:927 my-calendar-group-manager.php:500
1025
  msgid ""
1026
  "If you supply GPS coordinates for your location, they will be used in place "
1027
  "of any other address information to provide your map link."
1028
  msgstr ""
1029
 
1030
- #: my-calendar-event-manager.php:930 my-calendar-group-manager.php:503
1031
  #: my-calendar-locations.php:210
1032
  msgid "Latitude"
1033
  msgstr ""
1034
 
1035
- #: my-calendar-event-manager.php:930 my-calendar-group-manager.php:503
1036
  #: my-calendar-locations.php:211
1037
  msgid "Longitude"
1038
  msgstr ""
1039
 
1040
- #: my-calendar-event-manager.php:943
1041
  msgid "Special scheduling options"
1042
  msgstr ""
1043
 
1044
- #: my-calendar-event-manager.php:946
1045
  msgid "Special Options"
1046
  msgstr ""
1047
 
1048
- #: my-calendar-event-manager.php:948
1049
  msgid ""
1050
  "Cancel this event if it occurs on a date with an event in the Holidays "
1051
  "category"
1052
  msgstr ""
1053
 
1054
- #: my-calendar-event-manager.php:951
1055
  msgid ""
1056
  "If this event recurs, and falls on the 5th week of the month in a month with "
1057
  "only four weeks, move it back one week."
1058
  msgstr ""
1059
 
1060
- #: my-calendar-event-manager.php:1025
1061
  msgid "Clear filters"
1062
  msgstr ""
1063
 
1064
- #: my-calendar-event-manager.php:1046
1065
  msgid "Spam"
1066
  msgstr ""
1067
 
1068
- #: my-calendar-event-manager.php:1051 my-calendar-templates.php:271
1069
  msgid "Published"
1070
  msgstr ""
1071
 
1072
- #: my-calendar-event-manager.php:1052 my-calendar-templates.php:271
1073
  msgid "Reserved"
1074
  msgstr ""
1075
 
1076
- #: my-calendar-event-manager.php:1053 my-calendar-group-manager.php:726
1077
  msgid "All"
1078
  msgstr ""
1079
 
1080
- #: my-calendar-event-manager.php:1064
1081
  msgid "&laquo; Previous Page"
1082
  msgstr ""
1083
 
1084
- #: my-calendar-event-manager.php:1065
1085
  msgid "Next Page &raquo;"
1086
  msgstr ""
1087
 
1088
- #: my-calendar-event-manager.php:1082 my-calendar-event-manager.php:1199
1089
  msgid "Delete checked events"
1090
  msgstr ""
1091
 
1092
- #: my-calendar-event-manager.php:1084 my-calendar-event-manager.php:1201
1093
  msgid "Approve checked events"
1094
  msgstr ""
1095
 
1096
- #: my-calendar-event-manager.php:1091 my-calendar-group-manager.php:252
1097
  msgid "Check/Uncheck all"
1098
  msgstr ""
1099
 
1100
- #: my-calendar-event-manager.php:1092 my-calendar-group-manager.php:747
1101
- #: my-calendar-settings.php:399 my-calendar-widgets.php:60
1102
- #: my-calendar-widgets.php:169 my-calendar-widgets.php:679
1103
  msgid "Title"
1104
  msgstr ""
1105
 
1106
- #: my-calendar-event-manager.php:1093 my-calendar-locations.php:289
1107
  msgid "Location"
1108
  msgstr ""
1109
 
1110
- #: my-calendar-event-manager.php:1094 my-calendar-settings.php:356
1111
  msgid "Date/Time"
1112
  msgstr ""
1113
 
1114
- #: my-calendar-event-manager.php:1095 my-calendar-group-manager.php:751
1115
- #: my-calendar-settings.php:402
1116
  msgid "Author"
1117
  msgstr ""
1118
 
1119
- #: my-calendar-event-manager.php:1096 my-calendar-group-manager.php:752
1120
- #: my-calendar-output.php:138 my-calendar-settings.php:403
1121
- #: my-calendar-templates.php:269
1122
  msgid "Category"
1123
  msgstr ""
1124
 
1125
- #: my-calendar-event-manager.php:1114
1126
  msgid "Possible spam"
1127
  msgstr ""
1128
 
1129
- #: my-calendar-event-manager.php:1129
1130
  msgid "Copy"
1131
  msgstr ""
1132
 
1133
- #: my-calendar-event-manager.php:1132 my-calendar-group-manager.php:784
1134
- #: my-calendar-output.php:316
1135
  msgid "Edit Group"
1136
  msgstr ""
1137
 
1138
- #: my-calendar-event-manager.php:1135 my-calendar-group-manager.php:788
1139
  msgid "Not editable."
1140
  msgstr ""
1141
 
1142
- #: my-calendar-event-manager.php:1139
1143
  msgid "Reject"
1144
  msgstr ""
1145
 
1146
- #: my-calendar-event-manager.php:1139
1147
  msgid "Approve"
1148
  msgstr ""
1149
 
1150
- #: my-calendar-event-manager.php:1144
1151
  msgid "Approved"
1152
  msgstr ""
1153
 
1154
- #: my-calendar-event-manager.php:1146
1155
  msgid "Rejected"
1156
  msgstr ""
1157
 
1158
- #: my-calendar-event-manager.php:1148
1159
  msgid "Awaiting Approval"
1160
  msgstr ""
1161
 
1162
- #: my-calendar-event-manager.php:1154
1163
  msgid "Filter by location"
1164
  msgstr ""
1165
 
1166
- #: my-calendar-event-manager.php:1154 my-calendar-event-manager.php:1182
1167
- #: my-calendar-event-manager.php:1191
1168
  msgid "Show only: "
1169
  msgstr ""
1170
 
1171
- #: my-calendar-event-manager.php:1158
1172
- msgid "Recurs:"
1173
  msgstr ""
1174
 
1175
- #: my-calendar-event-manager.php:1166 my-calendar-group-manager.php:801
1176
  msgid "Never"
1177
  msgstr ""
1178
 
1179
- #: my-calendar-event-manager.php:1167 my-calendar-group-manager.php:802
1180
- #: my-calendar-templates.php:174
1181
  msgid "Daily"
1182
  msgstr ""
1183
 
1184
- #: my-calendar-event-manager.php:1167
1185
  msgid "Every %d days"
1186
  msgstr ""
1187
 
1188
- #: my-calendar-event-manager.php:1168 my-calendar-group-manager.php:803
1189
  msgid "Weekdays"
1190
  msgstr ""
1191
 
1192
- #: my-calendar-event-manager.php:1168
1193
  msgid "Every %d weekdays"
1194
  msgstr ""
1195
 
1196
- #: my-calendar-event-manager.php:1169 my-calendar-group-manager.php:804
1197
- #: my-calendar-templates.php:176
1198
  msgid "Weekly"
1199
  msgstr ""
1200
 
1201
- #: my-calendar-event-manager.php:1169
1202
  msgid "Every %d weeks"
1203
  msgstr ""
1204
 
1205
- #: my-calendar-event-manager.php:1170 my-calendar-group-manager.php:805
1206
  msgid "Bi-Weekly"
1207
  msgstr ""
1208
 
1209
- #: my-calendar-event-manager.php:1171 my-calendar-group-manager.php:806
1210
  msgid "Monthly (by date)"
1211
  msgstr ""
1212
 
1213
- #: my-calendar-event-manager.php:1171
1214
  msgid "Every %d months (by date)"
1215
  msgstr ""
1216
 
1217
- #: my-calendar-event-manager.php:1172 my-calendar-group-manager.php:807
1218
  msgid "Monthly (by day)"
1219
  msgstr ""
1220
 
1221
- #: my-calendar-event-manager.php:1173 my-calendar-group-manager.php:808
1222
  msgid "Yearly"
1223
  msgstr ""
1224
 
1225
- #: my-calendar-event-manager.php:1173
1226
  msgid "Every %d years"
1227
  msgstr ""
1228
 
1229
- #: my-calendar-event-manager.php:1177 my-calendar-event-manager.php:1178
1230
  msgid "&ndash; %d Times"
1231
  msgstr ""
1232
 
1233
- #: my-calendar-event-manager.php:1182
1234
  msgid "Filter by author"
1235
  msgstr ""
1236
 
1237
- #: my-calendar-event-manager.php:1191
1238
  msgid "Filter by category"
1239
  msgstr ""
1240
 
1241
- #: my-calendar-event-manager.php:1213
1242
  msgid "There are no events in the database meeting your current criteria."
1243
  msgstr ""
1244
 
1245
- #: my-calendar-event-manager.php:1366
1246
  msgid ""
1247
  "Your event end date must be either after or the same as your event begin date"
1248
  msgstr ""
1249
 
1250
- #: my-calendar-event-manager.php:1369
1251
  msgid ""
1252
  "Your date formatting is correct but one or more of your dates is invalid. "
1253
  "Check for number of days in month and leap year related errors."
1254
  msgstr ""
1255
 
1256
- #: my-calendar-event-manager.php:1379
1257
  msgid ""
1258
  "The time field must either be blank or be entered in the format hh:mm am/pm"
1259
  msgstr ""
1260
 
1261
- #: my-calendar-event-manager.php:1386
1262
  msgid ""
1263
  "The end time field must either be blank or be entered in the format hh:mm am/"
1264
  "pm"
1265
  msgstr ""
1266
 
1267
- #: my-calendar-event-manager.php:1402 my-calendar-group-manager.php:599
1268
  msgid "The event title must be between 1 and 255 characters in length."
1269
  msgstr ""
1270
 
1271
- #: my-calendar-event-manager.php:1409
1272
  msgid "The repetition value must be 0 unless a type of recurrence is selected."
1273
  msgstr ""
1274
 
1275
- #: my-calendar-event-manager.php:1414
1276
  msgid "That event conflicts with a previously scheduled event."
1277
  msgstr ""
1278
 
1279
- #: my-calendar-event-manager.php:1603
1280
  msgid "Editing: "
1281
  msgstr ""
1282
 
1283
- #: my-calendar-event-manager.php:1639 my-calendar-event-manager.php:1652
1284
  msgid "No related events"
1285
  msgstr ""
1286
 
1287
- #: my-calendar-group-manager.php:58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1288
  msgid "Event not updated."
1289
  msgstr ""
1290
 
1291
- #: my-calendar-group-manager.php:84
1292
  msgid "Event not grouped."
1293
  msgstr ""
1294
 
1295
- #: my-calendar-group-manager.php:88
1296
  msgid "Event grouped successfully"
1297
  msgstr ""
1298
 
1299
- #: my-calendar-group-manager.php:103 my-calendar-group-manager.php:309
1300
- #: my-calendar-group-manager.php:514
1301
  msgid "Edit Event Group"
1302
  msgstr ""
1303
 
1304
- #: my-calendar-group-manager.php:106
1305
  msgid "You must provide an event group id in order to edit it"
1306
  msgstr ""
1307
 
1308
- #: my-calendar-group-manager.php:113 my-calendar-group-manager.php:121
1309
  #: my-calendar-group-manager.php:306 my-calendar.php:351
1310
  msgid "Manage Event Groups"
1311
  msgstr ""
1312
 
1313
- #: my-calendar-group-manager.php:114
1314
  msgid ""
1315
  "Grouped events can be edited simultaneously. When you choose a group of "
1316
  "events to edit, the form will be pre-filled with the content applicable to "
@@ -1321,14 +1340,14 @@ msgid ""
1321
  "changes applied. (All grouped events can also be edited individually.)"
1322
  msgstr ""
1323
 
1324
- #: my-calendar-group-manager.php:115
1325
  msgid ""
1326
  "The following fields will never be changed when editing groups: registration "
1327
  "availability, event publication status, spam flagging, event recurrence, "
1328
  "event repetitions, and the start and end dates and times for that event."
1329
  msgstr ""
1330
 
1331
- #: my-calendar-group-manager.php:123
1332
  msgid "Select an event group to edit."
1333
  msgstr ""
1334
 
@@ -1354,155 +1373,155 @@ msgstr ""
1354
  msgid "You must provide a group ID to edit groups"
1355
  msgstr ""
1356
 
1357
- #: my-calendar-group-manager.php:314 my-calendar-group-manager.php:322
1358
- #: my-calendar-group-manager.php:328 my-calendar-group-manager.php:341
1359
- #: my-calendar-group-manager.php:353 my-calendar-group-manager.php:357
1360
  #: my-calendar-group-manager.php:376 my-calendar-group-manager.php:388
1361
- #: my-calendar-group-manager.php:402 my-calendar-group-manager.php:462
1362
- #: my-calendar-group-manager.php:465 my-calendar-group-manager.php:468
1363
- #: my-calendar-group-manager.php:471 my-calendar-group-manager.php:474
1364
- #: my-calendar-group-manager.php:477 my-calendar-group-manager.php:478
1365
- #: my-calendar-group-manager.php:481 my-calendar-group-manager.php:484
1366
- #: my-calendar-group-manager.php:495 my-calendar-group-manager.php:503
1367
  msgid "Fields do not match"
1368
  msgstr ""
1369
 
1370
- #: my-calendar-group-manager.php:322
1371
  msgid "Selected dates are a single multi-day event."
1372
  msgstr ""
1373
 
1374
- #: my-calendar-group-manager.php:399
1375
  msgid "Event Registration Options"
1376
  msgstr ""
1377
 
1378
- #: my-calendar-group-manager.php:721
 
 
 
 
1379
  msgid "Create/Modify Groups"
1380
  msgstr ""
1381
 
1382
- #: my-calendar-group-manager.php:724
1383
  msgid "Grouped Events"
1384
  msgstr ""
1385
 
1386
- #: my-calendar-group-manager.php:725
1387
  msgid "Ungrouped Events"
1388
  msgstr ""
1389
 
1390
- #: my-calendar-group-manager.php:730
1391
  msgid "Check a set of events to group them for mass editing."
1392
  msgstr ""
1393
 
1394
- #: my-calendar-group-manager.php:740 my-calendar-group-manager.php:832
1395
  msgid "Group checked events for mass editing"
1396
  msgstr ""
1397
 
1398
- #: my-calendar-group-manager.php:746
1399
  msgid "Group"
1400
  msgstr ""
1401
 
1402
- #: my-calendar-group-manager.php:748
1403
  msgid "Where"
1404
  msgstr ""
1405
 
1406
- #: my-calendar-group-manager.php:749
1407
  msgid "Starts"
1408
  msgstr ""
1409
 
1410
- #: my-calendar-group-manager.php:750
1411
- msgid "Recurs"
1412
- msgstr ""
1413
-
1414
- #: my-calendar-group-manager.php:786
1415
  msgid "Ungrouped"
1416
  msgstr ""
1417
 
1418
- #: my-calendar-group-manager.php:811
1419
  msgid "Forever"
1420
  msgstr ""
1421
 
1422
- #: my-calendar-group-manager.php:812
1423
  msgid "%d Times"
1424
  msgstr ""
1425
 
1426
- #: my-calendar-group-manager.php:838
1427
  msgid "There are no events in the database!"
1428
  msgstr ""
1429
 
1430
- #: my-calendar-help.php:4
1431
  msgid "How to use My Calendar"
1432
  msgstr ""
1433
 
1434
- #: my-calendar-help.php:10 my-calendar.php:174 my-calendar.php:357
1435
  msgid "My Calendar Help"
1436
  msgstr ""
1437
 
1438
- #: my-calendar-help.php:13
1439
  msgid "Shortcodes"
1440
  msgstr ""
1441
 
1442
- #: my-calendar-help.php:14
1443
  msgid "Icons"
1444
  msgstr ""
1445
 
1446
- #: my-calendar-help.php:15
1447
  msgid "Styles"
1448
  msgstr ""
1449
 
1450
- #: my-calendar-help.php:16
1451
  msgid "Templating"
1452
  msgstr ""
1453
 
1454
- #: my-calendar-help.php:17
1455
  msgid "Support Form"
1456
  msgstr ""
1457
 
1458
- #: my-calendar-help.php:18 my-calendar-help.php:360
1459
  msgid "Helpful Information"
1460
  msgstr ""
1461
 
1462
- #: my-calendar-help.php:26 my-calendar.php:172
1463
  msgid "Getting Started"
1464
  msgstr ""
1465
 
1466
- #: my-calendar-help.php:29
1467
  msgid ""
1468
  "Although the My Calendar plug-in is very complicated in terms of what can be "
1469
  "customized, the basic usage is quite simple."
1470
  msgstr ""
1471
 
1472
- #: my-calendar-help.php:32
1473
  msgid "Add the My Calendar shortcode (<code>[my_calendar]</code>) to a page."
1474
  msgstr ""
1475
 
1476
- #: my-calendar-help.php:33
1477
  msgid ""
1478
  "Add events by clicking on the Add/Edit Events link in the admin sidebar or "
1479
  "on \"Add Events\" in the admin toolbar."
1480
  msgstr ""
1481
 
1482
- #: my-calendar-help.php:34
1483
  msgid "Select your preferred stylesheet in the Styles Editor"
1484
  msgstr ""
1485
 
1486
- #: my-calendar-help.php:37
1487
  msgid ""
1488
  "Read more of the basic help documentation on this page or purchase the My "
1489
  "Calendar User's Guide to customize further -- but the above is all that you "
1490
  "need to do to begin using the calendar."
1491
  msgstr ""
1492
 
1493
- #: my-calendar-help.php:45
1494
  msgid "Shortcode Syntax"
1495
  msgstr ""
1496
 
1497
- #: my-calendar-help.php:48
1498
  msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
1499
  msgstr ""
1500
 
1501
- #: my-calendar-help.php:50
1502
  msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
1503
  msgstr ""
1504
 
1505
- #: my-calendar-help.php:53
1506
  msgid ""
1507
  "This basic shortcode will show the one-week view of the calendar on a post "
1508
  "or page including all categories and the category key, in a list format. The "
@@ -1510,89 +1529,69 @@ msgid ""
1510
  "link to the print format (if enabled) will be shown below."
1511
  msgstr ""
1512
 
1513
- #: my-calendar-help.php:57
1514
  msgid "The shortcode supports these attributes:"
1515
  msgstr ""
1516
 
1517
- #: my-calendar-help.php:60
1518
  msgid ""
1519
  "Names or IDs of categories included in this calendar, comma or pipe "
1520
  "separated."
1521
  msgstr ""
1522
 
1523
- #: my-calendar-help.php:61
1524
  msgid ""
1525
  "Either \"list\" or \"mini\" to show the list view or the mini calendar; "
1526
  "exclude or any other value to show the main grid calendar."
1527
  msgstr ""
1528
 
1529
- #: my-calendar-help.php:62
1530
  msgid ""
1531
  "Comma-separated list of navigational features to display above or below the "
1532
- "calendar. Available: <strong>nav, toggle, jump, print, key, feeds</strong>. "
1533
- "Order listed determines the order displayed. Feed links and print view will "
1534
- "only display if they are enabled on the settings page. All other fields will "
1535
- "appear if specified; the defaults specified in settings will be used if the "
1536
- "attribute is left blank. Use <em>none</em> to hide all navigation elements."
 
1537
  msgstr ""
1538
 
1539
- #: my-calendar-help.php:63
1540
  msgid ""
1541
  "Set to \"week\" to show a one week view or to \"day\" to show a single day "
1542
  "view. Any other value will show a month view. (Day view shows as a list "
1543
  "regardless of format setting.)"
1544
  msgstr ""
1545
 
1546
- #: my-calendar-help.php:64
1547
  msgid "The type of location data to restrict by."
1548
  msgstr ""
1549
 
1550
- #: my-calendar-help.php:65
1551
  msgid "The specific location information to filter to."
1552
  msgstr ""
1553
 
1554
- #: my-calendar-help.php:66
1555
  msgid ""
1556
  "Author or comma-separated list of authors (usernames or IDs) to show events "
1557
  "from."
1558
  msgstr ""
1559
 
1560
- #: my-calendar-help.php:67
1561
  msgid ""
1562
  "Host or comma-separated list of hosts (WordPress usernames or IDs) to show "
1563
  "events from."
1564
  msgstr ""
1565
 
1566
- #: my-calendar-help.php:68
1567
  msgid ""
1568
  "String to give this specific calendar shortcode a unique ID. Use when "
1569
  "showing multiple calendars in a Page or post."
1570
  msgstr ""
1571
 
1572
- #: my-calendar-help.php:69 my-calendar-help.php:70 my-calendar-help.php:71
1573
- #: my-calendar-help.php:72
1574
- msgid "Deprecated"
1575
- msgstr ""
1576
-
1577
- #: my-calendar-help.php:69
1578
- msgid "Use \"key\" in <code>above</code> or <code>below</code>"
1579
- msgstr ""
1580
-
1581
- #: my-calendar-help.php:70
1582
- msgid "Use \"nav\" in <code>above</code> or <code>below</code>"
1583
- msgstr ""
1584
-
1585
- #: my-calendar-help.php:71
1586
- msgid "Use \"jump\" in <code>above</code> or <code>below</code>"
1587
- msgstr ""
1588
-
1589
- #: my-calendar-help.php:72
1590
- msgid "Use \"toggle\" in <code>above</code> or <code>below</code>"
1591
- msgstr ""
1592
-
1593
  #: my-calendar-help.php:75
1594
  msgid ""
1595
- "The main My Calendar short code can be generated from a button in your post "
1596
  "and page editor. The mini calendar can also be accessed and configured as a "
1597
  "widget."
1598
  msgstr ""
@@ -1603,24 +1602,23 @@ msgstr ""
1603
 
1604
  #: my-calendar-help.php:80
1605
  msgid ""
1606
- "This shortcode displays the output of the Upcoming Events widget. The "
1607
- "<code>before</code> and <code>after</code> attributes should be numbers; the "
1608
- "<code>type</code> attribute can be either \"event\" or \"days\", and the "
1609
- "<code>category</code> and <code>author</code> attributes work the same way "
1610
- "as on the main calendar shortcode. Templates work using the template codes "
1611
- "listed below. <code>fallback</code> provides text in case there are no "
1612
- "events meeting your criteria. Order provides a sort order for the events "
1613
- "list &ndash; either ascending (<code>asc</code>) or descending (<code>desc</"
1614
- "code>). <code>show_today</code> is an indicator whether or not to include "
1615
- "today's events in the list. <code>Skip</code> is the number of events to "
1616
- "skip in the upcoming events."
1617
  msgstr ""
1618
 
1619
  #: my-calendar-help.php:84
1620
  msgid ""
1621
- "Predictably enough, this shortcode displays the output of the Today's Events "
1622
- "widget, with four configurable attributes: category, author, template and "
1623
- "fallback text."
1624
  msgstr ""
1625
 
1626
  #: my-calendar-help.php:87
@@ -1641,102 +1639,90 @@ msgstr ""
1641
 
1642
  #: my-calendar-help.php:98
1643
  msgid ""
1644
- "This shortcode produces a list of event locations, either as a list of links "
1645
- "or as a select dropdown form. The <code>show</code> attribute can either be "
1646
- "<code>list</code> or <code>form</code>, <code>type</code> is either "
1647
- "<code>saved</code> (to show items from your stored locations), or "
1648
- "<code>custom</code> (to show the options configured in your user settings). "
1649
- "<code>datatype</code> must be the type of data your limits are choosing "
1650
- "from: <code>name</code> (business name), <code>city</code>, <code>state</"
1651
- "code>, <code>country</code>, <code>zip</code> (postal code), or "
1652
- "<code>region</code>."
1653
  msgstr ""
1654
 
1655
  #: my-calendar-help.php:102
1656
  msgid ""
1657
- "If you want to display a list of locations in your database, use this "
1658
- "shortcode. The <code>datatype</code> is the type of data displayed; all "
1659
- "lists will include a link to the map of that location. In addition to basic "
1660
- "location information as in the above shortcode, you can also use \"hcard\" "
1661
- "to display all available location information."
1662
  msgstr ""
1663
 
1664
  #: my-calendar-help.php:103
1665
  msgid ""
1666
- "Use the <code>template</code> attribute to show your own customized set of "
1667
- "data. The data will be sorted by the <code>datatype</code> value."
1668
  msgstr ""
1669
 
1670
  #: my-calendar-help.php:107
1671
  msgid ""
1672
- "This shortcode produces a list of event categories, either as a list of "
1673
- "links or as a select dropdown form. The <code>show</code> attribute can "
1674
- "either be <code>list</code> or <code>form</code>."
1675
  msgstr ""
1676
 
1677
- #: my-calendar-help.php:115
1678
  msgid "Category Icons"
1679
  msgstr ""
1680
 
1681
- #: my-calendar-help.php:118
1682
  msgid ""
1683
  "My Calendar is designed to manage multiple calendars. The basis for these "
1684
- "calendars are categories; you can easily setup a calendar page which "
1685
- "includes all categories, or you can dedicate separate pages to calendars in "
1686
- "each category. For an example, this might be useful for you in managing the "
1687
- "tour calendars for multiple bands; event calendars for a variety of "
1688
- "locations, etc."
1689
  msgstr ""
1690
 
1691
- #: my-calendar-help.php:121
1692
  msgid ""
1693
- "The pre-installed category icons may not be especially useful for your needs "
1694
- "or design. I'm assuming that you're going to upload your own icons -- all "
1695
- "you need to do is upload them to the plugin's icons folder, and they'll be "
1696
- "available for immediate use, or place them in a folder at \"my-calendar-"
1697
- "custom\" to avoid having them overwritten by upgrades."
1698
- msgstr ""
1699
-
1700
- #: my-calendar-help.php:121
1701
- msgid "Your icons folder is:"
1702
  msgstr ""
1703
 
1704
- #: my-calendar-help.php:121
1705
  msgid "You can alternately place icons in:"
1706
  msgstr ""
1707
 
1708
- #: my-calendar-help.php:130
1709
  msgid "Custom Styles"
1710
  msgstr ""
1711
 
1712
- #: my-calendar-help.php:133
1713
  msgid ""
1714
- "My Calendar comes with four basic stylesheets. My Calendar will retain "
1715
- "changes to these basic stylesheets on upgrade, but if you want to add an "
1716
- "entirely new stylesheet, you may wish to store it in the My Calendar custom "
1717
- "styles directory."
1718
  msgstr ""
1719
 
1720
- #: my-calendar-help.php:136
1721
- msgid "Your stylesheet directory is"
1722
  msgstr ""
1723
 
1724
  #: my-calendar-help.php:137
1725
- msgid "Your custom stylesheets directory is"
1726
- msgstr ""
1727
-
1728
- #: my-calendar-help.php:140
1729
  msgid ""
1730
- "You can also add custom styles to your theme directory to provide print "
1731
- "styles, mobile styles, and tablet styles. <code>mc-print.css</code>, "
1732
- "<code>mc-mobile.css</code>, and <code>mc-tablet.css</code>."
1733
  msgstr ""
1734
 
1735
- #: my-calendar-help.php:148
1736
  msgid "Widget Templating"
1737
  msgstr ""
1738
 
1739
- #: my-calendar-help.php:151
1740
  msgid ""
1741
  "All template tags support two attributes: before=\"value\" and after=\"value"
1742
  "\". The values of the attributes will be placed before and after the output "
@@ -1744,255 +1730,261 @@ msgid ""
1744
  "quotes."
1745
  msgstr ""
1746
 
1747
- #: my-calendar-help.php:154
1748
  msgid ""
1749
  "Date/Time template tags support the \"format\" attribute: format=\"M, Y\", "
1750
  "where the value is a PHP formatted date string. Only <code>dtstart</code> "
1751
  "and <code>dtend</code> include the full date/time information for formatting."
1752
  msgstr ""
1753
 
1754
- #: my-calendar-help.php:157
1755
  msgid "Example:"
1756
  msgstr ""
1757
 
1758
- #: my-calendar-help.php:159 my-calendar.php:198
1759
  msgid "Event Template Tags"
1760
  msgstr ""
1761
 
1762
- #: my-calendar-help.php:162
1763
  msgid "Displays the title of the event."
1764
  msgstr ""
1765
 
1766
- #: my-calendar-help.php:165
1767
  msgid ""
1768
  "Displays title of the event as a link if a URL is present, or the title "
1769
  "alone if no URL is available."
1770
  msgstr ""
1771
 
1772
- #: my-calendar-help.php:168
1773
  msgid "Displays the start time for the event."
1774
  msgstr ""
1775
 
1776
- #: my-calendar-help.php:171
1777
  msgid ""
1778
  "Displays the start time for the event adjusted to the current user's time "
1779
  "zone settings. Returns <code>{time}</code> if user settings are disabled or "
1780
  "if the user has not selected a preferred time zone."
1781
  msgstr ""
1782
 
1783
- #: my-calendar-help.php:174
1784
  msgid ""
1785
  "Displays the end time for the event adjusted to the current user's time zone "
1786
  "settings. Returns <code>{endtime}</code> if user settings are disabled or if "
1787
  "the user has not selected a preferred time zone."
1788
  msgstr ""
1789
 
1790
- #: my-calendar-help.php:177
1791
  msgid "Displays the date on which the event begins."
1792
  msgstr ""
1793
 
1794
- #: my-calendar-help.php:180
1795
  msgid ""
1796
  "Displays the date on which the series of events began (for recurring events)."
1797
  msgstr ""
1798
 
1799
- #: my-calendar-help.php:183
1800
  msgid "Displays the date on which the event ends."
1801
  msgstr ""
1802
 
1803
- #: my-calendar-help.php:186
1804
  msgid "Displays the time at which the event ends."
1805
  msgstr ""
1806
 
1807
- #: my-calendar-help.php:189
1808
  msgid ""
1809
  "Displays the beginning date to the end date for events. Does not show end "
1810
  "date if same as start date."
1811
  msgstr ""
1812
 
1813
- #: my-calendar-help.php:192
1814
  msgid ""
1815
  "Displays the beginning and end times for events. Does not show end time if "
1816
  "same as start or if marked as hidden."
1817
  msgstr ""
1818
 
1819
- #: my-calendar-help.php:195
1820
  msgid "Timestamp for beginning of event."
1821
  msgstr ""
1822
 
1823
- #: my-calendar-help.php:198
1824
  msgid "Timestamp for end of event."
1825
  msgstr ""
1826
 
1827
- #: my-calendar-help.php:201
1828
  msgid ""
1829
  "For multi-day events displays an unordered list of dates and times for "
1830
  "events in this group. Otherwise, beginning date/time."
1831
  msgstr ""
1832
 
1833
- #: my-calendar-help.php:204
1834
  msgid "Displays the WordPress author who posted the event."
1835
  msgstr ""
1836
 
1837
- #: my-calendar-help.php:207
1838
  msgid "Displays the gravatar image for the event author."
1839
  msgstr ""
1840
 
1841
- #: my-calendar-help.php:210
1842
  msgid "Displays the name of the person assigned as host for the event."
1843
  msgstr ""
1844
 
1845
- #: my-calendar-help.php:213
1846
  msgid ""
1847
  "Displays the email address of the person assigned as host for the event."
1848
  msgstr ""
1849
 
1850
- #: my-calendar-help.php:216
1851
  msgid "Displays the gravatar image for the event host."
1852
  msgstr ""
1853
 
1854
- #: my-calendar-help.php:219
1855
  msgid "Displays the short version of the event description."
1856
  msgstr ""
1857
 
1858
- #: my-calendar-help.php:222
1859
  msgid "Displays short description without converting paragraphs."
1860
  msgstr ""
1861
 
1862
- #: my-calendar-help.php:225
1863
  msgid "Displays short description with any HTML stripped out."
1864
  msgstr ""
1865
 
1866
- #: my-calendar-help.php:228
1867
  msgid "Displays the description of the event."
1868
  msgstr ""
1869
 
1870
- #: my-calendar-help.php:231
1871
  msgid "Displays description without converting paragraphs."
1872
  msgstr ""
1873
 
1874
- #: my-calendar-help.php:234
1875
  msgid "Displays description with any HTML stripped out."
1876
  msgstr ""
1877
 
1878
- #: my-calendar-help.php:237
1879
  msgid "Image associated with the event. (HTMl)"
1880
  msgstr ""
1881
 
1882
- #: my-calendar-help.php:240
1883
  msgid "Image associated with the event. (image URL only)"
1884
  msgstr ""
1885
 
1886
- #: my-calendar-help.php:243
1887
  msgid "Displays the URL provided for the event."
1888
  msgstr ""
1889
 
1890
- #: my-calendar-help.php:246
1891
  msgid "Produces the URL to download an iCal formatted record for the event."
1892
  msgstr ""
1893
 
1894
- #: my-calendar-help.php:249
1895
  msgid ""
1896
  "Produces a hyperlink to download an iCal formatted record for the event."
1897
  msgstr ""
1898
 
1899
- #: my-calendar-help.php:252
1900
  msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
1901
  msgstr ""
1902
 
1903
- #: my-calendar-help.php:255
1904
  msgid "Shows the number of repetitions of the event."
1905
  msgstr ""
1906
 
1907
- #: my-calendar-help.php:258
1908
  msgid ""
1909
  "Provides a link to an auto-generated page containing all information on the "
1910
  "given event."
1911
  msgstr ""
1912
 
1913
- #: my-calendar-help.php:258 my-calendar-help.php:261
1914
  msgid "Requires that the site URL has been provided on the Settings page"
1915
  msgstr ""
1916
 
1917
- #: my-calendar-help.php:261
1918
  msgid ""
1919
  "Provides a link to the defined event URL when present, otherwise the "
1920
  "{details} link."
1921
  msgstr ""
1922
 
1923
- #: my-calendar-help.php:264
1924
  msgid ""
1925
  "Displays text indicating whether registration for the event is currently "
1926
  "open or closed; displays nothing if that choice is selected in the event."
1927
  msgstr ""
1928
 
1929
- #: my-calendar-help.php:267
1930
  msgid ""
1931
  "Displays the current status of the event: either \"Published\" or \"Reserved"
1932
  "\" - primary used in email templates."
1933
  msgstr ""
1934
 
1935
- #: my-calendar-help.php:269 my-calendar.php:258
1936
  msgid "Location Template Tags"
1937
  msgstr ""
1938
 
1939
- #: my-calendar-help.php:273
1940
  msgid "Displays the name of the location of the event."
1941
  msgstr ""
1942
 
1943
- #: my-calendar-help.php:276
1944
  msgid "Displays the first line of the site address."
1945
  msgstr ""
1946
 
1947
- #: my-calendar-help.php:279
1948
  msgid "Displays the second line of the site address."
1949
  msgstr ""
1950
 
1951
- #: my-calendar-help.php:282
1952
  msgid "Displays the city for the location."
1953
  msgstr ""
1954
 
1955
- #: my-calendar-help.php:285
1956
  msgid "Displays the state for the location."
1957
  msgstr ""
1958
 
1959
- #: my-calendar-help.php:288
1960
  msgid "Displays the postcode for the location."
1961
  msgstr ""
1962
 
1963
- #: my-calendar-help.php:291
1964
  msgid "Shows the custom region entered for the location."
1965
  msgstr ""
1966
 
1967
- #: my-calendar-help.php:294
1968
  msgid "Displays the country for the event location."
1969
  msgstr ""
1970
 
1971
- #: my-calendar-help.php:297
1972
  msgid "Output the URL for the location link."
1973
  msgstr ""
1974
 
1975
- #: my-calendar-help.php:300
1976
  msgid "Output the stored phone number for the location."
1977
  msgstr ""
1978
 
1979
- #: my-calendar-help.php:303
1980
  msgid ""
1981
  "Output a hyperlink to the location's listed link with default link text."
1982
  msgstr ""
1983
 
1984
- #: my-calendar-help.php:306
1985
  msgid ""
1986
  "Displays the event address in <a href=\"http://microformats.org/wiki/hcard"
1987
  "\">hcard</a> format."
1988
  msgstr ""
1989
 
1990
- #: my-calendar-help.php:309
1991
  msgid ""
1992
  "Displays a link to a Google Map of the event, if sufficient address "
1993
  "information is available. If not, will be empty."
1994
  msgstr ""
1995
 
 
 
 
 
 
 
1996
  #: my-calendar-help.php:311 my-calendar.php:294
1997
  msgid "Category Template Tags"
1998
  msgstr ""
@@ -2062,19 +2054,19 @@ msgid ""
2062
  "gifts are not tax deductible. Thank you!"
2063
  msgstr ""
2064
 
2065
- #: my-calendar-install.php:249
2066
  msgid "My Calendar Default Timezone"
2067
  msgstr ""
2068
 
2069
- #: my-calendar-install.php:294
2070
  msgid "My Calendar Default Location"
2071
  msgstr ""
2072
 
2073
- #: my-calendar-locations.php:43
2074
  msgid "Location added successfully"
2075
  msgstr ""
2076
 
2077
- #: my-calendar-locations.php:45
2078
  msgid "Location could not be added to database"
2079
  msgstr ""
2080
 
@@ -2144,265 +2136,261 @@ msgid ""
2144
  "locations into event records."
2145
  msgstr ""
2146
 
2147
- #: my-calendar-output.php:187 my-calendar-output.php:311
2148
  msgid "Close"
2149
  msgstr ""
2150
 
2151
- #: my-calendar-output.php:200
2152
  msgid "(%s in your time zone)"
2153
  msgstr ""
2154
 
2155
- #: my-calendar-output.php:206
2156
  msgid "Not Applicable"
2157
  msgstr ""
2158
 
2159
- #: my-calendar-output.php:221
2160
  msgid "Posted by"
2161
  msgstr ""
2162
 
2163
- #: my-calendar-output.php:229 my-calendar-templates.php:273
2164
  msgid "Details about"
2165
  msgstr ""
2166
 
2167
- #: my-calendar-output.php:256 my-calendar-templates.php:220
2168
  msgid "iCal"
2169
  msgstr ""
2170
 
2171
- #: my-calendar-output.php:291
2172
  msgid ""
2173
  "This class is part of a series. You must register for the first event in "
2174
  "this series to attend."
2175
  msgstr ""
2176
 
2177
- #: my-calendar-output.php:296
2178
  msgid "View full calendar"
2179
  msgstr ""
2180
 
2181
- #: my-calendar-output.php:333
2182
  msgid "Edit This Date"
2183
  msgstr ""
2184
 
2185
- #: my-calendar-output.php:334
2186
  msgid "Edit All"
2187
  msgstr ""
2188
 
2189
- #: my-calendar-output.php:335
2190
  msgid "Delete This Date"
2191
  msgstr ""
2192
 
2193
- #: my-calendar-output.php:336
2194
  msgid "Delete All"
2195
  msgstr ""
2196
 
2197
- #: my-calendar-output.php:423
2198
  msgid "Go"
2199
  msgstr ""
2200
 
2201
- #: my-calendar-output.php:452
2202
  msgid "Calendar: Print View"
2203
  msgstr ""
2204
 
2205
- #: my-calendar-output.php:467
2206
  msgid "Return to site"
2207
  msgstr ""
2208
 
2209
- #: my-calendar-output.php:480
2210
  msgid "View as Grid"
2211
  msgstr ""
2212
 
2213
- #: my-calendar-output.php:484
2214
  msgid "View as List"
2215
  msgstr ""
2216
 
2217
- #: my-calendar-output.php:577
2218
  msgid " and %d other event"
2219
  msgstr ""
2220
 
2221
- #: my-calendar-output.php:579
2222
  msgid " and %d other events"
2223
  msgstr ""
2224
 
2225
- #: my-calendar-output.php:587
2226
  msgid "Event search results for &ldquo;%1$s&rdquo;"
2227
  msgstr ""
2228
 
2229
- #: my-calendar-output.php:659
2230
  msgid "Sorry, your search produced no results."
2231
  msgstr ""
2232
 
2233
- #: my-calendar-output.php:697
2234
  msgid ""
2235
  "<strong>Admin Notice:</strong> The <code>showkey</code>, <code>shownav</"
2236
  "code>, <code>showjump</code>, and <code>toggle</code> shortcode attributes "
2237
  "have been deprecated. Use <code>above</code> and <code>below</code> instead."
2238
  msgstr ""
2239
 
2240
- #: my-calendar-output.php:738
2241
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
2242
  msgstr ""
2243
 
2244
- #: my-calendar-output.php:739
2245
  msgid "<abbr title=\"Monday\">Mon</abbr>"
2246
  msgstr ""
2247
 
2248
- #: my-calendar-output.php:740
2249
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
2250
  msgstr ""
2251
 
2252
- #: my-calendar-output.php:741
2253
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
2254
  msgstr ""
2255
 
2256
- #: my-calendar-output.php:742
2257
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
2258
  msgstr ""
2259
 
2260
- #: my-calendar-output.php:743
2261
  msgid "<abbr title=\"Friday\">Fri</abbr>"
2262
  msgstr ""
2263
 
2264
- #: my-calendar-output.php:744
2265
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
2266
  msgstr ""
2267
 
2268
- #: my-calendar-output.php:749
2269
  msgid "<abbr title=\"Sunday\">S</abbr>"
2270
  msgstr ""
2271
 
2272
- #: my-calendar-output.php:750
2273
  msgid "<abbr title=\"Monday\">M</abbr>"
2274
  msgstr ""
2275
 
2276
- #: my-calendar-output.php:751
2277
  msgid "<abbr title=\"Tuesday\">T</abbr>"
2278
  msgstr ""
2279
 
2280
- #: my-calendar-output.php:752
2281
  msgid "<abbr title=\"Wednesday\">W</abbr>"
2282
  msgstr ""
2283
 
2284
- #: my-calendar-output.php:753
2285
  msgid "<abbr title=\"Thursday\">T</abbr>"
2286
  msgstr ""
2287
 
2288
- #: my-calendar-output.php:754
2289
  msgid "<abbr title=\"Friday\">F</abbr>"
2290
  msgstr ""
2291
 
2292
- #: my-calendar-output.php:755
2293
  msgid "<abbr title=\"Saturday\">S</abbr>"
2294
  msgstr ""
2295
 
2296
- #: my-calendar-output.php:861
2297
  msgid "Print View"
2298
  msgstr ""
2299
 
2300
- #: my-calendar-output.php:967
2301
  msgid "No events scheduled for today!"
2302
  msgstr ""
2303
 
2304
- #: my-calendar-output.php:983
2305
  msgid "and"
2306
  msgstr ""
2307
 
2308
- #: my-calendar-output.php:997
2309
  msgid "Events in"
2310
  msgstr ""
2311
 
2312
- #: my-calendar-output.php:1029
2313
  msgid "There are no events scheduled during this period."
2314
  msgstr ""
2315
 
2316
- #: my-calendar-output.php:1140
2317
  msgid ""
2318
  "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
2319
  msgstr ""
2320
 
2321
- #: my-calendar-output.php:1160
2322
  msgid "Category Key"
2323
  msgstr ""
2324
 
2325
- #: my-calendar-output.php:1183
2326
  msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
2327
  msgstr ""
2328
 
2329
- #: my-calendar-output.php:1184
2330
  msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
2331
  msgstr ""
2332
 
2333
- #: my-calendar-output.php:1209
2334
  msgid "Next events &raquo;"
2335
  msgstr ""
2336
 
2337
- #: my-calendar-output.php:1235 my-calendar-output.php:1279
2338
  msgid "Week of "
2339
  msgstr ""
2340
 
2341
- #: my-calendar-output.php:1253
2342
  msgid "&laquo; Previous events"
2343
  msgstr ""
2344
 
2345
- #: my-calendar-output.php:1305
2346
  msgid "(select to include)"
2347
  msgstr ""
2348
 
2349
- #: my-calendar-output.php:1329 my-calendar-output.php:1332
2350
  msgid "All Categories"
2351
  msgstr ""
2352
 
2353
- #: my-calendar-output.php:1330
2354
  msgid "Categories"
2355
  msgstr ""
2356
 
2357
- #: my-calendar-output.php:1351 my-calendar-output.php:1561
2358
  msgid "Submit"
2359
  msgstr ""
2360
 
2361
- #: my-calendar-output.php:1452
2362
- msgid "Search events:"
2363
- msgstr ""
2364
-
2365
- #: my-calendar-output.php:1454
2366
  msgid "Search Events"
2367
  msgstr ""
2368
 
2369
- #: my-calendar-output.php:1502 my-calendar-output.php:1523
2370
  msgid "Show all"
2371
  msgstr ""
2372
 
2373
- #: my-calendar-output.php:1521
2374
  msgid "Show events in:"
2375
  msgstr ""
2376
 
2377
- #: my-calendar-settings.php:58
2378
  msgid "Categories imported successfully."
2379
  msgstr ""
2380
 
2381
- #: my-calendar-settings.php:58
2382
  msgid "Categories not imported."
2383
  msgstr ""
2384
 
2385
- #: my-calendar-settings.php:59
2386
  msgid "Events imported successfully."
2387
  msgstr ""
2388
 
2389
- #: my-calendar-settings.php:59
2390
  msgid "Events not imported."
2391
  msgstr ""
2392
 
2393
- #: my-calendar-settings.php:84
2394
  msgid "Dropping occurrences database table"
2395
  msgstr ""
2396
 
2397
- #: my-calendar-settings.php:87
2398
  msgid "Reinstalling occurrences database table."
2399
  msgstr ""
2400
 
2401
- #: my-calendar-settings.php:90
2402
  msgid "Generating event occurrences."
2403
  msgstr ""
2404
 
2405
- #: my-calendar-settings.php:92
2406
  msgid "Event generation completed."
2407
  msgstr ""
2408
 
@@ -2410,139 +2398,135 @@ msgstr ""
2410
  msgid "My Calendar Cache cleared"
2411
  msgstr ""
2412
 
2413
- #: my-calendar-settings.php:113
2414
  msgid "My Calendar Management Settings saved"
2415
  msgstr ""
2416
 
2417
- #: my-calendar-settings.php:118 my-calendar-settings.php:797
2418
  msgid "Add Events"
2419
  msgstr ""
2420
 
2421
- #: my-calendar-settings.php:119 my-calendar-settings.php:798
2422
  msgid "Approve Events"
2423
  msgstr ""
2424
 
2425
- #: my-calendar-settings.php:121 my-calendar-settings.php:800
2426
  msgid "Edit Categories"
2427
  msgstr ""
2428
 
2429
- #: my-calendar-settings.php:122 my-calendar-settings.php:801
2430
  msgid "Edit Locations"
2431
  msgstr ""
2432
 
2433
- #: my-calendar-settings.php:123 my-calendar-settings.php:802
2434
  msgid "Edit Styles"
2435
  msgstr ""
2436
 
2437
- #: my-calendar-settings.php:124 my-calendar-settings.php:803
2438
  msgid "Edit Behaviors"
2439
  msgstr ""
2440
 
2441
- #: my-calendar-settings.php:125 my-calendar-settings.php:804
2442
  msgid "Edit Templates"
2443
  msgstr ""
2444
 
2445
- #: my-calendar-settings.php:126 my-calendar-settings.php:805
2446
  msgid "Edit Settings"
2447
  msgstr ""
2448
 
2449
- #: my-calendar-settings.php:127 my-calendar-settings.php:806
2450
  msgid "View Help"
2451
  msgstr ""
2452
 
2453
- #: my-calendar-settings.php:141
2454
  msgid "My Calendar Permissions Updated"
2455
  msgstr ""
2456
 
2457
- #: my-calendar-settings.php:188
2458
- msgid "Visit your <a href=\"%s\">permalinks settings</a> and re-save them."
2459
- msgstr ""
2460
-
2461
- #: my-calendar-settings.php:189
2462
  msgid "Output Settings saved"
2463
  msgstr ""
2464
 
2465
- #: my-calendar-settings.php:197
2466
  msgid "Date/Time Format Settings saved"
2467
  msgstr ""
2468
 
2469
- #: my-calendar-settings.php:215
2470
  msgid "Input Settings saved"
2471
  msgstr ""
2472
 
2473
- #: my-calendar-settings.php:223
2474
  msgid "Multisite settings saved"
2475
  msgstr ""
2476
 
2477
- #: my-calendar-settings.php:252
2478
  msgid "Custom text settings saved"
2479
  msgstr ""
2480
 
2481
- #: my-calendar-settings.php:268
2482
  msgid "Email notice settings saved"
2483
  msgstr ""
2484
 
2485
- #: my-calendar-settings.php:282
2486
  msgid "User custom settings saved"
2487
  msgstr ""
2488
 
2489
- #: my-calendar-settings.php:318
2490
  msgid "My Calendar Options"
2491
  msgstr ""
2492
 
2493
- #: my-calendar-settings.php:350
2494
  msgid "My Calendar Settings"
2495
  msgstr ""
2496
 
2497
- #: my-calendar-settings.php:353
2498
  msgid "Management"
2499
  msgstr ""
2500
 
2501
- #: my-calendar-settings.php:354
2502
  msgid "Customizable Text"
2503
  msgstr ""
2504
 
2505
- #: my-calendar-settings.php:355
2506
  msgid "Output"
2507
  msgstr ""
2508
 
2509
- #: my-calendar-settings.php:357
2510
  msgid "Input"
2511
  msgstr ""
2512
 
2513
- #: my-calendar-settings.php:359
2514
  msgid "Multi-site"
2515
  msgstr ""
2516
 
2517
- #: my-calendar-settings.php:361
2518
  msgid "Permissions"
2519
  msgstr ""
2520
 
2521
- #: my-calendar-settings.php:362
2522
  msgid "Email Notifications"
2523
  msgstr ""
2524
 
2525
- #: my-calendar-settings.php:363
2526
  msgid "Individual Users"
2527
  msgstr ""
2528
 
2529
- #: my-calendar-settings.php:371
2530
  msgid "My Calendar Management"
2531
  msgstr ""
2532
 
2533
- #: my-calendar-settings.php:377
2534
  msgid "Calendar Options: Management"
2535
  msgstr ""
2536
 
2537
- #: my-calendar-settings.php:379
2538
  msgid "Get data (events, categories and locations) from a remote database."
2539
  msgstr ""
2540
 
2541
- #: my-calendar-settings.php:381
2542
  msgid "Add this code to your theme's <code>functions.php</code> file:"
2543
  msgstr ""
2544
 
2545
- #: my-calendar-settings.php:386
2546
  msgid ""
2547
  "You will need to allow remote connections from this site to the site hosting "
2548
  "your My Calendar events. Replace the above placeholders with the host-site "
@@ -2551,677 +2535,624 @@ msgid ""
2551
  "installation."
2552
  msgstr ""
2553
 
2554
- #: my-calendar-settings.php:389
2555
  msgid "Enable approval options."
2556
  msgstr ""
2557
 
2558
- #: my-calendar-settings.php:390
2559
- msgid "Enable caching."
2560
- msgstr ""
2561
-
2562
- #: my-calendar-settings.php:390
2563
- msgid "<em>Cannot use caching while accessing a remote database.</em>"
2564
- msgstr ""
2565
-
2566
- #: my-calendar-settings.php:392
2567
  msgid ""
2568
  "Clear current cache. (Necessary if you edit shortcodes to change displayed "
2569
  "categories, for example.)"
2570
  msgstr ""
2571
 
2572
- #: my-calendar-settings.php:396
2573
  msgid "Default Sort order for Admin Events List"
2574
  msgstr ""
2575
 
2576
- #: my-calendar-settings.php:398
2577
  msgid "Event ID"
2578
  msgstr ""
2579
 
2580
- #: my-calendar-settings.php:400
2581
  msgid "Description"
2582
  msgstr ""
2583
 
2584
- #: my-calendar-settings.php:401
2585
  msgid "Start Date"
2586
  msgstr ""
2587
 
2588
- #: my-calendar-settings.php:409
2589
  msgid "Currently editing my local calendar"
2590
  msgstr ""
2591
 
2592
- #: my-calendar-settings.php:412
2593
  msgid "Currently editing the network calendar"
2594
  msgstr ""
2595
 
2596
- #: my-calendar-settings.php:416
2597
  msgid ""
2598
  "You are currently working in the primary site for this network; your local "
2599
  "calendar is also the global table."
2600
  msgstr ""
2601
 
2602
- #: my-calendar-settings.php:419
2603
  msgid "Re-generate event occurrences table."
2604
  msgstr ""
2605
 
2606
- #: my-calendar-settings.php:424
2607
  msgid "Save Management Settings"
2608
  msgstr ""
2609
 
2610
- #: my-calendar-settings.php:428
2611
  msgid "My Calendar management settings are only available to administrators."
2612
  msgstr ""
2613
 
2614
- #: my-calendar-settings.php:436
2615
  msgid "Calendar Text Settings"
2616
  msgstr ""
2617
 
2618
- #: my-calendar-settings.php:441
2619
  msgid "Calendar Options: Customizable Text Fields"
2620
  msgstr ""
2621
 
2622
- #: my-calendar-settings.php:443
2623
  msgid "Label for all-day events"
2624
  msgstr ""
2625
 
2626
- #: my-calendar-settings.php:444
2627
  msgid "Previous events link"
2628
  msgstr ""
2629
 
2630
- #: my-calendar-settings.php:444
2631
  msgid "Previous Events"
2632
  msgstr ""
2633
 
2634
- #: my-calendar-settings.php:444 my-calendar-settings.php:445
2635
  msgid "Use <code>{date}</code> to display the appropriate date in navigation."
2636
  msgstr ""
2637
 
2638
- #: my-calendar-settings.php:445
2639
  msgid "Next events link"
2640
  msgstr ""
2641
 
2642
- #: my-calendar-settings.php:445
2643
  msgid "Next Events"
2644
  msgstr ""
2645
 
2646
- #: my-calendar-settings.php:446
2647
  msgid "If events are open"
2648
  msgstr ""
2649
 
2650
- #: my-calendar-settings.php:446
2651
  msgid "Registration is open"
2652
  msgstr ""
2653
 
2654
- #: my-calendar-settings.php:447
2655
  msgid "If events are closed"
2656
  msgstr ""
2657
 
2658
- #: my-calendar-settings.php:447
2659
  msgid "Registration is closed"
2660
  msgstr ""
2661
 
2662
- #: my-calendar-settings.php:448
2663
  msgid "Week view caption:"
2664
  msgstr ""
2665
 
2666
- #: my-calendar-settings.php:448
2667
  msgid "Available tag: <code>{date format=\"\"}</code>"
2668
  msgstr ""
2669
 
2670
- #: my-calendar-settings.php:449
2671
  msgid "Extended caption:"
2672
  msgstr ""
2673
 
2674
- #: my-calendar-settings.php:449
2675
  msgid ""
2676
- "The calendar caption shows month and year in list and grid formats. This "
2677
- "text is displayed after the month/year."
2678
  msgstr ""
2679
 
2680
- #: my-calendar-settings.php:451
2681
  msgid "Event title template"
2682
  msgstr ""
2683
 
2684
- #: my-calendar-settings.php:452 my-calendar-settings.php:462
2685
- #: my-calendar-settings.php:467
2686
  msgid "All template tags are available."
2687
  msgstr ""
2688
 
2689
- #: my-calendar-settings.php:455
2690
  msgid "Event details link text"
2691
  msgstr ""
2692
 
2693
- #: my-calendar-settings.php:457
2694
  msgid ""
2695
- "Available tags: <code>{title}</code>, <code>{location}</code>, <code>{color}"
2696
- "</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
2697
  msgstr ""
2698
 
2699
- #: my-calendar-settings.php:460
2700
  msgid "Event URL link text"
2701
  msgstr ""
2702
 
2703
- #: my-calendar-settings.php:462 my-calendar-settings.php:467
2704
  msgid "Templating Help"
2705
  msgstr ""
2706
 
2707
- #: my-calendar-settings.php:465
2708
- msgid "Title tag template (event details pages)"
2709
  msgstr ""
2710
 
2711
- #: my-calendar-settings.php:472
2712
- msgid "Save Custom Text Settings"
2713
  msgstr ""
2714
 
2715
- #: my-calendar-settings.php:481
2716
- msgid "Calendar Output Settings"
2717
  msgstr ""
2718
 
2719
- #: my-calendar-settings.php:485 my-calendar-settings.php:665
2720
- msgid "Save Output Settings"
2721
  msgstr ""
2722
 
2723
- #: my-calendar-settings.php:487
2724
  msgid "Calendar Options: Customize the Output of your Calendar"
2725
  msgstr ""
2726
 
2727
- #: my-calendar-settings.php:489
2728
  msgid "Calendar Link Targets"
2729
  msgstr ""
2730
 
2731
- #: my-calendar-settings.php:492
2732
- msgid ""
2733
- "Target <abbr title=\"Uniform resource locator\">URL</abbr> for event details "
2734
- "links:"
2735
  msgstr ""
2736
 
2737
- #: my-calendar-settings.php:493
2738
  msgid ""
2739
  "Can be any Page or Post which includes the <code>[my_calendar]</code> "
2740
  "shortcode."
2741
  msgstr ""
2742
 
2743
- #: my-calendar-settings.php:496
2744
- msgid ""
2745
- "Target <abbr title=\"Uniform resource locator\">URL</abbr> for single day's "
2746
- "timeline links."
2747
- msgstr ""
2748
-
2749
- #: my-calendar-settings.php:497
2750
- msgid ""
2751
- "Can be any Page or Post with the <code>[my_calendar time=\"day\"]</code> "
2752
- "shortcode."
2753
- msgstr ""
2754
-
2755
- #: my-calendar-settings.php:500
2756
  msgid ""
2757
  "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar "
2758
- "in-page anchors:"
2759
- msgstr ""
2760
-
2761
- #: my-calendar-settings.php:501
2762
- msgid ""
2763
- "Can be any Page or Post with the <code>[my_calendar]</code> shortcode using "
2764
- "format selected below"
2765
  msgstr ""
2766
 
2767
- #: my-calendar-settings.php:503
2768
  msgid "Modify date and event link behaviors:"
2769
  msgstr ""
2770
 
2771
- #: my-calendar-settings.php:505
2772
  msgid "Open calendar links to event details URL"
2773
  msgstr ""
2774
 
2775
- #: my-calendar-settings.php:505
2776
  msgid "Replaces pop-up in grid view."
2777
  msgstr ""
2778
 
2779
- #: my-calendar-settings.php:508
2780
  msgid "Mini calendar widget date links to:"
2781
  msgstr ""
2782
 
2783
- #: my-calendar-settings.php:509
2784
  msgid "jQuery pop-up view"
2785
  msgstr ""
2786
 
2787
- #: my-calendar-settings.php:510
2788
  msgid "daily view page (above)"
2789
  msgstr ""
2790
 
2791
- #: my-calendar-settings.php:511
2792
  msgid "in-page anchor on main calendar page (list)"
2793
  msgstr ""
2794
 
2795
- #: my-calendar-settings.php:512
2796
  msgid "in-page anchor on main calendar page (grid)"
2797
  msgstr ""
2798
 
2799
- #: my-calendar-settings.php:514
2800
  msgid "Replaces pop-up in mini calendar"
2801
  msgstr ""
2802
 
2803
- #: my-calendar-settings.php:516
2804
- msgid "Show links to alternate formats:"
2805
- msgstr ""
2806
-
2807
- #: my-calendar-settings.php:518
2808
- msgid "Show link to My Calendar RSS feed."
2809
- msgstr ""
2810
-
2811
- #: my-calendar-settings.php:518
2812
- msgid "RSS feed shows recently added events."
2813
- msgstr ""
2814
-
2815
- #: my-calendar-settings.php:521
2816
- msgid "Show link to iCal format download."
2817
- msgstr ""
2818
-
2819
- #: my-calendar-settings.php:521
2820
- msgid "iCal outputs events occurring in the current calendar month."
2821
- msgstr ""
2822
-
2823
- #: my-calendar-settings.php:521
2824
  msgid "iCal times are UTC"
2825
  msgstr ""
2826
 
2827
- #: my-calendar-settings.php:524
2828
- msgid "Show link to print-formatted view of calendar"
2829
- msgstr ""
2830
-
2831
- #: my-calendar-settings.php:531
2832
  msgid "General Layout Options"
2833
  msgstr ""
2834
 
2835
- #: my-calendar-settings.php:532
2836
  msgid ""
2837
  "Comma-separated list to indicate what order the navigational elements of My "
2838
  "Calendar should appear in."
2839
  msgstr ""
2840
 
2841
- #: my-calendar-settings.php:535
2842
  msgid "Show above the calendar:"
2843
  msgstr ""
2844
 
2845
- #: my-calendar-settings.php:537
2846
  msgid "Default: <code>nav,toggle,jump,print,timeframe</code>"
2847
  msgstr ""
2848
 
2849
- #: my-calendar-settings.php:540
2850
  msgid "Show below the calendar:"
2851
  msgstr ""
2852
 
2853
- #: my-calendar-settings.php:542
2854
  msgid "Default: <code>key,feeds</code>"
2855
  msgstr ""
2856
 
2857
- #: my-calendar-settings.php:549
2858
  msgid "Grid Layout Options"
2859
  msgstr ""
2860
 
2861
- #: my-calendar-settings.php:552
2862
  msgid "Show Weekends on Calendar"
2863
  msgstr ""
2864
 
2865
- #: my-calendar-settings.php:555
2866
  msgid "Switch to list view on mobile devices"
2867
  msgstr ""
2868
 
2869
- #: my-calendar-settings.php:562
2870
  msgid "List Layout Options"
2871
  msgstr ""
2872
 
2873
- #: my-calendar-settings.php:565
2874
  msgid "How many months of events to show at a time:"
2875
  msgstr ""
2876
 
2877
- #: my-calendar-settings.php:568
2878
  msgid ""
2879
  "Show the first event's title and the number of events that day next to the "
2880
  "date."
2881
  msgstr ""
2882
 
2883
- #: my-calendar-settings.php:575
2884
- msgid "Event Details Options"
2885
  msgstr ""
2886
 
2887
- #: my-calendar-settings.php:576
2888
  msgid ""
2889
  "The checked items will be shown in your event details view. Does not apply "
2890
  "if you are using a custom template"
2891
  msgstr ""
2892
 
2893
- #: my-calendar-settings.php:579
2894
- msgid "Show author's name"
2895
  msgstr ""
2896
 
2897
- #: my-calendar-settings.php:582
2898
- msgid "Show link to single event iCal download"
2899
  msgstr ""
2900
 
2901
- #: my-calendar-settings.php:585
2902
- msgid "Show link to submit event to Google Calendar"
2903
  msgstr ""
2904
 
2905
- #: my-calendar-settings.php:588
2906
- msgid "Show category icons"
2907
  msgstr ""
2908
 
2909
- #: my-calendar-settings.php:591
2910
- msgid "Show Link to Google Map"
2911
  msgstr ""
2912
 
2913
- #: my-calendar-settings.php:594
2914
- msgid "Show Event Address"
2915
  msgstr ""
2916
 
2917
- #: my-calendar-settings.php:597
2918
- msgid "Show short description"
2919
  msgstr ""
2920
 
2921
- #: my-calendar-settings.php:600
2922
- msgid "Show full description"
2923
  msgstr ""
2924
 
2925
- #: my-calendar-settings.php:603
2926
  msgid "Process WordPress shortcodes in descriptions"
2927
  msgstr ""
2928
 
2929
- #: my-calendar-settings.php:606
2930
- msgid "Show link to single-event details (requires <a href='#mc_uri'>URL</a>)"
2931
  msgstr ""
2932
 
2933
- #: my-calendar-settings.php:609
2934
- msgid "Show external link"
2935
  msgstr ""
2936
 
2937
- #: my-calendar-settings.php:612
2938
- msgid "Show availability status"
2939
  msgstr ""
2940
 
2941
- #: my-calendar-settings.php:615
2942
  msgid "Event links expire after event passes."
2943
  msgstr ""
2944
 
2945
- #: my-calendar-settings.php:620
2946
- msgid "Event Display Options"
2947
  msgstr ""
2948
 
2949
- #: my-calendar-settings.php:623
2950
- msgid "No category colors with event titles."
2951
  msgstr ""
2952
 
2953
- #: my-calendar-settings.php:624
2954
- msgid "Event titles are category colors."
2955
  msgstr ""
2956
 
2957
- #: my-calendar-settings.php:625
2958
- msgid "Event titles have category color as background."
2959
  msgstr ""
2960
 
2961
- #: my-calendar-settings.php:628
2962
- msgid "Ensure best contrast for category color usage."
2963
  msgstr ""
2964
 
2965
- #: my-calendar-settings.php:634
2966
  msgid "Event Scheduling Defaults"
2967
  msgstr ""
2968
 
2969
- #: my-calendar-settings.php:637
2970
  msgid ""
2971
  "Default setting for event input: If a recurring event is scheduled for a "
2972
  "date which doesn't exist (such as the 5th Wednesday in February), move it "
2973
  "back one week."
2974
  msgstr ""
2975
 
2976
- #: my-calendar-settings.php:640
2977
  msgid "Holiday Category"
2978
  msgstr ""
2979
 
2980
- #: my-calendar-settings.php:642
2981
  msgid "None"
2982
  msgstr ""
2983
 
2984
- #: my-calendar-settings.php:658
2985
  msgid ""
2986
  "Default setting for event input: If an event coincides with an event in the "
2987
  "designated \"Holiday\" category, do not show the event."
2988
  msgstr ""
2989
 
2990
- #: my-calendar-settings.php:674
 
 
 
 
2991
  msgid "Calendar Time Formats"
2992
  msgstr ""
2993
 
2994
- #: my-calendar-settings.php:679
2995
  msgid "Set default date/time formats"
2996
  msgstr ""
2997
 
2998
- #: my-calendar-settings.php:683
2999
  msgid "Month format (calendar headings)"
3000
  msgstr ""
3001
 
3002
- #: my-calendar-settings.php:683 my-calendar-settings.php:685
3003
- #: my-calendar-settings.php:688 my-calendar-settings.php:691
3004
  msgid "Now:"
3005
  msgstr ""
3006
 
3007
- #: my-calendar-settings.php:685
3008
  msgid "Time format"
3009
  msgstr ""
3010
 
3011
- #: my-calendar-settings.php:688
3012
  msgid "Date in grid mode, week view"
3013
  msgstr ""
3014
 
3015
- #: my-calendar-settings.php:691
3016
  msgid "Date Format in other views"
3017
  msgstr ""
3018
 
3019
- #: my-calendar-settings.php:694
3020
  msgid ""
3021
  "Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP "
3022
  "<code>date()</code> function</a>. Save options to update sample output."
3023
  msgstr ""
3024
 
3025
- #: my-calendar-settings.php:699
3026
  msgid "Save Date/Time Settings"
3027
  msgstr ""
3028
 
3029
- #: my-calendar-settings.php:709
3030
  msgid "Calendar Input Settings"
3031
  msgstr ""
3032
 
3033
- #: my-calendar-settings.php:714
3034
  msgid ""
3035
  "Select which input fields will be available when adding or editing events."
3036
  msgstr ""
3037
 
3038
- #: my-calendar-settings.php:719 my-calendar.php:389
3039
  msgid "Event Location Dropdown Menu"
3040
  msgstr ""
3041
 
3042
- #: my-calendar-settings.php:719 my-calendar.php:389
3043
  msgid "Event Short Description field"
3044
  msgstr ""
3045
 
3046
- #: my-calendar-settings.php:719 my-calendar.php:389
3047
  msgid "Event Description Field"
3048
  msgstr ""
3049
 
3050
- #: my-calendar-settings.php:719 my-calendar.php:389
3051
  msgid "Event Category field"
3052
  msgstr ""
3053
 
3054
- #: my-calendar-settings.php:719 my-calendar.php:389
3055
  msgid "Event Image field"
3056
  msgstr ""
3057
 
3058
- #: my-calendar-settings.php:719 my-calendar.php:389
3059
  msgid "Event Link field"
3060
  msgstr ""
3061
 
3062
- #: my-calendar-settings.php:719 my-calendar.php:389
3063
  msgid "Event Recurrence Options"
3064
  msgstr ""
3065
 
3066
- #: my-calendar-settings.php:719 my-calendar.php:389
3067
  msgid "Event Registration options"
3068
  msgstr ""
3069
 
3070
- #: my-calendar-settings.php:719 my-calendar.php:389
3071
  msgid "Event Location fields"
3072
  msgstr ""
3073
 
3074
- #: my-calendar-settings.php:719 my-calendar.php:389
3075
  msgid "Use HTML Editor in Event Description Field"
3076
  msgstr ""
3077
 
3078
- #: my-calendar-settings.php:719 my-calendar.php:389
3079
  msgid "Set Special Scheduling options"
3080
  msgstr ""
3081
 
3082
- #: my-calendar-settings.php:732
3083
  msgid "Administrators see all input options"
3084
  msgstr ""
3085
 
3086
- #: my-calendar-settings.php:737
3087
  msgid "Save Input Settings"
3088
  msgstr ""
3089
 
3090
- #: my-calendar-settings.php:747
3091
  msgid "Multisite Settings (Network Administrators only)"
3092
  msgstr ""
3093
 
3094
- #: my-calendar-settings.php:749
3095
- msgid "Multisite support is a beta feature - use with caution."
3096
- msgstr ""
3097
-
3098
- #: my-calendar-settings.php:754
3099
  msgid "Settings for WP MultiSite configurations"
3100
  msgstr ""
3101
 
3102
- #: my-calendar-settings.php:755
3103
  msgid ""
3104
  "The central calendar is the calendar associated with the primary site in "
3105
  "your WordPress Multisite network."
3106
  msgstr ""
3107
 
3108
- #: my-calendar-settings.php:757
3109
  msgid "Site owners may only post to their local calendar"
3110
  msgstr ""
3111
 
3112
- #: my-calendar-settings.php:758
3113
  msgid "Site owners may only post to the central calendar"
3114
  msgstr ""
3115
 
3116
- #: my-calendar-settings.php:759
3117
  msgid "Site owners may manage either calendar"
3118
  msgstr ""
3119
 
3120
- #: my-calendar-settings.php:761
3121
  msgid ""
3122
  "Changes only effect input permissions. Public-facing calendars will be "
3123
  "unchanged."
3124
  msgstr ""
3125
 
3126
- #: my-calendar-settings.php:763
3127
  msgid "Sub-site calendars show events from their local calendar."
3128
  msgstr ""
3129
 
3130
- #: my-calendar-settings.php:764
3131
  msgid "Sub-site calendars show events from the central calendar."
3132
  msgstr ""
3133
 
3134
- #: my-calendar-settings.php:768
3135
  msgid "Save Multisite Settings"
3136
  msgstr ""
3137
 
3138
- #: my-calendar-settings.php:778
3139
  msgid "My Calendar Permissions"
3140
  msgstr ""
3141
 
3142
- #: my-calendar-settings.php:785
3143
  msgid "Calendar Options: Permissions"
3144
  msgstr ""
3145
 
3146
- #: my-calendar-settings.php:821
3147
  msgid "Save Permissions"
3148
  msgstr ""
3149
 
3150
- #: my-calendar-settings.php:825
3151
  msgid "My Calendar permission settings are only available to administrators."
3152
  msgstr ""
3153
 
3154
- #: my-calendar-settings.php:833
3155
  msgid "Calendar Email Settings"
3156
  msgstr ""
3157
 
3158
- #: my-calendar-settings.php:838
3159
  msgid "Calendar Options: Email Notifications"
3160
  msgstr ""
3161
 
3162
- #: my-calendar-settings.php:842
3163
  msgid "Send Email Notifications when new events are scheduled or reserved."
3164
  msgstr ""
3165
 
3166
- #: my-calendar-settings.php:845
3167
  msgid "Notification messages are sent to: "
3168
  msgstr ""
3169
 
3170
- #: my-calendar-settings.php:848
3171
  msgid "Notification messages are sent from: "
3172
  msgstr ""
3173
 
3174
- #: my-calendar-settings.php:851
3175
  msgid "Email subject"
3176
  msgstr ""
3177
 
3178
- #: my-calendar-settings.php:851
3179
  msgid "New event Added"
3180
  msgstr ""
3181
 
3182
- #: my-calendar-settings.php:854
3183
  msgid "Message Body"
3184
  msgstr ""
3185
 
3186
- #: my-calendar-settings.php:854
3187
  msgid "New Event:"
3188
  msgstr ""
3189
 
3190
- #: my-calendar-settings.php:855
3191
  msgid "Shortcode Help"
3192
  msgstr ""
3193
 
3194
- #: my-calendar-settings.php:855
3195
  msgid "All template shortcodes are available."
3196
  msgstr ""
3197
 
3198
- #: my-calendar-settings.php:858
3199
  msgid "Send HTML email"
3200
  msgstr ""
3201
 
3202
- #: my-calendar-settings.php:863
3203
  msgid "Save Email Settings"
3204
  msgstr ""
3205
 
3206
- #: my-calendar-settings.php:872
3207
  msgid "Calendar User Settings"
3208
  msgstr ""
3209
 
3210
- #: my-calendar-settings.php:880
3211
  msgid "Settings which can be configured in registered user's accounts"
3212
  msgstr ""
3213
 
3214
- #: my-calendar-settings.php:882
3215
  msgid ""
3216
  "Allow registered users to provide timezone or location presets in their user "
3217
  "profiles."
3218
  msgstr ""
3219
 
3220
- #: my-calendar-settings.php:894
3221
  msgid "Timezone Settings"
3222
  msgstr ""
3223
 
3224
- #: my-calendar-settings.php:895
3225
  msgid ""
3226
  "These settings provide registered users with the ability to select a time "
3227
  "zone in their user profile. When they view your calendar, the times for "
@@ -3229,27 +3160,27 @@ msgid ""
3229
  "the entered value."
3230
  msgstr ""
3231
 
3232
- #: my-calendar-settings.php:897
3233
  msgid "Enable Timezone"
3234
  msgstr ""
3235
 
3236
- #: my-calendar-settings.php:900
3237
  msgid "Select Timezone Label"
3238
  msgstr ""
3239
 
3240
- #: my-calendar-settings.php:903
3241
  msgid "Timezone Options"
3242
  msgstr ""
3243
 
3244
- #: my-calendar-settings.php:903 my-calendar-settings.php:927
3245
  msgid "Value, Label; one per line"
3246
  msgstr ""
3247
 
3248
- #: my-calendar-settings.php:915
3249
  msgid "Location Settings"
3250
  msgstr ""
3251
 
3252
- #: my-calendar-settings.php:916
3253
  msgid ""
3254
  "These settings provide registered users with the ability to select a "
3255
  "location in their user profile. When they view your calendar, their initial "
@@ -3259,96 +3190,96 @@ msgid ""
3259
  "to enable these settings for users to use the custom filtering options."
3260
  msgstr ""
3261
 
3262
- #: my-calendar-settings.php:918
3263
  msgid "Enable Location"
3264
  msgstr ""
3265
 
3266
- #: my-calendar-settings.php:921
3267
  msgid "Use this location list as input control"
3268
  msgstr ""
3269
 
3270
- #: my-calendar-settings.php:921
3271
  msgid ""
3272
  "The normal text entry for this location type will be replaced by a drop down "
3273
  "containing these choices."
3274
  msgstr ""
3275
 
3276
- #: my-calendar-settings.php:924
3277
  msgid "Select Location Label"
3278
  msgstr ""
3279
 
3280
- #: my-calendar-settings.php:927
3281
  msgid "Location Options"
3282
  msgstr ""
3283
 
3284
- #: my-calendar-settings.php:937
3285
  msgid "Location Type"
3286
  msgstr ""
3287
 
3288
- #: my-calendar-settings.php:950
3289
  msgid "Save User Settings"
3290
  msgstr ""
3291
 
3292
- #: my-calendar-settings.php:954
3293
  msgid ""
3294
  "Only users with the ability to edit user accounts may modify user settings."
3295
  msgstr ""
3296
 
3297
- #: my-calendar-styles.php:84
3298
  msgid "Styles are disabled, and were not edited."
3299
  msgstr ""
3300
 
3301
- #: my-calendar-styles.php:86
3302
  msgid "The stylesheet has been updated."
3303
  msgstr ""
3304
 
3305
- #: my-calendar-styles.php:86
3306
  msgid "Write Error! Please verify write permissions on the style file."
3307
  msgstr ""
3308
 
3309
- #: my-calendar-styles.php:100
3310
  msgid "Stylesheet reset to default."
3311
  msgstr ""
3312
 
3313
- #: my-calendar-styles.php:103
3314
  msgid "Style Settings Saved"
3315
  msgstr ""
3316
 
3317
- #: my-calendar-styles.php:112
3318
  msgid "New theme selected."
3319
  msgstr ""
3320
 
3321
- #: my-calendar-styles.php:127
3322
  msgid ""
3323
  "Sorry. The file you are looking for doesn't appear to exist. Please check "
3324
  "your file name and location!"
3325
  msgstr ""
3326
 
3327
- #: my-calendar-styles.php:135
3328
  msgid "My Calendar Styles"
3329
  msgstr ""
3330
 
3331
- #: my-calendar-styles.php:141
3332
  msgid "Calendar Style Settings"
3333
  msgstr ""
3334
 
3335
- #: my-calendar-styles.php:149
3336
  msgid "Select My Calendar Theme"
3337
  msgstr ""
3338
 
3339
- #: my-calendar-styles.php:157
3340
  msgid "Your Custom Stylesheets"
3341
  msgstr ""
3342
 
3343
- #: my-calendar-styles.php:166
3344
  msgid "Installed Stylesheets"
3345
  msgstr ""
3346
 
3347
- #: my-calendar-styles.php:174
3348
  msgid "Choose Style"
3349
  msgstr ""
3350
 
3351
- #: my-calendar-styles.php:187
3352
  msgid ""
3353
  "My Calendar was unable to update your CSS files during the upgrade. Please "
3354
  "check your file permissions if you wish to edit your My Calendar styles. "
@@ -3356,105 +3287,105 @@ msgid ""
3356
  "be deleted from the database when you successfully update your stylesheet."
3357
  msgstr ""
3358
 
3359
- #: my-calendar-styles.php:195
3360
  msgid "CSS Style Options"
3361
  msgstr ""
3362
 
3363
- #: my-calendar-styles.php:197
3364
  msgid "Apply CSS on these pages (comma separated IDs)"
3365
  msgstr ""
3366
 
3367
- #: my-calendar-styles.php:200
3368
  msgid "Restore My Calendar stylesheet"
3369
  msgstr ""
3370
 
3371
- #: my-calendar-styles.php:200
3372
  msgid "Disable My Calendar Stylesheet"
3373
  msgstr ""
3374
 
3375
- #: my-calendar-styles.php:203
3376
  msgid "Edit the stylesheet for My Calendar"
3377
  msgstr ""
3378
 
3379
- #: my-calendar-styles.php:217
3380
  msgid "Comparing Your Style with latest installed version of My Calendar"
3381
  msgstr ""
3382
 
3383
- #: my-calendar-styles.php:221
3384
  msgid "There have been updates to the stylesheet."
3385
  msgstr ""
3386
 
3387
- #: my-calendar-styles.php:221
3388
  msgid "Compare Your Stylesheet with latest installed version of My Calendar."
3389
  msgstr ""
3390
 
3391
- #: my-calendar-styles.php:225
3392
  msgid "Your stylesheet matches that included with My Calendar."
3393
  msgstr ""
3394
 
3395
- #: my-calendar-styles.php:234
3396
  msgid ""
3397
  "Resetting your stylesheet will set your stylesheet to the version of that "
3398
  "style currently distributed with the plug-in."
3399
  msgstr ""
3400
 
3401
- #: my-calendar-templates.php:74
3402
  msgid "Map<span> to %s</span>"
3403
  msgstr ""
3404
 
3405
- #: my-calendar-templates.php:107 my-calendar-templates.php:166
3406
  msgid "Visit web site<span>: %s</span>"
3407
  msgstr ""
3408
 
3409
- #: my-calendar-templates.php:175
3410
  msgid "Daily, weekdays only"
3411
  msgstr ""
3412
 
3413
- #: my-calendar-templates.php:177
3414
  msgid "Bi-weekly"
3415
  msgstr ""
3416
 
3417
- #: my-calendar-templates.php:178
3418
  msgid "Date of Month (the %s of each month)"
3419
  msgstr ""
3420
 
3421
- #: my-calendar-templates.php:179
3422
  msgid "Day of Month (the %s %s of each month)"
3423
  msgstr ""
3424
 
3425
- #: my-calendar-templates.php:180
3426
  msgid "Annually"
3427
  msgstr ""
3428
 
3429
- #: my-calendar-templates.php:305
3430
  msgid "<span class=\"screenreader\">Send %1$s to </span>Google Calendar"
3431
  msgstr ""
3432
 
3433
- #: my-calendar-templating.php:19
3434
  msgid "Grid Output Template saved"
3435
  msgstr ""
3436
 
3437
- #: my-calendar-templating.php:31
3438
  msgid "RSS Feed Output Template saved"
3439
  msgstr ""
3440
 
3441
- #: my-calendar-templating.php:43
3442
  msgid "List Output Template saved"
3443
  msgstr ""
3444
 
3445
- #: my-calendar-templating.php:54
3446
  msgid "Mini Output Template saved"
3447
  msgstr ""
3448
 
3449
- #: my-calendar-templating.php:65
3450
  msgid "Event Details Template saved"
3451
  msgstr ""
3452
 
3453
- #: my-calendar-templating.php:83
3454
  msgid "My Calendar Information Templates"
3455
  msgstr ""
3456
 
3457
- #: my-calendar-templating.php:88
3458
  msgid ""
3459
  "Advanced users may customize the HTML template for each event. This page "
3460
  "lets you create a customized view of your events in each context. All "
@@ -3464,97 +3395,97 @@ msgid ""
3464
  "settings.</strong>"
3465
  msgstr ""
3466
 
3467
- #: my-calendar-templating.php:88
3468
  msgid "Templates Help"
3469
  msgstr ""
3470
 
3471
- #: my-calendar-templating.php:93
3472
  msgid "My Calendar: Grid Event Template"
3473
  msgstr ""
3474
 
3475
- #: my-calendar-templating.php:98
3476
  msgid "Use this grid event template"
3477
  msgstr ""
3478
 
3479
- #: my-calendar-templating.php:101
3480
  msgid "Your custom template for events in the calendar grid output."
3481
  msgstr ""
3482
 
3483
- #: my-calendar-templating.php:104
3484
  msgid "Save Grid Template"
3485
  msgstr ""
3486
 
3487
- #: my-calendar-templating.php:113
3488
  msgid "My Calendar: List Event Template"
3489
  msgstr ""
3490
 
3491
- #: my-calendar-templating.php:118
3492
  msgid "Use this list event template"
3493
  msgstr ""
3494
 
3495
- #: my-calendar-templating.php:121
3496
  msgid "Your custom template for events in calendar list output."
3497
  msgstr ""
3498
 
3499
- #: my-calendar-templating.php:124
3500
  msgid "Save List Template"
3501
  msgstr ""
3502
 
3503
- #: my-calendar-templating.php:133
3504
  msgid "My Calendar: Mini Calendar Template"
3505
  msgstr ""
3506
 
3507
- #: my-calendar-templating.php:138
3508
  msgid "Use this mini event template"
3509
  msgstr ""
3510
 
3511
- #: my-calendar-templating.php:141
3512
  msgid "Your custom template for events in sidebar/mini calendar output."
3513
  msgstr ""
3514
 
3515
- #: my-calendar-templating.php:144
3516
  msgid "Save Mini Template"
3517
  msgstr ""
3518
 
3519
- #: my-calendar-templating.php:153
3520
  msgid "My Calendar: Event Details Page Template"
3521
  msgstr ""
3522
 
3523
- #: my-calendar-templating.php:158
3524
  msgid "Use this details template"
3525
  msgstr ""
3526
 
3527
- #: my-calendar-templating.php:161
3528
  msgid "Your custom template for events on the event details page."
3529
  msgstr ""
3530
 
3531
- #: my-calendar-templating.php:164
3532
  msgid "Save Details Template"
3533
  msgstr ""
3534
 
3535
- #: my-calendar-templating.php:173
3536
  msgid "My Calendar: RSS Event Template"
3537
  msgstr ""
3538
 
3539
- #: my-calendar-templating.php:175
3540
  msgid ""
3541
  "Notice: HTML templates are very forgiving of errors. RSS templates are not. "
3542
  "Be sure to test your changes."
3543
  msgstr ""
3544
 
3545
- #: my-calendar-templating.php:179
3546
  msgid "Use this custom RSS event template"
3547
  msgstr ""
3548
 
3549
- #: my-calendar-templating.php:182
3550
  msgid "Your custom template for events in the RSS feed."
3551
  msgstr ""
3552
 
3553
- #: my-calendar-templating.php:185
3554
  msgid "Save RSS Template"
3555
  msgstr ""
3556
 
3557
- #: my-calendar-upgrade-db.php:12
3558
  msgid "My Calendar Database is updated."
3559
  msgstr ""
3560
 
@@ -3562,126 +3493,123 @@ msgstr ""
3562
  msgid "The My Calendar database needs to be updated."
3563
  msgstr ""
3564
 
3565
- #: my-calendar-upgrade-db.php:26 my-calendar-upgrade-db.php:46
 
3566
  msgid "Update now"
3567
  msgstr ""
3568
 
3569
- #: my-calendar-upgrade-db.php:33
3570
- msgid "Update now."
3571
- msgstr ""
3572
-
3573
  #: my-calendar-upgrade-db.php:45
3574
  msgid ""
3575
  "You haven't entered any events, so My Calendar can't tell whether your "
3576
  "database is up to date. If you can't add events, upgrade your database!"
3577
  msgstr ""
3578
 
3579
- #: my-calendar-user.php:41
3580
  msgid "My Calendar User Settings"
3581
  msgstr ""
3582
 
3583
- #: my-calendar-widgets.php:4
3584
  msgid "My Calendar: Simple Event Search"
3585
  msgstr ""
3586
 
3587
- #: my-calendar-widgets.php:18
3588
  msgid "My Calendar: Today's Events"
3589
  msgstr ""
3590
 
3591
- #: my-calendar-widgets.php:64 my-calendar-widgets.php:173
3592
  msgid "Template"
3593
  msgstr ""
3594
 
3595
- #: my-calendar-widgets.php:67
3596
  msgid "Add calendar URL to use this option."
3597
  msgstr ""
3598
 
3599
- #: my-calendar-widgets.php:75 my-calendar-widgets.php:187
3600
  msgid "Widget title links to:"
3601
  msgstr ""
3602
 
3603
- #: my-calendar-widgets.php:79
3604
  msgid "Show this text if there are no events today:"
3605
  msgstr ""
3606
 
3607
- #: my-calendar-widgets.php:83 my-calendar-widgets.php:221
3608
- #: my-calendar-widgets.php:687
3609
  msgid "Category or categories to display:"
3610
  msgstr ""
3611
 
3612
- #: my-calendar-widgets.php:87 my-calendar-widgets.php:225
3613
  msgid "Author or authors to show:"
3614
  msgstr ""
3615
 
3616
- #: my-calendar-widgets.php:91 my-calendar-widgets.php:229
3617
  msgid "Host or hosts to show:"
3618
  msgstr ""
3619
 
3620
- #: my-calendar-widgets.php:115
3621
  msgid "My Calendar: Upcoming Events"
3622
  msgstr ""
3623
 
3624
- #: my-calendar-widgets.php:177
3625
  msgid "Widget Options"
3626
  msgstr ""
3627
 
3628
- #: my-calendar-widgets.php:191
3629
  msgid "Display upcoming events by:"
3630
  msgstr ""
3631
 
3632
- #: my-calendar-widgets.php:192
3633
  msgid "Events (e.g. 2 past, 3 future)"
3634
  msgstr ""
3635
 
3636
- #: my-calendar-widgets.php:193
3637
  msgid "Dates (e.g. 4 days past, 5 forward)"
3638
  msgstr ""
3639
 
3640
- #: my-calendar-widgets.php:194
3641
  msgid "Show current month"
3642
  msgstr ""
3643
 
3644
- #: my-calendar-widgets.php:195
3645
  msgid "Show current year"
3646
  msgstr ""
3647
 
3648
- #: my-calendar-widgets.php:199
3649
  msgid "Skip the first <em>n</em> events"
3650
  msgstr ""
3651
 
3652
- #: my-calendar-widgets.php:202
3653
  msgid "Events sort order:"
3654
  msgstr ""
3655
 
3656
- #: my-calendar-widgets.php:203
3657
  msgid "Ascending (near to far)"
3658
  msgstr ""
3659
 
3660
- #: my-calendar-widgets.php:204
3661
  msgid "Descending (far to near)"
3662
  msgstr ""
3663
 
3664
- #: my-calendar-widgets.php:214
3665
  msgid "Include today's events"
3666
  msgstr ""
3667
 
3668
- #: my-calendar-widgets.php:217
3669
  msgid "Show this text if there are no events meeting your criteria:"
3670
  msgstr ""
3671
 
3672
- #: my-calendar-widgets.php:622
3673
  msgid "My Calendar: Mini Calendar"
3674
  msgstr ""
3675
 
3676
- #: my-calendar-widgets.php:651
3677
  msgid "Calendar"
3678
  msgstr ""
3679
 
3680
- #: my-calendar-widgets.php:683
3681
  msgid "Widget Title Link"
3682
  msgstr ""
3683
 
3684
- #: my-calendar-widgets.php:722
3685
  msgid "Mini-Calendar Timespan:"
3686
  msgstr ""
3687
 
@@ -3833,18 +3761,6 @@ msgstr ""
3833
  msgid "Second line of the site address."
3834
  msgstr ""
3835
 
3836
- #: my-calendar.php:271
3837
- msgid "City."
3838
- msgstr ""
3839
-
3840
- #: my-calendar.php:274
3841
- msgid "State."
3842
- msgstr ""
3843
-
3844
- #: my-calendar.php:277
3845
- msgid "Postal code/zip code."
3846
- msgstr ""
3847
-
3848
  #: my-calendar.php:280
3849
  msgid "Custom region."
3850
  msgstr ""
@@ -3883,7 +3799,7 @@ msgstr ""
3883
  msgid "ID of the category of the event."
3884
  msgstr ""
3885
 
3886
- #. #-#-#-#-# plugin.pot (My Calendar 2.2.0) #-#-#-#-#
3887
  #. Plugin Name of the plugin/theme
3888
  #: my-calendar.php:327 my-calendar.php:329 my-calendar.php:334
3889
  #: my-calendar.php:336
@@ -3906,19 +3822,27 @@ msgstr ""
3906
  msgid "Template Editor"
3907
  msgstr ""
3908
 
3909
- #: my-calendar.php:362
3910
  msgid "Event Submissions"
3911
  msgstr ""
3912
 
3913
- #: my-calendar.php:363
3914
  msgid "Payments"
3915
  msgstr ""
3916
 
3917
- #: my-calendar.php:401
 
 
 
 
 
 
 
 
3918
  msgid "Apply"
3919
  msgstr ""
3920
 
3921
- #: my-calendar.php:404
3922
  msgid "Event editing fields to show"
3923
  msgstr ""
3924
 
2
  # This file is distributed under the same license as the My Calendar package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: My Calendar 2.2.10\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
7
+ "POT-Creation-Date: 2013-09-30 21:00:54+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
41
  msgid "All locations"
42
  msgstr ""
43
 
44
+ #: button/generator.php:58 my-calendar-settings.php:391
45
+ #: my-calendar-settings.php:908
46
  msgid "Location Name"
47
  msgstr ""
48
 
49
+ #: button/generator.php:59 my-calendar-event-manager.php:875
50
+ #: my-calendar-group-manager.php:477 my-calendar-locations.php:152
51
+ #: my-calendar-settings.php:909 my-calendar.php:271
52
  msgid "City"
53
  msgstr ""
54
 
55
+ #: button/generator.php:60 my-calendar-event-manager.php:922
56
+ #: my-calendar-group-manager.php:493 my-calendar-locations.php:197
57
+ #: my-calendar.php:274
58
  msgid "State"
59
  msgstr ""
60
 
61
+ #: button/generator.php:61 my-calendar-event-manager.php:891
62
+ #: my-calendar-group-manager.php:480 my-calendar-locations.php:168
63
+ #: my-calendar-settings.php:912 my-calendar.php:277
64
  msgid "Postal Code"
65
  msgstr ""
66
 
67
+ #: button/generator.php:62 my-calendar-event-manager.php:907
68
+ #: my-calendar-group-manager.php:484 my-calendar-locations.php:184
69
+ #: my-calendar-settings.php:911
70
  msgid "Country"
71
  msgstr ""
72
 
73
+ #: button/generator.php:63 my-calendar-event-manager.php:898
74
+ #: my-calendar-event-manager.php:923 my-calendar-group-manager.php:481
75
+ #: my-calendar-group-manager.php:494 my-calendar-locations.php:175
76
+ #: my-calendar-locations.php:198 my-calendar-settings.php:913
77
  msgid "Region"
78
  msgstr ""
79
 
93
  msgid "List"
94
  msgstr ""
95
 
96
+ #: button/generator.php:78 my-calendar-widgets.php:687
97
  msgid "Navigation above calendar"
98
  msgstr ""
99
 
100
+ #: button/generator.php:80 button/generator.php:85
101
+ msgid "Use \"none\" for no navigation."
102
+ msgstr ""
103
+
104
+ #: button/generator.php:83 my-calendar-widgets.php:691
105
  msgid "Navigation below calendar"
106
  msgstr ""
107
 
108
+ #: button/generator.php:88
109
  msgid "Time Segment"
110
  msgstr ""
111
 
112
+ #: button/generator.php:90 my-calendar-output.php:364
113
+ #: my-calendar-output.php:479 my-calendar-output.php:486
114
+ #: my-calendar-output.php:492 my-calendar-widgets.php:711
115
  msgid "Month"
116
  msgstr ""
117
 
118
+ #: button/generator.php:91 my-calendar-output.php:480
119
+ #: my-calendar-output.php:488 my-calendar-output.php:494
120
+ #: my-calendar-widgets.php:712
121
  msgid "Week"
122
  msgstr ""
123
 
124
+ #: button/generator.php:92 my-calendar-output.php:482
125
+ #: my-calendar-output.php:489 my-calendar-output.php:496
126
  msgid "Day"
127
  msgstr ""
128
 
129
+ #: button/generator.php:103 my-calendar-widgets.php:695
130
  msgid "Limit by Author"
131
  msgstr ""
132
 
133
+ #: button/generator.php:105 my-calendar-widgets.php:697
134
  msgid "All authors"
135
  msgstr ""
136
 
137
+ #: button/generator.php:110 my-calendar-widgets.php:702
138
  msgid "Limit by Host"
139
  msgstr ""
140
 
141
+ #: button/generator.php:112 my-calendar-widgets.php:704
142
  msgid "All hosts"
143
  msgstr ""
144
 
145
+ #: button/generator.php:118
146
  msgid "Generate Shortcode"
147
  msgstr ""
148
 
149
+ #: button/generator.php:120
150
  msgid ""
151
  "<strong>Note:</strong> If you provide a location filter value, it must be an "
152
  "exact match for that information as saved with your events. (e.g. \"Saint "
153
  "Paul\" is not equivalent to \"saint paul\" or \"St. Paul\")"
154
  msgstr ""
155
 
156
+ #: button/generator.php:130
157
  msgid ""
158
  "My Calendar: this generator isn't going to put the shortcode in your page. "
159
  "Sorry!"
160
  msgstr ""
161
 
162
+ #: my-calendar-behaviors.php:45
163
  msgid "Behavior Settings saved"
164
  msgstr ""
165
 
176
  msgstr ""
177
 
178
  #: my-calendar-behaviors.php:83
 
 
 
 
179
  msgid "Calendar Behaviors: Calendar View"
180
  msgstr ""
181
 
182
+ #: my-calendar-behaviors.php:85
183
  msgid "Update/Reset the My Calendar Calendar Javascript"
184
  msgstr ""
185
 
186
+ #: my-calendar-behaviors.php:85
187
  msgid "Disable Calendar Javascript Effects"
188
  msgstr ""
189
 
190
+ #: my-calendar-behaviors.php:88
191
  msgid "Edit the jQuery scripts for My Calendar in Calendar format"
192
  msgstr ""
193
 
194
+ #: my-calendar-behaviors.php:95 my-calendar-behaviors.php:127
195
+ #: my-calendar-behaviors.php:158 my-calendar-behaviors.php:190
196
  msgid "Comparing scripts with latest installed version of My Calendar"
197
  msgstr ""
198
 
199
+ #: my-calendar-behaviors.php:95 my-calendar-behaviors.php:127
200
+ #: my-calendar-behaviors.php:158 my-calendar-behaviors.php:190
201
+ #: my-calendar-styles.php:223
202
  msgid "Latest (from plugin)"
203
  msgstr ""
204
 
205
+ #: my-calendar-behaviors.php:95 my-calendar-behaviors.php:127
206
+ #: my-calendar-behaviors.php:158 my-calendar-behaviors.php:190
207
+ #: my-calendar-styles.php:223
208
  msgid "Current (in use)"
209
  msgstr ""
210
 
211
+ #: my-calendar-behaviors.php:99
212
  msgid "There have been updates to the calendar view scripts."
213
  msgstr ""
214
 
215
+ #: my-calendar-behaviors.php:99 my-calendar-behaviors.php:131
216
+ #: my-calendar-behaviors.php:162 my-calendar-behaviors.php:194
217
  msgid "Compare your scripts with latest installed version of My Calendar."
218
  msgstr ""
219
 
220
+ #: my-calendar-behaviors.php:103 my-calendar-behaviors.php:135
221
+ #: my-calendar-behaviors.php:166 my-calendar-behaviors.php:198
222
  msgid "Your script matches that included with My Calendar."
223
  msgstr ""
224
 
225
+ #: my-calendar-behaviors.php:108 my-calendar-behaviors.php:140
226
+ #: my-calendar-behaviors.php:171 my-calendar-behaviors.php:205
 
227
  msgid "Save"
228
  msgstr ""
229
 
230
+ #: my-calendar-behaviors.php:115
231
  msgid "Calendar Behaviors: List View"
232
  msgstr ""
233
 
234
+ #: my-calendar-behaviors.php:117
235
  msgid "Update/Reset the My Calendar List Javascript"
236
  msgstr ""
237
 
238
+ #: my-calendar-behaviors.php:117
239
  msgid "Disable List Javascript Effects"
240
  msgstr ""
241
 
242
+ #: my-calendar-behaviors.php:120
243
  msgid "Edit the jQuery scripts for My Calendar in List format"
244
  msgstr ""
245
 
246
+ #: my-calendar-behaviors.php:131
247
  msgid "There have been updates to the list view scripts."
248
  msgstr ""
249
 
250
+ #: my-calendar-behaviors.php:146
251
  msgid "Calendar Behaviors: Mini Calendar View"
252
  msgstr ""
253
 
254
+ #: my-calendar-behaviors.php:148
255
  msgid "Update/Reset the My Calendar Mini Format Javascript"
256
  msgstr ""
257
 
258
+ #: my-calendar-behaviors.php:148
259
  msgid "Disable Mini Javascript Effects"
260
  msgstr ""
261
 
262
+ #: my-calendar-behaviors.php:151
263
  msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
264
  msgstr ""
265
 
266
+ #: my-calendar-behaviors.php:162
267
  msgid "There have been updates to the mini view scripts."
268
  msgstr ""
269
 
270
+ #: my-calendar-behaviors.php:178
271
  msgid "Calendar Behaviors: AJAX Navigation"
272
  msgstr ""
273
 
274
+ #: my-calendar-behaviors.php:180
275
  msgid "Update/Reset the My Calendar AJAX Javascript"
276
  msgstr ""
277
 
278
+ #: my-calendar-behaviors.php:180
279
  msgid "Disable AJAX Effects"
280
  msgstr ""
281
 
282
+ #: my-calendar-behaviors.php:183
283
  msgid "Edit the jQuery scripts for My Calendar AJAX navigation"
284
  msgstr ""
285
 
286
+ #: my-calendar-behaviors.php:194
287
  msgid "There have been updates to the AJAX scripts."
288
  msgstr ""
289
 
290
+ #: my-calendar-behaviors.php:211
291
  msgid ""
292
  "Resetting JavaScript will set that script to the version currently "
293
  "distributed with the plug-in."
294
  msgstr ""
295
 
296
+ #: my-calendar-categories.php:107 my-calendar-categories.php:147
297
  msgid "Default category changed."
298
  msgstr ""
299
 
300
+ #: my-calendar-categories.php:110
301
  msgid "Category added successfully"
302
  msgstr ""
303
 
304
+ #: my-calendar-categories.php:112
305
  msgid "Category addition failed."
306
  msgstr ""
307
 
308
+ #: my-calendar-categories.php:127
309
  msgid "Category deleted successfully. Categories in calendar updated."
310
  msgstr ""
311
 
312
+ #: my-calendar-categories.php:129
313
  msgid "Category deleted successfully. Categories in calendar not updated."
314
  msgstr ""
315
 
316
+ #: my-calendar-categories.php:131
317
  msgid "Category not deleted. Categories in calendar updated."
318
  msgstr ""
319
 
320
+ #: my-calendar-categories.php:152
321
  msgid "Category edited successfully."
322
  msgstr ""
323
 
324
+ #: my-calendar-categories.php:154
325
  msgid "Category was not edited."
326
  msgstr ""
327
 
328
+ #: my-calendar-categories.php:188 my-calendar-categories.php:214
329
+ #: my-calendar-categories.php:235
330
  msgid "Add Category"
331
  msgstr ""
332
 
333
+ #: my-calendar-categories.php:190 my-calendar-categories.php:214
334
  msgid "Edit Category"
335
  msgstr ""
336
 
337
+ #: my-calendar-categories.php:198
338
  msgid "Category Editor"
339
  msgstr ""
340
 
341
+ #: my-calendar-categories.php:215 my-calendar-categories.php:277
342
  msgid "Category Name"
343
  msgstr ""
344
 
345
+ #: my-calendar-categories.php:216
346
  msgid "Category Color (Hex format)"
347
  msgstr ""
348
 
349
+ #: my-calendar-categories.php:217 my-calendar-categories.php:279
350
  msgid "Category Icon"
351
  msgstr ""
352
 
358
  msgid "Private category (logged-in users only)"
359
  msgstr ""
360
 
361
+ #: my-calendar-categories.php:235 my-calendar-locations.php:215
362
+ #: my-calendar-styles.php:212
363
  msgid "Save Changes"
364
  msgstr ""
365
 
367
  msgid "Add a New Category"
368
  msgstr ""
369
 
370
+ #: my-calendar-categories.php:247
371
  msgid "Category List"
372
  msgstr ""
373
 
374
+ #: my-calendar-categories.php:262 my-calendar.php:349
375
  msgid "Manage Categories"
376
  msgstr ""
377
 
378
+ #: my-calendar-categories.php:276 my-calendar-event-manager.php:1112
379
+ #: my-calendar-group-manager.php:749 my-calendar-locations.php:288
380
  msgid "ID"
381
  msgstr ""
382
 
383
+ #: my-calendar-categories.php:278
384
  msgid "Category Color"
385
  msgstr ""
386
 
387
+ #: my-calendar-categories.php:280
388
  msgid "Private"
389
  msgstr ""
390
 
391
+ #: my-calendar-categories.php:281 my-calendar-categories.php:297
392
+ #: my-calendar-event-manager.php:1152 my-calendar-locations.php:290
393
+ #: my-calendar-locations.php:302 my-calendar-output.php:309
394
  msgid "Edit"
395
  msgstr ""
396
 
397
+ #: my-calendar-categories.php:282 my-calendar-categories.php:302
398
+ #: my-calendar-event-manager.php:35 my-calendar-event-manager.php:1155
399
  #: my-calendar-locations.php:291 my-calendar-locations.php:303
400
+ #: my-calendar-output.php:310
401
  msgid "Delete"
402
  msgstr ""
403
 
404
+ #: my-calendar-categories.php:296
405
+ msgid "Yes"
406
+ msgstr ""
407
+
408
+ #: my-calendar-categories.php:296
409
+ msgid "No"
410
+ msgstr ""
411
+
412
+ #: my-calendar-categories.php:300 my-calendar-group-manager.php:814
413
+ #: my-calendar-output.php:189 my-calendar-settings.php:430
414
  msgid "N/A"
415
  msgstr ""
416
 
417
+ #: my-calendar-categories.php:302 my-calendar-locations.php:303
418
  msgid "Are you sure you want to delete this category?"
419
  msgstr ""
420
 
421
+ #: my-calendar-categories.php:312
422
+ msgid "There are no categories in the database - or something has gone wrong!"
423
  msgstr ""
424
 
425
+ #: my-calendar-core.php:57 my-calendar.php:356
426
  msgid "Settings"
427
  msgstr ""
428
 
429
+ #: my-calendar-core.php:58 my-calendar.php:357
430
  msgid "Help"
431
  msgstr ""
432
 
433
+ #: my-calendar-core.php:285
434
  msgid ""
435
  "<br /><strong>Note:</strong> Please review the <a class=\"thickbox\" href="
436
  "\"%1$s\">changelog</a> before upgrading."
437
  msgstr ""
438
 
439
+ #: my-calendar-core.php:1120 my-calendar-event-manager.php:262
440
  msgid "Add Event"
441
  msgstr ""
442
 
443
+ #: my-calendar-core.php:1176
444
  msgid "Event Notifications"
445
  msgstr ""
446
 
447
+ #: my-calendar-core.php:1402
448
  msgid "Is this your calendar page?"
449
  msgstr ""
450
 
451
+ #: my-calendar-core.php:1500
 
 
 
 
452
  msgid ""
453
  "Please read the FAQ and other Help documents before making a support request."
454
  msgstr ""
455
 
456
+ #: my-calendar-core.php:1502
457
  msgid "Please describe your problem in detail. I'm not psychic."
458
  msgstr ""
459
 
460
+ #: my-calendar-core.php:1507
461
  msgid ""
462
  "Thank you for supporting the continuing development of this plug-in! I'll "
463
  "get back to you as soon as I can."
464
  msgstr ""
465
 
466
+ #: my-calendar-core.php:1509
467
  msgid ""
468
  "I'll get back to you as soon as I can, after dealing with any support "
469
  "requests from plug-in supporters."
470
  msgstr ""
471
 
472
+ #: my-calendar-core.php:1519
473
  msgid ""
474
  "Please note: I do keep records of those who have donated, <strong>but if "
475
  "your donation came from somebody other than your account at this web site, "
476
  "please note this in your message.</strong>"
477
  msgstr ""
478
 
479
+ #: my-calendar-core.php:1521
480
  msgid "From:"
481
  msgstr ""
482
 
483
+ #: my-calendar-core.php:1524
484
  msgid ""
485
  "I have read <a href=\"http://www.joedolson.com/articles/my-calendar/faq/"
486
  "\">the FAQ for this plug-in</a>."
487
  msgstr ""
488
 
489
+ #: my-calendar-core.php:1527
490
  msgid ""
491
  "I have <a href=\"http://www.joedolson.com/donate.php\">made a donation to "
492
  "help support this plug-in</a>."
493
  msgstr ""
494
 
495
+ #: my-calendar-core.php:1530
496
  msgid ""
497
  "I have <a href=\"http://www.joedolson.com/articles/my-calendar/users-guide/"
498
  "\">purchased the User's Guide</a>, but could not find an answer to this "
499
  "question."
500
  msgstr ""
501
 
502
+ #: my-calendar-core.php:1536
503
  msgid "Send Support Request"
504
  msgstr ""
505
 
506
+ #: my-calendar-core.php:1539
507
  msgid ""
508
  "The following additional information will be sent with your support request:"
509
  msgstr ""
510
 
511
+ #: my-calendar-core.php:1559 my-calendar-templates.php:174
512
  msgid "Does not recur"
513
  msgstr ""
514
 
515
+ #: my-calendar-core.php:1560
516
  msgid "Days"
517
  msgstr ""
518
 
519
+ #: my-calendar-core.php:1561
520
  msgid "Days, weekdays only"
521
  msgstr ""
522
 
523
+ #: my-calendar-core.php:1562
524
  msgid "Weeks"
525
  msgstr ""
526
 
527
+ #: my-calendar-core.php:1563
528
  msgid "Months by date (e.g., the 24th of each month)"
529
  msgstr ""
530
 
531
+ #: my-calendar-core.php:1564
532
  msgid "Month by day (e.g., the 3rd Monday of each month)"
533
  msgstr ""
534
 
535
+ #: my-calendar-core.php:1565 my-calendar-output.php:369
536
  msgid "Year"
537
  msgstr ""
538
 
539
+ #: my-calendar-event-manager.php:24
540
  msgid "Delete Event"
541
  msgstr ""
542
 
543
+ #: my-calendar-event-manager.php:24
544
  msgid "Are you sure you want to delete this event?"
545
  msgstr ""
546
 
547
+ #: my-calendar-event-manager.php:40
548
  msgid "You do not have permission to delete that event."
549
  msgstr ""
550
 
551
+ #: my-calendar-event-manager.php:54
552
  msgid "You do not have permission to approve that event."
553
  msgstr ""
554
 
555
+ #: my-calendar-event-manager.php:69
556
  msgid "You do not have permission to reject that event."
557
  msgstr ""
558
 
559
+ #: my-calendar-event-manager.php:102
560
  msgid "%1$d events deleted successfully out of %2$d selected"
561
  msgstr ""
562
 
563
+ #: my-calendar-event-manager.php:104 my-calendar-event-manager.php:129
564
+ #: my-calendar-event-manager.php:300 my-calendar-event-manager.php:378
565
+ #: my-calendar-event-manager.php:395 my-calendar-event-manager.php:414
566
+ #: my-calendar-event-manager.php:1375 my-calendar-event-manager.php:1378
567
+ #: my-calendar-event-manager.php:1388 my-calendar-event-manager.php:1395
568
+ #: my-calendar-event-manager.php:1411 my-calendar-event-manager.php:1418
569
+ #: my-calendar-event-manager.php:1423 my-calendar-group-manager.php:56
570
+ #: my-calendar-group-manager.php:82 my-calendar-group-manager.php:162
571
+ #: my-calendar-group-manager.php:603
572
  msgid "Error"
573
  msgstr ""
574
 
575
+ #: my-calendar-event-manager.php:104
576
  msgid "Your events have not been deleted. Please investigate."
577
  msgstr ""
578
 
579
+ #: my-calendar-event-manager.php:129
580
+ msgid "Your events have not been approved. Please investigate."
581
  msgstr ""
582
 
583
+ #: my-calendar-event-manager.php:134
584
+ msgid "%1$d events approved successfully out of %2$d selected"
585
  msgstr ""
586
 
587
+ #: my-calendar-event-manager.php:141 my-calendar-settings.php:119
588
+ #: my-calendar-settings.php:768 my-calendar.php:347
589
  msgid "Manage Events"
590
  msgstr ""
591
 
592
+ #: my-calendar-event-manager.php:146
593
  msgid "My Events"
594
  msgstr ""
595
 
596
+ #: my-calendar-event-manager.php:166 my-calendar-settings.php:320
597
  msgid ""
598
  "My Calendar has identified that you have the Calendar plugin by Kieran "
599
  "O'Shea installed. You can import those events and categories into the My "
600
  "Calendar database. Would you like to import these events?"
601
  msgstr ""
602
 
603
+ #: my-calendar-event-manager.php:173 my-calendar-settings.php:326
604
  msgid "Import from Calendar"
605
  msgstr ""
606
 
607
+ #: my-calendar-event-manager.php:178
608
  msgid ""
609
  "Although it is possible that this import could fail to import your events "
610
  "correctly, it should not have any impact on your existing Calendar database. "
612
  "\">please contact me</a>!"
613
  msgstr ""
614
 
615
+ #: my-calendar-event-manager.php:223
616
  msgid "Return to Calendar"
617
  msgstr ""
618
 
619
+ #: my-calendar-event-manager.php:235
620
  msgid "Currently editing your local calendar"
621
  msgstr ""
622
 
623
+ #: my-calendar-event-manager.php:237
624
  msgid "Currently editing your central calendar"
625
  msgstr ""
626
 
627
+ #: my-calendar-event-manager.php:243 my-calendar-group-manager.php:786
628
  msgid "Edit Event"
629
  msgstr ""
630
 
631
+ #: my-calendar-event-manager.php:246 my-calendar-event-manager.php:255
632
  msgid "You must provide an event id in order to edit it"
633
  msgstr ""
634
 
635
+ #: my-calendar-event-manager.php:252
636
  msgid "Copy Event"
637
  msgstr ""
638
 
639
+ #: my-calendar-event-manager.php:300
640
  msgid "I'm sorry! I couldn't add that event to the database."
641
  msgstr ""
642
 
643
+ #: my-calendar-event-manager.php:311
644
  msgid "Event saved. An administrator will review and approve your event."
645
  msgstr ""
646
 
647
+ #: my-calendar-event-manager.php:316
648
  msgid "Event added. It will now show on the calendar."
649
  msgstr ""
650
 
651
+ #: my-calendar-event-manager.php:322 my-calendar-group-manager.php:54
652
+ #: my-calendar-group-manager.php:159
653
  msgid "View <a href=\"%s\">your calendar</a>."
654
  msgstr ""
655
 
656
+ #: my-calendar-event-manager.php:351 my-calendar-group-manager.php:58
657
+ #: my-calendar-group-manager.php:84 my-calendar-group-manager.php:164
 
658
  msgid "Nothing was changed in that update."
659
  msgstr ""
660
 
661
+ #: my-calendar-event-manager.php:355
662
  msgid "Date/time information for this event has been updated."
663
  msgstr ""
664
 
665
+ #: my-calendar-event-manager.php:378 my-calendar-group-manager.php:162
666
  msgid "Your event was not updated."
667
  msgstr ""
668
 
669
+ #: my-calendar-event-manager.php:380
670
+ msgid "No event data was changed in that update."
671
+ msgstr ""
672
+
673
+ #: my-calendar-event-manager.php:384 my-calendar-group-manager.php:60
674
  #: my-calendar-group-manager.php:166
675
  msgid "Event updated successfully"
676
  msgstr ""
677
 
678
+ #: my-calendar-event-manager.php:388 my-calendar-group-manager.php:170
679
  msgid "You do not have sufficient permissions to edit that event."
680
  msgstr ""
681
 
682
+ #: my-calendar-event-manager.php:395
683
  msgid "You can't delete an event if you haven't submitted an event id"
684
  msgstr ""
685
 
686
+ #: my-calendar-event-manager.php:412
687
  msgid "Event deleted successfully"
688
  msgstr ""
689
 
690
+ #: my-calendar-event-manager.php:414
691
  msgid ""
692
  "Despite issuing a request to delete, the event still remains in the "
693
  "database. Please investigate."
694
  msgstr ""
695
 
696
+ #: my-calendar-event-manager.php:427 my-calendar-group-manager.php:182
697
  msgid "Sorry! That's an invalid event key."
698
  msgstr ""
699
 
700
+ #: my-calendar-event-manager.php:431 my-calendar-group-manager.php:186
701
  msgid "Sorry! We couldn't find an event with that ID."
702
  msgstr ""
703
 
704
+ #: my-calendar-event-manager.php:456
705
  msgid "This event must be approved in order for it to appear on the calendar."
706
  msgstr ""
707
 
708
+ #: my-calendar-event-manager.php:499
709
+ msgid ""
710
+ "This event ends after the next occurrence begins. Events must end "
711
+ "<strong>before</strong> the next occurrence begins."
712
  msgstr ""
713
 
714
+ #: my-calendar-event-manager.php:499
715
+ msgid ""
716
+ "Event end date: <strong>%s %s</strong>. Next occurrence starts: <strong>%s</"
717
+ "strong>"
718
  msgstr ""
719
 
720
+ #: my-calendar-event-manager.php:537
721
+ msgid "Add/Edit Event"
722
  msgstr ""
723
 
724
+ #: my-calendar-event-manager.php:537
725
+ msgid "Edit events"
726
+ msgstr ""
727
+
728
+ #: my-calendar-event-manager.php:547
729
  msgid ""
730
  "There was an error acquiring information about this event instance. The ID "
731
  "for this event instance was not provided. <strong>You are editing this "
732
  "entire recurrence set.</strong>"
733
  msgstr ""
734
 
735
+ #: my-calendar-event-manager.php:551 my-calendar-group-manager.php:309
736
  msgid "Enter your Event Information"
737
  msgstr ""
738
 
739
+ #: my-calendar-event-manager.php:553 my-calendar-group-manager.php:311
740
  msgid "Event Title"
741
  msgstr ""
742
 
743
+ #: my-calendar-event-manager.php:553 my-calendar-event-manager.php:700
744
+ #: my-calendar-group-manager.php:311
745
  msgid "(required)"
746
  msgstr ""
747
 
748
+ #: my-calendar-event-manager.php:558
749
  msgid "Publish"
750
  msgstr ""
751
 
752
+ #: my-calendar-event-manager.php:558
753
  msgid "You must approve this event to promote it to the calendar."
754
  msgstr ""
755
 
756
+ #: my-calendar-event-manager.php:560
757
  msgid "An administrator must approve your new event."
758
  msgstr ""
759
 
760
+ #: my-calendar-event-manager.php:575
761
  msgid "This event is not spam"
762
  msgstr ""
763
 
764
+ #: my-calendar-event-manager.php:582
765
  msgid "Post to Twitter (via WP to Twitter)"
766
  msgstr ""
767
 
768
+ #: my-calendar-event-manager.php:590 my-calendar-group-manager.php:327
769
  msgid ""
770
  "Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> "
771
  "allowed)"
772
  msgstr ""
773
 
774
+ #: my-calendar-event-manager.php:611 my-calendar-event-manager.php:624
775
+ #: my-calendar-group-manager.php:338 my-calendar-group-manager.php:346
776
  msgid "This event's image:"
777
  msgstr ""
778
 
779
+ #: my-calendar-event-manager.php:613 my-calendar-group-manager.php:340
780
  msgid "Add an image:"
781
  msgstr ""
782
 
783
+ #: my-calendar-event-manager.php:615
784
  msgid "(URL to Event image)"
785
  msgstr ""
786
 
787
+ #: my-calendar-event-manager.php:617 my-calendar-group-manager.php:340
788
  msgid "Upload Image"
789
  msgstr ""
790
 
791
+ #: my-calendar-event-manager.php:617 my-calendar-group-manager.php:340
792
  msgid "Include your image URL or upload an image."
793
  msgstr ""
794
 
795
+ #: my-calendar-event-manager.php:630 my-calendar-group-manager.php:352
796
  msgid ""
797
  "Event Short Description (<abbr title=\"hypertext markup language\">HTML</"
798
  "abbr> allowed)"
799
  msgstr ""
800
 
801
+ #: my-calendar-event-manager.php:634 my-calendar-group-manager.php:356
802
  msgid "Event Host"
803
  msgstr ""
804
 
805
+ #: my-calendar-event-manager.php:654 my-calendar-group-manager.php:376
806
  msgid "Event Category"
807
  msgstr ""
808
 
809
+ #: my-calendar-event-manager.php:664 my-calendar-group-manager.php:388
810
  msgid "Event Link (Optional)"
811
  msgstr ""
812
 
813
+ #: my-calendar-event-manager.php:664 my-calendar-group-manager.php:388
814
  msgid "This link will expire when the event passes."
815
  msgstr ""
816
 
817
+ #: my-calendar-event-manager.php:674 my-calendar-event-manager.php:682
818
  msgid "Event Date and Time"
819
  msgstr ""
820
 
821
+ #: my-calendar-event-manager.php:700
822
  msgid "Start Date (YYYY-MM-DD)"
823
  msgstr ""
824
 
825
+ #: my-calendar-event-manager.php:700
826
  msgid "Time (hh:mm am/pm)"
827
  msgstr ""
828
 
829
+ #: my-calendar-event-manager.php:706
830
  msgid "All day event"
831
  msgstr ""
832
 
833
+ #: my-calendar-event-manager.php:709
834
  msgid "End Date (YYYY-MM-DD)"
835
  msgstr ""
836
 
837
+ #: my-calendar-event-manager.php:709
838
  msgid "(optional)"
839
  msgstr ""
840
 
841
+ #: my-calendar-event-manager.php:709
842
  msgid "End Time (hh:mm am/pm)"
843
  msgstr ""
844
 
845
+ #: my-calendar-event-manager.php:714
846
  msgid "Hide end time"
847
  msgstr ""
848
 
849
+ #: my-calendar-event-manager.php:720
850
  msgid "This is a multi-day event."
851
  msgstr ""
852
 
853
+ #: my-calendar-event-manager.php:722
854
  msgid ""
855
  "Enter the beginning and ending dates/times for each occurrence of the event."
856
  msgstr ""
857
 
858
+ #: my-calendar-event-manager.php:722
859
  msgid ""
860
  "If this is a multi-day event, it creates a single event with multiple dates/"
861
  "times; otherwise it creates separate events for each occurrence."
862
  msgstr ""
863
 
864
+ #: my-calendar-event-manager.php:724
865
  msgid "Add another occurrence"
866
  msgstr ""
867
 
868
+ #: my-calendar-event-manager.php:725
869
  msgid "Remove last occurrence"
870
  msgstr ""
871
 
872
+ #: my-calendar-event-manager.php:729
873
  msgid "Dates for this event:"
874
  msgstr ""
875
 
876
+ #: my-calendar-event-manager.php:730
877
  msgid ""
878
  "Editing a single date of an event changes only that event. Editing the root "
879
  "event changes all events in the series."
880
  msgstr ""
881
 
882
+ #: my-calendar-event-manager.php:740
883
  msgid "Related Events:"
884
  msgstr ""
885
 
886
+ #: my-calendar-event-manager.php:740
887
  msgid "Edit group"
888
  msgstr ""
889
 
890
+ #: my-calendar-event-manager.php:747
891
  msgid "Current time difference from GMT is "
892
  msgstr ""
893
 
894
+ #: my-calendar-event-manager.php:747
895
  msgid " hour(s)"
896
  msgstr ""
897
 
898
+ #: my-calendar-event-manager.php:752 my-calendar-event-manager.php:985
899
+ msgid "Save Event"
900
+ msgstr ""
901
+
902
+ #: my-calendar-event-manager.php:760 my-calendar-event-manager.php:776
903
  msgid "Recurring Events"
904
  msgstr ""
905
 
906
+ #: my-calendar-event-manager.php:779
907
  msgid "Repeats"
908
  msgstr ""
909
 
910
+ #: my-calendar-event-manager.php:779
911
  msgid "times"
912
  msgstr ""
913
 
914
+ #: my-calendar-event-manager.php:780
915
  msgid "every"
916
  msgstr ""
917
 
918
+ #: my-calendar-event-manager.php:781
919
  msgid "Units"
920
  msgstr ""
921
 
922
+ #: my-calendar-event-manager.php:784
923
  msgid ""
924
  "Your entry is the number of events after the first occurrence of the event: "
925
  "a recurrence of <em>2</em> means the event will happen three times."
926
  msgstr ""
927
 
928
+ #: my-calendar-event-manager.php:805
929
  msgid "Event Registration Settings"
930
  msgstr ""
931
 
932
+ #: my-calendar-event-manager.php:808
933
+ msgid "Event Registration"
 
 
 
 
 
 
 
 
 
 
934
  msgstr ""
935
 
936
+ #: my-calendar-event-manager.php:826 my-calendar-event-manager.php:829
937
+ #: my-calendar-group-manager.php:430 my-calendar-group-manager.php:433
 
 
 
 
 
 
 
 
 
 
 
 
 
938
  #: my-calendar-locations.php:129
939
  msgid "Event Location"
940
  msgstr ""
941
 
942
+ #: my-calendar-event-manager.php:836 my-calendar-group-manager.php:440
943
  msgid "Choose a preset location:"
944
  msgstr ""
945
 
946
+ #: my-calendar-event-manager.php:846 my-calendar-group-manager.php:453
947
  msgid "Add recurring locations for later use."
948
  msgstr ""
949
 
950
+ #: my-calendar-event-manager.php:853 my-calendar-group-manager.php:462
951
  #: my-calendar-locations.php:131
952
  msgid ""
953
  "All location fields are optional: <em>insufficient information may result in "
954
  "an inaccurate map</em>."
955
  msgstr ""
956
 
957
+ #: my-calendar-event-manager.php:855
958
  msgid "Copy this location into the locations table"
959
  msgstr ""
960
 
961
+ #: my-calendar-event-manager.php:857 my-calendar-group-manager.php:465
962
  #: my-calendar-locations.php:134
963
  msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
964
  msgstr ""
965
 
966
+ #: my-calendar-event-manager.php:866 my-calendar-group-manager.php:468
967
  #: my-calendar-locations.php:143
968
  msgid "Street Address"
969
  msgstr ""
970
 
971
+ #: my-calendar-event-manager.php:869 my-calendar-group-manager.php:471
972
  #: my-calendar-locations.php:146
973
  msgid "Street Address (2)"
974
  msgstr ""
975
 
976
+ #: my-calendar-event-manager.php:872 my-calendar-group-manager.php:474
977
  #: my-calendar-locations.php:149
978
  msgid "Phone"
979
  msgstr ""
980
 
981
+ #: my-calendar-event-manager.php:882 my-calendar-group-manager.php:477
982
+ #: my-calendar-locations.php:159 my-calendar-settings.php:910
983
  msgid "State/Province"
984
  msgstr ""
985
 
986
+ #: my-calendar-event-manager.php:916 my-calendar-group-manager.php:487
987
  #: my-calendar-locations.php:191
988
  msgid "Initial Zoom"
989
  msgstr ""
990
 
991
+ #: my-calendar-event-manager.php:918 my-calendar-group-manager.php:489
992
  #: my-calendar-locations.php:193
993
  msgid "Neighborhood"
994
  msgstr ""
995
 
996
+ #: my-calendar-event-manager.php:919 my-calendar-group-manager.php:490
997
  #: my-calendar-locations.php:194
998
  msgid "Small City"
999
  msgstr ""
1000
 
1001
+ #: my-calendar-event-manager.php:920 my-calendar-group-manager.php:491
1002
  #: my-calendar-locations.php:195
1003
  msgid "Large City"
1004
  msgstr ""
1005
 
1006
+ #: my-calendar-event-manager.php:921 my-calendar-group-manager.php:492
1007
  #: my-calendar-locations.php:196
1008
  msgid "Greater Metro Area"
1009
  msgstr ""
1010
 
1011
+ #: my-calendar-event-manager.php:927 my-calendar-group-manager.php:498
1012
  msgid "Location URL"
1013
  msgstr ""
1014
 
1015
+ #: my-calendar-event-manager.php:930 my-calendar-group-manager.php:501
1016
  #: my-calendar-locations.php:205
1017
  msgid "GPS Coordinates (optional)"
1018
  msgstr ""
1019
 
1020
+ #: my-calendar-event-manager.php:932 my-calendar-group-manager.php:503
1021
  msgid ""
1022
  "If you supply GPS coordinates for your location, they will be used in place "
1023
  "of any other address information to provide your map link."
1024
  msgstr ""
1025
 
1026
+ #: my-calendar-event-manager.php:935 my-calendar-group-manager.php:506
1027
  #: my-calendar-locations.php:210
1028
  msgid "Latitude"
1029
  msgstr ""
1030
 
1031
+ #: my-calendar-event-manager.php:935 my-calendar-group-manager.php:506
1032
  #: my-calendar-locations.php:211
1033
  msgid "Longitude"
1034
  msgstr ""
1035
 
1036
+ #: my-calendar-event-manager.php:964
1037
  msgid "Special scheduling options"
1038
  msgstr ""
1039
 
1040
+ #: my-calendar-event-manager.php:967
1041
  msgid "Special Options"
1042
  msgstr ""
1043
 
1044
+ #: my-calendar-event-manager.php:969
1045
  msgid ""
1046
  "Cancel this event if it occurs on a date with an event in the Holidays "
1047
  "category"
1048
  msgstr ""
1049
 
1050
+ #: my-calendar-event-manager.php:972
1051
  msgid ""
1052
  "If this event recurs, and falls on the 5th week of the month in a month with "
1053
  "only four weeks, move it back one week."
1054
  msgstr ""
1055
 
1056
+ #: my-calendar-event-manager.php:1046
1057
  msgid "Clear filters"
1058
  msgstr ""
1059
 
1060
+ #: my-calendar-event-manager.php:1067
1061
  msgid "Spam"
1062
  msgstr ""
1063
 
1064
+ #: my-calendar-event-manager.php:1072 my-calendar-templates.php:277
1065
  msgid "Published"
1066
  msgstr ""
1067
 
1068
+ #: my-calendar-event-manager.php:1073 my-calendar-templates.php:277
1069
  msgid "Reserved"
1070
  msgstr ""
1071
 
1072
+ #: my-calendar-event-manager.php:1074 my-calendar-group-manager.php:730
1073
  msgid "All"
1074
  msgstr ""
1075
 
1076
+ #: my-calendar-event-manager.php:1085
1077
  msgid "&laquo; Previous Page"
1078
  msgstr ""
1079
 
1080
+ #: my-calendar-event-manager.php:1086
1081
  msgid "Next Page &raquo;"
1082
  msgstr ""
1083
 
1084
+ #: my-calendar-event-manager.php:1103 my-calendar-event-manager.php:1218
1085
  msgid "Delete checked events"
1086
  msgstr ""
1087
 
1088
+ #: my-calendar-event-manager.php:1105 my-calendar-event-manager.php:1220
1089
  msgid "Approve checked events"
1090
  msgstr ""
1091
 
1092
+ #: my-calendar-event-manager.php:1112 my-calendar-group-manager.php:252
1093
  msgid "Check/Uncheck all"
1094
  msgstr ""
1095
 
1096
+ #: my-calendar-event-manager.php:1113 my-calendar-group-manager.php:751
1097
+ #: my-calendar-settings.php:386 my-calendar-widgets.php:62
1098
+ #: my-calendar-widgets.php:161 my-calendar-widgets.php:667
1099
  msgid "Title"
1100
  msgstr ""
1101
 
1102
+ #: my-calendar-event-manager.php:1114 my-calendar-locations.php:289
1103
  msgid "Location"
1104
  msgstr ""
1105
 
1106
+ #: my-calendar-event-manager.php:1115 my-calendar-settings.php:343
1107
  msgid "Date/Time"
1108
  msgstr ""
1109
 
1110
+ #: my-calendar-event-manager.php:1116 my-calendar-group-manager.php:755
1111
+ #: my-calendar-settings.php:389
1112
  msgid "Author"
1113
  msgstr ""
1114
 
1115
+ #: my-calendar-event-manager.php:1117 my-calendar-group-manager.php:756
1116
+ #: my-calendar-output.php:132 my-calendar-settings.php:390
1117
+ #: my-calendar-templates.php:275
1118
  msgid "Category"
1119
  msgstr ""
1120
 
1121
+ #: my-calendar-event-manager.php:1135
1122
  msgid "Possible spam"
1123
  msgstr ""
1124
 
1125
+ #: my-calendar-event-manager.php:1150
1126
  msgid "Copy"
1127
  msgstr ""
1128
 
1129
+ #: my-calendar-event-manager.php:1153 my-calendar-group-manager.php:788
1130
+ #: my-calendar-output.php:300
1131
  msgid "Edit Group"
1132
  msgstr ""
1133
 
1134
+ #: my-calendar-event-manager.php:1156 my-calendar-group-manager.php:792
1135
  msgid "Not editable."
1136
  msgstr ""
1137
 
1138
+ #: my-calendar-event-manager.php:1160
1139
  msgid "Reject"
1140
  msgstr ""
1141
 
1142
+ #: my-calendar-event-manager.php:1160
1143
  msgid "Approve"
1144
  msgstr ""
1145
 
1146
+ #: my-calendar-event-manager.php:1165
1147
  msgid "Approved"
1148
  msgstr ""
1149
 
1150
+ #: my-calendar-event-manager.php:1166
1151
  msgid "Rejected"
1152
  msgstr ""
1153
 
1154
+ #: my-calendar-event-manager.php:1167
1155
  msgid "Awaiting Approval"
1156
  msgstr ""
1157
 
1158
+ #: my-calendar-event-manager.php:1173
1159
  msgid "Filter by location"
1160
  msgstr ""
1161
 
1162
+ #: my-calendar-event-manager.php:1173 my-calendar-event-manager.php:1201
1163
+ #: my-calendar-event-manager.php:1210
1164
  msgid "Show only: "
1165
  msgstr ""
1166
 
1167
+ #: my-calendar-event-manager.php:1177 my-calendar-group-manager.php:754
1168
+ msgid "Recurs"
1169
  msgstr ""
1170
 
1171
+ #: my-calendar-event-manager.php:1185 my-calendar-group-manager.php:805
1172
  msgid "Never"
1173
  msgstr ""
1174
 
1175
+ #: my-calendar-event-manager.php:1186 my-calendar-group-manager.php:806
1176
+ #: my-calendar-templates.php:175
1177
  msgid "Daily"
1178
  msgstr ""
1179
 
1180
+ #: my-calendar-event-manager.php:1186
1181
  msgid "Every %d days"
1182
  msgstr ""
1183
 
1184
+ #: my-calendar-event-manager.php:1187 my-calendar-group-manager.php:807
1185
  msgid "Weekdays"
1186
  msgstr ""
1187
 
1188
+ #: my-calendar-event-manager.php:1187
1189
  msgid "Every %d weekdays"
1190
  msgstr ""
1191
 
1192
+ #: my-calendar-event-manager.php:1188 my-calendar-group-manager.php:808
1193
+ #: my-calendar-templates.php:177
1194
  msgid "Weekly"
1195
  msgstr ""
1196
 
1197
+ #: my-calendar-event-manager.php:1188
1198
  msgid "Every %d weeks"
1199
  msgstr ""
1200
 
1201
+ #: my-calendar-event-manager.php:1189 my-calendar-group-manager.php:809
1202
  msgid "Bi-Weekly"
1203
  msgstr ""
1204
 
1205
+ #: my-calendar-event-manager.php:1190 my-calendar-group-manager.php:810
1206
  msgid "Monthly (by date)"
1207
  msgstr ""
1208
 
1209
+ #: my-calendar-event-manager.php:1190
1210
  msgid "Every %d months (by date)"
1211
  msgstr ""
1212
 
1213
+ #: my-calendar-event-manager.php:1191 my-calendar-group-manager.php:811
1214
  msgid "Monthly (by day)"
1215
  msgstr ""
1216
 
1217
+ #: my-calendar-event-manager.php:1192 my-calendar-group-manager.php:812
1218
  msgid "Yearly"
1219
  msgstr ""
1220
 
1221
+ #: my-calendar-event-manager.php:1192
1222
  msgid "Every %d years"
1223
  msgstr ""
1224
 
1225
+ #: my-calendar-event-manager.php:1196 my-calendar-event-manager.php:1197
1226
  msgid "&ndash; %d Times"
1227
  msgstr ""
1228
 
1229
+ #: my-calendar-event-manager.php:1201
1230
  msgid "Filter by author"
1231
  msgstr ""
1232
 
1233
+ #: my-calendar-event-manager.php:1210
1234
  msgid "Filter by category"
1235
  msgstr ""
1236
 
1237
+ #: my-calendar-event-manager.php:1231
1238
  msgid "There are no events in the database meeting your current criteria."
1239
  msgstr ""
1240
 
1241
+ #: my-calendar-event-manager.php:1375
1242
  msgid ""
1243
  "Your event end date must be either after or the same as your event begin date"
1244
  msgstr ""
1245
 
1246
+ #: my-calendar-event-manager.php:1378
1247
  msgid ""
1248
  "Your date formatting is correct but one or more of your dates is invalid. "
1249
  "Check for number of days in month and leap year related errors."
1250
  msgstr ""
1251
 
1252
+ #: my-calendar-event-manager.php:1388
1253
  msgid ""
1254
  "The time field must either be blank or be entered in the format hh:mm am/pm"
1255
  msgstr ""
1256
 
1257
+ #: my-calendar-event-manager.php:1395
1258
  msgid ""
1259
  "The end time field must either be blank or be entered in the format hh:mm am/"
1260
  "pm"
1261
  msgstr ""
1262
 
1263
+ #: my-calendar-event-manager.php:1411 my-calendar-group-manager.php:603
1264
  msgid "The event title must be between 1 and 255 characters in length."
1265
  msgstr ""
1266
 
1267
+ #: my-calendar-event-manager.php:1418
1268
  msgid "The repetition value must be 0 unless a type of recurrence is selected."
1269
  msgstr ""
1270
 
1271
+ #: my-calendar-event-manager.php:1423
1272
  msgid "That event conflicts with a previously scheduled event."
1273
  msgstr ""
1274
 
1275
+ #: my-calendar-event-manager.php:1612
1276
  msgid "Editing: "
1277
  msgstr ""
1278
 
1279
+ #: my-calendar-event-manager.php:1648 my-calendar-event-manager.php:1661
1280
  msgid "No related events"
1281
  msgstr ""
1282
 
1283
+ #: my-calendar-event-manager.php:1683 my-calendar-group-manager.php:406
1284
+ msgid ""
1285
+ "My Calendar does not manage event registrations. Use this for information "
1286
+ "only."
1287
+ msgstr ""
1288
+
1289
+ #: my-calendar-event-manager.php:1687 my-calendar-group-manager.php:408
1290
+ msgid "Open"
1291
+ msgstr ""
1292
+
1293
+ #: my-calendar-event-manager.php:1690 my-calendar-group-manager.php:409
1294
+ msgid "Closed"
1295
+ msgstr ""
1296
+
1297
+ #: my-calendar-event-manager.php:1697 my-calendar-group-manager.php:410
1298
+ msgid "Does not apply"
1299
+ msgstr ""
1300
+
1301
+ #: my-calendar-event-manager.php:1702 my-calendar-group-manager.php:413
1302
+ msgid ""
1303
+ "If this event recurs, it can only be registered for as a complete series."
1304
+ msgstr ""
1305
+
1306
+ #: my-calendar-group-manager.php:56
1307
  msgid "Event not updated."
1308
  msgstr ""
1309
 
1310
+ #: my-calendar-group-manager.php:82
1311
  msgid "Event not grouped."
1312
  msgstr ""
1313
 
1314
+ #: my-calendar-group-manager.php:86
1315
  msgid "Event grouped successfully"
1316
  msgstr ""
1317
 
1318
+ #: my-calendar-group-manager.php:101 my-calendar-group-manager.php:393
1319
+ #: my-calendar-group-manager.php:517
1320
  msgid "Edit Event Group"
1321
  msgstr ""
1322
 
1323
+ #: my-calendar-group-manager.php:104
1324
  msgid "You must provide an event group id in order to edit it"
1325
  msgstr ""
1326
 
1327
+ #: my-calendar-group-manager.php:111 my-calendar-group-manager.php:119
1328
  #: my-calendar-group-manager.php:306 my-calendar.php:351
1329
  msgid "Manage Event Groups"
1330
  msgstr ""
1331
 
1332
+ #: my-calendar-group-manager.php:112
1333
  msgid ""
1334
  "Grouped events can be edited simultaneously. When you choose a group of "
1335
  "events to edit, the form will be pre-filled with the content applicable to "
1340
  "changes applied. (All grouped events can also be edited individually.)"
1341
  msgstr ""
1342
 
1343
+ #: my-calendar-group-manager.php:113
1344
  msgid ""
1345
  "The following fields will never be changed when editing groups: registration "
1346
  "availability, event publication status, spam flagging, event recurrence, "
1347
  "event repetitions, and the start and end dates and times for that event."
1348
  msgstr ""
1349
 
1350
+ #: my-calendar-group-manager.php:121
1351
  msgid "Select an event group to edit."
1352
  msgstr ""
1353
 
1373
  msgid "You must provide a group ID to edit groups"
1374
  msgstr ""
1375
 
1376
+ #: my-calendar-group-manager.php:311 my-calendar-group-manager.php:319
1377
+ #: my-calendar-group-manager.php:327 my-calendar-group-manager.php:340
1378
+ #: my-calendar-group-manager.php:352 my-calendar-group-manager.php:356
1379
  #: my-calendar-group-manager.php:376 my-calendar-group-manager.php:388
1380
+ #: my-calendar-group-manager.php:405 my-calendar-group-manager.php:465
1381
+ #: my-calendar-group-manager.php:468 my-calendar-group-manager.php:471
1382
+ #: my-calendar-group-manager.php:474 my-calendar-group-manager.php:477
1383
+ #: my-calendar-group-manager.php:480 my-calendar-group-manager.php:481
1384
+ #: my-calendar-group-manager.php:484 my-calendar-group-manager.php:487
1385
+ #: my-calendar-group-manager.php:498 my-calendar-group-manager.php:506
1386
  msgid "Fields do not match"
1387
  msgstr ""
1388
 
1389
+ #: my-calendar-group-manager.php:319
1390
  msgid "Selected dates are a single multi-day event."
1391
  msgstr ""
1392
 
1393
+ #: my-calendar-group-manager.php:402
1394
  msgid "Event Registration Options"
1395
  msgstr ""
1396
 
1397
+ #: my-calendar-group-manager.php:405
1398
+ msgid "Event Registration Status"
1399
+ msgstr ""
1400
+
1401
+ #: my-calendar-group-manager.php:725
1402
  msgid "Create/Modify Groups"
1403
  msgstr ""
1404
 
1405
+ #: my-calendar-group-manager.php:728
1406
  msgid "Grouped Events"
1407
  msgstr ""
1408
 
1409
+ #: my-calendar-group-manager.php:729
1410
  msgid "Ungrouped Events"
1411
  msgstr ""
1412
 
1413
+ #: my-calendar-group-manager.php:734
1414
  msgid "Check a set of events to group them for mass editing."
1415
  msgstr ""
1416
 
1417
+ #: my-calendar-group-manager.php:744 my-calendar-group-manager.php:836
1418
  msgid "Group checked events for mass editing"
1419
  msgstr ""
1420
 
1421
+ #: my-calendar-group-manager.php:750
1422
  msgid "Group"
1423
  msgstr ""
1424
 
1425
+ #: my-calendar-group-manager.php:752
1426
  msgid "Where"
1427
  msgstr ""
1428
 
1429
+ #: my-calendar-group-manager.php:753
1430
  msgid "Starts"
1431
  msgstr ""
1432
 
1433
+ #: my-calendar-group-manager.php:790
 
 
 
 
1434
  msgid "Ungrouped"
1435
  msgstr ""
1436
 
1437
+ #: my-calendar-group-manager.php:815
1438
  msgid "Forever"
1439
  msgstr ""
1440
 
1441
+ #: my-calendar-group-manager.php:816
1442
  msgid "%d Times"
1443
  msgstr ""
1444
 
1445
+ #: my-calendar-group-manager.php:842
1446
  msgid "There are no events in the database!"
1447
  msgstr ""
1448
 
1449
+ #: my-calendar-help.php:7
1450
  msgid "How to use My Calendar"
1451
  msgstr ""
1452
 
1453
+ #: my-calendar-help.php:13 my-calendar.php:174 my-calendar.php:357
1454
  msgid "My Calendar Help"
1455
  msgstr ""
1456
 
1457
+ #: my-calendar-help.php:17
1458
  msgid "Shortcodes"
1459
  msgstr ""
1460
 
1461
+ #: my-calendar-help.php:18
1462
  msgid "Icons"
1463
  msgstr ""
1464
 
1465
+ #: my-calendar-help.php:19
1466
  msgid "Styles"
1467
  msgstr ""
1468
 
1469
+ #: my-calendar-help.php:20
1470
  msgid "Templating"
1471
  msgstr ""
1472
 
1473
+ #: my-calendar-help.php:21
1474
  msgid "Support Form"
1475
  msgstr ""
1476
 
1477
+ #: my-calendar-help.php:22 my-calendar-help.php:360
1478
  msgid "Helpful Information"
1479
  msgstr ""
1480
 
1481
+ #: my-calendar-help.php:30 my-calendar.php:172
1482
  msgid "Getting Started"
1483
  msgstr ""
1484
 
1485
+ #: my-calendar-help.php:33
1486
  msgid ""
1487
  "Although the My Calendar plug-in is very complicated in terms of what can be "
1488
  "customized, the basic usage is quite simple."
1489
  msgstr ""
1490
 
1491
+ #: my-calendar-help.php:36
1492
  msgid "Add the My Calendar shortcode (<code>[my_calendar]</code>) to a page."
1493
  msgstr ""
1494
 
1495
+ #: my-calendar-help.php:37
1496
  msgid ""
1497
  "Add events by clicking on the Add/Edit Events link in the admin sidebar or "
1498
  "on \"Add Events\" in the admin toolbar."
1499
  msgstr ""
1500
 
1501
+ #: my-calendar-help.php:38
1502
  msgid "Select your preferred stylesheet in the Styles Editor"
1503
  msgstr ""
1504
 
1505
+ #: my-calendar-help.php:41
1506
  msgid ""
1507
  "Read more of the basic help documentation on this page or purchase the My "
1508
  "Calendar User's Guide to customize further -- but the above is all that you "
1509
  "need to do to begin using the calendar."
1510
  msgstr ""
1511
 
1512
+ #: my-calendar-help.php:49
1513
  msgid "Shortcode Syntax"
1514
  msgstr ""
1515
 
1516
+ #: my-calendar-help.php:52
1517
  msgid "These shortcodes can be used in Posts, Pages, or in text widgets."
1518
  msgstr ""
1519
 
1520
+ #: my-calendar-help.php:54
1521
  msgid "Main Calendar Shortcode (List or Grid, Weekly or Monthly view)"
1522
  msgstr ""
1523
 
1524
+ #: my-calendar-help.php:57
1525
  msgid ""
1526
  "This basic shortcode will show the one-week view of the calendar on a post "
1527
  "or page including all categories and the category key, in a list format. The "
1529
  "link to the print format (if enabled) will be shown below."
1530
  msgstr ""
1531
 
1532
+ #: my-calendar-help.php:61
1533
  msgid "The shortcode supports these attributes:"
1534
  msgstr ""
1535
 
1536
+ #: my-calendar-help.php:64
1537
  msgid ""
1538
  "Names or IDs of categories included in this calendar, comma or pipe "
1539
  "separated."
1540
  msgstr ""
1541
 
1542
+ #: my-calendar-help.php:65
1543
  msgid ""
1544
  "Either \"list\" or \"mini\" to show the list view or the mini calendar; "
1545
  "exclude or any other value to show the main grid calendar."
1546
  msgstr ""
1547
 
1548
+ #: my-calendar-help.php:66
1549
  msgid ""
1550
  "Comma-separated list of navigational features to display above or below the "
1551
+ "calendar. Available: <strong>nav, toggle, jump, print, key, feeds, "
1552
+ "timeframe</strong>. Order listed determines the order displayed. Feed links "
1553
+ "and print view will only display if they are enabled on the settings page. "
1554
+ "All other fields will appear if specified; the defaults specified in "
1555
+ "settings will be used if the attribute is left blank. Use <em>none</em> to "
1556
+ "hide all navigation elements."
1557
  msgstr ""
1558
 
1559
+ #: my-calendar-help.php:67
1560
  msgid ""
1561
  "Set to \"week\" to show a one week view or to \"day\" to show a single day "
1562
  "view. Any other value will show a month view. (Day view shows as a list "
1563
  "regardless of format setting.)"
1564
  msgstr ""
1565
 
1566
+ #: my-calendar-help.php:68
1567
  msgid "The type of location data to restrict by."
1568
  msgstr ""
1569
 
1570
+ #: my-calendar-help.php:69
1571
  msgid "The specific location information to filter to."
1572
  msgstr ""
1573
 
1574
+ #: my-calendar-help.php:70
1575
  msgid ""
1576
  "Author or comma-separated list of authors (usernames or IDs) to show events "
1577
  "from."
1578
  msgstr ""
1579
 
1580
+ #: my-calendar-help.php:71
1581
  msgid ""
1582
  "Host or comma-separated list of hosts (WordPress usernames or IDs) to show "
1583
  "events from."
1584
  msgstr ""
1585
 
1586
+ #: my-calendar-help.php:72
1587
  msgid ""
1588
  "String to give this specific calendar shortcode a unique ID. Use when "
1589
  "showing multiple calendars in a Page or post."
1590
  msgstr ""
1591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1592
  #: my-calendar-help.php:75
1593
  msgid ""
1594
+ "The main My Calendar shortcode can be generated from a button in your post "
1595
  "and page editor. The mini calendar can also be accessed and configured as a "
1596
  "widget."
1597
  msgstr ""
1602
 
1603
  #: my-calendar-help.php:80
1604
  msgid ""
1605
+ "Displays the output of the Upcoming Events widget. The <code>before</code> "
1606
+ "and <code>after</code> attributes should be numbers; the <code>type</code> "
1607
+ "attribute can be either \"event\" or \"days\", and the <code>category</code> "
1608
+ "and <code>author</code> attributes work the same way as on the main calendar "
1609
+ "shortcode. Templates work using the template codes listed below. "
1610
+ "<code>fallback</code> provides text in case there are no events meeting your "
1611
+ "criteria. Order provides a sort order for the events list &ndash; either "
1612
+ "ascending (<code>asc</code>) or descending (<code>desc</code>). "
1613
+ "<code>show_today</code> is an indicator whether or not to include today's "
1614
+ "events in the list. <code>Skip</code> is the number of events to skip in the "
1615
+ "upcoming events."
1616
  msgstr ""
1617
 
1618
  #: my-calendar-help.php:84
1619
  msgid ""
1620
+ "Displays the output of the Today's Events widget, with four configurable "
1621
+ "attributes: category, author, template and fallback text."
 
1622
  msgstr ""
1623
 
1624
  #: my-calendar-help.php:87
1639
 
1640
  #: my-calendar-help.php:98
1641
  msgid ""
1642
+ "List of event locations, either as a list of links or as a select form. The "
1643
+ "<code>show</code> attribute can either be <code>list</code> or <code>form</"
1644
+ "code>, <code>type</code> is either <code>saved</code> (to show items from "
1645
+ "your stored locations), or <code>custom</code> (to show the options "
1646
+ "configured in your user settings). <code>datatype</code> must be the type of "
1647
+ "data your limits are choosing from: <code>name</code> (business name), "
1648
+ "<code>city</code>, <code>state</code>, <code>country</code>, <code>zip</"
1649
+ "code> (postal code), or <code>region</code>."
 
1650
  msgstr ""
1651
 
1652
  #: my-calendar-help.php:102
1653
  msgid ""
1654
+ "Display a list of locations. The <code>datatype</code> is the type of data "
1655
+ "displayed; all lists will include a link to the map of that location. In "
1656
+ "addition to basic location information as in the above shortcode, you can "
1657
+ "also use \"hcard\" to display all available location information."
 
1658
  msgstr ""
1659
 
1660
  #: my-calendar-help.php:103
1661
  msgid ""
1662
+ "Use the <code>template</code> attribute to show your customized set of data. "
1663
+ "Sorted by the <code>datatype</code> value."
1664
  msgstr ""
1665
 
1666
  #: my-calendar-help.php:107
1667
  msgid ""
1668
+ "List of event categories, either as a list of links or as a select dropdown "
1669
+ "form. The <code>show</code> attribute can either be <code>list</code> or "
1670
+ "<code>form</code>."
1671
  msgstr ""
1672
 
1673
+ #: my-calendar-help.php:114
1674
  msgid "Category Icons"
1675
  msgstr ""
1676
 
1677
+ #: my-calendar-help.php:117
1678
  msgid ""
1679
  "My Calendar is designed to manage multiple calendars. The basis for these "
1680
+ "calendars are categories; you can setup a calendar page which includes all "
1681
+ "categories, or you can dedicate separate pages to calendars in each "
1682
+ "category. For an example, this might be useful for you in managing the tour "
1683
+ "calendars for multiple bands; event calendars for a variety of locations, "
1684
+ "etc."
1685
  msgstr ""
1686
 
1687
+ #: my-calendar-help.php:120
1688
  msgid ""
1689
+ "The pre-installed category icons may not be what you need. I assume that "
1690
+ "you'll upload your own icons -- place your custom icons in a folder at \"my-"
1691
+ "calendar-custom\" to avoid having them overwritten by upgrades."
 
 
 
 
 
 
1692
  msgstr ""
1693
 
1694
+ #: my-calendar-help.php:120
1695
  msgid "You can alternately place icons in:"
1696
  msgstr ""
1697
 
1698
+ #: my-calendar-help.php:128
1699
  msgid "Custom Styles"
1700
  msgstr ""
1701
 
1702
+ #: my-calendar-help.php:131
1703
  msgid ""
1704
+ "My Calendar comes with five default stylesheets. My Calendar will retain "
1705
+ "your changes to stylesheets, but if you want to add an entirely new "
1706
+ "stylesheet, you may wish to store it in the My Calendar custom styles "
1707
+ "directory."
1708
  msgstr ""
1709
 
1710
+ #: my-calendar-help.php:134
1711
+ msgid "Your custom style directory is"
1712
  msgstr ""
1713
 
1714
  #: my-calendar-help.php:137
 
 
 
 
1715
  msgid ""
1716
+ "You can also add custom styles to your custom directory or your theme "
1717
+ "directory for print styles, mobile styles, and tablet styles. <code>mc-print."
1718
+ "css</code>, <code>mc-mobile.css</code>, and <code>mc-tablet.css</code>."
1719
  msgstr ""
1720
 
1721
+ #: my-calendar-help.php:145
1722
  msgid "Widget Templating"
1723
  msgstr ""
1724
 
1725
+ #: my-calendar-help.php:148
1726
  msgid ""
1727
  "All template tags support two attributes: before=\"value\" and after=\"value"
1728
  "\". The values of the attributes will be placed before and after the output "
1730
  "quotes."
1731
  msgstr ""
1732
 
1733
+ #: my-calendar-help.php:151
1734
  msgid ""
1735
  "Date/Time template tags support the \"format\" attribute: format=\"M, Y\", "
1736
  "where the value is a PHP formatted date string. Only <code>dtstart</code> "
1737
  "and <code>dtend</code> include the full date/time information for formatting."
1738
  msgstr ""
1739
 
1740
+ #: my-calendar-help.php:154
1741
  msgid "Example:"
1742
  msgstr ""
1743
 
1744
+ #: my-calendar-help.php:156 my-calendar.php:198
1745
  msgid "Event Template Tags"
1746
  msgstr ""
1747
 
1748
+ #: my-calendar-help.php:159
1749
  msgid "Displays the title of the event."
1750
  msgstr ""
1751
 
1752
+ #: my-calendar-help.php:162
1753
  msgid ""
1754
  "Displays title of the event as a link if a URL is present, or the title "
1755
  "alone if no URL is available."
1756
  msgstr ""
1757
 
1758
+ #: my-calendar-help.php:165
1759
  msgid "Displays the start time for the event."
1760
  msgstr ""
1761
 
1762
+ #: my-calendar-help.php:168
1763
  msgid ""
1764
  "Displays the start time for the event adjusted to the current user's time "
1765
  "zone settings. Returns <code>{time}</code> if user settings are disabled or "
1766
  "if the user has not selected a preferred time zone."
1767
  msgstr ""
1768
 
1769
+ #: my-calendar-help.php:171
1770
  msgid ""
1771
  "Displays the end time for the event adjusted to the current user's time zone "
1772
  "settings. Returns <code>{endtime}</code> if user settings are disabled or if "
1773
  "the user has not selected a preferred time zone."
1774
  msgstr ""
1775
 
1776
+ #: my-calendar-help.php:174
1777
  msgid "Displays the date on which the event begins."
1778
  msgstr ""
1779
 
1780
+ #: my-calendar-help.php:177
1781
  msgid ""
1782
  "Displays the date on which the series of events began (for recurring events)."
1783
  msgstr ""
1784
 
1785
+ #: my-calendar-help.php:180
1786
  msgid "Displays the date on which the event ends."
1787
  msgstr ""
1788
 
1789
+ #: my-calendar-help.php:183
1790
  msgid "Displays the time at which the event ends."
1791
  msgstr ""
1792
 
1793
+ #: my-calendar-help.php:186
1794
  msgid ""
1795
  "Displays the beginning date to the end date for events. Does not show end "
1796
  "date if same as start date."
1797
  msgstr ""
1798
 
1799
+ #: my-calendar-help.php:189
1800
  msgid ""
1801
  "Displays the beginning and end times for events. Does not show end time if "
1802
  "same as start or if marked as hidden."
1803
  msgstr ""
1804
 
1805
+ #: my-calendar-help.php:192
1806
  msgid "Timestamp for beginning of event."
1807
  msgstr ""
1808
 
1809
+ #: my-calendar-help.php:195
1810
  msgid "Timestamp for end of event."
1811
  msgstr ""
1812
 
1813
+ #: my-calendar-help.php:198
1814
  msgid ""
1815
  "For multi-day events displays an unordered list of dates and times for "
1816
  "events in this group. Otherwise, beginning date/time."
1817
  msgstr ""
1818
 
1819
+ #: my-calendar-help.php:201
1820
  msgid "Displays the WordPress author who posted the event."
1821
  msgstr ""
1822
 
1823
+ #: my-calendar-help.php:204
1824
  msgid "Displays the gravatar image for the event author."
1825
  msgstr ""
1826
 
1827
+ #: my-calendar-help.php:207
1828
  msgid "Displays the name of the person assigned as host for the event."
1829
  msgstr ""
1830
 
1831
+ #: my-calendar-help.php:210
1832
  msgid ""
1833
  "Displays the email address of the person assigned as host for the event."
1834
  msgstr ""
1835
 
1836
+ #: my-calendar-help.php:213
1837
  msgid "Displays the gravatar image for the event host."
1838
  msgstr ""
1839
 
1840
+ #: my-calendar-help.php:216
1841
  msgid "Displays the short version of the event description."
1842
  msgstr ""
1843
 
1844
+ #: my-calendar-help.php:219
1845
  msgid "Displays short description without converting paragraphs."
1846
  msgstr ""
1847
 
1848
+ #: my-calendar-help.php:222
1849
  msgid "Displays short description with any HTML stripped out."
1850
  msgstr ""
1851
 
1852
+ #: my-calendar-help.php:225
1853
  msgid "Displays the description of the event."
1854
  msgstr ""
1855
 
1856
+ #: my-calendar-help.php:228
1857
  msgid "Displays description without converting paragraphs."
1858
  msgstr ""
1859
 
1860
+ #: my-calendar-help.php:231
1861
  msgid "Displays description with any HTML stripped out."
1862
  msgstr ""
1863
 
1864
+ #: my-calendar-help.php:234
1865
  msgid "Image associated with the event. (HTMl)"
1866
  msgstr ""
1867
 
1868
+ #: my-calendar-help.php:237
1869
  msgid "Image associated with the event. (image URL only)"
1870
  msgstr ""
1871
 
1872
+ #: my-calendar-help.php:240
1873
  msgid "Displays the URL provided for the event."
1874
  msgstr ""
1875
 
1876
+ #: my-calendar-help.php:243
1877
  msgid "Produces the URL to download an iCal formatted record for the event."
1878
  msgstr ""
1879
 
1880
+ #: my-calendar-help.php:246
1881
  msgid ""
1882
  "Produces a hyperlink to download an iCal formatted record for the event."
1883
  msgstr ""
1884
 
1885
+ #: my-calendar-help.php:249
1886
  msgid "Shows the recurrence status of the event. (Daily, Weekly, etc.)"
1887
  msgstr ""
1888
 
1889
+ #: my-calendar-help.php:252
1890
  msgid "Shows the number of repetitions of the event."
1891
  msgstr ""
1892
 
1893
+ #: my-calendar-help.php:255
1894
  msgid ""
1895
  "Provides a link to an auto-generated page containing all information on the "
1896
  "given event."
1897
  msgstr ""
1898
 
1899
+ #: my-calendar-help.php:255 my-calendar-help.php:258
1900
  msgid "Requires that the site URL has been provided on the Settings page"
1901
  msgstr ""
1902
 
1903
+ #: my-calendar-help.php:258
1904
  msgid ""
1905
  "Provides a link to the defined event URL when present, otherwise the "
1906
  "{details} link."
1907
  msgstr ""
1908
 
1909
+ #: my-calendar-help.php:261
1910
  msgid ""
1911
  "Displays text indicating whether registration for the event is currently "
1912
  "open or closed; displays nothing if that choice is selected in the event."
1913
  msgstr ""
1914
 
1915
+ #: my-calendar-help.php:264
1916
  msgid ""
1917
  "Displays the current status of the event: either \"Published\" or \"Reserved"
1918
  "\" - primary used in email templates."
1919
  msgstr ""
1920
 
1921
+ #: my-calendar-help.php:266 my-calendar.php:258
1922
  msgid "Location Template Tags"
1923
  msgstr ""
1924
 
1925
+ #: my-calendar-help.php:270
1926
  msgid "Displays the name of the location of the event."
1927
  msgstr ""
1928
 
1929
+ #: my-calendar-help.php:273
1930
  msgid "Displays the first line of the site address."
1931
  msgstr ""
1932
 
1933
+ #: my-calendar-help.php:276
1934
  msgid "Displays the second line of the site address."
1935
  msgstr ""
1936
 
1937
+ #: my-calendar-help.php:279
1938
  msgid "Displays the city for the location."
1939
  msgstr ""
1940
 
1941
+ #: my-calendar-help.php:282
1942
  msgid "Displays the state for the location."
1943
  msgstr ""
1944
 
1945
+ #: my-calendar-help.php:285
1946
  msgid "Displays the postcode for the location."
1947
  msgstr ""
1948
 
1949
+ #: my-calendar-help.php:288
1950
  msgid "Shows the custom region entered for the location."
1951
  msgstr ""
1952
 
1953
+ #: my-calendar-help.php:291
1954
  msgid "Displays the country for the event location."
1955
  msgstr ""
1956
 
1957
+ #: my-calendar-help.php:294
1958
  msgid "Output the URL for the location link."
1959
  msgstr ""
1960
 
1961
+ #: my-calendar-help.php:297
1962
  msgid "Output the stored phone number for the location."
1963
  msgstr ""
1964
 
1965
+ #: my-calendar-help.php:300
1966
  msgid ""
1967
  "Output a hyperlink to the location's listed link with default link text."
1968
  msgstr ""
1969
 
1970
+ #: my-calendar-help.php:303
1971
  msgid ""
1972
  "Displays the event address in <a href=\"http://microformats.org/wiki/hcard"
1973
  "\">hcard</a> format."
1974
  msgstr ""
1975
 
1976
+ #: my-calendar-help.php:306
1977
  msgid ""
1978
  "Displays a link to a Google Map of the event, if sufficient address "
1979
  "information is available. If not, will be empty."
1980
  msgstr ""
1981
 
1982
+ #: my-calendar-help.php:309
1983
+ msgid ""
1984
+ "Produces the URL for the Google Map for the event location if sufficient "
1985
+ "address information is available. If not, will be empty."
1986
+ msgstr ""
1987
+
1988
  #: my-calendar-help.php:311 my-calendar.php:294
1989
  msgid "Category Template Tags"
1990
  msgstr ""
2054
  "gifts are not tax deductible. Thank you!"
2055
  msgstr ""
2056
 
2057
+ #: my-calendar-install.php:251
2058
  msgid "My Calendar Default Timezone"
2059
  msgstr ""
2060
 
2061
+ #: my-calendar-install.php:296
2062
  msgid "My Calendar Default Location"
2063
  msgstr ""
2064
 
2065
+ #: my-calendar-locations.php:42
2066
  msgid "Location added successfully"
2067
  msgstr ""
2068
 
2069
+ #: my-calendar-locations.php:44
2070
  msgid "Location could not be added to database"
2071
  msgstr ""
2072
 
2136
  "locations into event records."
2137
  msgstr ""
2138
 
2139
+ #: my-calendar-output.php:170 my-calendar-output.php:295
2140
  msgid "Close"
2141
  msgstr ""
2142
 
2143
+ #: my-calendar-output.php:183
2144
  msgid "(%s in your time zone)"
2145
  msgstr ""
2146
 
2147
+ #: my-calendar-output.php:189
2148
  msgid "Not Applicable"
2149
  msgstr ""
2150
 
2151
+ #: my-calendar-output.php:204
2152
  msgid "Posted by"
2153
  msgstr ""
2154
 
2155
+ #: my-calendar-output.php:212 my-calendar-templates.php:279
2156
  msgid "Details about"
2157
  msgstr ""
2158
 
2159
+ #: my-calendar-output.php:239 my-calendar-templates.php:225
2160
  msgid "iCal"
2161
  msgstr ""
2162
 
2163
+ #: my-calendar-output.php:274
2164
  msgid ""
2165
  "This class is part of a series. You must register for the first event in "
2166
  "this series to attend."
2167
  msgstr ""
2168
 
2169
+ #: my-calendar-output.php:280
2170
  msgid "View full calendar"
2171
  msgstr ""
2172
 
2173
+ #: my-calendar-output.php:317
2174
  msgid "Edit This Date"
2175
  msgstr ""
2176
 
2177
+ #: my-calendar-output.php:318
2178
  msgid "Edit All"
2179
  msgstr ""
2180
 
2181
+ #: my-calendar-output.php:319
2182
  msgid "Delete This Date"
2183
  msgstr ""
2184
 
2185
+ #: my-calendar-output.php:320
2186
  msgid "Delete All"
2187
  msgstr ""
2188
 
2189
+ #: my-calendar-output.php:397
2190
  msgid "Go"
2191
  msgstr ""
2192
 
2193
+ #: my-calendar-output.php:426
2194
  msgid "Calendar: Print View"
2195
  msgstr ""
2196
 
2197
+ #: my-calendar-output.php:445
2198
  msgid "Return to site"
2199
  msgstr ""
2200
 
2201
+ #: my-calendar-output.php:458
2202
  msgid "View as Grid"
2203
  msgstr ""
2204
 
2205
+ #: my-calendar-output.php:462
2206
  msgid "View as List"
2207
  msgstr ""
2208
 
2209
+ #: my-calendar-output.php:555
2210
  msgid " and %d other event"
2211
  msgstr ""
2212
 
2213
+ #: my-calendar-output.php:557
2214
  msgid " and %d other events"
2215
  msgstr ""
2216
 
2217
+ #: my-calendar-output.php:565
2218
  msgid "Event search results for &ldquo;%1$s&rdquo;"
2219
  msgstr ""
2220
 
2221
+ #: my-calendar-output.php:637
2222
  msgid "Sorry, your search produced no results."
2223
  msgstr ""
2224
 
2225
+ #: my-calendar-output.php:676
2226
  msgid ""
2227
  "<strong>Admin Notice:</strong> The <code>showkey</code>, <code>shownav</"
2228
  "code>, <code>showjump</code>, and <code>toggle</code> shortcode attributes "
2229
  "have been deprecated. Use <code>above</code> and <code>below</code> instead."
2230
  msgstr ""
2231
 
2232
+ #: my-calendar-output.php:715
2233
  msgid "<abbr title=\"Sunday\">Sun</abbr>"
2234
  msgstr ""
2235
 
2236
+ #: my-calendar-output.php:716
2237
  msgid "<abbr title=\"Monday\">Mon</abbr>"
2238
  msgstr ""
2239
 
2240
+ #: my-calendar-output.php:717
2241
  msgid "<abbr title=\"Tuesday\">Tues</abbr>"
2242
  msgstr ""
2243
 
2244
+ #: my-calendar-output.php:718
2245
  msgid "<abbr title=\"Wednesday\">Wed</abbr>"
2246
  msgstr ""
2247
 
2248
+ #: my-calendar-output.php:719
2249
  msgid "<abbr title=\"Thursday\">Thur</abbr>"
2250
  msgstr ""
2251
 
2252
+ #: my-calendar-output.php:720
2253
  msgid "<abbr title=\"Friday\">Fri</abbr>"
2254
  msgstr ""
2255
 
2256
+ #: my-calendar-output.php:721
2257
  msgid "<abbr title=\"Saturday\">Sat</abbr>"
2258
  msgstr ""
2259
 
2260
+ #: my-calendar-output.php:726
2261
  msgid "<abbr title=\"Sunday\">S</abbr>"
2262
  msgstr ""
2263
 
2264
+ #: my-calendar-output.php:727
2265
  msgid "<abbr title=\"Monday\">M</abbr>"
2266
  msgstr ""
2267
 
2268
+ #: my-calendar-output.php:728
2269
  msgid "<abbr title=\"Tuesday\">T</abbr>"
2270
  msgstr ""
2271
 
2272
+ #: my-calendar-output.php:729
2273
  msgid "<abbr title=\"Wednesday\">W</abbr>"
2274
  msgstr ""
2275
 
2276
+ #: my-calendar-output.php:730
2277
  msgid "<abbr title=\"Thursday\">T</abbr>"
2278
  msgstr ""
2279
 
2280
+ #: my-calendar-output.php:731
2281
  msgid "<abbr title=\"Friday\">F</abbr>"
2282
  msgstr ""
2283
 
2284
+ #: my-calendar-output.php:732
2285
  msgid "<abbr title=\"Saturday\">S</abbr>"
2286
  msgstr ""
2287
 
2288
+ #: my-calendar-output.php:847
2289
  msgid "Print View"
2290
  msgstr ""
2291
 
2292
+ #: my-calendar-output.php:954
2293
  msgid "No events scheduled for today!"
2294
  msgstr ""
2295
 
2296
+ #: my-calendar-output.php:970
2297
  msgid "and"
2298
  msgstr ""
2299
 
2300
+ #: my-calendar-output.php:984
2301
  msgid "Events in"
2302
  msgstr ""
2303
 
2304
+ #: my-calendar-output.php:1016
2305
  msgid "There are no events scheduled during this period."
2306
  msgstr ""
2307
 
2308
+ #: my-calendar-output.php:1124
2309
  msgid ""
2310
  "Unrecognized calendar format. Please use one of 'list','calendar', or 'mini'."
2311
  msgstr ""
2312
 
2313
+ #: my-calendar-output.php:1147
2314
  msgid "Category Key"
2315
  msgstr ""
2316
 
2317
+ #: my-calendar-output.php:1170
2318
  msgid "Subscribe by <abbr title=\"Really Simple Syndication\">RSS</abbr>"
2319
  msgstr ""
2320
 
2321
+ #: my-calendar-output.php:1171
2322
  msgid "Download as <abbr title=\"iCal Events Export\">iCal</abbr>"
2323
  msgstr ""
2324
 
2325
+ #: my-calendar-output.php:1194
2326
  msgid "Next events &raquo;"
2327
  msgstr ""
2328
 
2329
+ #: my-calendar-output.php:1220 my-calendar-output.php:1264
2330
  msgid "Week of "
2331
  msgstr ""
2332
 
2333
+ #: my-calendar-output.php:1238
2334
  msgid "&laquo; Previous events"
2335
  msgstr ""
2336
 
2337
+ #: my-calendar-output.php:1290
2338
  msgid "(select to include)"
2339
  msgstr ""
2340
 
2341
+ #: my-calendar-output.php:1314 my-calendar-output.php:1317
2342
  msgid "All Categories"
2343
  msgstr ""
2344
 
2345
+ #: my-calendar-output.php:1315
2346
  msgid "Categories"
2347
  msgstr ""
2348
 
2349
+ #: my-calendar-output.php:1336 my-calendar-output.php:1546
2350
  msgid "Submit"
2351
  msgstr ""
2352
 
2353
+ #: my-calendar-output.php:1437 my-calendar-output.php:1439
 
 
 
 
2354
  msgid "Search Events"
2355
  msgstr ""
2356
 
2357
+ #: my-calendar-output.php:1487 my-calendar-output.php:1508
2358
  msgid "Show all"
2359
  msgstr ""
2360
 
2361
+ #: my-calendar-output.php:1506
2362
  msgid "Show events in:"
2363
  msgstr ""
2364
 
2365
+ #: my-calendar-settings.php:62
2366
  msgid "Categories imported successfully."
2367
  msgstr ""
2368
 
2369
+ #: my-calendar-settings.php:62
2370
  msgid "Categories not imported."
2371
  msgstr ""
2372
 
2373
+ #: my-calendar-settings.php:63
2374
  msgid "Events imported successfully."
2375
  msgstr ""
2376
 
2377
+ #: my-calendar-settings.php:63
2378
  msgid "Events not imported."
2379
  msgstr ""
2380
 
2381
+ #: my-calendar-settings.php:88
2382
  msgid "Dropping occurrences database table"
2383
  msgstr ""
2384
 
2385
+ #: my-calendar-settings.php:90
2386
  msgid "Reinstalling occurrences database table."
2387
  msgstr ""
2388
 
2389
+ #: my-calendar-settings.php:92
2390
  msgid "Generating event occurrences."
2391
  msgstr ""
2392
 
2393
+ #: my-calendar-settings.php:94
2394
  msgid "Event generation completed."
2395
  msgstr ""
2396
 
2398
  msgid "My Calendar Cache cleared"
2399
  msgstr ""
2400
 
2401
+ #: my-calendar-settings.php:112
2402
  msgid "My Calendar Management Settings saved"
2403
  msgstr ""
2404
 
2405
+ #: my-calendar-settings.php:117 my-calendar-settings.php:766
2406
  msgid "Add Events"
2407
  msgstr ""
2408
 
2409
+ #: my-calendar-settings.php:118 my-calendar-settings.php:767
2410
  msgid "Approve Events"
2411
  msgstr ""
2412
 
2413
+ #: my-calendar-settings.php:120 my-calendar-settings.php:769
2414
  msgid "Edit Categories"
2415
  msgstr ""
2416
 
2417
+ #: my-calendar-settings.php:121 my-calendar-settings.php:770
2418
  msgid "Edit Locations"
2419
  msgstr ""
2420
 
2421
+ #: my-calendar-settings.php:122 my-calendar-settings.php:771
2422
  msgid "Edit Styles"
2423
  msgstr ""
2424
 
2425
+ #: my-calendar-settings.php:123 my-calendar-settings.php:772
2426
  msgid "Edit Behaviors"
2427
  msgstr ""
2428
 
2429
+ #: my-calendar-settings.php:124 my-calendar-settings.php:773
2430
  msgid "Edit Templates"
2431
  msgstr ""
2432
 
2433
+ #: my-calendar-settings.php:125 my-calendar-settings.php:774
2434
  msgid "Edit Settings"
2435
  msgstr ""
2436
 
2437
+ #: my-calendar-settings.php:126 my-calendar-settings.php:775
2438
  msgid "View Help"
2439
  msgstr ""
2440
 
2441
+ #: my-calendar-settings.php:140
2442
  msgid "My Calendar Permissions Updated"
2443
  msgstr ""
2444
 
2445
+ #: my-calendar-settings.php:177
 
 
 
 
2446
  msgid "Output Settings saved"
2447
  msgstr ""
2448
 
2449
+ #: my-calendar-settings.php:185
2450
  msgid "Date/Time Format Settings saved"
2451
  msgstr ""
2452
 
2453
+ #: my-calendar-settings.php:204
2454
  msgid "Input Settings saved"
2455
  msgstr ""
2456
 
2457
+ #: my-calendar-settings.php:212
2458
  msgid "Multisite settings saved"
2459
  msgstr ""
2460
 
2461
+ #: my-calendar-settings.php:241
2462
  msgid "Custom text settings saved"
2463
  msgstr ""
2464
 
2465
+ #: my-calendar-settings.php:257
2466
  msgid "Email notice settings saved"
2467
  msgstr ""
2468
 
2469
+ #: my-calendar-settings.php:271
2470
  msgid "User custom settings saved"
2471
  msgstr ""
2472
 
2473
+ #: my-calendar-settings.php:305
2474
  msgid "My Calendar Options"
2475
  msgstr ""
2476
 
2477
+ #: my-calendar-settings.php:337
2478
  msgid "My Calendar Settings"
2479
  msgstr ""
2480
 
2481
+ #: my-calendar-settings.php:340
2482
  msgid "Management"
2483
  msgstr ""
2484
 
2485
+ #: my-calendar-settings.php:341
2486
  msgid "Customizable Text"
2487
  msgstr ""
2488
 
2489
+ #: my-calendar-settings.php:342
2490
  msgid "Output"
2491
  msgstr ""
2492
 
2493
+ #: my-calendar-settings.php:344
2494
  msgid "Input"
2495
  msgstr ""
2496
 
2497
+ #: my-calendar-settings.php:346
2498
  msgid "Multi-site"
2499
  msgstr ""
2500
 
2501
+ #: my-calendar-settings.php:348
2502
  msgid "Permissions"
2503
  msgstr ""
2504
 
2505
+ #: my-calendar-settings.php:349
2506
  msgid "Email Notifications"
2507
  msgstr ""
2508
 
2509
+ #: my-calendar-settings.php:350
2510
  msgid "Individual Users"
2511
  msgstr ""
2512
 
2513
+ #: my-calendar-settings.php:358
2514
  msgid "My Calendar Management"
2515
  msgstr ""
2516
 
2517
+ #: my-calendar-settings.php:364
2518
  msgid "Calendar Options: Management"
2519
  msgstr ""
2520
 
2521
+ #: my-calendar-settings.php:366
2522
  msgid "Get data (events, categories and locations) from a remote database."
2523
  msgstr ""
2524
 
2525
+ #: my-calendar-settings.php:368
2526
  msgid "Add this code to your theme's <code>functions.php</code> file:"
2527
  msgstr ""
2528
 
2529
+ #: my-calendar-settings.php:373
2530
  msgid ""
2531
  "You will need to allow remote connections from this site to the site hosting "
2532
  "your My Calendar events. Replace the above placeholders with the host-site "
2535
  "installation."
2536
  msgstr ""
2537
 
2538
+ #: my-calendar-settings.php:376
2539
  msgid "Enable approval options."
2540
  msgstr ""
2541
 
2542
+ #: my-calendar-settings.php:379
 
 
 
 
 
 
 
 
2543
  msgid ""
2544
  "Clear current cache. (Necessary if you edit shortcodes to change displayed "
2545
  "categories, for example.)"
2546
  msgstr ""
2547
 
2548
+ #: my-calendar-settings.php:383
2549
  msgid "Default Sort order for Admin Events List"
2550
  msgstr ""
2551
 
2552
+ #: my-calendar-settings.php:385
2553
  msgid "Event ID"
2554
  msgstr ""
2555
 
2556
+ #: my-calendar-settings.php:387
2557
  msgid "Description"
2558
  msgstr ""
2559
 
2560
+ #: my-calendar-settings.php:388
2561
  msgid "Start Date"
2562
  msgstr ""
2563
 
2564
+ #: my-calendar-settings.php:396
2565
  msgid "Currently editing my local calendar"
2566
  msgstr ""
2567
 
2568
+ #: my-calendar-settings.php:399
2569
  msgid "Currently editing the network calendar"
2570
  msgstr ""
2571
 
2572
+ #: my-calendar-settings.php:403
2573
  msgid ""
2574
  "You are currently working in the primary site for this network; your local "
2575
  "calendar is also the global table."
2576
  msgstr ""
2577
 
2578
+ #: my-calendar-settings.php:406
2579
  msgid "Re-generate event occurrences table."
2580
  msgstr ""
2581
 
2582
+ #: my-calendar-settings.php:411
2583
  msgid "Save Management Settings"
2584
  msgstr ""
2585
 
2586
+ #: my-calendar-settings.php:415
2587
  msgid "My Calendar management settings are only available to administrators."
2588
  msgstr ""
2589
 
2590
+ #: my-calendar-settings.php:423
2591
  msgid "Calendar Text Settings"
2592
  msgstr ""
2593
 
2594
+ #: my-calendar-settings.php:428
2595
  msgid "Calendar Options: Customizable Text Fields"
2596
  msgstr ""
2597
 
2598
+ #: my-calendar-settings.php:430
2599
  msgid "Label for all-day events"
2600
  msgstr ""
2601
 
2602
+ #: my-calendar-settings.php:431
2603
  msgid "Previous events link"
2604
  msgstr ""
2605
 
2606
+ #: my-calendar-settings.php:431
2607
  msgid "Previous Events"
2608
  msgstr ""
2609
 
2610
+ #: my-calendar-settings.php:431 my-calendar-settings.php:432
2611
  msgid "Use <code>{date}</code> to display the appropriate date in navigation."
2612
  msgstr ""
2613
 
2614
+ #: my-calendar-settings.php:432
2615
  msgid "Next events link"
2616
  msgstr ""
2617
 
2618
+ #: my-calendar-settings.php:432
2619
  msgid "Next Events"
2620
  msgstr ""
2621
 
2622
+ #: my-calendar-settings.php:433
2623
  msgid "If events are open"
2624
  msgstr ""
2625
 
2626
+ #: my-calendar-settings.php:433
2627
  msgid "Registration is open"
2628
  msgstr ""
2629
 
2630
+ #: my-calendar-settings.php:434
2631
  msgid "If events are closed"
2632
  msgstr ""
2633
 
2634
+ #: my-calendar-settings.php:434
2635
  msgid "Registration is closed"
2636
  msgstr ""
2637
 
2638
+ #: my-calendar-settings.php:435
2639
  msgid "Week view caption:"
2640
  msgstr ""
2641
 
2642
+ #: my-calendar-settings.php:435
2643
  msgid "Available tag: <code>{date format=\"\"}</code>"
2644
  msgstr ""
2645
 
2646
+ #: my-calendar-settings.php:436
2647
  msgid "Extended caption:"
2648
  msgstr ""
2649
 
2650
+ #: my-calendar-settings.php:436
2651
  msgid ""
2652
+ "Caption shows month/year in list/grid formats. Follows after month/year."
 
2653
  msgstr ""
2654
 
2655
+ #: my-calendar-settings.php:438
2656
  msgid "Event title template"
2657
  msgstr ""
2658
 
2659
+ #: my-calendar-settings.php:439 my-calendar-settings.php:448
2660
+ #: my-calendar-settings.php:454
2661
  msgid "All template tags are available."
2662
  msgstr ""
2663
 
2664
+ #: my-calendar-settings.php:442
2665
  msgid "Event details link text"
2666
  msgstr ""
2667
 
2668
+ #: my-calendar-settings.php:443
2669
  msgid ""
2670
+ "Tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, "
2671
+ "<code>{icon}</code>, <code>{date}</code>, <code>{time}</code>."
2672
  msgstr ""
2673
 
2674
+ #: my-calendar-settings.php:446
2675
  msgid "Event URL link text"
2676
  msgstr ""
2677
 
2678
+ #: my-calendar-settings.php:448 my-calendar-settings.php:454
2679
  msgid "Templating Help"
2680
  msgstr ""
2681
 
2682
+ #: my-calendar-settings.php:452
2683
+ msgid "Title element template"
2684
  msgstr ""
2685
 
2686
+ #: my-calendar-settings.php:454
2687
+ msgid "Current: %s"
2688
  msgstr ""
2689
 
2690
+ #: my-calendar-settings.php:459
2691
+ msgid "Save Custom Text Settings"
2692
  msgstr ""
2693
 
2694
+ #: my-calendar-settings.php:468
2695
+ msgid "Calendar Output Settings"
2696
  msgstr ""
2697
 
2698
+ #: my-calendar-settings.php:473
2699
  msgid "Calendar Options: Customize the Output of your Calendar"
2700
  msgstr ""
2701
 
2702
+ #: my-calendar-settings.php:475
2703
  msgid "Calendar Link Targets"
2704
  msgstr ""
2705
 
2706
+ #: my-calendar-settings.php:479
2707
+ msgid "Where is your main calendar page?"
 
 
2708
  msgstr ""
2709
 
2710
+ #: my-calendar-settings.php:480 my-calendar-settings.php:484
2711
  msgid ""
2712
  "Can be any Page or Post which includes the <code>[my_calendar]</code> "
2713
  "shortcode."
2714
  msgstr ""
2715
 
2716
+ #: my-calendar-settings.php:483
 
 
 
 
 
 
 
 
 
 
 
 
2717
  msgid ""
2718
  "Target <abbr title=\"Uniform resource locator\">URL</abbr> for mini calendar "
2719
+ "date links:"
 
 
 
 
 
 
2720
  msgstr ""
2721
 
2722
+ #: my-calendar-settings.php:486
2723
  msgid "Modify date and event link behaviors:"
2724
  msgstr ""
2725
 
2726
+ #: my-calendar-settings.php:488
2727
  msgid "Open calendar links to event details URL"
2728
  msgstr ""
2729
 
2730
+ #: my-calendar-settings.php:488
2731
  msgid "Replaces pop-up in grid view."
2732
  msgstr ""
2733
 
2734
+ #: my-calendar-settings.php:491
2735
  msgid "Mini calendar widget date links to:"
2736
  msgstr ""
2737
 
2738
+ #: my-calendar-settings.php:492
2739
  msgid "jQuery pop-up view"
2740
  msgstr ""
2741
 
2742
+ #: my-calendar-settings.php:493
2743
  msgid "daily view page (above)"
2744
  msgstr ""
2745
 
2746
+ #: my-calendar-settings.php:494
2747
  msgid "in-page anchor on main calendar page (list)"
2748
  msgstr ""
2749
 
2750
+ #: my-calendar-settings.php:495
2751
  msgid "in-page anchor on main calendar page (grid)"
2752
  msgstr ""
2753
 
2754
+ #: my-calendar-settings.php:497
2755
  msgid "Replaces pop-up in mini calendar"
2756
  msgstr ""
2757
 
2758
+ #: my-calendar-settings.php:499
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2759
  msgid "iCal times are UTC"
2760
  msgstr ""
2761
 
2762
+ #: my-calendar-settings.php:505
 
 
 
 
2763
  msgid "General Layout Options"
2764
  msgstr ""
2765
 
2766
+ #: my-calendar-settings.php:506
2767
  msgid ""
2768
  "Comma-separated list to indicate what order the navigational elements of My "
2769
  "Calendar should appear in."
2770
  msgstr ""
2771
 
2772
+ #: my-calendar-settings.php:509
2773
  msgid "Show above the calendar:"
2774
  msgstr ""
2775
 
2776
+ #: my-calendar-settings.php:510
2777
  msgid "Default: <code>nav,toggle,jump,print,timeframe</code>"
2778
  msgstr ""
2779
 
2780
+ #: my-calendar-settings.php:513
2781
  msgid "Show below the calendar:"
2782
  msgstr ""
2783
 
2784
+ #: my-calendar-settings.php:514
2785
  msgid "Default: <code>key,feeds</code>"
2786
  msgstr ""
2787
 
2788
+ #: my-calendar-settings.php:521
2789
  msgid "Grid Layout Options"
2790
  msgstr ""
2791
 
2792
+ #: my-calendar-settings.php:524
2793
  msgid "Show Weekends on Calendar"
2794
  msgstr ""
2795
 
2796
+ #: my-calendar-settings.php:527
2797
  msgid "Switch to list view on mobile devices"
2798
  msgstr ""
2799
 
2800
+ #: my-calendar-settings.php:534
2801
  msgid "List Layout Options"
2802
  msgstr ""
2803
 
2804
+ #: my-calendar-settings.php:537
2805
  msgid "How many months of events to show at a time:"
2806
  msgstr ""
2807
 
2808
+ #: my-calendar-settings.php:540
2809
  msgid ""
2810
  "Show the first event's title and the number of events that day next to the "
2811
  "date."
2812
  msgstr ""
2813
 
2814
+ #: my-calendar-settings.php:547
2815
+ msgid "Event Details Pop-up"
2816
  msgstr ""
2817
 
2818
+ #: my-calendar-settings.php:548
2819
  msgid ""
2820
  "The checked items will be shown in your event details view. Does not apply "
2821
  "if you are using a custom template"
2822
  msgstr ""
2823
 
2824
+ #: my-calendar-settings.php:551
2825
+ msgid "Author's name"
2826
  msgstr ""
2827
 
2828
+ #: my-calendar-settings.php:554
2829
+ msgid "Link to single event iCal download"
2830
  msgstr ""
2831
 
2832
+ #: my-calendar-settings.php:557
2833
+ msgid "Link to submit event to Google Calendar"
2834
  msgstr ""
2835
 
2836
+ #: my-calendar-settings.php:560
2837
+ msgid "Category icons"
2838
  msgstr ""
2839
 
2840
+ #: my-calendar-settings.php:563
2841
+ msgid "Link to Google Map"
2842
  msgstr ""
2843
 
2844
+ #: my-calendar-settings.php:566
2845
+ msgid "Event Address"
2846
  msgstr ""
2847
 
2848
+ #: my-calendar-settings.php:569
2849
+ msgid "Short description"
2850
  msgstr ""
2851
 
2852
+ #: my-calendar-settings.php:572
2853
+ msgid "Full description"
2854
  msgstr ""
2855
 
2856
+ #: my-calendar-settings.php:575
2857
  msgid "Process WordPress shortcodes in descriptions"
2858
  msgstr ""
2859
 
2860
+ #: my-calendar-settings.php:578
2861
+ msgid "Link to event details (requires <a href='#mc_uri'>URL</a>)"
2862
  msgstr ""
2863
 
2864
+ #: my-calendar-settings.php:581
2865
+ msgid "External link"
2866
  msgstr ""
2867
 
2868
+ #: my-calendar-settings.php:584
2869
+ msgid "Availability status"
2870
  msgstr ""
2871
 
2872
+ #: my-calendar-settings.php:587
2873
  msgid "Event links expire after event passes."
2874
  msgstr ""
2875
 
2876
+ #: my-calendar-settings.php:592
2877
+ msgid "Event Category Display"
2878
  msgstr ""
2879
 
2880
+ #: my-calendar-settings.php:595
2881
+ msgid "No category colors with titles."
2882
  msgstr ""
2883
 
2884
+ #: my-calendar-settings.php:596
2885
+ msgid "Titles are in category colors."
2886
  msgstr ""
2887
 
2888
+ #: my-calendar-settings.php:597
2889
+ msgid "Titles have category color as background."
2890
  msgstr ""
2891
 
2892
+ #: my-calendar-settings.php:600
2893
+ msgid "Optimize contrast for category colors."
2894
  msgstr ""
2895
 
2896
+ #: my-calendar-settings.php:606
2897
  msgid "Event Scheduling Defaults"
2898
  msgstr ""
2899
 
2900
+ #: my-calendar-settings.php:609
2901
  msgid ""
2902
  "Default setting for event input: If a recurring event is scheduled for a "
2903
  "date which doesn't exist (such as the 5th Wednesday in February), move it "
2904
  "back one week."
2905
  msgstr ""
2906
 
2907
+ #: my-calendar-settings.php:612
2908
  msgid "Holiday Category"
2909
  msgstr ""
2910
 
2911
+ #: my-calendar-settings.php:614
2912
  msgid "None"
2913
  msgstr ""
2914
 
2915
+ #: my-calendar-settings.php:630
2916
  msgid ""
2917
  "Default setting for event input: If an event coincides with an event in the "
2918
  "designated \"Holiday\" category, do not show the event."
2919
  msgstr ""
2920
 
2921
+ #: my-calendar-settings.php:636
2922
+ msgid "Save Output Settings"
2923
+ msgstr ""
2924
+
2925
+ #: my-calendar-settings.php:644
2926
  msgid "Calendar Time Formats"
2927
  msgstr ""
2928
 
2929
+ #: my-calendar-settings.php:649
2930
  msgid "Set default date/time formats"
2931
  msgstr ""
2932
 
2933
+ #: my-calendar-settings.php:653
2934
  msgid "Month format (calendar headings)"
2935
  msgstr ""
2936
 
2937
+ #: my-calendar-settings.php:653 my-calendar-settings.php:655
2938
+ #: my-calendar-settings.php:658 my-calendar-settings.php:661
2939
  msgid "Now:"
2940
  msgstr ""
2941
 
2942
+ #: my-calendar-settings.php:655
2943
  msgid "Time format"
2944
  msgstr ""
2945
 
2946
+ #: my-calendar-settings.php:658
2947
  msgid "Date in grid mode, week view"
2948
  msgstr ""
2949
 
2950
+ #: my-calendar-settings.php:661
2951
  msgid "Date Format in other views"
2952
  msgstr ""
2953
 
2954
+ #: my-calendar-settings.php:664
2955
  msgid ""
2956
  "Date formats use the same syntax as the <a href=\"http://php.net/date\">PHP "
2957
  "<code>date()</code> function</a>. Save options to update sample output."
2958
  msgstr ""
2959
 
2960
+ #: my-calendar-settings.php:669
2961
  msgid "Save Date/Time Settings"
2962
  msgstr ""
2963
 
2964
+ #: my-calendar-settings.php:679
2965
  msgid "Calendar Input Settings"
2966
  msgstr ""
2967
 
2968
+ #: my-calendar-settings.php:684
2969
  msgid ""
2970
  "Select which input fields will be available when adding or editing events."
2971
  msgstr ""
2972
 
2973
+ #: my-calendar-settings.php:689 my-calendar.php:393
2974
  msgid "Event Location Dropdown Menu"
2975
  msgstr ""
2976
 
2977
+ #: my-calendar-settings.php:689 my-calendar.php:393
2978
  msgid "Event Short Description field"
2979
  msgstr ""
2980
 
2981
+ #: my-calendar-settings.php:689 my-calendar.php:393
2982
  msgid "Event Description Field"
2983
  msgstr ""
2984
 
2985
+ #: my-calendar-settings.php:689 my-calendar.php:393
2986
  msgid "Event Category field"
2987
  msgstr ""
2988
 
2989
+ #: my-calendar-settings.php:689 my-calendar.php:393
2990
  msgid "Event Image field"
2991
  msgstr ""
2992
 
2993
+ #: my-calendar-settings.php:689 my-calendar.php:393
2994
  msgid "Event Link field"
2995
  msgstr ""
2996
 
2997
+ #: my-calendar-settings.php:689 my-calendar.php:393
2998
  msgid "Event Recurrence Options"
2999
  msgstr ""
3000
 
3001
+ #: my-calendar-settings.php:689 my-calendar.php:393
3002
  msgid "Event Registration options"
3003
  msgstr ""
3004
 
3005
+ #: my-calendar-settings.php:689 my-calendar.php:393
3006
  msgid "Event Location fields"
3007
  msgstr ""
3008
 
3009
+ #: my-calendar-settings.php:689 my-calendar.php:393
3010
  msgid "Use HTML Editor in Event Description Field"
3011
  msgstr ""
3012
 
3013
+ #: my-calendar-settings.php:689 my-calendar.php:393
3014
  msgid "Set Special Scheduling options"
3015
  msgstr ""
3016
 
3017
+ #: my-calendar-settings.php:702
3018
  msgid "Administrators see all input options"
3019
  msgstr ""
3020
 
3021
+ #: my-calendar-settings.php:707
3022
  msgid "Save Input Settings"
3023
  msgstr ""
3024
 
3025
+ #: my-calendar-settings.php:717
3026
  msgid "Multisite Settings (Network Administrators only)"
3027
  msgstr ""
3028
 
3029
+ #: my-calendar-settings.php:723
 
 
 
 
3030
  msgid "Settings for WP MultiSite configurations"
3031
  msgstr ""
3032
 
3033
+ #: my-calendar-settings.php:724
3034
  msgid ""
3035
  "The central calendar is the calendar associated with the primary site in "
3036
  "your WordPress Multisite network."
3037
  msgstr ""
3038
 
3039
+ #: my-calendar-settings.php:726
3040
  msgid "Site owners may only post to their local calendar"
3041
  msgstr ""
3042
 
3043
+ #: my-calendar-settings.php:727
3044
  msgid "Site owners may only post to the central calendar"
3045
  msgstr ""
3046
 
3047
+ #: my-calendar-settings.php:728
3048
  msgid "Site owners may manage either calendar"
3049
  msgstr ""
3050
 
3051
+ #: my-calendar-settings.php:730
3052
  msgid ""
3053
  "Changes only effect input permissions. Public-facing calendars will be "
3054
  "unchanged."
3055
  msgstr ""
3056
 
3057
+ #: my-calendar-settings.php:732
3058
  msgid "Sub-site calendars show events from their local calendar."
3059
  msgstr ""
3060
 
3061
+ #: my-calendar-settings.php:733
3062
  msgid "Sub-site calendars show events from the central calendar."
3063
  msgstr ""
3064
 
3065
+ #: my-calendar-settings.php:737
3066
  msgid "Save Multisite Settings"
3067
  msgstr ""
3068
 
3069
+ #: my-calendar-settings.php:747
3070
  msgid "My Calendar Permissions"
3071
  msgstr ""
3072
 
3073
+ #: my-calendar-settings.php:754
3074
  msgid "Calendar Options: Permissions"
3075
  msgstr ""
3076
 
3077
+ #: my-calendar-settings.php:790
3078
  msgid "Save Permissions"
3079
  msgstr ""
3080
 
3081
+ #: my-calendar-settings.php:794
3082
  msgid "My Calendar permission settings are only available to administrators."
3083
  msgstr ""
3084
 
3085
+ #: my-calendar-settings.php:802
3086
  msgid "Calendar Email Settings"
3087
  msgstr ""
3088
 
3089
+ #: my-calendar-settings.php:807
3090
  msgid "Calendar Options: Email Notifications"
3091
  msgstr ""
3092
 
3093
+ #: my-calendar-settings.php:811
3094
  msgid "Send Email Notifications when new events are scheduled or reserved."
3095
  msgstr ""
3096
 
3097
+ #: my-calendar-settings.php:814
3098
  msgid "Notification messages are sent to: "
3099
  msgstr ""
3100
 
3101
+ #: my-calendar-settings.php:817
3102
  msgid "Notification messages are sent from: "
3103
  msgstr ""
3104
 
3105
+ #: my-calendar-settings.php:820
3106
  msgid "Email subject"
3107
  msgstr ""
3108
 
3109
+ #: my-calendar-settings.php:820
3110
  msgid "New event Added"
3111
  msgstr ""
3112
 
3113
+ #: my-calendar-settings.php:823
3114
  msgid "Message Body"
3115
  msgstr ""
3116
 
3117
+ #: my-calendar-settings.php:823
3118
  msgid "New Event:"
3119
  msgstr ""
3120
 
3121
+ #: my-calendar-settings.php:824
3122
  msgid "Shortcode Help"
3123
  msgstr ""
3124
 
3125
+ #: my-calendar-settings.php:824
3126
  msgid "All template shortcodes are available."
3127
  msgstr ""
3128
 
3129
+ #: my-calendar-settings.php:827
3130
  msgid "Send HTML email"
3131
  msgstr ""
3132
 
3133
+ #: my-calendar-settings.php:832
3134
  msgid "Save Email Settings"
3135
  msgstr ""
3136
 
3137
+ #: my-calendar-settings.php:841
3138
  msgid "Calendar User Settings"
3139
  msgstr ""
3140
 
3141
+ #: my-calendar-settings.php:849
3142
  msgid "Settings which can be configured in registered user's accounts"
3143
  msgstr ""
3144
 
3145
+ #: my-calendar-settings.php:851
3146
  msgid ""
3147
  "Allow registered users to provide timezone or location presets in their user "
3148
  "profiles."
3149
  msgstr ""
3150
 
3151
+ #: my-calendar-settings.php:863
3152
  msgid "Timezone Settings"
3153
  msgstr ""
3154
 
3155
+ #: my-calendar-settings.php:864
3156
  msgid ""
3157
  "These settings provide registered users with the ability to select a time "
3158
  "zone in their user profile. When they view your calendar, the times for "
3160
  "the entered value."
3161
  msgstr ""
3162
 
3163
+ #: my-calendar-settings.php:866
3164
  msgid "Enable Timezone"
3165
  msgstr ""
3166
 
3167
+ #: my-calendar-settings.php:869
3168
  msgid "Select Timezone Label"
3169
  msgstr ""
3170
 
3171
+ #: my-calendar-settings.php:872
3172
  msgid "Timezone Options"
3173
  msgstr ""
3174
 
3175
+ #: my-calendar-settings.php:872 my-calendar-settings.php:896
3176
  msgid "Value, Label; one per line"
3177
  msgstr ""
3178
 
3179
+ #: my-calendar-settings.php:884
3180
  msgid "Location Settings"
3181
  msgstr ""
3182
 
3183
+ #: my-calendar-settings.php:885
3184
  msgid ""
3185
  "These settings provide registered users with the ability to select a "
3186
  "location in their user profile. When they view your calendar, their initial "
3190
  "to enable these settings for users to use the custom filtering options."
3191
  msgstr ""
3192
 
3193
+ #: my-calendar-settings.php:887
3194
  msgid "Enable Location"
3195
  msgstr ""
3196
 
3197
+ #: my-calendar-settings.php:890
3198
  msgid "Use this location list as input control"
3199
  msgstr ""
3200
 
3201
+ #: my-calendar-settings.php:890
3202
  msgid ""
3203
  "The normal text entry for this location type will be replaced by a drop down "
3204
  "containing these choices."
3205
  msgstr ""
3206
 
3207
+ #: my-calendar-settings.php:893
3208
  msgid "Select Location Label"
3209
  msgstr ""
3210
 
3211
+ #: my-calendar-settings.php:896
3212
  msgid "Location Options"
3213
  msgstr ""
3214
 
3215
+ #: my-calendar-settings.php:906
3216
  msgid "Location Type"
3217
  msgstr ""
3218
 
3219
+ #: my-calendar-settings.php:919
3220
  msgid "Save User Settings"
3221
  msgstr ""
3222
 
3223
+ #: my-calendar-settings.php:923
3224
  msgid ""
3225
  "Only users with the ability to edit user accounts may modify user settings."
3226
  msgstr ""
3227
 
3228
+ #: my-calendar-styles.php:90
3229
  msgid "Styles are disabled, and were not edited."
3230
  msgstr ""
3231
 
3232
+ #: my-calendar-styles.php:92
3233
  msgid "The stylesheet has been updated."
3234
  msgstr ""
3235
 
3236
+ #: my-calendar-styles.php:92
3237
  msgid "Write Error! Please verify write permissions on the style file."
3238
  msgstr ""
3239
 
3240
+ #: my-calendar-styles.php:106
3241
  msgid "Stylesheet reset to default."
3242
  msgstr ""
3243
 
3244
+ #: my-calendar-styles.php:109
3245
  msgid "Style Settings Saved"
3246
  msgstr ""
3247
 
3248
+ #: my-calendar-styles.php:118
3249
  msgid "New theme selected."
3250
  msgstr ""
3251
 
3252
+ #: my-calendar-styles.php:133
3253
  msgid ""
3254
  "Sorry. The file you are looking for doesn't appear to exist. Please check "
3255
  "your file name and location!"
3256
  msgstr ""
3257
 
3258
+ #: my-calendar-styles.php:141
3259
  msgid "My Calendar Styles"
3260
  msgstr ""
3261
 
3262
+ #: my-calendar-styles.php:147
3263
  msgid "Calendar Style Settings"
3264
  msgstr ""
3265
 
3266
+ #: my-calendar-styles.php:155
3267
  msgid "Select My Calendar Theme"
3268
  msgstr ""
3269
 
3270
+ #: my-calendar-styles.php:163
3271
  msgid "Your Custom Stylesheets"
3272
  msgstr ""
3273
 
3274
+ #: my-calendar-styles.php:172
3275
  msgid "Installed Stylesheets"
3276
  msgstr ""
3277
 
3278
+ #: my-calendar-styles.php:180
3279
  msgid "Choose Style"
3280
  msgstr ""
3281
 
3282
+ #: my-calendar-styles.php:193
3283
  msgid ""
3284
  "My Calendar was unable to update your CSS files during the upgrade. Please "
3285
  "check your file permissions if you wish to edit your My Calendar styles. "
3287
  "be deleted from the database when you successfully update your stylesheet."
3288
  msgstr ""
3289
 
3290
+ #: my-calendar-styles.php:201
3291
  msgid "CSS Style Options"
3292
  msgstr ""
3293
 
3294
+ #: my-calendar-styles.php:203
3295
  msgid "Apply CSS on these pages (comma separated IDs)"
3296
  msgstr ""
3297
 
3298
+ #: my-calendar-styles.php:206
3299
  msgid "Restore My Calendar stylesheet"
3300
  msgstr ""
3301
 
3302
+ #: my-calendar-styles.php:206
3303
  msgid "Disable My Calendar Stylesheet"
3304
  msgstr ""
3305
 
3306
+ #: my-calendar-styles.php:209
3307
  msgid "Edit the stylesheet for My Calendar"
3308
  msgstr ""
3309
 
3310
+ #: my-calendar-styles.php:223
3311
  msgid "Comparing Your Style with latest installed version of My Calendar"
3312
  msgstr ""
3313
 
3314
+ #: my-calendar-styles.php:227
3315
  msgid "There have been updates to the stylesheet."
3316
  msgstr ""
3317
 
3318
+ #: my-calendar-styles.php:227
3319
  msgid "Compare Your Stylesheet with latest installed version of My Calendar."
3320
  msgstr ""
3321
 
3322
+ #: my-calendar-styles.php:231
3323
  msgid "Your stylesheet matches that included with My Calendar."
3324
  msgstr ""
3325
 
3326
+ #: my-calendar-styles.php:240
3327
  msgid ""
3328
  "Resetting your stylesheet will set your stylesheet to the version of that "
3329
  "style currently distributed with the plug-in."
3330
  msgstr ""
3331
 
3332
+ #: my-calendar-templates.php:76
3333
  msgid "Map<span> to %s</span>"
3334
  msgstr ""
3335
 
3336
+ #: my-calendar-templates.php:109 my-calendar-templates.php:167
3337
  msgid "Visit web site<span>: %s</span>"
3338
  msgstr ""
3339
 
3340
+ #: my-calendar-templates.php:176
3341
  msgid "Daily, weekdays only"
3342
  msgstr ""
3343
 
3344
+ #: my-calendar-templates.php:178
3345
  msgid "Bi-weekly"
3346
  msgstr ""
3347
 
3348
+ #: my-calendar-templates.php:179
3349
  msgid "Date of Month (the %s of each month)"
3350
  msgstr ""
3351
 
3352
+ #: my-calendar-templates.php:180
3353
  msgid "Day of Month (the %s %s of each month)"
3354
  msgstr ""
3355
 
3356
+ #: my-calendar-templates.php:181
3357
  msgid "Annually"
3358
  msgstr ""
3359
 
3360
+ #: my-calendar-templates.php:311
3361
  msgid "<span class=\"screenreader\">Send %1$s to </span>Google Calendar"
3362
  msgstr ""
3363
 
3364
+ #: my-calendar-templating.php:21
3365
  msgid "Grid Output Template saved"
3366
  msgstr ""
3367
 
3368
+ #: my-calendar-templating.php:33
3369
  msgid "RSS Feed Output Template saved"
3370
  msgstr ""
3371
 
3372
+ #: my-calendar-templating.php:45
3373
  msgid "List Output Template saved"
3374
  msgstr ""
3375
 
3376
+ #: my-calendar-templating.php:56
3377
  msgid "Mini Output Template saved"
3378
  msgstr ""
3379
 
3380
+ #: my-calendar-templating.php:67
3381
  msgid "Event Details Template saved"
3382
  msgstr ""
3383
 
3384
+ #: my-calendar-templating.php:85
3385
  msgid "My Calendar Information Templates"
3386
  msgstr ""
3387
 
3388
+ #: my-calendar-templating.php:90
3389
  msgid ""
3390
  "Advanced users may customize the HTML template for each event. This page "
3391
  "lets you create a customized view of your events in each context. All "
3395
  "settings.</strong>"
3396
  msgstr ""
3397
 
3398
+ #: my-calendar-templating.php:90
3399
  msgid "Templates Help"
3400
  msgstr ""
3401
 
3402
+ #: my-calendar-templating.php:95
3403
  msgid "My Calendar: Grid Event Template"
3404
  msgstr ""
3405
 
3406
+ #: my-calendar-templating.php:100
3407
  msgid "Use this grid event template"
3408
  msgstr ""
3409
 
3410
+ #: my-calendar-templating.php:103
3411
  msgid "Your custom template for events in the calendar grid output."
3412
  msgstr ""
3413
 
3414
+ #: my-calendar-templating.php:106
3415
  msgid "Save Grid Template"
3416
  msgstr ""
3417
 
3418
+ #: my-calendar-templating.php:115
3419
  msgid "My Calendar: List Event Template"
3420
  msgstr ""
3421
 
3422
+ #: my-calendar-templating.php:120
3423
  msgid "Use this list event template"
3424
  msgstr ""
3425
 
3426
+ #: my-calendar-templating.php:123
3427
  msgid "Your custom template for events in calendar list output."
3428
  msgstr ""
3429
 
3430
+ #: my-calendar-templating.php:126
3431
  msgid "Save List Template"
3432
  msgstr ""
3433
 
3434
+ #: my-calendar-templating.php:135
3435
  msgid "My Calendar: Mini Calendar Template"
3436
  msgstr ""
3437
 
3438
+ #: my-calendar-templating.php:140
3439
  msgid "Use this mini event template"
3440
  msgstr ""
3441
 
3442
+ #: my-calendar-templating.php:143
3443
  msgid "Your custom template for events in sidebar/mini calendar output."
3444
  msgstr ""
3445
 
3446
+ #: my-calendar-templating.php:146
3447
  msgid "Save Mini Template"
3448
  msgstr ""
3449
 
3450
+ #: my-calendar-templating.php:155
3451
  msgid "My Calendar: Event Details Page Template"
3452
  msgstr ""
3453
 
3454
+ #: my-calendar-templating.php:160
3455
  msgid "Use this details template"
3456
  msgstr ""
3457
 
3458
+ #: my-calendar-templating.php:163
3459
  msgid "Your custom template for events on the event details page."
3460
  msgstr ""
3461
 
3462
+ #: my-calendar-templating.php:166
3463
  msgid "Save Details Template"
3464
  msgstr ""
3465
 
3466
+ #: my-calendar-templating.php:175
3467
  msgid "My Calendar: RSS Event Template"
3468
  msgstr ""
3469
 
3470
+ #: my-calendar-templating.php:177
3471
  msgid ""
3472
  "Notice: HTML templates are very forgiving of errors. RSS templates are not. "
3473
  "Be sure to test your changes."
3474
  msgstr ""
3475
 
3476
+ #: my-calendar-templating.php:181
3477
  msgid "Use this custom RSS event template"
3478
  msgstr ""
3479
 
3480
+ #: my-calendar-templating.php:184
3481
  msgid "Your custom template for events in the RSS feed."
3482
  msgstr ""
3483
 
3484
+ #: my-calendar-templating.php:187
3485
  msgid "Save RSS Template"
3486
  msgstr ""
3487
 
3488
+ #: my-calendar-upgrade-db.php:13
3489
  msgid "My Calendar Database is updated."
3490
  msgstr ""
3491
 
3493
  msgid "The My Calendar database needs to be updated."
3494
  msgstr ""
3495
 
3496
+ #: my-calendar-upgrade-db.php:26 my-calendar-upgrade-db.php:33
3497
+ #: my-calendar-upgrade-db.php:46
3498
  msgid "Update now"
3499
  msgstr ""
3500
 
 
 
 
 
3501
  #: my-calendar-upgrade-db.php:45
3502
  msgid ""
3503
  "You haven't entered any events, so My Calendar can't tell whether your "
3504
  "database is up to date. If you can't add events, upgrade your database!"
3505
  msgstr ""
3506
 
3507
+ #: my-calendar-user.php:38
3508
  msgid "My Calendar User Settings"
3509
  msgstr ""
3510
 
3511
+ #: my-calendar-widgets.php:6
3512
  msgid "My Calendar: Simple Event Search"
3513
  msgstr ""
3514
 
3515
+ #: my-calendar-widgets.php:20
3516
  msgid "My Calendar: Today's Events"
3517
  msgstr ""
3518
 
3519
+ #: my-calendar-widgets.php:66 my-calendar-widgets.php:165
3520
  msgid "Template"
3521
  msgstr ""
3522
 
3523
+ #: my-calendar-widgets.php:69
3524
  msgid "Add calendar URL to use this option."
3525
  msgstr ""
3526
 
3527
+ #: my-calendar-widgets.php:71 my-calendar-widgets.php:173
3528
  msgid "Widget title links to:"
3529
  msgstr ""
3530
 
3531
+ #: my-calendar-widgets.php:75
3532
  msgid "Show this text if there are no events today:"
3533
  msgstr ""
3534
 
3535
+ #: my-calendar-widgets.php:79 my-calendar-widgets.php:207
3536
+ #: my-calendar-widgets.php:675
3537
  msgid "Category or categories to display:"
3538
  msgstr ""
3539
 
3540
+ #: my-calendar-widgets.php:83 my-calendar-widgets.php:211
3541
  msgid "Author or authors to show:"
3542
  msgstr ""
3543
 
3544
+ #: my-calendar-widgets.php:87 my-calendar-widgets.php:215
3545
  msgid "Host or hosts to show:"
3546
  msgstr ""
3547
 
3548
+ #: my-calendar-widgets.php:110
3549
  msgid "My Calendar: Upcoming Events"
3550
  msgstr ""
3551
 
3552
+ #: my-calendar-widgets.php:169
3553
  msgid "Widget Options"
3554
  msgstr ""
3555
 
3556
+ #: my-calendar-widgets.php:177
3557
  msgid "Display upcoming events by:"
3558
  msgstr ""
3559
 
3560
+ #: my-calendar-widgets.php:178
3561
  msgid "Events (e.g. 2 past, 3 future)"
3562
  msgstr ""
3563
 
3564
+ #: my-calendar-widgets.php:179
3565
  msgid "Dates (e.g. 4 days past, 5 forward)"
3566
  msgstr ""
3567
 
3568
+ #: my-calendar-widgets.php:180
3569
  msgid "Show current month"
3570
  msgstr ""
3571
 
3572
+ #: my-calendar-widgets.php:181
3573
  msgid "Show current year"
3574
  msgstr ""
3575
 
3576
+ #: my-calendar-widgets.php:185
3577
  msgid "Skip the first <em>n</em> events"
3578
  msgstr ""
3579
 
3580
+ #: my-calendar-widgets.php:188
3581
  msgid "Events sort order:"
3582
  msgstr ""
3583
 
3584
+ #: my-calendar-widgets.php:189
3585
  msgid "Ascending (near to far)"
3586
  msgstr ""
3587
 
3588
+ #: my-calendar-widgets.php:190
3589
  msgid "Descending (far to near)"
3590
  msgstr ""
3591
 
3592
+ #: my-calendar-widgets.php:200
3593
  msgid "Include today's events"
3594
  msgstr ""
3595
 
3596
+ #: my-calendar-widgets.php:203
3597
  msgid "Show this text if there are no events meeting your criteria:"
3598
  msgstr ""
3599
 
3600
+ #: my-calendar-widgets.php:610
3601
  msgid "My Calendar: Mini Calendar"
3602
  msgstr ""
3603
 
3604
+ #: my-calendar-widgets.php:639
3605
  msgid "Calendar"
3606
  msgstr ""
3607
 
3608
+ #: my-calendar-widgets.php:671
3609
  msgid "Widget Title Link"
3610
  msgstr ""
3611
 
3612
+ #: my-calendar-widgets.php:710
3613
  msgid "Mini-Calendar Timespan:"
3614
  msgstr ""
3615
 
3761
  msgid "Second line of the site address."
3762
  msgstr ""
3763
 
 
 
 
 
 
 
 
 
 
 
 
 
3764
  #: my-calendar.php:280
3765
  msgid "Custom region."
3766
  msgstr ""
3799
  msgid "ID of the category of the event."
3800
  msgstr ""
3801
 
3802
+ #. #-#-#-#-# plugin.pot (My Calendar 2.2.10) #-#-#-#-#
3803
  #. Plugin Name of the plugin/theme
3804
  #: my-calendar.php:327 my-calendar.php:329 my-calendar.php:334
3805
  #: my-calendar.php:336
3822
  msgid "Template Editor"
3823
  msgstr ""
3824
 
3825
+ #: my-calendar.php:363
3826
  msgid "Event Submissions"
3827
  msgstr ""
3828
 
3829
+ #: my-calendar.php:364
3830
  msgid "Payments"
3831
  msgstr ""
3832
 
3833
+ #: my-calendar.php:370
3834
+ msgid "Event Registrations"
3835
+ msgstr ""
3836
+
3837
+ #: my-calendar.php:371
3838
+ msgid "Registration Payments"
3839
+ msgstr ""
3840
+
3841
+ #: my-calendar.php:405
3842
  msgid "Apply"
3843
  msgstr ""
3844
 
3845
+ #: my-calendar.php:408
3846
  msgid "Event editing fields to show"
3847
  msgstr ""
3848
 
mc-admin.css CHANGED
@@ -1,15 +1,3 @@
1
- .mc_edit_links {
2
- font-size: .8em;
3
- margin: 5px -5px -5px;
4
- padding: 2px;
5
- clear: both;
6
- border-bottom-right-radius: 8px;
7
- border-bottom-left-radius: 8px;
8
- border-top: 1px solid #ddd;
9
- }
10
- .mini .mc_edit_links , .list .mc_edit_links {
11
- margin-bottom: 5px;
12
- }
13
- .mc_edit_links ul {margin: 0 20px;}
14
- .list .mc_edit_links li {padding: 0;list-style-type: disc;}
15
- .list .mc_edit_links a {display: block!important;}
1
+ .mc_edit_links {font-size: .9em;margin: 5px -5px -5px;padding: 2px;clear: both;border-top: 1px solid #ddd;}
2
+ .mc_edit_links a { display: inline!important; }
3
+ .mini .mc_edit_links , .list .mc_edit_links { margin-bottom: 5px; }
 
 
 
 
 
 
 
 
 
 
 
 
mc-print.css CHANGED
@@ -1,4 +1,4 @@
1
- .my-calendar-header, h3 img, .mc-toggle, .mc_edit_links, #mc-export,.longdesc, .shortdesc , .mc-print { display: none; }
2
  table { border: 1px solid #ddd; border-collapse: collapse; margin: 0 auto;}
3
  th { text-align:center; background: #f6f6f6; border: 1px solid #ddd; width: 130px; text-transform:uppercase; }
4
  td { border: 1px solid #ddd; font-size: 12px; vertical-align: top;}
1
+ .my-calendar-header, h3 img, .mc-toggle, .mc_edit_links, #mc-export,.longdesc, .shortdesc , .mc-print, form { display: none; }
2
  table { border: 1px solid #ddd; border-collapse: collapse; margin: 0 auto;}
3
  th { text-align:center; background: #f6f6f6; border: 1px solid #ddd; width: 130px; text-transform:uppercase; }
4
  td { border: 1px solid #ddd; font-size: 12px; vertical-align: top;}
mc-styles.css CHANGED
@@ -35,11 +35,9 @@ ul.links li {float: left;margin: 0 5px 10px;font-size: .9em}
35
  #my-calendar .break ul {padding: 10px 10px 0;margin-right: 180px}
36
  #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}
37
  #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}
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: 0; 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}
45
  .mc-settings li { display: inline; padding: 3px; margin: 3px}
@@ -50,11 +48,16 @@ ul.links li {float: left;margin: 0 5px 10px;font-size: .9em}
50
  .mc-clear { clear: both}
51
  .jd-my-calendar pre { background: #fff; padding: 5px; border: 1px solid #ddd; box-shadow: 1px 1px 2px #ddd}
52
  .jd-my-calendar label span { font-size: .9em; color: #c33}
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}
57
  #mc-shortcodes li code, #mc-shortcodes .example code { font-size: 1.4em; line-height: 1.5; display: inline-block}
58
  .jd-my-calendar .tablenav { float: right}
59
  input[id=event_label], input[id=event_title], input[id=location_label], input[id=mc_twitter] { font-size: 1.4em; padding: 5px; width: 100%}
60
- label[for=mc_twitter] { background: url(images/twitter.png) no-repeat; padding-left: 20px; }
 
 
 
 
 
 
35
  #my-calendar .break ul {padding: 10px 10px 0;margin-right: 180px}
36
  #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}
37
  #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}
38
+ .jd-my-calendar .event_image { float: right; margin-left: 10px; }
39
+ .jd-my-calendar .event_image img { width: 150px; height: auto; margin: 2px 0; border-radius: 3px; }
40
  .mc_support {font-family:'Courier New';background:#fff;padding:5px}
 
 
41
  .template-editor, .style-editor { width: 98%}
42
  .roles { width: 24%; float: left; min-height: 300px}
43
  .mc-settings li { display: inline; padding: 3px; margin: 3px}
48
  .mc-clear { clear: both}
49
  .jd-my-calendar pre { background: #fff; padding: 5px; border: 1px solid #ddd; box-shadow: 1px 1px 2px #ddd}
50
  .jd-my-calendar label span { font-size: .9em; color: #c33}
 
51
  .jd-my-calendar .default { background: #fff}
52
  .jd-my-calendar .button-adjust { top: 10px; right: 0}
53
  .jd-my-calendar hr { width: 20%; margin: 0 auto; border: none; border-top: 1px solid #ccc}
54
  #mc-shortcodes li code, #mc-shortcodes .example code { font-size: 1.4em; line-height: 1.5; display: inline-block}
55
  .jd-my-calendar .tablenav { float: right}
56
  input[id=event_label], input[id=event_title], input[id=location_label], input[id=mc_twitter] { font-size: 1.4em; padding: 5px; width: 100%}
57
+ label[for=mc_twitter] { background: url(images/twitter.png) no-repeat; padding-left: 20px; }
58
+ strong.label { font-weight: 400; }
59
+ #my-calendar-text label { display: inline-block; width: 12em; }
60
+ .wp-picker-container { position: relative; top:3px; }
61
+ .jd-my-calendar .counter { padding-right: 6px; border-right: 16px solid green; border-radius: 20px; }
62
+ .jd-my-calendar .counter.warning { border-color: orange; }
63
+ .jd-my-calendar .counter.exceeded { border-color: red; }
my-calendar-behaviors.php CHANGED
@@ -199,11 +199,7 @@ my_calendar_check_db();
199
  echo '</em></div>';
200
  }
201
  ?>
202
- <p>
203
- <input type="submit" name="save" class="button-secondary" value="<?php _e('Save','my-calendar'); ?>" />
204
- </p>
205
- </fieldset>
206
-
207
  <p>
208
  <input type="submit" name="save" class="button-primary" value="<?php _e('Save','my-calendar'); ?>" />
209
  </p>
@@ -215,6 +211,6 @@ my_calendar_check_db();
215
  </div>
216
  </div>
217
  <?php jd_show_support_box(); ?>
218
-
219
  </div>
220
- <?php }
 
199
  echo '</em></div>';
200
  }
201
  ?>
202
+ </fieldset>
 
 
 
 
203
  <p>
204
  <input type="submit" name="save" class="button-primary" value="<?php _e('Save','my-calendar'); ?>" />
205
  </p>
211
  </div>
212
  </div>
213
  <?php jd_show_support_box(); ?>
 
214
  </div>
215
+ <?php
216
+ }
my-calendar-categories.php CHANGED
@@ -59,9 +59,10 @@ function my_csslist($directory) {
59
  }
60
 
61
  function is_custom_icon() {
62
- global $wp_plugin_dir;
63
- if (file_exists( str_replace('/my-calendar','',$wp_plugin_dir ). '/my-calendar-custom/' ) ) {
64
- $results = my_dirlist( str_replace('/my-calendar','',$wp_plugin_dir ) . '/my-calendar-custom/' );
 
65
  if ( empty($results) ) {
66
  return false;
67
  } else {
@@ -165,6 +166,8 @@ function my_calendar_manage_categories() {
165
 
166
  function mc_edit_category_form($view='edit',$catID='') {
167
  global $wpdb;
 
 
168
  $mcdb = $wpdb;
169
  $cur_cat = false;
170
  if ( $catID != '' ) {
@@ -172,9 +175,8 @@ function mc_edit_category_form($view='edit',$catID='') {
172
  $sql = "SELECT * FROM " . my_calendar_categories_table() . " WHERE category_id=$catID";
173
  $cur_cat = $mcdb->get_row($sql);
174
  }
175
- global $path, $wp_plugin_dir,$wp_plugin_url;
176
  if ( is_custom_icon() ) {
177
- $directory = str_replace('/my-calendar','',$wp_plugin_dir) . '/my-calendar-custom/';
178
  $path = '/my-calendar-custom';
179
  $iconlist = my_dirlist($directory);
180
  } else {
@@ -211,16 +213,12 @@ function mc_edit_category_form($view='edit',$catID='') {
211
  <fieldset>
212
  <legend><?php if ($view == 'add') { _e('Add Category','my-calendar'); } else { _e('Edit Category','my-calendar'); } ?></legend>
213
  <label for="cat_name"><?php _e('Category Name','my-calendar'); ?>:</label> <input type="text" id="cat_name" name="category_name" class="input" size="30" value="<?php if ( !empty($cur_cat) && is_object($cur_cat) ) echo stripslashes( esc_attr( $cur_cat->category_name ) ); ?>" /><br />
214
- <label for="cat_color"><?php _e('Category Color (Hex format)','my-calendar'); ?>:</label> <input type="text" id="cat_color" name="category_color" class="input" size="10" maxlength="7" value="<?php if ( !empty($cur_cat) && is_object($cur_cat) ) { echo (strpos($cur_cat->category_color,'#') !== 0)?'#':''; echo $cur_cat->category_color; } else { echo '#'; } ?>" /><br />
215
  <label for="cat_icon"><?php _e('Category Icon','my-calendar'); ?>:</label> <select name="category_icon" id="cat_icon">
216
  <?php
217
  foreach ($iconlist as $value) {
218
- if ( ( !empty($cur_cat) && is_object($cur_cat) ) && $cur_cat->category_icon == $value) {
219
- $selected = " selected='selected'";
220
- } else {
221
- $selected = "";
222
- }
223
- echo "<option value='$value'$selected style='background: url(".str_replace('my-calendar/','',$wp_plugin_url)."$path/$value) left 50% no-repeat;'>$value</option>";
224
  }
225
  ?>
226
  </select>
@@ -254,7 +252,7 @@ function mc_edit_category_form($view='edit',$catID='') {
254
  }
255
 
256
  function mc_manage_categories() {
257
- global $wpdb, $path, $wp_plugin_url;
258
  $mcdb = $wpdb;
259
  ?>
260
  <h2><?php _e('Manage Categories','my-calendar'); ?></h2>
@@ -271,33 +269,35 @@ function mc_manage_categories() {
271
  <table class="widefat page fixed" id="my-calendar-admin-table">
272
  <thead>
273
  <tr>
274
- <th class="manage-column" scope="col"><?php echo ($co==2)?"<a href='".admin_url("admin.php?page=my-calendar-categories&amp;co=1")."'>":''; ?><?php _e('ID','my-calendar') ?><?php echo ($co==2)?'</a>':''; ?></th>
275
- <th class="manage-column" scope="col"><?php echo ($co==1)?"<a href='".admin_url("admin.php?page=my-calendar-categories&amp;co=2")."'>":''; ?><?php _e('Category Name','my-calendar') ?><?php echo ($co==1)?'</a>':''; ?></th>
276
- <th class="manage-column" scope="col"><?php _e('Category Color','my-calendar'); ?></th>
277
- <th class="manage-column" scope="col"><?php _e('Category Icon','my-calendar'); ?></th>
278
- <th class="manage-column" scope="col"><?php _e('Private','my-calendar'); ?></th>
279
- <th class="manage-column" scope="col"><?php _e('Edit','my-calendar'); ?></th>
280
- <th class="manage-column" scope="col"><?php _e('Delete','my-calendar'); ?></th>
281
  </tr>
282
  </thead>
283
  <?php
284
  $class = '';
285
- foreach ( $categories as $category ) {
286
  $class = ($class == 'alternate') ? '' : 'alternate';
287
- $default = ( $category->category_id == get_option('mc_default_category') )?' default':'';
 
 
288
  ?>
289
- <tr class="<?php echo $class.$default; ?>">
290
- <th scope="row"><?php echo $category->category_id; ?></th>
291
- <td><?php echo stripslashes( esc_attr( $category->category_name ) ); ?></td>
292
- <td style="background-color:<?php echo (strpos($category->category_color,'#') !== 0)?'#':''; echo $category->category_color; ?>;">&nbsp;</td>
293
- <td style="background-color:<?php echo (strpos($category->category_color,'#') !== 0)?'#':''; echo $category->category_color; ?>;"><img src="<?php echo str_replace('my-calendar/','',$wp_plugin_url). $path; ?>/<?php echo stripslashes( esc_attr( $category->category_icon ) ); ?>" alt="" /></td>
294
- <td><?php echo ( $category->category_private == 1 )?__('Yes','my-calendar'):__('No','my-calendar'); ?></td>
295
- <td><a href="<?php echo admin_url("admin.php?page=my-calendar-categories&amp;mode=edit&amp;category_id=$category->category_id"); ?>" class='edit'><?php _e('Edit','my-calendar'); ?></a></td>
296
  <?php
297
- if ($category->category_id == 1) {
298
  echo '<td>'.__('N/A','my-calendar').'</td>';
299
  } else { ?>
300
- <td><a href="<?php echo admin_url("admin.php?page=my-calendar-categories&amp;mode=delete&amp;category_id=$category->category_id"); ?>" class="delete" onclick="return confirm('<?php _e('Are you sure you want to delete this category?','my-calendar'); ?>')"><?php _e('Delete','my-calendar'); ?></a></td>
301
  <?php
302
  } ?>
303
  </tr>
59
  }
60
 
61
  function is_custom_icon() {
62
+ $dir = plugin_dir_path( __FILE__ );
63
+ $base = basename( $dir );
64
+ if ( file_exists( str_replace( $base,'',$dir ). 'my-calendar-custom' ) ) {
65
+ $results = my_dirlist( str_replace( $base,'',$dir ) . 'my-calendar-custom' );
66
  if ( empty($results) ) {
67
  return false;
68
  } else {
166
 
167
  function mc_edit_category_form($view='edit',$catID='') {
168
  global $wpdb;
169
+ $dir = plugin_dir_path( __FILE__ );
170
+ $url = plugin_dir_url( __FILE__ );
171
  $mcdb = $wpdb;
172
  $cur_cat = false;
173
  if ( $catID != '' ) {
175
  $sql = "SELECT * FROM " . my_calendar_categories_table() . " WHERE category_id=$catID";
176
  $cur_cat = $mcdb->get_row($sql);
177
  }
 
178
  if ( is_custom_icon() ) {
179
+ $directory = str_replace('/my-calendar','',$dir) . '/my-calendar-custom/';
180
  $path = '/my-calendar-custom';
181
  $iconlist = my_dirlist($directory);
182
  } else {
213
  <fieldset>
214
  <legend><?php if ($view == 'add') { _e('Add Category','my-calendar'); } else { _e('Edit Category','my-calendar'); } ?></legend>
215
  <label for="cat_name"><?php _e('Category Name','my-calendar'); ?>:</label> <input type="text" id="cat_name" name="category_name" class="input" size="30" value="<?php if ( !empty($cur_cat) && is_object($cur_cat) ) echo stripslashes( esc_attr( $cur_cat->category_name ) ); ?>" /><br />
216
+ <label for="cat_color"><?php _e('Category Color','my-calendar'); ?>:</label> <input type="text" id="cat_color" name="category_color" class="mc-color-input" size="10" maxlength="7" value="<?php if ( !empty($cur_cat) && is_object($cur_cat) ) { echo (strpos($cur_cat->category_color,'#') !== 0)?'#':''; echo $cur_cat->category_color; } else { echo '#'; } ?>" /><br />
217
  <label for="cat_icon"><?php _e('Category Icon','my-calendar'); ?>:</label> <select name="category_icon" id="cat_icon">
218
  <?php
219
  foreach ($iconlist as $value) {
220
+ $selected = ( ( !empty($cur_cat) && is_object($cur_cat) ) && $cur_cat->category_icon == $value) ? " selected='selected'" : '';
221
+ echo "<option value='$value'$selected style='background: url(".str_replace('my-calendar/','',$url)."$path/$value) left 50% no-repeat;'>$value</option>";
 
 
 
 
222
  }
223
  ?>
224
  </select>
252
  }
253
 
254
  function mc_manage_categories() {
255
+ global $wpdb, $url;
256
  $mcdb = $wpdb;
257
  ?>
258
  <h2><?php _e('Manage Categories','my-calendar'); ?></h2>
269
  <table class="widefat page fixed" id="my-calendar-admin-table">
270
  <thead>
271
  <tr>
272
+ <th scope="col"><?php echo ($co==2)?"<a href='".admin_url("admin.php?page=my-calendar-categories&amp;co=1")."'>":''; ?><?php _e('ID','my-calendar') ?><?php echo ($co==2)?'</a>':''; ?></th>
273
+ <th scope="col"><?php echo ($co==1)?"<a href='".admin_url("admin.php?page=my-calendar-categories&amp;co=2")."'>":''; ?><?php _e('Category Name','my-calendar') ?><?php echo ($co==1)?'</a>':''; ?></th>
274
+ <th scope="col"><?php _e('Category Color','my-calendar'); ?></th>
275
+ <th scope="col"><?php _e('Category Icon','my-calendar'); ?></th>
276
+ <th scope="col"><?php _e('Private','my-calendar'); ?></th>
277
+ <th scope="col"><?php _e('Edit','my-calendar'); ?></th>
278
+ <th scope="col"><?php _e('Delete','my-calendar'); ?></th>
279
  </tr>
280
  </thead>
281
  <?php
282
  $class = '';
283
+ foreach ( $categories as $cat ) {
284
  $class = ($class == 'alternate') ? '' : 'alternate';
285
+ $icon_src = ( mc_file_exists( $cat->category_icon ) ) ? mc_get_file( $cat->category_icon, 'url' ) : plugins_url( 'my-calendar/icons/'.$cat->category_icon );
286
+ $background = (strpos($cat->category_color,'#') !== 0)?'#':'' . $cat->category_color;
287
+ $foreground = mc_inverse_color( $background );
288
  ?>
289
+ <tr class="<?php echo $class; ?>">
290
+ <th scope="row"><?php echo $cat->category_id; ?></th>
291
+ <td><?php echo stripslashes( esc_attr( $cat->category_name ) ); echo ' '; if ( $cat->category_id == get_option( 'mc_default_category' ) ) { _e( '(Default)' ); } ?></td>
292
+ <td style="background-color:<?php echo $background; ?>; color: <?php echo $foreground; ?>"><?php echo $background; ?></td>
293
+ <td style="background-color:<?php echo $background; ?>;"><img src="<?php echo $icon_src; ?>" alt="" /></td>
294
+ <td><?php echo ( $cat->category_private == 1 )?__('Yes','my-calendar'):__('No','my-calendar'); ?></td>
295
+ <td><a href="<?php echo admin_url("admin.php?page=my-calendar-categories&amp;mode=edit&amp;category_id=$cat->category_id"); ?>" class='edit'><?php _e('Edit','my-calendar'); ?></a></td>
296
  <?php
297
+ if ($cat->category_id == 1) {
298
  echo '<td>'.__('N/A','my-calendar').'</td>';
299
  } else { ?>
300
+ <td><a href="<?php echo admin_url("admin.php?page=my-calendar-categories&amp;mode=delete&amp;category_id=$cat->category_id"); ?>" class="delete" onclick="return confirm('<?php _e('Are you sure you want to delete this category?','my-calendar'); ?>')"><?php _e('Delete','my-calendar'); ?></a></td>
301
  <?php
302
  } ?>
303
  </tr>
my-calendar-core.php CHANGED
@@ -4,17 +4,9 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
  function my_calendar_add_feed() {
5
  global $wp_rewrite, $wpdb;
6
  $mcdb = $wpdb;
7
- $changed = get_option( 'mc_modified_feeds' );
8
- if ( get_option('mc_show_rss') == 'true' ) {
9
- add_feed( 'my-calendar-rss', 'my_calendar_rss' );
10
- }
11
- if ( get_option('mc_show_ical') == 'true' ) {
12
- add_feed( 'my-calendar-ics', 'my_calendar_ical' );
13
- }
14
- if ( get_option('mc_show_print') == 'true' ) {
15
- add_feed( 'my-calendar-print', 'my_calendar_print' );
16
- }
17
- if ( $changed['prev'] != $changed['curr'] ) { flush_rewrite_rules(); update_option( 'mc_modified_feeds', array( 'prev'=>$changed['curr'], 'curr'=>$changed['curr'] ) ); }
18
  }
19
 
20
  if ( ! function_exists( 'is_ssl' ) ) {
@@ -54,7 +46,8 @@ function mc_selected_users( $selected ) {
54
  $options = '';
55
  foreach($users as $u) {
56
  if ( in_array( $u->ID, $selected ) ) { $checked = ' checked="checked"'; } else { $checked = ''; }
57
- $options = '<option value="'.$u->ID.'"'.$checked.'>'.$u->display_name."</option>\n";
 
58
  }
59
  return $options;
60
  }
@@ -102,70 +95,120 @@ function mc_shift_color( $color ) {
102
  $c = hexdec(substr($color,(2*$x),2)) + $per;
103
  $c = ($c > 255) ? 'ff' : dechex($c);
104
  $rgb .= (strlen($c) < 2) ? '0'.$c : $c;
105
- }
106
  }
107
  return '#'.$rgb;
108
  }
109
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  // Function to add the calendar style into the header
111
  function my_calendar_wp_head() {
112
- global $wpdb, $wp_query;
113
  $mcdb = $wpdb;
114
  $array = array();
115
- // If the calendar isn't installed or upgraded this won't work
116
- check_my_calendar();
117
- $styles = mc_get_style_path( get_option( 'mc_css_file' ),'url' );
118
  if ( get_option('mc_use_styles') != 'true' ) {
119
  $this_post = $wp_query->get_queried_object();
120
- if (is_object($this_post)) {
121
- if ( isset( $this_post->ID ) ) {
122
- $id = $this_post->ID;
123
- } else {
124
- $id = false;
125
- }
126
- }
127
- if ( get_option( 'mc_show_css' ) != '' ) {
128
- $array = explode( ",",get_option( 'mc_show_css' ) );
129
- }
130
  if ( @in_array( $id, $array ) || get_option( 'mc_show_css' ) == '' ) {
131
- // generate category colors
132
- $category_styles = '';
133
- $categories = $mcdb->get_results("SELECT * FROM " . MY_CALENDAR_CATEGORIES_TABLE . " ORDER BY category_id ASC");
134
- foreach ( $categories as $category ) {
135
  $class = "mc_".sanitize_title($category->category_name);
136
  $hex = (strpos($category->category_color,'#') !== 0)?'#':'';
137
  $color = $hex.$category->category_color;
138
  if ( $color != '#' ) {
139
- $hcolor = mc_shift_color($category->category_color);
140
- $inv = '';
141
- if ( get_option( 'mc_apply_color' ) == 'font' ) {
142
- $type = 'color';
143
- $alt = 'background';
144
- } else if ( get_option( 'mc_apply_color' ) == 'background' ) {
145
- $type = 'background';
146
- $alt = 'color';
147
- } else {
148
- $type = $alt = '';
149
- }
150
- if ( get_option( 'mc_inverse_color' ) == 'true' ) {
151
- $inverse = mc_inverse_color( $color );
152
- $inv = "$alt: $inverse;";
153
- }
154
- if ( get_option( 'mc_apply_color' ) == 'font' || get_option( 'mc_apply_color' ) == 'background' ) {
155
- // always an anchor as of 1.11.0
156
- $category_styles .= "\n.mc-main .$class .event-title a { $type: $color; $inv }";
157
- $category_styles .= "\n.mc-main .$class .event-title a:hover, .mc-main .$class .event-title a:focus { $type: $hcolor;}";
158
  }
159
  }
160
- }
161
- $add = '';
162
- if ( is_user_logged_in() ) {
163
- $stylesheet_url = plugins_url( 'mc-admin.css', __FILE__ );
164
- $add = "<link rel=\"stylesheet\" href=\"$stylesheet_url\" type=\"text/css\" media=\"all\" />";
165
- }
166
  $all_styles = "
167
- <link rel=\"stylesheet\" href=\"$styles\" type=\"text/css\" media=\"all\" />
168
- $add
169
  <style type=\"text/css\">
170
  <!--
171
  .mcjs .mc-main .details, .mcjs .mc-main .calendar-events { display: none; }
@@ -176,17 +219,6 @@ display: block!important;
176
  }
177
  -->
178
  </style>";
179
- if ( mc_is_tablet() && file_exists( get_stylesheet_directory() . '/mc-tablet.css' ) ) {
180
- $all_styles .= get_stylesheet_directory_uri() . '/mc-tablet.css';
181
- }
182
- if ( mc_is_mobile() && file_exists( get_stylesheet_directory() . '/mc-mobile.css' ) ) {
183
- $all_styles .= get_stylesheet_directory_uri() . '/mc-mobile.css';
184
- }
185
- if ( function_exists( 'mcs_submissions' ) ) {
186
- $all_styles .= "<link rel=\"stylesheet\" href=\"".plugins_url('/my-calendar-submissions/mcs-styles.css')."\" type=\"text/css\" media=\"all\" />";
187
- $all_styles .= "<link rel=\"stylesheet\" href=\"".plugins_url('/my-calendar-submissions/css/smoothness/jquery-ui-1.8.23.custom.css')."\" type=\"text/css\" media=\"all\" />";
188
- }
189
- $all_styles = apply_filters( 'mc_filter_styles',$all_styles,$styles );
190
  echo $all_styles;
191
  }
192
  }
@@ -207,6 +239,20 @@ function mc_deal_with_deleted_user( $id ) {
207
  function my_calendar_add_javascript() {
208
  if ( isset($_GET['page']) && $_GET['page'] == 'my-calendar' ) {
209
  wp_enqueue_script('jquery.calendrical',plugins_url( 'js/jquery.calendrical.js', __FILE__ ), array('jquery') );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  wp_enqueue_script('jquery.addfields',plugins_url( 'js/jquery.addfields.js', __FILE__ ), array('jquery') );
211
  if ( version_compare( get_bloginfo( 'version' ) , '3.3' , '<' ) ) {
212
  wp_enqueue_script('media-upload');
@@ -232,6 +278,9 @@ function my_calendar_write_js() {
232
  //<![CDATA[
233
  jQuery(document).ready(function($) {
234
  $('#event_begin, #event_time,' + '#event_end, #event_endtime').calendricalDateTimeRange();
 
 
 
235
  });
236
  //]]>
237
  </script>
@@ -510,7 +559,8 @@ function check_my_calendar() {
510
  if ( version_compare( $current_version, "2.0.4", "<" ) ) { $upgrade_path[] = "2.0.4"; }
511
  if ( version_compare( $current_version, "2.1.0", "<" ) ) { $upgrade_path[] = "2.1.0"; }
512
  if ( version_compare( $current_version, "2.2.0", "<" ) ) { $upgrade_path[] = "2.2.0"; }
513
- if ( version_compare( $current_version, "2.2.6", "<" ) ) { $upgrade_path[] = "2.2.6"; }
 
514
  }
515
  // having determined upgrade path, assign new version number
516
  update_option( 'mc_version' , $mc_version );
@@ -518,7 +568,7 @@ function check_my_calendar() {
518
  if ( $new_install == true ) {
519
  //add default settings
520
  mc_default_settings();
521
- $sql = "INSERT INTO " . MY_CALENDAR_CATEGORIES_TABLE . " SET category_id=1, category_name='General', category_color='#ffffff', category_icon='event.png'";
522
  $mcdb->query($sql);
523
  } else {
524
  // clear cache so updates are immediately available
@@ -528,6 +578,12 @@ function check_my_calendar() {
528
  foreach ($upgrade_path as $upgrade) {
529
  switch ($upgrade) {
530
  // only upgrade db on most recent version
 
 
 
 
 
 
531
  case '2.2.8':
532
  delete_option( 'mc_draggable' );
533
  break;
@@ -575,7 +631,6 @@ function check_my_calendar() {
575
  break;
576
  case '1.10.0':
577
  update_option( 'mc_week_caption',"The week's events" );
578
- update_option( 'mc_show_print','false' );
579
  break;
580
  case '1.9.1':
581
  update_option( 'mc_widget_defaults', $defaults);
@@ -672,8 +727,6 @@ function check_my_calendar() {
672
  }
673
  break;
674
  case '1.7.0':
675
- add_option('mc_show_rss','false');
676
- add_option('mc_show_ical','false');
677
  add_option('mc_skip_holidays','false');
678
  add_option('mc_event_edit_perms','manage_options');
679
  $original_styles = get_option('mc_style');
@@ -879,7 +932,7 @@ function check_my_calendar() {
879
  }
880
  }
881
  // @data object with event_category value
882
- function mc_category_select( $data=false ) {
883
  global $wpdb;
884
  $mcdb=$wpdb;
885
  if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
@@ -902,6 +955,10 @@ function mc_category_select( $data=false ) {
902
  $default = $c;
903
  }
904
  }
 
 
 
 
905
  return $default.$list;
906
  }
907
 
@@ -976,13 +1033,6 @@ global $wp_query;
976
  }
977
  }
978
 
979
- function mc_enqueue() {
980
- global $wp_query;
981
- if ( get_option('mc_calendar_javascript') != 1 || get_option('mc_list_javascript') != 1 || get_option('mc_mini_javascript') != 1 || get_option('mc_ajax_javascript') != 1 ) {
982
- wp_enqueue_script('jquery');
983
- }
984
- }
985
-
986
  function mc_month_comparison($month) {
987
  $current_month = date("n", current_time('timestamp'));
988
  if (isset($_GET['yr']) && isset($_GET['month'])) {
@@ -1134,8 +1184,11 @@ function my_calendar_locations_table() {
1134
 
1135
  // Mail functions (originally by Roland)
1136
  function my_calendar_send_email( $details ) {
1137
- $event = event_as_array($details);
1138
- if ( get_option( 'mc_html_email' ) == 'true' ) {
 
 
 
1139
  add_filter('wp_mail_content_type',create_function('', 'return "text/html";'));
1140
  }
1141
  if ( get_option('mc_event_mail') == 'true' ) {
@@ -1297,7 +1350,11 @@ function mc_scripts( $hook ) {
1297
  global $current_screen;
1298
  if ( $current_screen->id == 'toplevel_page_my-calendar' ) {
1299
  // later.
1300
- //wp_enqueue_script( 'charCount', plugins_url( 'wp-to-twitter/js/jquery.charcount.js'), array('jquery') );
 
 
 
 
1301
  }
1302
  }
1303
 
@@ -1345,22 +1402,25 @@ function reverse_array($array, $boolean, $order) {
1345
  }
1346
  }
1347
 
1348
- function mc_is_mobile() {
1349
- $uagent = new uagent_info();
1350
- if ( $uagent->DetectMobileQuick() == $uagent->true ) {
1351
- return true;
1352
- } else {
1353
- return false;
 
 
1354
  }
 
 
 
 
 
1355
  }
1356
 
 
1357
  function mc_is_tablet() {
1358
- $uagent = new uagent_info();
1359
- if ( $uagent->DetectTierTablet() == $uagent->true ) {
1360
- return true;
1361
- } else {
1362
- return false;
1363
- }
1364
  }
1365
 
1366
  function mc_guess_calendar() {
@@ -1369,13 +1429,12 @@ function mc_guess_calendar() {
1369
  /* 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. */
1370
  $my_guesses = array( 'calendar','events','activities','classes','courses','rehearsals','schedule','calendario','actividades','eventos','kalender','veranstaltungen','unterrichten','eventi','classi' );
1371
  foreach( $my_guesses as $guess ) {
1372
- $value = $mcdb->get_var("SELECT id FROM $mcdb->posts WHERE post_name LIKE '%$guess%' AND post_status = 'publish'" );
1373
- if ( $value ) {
1374
- _e('Is this your calendar page?','my-calendar'); echo ' <code>'.get_permalink( $value ).'</code>';
1375
- return;
1376
- } else {
1377
- _e('I tried to guess, but don\'t have a suggestion for you.','my-calendar');;
1378
- return;
1379
  }
1380
  }
1381
  }
@@ -1777,7 +1836,16 @@ function xml_entities($text, $charset = 'UTF-8'){
1777
  //echo $text;
1778
  return preg_replace($pattern, $replacement, $text);
1779
  }
 
1780
  // Actions -- these are action hooks attached to My Calendar events, usable to add additional actions during those events.
 
 
 
 
 
 
 
 
1781
  // Actions are only performed after their respective My Calendar events have been successfully completed.
1782
  // If there are errors in the My Calendar event, the action hook will not fire.
1783
  /*
4
  function my_calendar_add_feed() {
5
  global $wp_rewrite, $wpdb;
6
  $mcdb = $wpdb;
7
+ add_feed( 'my-calendar-rss', 'my_calendar_rss' );
8
+ add_feed( 'my-calendar-ics', 'my_calendar_ical' );
9
+ add_feed( 'my-calendar-print', 'my_calendar_print' );
 
 
 
 
 
 
 
 
10
  }
11
 
12
  if ( ! function_exists( 'is_ssl' ) ) {
46
  $options = '';
47
  foreach($users as $u) {
48
  if ( in_array( $u->ID, $selected ) ) { $checked = ' checked="checked"'; } else { $checked = ''; }
49
+ $display_name = ( $u->display_name == '' ) ? $u->user_nicename : $u->display_name;
50
+ $options = '<option value="'.$u->ID.'"'.$checked.">$display_name</option>\n";
51
  }
52
  return $options;
53
  }
95
  $c = hexdec(substr($color,(2*$x),2)) + $per;
96
  $c = ($c > 255) ? 'ff' : dechex($c);
97
  $rgb .= (strlen($c) < 2) ? '0'.$c : $c;
98
+ }
99
  }
100
  return '#'.$rgb;
101
  }
102
 
103
+ function mc_file_exists( $file ) {
104
+ $dir = plugin_dir_path( __FILE__ );
105
+ $base = basename( $dir );
106
+ $return = apply_filters( 'mc_file_exists', false, $file );
107
+ if ( $return ) { return true; }
108
+ if ( file_exists( get_stylesheet_directory() . '/' . $file ) ) { return true; }
109
+ if ( file_exists( str_replace($base,'my-calendar-custom',$dir ) . $file ) ) { return true; }
110
+ return false;
111
+ }
112
+
113
+ function mc_get_file( $file, $type='path' ) {
114
+ $dir = plugin_dir_path( __FILE__ );
115
+ $url = plugin_dir_url( __FILE__ );
116
+ $base = basename( $dir );
117
+ if ( file_exists( get_stylesheet_directory() . '/' . $file ) ) {
118
+ $path = ( $type == 'path' ) ? get_stylesheet_directory() . '/' . $file : get_stylesheet_directory_uri() .'/'. $file;
119
+ }
120
+ if ( file_exists( str_replace($base,'my-calendar-custom',$dir ).$file ) ) {
121
+ $path = ( $type == 'path' ) ? str_replace($base,'my-calendar-custom',$dir ).$file : str_replace($base,'my-calendar-custom',$url ).$file;
122
+ }
123
+ $path = apply_filters( 'mc_get_file', $path, $file );
124
+ return $path;
125
+ }
126
+
127
+ add_action( 'wp_enqueue_scripts', 'mc_register_styles' );
128
+ function mc_register_styles() {
129
+ global $wp_query;
130
+ $stylesheet = mc_get_style_path( get_option( 'mc_css_file' ),'url' );
131
+ wp_register_style( 'my-calendar-style', $stylesheet );
132
+ $admin_stylesheet = plugins_url( 'mc-admin.css', __FILE__ );
133
+ wp_register_style( 'my-calendar-admin-style', $admin_stylesheet );
134
+ if ( current_user_can( 'mc_manage_events' ) ) {
135
+ wp_enqueue_style( 'my-calendar-admin-style' );
136
+ }
137
+ $this_post = $wp_query->get_queried_object();
138
+ $id = ( is_object($this_post) && isset( $this_post->ID ) ) ? $this_post->ID : false;
139
+ $js_array = ( get_option( 'mc_show_js' ) != '' ) ? explode( ",",get_option( 'mc_show_js' ) ) : array() ;
140
+ $css_array = ( get_option( 'mc_show_css' ) != '' ) ? explode( ",",get_option( 'mc_show_css' ) ) : array() ;
141
+ // check whether any scripts are actually enabled.
142
+ if ( get_option('mc_calendar_javascript') != 1 || get_option('mc_list_javascript') != 1 || get_option('mc_mini_javascript') != 1 || get_option('mc_ajax_javascript') != 1 ) {
143
+ if ( @in_array( $id, $js_array ) || get_option( 'mc_show_js' ) == '' ) {
144
+ wp_enqueue_script( 'jquery' );
145
+ }
146
+ }
147
+ if ( get_option('mc_use_styles') != 'true' ) {
148
+ if ( @in_array( $id, $css_array ) || get_option( 'mc_show_css' ) == '' ) {
149
+ wp_enqueue_style( 'my-calendar-style' );
150
+ }
151
+ }
152
+ if ( mc_is_tablet() && mc_file_exists( 'mc-tablet.css' ) ) {
153
+ $tablet = mc_get_file( 'mc-tablet.css' );
154
+ wp_register_style( 'my-calendar-tablet-style', $tablet );
155
+ wp_enqueue_style( 'my-calendar-tablet-style' );
156
+ }
157
+ if ( mc_is_mobile() && mc_file_exists( 'mc-mobile.css' ) ) {
158
+ $mobile = mc_get_file( 'mc-mobile.css' );
159
+ wp_register_style( 'my-calendar-mobile-style', $mobile );
160
+ wp_enqueue_style( 'my-calendar-mobile-style' );
161
+ }
162
+ if ( function_exists( 'mcs_submissions' ) ) {
163
+ $mcs = plugins_url('/my-calendar-submissions/mcs-styles.css');
164
+ $mcs_ui = plugins_url('/my-calendar-submissions/css/smoothness/jquery-ui-1.8.23.custom.css');
165
+ wp_register_style( 'my-calendar-submissions-ui-style', $mcs_ui );
166
+ wp_enqueue_style( 'my-calendar-submissions-ui-style' );
167
+ wp_register_style( 'my-calendar-submissions-style', $mcs );
168
+ wp_enqueue_style( 'my-calendar-submissions-style' );
169
+ }
170
+ }
171
+
172
  // Function to add the calendar style into the header
173
  function my_calendar_wp_head() {
174
+ global $wpdb, $wp_query;
175
  $mcdb = $wpdb;
176
  $array = array();
177
+ // If the calendar isn't installed or upgraded this won't work
178
+ check_my_calendar();
 
179
  if ( get_option('mc_use_styles') != 'true' ) {
180
  $this_post = $wp_query->get_queried_object();
181
+ $id = ( is_object($this_post) && isset( $this_post->ID ) ) ? $this_post->ID : false;
182
+ $array = ( get_option( 'mc_show_css' ) != '' ) ? explode( ",",get_option( 'mc_show_css' ) ) : $array ;
 
 
 
 
 
 
 
 
183
  if ( @in_array( $id, $array ) || get_option( 'mc_show_css' ) == '' ) {
184
+ // generate category colors
185
+ $category_styles = $inv = $type = $alt = '';
186
+ $categories = $mcdb->get_results("SELECT * FROM " . MY_CALENDAR_CATEGORIES_TABLE . " ORDER BY category_id ASC");
187
+ foreach ( $categories as $category ) {
188
  $class = "mc_".sanitize_title($category->category_name);
189
  $hex = (strpos($category->category_color,'#') !== 0)?'#':'';
190
  $color = $hex.$category->category_color;
191
  if ( $color != '#' ) {
192
+ $hcolor = mc_shift_color($category->category_color);
193
+ if ( get_option( 'mc_apply_color' ) == 'font' ) {
194
+ $type = 'color';
195
+ $alt = 'background';
196
+ } else if ( get_option( 'mc_apply_color' ) == 'background' ) {
197
+ $type = 'background';
198
+ $alt = 'color';
199
+ }
200
+ if ( get_option( 'mc_inverse_color' ) == 'true' ) {
201
+ $inverse = mc_inverse_color( $color );
202
+ $inv = "$alt: $inverse;";
203
+ }
204
+ if ( get_option( 'mc_apply_color' ) == 'font' || get_option( 'mc_apply_color' ) == 'background' ) {
205
+ // always an anchor as of 1.11.0, apply also to title
206
+ $category_styles .= "\n.mc-main .$class .event-title, .mc-main .$class .event-title a { $type: $color; $inv }";
207
+ $category_styles .= "\n.mc-main .$class .event-title a:hover, .mc-main .$class .event-title a:focus { $type: $hcolor;}";
208
+ }
 
 
209
  }
210
  }
 
 
 
 
 
 
211
  $all_styles = "
 
 
212
  <style type=\"text/css\">
213
  <!--
214
  .mcjs .mc-main .details, .mcjs .mc-main .calendar-events { display: none; }
219
  }
220
  -->
221
  </style>";
 
 
 
 
 
 
 
 
 
 
 
222
  echo $all_styles;
223
  }
224
  }
239
  function my_calendar_add_javascript() {
240
  if ( isset($_GET['page']) && $_GET['page'] == 'my-calendar' ) {
241
  wp_enqueue_script('jquery.calendrical',plugins_url( 'js/jquery.calendrical.js', __FILE__ ), array('jquery') );
242
+ wp_localize_script('jquery.calendrical', 'mc_months', array(
243
+ date_i18n( 'F', strtotime( 'January 1' ) ),
244
+ date_i18n( 'F', strtotime( 'February 1' ) ),
245
+ date_i18n( 'F', strtotime( 'March 1' ) ),
246
+ date_i18n( 'F', strtotime( 'April 1' ) ),
247
+ date_i18n( 'F', strtotime( 'May 1' ) ),
248
+ date_i18n( 'F', strtotime( 'June 1' ) ),
249
+ date_i18n( 'F', strtotime( 'July 1' ) ),
250
+ date_i18n( 'F', strtotime( 'August 1' ) ),
251
+ date_i18n( 'F', strtotime( 'September 1' ) ),
252
+ date_i18n( 'F', strtotime( 'October 1' ) ),
253
+ date_i18n( 'F', strtotime( 'November 1' ) ),
254
+ date_i18n( 'F', strtotime( 'December 1' ) )
255
+ ) );
256
  wp_enqueue_script('jquery.addfields',plugins_url( 'js/jquery.addfields.js', __FILE__ ), array('jquery') );
257
  if ( version_compare( get_bloginfo( 'version' ) , '3.3' , '<' ) ) {
258
  wp_enqueue_script('media-upload');
278
  //<![CDATA[
279
  jQuery(document).ready(function($) {
280
  $('#event_begin, #event_time,' + '#event_end, #event_endtime').calendricalDateTimeRange();
281
+ <?php if ( function_exists( 'jd_doTwitterAPIPost' ) ) { ?>
282
+ $('#mc_twitter').charCount( { allowed: 140, counterText: '<?php _e('Characters left: ','my-calendar') ?>' } );
283
+ <?php } ?>
284
  });
285
  //]]>
286
  </script>
559
  if ( version_compare( $current_version, "2.0.4", "<" ) ) { $upgrade_path[] = "2.0.4"; }
560
  if ( version_compare( $current_version, "2.1.0", "<" ) ) { $upgrade_path[] = "2.1.0"; }
561
  if ( version_compare( $current_version, "2.2.0", "<" ) ) { $upgrade_path[] = "2.2.0"; }
562
+ if ( version_compare( $current_version, "2.2.6", "<" ) ) { $upgrade_path[] = "2.2.6"; }
563
+ if ( version_compare( $current_version, "2.2.10", "<" ) ) { $upgrade_path[] = "2.2.10"; }
564
  }
565
  // having determined upgrade path, assign new version number
566
  update_option( 'mc_version' , $mc_version );
568
  if ( $new_install == true ) {
569
  //add default settings
570
  mc_default_settings();
571
+ $sql = "INSERT INTO " . MY_CALENDAR_CATEGORIES_TABLE . " SET category_id=1, category_name='General', category_color='#ffffcc', category_icon='event.png'";
572
  $mcdb->query($sql);
573
  } else {
574
  // clear cache so updates are immediately available
578
  foreach ($upgrade_path as $upgrade) {
579
  switch ($upgrade) {
580
  // only upgrade db on most recent version
581
+ case '2.2.10':
582
+ delete_option( 'mc_show_print' );
583
+ delete_option( 'mc_show_ical' );
584
+ delete_option( 'mc_show_rss' );
585
+ flush_rewrite_rules();
586
+ break;
587
  case '2.2.8':
588
  delete_option( 'mc_draggable' );
589
  break;
631
  break;
632
  case '1.10.0':
633
  update_option( 'mc_week_caption',"The week's events" );
 
634
  break;
635
  case '1.9.1':
636
  update_option( 'mc_widget_defaults', $defaults);
727
  }
728
  break;
729
  case '1.7.0':
 
 
730
  add_option('mc_skip_holidays','false');
731
  add_option('mc_event_edit_perms','manage_options');
732
  $original_styles = get_option('mc_style');
932
  }
933
  }
934
  // @data object with event_category value
935
+ function mc_category_select( $data=false, $option=true ) {
936
  global $wpdb;
937
  $mcdb=$wpdb;
938
  if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
955
  $default = $c;
956
  }
957
  }
958
+ if ( !$option ) {
959
+ $default = ( get_option( 'mc_default_category' ) ) ? get_option( 'mc_default_category' ) : 1 ;
960
+ return ( is_object( $data ) ) ? $data->event_category : $default;
961
+ }
962
  return $default.$list;
963
  }
964
 
1033
  }
1034
  }
1035
 
 
 
 
 
 
 
 
1036
  function mc_month_comparison($month) {
1037
  $current_month = date("n", current_time('timestamp'));
1038
  if (isset($_GET['yr']) && isset($_GET['month'])) {
1184
 
1185
  // Mail functions (originally by Roland)
1186
  function my_calendar_send_email( $details ) {
1187
+ $event = event_as_array($details);
1188
+ // shift to boolean
1189
+ $send_email_option = ( get_option( 'mc_event_mail' ) == 'true' ) ? true : false;
1190
+ $send_email = apply_filters( 'mc_send_notification', $send_email_option, $event );
1191
+ if ( $send_email == true ) {
1192
  add_filter('wp_mail_content_type',create_function('', 'return "text/html";'));
1193
  }
1194
  if ( get_option('mc_event_mail') == 'true' ) {
1350
  global $current_screen;
1351
  if ( $current_screen->id == 'toplevel_page_my-calendar' ) {
1352
  // later.
1353
+ wp_enqueue_script( 'charCount', plugins_url( 'wp-to-twitter/js/jquery.charcount.js'), array('jquery') );
1354
+ }
1355
+ if ( $current_screen->id == 'my-calendar_page_my-calendar-categories' ) {
1356
+ wp_enqueue_style( 'wp-color-picker' );
1357
+ wp_enqueue_script( 'mc-color-picker', plugins_url('js/color-picker.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
1358
  }
1359
  }
1360
 
1402
  }
1403
  }
1404
 
1405
+ // in multi-site, wp_is_mobile() won't be defined yet if plug-in is network activated.
1406
+ if ( !function_exists( 'is_plugin_active_for_network' ) ) {
1407
+ require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
1408
+ }
1409
+
1410
+ if ( !function_exists( 'wp_is_mobile' ) ) {
1411
+ if ( !is_plugin_active_for_network( 'my-calendar/my-calendar.php' ) ) {
1412
+ function wp_is_mobile() { return false; }
1413
  }
1414
+ }
1415
+
1416
+
1417
+ function mc_is_mobile() {
1418
+ return apply_filters( 'mc_is_mobile', wp_is_mobile() );
1419
  }
1420
 
1421
+ /* this function only provides a filter for custom dev. */
1422
  function mc_is_tablet() {
1423
+ return apply_filters( 'mc_is_tablet', false );
 
 
 
 
 
1424
  }
1425
 
1426
  function mc_guess_calendar() {
1429
  /* 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. */
1430
  $my_guesses = array( 'calendar','events','activities','classes','courses','rehearsals','schedule','calendario','actividades','eventos','kalender','veranstaltungen','unterrichten','eventi','classi' );
1431
  foreach( $my_guesses as $guess ) {
1432
+ $value = $mcdb->get_var("SELECT id FROM $mcdb->posts WHERE post_title LIKE '%$guess%' AND post_status = 'publish'" );
1433
+ if ( $value && get_option( 'mc_uri' ) == '' ) {
1434
+ $link = get_permalink( $value );
1435
+ update_option( 'mc_uri', $link );
1436
+ $return = __('Is this your calendar page?','my-calendar'); echo ' <code>'.$link.'</code>';
1437
+ return $return;
 
1438
  }
1439
  }
1440
  }
1836
  //echo $text;
1837
  return preg_replace($pattern, $replacement, $text);
1838
  }
1839
+
1840
  // Actions -- these are action hooks attached to My Calendar events, usable to add additional actions during those events.
1841
+
1842
+ add_action( 'init', 'mc_register_actions' );
1843
+ function mc_register_actions() {
1844
+ apply_filters( "debug", 'my_calendar add actions/filters' );
1845
+ add_action( 'mc_event_registration', 'mc_standard_event', 10, 2 );
1846
+ add_action( 'mc_transition_event', 'mc_tweet_approval', 10, 2 );
1847
+ }
1848
+
1849
  // Actions are only performed after their respective My Calendar events have been successfully completed.
1850
  // If there are errors in the My Calendar event, the action hook will not fire.
1851
  /*
my-calendar-detect-mobile.php DELETED
@@ -1,1034 +0,0 @@
1
- <?php
2
- if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
3
-
4
- /* *******************************************
5
- // Copyright 2010-2012, Anthony Hand
6
- //
7
- // File version date: April 23, 2012
8
- // Update:
9
- // - Updated DetectAmazonSilk(): Fixed an issue in the detection logic.
10
- //
11
- // File version date: April 22, 2012 - Second update
12
- // Update: To address additional Kindle issues...
13
- // - Updated DetectRichCSS(): Excluded e-Ink Kindle devices.
14
- // - Created DetectAmazonSilk(): Created to detect Kindle Fire devices in Silk mode.
15
- // - Updated DetectMobileQuick(): Updated to include e-Ink Kindle devices and the Kindle Fire in Silk mode.
16
- //
17
- // File version date: April 11, 2012
18
- // Update:
19
- // - Added a new variable for the new BlackBerry Curve Touch (9380): deviceBBCurveTouch.
20
- // - Updated DetectBlackBerryTouch() to support the new BlackBerry Curve Touch (9380).
21
- // - Updated DetectKindle(): Added the missing 'this' class identifier for the DetectAndroid() call.
22
- //
23
- // File version date: January 21, 2012
24
- // Update:
25
- // - Added the constructor method per new features in PHP 5.0: __construct().
26
- // - Moved Windows Phone 7 to the iPhone Tier. WP7.5's IE 9-based browser is good enough now.
27
- // - Added a new variable for 2 versions of the new BlackBerry Bold Touch (9900 and 9930): deviceBBBoldTouch.
28
- // - Updated DetectBlackBerryTouch() to support the 2 versions of the new BlackBerry Bold Touch (9900 and 9930).
29
- // - Updated DetectKindle() to focus on eInk devices only. The Kindle Fire should be detected as a regular Android device.
30
- //
31
- // File version date: August 22, 2011
32
- // Update:
33
- // - Updated DetectAndroidTablet() to fix a bug introduced in the last fix! The true/false returns were mixed up.
34
- //
35
- // File version date: August 16, 2011
36
- // Update:
37
- // - Updated DetectAndroidTablet() to exclude Opera Mini, which was falsely reporting as running on a tablet device when on a phone.
38
- //
39
- //
40
- // LICENSE INFORMATION
41
- // Licensed under the Apache License, Version 2.0 (the "License");
42
- // you may not use this file except in compliance with the License.
43
- // You may obtain a copy of the License at
44
- // http://www.apache.org/licenses/LICENSE-2.0
45
- // Unless required by applicable law or agreed to in writing,
46
- // software distributed under the License is distributed on an
47
- // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
48
- // either express or implied. See the License for the specific
49
- // language governing permissions and limitations under the License.
50
- //
51
- //
52
- // ABOUT THIS PROJECT
53
- // Project Owner: Anthony Hand
54
- // Email: anthony.hand@gmail.com
55
- // Web Site: http://www.mobileesp.com
56
- // Source Files: http://code.google.com/p/mobileesp/
57
- //
58
- // Versions of this code are available for:
59
- // PHP, JavaScript, Java, ASP.NET (C#), and Ruby
60
- //
61
- // *******************************************
62
- */
63
-
64
-
65
-
66
- //**************************
67
- // The uagent_info class encapsulates information about
68
- // a browser's connection to your web site.
69
- // You can use it to find out whether the browser asking for
70
- // your site's content is probably running on a mobile device.
71
- // The methods were written so you can be as granular as you want.
72
- // For example, enquiring whether it's as specific as an iPod Touch or
73
- // as general as a smartphone class device.
74
- // The object's methods return 1 for true, or 0 for false.
75
- class uagent_info
76
- {
77
- var $useragent = "";
78
- var $httpaccept = "";
79
-
80
- //standardized values for true and false.
81
- var $true = 1;
82
- var $false = 0;
83
-
84
- //Let's store values for quickly accessing the same info multiple times.
85
- var $isIphone = 0; //Stores whether the device is an iPhone or iPod Touch.
86
- var $isAndroidPhone = 0; //Stores whether the device is a (small-ish) Android phone or media player.
87
- var $isTierTablet = 0; //Stores whether is the Tablet (HTML5-capable, larger screen) tier of devices.
88
- var $isTierIphone = 0; //Stores whether is the iPhone tier of devices.
89
- var $isTierRichCss = 0; //Stores whether the device can probably support Rich CSS, but JavaScript support is not assumed. (e.g., newer BlackBerry, Windows Mobile)
90
- var $isTierGenericMobile = 0; //Stores whether it is another mobile device, which cannot be assumed to support CSS or JS (eg, older BlackBerry, RAZR)
91
-
92
- //Initialize some initial smartphone string variables.
93
- var $engineWebKit = 'webkit';
94
- var $deviceIphone = 'iphone';
95
- var $deviceIpod = 'ipod';
96
- var $deviceIpad = 'ipad';
97
- var $deviceMacPpc = 'macintosh'; //Used for disambiguation
98
-
99
- var $deviceAndroid = 'android';
100
- var $deviceGoogleTV = 'googletv';
101
- var $deviceXoom = 'xoom'; //Motorola Xoom
102
- var $deviceHtcFlyer = 'htc_flyer'; //HTC Flyer
103
-
104
- var $deviceNuvifone = 'nuvifone'; //Garmin Nuvifone
105
-
106
- var $deviceSymbian = 'symbian';
107
- var $deviceS60 = 'series60';
108
- var $deviceS70 = 'series70';
109
- var $deviceS80 = 'series80';
110
- var $deviceS90 = 'series90';
111
-
112
- var $deviceWinPhone7 = 'windows phone os 7';
113
- var $deviceWinMob = 'windows ce';
114
- var $deviceWindows = 'windows';
115
- var $deviceIeMob = 'iemobile';
116
- var $devicePpc = 'ppc'; //Stands for PocketPC
117
- var $enginePie = 'wm5 pie'; //An old Windows Mobile
118
-
119
- var $deviceBB = 'blackberry';
120
- var $vndRIM = 'vnd.rim'; //Detectable when BB devices emulate IE or Firefox
121
- var $deviceBBStorm = 'blackberry95'; //Storm 1 and 2
122
- var $deviceBBBold = 'blackberry97'; //Bold 97x0 (non-touch)
123
- var $deviceBBBoldTouch = 'blackberry 99'; //Bold 99x0 (touchscreen)
124
- var $deviceBBTour = 'blackberry96'; //Tour
125
- var $deviceBBCurve = 'blackberry89'; //Curve2
126
- var $deviceBBCurveTouch = 'blackberry 938'; //Curve Touch
127
- var $deviceBBTorch = 'blackberry 98'; //Torch
128
- var $deviceBBPlaybook = 'playbook'; //PlayBook tablet
129
-
130
- var $devicePalm = 'palm';
131
- var $deviceWebOS = 'webos'; //For Palm's line of WebOS devices
132
- var $deviceWebOShp = 'hpwos'; //For HP's line of WebOS devices
133
-
134
- var $engineBlazer = 'blazer'; //Old Palm browser
135
- var $engineXiino = 'xiino'; //Another old Palm
136
-
137
- var $deviceKindle = 'kindle'; //Amazon Kindle, eInk one
138
- var $engineSilk = 'silk'; //Amazon's accelerated Silk browser for Kindle Fire
139
-
140
- //Initialize variables for mobile-specific content.
141
- var $vndwap = 'vnd.wap';
142
- var $wml = 'wml';
143
-
144
- //Initialize variables for other random devices and mobile browsers.
145
- var $deviceTablet = 'tablet'; //Generic term for slate and tablet devices
146
- var $deviceBrew = 'brew';
147
- var $deviceDanger = 'danger';
148
- var $deviceHiptop = 'hiptop';
149
- var $devicePlaystation = 'playstation';
150
- var $deviceNintendoDs = 'nitro';
151
- var $deviceNintendo = 'nintendo';
152
- var $deviceWii = 'wii';
153
- var $deviceXbox = 'xbox';
154
- var $deviceArchos = 'archos';
155
-
156
- var $engineOpera = 'opera'; //Popular browser
157
- var $engineNetfront = 'netfront'; //Common embedded OS browser
158
- var $engineUpBrowser = 'up.browser'; //common on some phones
159
- var $engineOpenWeb = 'openweb'; //Transcoding by OpenWave server
160
- var $deviceMidp = 'midp'; //a mobile Java technology
161
- var $uplink = 'up.link';
162
- var $engineTelecaQ = 'teleca q'; //a modern feature phone browser
163
-
164
- var $devicePda = 'pda'; //some devices report themselves as PDAs
165
- var $mini = 'mini'; //Some mobile browsers put 'mini' in their names.
166
- var $mobile = 'mobile'; //Some mobile browsers put 'mobile' in their user agent strings.
167
- var $mobi = 'mobi'; //Some mobile browsers put 'mobi' in their user agent strings.
168
-
169
- //Use Maemo, Tablet, and Linux to test for Nokia's Internet Tablets.
170
- var $maemo = 'maemo';
171
- var $linux = 'linux';
172
- var $qtembedded = 'qt embedded'; //for Sony Mylo and others
173
- var $mylocom2 = 'com2'; //for Sony Mylo also
174
-
175
- //In some UserAgents, the only clue is the manufacturer.
176
- var $manuSonyEricsson = "sonyericsson";
177
- var $manuericsson = "ericsson";
178
- var $manuSamsung1 = "sec-sgh";
179
- var $manuSony = "sony";
180
- var $manuHtc = "htc"; //Popular Android and WinMo manufacturer
181
-
182
- //In some UserAgents, the only clue is the operator.
183
- var $svcDocomo = "docomo";
184
- var $svcKddi = "kddi";
185
- var $svcVodafone = "vodafone";
186
-
187
- //Disambiguation strings.
188
- var $disUpdate = "update"; //pda vs. update
189
-
190
-
191
- //**************************
192
- //The constructor. Allows the latest PHP (5.0+) to locate a constructor object and initialize the object.
193
- function __construct()
194
- {
195
- $this->uagent_info();
196
- }
197
-
198
-
199
- //**************************
200
- //The object initializer. Initializes several default variables.
201
- function uagent_info()
202
- {
203
- $this->useragent = isset($_SERVER['HTTP_USER_AGENT'])?strtolower($_SERVER['HTTP_USER_AGENT']):'';
204
- $this->httpaccept = isset($_SERVER['HTTP_ACCEPT'])?strtolower($_SERVER['HTTP_ACCEPT']):'';
205
-
206
- //Let's initialize some values to save cycles later.
207
- $this->InitDeviceScan();
208
- }
209
-
210
- //**************************
211
- // Initialize Key Stored Values.
212
- function InitDeviceScan()
213
- {
214
- global $isIphone, $isAndroidPhone, $isTierTablet, $isTierIphone;
215
-
216
- //We'll use these 4 variables to speed other processing. They're super common.
217
- $this->isIphone = $this->DetectIphoneOrIpod();
218
- $this->isAndroidPhone = $this->DetectAndroidPhone();
219
- $this->isTierIphone = $this->DetectTierIphone();
220
- $this->isTierTablet = $this->DetectTierTablet();
221
-
222
- //Optional: Comment these out if you don't need them.
223
- global $isTierRichCss, $isTierGenericMobile;
224
- $this->isTierRichCss = $this->DetectTierRichCss();
225
- $this->isTierGenericMobile = $this->DetectTierOtherPhones();
226
- }
227
-
228
- //**************************
229
- //Returns the contents of the User Agent value, in lower case.
230
- function Get_Uagent()
231
- {
232
- return $this->useragent;
233
- }
234
-
235
- //**************************
236
- //Returns the contents of the HTTP Accept value, in lower case.
237
- function Get_HttpAccept()
238
- {
239
- return $this->httpaccept;
240
- }
241
-
242
-
243
- //**************************
244
- // Detects if the current device is an iPhone.
245
- function DetectIphone()
246
- {
247
- if (stripos($this->useragent, $this->deviceIphone) > -1)
248
- {
249
- //The iPad and iPod Touch say they're an iPhone. So let's disambiguate.
250
- if ($this->DetectIpad() == $this->true ||
251
- $this->DetectIpod() == $this->true)
252
- return $this->false;
253
- //Yay! It's an iPhone!
254
- else
255
- return $this->true;
256
- }
257
- else
258
- return $this->false;
259
- }
260
-
261
- //**************************
262
- // Detects if the current device is an iPod Touch.
263
- function DetectIpod()
264
- {
265
- if (stripos($this->useragent, $this->deviceIpod) > -1)
266
- return $this->true;
267
- else
268
- return $this->false;
269
- }
270
-
271
- //**************************
272
- // Detects if the current device is an iPad tablet.
273
- function DetectIpad()
274
- {
275
- if (stripos($this->useragent, $this->deviceIpad) > -1 &&
276
- $this->DetectWebkit() == $this->true)
277
- return $this->true;
278
- else
279
- return $this->false;
280
- }
281
-
282
- //**************************
283
- // Detects if the current device is an iPhone or iPod Touch.
284
- function DetectIphoneOrIpod()
285
- {
286
- //We repeat the searches here because some iPods may report themselves as an iPhone, which would be okay.
287
- if (stripos($this->useragent, $this->deviceIphone) > -1 ||
288
- stripos($this->useragent, $this->deviceIpod) > -1)
289
- return $this->true;
290
- else
291
- return $this->false;
292
- }
293
-
294
- //**************************
295
- // Detects *any* iOS device: iPhone, iPod Touch, iPad.
296
- function DetectIos()
297
- {
298
- if (($this->DetectIphoneOrIpod() == $this->true) ||
299
- ($this->DetectIpad() == $this->true))
300
- return $this->true;
301
- else
302
- return $this->false;
303
- }
304
-
305
-
306
- //**************************
307
- // Detects *any* Android OS-based device: phone, tablet, and multi-media player.
308
- // Also detects Google TV.
309
- function DetectAndroid()
310
- {
311
- if ((stripos($this->useragent, $this->deviceAndroid) > -1) ||
312
- ($this->DetectGoogleTV() == $this->true))
313
- return $this->true;
314
- //Special check for the HTC Flyer 7" tablet
315
- if ((stripos($this->useragent, $this->deviceHtcFlyer) > -1))
316
- return $this->true;
317
- else
318
- return $this->false;
319
- }
320
-
321
- //**************************
322
- // Detects if the current device is a (small-ish) Android OS-based device
323
- // used for calling and/or multi-media (like a Samsung Galaxy Player).
324
- // Google says these devices will have 'Android' AND 'mobile' in user agent.
325
- // Ignores tablets (Honeycomb and later).
326
- function DetectAndroidPhone()
327
- {
328
- if (($this->DetectAndroid() == $this->true) &&
329
- (stripos($this->useragent, $this->mobile) > -1))
330
- return $this->true;
331
- //Special check for Android phones with Opera Mobile. They should report here.
332
- if (($this->DetectOperaAndroidPhone() == $this->true))
333
- return $this->true;
334
- //Special check for the HTC Flyer 7" tablet. It should report here.
335
- if ((stripos($this->useragent, $this->deviceHtcFlyer) > -1))
336
- return $this->true;
337
- else
338
- return $this->false;
339
- }
340
-
341
- //**************************
342
- // Detects if the current device is a (self-reported) Android tablet.
343
- // Google says these devices will have 'Android' and NOT 'mobile' in their user agent.
344
- function DetectAndroidTablet()
345
- {
346
- //First, let's make sure we're on an Android device.
347
- if ($this->DetectAndroid() == $this->false)
348
- return $this->false;
349
-
350
- //Special check for Opera Android Phones. They should NOT report here.
351
- if ($this->DetectOperaMobile() == $this->true)
352
- return $this->false;
353
- //Special check for the HTC Flyer 7" tablet. It should NOT report here.
354
- if ((stripos($this->useragent, $this->deviceHtcFlyer) > -1))
355
- return $this->false;
356
-
357
- //Otherwise, if it's Android and does NOT have 'mobile' in it, Google says it's a tablet.
358
- if (stripos($this->useragent, $this->mobile) > -1)
359
- return $this->false;
360
- else
361
- return $this->true;
362
- }
363
-
364
- //**************************
365
- // Detects if the current device is an Android OS-based device and
366
- // the browser is based on WebKit.
367
- function DetectAndroidWebKit()
368
- {
369
- if (($this->DetectAndroid() == $this->true) &&
370
- ($this->DetectWebkit() == $this->true))
371
- return $this->true;
372
- else
373
- return $this->false;
374
- }
375
-
376
- //**************************
377
- // Detects if the current device is a GoogleTV.
378
- function DetectGoogleTV()
379
- {
380
- if (stripos($this->useragent, $this->deviceGoogleTV) > -1)
381
- return $this->true;
382
- else
383
- return $this->false;
384
- }
385
-
386
- //**************************
387
- // Detects if the current browser is based on WebKit.
388
- function DetectWebkit()
389
- {
390
- if (stripos($this->useragent, $this->engineWebKit) > -1)
391
- return $this->true;
392
- else
393
- return $this->false;
394
- }
395
-
396
-
397
- //**************************
398
- // Detects if the current browser is the Nokia S60 Open Source Browser.
399
- function DetectS60OssBrowser()
400
- {
401
- //First, test for WebKit, then make sure it's either Symbian or S60.
402
- if ($this->DetectWebkit() == $this->true)
403
- {
404
- if (stripos($this->useragent, $this->deviceSymbian) > -1 ||
405
- stripos($this->useragent, $this->deviceS60) > -1)
406
- {
407
- return $this->true;
408
- }
409
- else
410
- return $this->false;
411
- }
412
- else
413
- return $this->false;
414
- }
415
-
416
- //**************************
417
- // Detects if the current device is any Symbian OS-based device,
418
- // including older S60, Series 70, Series 80, Series 90, and UIQ,
419
- // or other browsers running on these devices.
420
- function DetectSymbianOS()
421
- {
422
- if (stripos($this->useragent, $this->deviceSymbian) > -1 ||
423
- stripos($this->useragent, $this->deviceS60) > -1 ||
424
- stripos($this->useragent, $this->deviceS70) > -1 ||
425
- stripos($this->useragent, $this->deviceS80) > -1 ||
426
- stripos($this->useragent, $this->deviceS90) > -1)
427
- return $this->true;
428
- else
429
- return $this->false;
430
- }
431
-
432
- //**************************
433
- // Detects if the current browser is a
434
- // Windows Phone 7 device.
435
- function DetectWindowsPhone7()
436
- {
437
- if (stripos($this->useragent, $this->deviceWinPhone7) > -1)
438
- return $this->true;
439
- else
440
- return $this->false;
441
- }
442
-
443
- //**************************
444
- // Detects if the current browser is a Windows Mobile device.
445
- // Excludes Windows Phone 7 devices.
446
- // Focuses on Windows Mobile 6.xx and earlier.
447
- function DetectWindowsMobile()
448
- {
449
- if ($this->DetectWindowsPhone7() == $this->true)
450
- return $this->false;
451
- //Most devices use 'Windows CE', but some report 'iemobile'
452
- // and some older ones report as 'PIE' for Pocket IE.
453
- if (stripos($this->useragent, $this->deviceWinMob) > -1 ||
454
- stripos($this->useragent, $this->deviceIeMob) > -1 ||
455
- stripos($this->useragent, $this->enginePie) > -1)
456
- return $this->true;
457
- //Test for Windows Mobile PPC but not old Macintosh PowerPC.
458
- if (stripos($this->useragent, $this->devicePpc) > -1
459
- && !(stripos($this->useragent, $this->deviceMacPpc) > 1))
460
- return $this->true;
461
- //Test for certain Windwos Mobile-based HTC devices.
462
- if (stripos($this->useragent, $this->manuHtc) > -1 &&
463
- stripos($this->useragent, $this->deviceWindows) > -1)
464
- return $this->true;
465
- if ($this->DetectWapWml() == $this->true &&
466
- stripos($this->useragent, $this->deviceWindows) > -1)
467
- return $this->true;
468
- else
469
- return $this->false;
470
- }
471
-
472
- //**************************
473
- // Detects if the current browser is any BlackBerry device.
474
- // Includes the PlayBook.
475
- function DetectBlackBerry()
476
- {
477
- if ((stripos($this->useragent, $this->deviceBB) > -1) ||
478
- (stripos($this->httpaccept, $this->vndRIM) > -1))
479
- return $this->true;
480
- else
481
- return $this->false;
482
- }
483
-
484
- //**************************
485
- // Detects if the current browser is on a BlackBerry tablet device.
486
- // Examples: PlayBook
487
- function DetectBlackBerryTablet()
488
- {
489
- if ((stripos($this->useragent, $this->deviceBBPlaybook) > -1))
490
- return $this->true;
491
- else
492
- return $this->false;
493
- }
494
-
495
- //**************************
496
- // Detects if the current browser is a BlackBerry phone device AND uses a
497
- // WebKit-based browser. These are signatures for the new BlackBerry OS 6.
498
- // Examples: Torch. Includes the Playbook.
499
- function DetectBlackBerryWebKit()
500
- {
501
- if (($this->DetectBlackBerry() == $this->true) &&
502
- ($this->DetectWebkit() == $this->true))
503
- return $this->true;
504
- else
505
- return $this->false;
506
- }
507
-
508
- //**************************
509
- // Detects if the current browser is a BlackBerry Touch phone device with
510
- // a large screen, such as the Storm, Torch, and Bold Touch. Excludes the Playbook.
511
- function DetectBlackBerryTouch()
512
- {
513
- if ((stripos($this->useragent, $this->deviceBBStorm) > -1) ||
514
- (stripos($this->useragent, $this->deviceBBTorch) > -1) ||
515
- (stripos($this->useragent, $this->deviceBBBoldTouch) > -1) ||
516
- (stripos($this->useragent, $this->deviceBBCurveTouch) > -1))
517
- return $this->true;
518
- else
519
- return $this->false;
520
- }
521
-
522
- //**************************
523
- // Detects if the current browser is a BlackBerry OS 5 device AND
524
- // has a more capable recent browser. Excludes the Playbook.
525
- // Examples, Storm, Bold, Tour, Curve2
526
- // Excludes the new BlackBerry OS 6 and 7 browser!!
527
- function DetectBlackBerryHigh()
528
- {
529
- //Disambiguate for BlackBerry OS 6 or 7 (WebKit) browser
530
- if ($this->DetectBlackBerryWebKit() == $this->true)
531
- return $this->false;
532
- if ($this->DetectBlackBerry() == $this->true)
533
- {
534
- if (($this->DetectBlackBerryTouch() == $this->true) ||
535
- stripos($this->useragent, $this->deviceBBBold) > -1 ||
536
- stripos($this->useragent, $this->deviceBBTour) > -1 ||
537
- stripos($this->useragent, $this->deviceBBCurve) > -1)
538
- {
539
- return $this->true;
540
- }
541
- else
542
- return $this->false;
543
- }
544
- else
545
- return $this->false;
546
- }
547
-
548
- //**************************
549
- // Detects if the current browser is a BlackBerry device AND
550
- // has an older, less capable browser.
551
- // Examples: Pearl, 8800, Curve1.
552
- function DetectBlackBerryLow()
553
- {
554
- if ($this->DetectBlackBerry() == $this->true)
555
- {
556
- //Assume that if it's not in the High tier, then it's Low.
557
- if (($this->DetectBlackBerryHigh() == $this->true) ||
558
- ($this->DetectBlackBerryWebKit() == $this->true))
559
- return $this->false;
560
- else
561
- return $this->true;
562
- }
563
- else
564
- return $this->false;
565
- }
566
-
567
- //**************************
568
- // Detects if the current browser is on a PalmOS device.
569
- function DetectPalmOS()
570
- {
571
- //Most devices nowadays report as 'Palm', but some older ones reported as Blazer or Xiino.
572
- if (stripos($this->useragent, $this->devicePalm) > -1 ||
573
- stripos($this->useragent, $this->engineBlazer) > -1 ||
574
- stripos($this->useragent, $this->engineXiino) > -1)
575
- {
576
- //Make sure it's not WebOS first
577
- if ($this->DetectPalmWebOS() == $this->true)
578
- return $this->false;
579
- else
580
- return $this->true;
581
- }
582
- else
583
- return $this->false;
584
- }
585
-
586
-
587
- //**************************
588
- // Detects if the current browser is on a Palm device
589
- // running the new WebOS.
590
- function DetectPalmWebOS()
591
- {
592
- if (stripos($this->useragent, $this->deviceWebOS) > -1)
593
- return $this->true;
594
- else
595
- return $this->false;
596
- }
597
-
598
- //**************************
599
- // Detects if the current browser is on an HP tablet running WebOS.
600
- function DetectWebOSTablet()
601
- {
602
- if ((stripos($this->useragent, $this->deviceWebOShp) > -1)
603
- && (stripos($this->useragent, $this->deviceTablet) > -1))
604
- return $this->true;
605
- else
606
- return $this->false;
607
- }
608
-
609
- //**************************
610
- // Detects if the current browser is a
611
- // Garmin Nuvifone.
612
- function DetectGarminNuvifone()
613
- {
614
- if (stripos($this->useragent, $this->deviceNuvifone) > -1)
615
- return $this->true;
616
- else
617
- return $this->false;
618
- }
619
-
620
-
621
- //**************************
622
- // Check to see whether the device is any device
623
- // in the 'smartphone' category.
624
- function DetectSmartphone()
625
- {
626
- global $isIphone, $isAndroidPhone, $isTierIphone;
627
-
628
- if (($this->isIphone == $this->true)
629
- || ($this->isAndroidPhone == $this->true)
630
- || ($this->isTierIphone == $this->true)
631
- || ($this->DetectS60OssBrowser() == $this->true)
632
- || ($this->DetectSymbianOS() == $this->true)
633
- || ($this->DetectWindowsMobile() == $this->true)
634
- || ($this->DetectWindowsPhone7() == $this->true)
635
- || ($this->DetectBlackBerry() == $this->true)
636
- || ($this->DetectPalmWebOS() == $this->true)
637
- || ($this->DetectPalmOS() == $this->true)
638
- || ($this->DetectGarminNuvifone() == $this->true))
639
- return $this->true;
640
- else
641
- return $this->false;
642
- }
643
-
644
-
645
- //**************************
646
- // Detects whether the device is a Brew-powered device.
647
- function DetectBrewDevice()
648
- {
649
- if (stripos($this->useragent, $this->deviceBrew) > -1)
650
- return $this->true;
651
- else
652
- return $this->false;
653
- }
654
-
655
- //**************************
656
- // Detects the Danger Hiptop device.
657
- function DetectDangerHiptop()
658
- {
659
- if (stripos($this->useragent, $this->deviceDanger) > -1 ||
660
- stripos($this->useragent, $this->deviceHiptop) > -1)
661
- return $this->true;
662
- else
663
- return $this->false;
664
- }
665
-
666
- //**************************
667
- // Detects if the current browser is Opera Mobile or Mini.
668
- function DetectOperaMobile()
669
- {
670
- if (stripos($this->useragent, $this->engineOpera) > -1)
671
- {
672
- if ((stripos($this->useragent, $this->mini) > -1) ||
673
- (stripos($this->useragent, $this->mobi) > -1))
674
- return $this->true;
675
- else
676
- return $this->false;
677
- }
678
- else
679
- return $this->false;
680
- }
681
-
682
- //**************************
683
- // Detects if the current browser is Opera Mobile
684
- // running on an Android phone.
685
- function DetectOperaAndroidPhone()
686
- {
687
- if ((stripos($this->useragent, $this->engineOpera) > -1) &&
688
- (stripos($this->useragent, $this->deviceAndroid) > -1) &&
689
- (stripos($this->useragent, $this->mobi) > -1))
690
- return $this->true;
691
- else
692
- return $this->false;
693
- }
694
-
695
- //**************************
696
- // Detects if the current browser is Opera Mobile
697
- // running on an Android tablet.
698
- function DetectOperaAndroidTablet()
699
- {
700
- if ((stripos($this->useragent, $this->engineOpera) > -1) &&
701
- (stripos($this->useragent, $this->deviceAndroid) > -1) &&
702
- (stripos($this->useragent, $this->deviceTablet) > -1))
703
- return $this->true;
704
- else
705
- return $this->false;
706
- }
707
-
708
- //**************************
709
- // Detects whether the device supports WAP or WML.
710
- function DetectWapWml()
711
- {
712
- if (stripos($this->httpaccept, $this->vndwap) > -1 ||
713
- stripos($this->httpaccept, $this->wml) > -1)
714
- return $this->true;
715
- else
716
- return $this->false;
717
- }
718
-
719
- //**************************
720
- // Detects if the current device is an Amazon Kindle (eInk devices only).
721
- // Note: For the Kindle Fire, use the normal Android methods.
722
- function DetectKindle()
723
- {
724
- if (stripos($this->useragent, $this->deviceKindle) > -1 &&
725
- $this->DetectAndroid() == $this->false)
726
- return $this->true;
727
- else
728
- return $this->false;
729
- }
730
-
731
- //**************************
732
- // Detects if the current Amazon device is using the Silk Browser.
733
- // Note: Typically used by the the Kindle Fire.
734
- function DetectAmazonSilk()
735
- {
736
- if (stripos($this->useragent, $this->engineSilk) > -1)
737
- return $this->true;
738
- else
739
- return $this->false;
740
- }
741
-
742
-
743
- //**************************
744
- // The quick way to detect for a mobile device.
745
- // Will probably detect most recent/current mid-tier Feature Phones
746
- // as well as smartphone-class devices. Excludes Apple iPads and other modern tablets.
747
- function DetectMobileQuick()
748
- {
749
- //Let's exclude tablets
750
- if ($this->isTierTablet == $this->true)
751
- return $this->false;
752
-
753
- //Most mobile browsing is done on smartphones
754
- if ($this->DetectSmartphone() == $this->true)
755
- return $this->true;
756
-
757
- if (($this->DetectWapWml() == $this->true)
758
- || ($this->DetectBrewDevice() == $this->true)
759
- || ($this->DetectOperaMobile() == $this->true))
760
- return $this->true;
761
-
762
- if ((stripos($this->useragent, $this->engineNetfront) > -1)
763
- || (stripos($this->useragent, $this->engineUpBrowser) > -1)
764
- || (stripos($this->useragent, $this->engineOpenWeb) > -1))
765
- return $this->true;
766
-
767
- if (($this->DetectDangerHiptop() == $this->true)
768
- || ($this->DetectMidpCapable() == $this->true)
769
- || ($this->DetectMaemoTablet() == $this->true)
770
- || ($this->DetectArchos() == $this->true))
771
- return $this->true;
772
-
773
- if ((stripos($this->useragent, $this->devicePda) > -1) &&
774
- !(stripos($this->useragent, $this->disUpdate) > -1))
775
- return $this->true;
776
- if (stripos($this->useragent, $this->mobile) > -1)
777
- return $this->true;
778
-
779
- //We also look for Kindle devices
780
- if ($this->DetectKindle() == $this->true ||
781
- $this->DetectAmazonSilk() == $this->true)
782
- return $this->true;
783
-
784
- else
785
- return $this->false;
786
- }
787
-
788
- //**************************
789
- // Detects if the current device is a Sony Playstation.
790
- function DetectSonyPlaystation()
791
- {
792
- if (stripos($this->useragent, $this->devicePlaystation) > -1)
793
- return $this->true;
794
- else
795
- return $this->false;
796
- }
797
-
798
- //**************************
799
- // Detects if the current device is a Nintendo game device.
800
- function DetectNintendo()
801
- {
802
- if (stripos($this->useragent, $this->deviceNintendo) > -1 ||
803
- stripos($this->useragent, $this->deviceWii) > -1 ||
804
- stripos($this->useragent, $this->deviceNintendoDs) > -1)
805
- return $this->true;
806
- else
807
- return $this->false;
808
- }
809
-
810
- //**************************
811
- // Detects if the current device is a Microsoft Xbox.
812
- function DetectXbox()
813
- {
814
- if (stripos($this->useragent, $this->deviceXbox) > -1)
815
- return $this->true;
816
- else
817
- return $this->false;
818
- }
819
-
820
- //**************************
821
- // Detects if the current device is an Internet-capable game console.
822
- function DetectGameConsole()
823
- {
824
- if ($this->DetectSonyPlaystation() == $this->true)
825
- return $this->true;
826
- else if ($this->DetectNintendo() == $this->true)
827
- return $this->true;
828
- else if ($this->DetectXbox() == $this->true)
829
- return $this->true;
830
- else
831
- return $this->false;
832
- }
833
-
834
- //**************************
835
- // Detects if the current device supports MIDP, a mobile Java technology.
836
- function DetectMidpCapable()
837
- {
838
- if (stripos($this->useragent, $this->deviceMidp) > -1 ||
839
- stripos($this->httpaccept, $this->deviceMidp) > -1)
840
- return $this->true;
841
- else
842
- return $this->false;
843
- }
844
-
845
- //**************************
846
- // Detects if the current device is on one of the Maemo-based Nokia Internet Tablets.
847
- function DetectMaemoTablet()
848
- {
849
- if (stripos($this->useragent, $this->maemo) > -1)
850
- return $this->true;
851
- //For Nokia N810, must be Linux + Tablet, or else it could be something else.
852
- if ((stripos($this->useragent, $this->linux) > -1)
853
- && (stripos($this->useragent, $this->deviceTablet) > -1)
854
- && ($this->DetectWebOSTablet() == $this->false)
855
- && ($this->DetectAndroid() == $this->false))
856
- return $this->true;
857
- else
858
- return $this->false;
859
- }
860
-
861
- //**************************
862
- // Detects if the current device is an Archos media player/Internet tablet.
863
- function DetectArchos()
864
- {
865
- if (stripos($this->useragent, $this->deviceArchos) > -1)
866
- return $this->true;
867
- else
868
- return $this->false;
869
- }
870
-
871
- //**************************
872
- // Detects if the current browser is a Sony Mylo device.
873
- function DetectSonyMylo()
874
- {
875
- if (stripos($this->useragent, $this->manuSony) > -1)
876
- {
877
- if ((stripos($this->useragent, $this->qtembedded) > -1) ||
878
- (stripos($this->useragent, $this->mylocom2) > -1))
879
- {
880
- return $this->true;
881
- }
882
- else
883
- return $this->false;
884
- }
885
- else
886
- return $this->false;
887
- }
888
-
889
-
890
- //**************************
891
- // The longer and more thorough way to detect for a mobile device.
892
- // Will probably detect most feature phones,
893
- // smartphone-class devices, Internet Tablets,
894
- // Internet-enabled game consoles, etc.
895
- // This ought to catch a lot of the more obscure and older devices, also --
896
- // but no promises on thoroughness!
897
- function DetectMobileLong()
898
- {
899
- if ($this->DetectMobileQuick() == $this->true)
900
- return $this->true;
901
- if ($this->DetectGameConsole() == $this->true)
902
- return $this->true;
903
- if ($this->DetectSonyMylo() == $this->true)
904
- return $this->true;
905
-
906
- //Detect older phones from certain manufacturers and operators.
907
- if (stripos($this->useragent, $this->uplink) > -1)
908
- return $this->true;
909
- if (stripos($this->useragent, $this->manuSonyEricsson) > -1)
910
- return $this->true;
911
- if (stripos($this->useragent, $this->manuericsson) > -1)
912
- return $this->true;
913
-
914
- if (stripos($this->useragent, $this->manuSamsung1) > -1)
915
- return $this->true;
916
- if (stripos($this->useragent, $this->svcDocomo) > -1)
917
- return $this->true;
918
- if (stripos($this->useragent, $this->svcKddi) > -1)
919
- return $this->true;
920
- if (stripos($this->useragent, $this->svcVodafone) > -1)
921
- return $this->true;
922
-
923
- else
924
- return $this->false;
925
- }
926
-
927
-
928
-
929
- //*****************************
930
- // For Mobile Web Site Design
931
- //*****************************
932
-
933
- //**************************
934
- // The quick way to detect for a tier of devices.
935
- // This method detects for the new generation of
936
- // HTML 5 capable, larger screen tablets.
937
- // Includes iPad, Android (e.g., Xoom), BB Playbook, WebOS, etc.
938
- function DetectTierTablet()
939
- {
940
- if (($this->DetectIpad() == $this->true)
941
- || ($this->DetectAndroidTablet() == $this->true)
942
- || ($this->DetectBlackBerryTablet() == $this->true)
943
- || ($this->DetectWebOSTablet() == $this->true))
944
- return $this->true;
945
- else
946
- return $this->false;
947
- }
948
-
949
-
950
- //**************************
951
- // The quick way to detect for a tier of devices.
952
- // This method detects for devices which can
953
- // display iPhone-optimized web content.
954
- // Includes iPhone, iPod Touch, Android, Windows Phone 7, WebOS, etc.
955
- function DetectTierIphone()
956
- {
957
- if (($this->isIphone == $this->true) ||
958
- ($this->isAndroidPhone == $this->true))
959
- return $this->true;
960
-
961
- if (($this->DetectBlackBerryWebKit() == $this->true) &&
962
- ($this->DetectBlackBerryTouch() == $this->true))
963
- return $this->true;
964
- if ($this->DetectWindowsPhone7() == $this->true)
965
- return $this->true;
966
- if ($this->DetectPalmWebOS() == $this->true)
967
- return $this->true;
968
- if ($this->DetectGarminNuvifone() == $this->true)
969
- return $this->true;
970
- else
971
- return $this->false;
972
- }
973
-
974
- //**************************
975
- // The quick way to detect for a tier of devices.
976
- // This method detects for devices which are likely to be capable
977
- // of viewing CSS content optimized for the iPhone,
978
- // but may not necessarily support JavaScript.
979
- // Excludes all iPhone Tier devices.
980
- function DetectTierRichCss()
981
- {
982
- if ($this->DetectMobileQuick() == $this->true)
983
- {
984
- //Exclude iPhone Tier and e-Ink Kindle devices
985
- if (($this->DetectTierIphone() == $this->true) ||
986
- ($this->DetectKindle() == $this->true))
987
- return $this->false;
988
-
989
- //The following devices are explicitly ok.
990
- if ($this->DetectWebkit() == $this->true) //Any WebKit
991
- return $this->true;
992
- if ($this->DetectS60OssBrowser() == $this->true)
993
- return $this->true;
994
-
995
- //Note: 'High' BlackBerry devices ONLY
996
- if ($this->DetectBlackBerryHigh() == $this->true)
997
- return $this->true;
998
-
999
- //Older Windows 'Mobile' isn't good enough for iPhone Tier.
1000
- if ($this->DetectWindowsMobile() == $this->true)
1001
- return $this->true;
1002
- if (stripos($this->useragent, $this->engineTelecaQ) > -1)
1003
- return $this->true;
1004
-
1005
- //default
1006
- else
1007
- return $this->false;
1008
- }
1009
- else
1010
- return $this->false;
1011
- }
1012
-
1013
- //**************************
1014
- // The quick way to detect for a tier of devices.
1015
- // This method detects for all other types of phones,
1016
- // but excludes the iPhone and RichCSS Tier devices.
1017
- function DetectTierOtherPhones()
1018
- {
1019
- //Exclude devices in the other 2 categories
1020
- if (($this->DetectMobileLong() == $this->true)
1021
- && ($this->DetectTierIphone() == $this->false)
1022
- && ($this->DetectTierRichCss() == $this->false))
1023
- return $this->true;
1024
- else
1025
- return $this->false;
1026
- }
1027
-
1028
-
1029
- }
1030
-
1031
-
1032
- //Was informed by a MobileESP user that it's a best practice
1033
- // to omit the closing ?&gt; marks here. They can sometimes
1034
- // cause errors with HTML headers.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
my-calendar-event-manager.php CHANGED
@@ -31,7 +31,7 @@ check_my_calendar();
31
  <input type="hidden" name="ref" value="<?php echo esc_url($_GET['ref']); ?>" />
32
  <?php } ?>
33
 
34
- <input type="hidden" value="<?php echo (int) $_GET['event_id']; ?>" name="event_id" />
35
  <input type="submit" name="submit" class="button-secondary delete" value="<?php _e('Delete','my-calendar'); echo " &quot;".stripslashes( $result[0]['event_title'] )."&quot;$instance_date"; ?>" />
36
  </form></p>
37
  </div><?php
@@ -267,9 +267,8 @@ if ( get_site_option('mc_multisite') == 2 ) {
267
  <?php
268
  }
269
 
270
- add_action( 'mc_transition_event', 'mc_tweet_approval', 10, 2 );
271
  function mc_tweet_approval( $prev, $new ) {
272
- if ( function_exists( 'jd_doTwitterAPIPost' ) && isset( $_POST['mc_twitter'] ) ) {
273
  if ( ( $prev == 0 || $prev == 2 ) && $new == 1 ) {
274
  jd_doTwitterAPIPost( stripslashes( $_POST['mc_twitter'] ) );
275
  }
@@ -311,7 +310,7 @@ function my_calendar_save( $action,$output,$event_id=false ) {
311
  if ( $add['event_approved'] == 0 ) {
312
  $message = "<div class='updated notice'><p>".__('Event saved. An administrator will review and approve your event.','my-calendar')."</p></div>";
313
  } else {
314
- if ( function_exists( 'jd_doTwitterAPIPost' ) && isset( $_POST['mc_twitter'] ) ) {
315
  jd_doTwitterAPIPost( stripslashes($_POST['mc_twitter']) );
316
  }
317
  $message = "<div class='updated notice'><p>". __('Event added. It will now show on the calendar.','my-calendar') . "</p></div>";
@@ -320,7 +319,7 @@ function my_calendar_save( $action,$output,$event_id=false ) {
320
  }
321
  }
322
  if ( $action == 'edit' && $proceed == true ) {
323
- $url = ( get_option('mc_uri') != '' )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
324
  $event_author = (int) ($_POST['event_author']);
325
  if ( mc_can_edit_event( $event_author ) ) {
326
  $update = $output[2];
@@ -333,9 +332,9 @@ function my_calendar_save( $action,$output,$event_id=false ) {
333
  ?true:false;
334
  if ( isset($_POST['event_instance']) ) {
335
  $is_changed = mc_compare( $update, $event_id );// compares the information sent to the information saved for a given event.
336
- $event_instance = (int) $_POST['event_instance'];
337
  if ( $is_changed ) {
338
- // if anything changed, create new event record, match group id, update instance to reflect new event connection -- but same group id.
339
  // if group ID == 0, need to add group ID to both records.
340
  if ( $update['event_group_id'] == 0 ) { $update['event_group_id'] = $event_id; mc_update_data( $event_id, 'event_group_id', $event_id ); }
341
  $result = $mcdb->insert(
@@ -349,7 +348,7 @@ function my_calendar_save( $action,$output,$event_id=false ) {
349
  } else {
350
  if ( $update['event_begin'][0] == $_POST['prev_event_begin'] && $update['event_end'][0] == $_POST['prev_event_end'] ) {
351
  // There were no changes at all.
352
- $message = "<div class='updated notice'><p>".__('Nothing was changed in that update.','my-calendar')."$url</p></div>";
353
  } else {
354
  $result = mc_update_instance( $event_instance, $event_id, $update );
355
  // Only dates were changed
@@ -372,19 +371,19 @@ function my_calendar_save( $action,$output,$event_id=false ) {
372
  mc_delete_cache();
373
  }
374
  }
 
 
375
  //$mcdb->print_error();
376
- if ( $result === false ) {
377
- $message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Your event was not updated.','my-calendar')."$url</p></div>";
378
- } else if ( $result === 0 ) {
379
- $message = "<div class='updated'><p>".__('Nothing was changed in that update.','my-calendar')."$url</p></div>";
380
- } else {
381
- // do an action using the $action and processed event data
382
- $data = $update;
383
- do_action( 'mc_save_event', $action, $data, $event_id );
384
- do_action( 'mc_transition_event', (int) $_POST['prev_event_status'], (int) $_POST['event_approved'] );
385
- $message = "<div class='updated'><p>".__('Event updated successfully','my-calendar').".$url</p></div>";
386
- mc_delete_cache();
387
- }
388
  } else {
389
  $message = "<div class='error'><p><strong>".__('You do not have sufficient permissions to edit that event.','my-calendar')."</strong></p></div>";
390
  }
@@ -517,15 +516,18 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
517
  <div>
518
  <input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
519
  <?php if ( isset($_GET['ref']) ) { ?>
520
- <input type="hidden" name="ref" value="<?php echo esc_url($_GET['ref']); ?>" />
521
  <?php } ?>
522
  <input type="hidden" name="event_group_id" value="<?php if ( !empty( $data->event_group_id ) && $mode != 'copy' ) { echo $data->event_group_id; } else { echo mc_group_id(); } ?>" />
523
  <input type="hidden" name="event_action" value="<?php echo $mode; ?>" />
524
- <input type="hidden" name="event_id" value="<?php echo $event_id; ?>" />
 
 
 
525
  <?php if ( $mode != 'edit' ) { ?>
526
- <input type="hidden" name="event_author" value="<?php echo $user_ID; ?>" />
527
  <?php } else { ?>
528
- <input type="hidden" name="event_author" value="<?php echo $data->event_author; ?>" />
529
  <?php } ?>
530
  <input type="hidden" name="event_nonce_name" value="<?php echo wp_create_nonce('event_nonce'); ?>" />
531
  </div>
@@ -534,9 +536,6 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
534
  <div class="postbox">
535
  <h3><?php _e('Add/Edit Event','my-calendar'); ?> <small>(<a href="<?php echo admin_url('admin.php?page=my-calendar-manage'); ?>"><?php _e('Edit events','my-calendar'); ?></a>)</small></h3>
536
  <div class="inside">
537
- <p>
538
- <input type="submit" name="save" class="button-primary" value="<?php _e('Save Event','my-calendar'); ?>" />
539
- </p>
540
  <?php
541
  if ( !empty( $_GET['date'] ) && $data->event_recur != 'S' ) {
542
  $event = mc_get_event( $instance );
@@ -602,6 +601,11 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
602
  } ?>
603
  </div>
604
  <?php } ?>
 
 
 
 
 
605
  <?php
606
  // If the editor is enabled, shouldn't display the image uploader.
607
  // It restricts use of the image uploader to a single image and forces it to be in
@@ -609,9 +613,9 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
609
  if ( mc_show_edit_block( 'event_image' ) ) { ?>
610
  <p>
611
  <?php if ( !empty($data->event_image) ) { ?>
612
- <div class="event_image"><?php _e("This event's image:",'my-calendar'); ?><br /><img src="<?php if ( $has_data ) echo esc_attr($data->event_image); ?>" alt="" /></div>
613
  <?php } ?>
614
- <label for="event_image"><?php _e("Add an image:",'my-calendar'); ?></label> <input type="text" name="event_image" id="event_image" size="60" value="<?php if ( $has_data ) echo esc_attr($data->event_image); ?>" />
615
  <?php if ( mc_show_edit_block( 'event_use_editor' ) ) { ?>
616
  <?php echo " "; _e('(URL to Event image)','my-calendar'); ?>
617
  <?php } else { ?>
@@ -622,15 +626,10 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
622
  <div>
623
  <input type="hidden" name="event_image" value="<?php if ( $has_data ) echo esc_attr($data->event_image); ?>" />
624
  <?php if ( !empty($data->event_image) ) { ?>
625
- <div class="event_image"><?php _e("This event's image:",'my-calendar'); ?><br /><img src="<?php echo esc_attr($data->event_image); ?>" alt="" /></div>
626
  <?php } ?>
627
  </div>
628
- <?php } ?>
629
- <?php if ( mc_show_edit_block( 'event_short' ) ) { ?>
630
- <p>
631
- <label for="event_short"><?php _e('Event Short Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?></label><br /><textarea id="event_short" name="event_short" class="input" rows="2" cols="80"><?php if ( $has_data ) echo stripslashes(esc_attr($data->event_short)); ?></textarea>
632
- </p>
633
- <?php } ?>
634
  <p>
635
  <label for="event_host"><?php _e('Event Host','my-calendar'); ?></label>
636
  <select id="event_host" name="event_host">
@@ -644,29 +643,28 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
644
  } else if( is_object($u) && $u->ID == $user_ID && empty($data->event_host) ) {
645
  echo ' selected="selected"';
646
  }
647
- echo '>'.$u->display_name."</option>\n";
 
648
  }
649
  ?>
650
  </select>
651
  </p>
652
  <?php if ( mc_show_edit_block( 'event_category' ) ) { ?>
653
- <p>
654
  <label for="event_category"><?php _e('Event Category','my-calendar'); ?></label>
655
  <select id="event_category" name="event_category">
656
  <?php echo mc_category_select( $data ); ?>
657
- </select>
658
- </p>
659
- <?php } else { ?>
660
- <div>
661
- <input type="hidden" name="event_category" value="1" />
662
- </div>
663
- <?php } ?>
664
- <?php if ( mc_show_edit_block( 'event_link' ) ) { ?>
665
- <p>
666
- <label for="event_link"><?php _e('Event Link (Optional)','my-calendar'); ?></label> <input type="text" id="event_link" name="event_link" class="input" size="40" value="<?php if ( $has_data ) { echo esc_url($data->event_link); } ?>" /> <input type="checkbox" value="1" id="event_link_expires" name="event_link_expires"<?php if ( $has_data && $data->event_link_expires == '1' ) { echo " checked=\"checked\""; } else if ( $has_data && $data->event_link_expires == '0' ) { echo ""; } else if ( get_option( 'mc_event_link_expires' ) == 'true' ) { echo " checked=\"checked\""; } ?> /> <label for="event_link_expires"><?php _e('This link will expire when the event passes.','my-calendar'); ?></label>
667
- </p>
668
- <?php } ?>
669
- </fieldset>
670
  </div>
671
  </div>
672
  </div>
@@ -699,20 +697,19 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
699
  }
700
  ?>
701
  <p>
702
- <label for="event_begin" id="eblabel"><?php _e('Start Date (YYYY-MM-DD)','my-calendar'); ?> <span><?php _e('(required)','my-calendar'); ?></span></label> <input type="text" id="event_begin" name="event_begin[]" class="event_begin calendar_input" size="11" value="<?php echo $event_begin; ?>" /> <label for="event_time"><?php _e('Time (hh:mm am/pm)','my-calendar'); ?></label> <input type="text" id="event_time" name="event_time[]" class="input" size="10" value="<?php
703
- $offset = (60*60*get_option('gmt_offset')); // need this for below
704
  if ( $has_data ) {
705
  echo ($data->event_time == "00:00:00" && $data->event_endtime == "00:00:00")?'':date("h:i a",strtotime($data->event_time));
706
  } else {
707
  echo date_i18n("h:i a",current_time('timestamp') );
708
- }?>" /> <input type="checkbox" value="1" id="event_allday" name="event_allday"<?php if ( $has_data && ( $data->event_time == '00:00:00' && $data->event_endtime == '00:00:00' ) ) { echo " checked=\"checked\""; } ?> /> <label for="event_allday"><?php _e('All day event','my-calendar'); ?></label>
709
  </p>
710
  <p>
711
  <label for="event_end" id="eelabel"><?php _e('End Date (YYYY-MM-DD)','my-calendar'); ?> <small><?php _e('(optional)','my-calendar'); ?></small></label> <input type="text" name="event_end[]" id="event_end" class="event_end calendar_input" size="11" value="<?php echo $event_end; ?>" /> <label for="event_endtime"><?php _e('End Time (hh:mm am/pm)','my-calendar'); ?></label> <input type="text" id="event_endtime" name="event_endtime[]" class="input" size="10" value="<?php
712
  if ( $has_data ) {
713
  echo ($data->event_endtime == "00:00:00" && $data->event_time == "00:00:00")?'':date("h:i a",strtotime($data->event_endtime));
714
  } else {
715
- echo date("h:i a",strtotime( "+1 hour" )+$offset );
716
  }?>" /> <input type="checkbox" value="1" id="event_hide_end" name="event_hide_end"<?php if ( $has_data && $data->event_hide_end == '1' ) { echo " checked=\"checked\""; } ?> /> <label for="event_hide_end"><?php _e('Hide end time','my-calendar'); ?></label>
717
 
718
  </p>
@@ -750,6 +747,9 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
750
  </p>
751
  </div>
752
  </fieldset>
 
 
 
753
  </div>
754
  </div>
755
  </div>
@@ -928,12 +928,28 @@ function my_calendar_print_form_fields( $data,$mode,$event_id ) {
928
  <fieldset>
929
  <legend><?php _e('GPS Coordinates (optional)','my-calendar'); ?></legend>
930
  <p>
931
- <small><?php _e('If you supply GPS coordinates for your location, they will be used in place of any other address information to provide your map link.','my-calendar'); ?></small>
932
  </p>
933
  <p>
934
  <label for="event_latitude"><?php _e('Latitude','my-calendar'); ?></label> <input type="text" id="event_latitude" name="event_latitude" class="input" size="10" value="<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_latitude)); ?>" /> <label for="event_longitude"><?php _e('Longitude','my-calendar'); ?></label> <input type="text" id="event_longitude" name="event_longitude" class="input" size="10" value="<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_longitude)); ?>" />
935
  </p>
936
  </fieldset>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
937
  <?php } ?>
938
  <?php if ( mc_show_edit_block( 'event_location' ) || mc_show_edit_block( 'event_location_dropdown' ) ) { ?>
939
  </fieldset>
@@ -1092,12 +1108,12 @@ function jd_events_display_list( $type='normal' ) {
1092
  <table class="widefat wp-list-table" id="my-calendar-admin-table">
1093
  <thead>
1094
  <tr>
1095
- <th class="manage-column" scope="col" style="width: 50px;"><input type='checkbox' class='selectall' id='mass_edit' /> <label for='mass_edit'><b><?php __('Check/Uncheck all','my-calendar'); ?></b></label> <a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=1$sorting"); ?>"><?php _e('ID','my-calendar') ?></a></th>
1096
- <th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=2$sorting"); ?>"><?php _e('Title','my-calendar') ?></a></th>
1097
- <th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=7$sorting"); ?>"><?php _e('Location','my-calendar') ?></a></th>
1098
- <th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=4$sorting"); ?>"><?php _e('Date/Time','my-calendar') ?></a></th>
1099
- <th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=5$sorting"); ?>"><?php _e('Author','my-calendar') ?></a></th>
1100
- <th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=6$sorting"); ?>"><?php _e('Category','my-calendar') ?></a></th>
1101
  </tr>
1102
  </thead>
1103
  <?php
@@ -1110,7 +1126,7 @@ function jd_events_display_list( $type='normal' ) {
1110
  $class = ($class == 'alternate') ? '' : 'alternate';
1111
  $pending = ($event->event_approved == 0) ? ' pending' : '';
1112
  $author = ( $event->event_author != 0 )?get_userdata($event->event_author):'Public Submitter';
1113
- $title = ($event->event_link != '')?"<a href='".esc_attr($event->event_link)."'>$event->event_title</a>":$event->event_title;
1114
 
1115
  if ( $event->event_flagged == 1 && ( isset( $_GET['restrict'] ) && $_GET['restrict'] == 'flagged' ) ) {
1116
  $spam = ' spam';
@@ -1157,7 +1173,7 @@ function jd_events_display_list( $type='normal' ) {
1157
  <?php if ($event->event_time != "00:00:00") { $eventTime = date_i18n(get_option('mc_time_format'), strtotime($event->event_time)); } else { $eventTime = get_option('mc_notime_text'); } ?>
1158
  <td><?php $begin = date_i18n( get_option('mc_date_format'), strtotime( $event->event_begin ) ); echo "$begin, $eventTime"; ?>
1159
  <div class="recurs">
1160
- <strong><?php _e('Recurs:','my-calendar'); ?></strong>
1161
  <?php
1162
  $recurs = str_split( $event->event_recur, 1 );
1163
  $recur = $recurs[0];
@@ -1592,11 +1608,11 @@ function mc_instance_list( $id, $occur=false, $template='<h3>{title}</h3>{descri
1592
  if ( is_array($results) && is_admin() ) {
1593
  foreach ( $results as $result ) {
1594
  if ( $result->occur_id == $occur ) {
1595
- $current = "<em>".__('Editing: ','my-calendar')."</em>"; $end = '';
1596
  } else {
1597
  $current = "<a href='".admin_url('admin.php?page=my-calendar')."&amp;mode=edit&amp;event_id=$id&amp;date=$result->occur_id'>"; $end = "</a>";
1598
  }
1599
- $begin = date( get_option('mc_date_format'),strtotime($result->occur_begin) ) . ' ' . date( get_option('mc_time_format'),strtotime($result->occur_begin) );
1600
  $output.= "<li>$current$begin$end</li>";
1601
  }
1602
  } else {
@@ -1635,10 +1651,9 @@ function mc_related_events( $id ) {
1635
  if ( is_array($results) && !empty($results) ) {
1636
  foreach ( $results as $result ) {
1637
  $event = $result->occur_event_id;
1638
- $title = mc_get_data('event_title',$result->occur_event_id );
1639
  $current = "<a href='".admin_url('admin.php?page=my-calendar')."&amp;mode=edit&amp;event_id=$event'>"; $end = "</a>";
1640
- $begin = date( get_option('mc_date_format'),strtotime($result->occur_begin) ) . ' ' . date( get_option('mc_time_format'),strtotime($result->occur_begin) );
1641
- $output.= "<li>$title; $current$begin$end</li>";
1642
  }
1643
  } else {
1644
  $output = "<li>".__('No related events','my-calendar')."</li>";
@@ -1661,7 +1676,6 @@ function mc_event_is_grouped( $group_id ) {
1661
  }
1662
  }
1663
 
1664
- add_action( 'mc_event_registration', 'mc_standard_event', 10, 2 );
1665
  function mc_standard_event( $has_data, $data ) {
1666
  $form = "
1667
  <p><em>".__('My Calendar does not manage event registrations. Use this for information only.','my-calendar')."</em></p>
31
  <input type="hidden" name="ref" value="<?php echo esc_url($_GET['ref']); ?>" />
32
  <?php } ?>
33
 
34
+ <input type="hidden" name="event_id" value="<?php echo (int) $_GET['event_id']; ?>" />
35
  <input type="submit" name="submit" class="button-secondary delete" value="<?php _e('Delete','my-calendar'); echo " &quot;".stripslashes( $result[0]['event_title'] )."&quot;$instance_date"; ?>" />
36
  </form></p>
37
  </div><?php
267
  <?php
268
  }
269
 
 
270
  function mc_tweet_approval( $prev, $new ) {
271
+ if ( function_exists( 'jd_doTwitterAPIPost' ) && isset( $_POST['mc_twitter'] ) && trim($_POST['mc_twitter']) != '' ) {
272
  if ( ( $prev == 0 || $prev == 2 ) && $new == 1 ) {
273
  jd_doTwitterAPIPost( stripslashes( $_POST['mc_twitter'] ) );
274
  }
310
  if ( $add['event_approved'] == 0 ) {
311
  $message = "<div class='updated notice'><p>".__('Event saved. An administrator will review and approve your event.','my-calendar')."</p></div>";
312
  } else {
313
+ if ( function_exists( 'jd_doTwitterAPIPost' ) && isset( $_POST['mc_twitter'] ) && trim($_POST['mc_twitter']) != '' ) {
314
  jd_doTwitterAPIPost( stripslashes($_POST['mc_twitter']) );
315
  }
316
  $message = "<div class='updated notice'><p>". __('Event added. It will now show on the calendar.','my-calendar') . "</p></div>";
319
  }
320
  }
321
  if ( $action == 'edit' && $proceed == true ) {
322
+ $url = ( get_option('mc_uri') != '' && !is_numeric( get_option('mc_uri') ) )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
323
  $event_author = (int) ($_POST['event_author']);
324
  if ( mc_can_edit_event( $event_author ) ) {
325
  $update = $output[2];
332
  ?true:false;
333
  if ( isset($_POST['event_instance']) ) {
334
  $is_changed = mc_compare( $update, $event_id );// compares the information sent to the information saved for a given event.
335
+ $event_instance = (int) $_POST['event_instance'];
336
  if ( $is_changed ) {
337
+ // if changed, create new event, match group id, update instance to reflect event connection, same group id.
338
  // if group ID == 0, need to add group ID to both records.
339
  if ( $update['event_group_id'] == 0 ) { $update['event_group_id'] = $event_id; mc_update_data( $event_id, 'event_group_id', $event_id ); }
340
  $result = $mcdb->insert(
348
  } else {
349
  if ( $update['event_begin'][0] == $_POST['prev_event_begin'] && $update['event_end'][0] == $_POST['prev_event_end'] ) {
350
  // There were no changes at all.
351
+ $message = "<div class='updated notice'><p>".__('Nothing was changed in that update.','my-calendar')."$url</p></div>";
352
  } else {
353
  $result = mc_update_instance( $event_instance, $event_id, $update );
354
  // Only dates were changed
371
  mc_delete_cache();
372
  }
373
  }
374
+ $data = $update;
375
+ do_action( 'mc_save_event', $action, $data, $event_id, $result );
376
  //$mcdb->print_error();
377
+ if ( $result === false ) {
378
+ $message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Your event was not updated.','my-calendar')."$url</p></div>";
379
+ } else if ( $result === 0 ) {
380
+ $message = "<div class='updated'><p>".__('No event data was changed in that update.','my-calendar')."$url</p></div>";
381
+ } else {
382
+ // do an action using the $action and processed event data
383
+ do_action( 'mc_transition_event', (int) $_POST['prev_event_status'], (int) $_POST['event_approved'] );
384
+ $message = "<div class='updated'><p>".__('Event updated successfully','my-calendar').".$url</p></div>";
385
+ mc_delete_cache();
386
+ }
 
 
387
  } else {
388
  $message = "<div class='error'><p><strong>".__('You do not have sufficient permissions to edit that event.','my-calendar')."</strong></p></div>";
389
  }
516
  <div>
517
  <input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />
518
  <?php if ( isset($_GET['ref']) ) { ?>
519
+ <input type="hidden" name="ref" value="<?php echo esc_url($_GET['ref']); ?>" />
520
  <?php } ?>
521
  <input type="hidden" name="event_group_id" value="<?php if ( !empty( $data->event_group_id ) && $mode != 'copy' ) { echo $data->event_group_id; } else { echo mc_group_id(); } ?>" />
522
  <input type="hidden" name="event_action" value="<?php echo $mode; ?>" />
523
+ <?php if ( !empty( $_GET['date'] ) ) { ?>
524
+ <input type="hidden" name="event_instance" value="<?php echo (int) $_GET['date']; ?>" />
525
+ <?php } ?>
526
+ <input type="hidden" name="event_id" value="<?php echo (int) $event_id; ?>" />
527
  <?php if ( $mode != 'edit' ) { ?>
528
+ <input type="hidden" name="event_author" value="<?php echo $user_ID; ?>" />
529
  <?php } else { ?>
530
+ <input type="hidden" name="event_author" value="<?php echo $data->event_author; ?>" />
531
  <?php } ?>
532
  <input type="hidden" name="event_nonce_name" value="<?php echo wp_create_nonce('event_nonce'); ?>" />
533
  </div>
536
  <div class="postbox">
537
  <h3><?php _e('Add/Edit Event','my-calendar'); ?> <small>(<a href="<?php echo admin_url('admin.php?page=my-calendar-manage'); ?>"><?php _e('Edit events','my-calendar'); ?></a>)</small></h3>
538
  <div class="inside">
 
 
 
539
  <?php
540
  if ( !empty( $_GET['date'] ) && $data->event_recur != 'S' ) {
541
  $event = mc_get_event( $instance );
601
  } ?>
602
  </div>
603
  <?php } ?>
604
+ <?php if ( mc_show_edit_block( 'event_short' ) ) { ?>
605
+ <p>
606
+ <label for="event_short"><?php _e('Event Short Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?></label><br /><textarea id="event_short" name="event_short" class="input" rows="2" cols="80"><?php if ( $has_data ) echo stripslashes(esc_attr($data->event_short)); ?></textarea>
607
+ </p>
608
+ <?php } ?>
609
  <?php
610
  // If the editor is enabled, shouldn't display the image uploader.
611
  // It restricts use of the image uploader to a single image and forces it to be in
613
  if ( mc_show_edit_block( 'event_image' ) ) { ?>
614
  <p>
615
  <?php if ( !empty($data->event_image) ) { ?>
616
+ <div class="event_image"><img src="<?php if ( $has_data ) echo esc_attr($data->event_image); ?>" alt="" /></div>
617
  <?php } ?>
618
+ <label for="event_image"><?php _e("Add an image:",'my-calendar'); ?></label> <input type="text" name="event_image" id="event_image" size="60" value="<?php if ( $has_data ) echo esc_attr($data->event_image); ?>" placeholder="http://yourdomain.com/image.jpg" />
619
  <?php if ( mc_show_edit_block( 'event_use_editor' ) ) { ?>
620
  <?php echo " "; _e('(URL to Event image)','my-calendar'); ?>
621
  <?php } else { ?>
626
  <div>
627
  <input type="hidden" name="event_image" value="<?php if ( $has_data ) echo esc_attr($data->event_image); ?>" />
628
  <?php if ( !empty($data->event_image) ) { ?>
629
+ <div class="event_image"><img src="<?php echo esc_attr($data->event_image); ?>" alt="" /></div>
630
  <?php } ?>
631
  </div>
632
+ <?php } ?>
 
 
 
 
 
633
  <p>
634
  <label for="event_host"><?php _e('Event Host','my-calendar'); ?></label>
635
  <select id="event_host" name="event_host">
643
  } else if( is_object($u) && $u->ID == $user_ID && empty($data->event_host) ) {
644
  echo ' selected="selected"';
645
  }
646
+ $display_name = ( $u->display_name == '' ) ? $u->user_nicename : $u->display_name;
647
+ echo ">$display_name</option>\n";
648
  }
649
  ?>
650
  </select>
651
  </p>
652
  <?php if ( mc_show_edit_block( 'event_category' ) ) { ?>
653
+ <p>
654
  <label for="event_category"><?php _e('Event Category','my-calendar'); ?></label>
655
  <select id="event_category" name="event_category">
656
  <?php echo mc_category_select( $data ); ?>
657
+ </select>
658
+ </p>
659
+ <?php } else { ?>
660
+ <div><input type="hidden" name="event_category" value="<?php echo mc_category_select( $data, false ); ?>" /></div>
661
+ <?php } ?>
662
+ <?php if ( mc_show_edit_block( 'event_link' ) ) { ?>
663
+ <p>
664
+ <label for="event_link"><?php _e('Event Link (Optional)','my-calendar'); ?></label> <input type="text" id="event_link" name="event_link" class="input" size="40" value="<?php if ( $has_data ) { echo esc_url($data->event_link); } ?>" /> <input type="checkbox" value="1" id="event_link_expires" name="event_link_expires"<?php if ( $has_data && $data->event_link_expires == '1' ) { echo " checked=\"checked\""; } else if ( $has_data && $data->event_link_expires == '0' ) { echo ""; } else if ( get_option( 'mc_event_link_expires' ) == 'true' ) { echo " checked=\"checked\""; } ?> /> <label for="event_link_expires"><?php _e('Link will expire after event','my-calendar'); ?></label>
665
+ </p>
666
+ <?php } ?>
667
+ </fieldset>
 
 
668
  </div>
669
  </div>
670
  </div>
697
  }
698
  ?>
699
  <p>
700
+ <label for="event_begin" id="eblabel"><?php _e('Start Date (YYYY-MM-DD)','my-calendar'); ?> <span><?php _e('(required)','my-calendar'); ?></span></label> <input type="text" id="event_begin" name="event_begin[]" class="event_begin calendar_input" size="11" value="<?php echo $event_begin; ?>" /> <label for="event_time"><?php _e('Time (hh:mm am/pm)','my-calendar'); ?></label> <input type="text" id="event_time" name="event_time[]" class="input" size="10" value="<?php
 
701
  if ( $has_data ) {
702
  echo ($data->event_time == "00:00:00" && $data->event_endtime == "00:00:00")?'':date("h:i a",strtotime($data->event_time));
703
  } else {
704
  echo date_i18n("h:i a",current_time('timestamp') );
705
+ } ?>" /> <input type="checkbox" value="1" id="event_allday" name="event_allday"<?php if ( $has_data && ( $data->event_time == '00:00:00' && $data->event_endtime == '00:00:00' ) ) { echo " checked=\"checked\""; } ?> /> <label for="event_allday"><?php _e('All day event','my-calendar'); ?></label>
706
  </p>
707
  <p>
708
  <label for="event_end" id="eelabel"><?php _e('End Date (YYYY-MM-DD)','my-calendar'); ?> <small><?php _e('(optional)','my-calendar'); ?></small></label> <input type="text" name="event_end[]" id="event_end" class="event_end calendar_input" size="11" value="<?php echo $event_end; ?>" /> <label for="event_endtime"><?php _e('End Time (hh:mm am/pm)','my-calendar'); ?></label> <input type="text" id="event_endtime" name="event_endtime[]" class="input" size="10" value="<?php
709
  if ( $has_data ) {
710
  echo ($data->event_endtime == "00:00:00" && $data->event_time == "00:00:00")?'':date("h:i a",strtotime($data->event_endtime));
711
  } else {
712
+ echo date_i18n( "h:i a",strtotime( "+1 hour" )+(60*60*get_option('gmt_offset') ) );
713
  }?>" /> <input type="checkbox" value="1" id="event_hide_end" name="event_hide_end"<?php if ( $has_data && $data->event_hide_end == '1' ) { echo " checked=\"checked\""; } ?> /> <label for="event_hide_end"><?php _e('Hide end time','my-calendar'); ?></label>
714
 
715
  </p>
747
  </p>
748
  </div>
749
  </fieldset>
750
+ <p>
751
+ <input type="submit" name="save" class="button-primary" value="<?php _e('Save Event','my-calendar'); ?>" />
752
+ </p>
753
  </div>
754
  </div>
755
  </div>
928
  <fieldset>
929
  <legend><?php _e('GPS Coordinates (optional)','my-calendar'); ?></legend>
930
  <p>
931
+ <?php _e('If you supply GPS coordinates for your location, they will be used in place of any other address information to provide your map link.','my-calendar'); ?>
932
  </p>
933
  <p>
934
  <label for="event_latitude"><?php _e('Latitude','my-calendar'); ?></label> <input type="text" id="event_latitude" name="event_latitude" class="input" size="10" value="<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_latitude)); ?>" /> <label for="event_longitude"><?php _e('Longitude','my-calendar'); ?></label> <input type="text" id="event_longitude" name="event_longitude" class="input" size="10" value="<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_longitude)); ?>" />
935
  </p>
936
  </fieldset>
937
+ <?php } else { ?>
938
+ <div>
939
+ <input type='hidden' name='event_label' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_label)); ?>' />
940
+ <input type='hidden' name='event_street' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_street)); ?>' />
941
+ <input type='hidden' name='event_street2' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_street2)); ?>' />
942
+ <input type='hidden' name='event_phone' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_phone)); ?>' />
943
+ <input type='hidden' name='event_city' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_city)); ?>' />
944
+ <input type='hidden' name='event_state' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_state)); ?>' />
945
+ <input type='hidden' name='event_postcode' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_postcode)); ?>' />
946
+ <input type='hidden' name='event_region' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_region)); ?>' />
947
+ <input type='hidden' name='event_country' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_country)); ?>' />
948
+ <input type='hidden' name='event_zoom' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_zoom)); ?>' />
949
+ <input type='hidden' name='event_url' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_url)); ?>' />
950
+ <input type='hidden' name='event_latitude' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_latitude)); ?>' />
951
+ <input type='hidden' name='event_longitude' value='<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_longitude)); ?>' />
952
+ </div>
953
  <?php } ?>
954
  <?php if ( mc_show_edit_block( 'event_location' ) || mc_show_edit_block( 'event_location_dropdown' ) ) { ?>
955
  </fieldset>
1108
  <table class="widefat wp-list-table" id="my-calendar-admin-table">
1109
  <thead>
1110
  <tr>
1111
+ <th scope="col" style="width: 50px;"><input type='checkbox' class='selectall' id='mass_edit' /> <label for='mass_edit'><b><?php __('Check/Uncheck all','my-calendar'); ?></b></label> <a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=1$sorting"); ?>"><?php _e('ID','my-calendar') ?></a></th>
1112
+ <th scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=2$sorting"); ?>"><?php _e('Title','my-calendar') ?></a></th>
1113
+ <th scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=7$sorting"); ?>"><?php _e('Location','my-calendar') ?></a></th>
1114
+ <th scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=4$sorting"); ?>"><?php _e('Date/Time','my-calendar') ?></a></th>
1115
+ <th scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=5$sorting"); ?>"><?php _e('Author','my-calendar') ?></a></th>
1116
+ <th scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-manage&amp;sort=6$sorting"); ?>"><?php _e('Category','my-calendar') ?></a></th>
1117
  </tr>
1118
  </thead>
1119
  <?php
1126
  $class = ($class == 'alternate') ? '' : 'alternate';
1127
  $pending = ($event->event_approved == 0) ? ' pending' : '';
1128
  $author = ( $event->event_author != 0 )?get_userdata($event->event_author):'Public Submitter';
1129
+ $title = $event->event_title;
1130
 
1131
  if ( $event->event_flagged == 1 && ( isset( $_GET['restrict'] ) && $_GET['restrict'] == 'flagged' ) ) {
1132
  $spam = ' spam';
1173
  <?php if ($event->event_time != "00:00:00") { $eventTime = date_i18n(get_option('mc_time_format'), strtotime($event->event_time)); } else { $eventTime = get_option('mc_notime_text'); } ?>
1174
  <td><?php $begin = date_i18n( get_option('mc_date_format'), strtotime( $event->event_begin ) ); echo "$begin, $eventTime"; ?>
1175
  <div class="recurs">
1176
+ <strong><?php _e('Recurs','my-calendar'); ?></strong>
1177
  <?php
1178
  $recurs = str_split( $event->event_recur, 1 );
1179
  $recur = $recurs[0];
1608
  if ( is_array($results) && is_admin() ) {
1609
  foreach ( $results as $result ) {
1610
  if ( $result->occur_id == $occur ) {
1611
+ $current = "<em>".__('Editing: ','my-calendar')."</em>"; $end = '';
1612
  } else {
1613
  $current = "<a href='".admin_url('admin.php?page=my-calendar')."&amp;mode=edit&amp;event_id=$id&amp;date=$result->occur_id'>"; $end = "</a>";
1614
  }
1615
+ $begin = date_i18n( get_option('mc_date_format'),strtotime($result->occur_begin) ) . ' ' . date( get_option('mc_time_format'),strtotime($result->occur_begin) );
1616
  $output.= "<li>$current$begin$end</li>";
1617
  }
1618
  } else {
1651
  if ( is_array($results) && !empty($results) ) {
1652
  foreach ( $results as $result ) {
1653
  $event = $result->occur_event_id;
 
1654
  $current = "<a href='".admin_url('admin.php?page=my-calendar')."&amp;mode=edit&amp;event_id=$event'>"; $end = "</a>";
1655
+ $begin = date_i18n( get_option('mc_date_format'),strtotime($result->occur_begin) ) . ' ' . date( get_option('mc_time_format'),strtotime($result->occur_begin) );
1656
+ $output.= "<li>$current$begin$end</li>";
1657
  }
1658
  } else {
1659
  $output = "<li>".__('No related events','my-calendar')."</li>";
1676
  }
1677
  }
1678
 
 
1679
  function mc_standard_event( $has_data, $data ) {
1680
  $form = "
1681
  <p><em>".__('My Calendar does not manage event registrations. Use this for information only.','my-calendar')."</em></p>
my-calendar-events.php CHANGED
@@ -97,7 +97,7 @@ if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) {
97
  return $arr_events;
98
  }
99
 
100
- function mc_get_rss_events( $cat_id=false) { // JCD TODO: figure out how to output in RSS given new event circumstances...
101
  global $wpdb;
102
  $mcdb = $wpdb;
103
  if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
97
  return $arr_events;
98
  }
99
 
100
+ function mc_get_rss_events( $cat_id=false) {
101
  global $wpdb;
102
  $mcdb = $wpdb;
103
  if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
my-calendar-group-manager.php CHANGED
@@ -51,7 +51,7 @@ if ( isset( $_POST['event_action'] ) ) {
51
  $formats,
52
  '%d' );
53
  //$mcdb->print_error();
54
- $url = ( get_option('mc_uri') != '' )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
55
  if ( $result === false ) {
56
  $message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Event not updated.','my-calendar')."$url</p></div>";
57
  } else if ( $result === 0 ) {
@@ -156,7 +156,7 @@ global $wpdb,$event_author;
156
  $formats,
157
  '%d' );
158
  //$mcdb->print_error();
159
- $url = ( get_option('mc_uri') != '' )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
160
  do_action( 'mc_save_grouped_events', $result, $event_id, $update );
161
  if ( $result === false ) {
162
  $message = "<div class='error'><p><strong>#$event_id; ".__('Error','my-calendar').":</strong>".__('Your event was not updated.','my-calendar')."$url</p></div>";
@@ -302,12 +302,9 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
302
  <input type="hidden" name="event_nonce_name" value="<?php echo wp_create_nonce('event_nonce'); ?>" />
303
  </div>
304
  <div class="ui-sortable meta-box-sortables">
305
- <div class="postbox">
306
  <h3><?php _e('Manage Event Groups','my-calendar'); ?></h3>
307
  <div class="inside">
308
- <p>
309
- <input type="submit" name="save" class="button-primary" value="<?php _e('Edit Event Group','my-calendar'); ?>" />
310
- </p>
311
  <fieldset>
312
  <legend><?php _e('Enter your Event Information','my-calendar'); ?></legend>
313
  <p>
@@ -330,6 +327,11 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
330
  <label for="content"><?php _e('Event Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_desc' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label><br /><?php if ( $mc_input['event_use_editor'] == 'on' ) { if ( version_compare( get_bloginfo( 'version' ) , '3.3' , '>=' ) ) { wp_editor( stripslashes($description), 'content', array( 'textarea_rows'=>10 ) ); } else { the_editor( stripslashes($description) ); } } else { ?><textarea id="content" name="content" class="event_desc" rows="5" cols="80"><?php echo stripslashes(esc_attr($description)); ?></textarea><?php if ( $mc_input['event_use_editor'] == 'on' ) { ?></div><?php } } ?>
331
  </div>
332
  <?php } ?>
 
 
 
 
 
333
  <?php
334
  // If the editor is enabled, shouldn't display the image uploader.
335
  // It restricts use of the image uploader to a single image and forces it to be in
@@ -338,23 +340,18 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
338
  if ( ( $mc_input['event_image'] == 'on' && $mc_input['event_use_editor'] != 'on' ) || ( $mc_input_administrator && $mc_input['event_use_editor'] != 'on' ) ) { ?>
339
  <p>
340
  <?php if ( !empty($data->event_image) ) { ?>
341
- <div class="event_image"><?php _e("This event's image:",'my-calendar'); ?><br /><img src="<?php if ( !empty($data) ) echo esc_attr($data->event_image); ?>" alt="" /></div>
342
  <?php } ?>
343
- <label for="event_image"><?php _e("Add an image:",'my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_image' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label> <input type="text" name="event_image" id="event_image" size="60" value="<?php if ( !empty($data) ) echo esc_attr($data->event_image); ?>" /> <input id="upload_image_button" type="button" class="button" value="<?php _e('Upload Image','my-calendar'); ?>" /><br /><?php _e('Include your image URL or upload an image.','my-calendar'); ?>
344
  </p>
345
  <?php } else { ?>
346
  <div>
347
  <input type="hidden" name="event_image" value="<?php if ( !empty($data) ) echo esc_attr($data->event_image); ?>" />
348
  <?php if ( !empty($data->event_image) ) { ?>
349
- <div class="event_image"><?php _e("This event's image:",'my-calendar'); ?><br /><img src="<?php echo esc_attr($data->event_image); ?>" alt="" /></div>
350
  <?php } ?>
351
  </div>
352
- <?php } ?>
353
- <?php if ($mc_input['event_short'] == 'on' || $mc_input_administrator ) { ?>
354
- <p>
355
- <label for="event_short"><?php _e('Event Short Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_short' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label><br /><textarea id="event_short" name="event_short" class="input" rows="2" cols="80"><?php if ( !empty($data) ) echo stripslashes(esc_attr($data->event_short)); ?></textarea>
356
- </p>
357
- <?php } ?>
358
  <p>
359
  <label for="event_host"><?php _e('Event Host','my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_host' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label>
360
  <select id="event_host" name="event_host">
@@ -368,7 +365,8 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
368
  } else if( is_object($u) && $u->ID == $user->ID && empty($data->event_host) ) {
369
  echo ' selected="selected"';
370
  }
371
- echo '>'.$u->display_name."</option>\n";
 
372
  }
373
  ?>
374
  </select>
@@ -387,11 +385,14 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
387
  <?php } ?>
388
  <?php if ($mc_input['event_link'] == 'on' || $mc_input_administrator ) { ?>
389
  <p>
390
- <label for="event_link"><?php _e('Event Link (Optional)','my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_link' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label> <input type="text" id="event_link" name="event_link" class="input" size="40" value="<?php if ( !empty($data) ) { echo esc_url($data->event_link); } ?>" /> <input type="checkbox" value="1" id="event_link_expires" name="event_link_expires"<?php if ( !empty($data) && $data->event_link_expires == '1' ) { echo " checked=\"checked\""; } else if ( !empty($data) && $data->event_link_expires == '0' ) { echo ""; } else if ( get_option( 'mc_event_link_expires' ) == 'true' ) { echo " checked=\"checked\""; } ?> /> <label for="event_link_expires"><?php _e('This link will expire when the event passes.','my-calendar'); ?></label>
391
  </p>
392
  <?php } ?>
393
  </fieldset>
394
- </div>
 
 
 
395
  </div>
396
  </div>
397
  <?php if ($mc_input['event_open'] == 'on' || $mc_input_administrator ) {
@@ -499,9 +500,6 @@ function my_calendar_print_group_fields( $data,$mode,$event_id,$group_id='' ) {
499
  <fieldset>
500
  <legend><?php _e('GPS Coordinates (optional)','my-calendar'); ?></legend>
501
  <p>
502
- <small><?php _e('If you supply GPS coordinates for your location, they will be used in place of any other address information to provide your map link.','my-calendar'); ?></small>
503
- </p>
504
- <p>
505
  <label for="event_latitude"><?php _e('Latitude','my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_latitude' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?><?php if ( !mc_compare_group_members( $group_id,'event_longitude' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label> <input type="text" id="event_latitude" name="event_latitude" class="input" size="10" value="<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_latitude)); ?>" /> <label for="event_longitude"><?php _e('Longitude','my-calendar'); ?></label> <input type="text" id="event_longitude" name="event_longitude" class="input" size="10" value="<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_longitude)); ?>" />
506
  </p>
507
  </fieldset>
@@ -745,14 +743,14 @@ function jd_groups_display_list() {
745
  <table class="widefat wp-list-table" id="my-calendar-admin-table">
746
  <thead>
747
  <tr>
748
- <th class="manage-column" scope="col" style="width: 50px;"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=1$sorting"); ?>"><?php _e('ID','my-calendar') ?></a></th>
749
- <th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=8$sorting"); ?>"><?php _e('Group','my-calendar') ?></a></th>
750
- <th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=2$sorting"); ?>"><?php _e('Title','my-calendar') ?></a></th>
751
- <th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=7$sorting"); ?>"><?php _e('Where','my-calendar') ?></a></th>
752
- <th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=4$sorting"); ?>"><?php _e('Starts','my-calendar') ?></a></th>
753
- <th class="manage-column" scope="col"><?php _e('Recurs','my-calendar') ?></th>
754
- <th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=5$sorting"); ?>"><?php _e('Author','my-calendar') ?></a></th>
755
- <th class="manage-column" scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=6$sorting"); ?>"><?php _e('Category','my-calendar') ?></a></th>
756
  </tr>
757
  </thead>
758
  <?php
51
  $formats,
52
  '%d' );
53
  //$mcdb->print_error();
54
+ $url = ( get_option('mc_uri') != '' && !is_numeric( get_option('mc_uri') ) )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
55
  if ( $result === false ) {
56
  $message = "<div class='error'><p><strong>".__('Error','my-calendar').":</strong>".__('Event not updated.','my-calendar')."$url</p></div>";
57
  } else if ( $result === 0 ) {
156
  $formats,
157
  '%d' );
158
  //$mcdb->print_error();
159
+ $url = ( get_option('mc_uri') != '' && !is_numeric( get_option('mc_uri') ) )?' '.sprintf(__('View <a href="%s">your calendar</a>.','my-calendar'),get_option('mc_uri') ):'';
160
  do_action( 'mc_save_grouped_events', $result, $event_id, $update );
161
  if ( $result === false ) {
162
  $message = "<div class='error'><p><strong>#$event_id; ".__('Error','my-calendar').":</strong>".__('Your event was not updated.','my-calendar')."$url</p></div>";
302
  <input type="hidden" name="event_nonce_name" value="<?php echo wp_create_nonce('event_nonce'); ?>" />
303
  </div>
304
  <div class="ui-sortable meta-box-sortables">
305
+ <div class="postbox">
306
  <h3><?php _e('Manage Event Groups','my-calendar'); ?></h3>
307
  <div class="inside">
 
 
 
308
  <fieldset>
309
  <legend><?php _e('Enter your Event Information','my-calendar'); ?></legend>
310
  <p>
327
  <label for="content"><?php _e('Event Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_desc' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label><br /><?php if ( $mc_input['event_use_editor'] == 'on' ) { if ( version_compare( get_bloginfo( 'version' ) , '3.3' , '>=' ) ) { wp_editor( stripslashes($description), 'content', array( 'textarea_rows'=>10 ) ); } else { the_editor( stripslashes($description) ); } } else { ?><textarea id="content" name="content" class="event_desc" rows="5" cols="80"><?php echo stripslashes(esc_attr($description)); ?></textarea><?php if ( $mc_input['event_use_editor'] == 'on' ) { ?></div><?php } } ?>
328
  </div>
329
  <?php } ?>
330
+ <?php if ($mc_input['event_short'] == 'on' || $mc_input_administrator ) { ?>
331
+ <p>
332
+ <label for="event_short"><?php _e('Event Short Description (<abbr title="hypertext markup language">HTML</abbr> allowed)','my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_short' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label><br /><textarea id="event_short" name="event_short" class="input" rows="2" cols="80"><?php if ( !empty($data) ) echo stripslashes(esc_attr($data->event_short)); ?></textarea>
333
+ </p>
334
+ <?php } ?>
335
  <?php
336
  // If the editor is enabled, shouldn't display the image uploader.
337
  // It restricts use of the image uploader to a single image and forces it to be in
340
  if ( ( $mc_input['event_image'] == 'on' && $mc_input['event_use_editor'] != 'on' ) || ( $mc_input_administrator && $mc_input['event_use_editor'] != 'on' ) ) { ?>
341
  <p>
342
  <?php if ( !empty($data->event_image) ) { ?>
343
+ <div class="event_image"><img src="<?php if ( !empty($data) ) echo esc_attr($data->event_image); ?>" alt="" /></div>
344
  <?php } ?>
345
+ <label for="event_image"><?php _e("Add an image:",'my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_image' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label> <input type="text" name="event_image" id="event_image" size="60" value="<?php if ( !empty($data) ) echo esc_attr($data->event_image); ?>" placeholder="http://yourdomain.com/image.jpg" /> <input id="upload_image_button" type="button" class="button" value="<?php _e('Upload Image','my-calendar'); ?>" /><br /><?php _e('Include your image URL or upload an image.','my-calendar'); ?>
346
  </p>
347
  <?php } else { ?>
348
  <div>
349
  <input type="hidden" name="event_image" value="<?php if ( !empty($data) ) echo esc_attr($data->event_image); ?>" />
350
  <?php if ( !empty($data->event_image) ) { ?>
351
+ <div class="event_image"><img src="<?php echo esc_attr($data->event_image); ?>" alt="" /></div>
352
  <?php } ?>
353
  </div>
354
+ <?php } ?>
 
 
 
 
 
355
  <p>
356
  <label for="event_host"><?php _e('Event Host','my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_host' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label>
357
  <select id="event_host" name="event_host">
365
  } else if( is_object($u) && $u->ID == $user->ID && empty($data->event_host) ) {
366
  echo ' selected="selected"';
367
  }
368
+ $display_name = ( $u->display_name == '' ) ? $u->user_nicename : $u->display_name;
369
+ echo ">$display_name</option>\n";
370
  }
371
  ?>
372
  </select>
385
  <?php } ?>
386
  <?php if ($mc_input['event_link'] == 'on' || $mc_input_administrator ) { ?>
387
  <p>
388
+ <label for="event_link"><?php _e('Event Link (Optional)','my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_link' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label> <input type="text" id="event_link" name="event_link" class="input" size="40" value="<?php if ( !empty($data) ) { echo esc_url($data->event_link); } ?>" /> <input type="checkbox" value="1" id="event_link_expires" name="event_link_expires"<?php if ( !empty($data) && $data->event_link_expires == '1' ) { echo " checked=\"checked\""; } else if ( !empty($data) && $data->event_link_expires == '0' ) { echo ""; } else if ( get_option( 'mc_event_link_expires' ) == 'true' ) { echo " checked=\"checked\""; } ?> /> <label for="event_link_expires"><?php _e('Link will expire after event.','my-calendar'); ?></label>
389
  </p>
390
  <?php } ?>
391
  </fieldset>
392
+ <p>
393
+ <input type="submit" name="save" class="button-primary" value="<?php _e('Edit Event Group','my-calendar'); ?>" />
394
+ </p>
395
+ </div>
396
  </div>
397
  </div>
398
  <?php if ($mc_input['event_open'] == 'on' || $mc_input_administrator ) {
500
  <fieldset>
501
  <legend><?php _e('GPS Coordinates (optional)','my-calendar'); ?></legend>
502
  <p>
 
 
 
503
  <label for="event_latitude"><?php _e('Latitude','my-calendar'); ?><?php if ( !mc_compare_group_members( $group_id,'event_latitude' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?><?php if ( !mc_compare_group_members( $group_id,'event_longitude' ) ) { echo " <span>".__('Fields do not match','my-calendar')."</span>"; } ?></label> <input type="text" id="event_latitude" name="event_latitude" class="input" size="10" value="<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_latitude)); ?>" /> <label for="event_longitude"><?php _e('Longitude','my-calendar'); ?></label> <input type="text" id="event_longitude" name="event_longitude" class="input" size="10" value="<?php if ( !empty( $data ) ) esc_attr_e(stripslashes($data->event_longitude)); ?>" />
504
  </p>
505
  </fieldset>
743
  <table class="widefat wp-list-table" id="my-calendar-admin-table">
744
  <thead>
745
  <tr>
746
+ <th scope="col" style="width: 50px;"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=1$sorting"); ?>"><?php _e('ID','my-calendar') ?></a></th>
747
+ <th scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=8$sorting"); ?>"><?php _e('Group','my-calendar') ?></a></th>
748
+ <th scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=2$sorting"); ?>"><?php _e('Title','my-calendar') ?></a></th>
749
+ <th scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=7$sorting"); ?>"><?php _e('Where','my-calendar') ?></a></th>
750
+ <th scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=4$sorting"); ?>"><?php _e('Starts','my-calendar') ?></a></th>
751
+ <th scope="col"><?php _e('Recurs','my-calendar') ?></th>
752
+ <th scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=5$sorting"); ?>"><?php _e('Author','my-calendar') ?></a></th>
753
+ <th scope="col"><a href="<?php echo admin_url("admin.php?page=my-calendar-groups&amp;sort=6$sorting"); ?>"><?php _e('Category','my-calendar') ?></a></th>
754
  </tr>
755
  </thead>
756
  <?php
my-calendar-help.php CHANGED
@@ -70,22 +70,18 @@ function my_calendar_help() { ?>
70
  <li><code>author</code>: <?php _e('Author or comma-separated list of authors (usernames or IDs) to show events from.','my-calendar'); ?></li>
71
  <li><code>host</code>: <?php _e('Host or comma-separated list of hosts (WordPress usernames or IDs) to show events from.','my-calendar'); ?></li>
72
  <li><code>id</code>: <?php _e('String to give this specific calendar shortcode a unique ID. Use when showing multiple calendars in a Page or post.','my-calendar'); ?></li>
73
- <li><code><del>showkey</del></code>: <strong><?php _e('Deprecated','my-calendar'); ?></strong> <?php _e('Use "key" in <code>above</code> or <code>below</code>','my-calendar'); ?></li>
74
- <li><code><del>shownav</del></code>: <strong><?php _e('Deprecated','my-calendar'); ?></strong> <?php _e('Use "nav" in <code>above</code> or <code>below</code>','my-calendar'); ?></li>
75
- <li><code><del>showjump</del></code>: <strong><?php _e('Deprecated','my-calendar'); ?></strong> <?php _e('Use "jump" in <code>above</code> or <code>below</code>','my-calendar'); ?></li>
76
- <li><code><del>toggle</del></code>: <strong><?php _e('Deprecated','my-calendar'); ?></strong> <?php _e('Use "toggle" in <code>above</code> or <code>below</code>','my-calendar'); ?></li>
77
  </ul>
78
  <p>
79
- <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>
80
  </p>
81
  <h4><?php _e('Additional Calendar Views (Upcoming events, today\'s events)','my-calendar'); ?></h4>
82
- <p class="example"><code>[my_calendar_upcoming before="3" after="3" type="event" fallback="No events coming up!" category="General" author="1" template="{title} {date}" order="asc" show_today="yes" skip="0"]</code></p>
83
  <p>
84
- <?php _e('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.','my-calendar'); ?>
85
  </p>
86
- <p class="example"><code>[my_calendar_today category="" author="1" fallback="Nothing today!" template="{title} {date}"]</code></p>
87
  <p>
88
- <?php _e('Predictably enough, this shortcode displays the output of the Today\'s Events widget, with four configurable attributes: category, author, template and fallback text.','my-calendar'); ?>
89
  </p>
90
  <p>
91
  <em><?php _e('Both Upcoming Events and Today\'s Events can also be configured using widgets.','my-calendar'); ?></em>
@@ -99,49 +95,46 @@ function my_calendar_help() { ?>
99
 
100
  <p class="example"><code>[my_calendar_locations show="list" type="saved" datatype="name"]</code></p>
101
  <p>
102
- <?php _e('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>.','my-calendar'); ?>
103
  </p>
104
  <p class="example"><code>[my_calendar_show_locations datatype="" template=""]</code></p>
105
  <p>
106
- <?php _e('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.','my-calendar'); ?>
107
- <?php _e('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.','my-calendar'); ?>
108
  </p>
109
  <p class="example"><code>[my_calendar_categories show="list"]</code></p>
110
  <p>
111
- <?php _e('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>.','my-calendar'); ?>
112
  </p>
113
  </div>
114
  </div>
115
 
116
-
117
  <div class="ui-sortable meta-box-sortables" id="icons">
118
  <div class="postbox">
119
  <h3><?php _e('Category Icons','my-calendar'); ?></h3>
120
  <div class="inside">
121
  <p>
122
- <?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'); ?>
123
  </p>
124
  <p>
125
- <?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>
126
  </p>
127
  </div>
128
  </div>
129
  </div>
130
 
131
-
132
  <div class="ui-sortable meta-box-sortables" id="mc-styles">
133
  <div class="postbox">
134
  <h3><?php _e('Custom Styles','my-calendar'); ?></h3>
135
  <div class="inside">
136
  <p>
137
- <?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'); ?>
138
  </p>
139
  <ul>
140
- <li><?php _e('Your stylesheet directory is','my-calendar'); ?>: <code><?php echo plugin_dir_path( __FILE__ ).'styles/'; ?></code></li>
141
- <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>
142
  </ul>
143
  <p>
144
- <?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'); ?>
145
  </p>
146
  </div>
147
  </div>
70
  <li><code>author</code>: <?php _e('Author or comma-separated list of authors (usernames or IDs) to show events from.','my-calendar'); ?></li>
71
  <li><code>host</code>: <?php _e('Host or comma-separated list of hosts (WordPress usernames or IDs) to show events from.','my-calendar'); ?></li>
72
  <li><code>id</code>: <?php _e('String to give this specific calendar shortcode a unique ID. Use when showing multiple calendars in a Page or post.','my-calendar'); ?></li>
 
 
 
 
73
  </ul>
74
  <p>
75
+ <em><?php _e('The main My Calendar shortcode 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>
76
  </p>
77
  <h4><?php _e('Additional Calendar Views (Upcoming events, today\'s events)','my-calendar'); ?></h4>
78
+ <p class="example"><code>[my_calendar_upcoming before="3" after="3" type="event" fallback="No events coming up!" category="General" author="1" host="1" template="{title} {date}" order="asc" show_today="yes" skip="0"]</code></p>
79
  <p>
80
+ <?php _e('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.','my-calendar'); ?>
81
  </p>
82
+ <p class="example"><code>[my_calendar_today category="" author="1" host="1" fallback="Nothing today!" template="{title} {date}"]</code></p>
83
  <p>
84
+ <?php _e('Displays the output of the Today\'s Events widget, with four configurable attributes: category, author, template and fallback text.','my-calendar'); ?>
85
  </p>
86
  <p>
87
  <em><?php _e('Both Upcoming Events and Today\'s Events can also be configured using widgets.','my-calendar'); ?></em>
95
 
96
  <p class="example"><code>[my_calendar_locations show="list" type="saved" datatype="name"]</code></p>
97
  <p>
98
+ <?php _e('List of event locations, either as a list of links or as a select 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>.','my-calendar'); ?>
99
  </p>
100
  <p class="example"><code>[my_calendar_show_locations datatype="" template=""]</code></p>
101
  <p>
102
+ <?php _e('Display a list of locations. 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.','my-calendar'); ?>
103
+ <?php _e('Use the <code>template</code> attribute to show your customized set of data. Sorted by the <code>datatype</code> value.','my-calendar'); ?>
104
  </p>
105
  <p class="example"><code>[my_calendar_categories show="list"]</code></p>
106
  <p>
107
+ <?php _e('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>.','my-calendar'); ?>
108
  </p>
109
  </div>
110
  </div>
111
 
 
112
  <div class="ui-sortable meta-box-sortables" id="icons">
113
  <div class="postbox">
114
  <h3><?php _e('Category Icons','my-calendar'); ?></h3>
115
  <div class="inside">
116
  <p>
117
+ <?php _e('My Calendar is designed to manage multiple calendars. The basis for these calendars are categories; you can 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'); ?>
118
  </p>
119
  <p>
120
+ <?php _e('The pre-installed category icons may not be what you need. I assume that you\'ll upload your own icons -- place your custom icons in a folder at "my-calendar-custom" to avoid having them overwritten by upgrades.','my-calendar'); ?> <?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>
121
  </p>
122
  </div>
123
  </div>
124
  </div>
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">
130
  <p>
131
+ <?php _e('My Calendar comes with five default stylesheets. My Calendar will retain your changes to stylesheets, 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 custom style directory is','my-calendar'); ?>: <code><?php echo str_replace( '/my-calendar','',plugin_dir_path( __FILE__ ) ).'my-calendar-custom/styles/'; ?></code></li>
 
135
  </ul>
136
  <p>
137
+ <?php _e('You can also add custom styles to your custom directory or your theme directory for 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'); ?>
138
  </p>
139
  </div>
140
  </div>
my-calendar-importer.php CHANGED
@@ -1,4 +1,19 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  // Display the admin configuration page
3
  function my_calendar_import( $importer='ko_calendar' ) {
4
  global $wpdb;
1
  <?php
2
+
3
+ /* use SplFileObject to parse CSV
4
+ $file = 'data.csv';
5
+ try {
6
+ $csv = new SplFileObject($file, 'r');
7
+ } catch ( RuntimeException $e ) {
8
+ printf( "Error opening csv: %s\n", $e->getMessage() );
9
+ }
10
+
11
+ while( !$csv->eof() && ( $row = $csv->fgetcsv() ) && $row[0] !== null ) {
12
+ // $row is a numerical keyed array with
13
+ // a string per field (zero based).
14
+ }
15
+ */
16
+
17
  // Display the admin configuration page
18
  function my_calendar_import( $importer='ko_calendar' ) {
19
  global $wpdb;
my-calendar-install.php CHANGED
@@ -62,7 +62,7 @@ $single_template = addslashes('<span class="event-time dtstart" title="{dtstart}
62
  <p><a href="{link}" class="event-link external">{title}</a></p></div>');
63
 
64
  $rss_template = addslashes("\n<item>
65
- <title>{title}</title>
66
  <link>{link}</link>
67
  <pubDate>{rssdate}</pubDate>
68
  <dc:creator>{author}</dc:creator>
@@ -118,12 +118,12 @@ $initial_caljs = '$(function() {
118
  $(document).on("click", ".calendar-event .event-title",
119
  function(e) {
120
  e.preventDefault(); // remove line if you are using a link in the event title
121
- $(this).parent().children().not(".event-title").toggle();
122
  });
123
  $(document).on("click", ".calendar-event .close",
124
  function(e) {
125
  e.preventDefault();
126
- $(this).parent().toggle();
127
  });
128
  });';
129
 
@@ -407,9 +407,6 @@ global $default_template, $initial_listjs, $initial_caljs, $initial_minijs, $ini
407
  ));
408
  add_option('mc_skip_holidays','false');
409
  add_option('mc_css_file','refresh.css');
410
- add_option('mc_show_rss','false');
411
- add_option('mc_show_ical','false');
412
- add_option('mc_show_print','false');
413
  add_option('mc_time_format',get_option('time_format'));
414
  add_option( 'mc_widget_defaults',$defaults);
415
  add_option( 'mc_show_weekends','true' );
@@ -541,29 +538,32 @@ function my_calendar_rmdirr($dirname) {
541
  $dir->close();
542
  return @rmdir($dirname);
543
  }
544
- function my_calendar_backup() {
545
- $to = dirname(__FILE__)."/../styles_backup/";
546
- $from = dirname(__FILE__)."/styles/";
547
- my_calendar_copyr($from, $to);
548
-
549
- $to = dirname(__FILE__)."/../icons_backup/";
550
- $from = dirname(__FILE__)."/icons/";
551
- my_calendar_copyr($from, $to);
 
 
552
  }
553
- function my_calendar_recover() {
554
- $from = dirname(__FILE__)."/../styles_backup/";
555
- $to = dirname(__FILE__)."/styles/";
556
- my_calendar_copyr($from, $to);
557
- if (is_dir($from)) {
558
- my_calendar_rmdirr($from);
559
- }
560
-
561
- $from = dirname(__FILE__)."/../icons_backup/";
562
- $to = dirname(__FILE__)."/icons/";
563
- my_calendar_copyr($from, $to);
564
- if (is_dir($from)) {
565
- my_calendar_rmdirr($from);
566
- }
 
567
  }
568
  add_filter('upgrader_pre_install', 'my_calendar_backup', 10, 2);
569
  add_filter('upgrader_post_install', 'my_calendar_recover', 10, 2);
62
  <p><a href="{link}" class="event-link external">{title}</a></p></div>');
63
 
64
  $rss_template = addslashes("\n<item>
65
+ <title>{title}: {date}, {time}</title>
66
  <link>{link}</link>
67
  <pubDate>{rssdate}</pubDate>
68
  <dc:creator>{author}</dc:creator>
118
  $(document).on("click", ".calendar-event .event-title",
119
  function(e) {
120
  e.preventDefault(); // remove line if you are using a link in the event title
121
+ $(this).parent().children().not(".event-title").toggle();
122
  });
123
  $(document).on("click", ".calendar-event .close",
124
  function(e) {
125
  e.preventDefault();
126
+ $(this).parent().toggle();
127
  });
128
  });';
129
 
407
  ));
408
  add_option('mc_skip_holidays','false');
409
  add_option('mc_css_file','refresh.css');
 
 
 
410
  add_option('mc_time_format',get_option('time_format'));
411
  add_option( 'mc_widget_defaults',$defaults);
412
  add_option( 'mc_show_weekends','true' );
538
  $dir->close();
539
  return @rmdir($dirname);
540
  }
541
+ function my_calendar_backup( $process, $plugin ) {
542
+ if ( isset( $plugin['plugin'] ) && $plugin['plugin'] == 'my-calendar/my-calendar.php' ) {
543
+ $to = dirname(__FILE__)."/../styles_backup/";
544
+ $from = dirname(__FILE__)."/styles/";
545
+ my_calendar_copyr($from, $to);
546
+
547
+ $to = dirname(__FILE__)."/../icons_backup/";
548
+ $from = dirname(__FILE__)."/icons/";
549
+ my_calendar_copyr($from, $to);
550
+ }
551
  }
552
+ function my_calendar_recover( $process, $plugin ) {
553
+ if ( isset( $plugin['plugin'] ) && $plugin['plugin'] == 'my-calendar/my-calendar.php' ) {
554
+ $from = dirname(__FILE__)."/../styles_backup/";
555
+ $to = dirname(__FILE__)."/styles/";
556
+ my_calendar_copyr($from, $to);
557
+ if (is_dir($from)) {
558
+ my_calendar_rmdirr($from);
559
+ }
560
+ $from = dirname(__FILE__)."/../icons_backup/";
561
+ $to = dirname(__FILE__)."/icons/";
562
+ my_calendar_copyr($from, $to);
563
+ if (is_dir($from)) {
564
+ my_calendar_rmdirr($from);
565
+ }
566
+ }
567
  }
568
  add_filter('upgrader_pre_install', 'my_calendar_backup', 10, 2);
569
  add_filter('upgrader_post_install', 'my_calendar_recover', 10, 2);
my-calendar-locations.php CHANGED
@@ -131,65 +131,65 @@ global $wpdb;
131
  <?php _e('All location fields are optional: <em>insufficient information may result in an inaccurate map</em>.','my-calendar'); ?>
132
  </p>
133
  <p>
134
- <label for="location_label"><?php _e('Name of Location (e.g. <em>Joe\'s Bar and Grill</em>)','my-calendar'); ?></label><br />
135
  <?php if ( mc_controlled_field( 'label' ) ) {
136
  if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_label));
137
  echo mc_location_controller( 'label', $cur_label );
138
  } else { ?>
139
- <input type="text" id="location_label" name="location_label" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_label)); ?>" />
140
  <?php } ?>
141
  </p>
142
  <p>
143
- <label for="location_street"><?php _e('Street Address','my-calendar'); ?></label> <input type="text" id="location_street" name="location_street" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_street)); ?>" />
144
  </p>
145
  <p>
146
- <label for="location_street2"><?php _e('Street Address (2)','my-calendar'); ?></label> <input type="text" id="location_street2" name="location_street2" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_street2)); ?>" />
147
  </p>
148
  <p>
149
- <label for="location_phone"><?php _e('Phone','my-calendar'); ?></label> <input type="text" id="location_phone" name="location_phone" class="input" size="32" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_phone)); ?>" />
150
  </p>
151
  <p>
152
- <label for="location_city"><?php _e('City','my-calendar'); ?></label>
153
  <?php if ( mc_controlled_field( 'city' ) ) {
154
  if ( !empty( $cur_loc ) ) $cur_label = ( stripslashes( $cur_loc->location_city ) );
155
  echo mc_location_controller( 'city', $cur_label );
156
  } else { ?>
157
- <input type="text" id="location_city" name="location_city" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_city)); ?>" />
158
  <?php } ?>
159
- <label for="location_state"><?php _e('State/Province','my-calendar'); ?></label>
160
  <?php if ( mc_controlled_field( 'state' ) ) {
161
  if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_state));
162
  echo mc_location_controller( 'state', $cur_label );
163
  } else { ?>
164
- <input type="text" id="location_state" name="location_state" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) echo stripslashes(esc_attr($cur_loc->location_state)); ?>" />
165
  <?php } ?>
166
  </p>
167
  <p>
168
- <label for="location_postcode"><?php _e('Postal Code','my-calendar'); ?></label>
169
- <?php if ( mc_controlled_field( 'postcode' ) ) {
170
- if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_postcode));
171
  echo mc_location_controller( 'postcode', $cur_label );
172
  } else { ?>
173
- <input type="text" id="location_postcode" name="location_postcode" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) echo stripslashes(esc_attr($cur_loc->location_postcode)); ?>" />
174
  <?php } ?>
175
- <label for="location_region"><?php _e('Region','my-calendar'); ?></label>
176
  <?php if ( mc_controlled_field( 'region' ) ) {
177
  if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_region));
178
  echo mc_location_controller( 'region', $cur_label );
179
  } else { ?>
180
- <input type="text" id="location_region" name="location_region" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_region)); ?>" />
181
  <?php } ?>
182
  </p>
183
  <p>
184
- <label for="location_country"><?php _e('Country','my-calendar'); ?></label>
185
  <?php if ( mc_controlled_field( 'country' ) ) {
186
  if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_country));
187
  echo mc_location_controller( 'country', $cur_label );
188
  } else { ?>
189
- <input type="text" id="location_country" name="location_country" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_country)); ?>" />
190
  <?php } ?>
191
- <label for="location_zoom"><?php _e('Initial Zoom','my-calendar'); ?></label>
192
- <select name="location_zoom" id="location_zoom">
193
  <option value="16"<?php if ( !empty( $cur_loc ) && ( $cur_loc->location_zoom == 16 ) ) { echo " selected=\"selected\""; } ?>><?php _e('Neighborhood','my-calendar'); ?></option>
194
  <option value="14"<?php if ( !empty( $cur_loc ) && ( $cur_loc->location_zoom == 14 ) ) { echo " selected=\"selected\""; } ?>><?php _e('Small City','my-calendar'); ?></option>
195
  <option value="12"<?php if ( !empty( $cur_loc ) && ( $cur_loc->location_zoom == 12 ) ) { echo " selected=\"selected\""; } ?>><?php _e('Large City','my-calendar'); ?></option>
@@ -199,16 +199,13 @@ global $wpdb;
199
  </select>
200
  </p>
201
  <p>
202
- <label for="location_url"><?php _e('Website','my-calendar'); ?></label> <input type="text" id="location_url" name="location_url" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_url)); ?>" />
203
  </p>
204
  <fieldset>
205
  <legend><?php _e('GPS Coordinates (optional)','my-calendar'); ?></legend>
206
  <p>
207
- <small><?php _e('If you supply GPS coordinates for your location, they will be used in place of any other address information to pinpoint your location.','my-calendar'); ?></small>
208
- </p>
209
- <p>
210
- <label for="location_latitude"><?php _e('Latitude','my-calendar'); ?></label> <input type="text" id="location_latitude" name="location_latitude" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) { esc_attr_e(stripslashes($cur_loc->location_latitude)); } else { echo '0.000000'; } ?>" />
211
- <label for="location_longitude"><?php _e('Longitude','my-calendar'); ?></label> <input type="text" id="location_longitude" name="location_longitude" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) { esc_attr_e(stripslashes($cur_loc->location_longitude)); } else { echo '0.000000'; } ?>" />
212
  </p>
213
  </fieldset>
214
  <p>
@@ -222,18 +219,16 @@ global $wpdb;
222
  <?php if ($view == 'edit') { ?>
223
  <p><a href="<?php echo admin_url("admin.php?page=my-calendar-locations"); ?>"><?php _e('Add a New Location','my-calendar'); ?> &raquo;</a></p>
224
  <?php } ?>
225
-
226
  <div class="ui-sortable meta-box-sortables">
227
  <div class="postbox">
228
  <h3><?php _e('Manage Locations','my-calendar'); ?></h3>
229
  <div class="inside">
230
- <?php mc_manage_locations(); ?>
231
  </div>
232
  </div>
233
  </div>
234
  </div>
235
  <?php jd_show_support_box(); ?>
236
-
237
  </div>
238
 
239
  <?php
@@ -271,26 +266,20 @@ function mc_location_controller( $fieldname, $selected ) {
271
  }
272
 
273
  function mc_manage_locations() {
274
- global $wpdb;
275
- $mcdb = $wpdb;
276
- ?>
277
- <?php
278
-
279
- // We pull the locations from the database
280
- $locations = $mcdb->get_results("SELECT * FROM " . my_calendar_locations_table() . " ORDER BY location_label ASC");
281
-
282
- if ( !empty($locations) )
283
- {
284
- ?>
285
- <table class="widefat page fixed" id="my-calendar-admin-table">
286
- <thead>
287
- <tr>
288
- <th class="manage-column" scope="col"><?php _e('ID','my-calendar') ?></th>
289
- <th class="manage-column" scope="col"><?php _e('Location','my-calendar') ?></th>
290
- <th class="manage-column" scope="col"><?php _e('Edit','my-calendar') ?></th>
291
- <th class="manage-column" scope="col"><?php _e('Delete','my-calendar') ?></th>
292
- </tr>
293
- </thead>
294
  <?php
295
  $class = '';
296
  foreach ( $locations as $location ) {
@@ -298,23 +287,18 @@ $mcdb = $wpdb;
298
  ?>
299
  <tr class="<?php echo $class; ?>">
300
  <th scope="row"><?php echo $location->location_id; ?></th>
301
- <td><?php echo stripslashes($location->location_label) . "<br />" . stripslashes($location->location_street) . "<br />" . stripslashes($location->location_city) . ", " . stripslashes($location->location_state) . " " . stripslashes($location->location_postcode); ?></td>
302
  <td><a href="<?php echo admin_url("admin.php?page=my-calendar-locations&amp;mode=edit&amp;location_id=$location->location_id"); ?>" class='edit'><?php _e('Edit','my-calendar'); ?></a></td>
303
  <td><a href="<?php echo admin_url("admin.php?page=my-calendar-locations&amp;mode=delete&amp;location_id=$location->location_id"); ?>" class="delete" onclick="return confirm('<?php _e('Are you sure you want to delete this category?','my-calendar'); ?>')"><?php _e('Delete','my-calendar'); ?></a></td>
304
- </tr>
305
- <?php
306
- }
307
- ?>
308
- </table>
309
- <?php
310
- } else {
311
- echo '<p>'.__('There are no locations in the database yet!','my-calendar').'</p>';
312
- }
313
- ?>
314
- <p><em>
315
- <?php _e('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.','my-calendar'); ?>
316
- </em></p>
317
-
318
- </div>
319
  <?php
320
  }
131
  <?php _e('All location fields are optional: <em>insufficient information may result in an inaccurate map</em>.','my-calendar'); ?>
132
  </p>
133
  <p>
134
+ <label for="loc_label"><?php _e('Name of Location (e.g. <em>Joe\'s Bar and Grill</em>)','my-calendar'); ?></label><br />
135
  <?php if ( mc_controlled_field( 'label' ) ) {
136
  if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_label));
137
  echo mc_location_controller( 'label', $cur_label );
138
  } else { ?>
139
+ <input type="text" id="loc_label" name="location_label" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_label)); ?>" />
140
  <?php } ?>
141
  </p>
142
  <p>
143
+ <label for="loc_street"><?php _e('Street Address','my-calendar'); ?></label> <input type="text" id="loc_street" name="location_street" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_street)); ?>" />
144
  </p>
145
  <p>
146
+ <label for="loc_street2"><?php _e('Street Address (2)','my-calendar'); ?></label> <input type="text" id="loc_street2" name="location_street2" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_street2)); ?>" />
147
  </p>
148
  <p>
149
+ <label for="loc_phone"><?php _e('Phone','my-calendar'); ?></label> <input type="text" id="loc_phone" name="location_phone" class="input" size="32" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_phone)); ?>" />
150
  </p>
151
  <p>
152
+ <label for="loc_city"><?php _e('City','my-calendar'); ?></label>
153
  <?php if ( mc_controlled_field( 'city' ) ) {
154
  if ( !empty( $cur_loc ) ) $cur_label = ( stripslashes( $cur_loc->location_city ) );
155
  echo mc_location_controller( 'city', $cur_label );
156
  } else { ?>
157
+ <input type="text" id="loc_city" name="location_city" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_city)); ?>" />
158
  <?php } ?>
159
+ <label for="loc_state"><?php _e('State/Province','my-calendar'); ?></label>
160
  <?php if ( mc_controlled_field( 'state' ) ) {
161
  if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_state));
162
  echo mc_location_controller( 'state', $cur_label );
163
  } else { ?>
164
+ <input type="text" id="loc_state" name="location_state" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) echo stripslashes(esc_attr($cur_loc->location_state)); ?>" />
165
  <?php } ?>
166
  </p>
167
  <p>
168
+ <label for="loc_postcode"><?php _e('Postal Code','my-calendar'); ?></label><?php
169
+ if ( mc_controlled_field( 'postcode' ) ) {
170
+ if ( !empty( $cur_loc ) ) { $cur_label = (stripslashes($cur_loc->location_postcode)); }
171
  echo mc_location_controller( 'postcode', $cur_label );
172
  } else { ?>
173
+ <input type="text" id="loc_postcode" name="location_postcode" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) echo stripslashes(esc_attr($cur_loc->location_postcode)); ?>" />
174
  <?php } ?>
175
+ <label for="loc_region"><?php _e('Region','my-calendar'); ?></label>
176
  <?php if ( mc_controlled_field( 'region' ) ) {
177
  if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_region));
178
  echo mc_location_controller( 'region', $cur_label );
179
  } else { ?>
180
+ <input type="text" id="loc_region" name="location_region" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_region)); ?>" />
181
  <?php } ?>
182
  </p>
183
  <p>
184
+ <label for="loc_country"><?php _e('Country','my-calendar'); ?></label>
185
  <?php if ( mc_controlled_field( 'country' ) ) {
186
  if ( !empty( $cur_loc ) ) $cur_label = (stripslashes($cur_loc->location_country));
187
  echo mc_location_controller( 'country', $cur_label );
188
  } else { ?>
189
+ <input type="text" id="loc_country" name="location_country" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_country)); ?>" />
190
  <?php } ?>
191
+ <label for="loc_zoom"><?php _e('Initial Zoom','my-calendar'); ?></label>
192
+ <select name="location_zoom" id="loc_zoom">
193
  <option value="16"<?php if ( !empty( $cur_loc ) && ( $cur_loc->location_zoom == 16 ) ) { echo " selected=\"selected\""; } ?>><?php _e('Neighborhood','my-calendar'); ?></option>
194
  <option value="14"<?php if ( !empty( $cur_loc ) && ( $cur_loc->location_zoom == 14 ) ) { echo " selected=\"selected\""; } ?>><?php _e('Small City','my-calendar'); ?></option>
195
  <option value="12"<?php if ( !empty( $cur_loc ) && ( $cur_loc->location_zoom == 12 ) ) { echo " selected=\"selected\""; } ?>><?php _e('Large City','my-calendar'); ?></option>
199
  </select>
200
  </p>
201
  <p>
202
+ <label for="loc_url"><?php _e('Website','my-calendar'); ?></label> <input type="text" id="loc_url" name="location_url" class="input" size="40" value="<?php if ( !empty( $cur_loc ) ) esc_attr_e(stripslashes($cur_loc->location_url)); ?>" />
203
  </p>
204
  <fieldset>
205
  <legend><?php _e('GPS Coordinates (optional)','my-calendar'); ?></legend>
206
  <p>
207
+ <label for="loc_latitude"><?php _e('Latitude','my-calendar'); ?></label> <input type="text" id="loc_latitude" name="location_latitude" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) { esc_attr_e(stripslashes($cur_loc->location_latitude)); } else { echo '0.000000'; } ?>" />
208
+ <label for="loc_longitude"><?php _e('Longitude','my-calendar'); ?></label> <input type="text" id="loc_longitude" name="location_longitude" class="input" size="10" value="<?php if ( !empty( $cur_loc ) ) { esc_attr_e(stripslashes($cur_loc->location_longitude)); } else { echo '0.000000'; } ?>" />
 
 
 
209
  </p>
210
  </fieldset>
211
  <p>
219
  <?php if ($view == 'edit') { ?>
220
  <p><a href="<?php echo admin_url("admin.php?page=my-calendar-locations"); ?>"><?php _e('Add a New Location','my-calendar'); ?> &raquo;</a></p>
221
  <?php } ?>
 
222
  <div class="ui-sortable meta-box-sortables">
223
  <div class="postbox">
224
  <h3><?php _e('Manage Locations','my-calendar'); ?></h3>
225
  <div class="inside">
226
+ <?php mc_manage_locations(); ?>
227
  </div>
228
  </div>
229
  </div>
230
  </div>
231
  <?php jd_show_support_box(); ?>
 
232
  </div>
233
 
234
  <?php
266
  }
267
 
268
  function mc_manage_locations() {
269
+ global $wpdb;
270
+ $mcdb = $wpdb;
271
+ // pull the locations from the database
272
+ $locations = $mcdb->get_results("SELECT * FROM " . my_calendar_locations_table() . " ORDER BY location_label ASC");
273
+ if ( !empty($locations) ) { ?>
274
+ <table class="widefat page" id="my-calendar-admin-table">
275
+ <thead>
276
+ <tr>
277
+ <th scope="col"><?php _e('ID','my-calendar') ?></th>
278
+ <th scope="col"><?php _e('Location','my-calendar') ?></th>
279
+ <th scope="col"><?php _e('Edit','my-calendar') ?></th>
280
+ <th scope="col"><?php _e('Delete','my-calendar') ?></th>
281
+ </tr>
282
+ </thead>
 
 
 
 
 
 
283
  <?php
284
  $class = '';
285
  foreach ( $locations as $location ) {
287
  ?>
288
  <tr class="<?php echo $class; ?>">
289
  <th scope="row"><?php echo $location->location_id; ?></th>
290
+ <td><?php echo mc_hcard( $location, 'true', 'false', 'location' ); ?></td>
291
  <td><a href="<?php echo admin_url("admin.php?page=my-calendar-locations&amp;mode=edit&amp;location_id=$location->location_id"); ?>" class='edit'><?php _e('Edit','my-calendar'); ?></a></td>
292
  <td><a href="<?php echo admin_url("admin.php?page=my-calendar-locations&amp;mode=delete&amp;location_id=$location->location_id"); ?>" class="delete" onclick="return confirm('<?php _e('Are you sure you want to delete this category?','my-calendar'); ?>')"><?php _e('Delete','my-calendar'); ?></a></td>
293
+ </tr>
294
+ <?php } ?>
295
+ </table><?php
296
+ } else {
297
+ echo '<p>'.__('There are no locations in the database yet!','my-calendar').'</p>';
298
+ } ?>
299
+ <p><em>
300
+ <?php _e('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.','my-calendar'); ?>
301
+ </em></p>
302
+ </div>
 
 
 
 
 
303
  <?php
304
  }
my-calendar-output.php CHANGED
@@ -64,7 +64,9 @@ function my_calendar_draw_events($events, $type, $process_date, $time, $template
64
  }
65
  // Used to draw an event to the screen
66
  function my_calendar_draw_event($event, $type="calendar", $process_date, $time, $template='') {
67
- global $wpdb,$wp_plugin_url;
 
 
68
  $mcdb = $wpdb;
69
  if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
70
  // My Calendar must be updated to run this function
@@ -76,8 +78,8 @@ function my_calendar_draw_event($event, $type="calendar", $process_date, $time,
76
  $details = apply_filters( 'mc_custom_template', false, $data, $event, $type, $process_date, $time, $template );
77
  if ( $details === false ) {
78
  $templates = get_option('mc_templates');
79
- if ( $template != '' && file_exists( get_stylesheet_directory() . '/' . $template ) ) {
80
- $template = @file_get_contents( get_stylesheet_directory() . '/' . $template );
81
  $details = jd_draw_template( $data, $template );
82
  } else {
83
  switch ($type) {
@@ -125,7 +127,7 @@ function my_calendar_draw_event($event, $type="calendar", $process_date, $time,
125
  $image = "";
126
  } else {
127
  if ($event->category_icon != "") {
128
- $path = (is_custom_icon())?str_replace('my-calendar','',$wp_plugin_url).'/my-calendar-custom/':plugins_url('icons',__FILE__).'/';
129
  $hex = (strpos($event->category_color,'#') !== 0)?'#':'';
130
  $image = '<img src="'.$path.$event->category_icon.'" alt="'.__('Category','my-calendar').': '.esc_attr($event->category_name).'" class="category-icon" style="background:'.$hex.$event->category_color.'" />';
131
  } else {
@@ -173,7 +175,7 @@ function my_calendar_draw_event($event, $type="calendar", $process_date, $time,
173
  $body_details .= "\n<span class='event-time dtstart'><time datetime='".$id_start.'T'.$event->event_time."'>".date_i18n(get_option('mc_time_format'), strtotime($event->event_time)).'</time>';
174
  if ( $event->event_hide_end == 0 ) {
175
  if ($event->event_endtime != '' && $event->event_endtime != $event->event_time ) {
176
- $body_details .= "<span class='time-separator'> &ndash; </span><span class='end-time dtend' title='".$id_end.'T'.$event->event_endtime."'>".date_i18n(get_option('mc_time_format'), strtotime($event->event_endtime))."</span>";
177
  }
178
  }
179
  if ($tz != '') {
@@ -241,11 +243,11 @@ function my_calendar_draw_event($event, $type="calendar", $process_date, $time,
241
  $event_image = ($event->event_image!='')?"<img src='$event->event_image' alt='' class='mc-image' />":'';
242
  $short = '';
243
  if ( get_option('mc_short') == 'true' && $type != 'single' ) {
244
- $short = ( get_option('mc_process_shortcodes') == 'true' )?apply_filters('the_content',$event->event_short):wpautop(stripcslashes($event->event_short),1);
245
  $short = "<div class='shortdesc'>$event_image".$short."</div>";
246
  }
247
  if ( get_option('mc_desc') == 'true' || $type == 'single' ) {
248
- $description = ( get_option('mc_process_shortcodes') == 'true' )?apply_filters('the_content',$event->event_desc):wpautop(stripcslashes($event->event_desc),1);
249
  $description = "<div class='longdesc'>$event_image".$description."</div>";
250
  } else {
251
  $description = '';
@@ -295,7 +297,7 @@ function my_calendar_draw_event($event, $type="calendar", $process_date, $time,
295
  }
296
  // create edit links
297
  if ( mc_can_edit_event( $event->event_author ) && get_option('mc_remote') != 'true' ) {
298
- $groupedit = ( $event->event_group_id != 0 )?"<li><a href='".admin_url("admin.php?page=my-calendar-groups&amp;mode=edit&amp;event_id=$event->event_id&amp;group_id=$event->event_group_id")."' class='group'>".__('Edit Group','my-calendar')."</a></li>\n":'';
299
  $recurs = str_split( $event->event_recur, 1 );
300
  $recur = $recurs[0];
301
  $every = ( isset($recurs[1]) )?$recurs[1]:1;
@@ -303,21 +305,16 @@ function my_calendar_draw_event($event, $type="calendar", $process_date, $time,
303
  if ( $recur == 'S' ) {
304
  $edit = "
305
  <div class='mc_edit_links'>
306
- <ul>
307
- <li><a href='".admin_url("admin.php?page=my-calendar&amp;mode=edit&amp;event_id=$event->event_id&amp;ref=$referer")."' class='edit'>".__('Edit','my-calendar')."</a></li>
308
- <li><a href='".admin_url("admin.php?page=my-calendar-manage&amp;mode=delete&amp;event_id=$event->event_id&amp;ref=$referer")."' class='delete'>".__('Delete','my-calendar')."</a></li>
309
- $groupedit
310
- </ul>
311
  </div>";
312
  } else {
313
  $edit = "<div class='mc_edit_links'>
314
- <ul>
315
- <li><a href='".admin_url("admin.php?page=my-calendar&amp;mode=edit&amp;event_id=$event->event_id&amp;date=$dateid&amp;ref=$referer")."' class='edit'>".__('Edit This Date','my-calendar')."</a></li>
316
- <li><a href='".admin_url("admin.php?page=my-calendar&amp;mode=edit&amp;event_id=$event->event_id&amp;ref=$referer")."' class='edit'>".__('Edit All','my-calendar')."</a></li>
317
- <li><a href='".admin_url("admin.php?page=my-calendar-manage&amp;mode=delete&amp;event_id=$event->event_id&amp;date=$dateid&amp;ref=$referer")."' class='delete'>".__('Delete This Date','my-calendar')."</a></li>
318
- <li><a href='".admin_url("admin.php?page=my-calendar-manage&amp;mode=delete&amp;event_id=$event->event_id&amp;ref=$referer")."' class='delete'>".__('Delete All','my-calendar')."</a></li>
319
  $groupedit
320
- </ul>
321
  </div>";
322
  }
323
  } else {
@@ -399,7 +396,7 @@ $current_url = mc_get_current_url();
399
  }
400
 
401
  function my_calendar_print() {
402
- $wp_plugin_url = plugin_dir_url( __FILE__ );
403
  $category=(isset($_GET['mcat']))?$_GET['mcat']:''; // these are all sanitized elsewhere
404
  $time=(isset($_GET['time']))?$_GET['time']:'month';
405
  $ltype=(isset($_GET['ltype']))?$_GET['ltype']:'';
@@ -424,10 +421,10 @@ echo '<!DOCTYPE html>
424
  <title>'.get_bloginfo('name').' - '.__('Calendar: Print View','my-calendar').'</title>
425
  <meta name="generator" content="My Calendar for WordPress" />
426
  <meta name="robots" content="noindex,nofollow" />';
427
- if ( file_exists( get_stylesheet_directory() . '/mc-print.css' ) ) {
428
- $stylesheet = get_stylesheet_directory_uri() . '/mc-print.css';
429
  } else {
430
- $stylesheet = $wp_plugin_url."mc-print.css";
431
  }
432
  echo "
433
  <!-- Copy mc-print.css to your theme directory if you wish to replace the default print styles -->
@@ -435,7 +432,7 @@ echo "
435
  </head>
436
  <body>\n";
437
  echo my_calendar('print','calendar',$category,'','','','',$time,$ltype,$lvalue,'mc-print-view','','',null,null,'','');
438
- $return_url = ( get_option('mc_uri') != '' )?get_option('mc_uri'):home_url();
439
  $add = $_GET;
440
  unset( $add['cid'] );
441
  unset( $add['feed'] );
@@ -836,17 +833,13 @@ function my_calendar( $name, $format, $category, $showkey, $shownav, $showjump,
836
  // if use strtotime can do +1 day to get each date.
837
 
838
  // setup print link
839
- if ( get_option( 'mc_show_print' ) == 'true' ) {
840
- $add = array( 'time'=>$time,'ltype'=>$ltype,'lvalue'=>$lvalue,'mcat'=>$category,'yr'=>$c_year,'month'=>$c_month,'dy'=>$c_day, 'cid'=>'print' );
841
- $subtract = array();
842
- if ( $ltype == '' ) { $subtract[] = 'ltype'; unset( $add['ltype'] ); }
843
- if ( $lvalue == '' ) { $subtract[] = 'lvalue'; unset( $add['lvalue'] ); }
844
- if ( $category == 'all' ) { $subtract[] = 'mcat'; unset( $add['mcat'] ); }
845
- $mc_print_url = mc_build_url( $add, $subtract, mc_feed_base() . 'my-calendar-print' );
846
- $print = "<p class='mc-print'><a href='$mc_print_url'>".__('Print View','my-calendar')."</a></p>";
847
- } else {
848
- $print = '';
849
- }
850
  // set up format toggle
851
  if ( $toggle == 'yes' || in_array( 'toggle', $used ) ) {
852
  $toggle = mc_format_toggle( $format, 'yes' );
@@ -887,8 +880,8 @@ function my_calendar( $name, $format, $category, $showkey, $shownav, $showjump,
887
  $nLink = my_calendar_next_link($c_year,$c_month,$c_day,$format,$time);
888
  $prevLink = mc_build_url( array( 'yr'=>$pLink['yr'],'month'=>$pLink['month'],'dy'=>$pLink['day'],'cid'=>$main_class ),array() );
889
  $nextLink = mc_build_url( array( 'yr'=>$nLink['yr'],'month'=>$nLink['month'],'dy'=>$nLink['day'],'cid'=>$main_class ),array() );
890
- $previous_link = apply_filters('mc_previous_link',' <li class="my-calendar-prev"><a class="prevMonth" href="' . $prevLink.'" rel="'.$id.'">'.$pLink['label'].'</a></li>',$pLink);
891
- $next_link = apply_filters('mc_next_link',' <li class="my-calendar-next"><a class="nextMonth" href="' . $nextLink .'" rel="'.$id.'">'.$nLink['label'].'</a></li>',$nLink);
892
  $nav = '
893
  <div class="my-calendar-nav">
894
  <ul>
@@ -1046,7 +1039,7 @@ function my_calendar( $name, $format, $category, $showkey, $shownav, $showjump,
1046
  $target = array('yr'=>date('Y',$start),'month'=>date('m',$start),'dy'=>date( 'j',$start ),'time'=>'day' );
1047
  if ( $category != '' ) { $target['mcat'] = $category; }
1048
  $day_url = mc_build_url( $target, array('month','dy','yr','ltype','loc','mcat','cid'), apply_filters ( 'mc_modify_day_uri', get_option( 'mc_uri' ) ) );
1049
- $link = ( get_option('mc_uri') != '' )?$day_url:'#';
1050
  } else {
1051
  $atype = str_replace( 'anchor','',get_option('mc_open_day_uri') );
1052
  $ad = str_pad( date( 'j',$start ), 2, '0', STR_PAD_LEFT ); // need to match format in ID
@@ -1099,7 +1092,10 @@ function my_calendar( $name, $format, $category, $showkey, $shownav, $showjump,
1099
  // set up no events
1100
  if ( $format != "list" ) {
1101
  $weekend_class = ( $is_weekend )?'weekend':'';
1102
- $my_calendar_body .= "\n<td class='no-events $dayclass $dateclass $weekend_class $monthclass day-with-date'><span class='mc-date no-events'>$thisday_heading</span></td>\n";
 
 
 
1103
  } else {
1104
  if ( $show_all == true ) {
1105
  $my_calendar_body .= "
@@ -1132,7 +1128,9 @@ function my_calendar( $name, $format, $category, $showkey, $shownav, $showjump,
1132
  }
1133
 
1134
  function my_category_key( $category ) {
1135
- global $wpdb,$wp_plugin_url;
 
 
1136
  $mcdb = $wpdb;
1137
  $category_key = '';
1138
  if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
@@ -1143,7 +1141,7 @@ if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) {
1143
  $category_key .= '<div class="category-key">
1144
  <h3>'.__('Category Key','my-calendar')."</h3>\n<ul>\n";
1145
  $subpath = (is_custom_icon())?'my-calendar-custom/':'my-calendar/icons/';
1146
- $path = str_replace('my-calendar','',$wp_plugin_url) .'/'. $subpath;
1147
  foreach($cat_details as $cat_detail) {
1148
  $hex = ( strpos( $cat_detail->category_color,'#' ) !== 0 )?'#':'';
1149
  $title_class = sanitize_title($cat_detail->category_name);
@@ -1164,15 +1162,13 @@ global $wp_rewrite;
1164
  $feed = mc_feed_base().'my-calendar-rss';
1165
  $ics_extend = ( $wp_rewrite->using_permalinks() )?"my-calendar-ics/?yr=$y&amp;month=$m":"my-calendar-ics&amp;yr=$y&amp;month=$m";
1166
  $ics = mc_feed_base(). $ics_extend;
1167
- $rss = (get_option('mc_show_rss')=='true')?" <li class='rss'><a href='".$feed."'>".__('Subscribe by <abbr title="Really Simple Syndication">RSS</abbr>','my-calendar')."</a></li>":'';
1168
- $ical = (get_option('mc_show_ical')=='true')?" <li class='ics'><a href='".$ics."'>".__('Download as <abbr title="iCal Events Export">iCal</abbr>','my-calendar')."</a></li>":'';
1169
  $output = "\n
1170
  <ul id='mc-export'>$rss
1171
  $ical
1172
  </ul>\n";
1173
- if ( get_option('mc_show_rss')=='true' || get_option('mc_show_ical')=='true' ) {
1174
  return $output;
1175
- }
1176
  }
1177
 
1178
  function mc_feed_base() {
@@ -1345,6 +1341,7 @@ function mc_build_url( $add, $subtract, $root='' ) {
1345
  global $wp_rewrite;
1346
  $home = '';
1347
  if ( $root != '' ) { $home = $root; }
 
1348
  if ( $home == '' ) {
1349
  if ( is_front_page() ) {
1350
  $home = get_bloginfo('url') . '/';
@@ -1354,7 +1351,7 @@ $home = '';
1354
  } else if ( is_archive() ) {
1355
  $home = ''; // an empty string seems to work best; leaving it open.
1356
  } else {
1357
- wp_reset_query(); // break out of any alternate loop that's been set up.
1358
  $home = get_permalink();
1359
  }
1360
  }
@@ -1433,8 +1430,8 @@ function my_calendar_searchform($type) {
1433
  if ( $type == 'simple' ) {
1434
  return '
1435
  <form role="search" method="get" id="mcsearchform" action="'.home_url().'" >
1436
- <div><label class="screen-reader-text" for="mcs">'.__('Search events:','my-calendar').'</label>
1437
- <input type="text" value="'.esc_attr(stripslashes($query)).'" name="mcs" id="mcs" />
1438
  <input type="submit" id="searchsubmit" value="'.__('Search Events','my-calendar').'" />
1439
  </div>
1440
  </form>';
64
  }
65
  // Used to draw an event to the screen
66
  function my_calendar_draw_event($event, $type="calendar", $process_date, $time, $template='') {
67
+ global $wpdb;
68
+ $url = plugin_dir_url( __FILE__ );
69
+
70
  $mcdb = $wpdb;
71
  if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
72
  // My Calendar must be updated to run this function
78
  $details = apply_filters( 'mc_custom_template', false, $data, $event, $type, $process_date, $time, $template );
79
  if ( $details === false ) {
80
  $templates = get_option('mc_templates');
81
+ if ( $template != '' && mc_file_exists( $template ) ) {
82
+ $template = @file_get_contents( mc_get_file( $template ) );
83
  $details = jd_draw_template( $data, $template );
84
  } else {
85
  switch ($type) {
127
  $image = "";
128
  } else {
129
  if ($event->category_icon != "") {
130
+ $path = (is_custom_icon())?str_replace('my-calendar','',$url).'/my-calendar-custom/':plugins_url('icons',__FILE__).'/';
131
  $hex = (strpos($event->category_color,'#') !== 0)?'#':'';
132
  $image = '<img src="'.$path.$event->category_icon.'" alt="'.__('Category','my-calendar').': '.esc_attr($event->category_name).'" class="category-icon" style="background:'.$hex.$event->category_color.'" />';
133
  } else {
175
  $body_details .= "\n<span class='event-time dtstart'><time datetime='".$id_start.'T'.$event->event_time."'>".date_i18n(get_option('mc_time_format'), strtotime($event->event_time)).'</time>';
176
  if ( $event->event_hide_end == 0 ) {
177
  if ($event->event_endtime != '' && $event->event_endtime != $event->event_time ) {
178
+ $body_details .= "<span class='time-separator'> &ndash; </span><time class='end-time dtend' datetime='".$id_end.'T'.$event->event_endtime."'>".date_i18n(get_option('mc_time_format'), strtotime($event->event_endtime))."</span>";
179
  }
180
  }
181
  if ($tz != '') {
243
  $event_image = ($event->event_image!='')?"<img src='$event->event_image' alt='' class='mc-image' />":'';
244
  $short = '';
245
  if ( get_option('mc_short') == 'true' && $type != 'single' ) {
246
+ $short = ( get_option('mc_process_shortcodes') == 'true' )?apply_filters('the_content',stripcslashes($event->event_short)):wpautop(stripcslashes($event->event_short),1);
247
  $short = "<div class='shortdesc'>$event_image".$short."</div>";
248
  }
249
  if ( get_option('mc_desc') == 'true' || $type == 'single' ) {
250
+ $description = ( get_option('mc_process_shortcodes') == 'true' )?apply_filters('the_content',stripcslashes($event->event_desc)):wpautop(stripcslashes($event->event_desc),1);
251
  $description = "<div class='longdesc'>$event_image".$description."</div>";
252
  } else {
253
  $description = '';
297
  }
298
  // create edit links
299
  if ( mc_can_edit_event( $event->event_author ) && get_option('mc_remote') != 'true' ) {
300
+ $groupedit = ( $event->event_group_id != 0 )?" &bull; <a href='".admin_url("admin.php?page=my-calendar-groups&amp;mode=edit&amp;event_id=$event->event_id&amp;group_id=$event->event_group_id")."' class='group'>".__('Edit Group','my-calendar')."</a>\n":'';
301
  $recurs = str_split( $event->event_recur, 1 );
302
  $recur = $recurs[0];
303
  $every = ( isset($recurs[1]) )?$recurs[1]:1;
305
  if ( $recur == 'S' ) {
306
  $edit = "
307
  <div class='mc_edit_links'>
308
+ <p>
309
+ <a href='".admin_url("admin.php?page=my-calendar&amp;mode=edit&amp;event_id=$event->event_id&amp;ref=$referer")."' class='edit'>".__('Edit','my-calendar')."</a> &bull; <a href='".admin_url("admin.php?page=my-calendar-manage&amp;mode=delete&amp;event_id=$event->event_id&amp;ref=$referer")."' class='delete'>".__('Delete','my-calendar')."</a>$groupedit
310
+ </p>
 
 
311
  </div>";
312
  } else {
313
  $edit = "<div class='mc_edit_links'>
314
+ <p>
315
+ <a href='".admin_url("admin.php?page=my-calendar&amp;mode=edit&amp;event_id=$event->event_id&amp;date=$dateid&amp;ref=$referer")."' class='edit'>".__('Edit This Date','my-calendar')."</a> &bull; <a href='".admin_url("admin.php?page=my-calendar&amp;mode=edit&amp;event_id=$event->event_id&amp;ref=$referer")."' class='edit'>".__('Edit All','my-calendar')."</a> &bull; <a href='".admin_url("admin.php?page=my-calendar-manage&amp;mode=delete&amp;event_id=$event->event_id&amp;date=$dateid&amp;ref=$referer")."' class='delete'>".__('Delete This Date','my-calendar')."</a> &bull; <a href='".admin_url("admin.php?page=my-calendar-manage&amp;mode=delete&amp;event_id=$event->event_id&amp;ref=$referer")."' class='delete'>".__('Delete All','my-calendar')."</a>
 
 
 
316
  $groupedit
317
+ </p>
318
  </div>";
319
  }
320
  } else {
396
  }
397
 
398
  function my_calendar_print() {
399
+ $url = plugin_dir_url( __FILE__ );
400
  $category=(isset($_GET['mcat']))?$_GET['mcat']:''; // these are all sanitized elsewhere
401
  $time=(isset($_GET['time']))?$_GET['time']:'month';
402
  $ltype=(isset($_GET['ltype']))?$_GET['ltype']:'';
421
  <title>'.get_bloginfo('name').' - '.__('Calendar: Print View','my-calendar').'</title>
422
  <meta name="generator" content="My Calendar for WordPress" />
423
  <meta name="robots" content="noindex,nofollow" />';
424
+ if ( mc_file_exists( 'mc-print.css' ) ) {
425
+ $stylesheet = mc_get_file( 'mc-print.css', 'url' );
426
  } else {
427
+ $stylesheet = $url."mc-print.css";
428
  }
429
  echo "
430
  <!-- Copy mc-print.css to your theme directory if you wish to replace the default print styles -->
432
  </head>
433
  <body>\n";
434
  echo my_calendar('print','calendar',$category,'','','','',$time,$ltype,$lvalue,'mc-print-view','','',null,null,'','');
435
+ $return_url = ( get_option('mc_uri') != '' && !is_numeric( get_option('mc_uri') ) )?get_option('mc_uri'):home_url();
436
  $add = $_GET;
437
  unset( $add['cid'] );
438
  unset( $add['feed'] );
833
  // if use strtotime can do +1 day to get each date.
834
 
835
  // setup print link
836
+ $add = array( 'time'=>$time,'ltype'=>$ltype,'lvalue'=>$lvalue,'mcat'=>$category,'yr'=>$c_year,'month'=>$c_month,'dy'=>$c_day, 'cid'=>'print' );
837
+ $subtract = array();
838
+ if ( $ltype == '' ) { $subtract[] = 'ltype'; unset( $add['ltype'] ); }
839
+ if ( $lvalue == '' ) { $subtract[] = 'lvalue'; unset( $add['lvalue'] ); }
840
+ if ( $category == 'all' ) { $subtract[] = 'mcat'; unset( $add['mcat'] ); }
841
+ $mc_print_url = mc_build_url( $add, $subtract, mc_feed_base() . 'my-calendar-print' );
842
+ $print = "<div class='mc-print'><a href='$mc_print_url'>".__('Print View','my-calendar')."</a></div>";
 
 
 
 
843
  // set up format toggle
844
  if ( $toggle == 'yes' || in_array( 'toggle', $used ) ) {
845
  $toggle = mc_format_toggle( $format, 'yes' );
880
  $nLink = my_calendar_next_link($c_year,$c_month,$c_day,$format,$time);
881
  $prevLink = mc_build_url( array( 'yr'=>$pLink['yr'],'month'=>$pLink['month'],'dy'=>$pLink['day'],'cid'=>$main_class ),array() );
882
  $nextLink = mc_build_url( array( 'yr'=>$nLink['yr'],'month'=>$nLink['month'],'dy'=>$nLink['day'],'cid'=>$main_class ),array() );
883
+ $previous_link = apply_filters( 'mc_previous_link',' <li class="my-calendar-prev"><a href="' . $prevLink.'" rel="'.$id.'">'.$pLink['label'].'</a></li>',$pLink );
884
+ $next_link = apply_filters( 'mc_next_link',' <li class="my-calendar-next"><a href="' . $nextLink .'" rel="'.$id.'">'.$nLink['label'].'</a></li>',$nLink );
885
  $nav = '
886
  <div class="my-calendar-nav">
887
  <ul>
1039
  $target = array('yr'=>date('Y',$start),'month'=>date('m',$start),'dy'=>date( 'j',$start ),'time'=>'day' );
1040
  if ( $category != '' ) { $target['mcat'] = $category; }
1041
  $day_url = mc_build_url( $target, array('month','dy','yr','ltype','loc','mcat','cid'), apply_filters ( 'mc_modify_day_uri', get_option( 'mc_uri' ) ) );
1042
+ $link = ( get_option('mc_uri') != '' && !is_numeric( get_option('mc_uri') ) )?$day_url:'#';
1043
  } else {
1044
  $atype = str_replace( 'anchor','',get_option('mc_open_day_uri') );
1045
  $ad = str_pad( date( 'j',$start ), 2, '0', STR_PAD_LEFT ); // need to match format in ID
1092
  // set up no events
1093
  if ( $format != "list" ) {
1094
  $weekend_class = ( $is_weekend )?'weekend':'';
1095
+ $my_calendar_body .= "
1096
+ <td class='no-events $dayclass $dateclass $weekend_class $monthclass day-with-date'>
1097
+ <span class='mc-date no-events'>$thisday_heading</span>
1098
+ </td>\n";
1099
  } else {
1100
  if ( $show_all == true ) {
1101
  $my_calendar_body .= "
1128
  }
1129
 
1130
  function my_category_key( $category ) {
1131
+ global $wpdb;
1132
+ $url = plugin_dir_url( __FILE__ );
1133
+ $dir = plugin_dir_path( __FILE__ );
1134
  $mcdb = $wpdb;
1135
  $category_key = '';
1136
  if ( get_option( 'mc_remote' ) == 'true' && function_exists('mc_remote_db') ) { $mcdb = mc_remote_db(); }
1141
  $category_key .= '<div class="category-key">
1142
  <h3>'.__('Category Key','my-calendar')."</h3>\n<ul>\n";
1143
  $subpath = (is_custom_icon())?'my-calendar-custom/':'my-calendar/icons/';
1144
+ $path = str_replace( basename( $dir ) . '/','',$url) . $subpath;
1145
  foreach($cat_details as $cat_detail) {
1146
  $hex = ( strpos( $cat_detail->category_color,'#' ) !== 0 )?'#':'';
1147
  $title_class = sanitize_title($cat_detail->category_name);
1162
  $feed = mc_feed_base().'my-calendar-rss';
1163
  $ics_extend = ( $wp_rewrite->using_permalinks() )?"my-calendar-ics/?yr=$y&amp;month=$m":"my-calendar-ics&amp;yr=$y&amp;month=$m";
1164
  $ics = mc_feed_base(). $ics_extend;
1165
+ $rss = " <li class='rss'><a href='".$feed."'>".__('Subscribe by <abbr title="Really Simple Syndication">RSS</abbr>','my-calendar')."</a></li>";
1166
+ $ical = " <li class='ics'><a href='".$ics."'>".__('Download as <abbr title="iCal Events Export">iCal</abbr>','my-calendar')."</a></li>";
1167
  $output = "\n
1168
  <ul id='mc-export'>$rss
1169
  $ical
1170
  </ul>\n";
 
1171
  return $output;
 
1172
  }
1173
 
1174
  function mc_feed_base() {
1341
  global $wp_rewrite;
1342
  $home = '';
1343
  if ( $root != '' ) { $home = $root; }
1344
+ if ( is_numeric( $root ) ) { $home = get_permalink( $root ); }
1345
  if ( $home == '' ) {
1346
  if ( is_front_page() ) {
1347
  $home = get_bloginfo('url') . '/';
1351
  } else if ( is_archive() ) {
1352
  $home = ''; // an empty string seems to work best; leaving it open.
1353
  } else {
1354
+ wp_reset_query(); // break out of any alternate loop that's been set up. If a theme uses query_posts to fetch pages, this will cause problems. But themes should *never* use query_posts to replace the loop, so screw that.
1355
  $home = get_permalink();
1356
  }
1357
  }
1430
  if ( $type == 'simple' ) {
1431
  return '
1432
  <form role="search" method="get" id="mcsearchform" action="'.home_url().'" >
1433
+ <div><label class="screen-reader-text" for="mcs">'.__('Search Events','my-calendar').'</label>
1434
+ <input type="text" value="'.stripslashes($query).'" name="mcs" id="mcs" />
1435
  <input type="submit" id="searchsubmit" value="'.__('Search Events','my-calendar').'" />
1436
  </div>
1437
  </form>';
my-calendar-settings.php CHANGED
@@ -172,18 +172,8 @@ function edit_my_calendar_config() {
172
  update_option('mc_show_weekends',( !empty($_POST['mc_show_weekends']) && $_POST['mc_show_weekends']=='on')?'true':'false');
173
  update_option('mc_convert',( !empty($_POST['mc_convert']) && $_POST['mc_convert']=='on')?'true':'false');
174
  update_option('mc_no_fifth_week',( !empty($_POST['mc_no_fifth_week']) && $_POST['mc_no_fifth_week']=='on')?'true':'false');
175
- $mc_show_rss = ( !empty($_POST['mc_show_rss']) && $_POST['mc_show_rss']=='on')?'true':'false';
176
- $mc_show_ical = ( !empty($_POST['mc_show_ical']) && $_POST['mc_show_ical']=='on')?'true':'false';
177
- $mc_ical_utc = ( !empty($_POST['mc_ical_utc']) && $_POST['mc_ical_utc']=='on')?'true':'false';
178
- $mc_show_print = ( !empty($_POST['mc_show_print']) && $_POST['mc_show_print']=='on')?'true':'false';
179
- // just paste 'em together as a string. All that matters is whether any of them have changed.
180
- $prev_show = get_option('mc_show_rss').'-'.get_option('mc_show_ical').'-'.get_option('mc_show_print');
181
- $curr_show = "$mc_show_rss-$mc_show_ical-$mc_show_print";
182
- update_option( 'mc_modified_feeds', array( 'prev'=>$prev_show, 'curr'=>$curr_show ) );
183
- update_option('mc_show_rss',$mc_show_rss);
184
- update_option('mc_show_ical',$mc_show_ical);
185
  update_option('mc_ical_utc',$mc_ical_utc);
186
- update_option('mc_show_print',$mc_show_print);
187
  echo "<div class=\"updated\"><p><strong>".__('Output Settings saved','my-calendar')."</strong></p></div>";
188
  }
189
  // input
@@ -306,7 +296,6 @@ function edit_my_calendar_config() {
306
  $mc_details_label = $templates['label'];
307
  $mc_link_label = $templates['link'];
308
  $mc_event_title_template = get_option('mc_event_title_template');
309
- $mc_uri = get_option('mc_uri');
310
  $mc_mini_uri = get_option('mc_mini_uri');
311
  ?>
312
 
@@ -410,7 +399,7 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
410
  <input type="radio" name="mc_current_table" id="mc1" value="1"<?php echo jd_option_selected(get_option('mc_current_table'),1); ?> /> <label for="mc1"><?php _e('Currently editing the network calendar','my-calendar'); ?></label>
411
  </li>
412
  <?php } else { ?>
413
- <?php if ( get_option('mc_remote') != 'true' ) { ?>
414
  <li><?php _e('You are currently working in the primary site for this network; your local calendar is also the global table.','my-calendar'); ?></li>
415
  <?php } ?>
416
  <?php } ?>
@@ -438,31 +427,31 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
438
  <fieldset>
439
  <legend><?php _e('Calendar Options: Customizable Text Fields','my-calendar'); ?></legend>
440
  <ul>
441
- <li><label for="mc_notime_text"><?php _e('Label for all-day events','my-calendar'); ?></label> <input type="text" id="mc_notime_text" name="mc_notime_text" value="<?php if ( get_option('mc_notime_text') == "") { _e('N/A','my-calendar'); } else { echo esc_attr( stripslashes( get_option('mc_notime_text') ) ); } ?>" /> </li>
442
- <li><label for="mc_previous_events"><?php _e('Previous events link','my-calendar'); ?></label> <input type="text" id="mc_previous_events" name="mc_previous_events" value="<?php if ( get_option('mc_previous_events') == "") { _e('Previous Events','my-calendar'); } else { echo esc_attr( stripslashes( get_option('mc_previous_events') ) ); } ?>" /> <?php _e('Use <code>{date}</code> to display the appropriate date in navigation.','my-calendar'); ?> </li>
443
- <li><label for="mc_next_events"><?php _e('Next events link','my-calendar'); ?></label> <input type="text" id="mc_next_events" name="mc_next_events" value="<?php if ( get_option('mc_next_events') == "") { _e('Next Events','my-calendar'); } else { echo esc_attr( stripslashes( get_option('mc_next_events') ) ); } ?>" /> <?php _e('Use <code>{date}</code> to display the appropriate date in navigation.','my-calendar'); ?> </li>
444
- <li><label for="mc_event_open"><?php _e('If events are open','my-calendar'); ?></label> <input type="text" id="mc_event_open" name="mc_event_open" value="<?php if ( get_option('mc_event_open') == "") { _e('Registration is open','my-calendar'); } else { echo esc_attr( stripslashes( get_option('mc_event_open') ) ); } ?>" /> </li>
445
- <li><label for="mc_event_closed"><?php _e('If events are closed','my-calendar'); ?></label> <input type="text" id="mc_event_closed" name="mc_event_closed" value="<?php if ( get_option('mc_event_closed') == "") { _e('Registration is closed','my-calendar'); } else { echo esc_attr( stripslashes( get_option('mc_event_closed') ) ); } ?>" /> </li>
446
- <li><label for="mc_week_caption"><?php _e('Week view caption:','my-calendar'); ?></label> <input type="text" id="mc_week_caption" name="mc_week_caption" value="<?php echo esc_attr( stripslashes( get_option('mc_week_caption') ) ); ?>" /><br /><small><?php _e('Available tag: <code>{date format=""}</code>','my-calendar'); ?></small></li>
447
- <li><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> </li>
448
  <li>
449
  <label for="mc_title_template"><?php _e('Event title template','my-calendar'); ?></label>
450
  <input type="text" name="mc_title_template" id="mc_title_template" size="30" value="<?php echo stripslashes(esc_attr($mc_title_template)); ?>" /> <?php _e('All template tags are available.','my-calendar'); ?></small>
451
  </li>
452
  <li>
453
  <label for="mc_details_label"><?php _e('Event details link text','my-calendar'); ?></label>
454
- <input type="text" name="mc_details_label" id="mc_details_label" size="30" value="<?php echo stripslashes(esc_attr($mc_details_label)); ?>" />
455
- <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>
456
  </li>
457
  <li>
458
  <label for="mc_link_label"><?php _e('Event URL link text','my-calendar'); ?></label>
459
  <input type="text" name="mc_link_label" id="mc_link_label" size="30" value="<?php echo stripslashes(esc_attr($mc_link_label)); ?>" />
460
- <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>
461
  </li>
462
  <li>
463
- <label for="mc_event_title_template"><?php _e('Title tag template (event details pages)','my-calendar'); ?></label>
464
- <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)); ?>" />
465
- <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>
 
466
  </li>
467
  </ul>
468
  </fieldset>
@@ -480,23 +469,23 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
480
  <div class="inside">
481
  <form method="post" action="<?php echo admin_url("admin.php?page=my-calendar-config"); ?>">
482
  <div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
483
- <p><input type="submit" name="save" class="button-primary" value="<?php _e('Save Output Settings','my-calendar'); ?>" /></p>
484
  <fieldset>
485
  <legend><?php _e('Calendar Options: Customize the Output of your Calendar','my-calendar'); ?></legend>
486
  <fieldset>
487
  <legend><?php _e('Calendar Link Targets','my-calendar'); ?></legend>
488
  <ul>
489
  <li>
490
- <label for="mc_uri"><?php _e('Target <abbr title="Uniform resource locator">URL</abbr> for event details links:','my-calendar'); ?></label>
491
- <input type="text" name="mc_uri" id="mc_uri" size="60" value="<?php echo esc_url($mc_uri); ?>" /><br /><small><?php _e('Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode.','my-calendar'); ?> <?php mc_guess_calendar(); ?></small>
 
492
  </li>
493
  <li>
494
- <label for="mc_mini_uri"><?php _e('Target <abbr title="Uniform resource locator">URL</abbr> for mini calendar in-page anchors:','my-calendar'); ?></label>
495
- <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>
496
  </li>
497
  <li><strong><?php _e('Modify date and event link behaviors:','my-calendar'); ?></strong></li>
498
  <li>
499
- <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>
500
  </li>
501
  <li>
502
  <label for="mc_open_day_uri"><?php _e('Mini calendar widget date links to:','my-calendar'); ?></label> <select id="mc_open_day_uri" name="mc_open_day_uri"<?php if ( !$mc_uri && !$mc_mini_uri ) { echo ' disabled="disabled"'; } ?>>
@@ -505,18 +494,9 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
505
  <option value='listanchor'<?php echo jd_option_selected(get_option('mc_open_day_uri'),'listanchor','option'); ?>><?php _e('in-page anchor on main calendar page (list)','my-calendar'); ?></option>
506
  <option value='calendaranchor'<?php echo jd_option_selected(get_option('mc_open_day_uri'),'calendaranchor','option'); ?>><?php _e('in-page anchor on main calendar page (grid)','my-calendar'); ?></option>
507
  </select>
508
- <small><?php _e('Replaces pop-up in mini calendar','my-calendar'); ?></small>
509
- </li>
510
- <li><strong><?php _e('Show links to alternate formats:','my-calendar'); ?></strong></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>
514
- <li>
515
- <input type="checkbox" id="mc_show_ical" name="mc_show_ical" <?php mc_is_checked('mc_show_ical','true'); ?> /> <label for="mc_show_ical"><?php _e('Show link to iCal format download.','my-calendar'); ?></label> <small><?php _e('iCal outputs events occurring in the current calendar month.','my-calendar'); ?></small> <input type="checkbox" id="mc_ical_utc" name="mc_ical_utc" <?php mc_is_checked('mc_ical_utc','true'); ?> /> <label for="mc_ical_utc"><?php _e('iCal times are UTC','my-calendar'); ?></label>
516
- </li>
517
- <li>
518
- <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>
519
  </li>
 
520
  </ul>
521
  <?php // End General Options // ?>
522
  </fieldset>
@@ -527,13 +507,11 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
527
  <ul>
528
  <li>
529
  <label for="mc_topnav"><?php _e('Show above the calendar:','my-calendar'); ?></label><br />
530
- <input type="text" id="mc_topnav" name="mc_topnav" size="60" value="<?php echo esc_attr($mc_topnav); ?>" /><br />
531
- <small><?php _e('Default: <code>nav,toggle,jump,print,timeframe</code>','my-calendar'); ?></small>
532
  </li>
533
  <li>
534
  <label for="mc_bottomnav"><?php _e('Show below the calendar:','my-calendar'); ?></label><br />
535
- <input type="text" id="mc_bottomnav" name="mc_bottomnav" size="60" value="<?php echo esc_attr($mc_bottomnav); ?>" /><br />
536
- <small><?php _e('Default: <code>key,feeds</code>','my-calendar'); ?></small>
537
  </li>
538
  </ul>
539
  <?php // End Grid Options // ?>
@@ -566,44 +544,44 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
566
  </fieldset>
567
 
568
  <fieldset>
569
- <legend><?php _e('Event Details Options','my-calendar'); ?></legend>
570
  <p><?php _e('The checked items will be shown in your event details view. Does not apply if you are using a custom template','my-calendar'); ?>
571
  <ul class="columns">
572
  <li>
573
- <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>
574
  </li>
575
  <li>
576
- <input type="checkbox" id="mc_show_event_vcal" name="mc_show_event_vcal" <?php mc_is_checked('mc_show_event_vcal','true'); ?> /> <label for="mc_show_event_vcal"><?php _e('Show link to single event iCal download','my-calendar'); ?></label>
577
  </li>
578
  <li>
579
- <input type="checkbox" id="mc_show_gcal" name="mc_show_gcal" <?php mc_is_checked('mc_show_gcal','true'); ?> /> <label for="mc_show_gcal"><?php _e('Show link to submit event to Google Calendar','my-calendar'); ?></label>
580
  </li>
581
  <li>
582
- <input type="checkbox" id="mc_hide_icons" name="mc_hide_icons" <?php mc_is_checked('mc_hide_icons','false'); ?> /> <label for="mc_hide_icons"><?php _e('Show category icons','my-calendar'); ?></label>
583
  </li>
584
  <li>
585
- <input type="checkbox" id="mc_show_map" name="mc_show_map" <?php mc_is_checked('mc_show_map','true'); ?> /> <label for="mc_show_map"><?php _e('Show Link to Google Map','my-calendar'); ?></label>
586
  </li>
587
  <li>
588
- <input type="checkbox" id="mc_show_address" name="mc_show_address" <?php mc_is_checked('mc_show_address','true'); ?> /> <label for="mc_show_address"><?php _e('Show Event Address','my-calendar'); ?></label>
589
  </li>
590
  <li>
591
- <input type="checkbox" id="mc_short" name="mc_short" <?php mc_is_checked('mc_short','true'); ?> /> <label for="mc_short"><?php _e('Show short description','my-calendar'); ?></label>
592
  </li>
593
  <li>
594
- <input type="checkbox" id="mc_desc" name="mc_desc" <?php mc_is_checked('mc_desc','true'); ?> /> <label for="mc_desc"><?php _e('Show full description','my-calendar'); ?></label>
595
  </li>
596
  <li>
597
  <input type="checkbox" id="mc_process_shortcodes" name="mc_process_shortcodes" <?php mc_is_checked('mc_process_shortcodes','true'); ?> /> <label for="mc_process_shortcodes"><?php _e('Process WordPress shortcodes in descriptions','my-calendar'); ?></label>
598
  </li>
599
  <li>
600
- <input type="checkbox" id="mc_details" name="mc_details" <?php mc_is_checked('mc_details','true'); ?> /> <label for="mc_details"><?php _e('Show link to single-event details (requires <a href=\'#mc_uri\'>URL</a>)','my-calendar'); ?></label>
601
  </li>
602
  <li>
603
- <input type="checkbox" id="mc_event_link" name="mc_event_link" <?php mc_is_checked('mc_event_link','true'); ?> /> <label for="mc_event_link"><?php _e('Show external link','my-calendar'); ?></label>
604
  </li>
605
  <li>
606
- <input type="checkbox" id="mc_event_registration" name="mc_event_registration" <?php mc_is_checked('mc_event_registration','true'); ?> /> <label for="mc_event_registration"><?php _e('Show availability status','my-calendar'); ?></label>
607
  </li>
608
  <li>
609
  <input type="checkbox" id="mc_event_link_expires" name="mc_event_link_expires" <?php mc_is_checked('mc_event_link_expires','true'); ?> /> <label for="mc_event_link_expires"><?php _e('Event links expire after event passes.','my-calendar'); ?></label>
@@ -611,15 +589,15 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
611
  </ul>
612
  </fieldset>
613
  <fieldset>
614
- <legend><?php _e('Event Display Options','my-calendar'); ?></legend>
615
  <ul class='columns'>
616
  <li>
617
- <input type="radio" id="mc_apply_color_none" name="mc_apply_color" value="default" <?php if ( get_option('mc_apply_color' ) == '' ) { echo 'checked="checked"'; } else { mc_is_checked('mc_apply_color','default'); } ?> /> <label for="mc_apply_color_none"><?php _e('No category colors with event titles.','my-calendar'); ?></label><br />
618
- <input type="radio" id="mc_apply_color_to_titles" name="mc_apply_color" value="font" <?php mc_is_checked('mc_apply_color','font'); ?> /> <label for="mc_apply_color_to_titles"><?php _e('Event titles are category colors.','my-calendar'); ?></label><br />
619
- <input type="radio" id="mc_apply_bgcolor_to_titles" name="mc_apply_color" value="background" <?php mc_is_checked('mc_apply_color','background'); ?> /> <label for="mc_apply_bgcolor_to_titles"><?php _e('Event titles have category color as background.','my-calendar'); ?></label>
620
  </li>
621
  <li>
622
- <input type="checkbox" id="mc_inverse_color" name="mc_inverse_color" <?php mc_is_checked('mc_inverse_color','true'); ?> /> <label for="mc_inverse_color"><?php _e('Ensure best contrast for category color usage.','my-calendar'); ?></label>
623
  </li>
624
  </ul>
625
  <?php // End Event Options // ?>
@@ -631,8 +609,8 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
631
  <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>
632
  </li>
633
  <li>
634
- <label for="mc_skip_holidays_category"><?php _e('Holiday Category','my-calendar'); ?></label>
635
- <select id="mc_skip_holidays_category" name="mc_skip_holidays_category">
636
  <option value=''> -- <?php _e('None','my-calendar'); ?> -- </option>
637
  <?php
638
  // Grab all the categories and list them
@@ -655,9 +633,7 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
655
  <?php // End Scheduling Options // ?>
656
  </fieldset>
657
  </fieldset>
658
- <p>
659
- <input type="submit" name="save" class="button-secondary" value="<?php _e('Save Output Settings','my-calendar'); ?>" />
660
- </p>
661
  </form>
662
  </div>
663
  </div>
@@ -691,7 +667,7 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
691
  </fieldset>
692
  <p>
693
  <input type="submit" name="save" class="button-primary" value="<?php _e('Save Date/Time Settings','my-calendar'); ?>" />
694
- </p>
695
  </form>
696
  </div>
697
  </div>
@@ -729,7 +705,7 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
729
  </fieldset>
730
  <p>
731
  <input type="submit" name="save" class="button-primary" value="<?php _e('Save Input Settings','my-calendar'); ?>" />
732
- </p>
733
  </form>
734
  </div>
735
  </div>
@@ -740,7 +716,6 @@ if ( get_option( 'ko_calendar_imported' ) != 'true' ) {
740
  <div class="postbox" id="my-calendar-multisite">
741
  <h3><?php _e('Multisite Settings (Network Administrators only)','my-calendar'); ?></h3>
742
  <div class="inside">
743
- <p><strong><?php _e('Multisite support is a beta feature - use with caution.','my-calendar'); ?></strong></p>
744
  <form method="post" action="<?php echo admin_url("admin.php?page=my-calendar-config"); ?>">
745
  <div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
746
  <div><input type='hidden' name='mc_network' value='true' /></div>
@@ -912,7 +887,7 @@ $timezones .= stripslashes("$key,$value")."\n";
912
  <input type="checkbox" id="loc_enabled" name="mc_user_settings[my_calendar_location_default][enabled]" <?php mc_is_checked('mc_user_settings','on','my_calendar_location_default'); ?> /> <label for="loc_enabled"><?php _e('Enable Location','my-calendar'); ?></label>
913
  </p>
914
  <p>
915
- <input type="checkbox" id="loc_control" name="mc_location_control" <?php mc_is_checked('mc_location_control','on' ); ?> /> <label for="loc_control"><?php _e('Use this location list as input control','my-calendar'); ?></label> <small><?php _e('The normal text entry for this location type will be replaced by a drop down containing these choices.','my-calendar'); ?></small>
916
  </p>
917
  <p>
918
  <label for="loc_label"><?php _e('Select Location Label','my-calendar'); ?></label> <input type="text" name="mc_user_settings[my_calendar_location_default][label]" id="loc_label" value="<?php echo stripslashes( esc_attr( $mc_user_settings['my_calendar_location_default']['label'] ) ); ?>" size="40" />
@@ -941,7 +916,7 @@ $locations .= stripslashes("$key,$value")."\n";
941
  </fieldset>
942
  </fieldset>
943
  <p>
944
- <input type="submit" name="save" class="button-primary" value="<?php _e('Save User Settings','my-calendar'); ?>" /> <input type="submit" name="save" class="button-secondary" value="<?php _e('Save User Settings','my-calendar'); ?>" />
945
  </p>
946
  </form>
947
  <?php } else { ?>
172
  update_option('mc_show_weekends',( !empty($_POST['mc_show_weekends']) && $_POST['mc_show_weekends']=='on')?'true':'false');
173
  update_option('mc_convert',( !empty($_POST['mc_convert']) && $_POST['mc_convert']=='on')?'true':'false');
174
  update_option('mc_no_fifth_week',( !empty($_POST['mc_no_fifth_week']) && $_POST['mc_no_fifth_week']=='on')?'true':'false');
175
+ $mc_ical_utc = ( !empty($_POST['mc_ical_utc']) && $_POST['mc_ical_utc']=='on')?'true':'false';
 
 
 
 
 
 
 
 
 
176
  update_option('mc_ical_utc',$mc_ical_utc);
 
177
  echo "<div class=\"updated\"><p><strong>".__('Output Settings saved','my-calendar')."</strong></p></div>";
178
  }
179
  // input
296
  $mc_details_label = $templates['label'];
297
  $mc_link_label = $templates['link'];
298
  $mc_event_title_template = get_option('mc_event_title_template');
 
299
  $mc_mini_uri = get_option('mc_mini_uri');
300
  ?>
301
 
399
  <input type="radio" name="mc_current_table" id="mc1" value="1"<?php echo jd_option_selected(get_option('mc_current_table'),1); ?> /> <label for="mc1"><?php _e('Currently editing the network calendar','my-calendar'); ?></label>
400
  </li>
401
  <?php } else { ?>
402
+ <?php if ( get_option('mc_remote') != 'true' && current_user_can('manage_network') ) { ?>
403
  <li><?php _e('You are currently working in the primary site for this network; your local calendar is also the global table.','my-calendar'); ?></li>
404
  <?php } ?>
405
  <?php } ?>
427
  <fieldset>
428
  <legend><?php _e('Calendar Options: Customizable Text Fields','my-calendar'); ?></legend>
429
  <ul>
430
+ <li><label for="mc_notime_text"><?php _e('Label for all-day events','my-calendar'); ?></label> <input type="text" id="mc_notime_text" name="mc_notime_text" size="30" value="<?php if ( get_option('mc_notime_text') == "") { _e('N/A','my-calendar'); } else { echo esc_attr( stripslashes( get_option('mc_notime_text') ) ); } ?>" /> </li>
431
+ <li><label for="mc_previous_events"><?php _e('Previous events link','my-calendar'); ?></label> <input type="text" id="mc_previous_events" name="mc_previous_events" size="30" value="<?php if ( get_option('mc_previous_events') == "") { _e('Previous Events','my-calendar'); } else { echo esc_attr( stripslashes( get_option('mc_previous_events') ) ); } ?>" /> <?php _e('Use <code>{date}</code> to display the appropriate date in navigation.','my-calendar'); ?> </li>
432
+ <li><label for="mc_next_events"><?php _e('Next events link','my-calendar'); ?></label> <input type="text" id="mc_next_events" name="mc_next_events" size="30" value="<?php if ( get_option('mc_next_events') == "") { _e('Next Events','my-calendar'); } else { echo esc_attr( stripslashes( get_option('mc_next_events') ) ); } ?>" /> <?php _e('Use <code>{date}</code> to display the appropriate date in navigation.','my-calendar'); ?> </li>
433
+ <li><label for="mc_event_open"><?php _e('If events are open','my-calendar'); ?></label> <input type="text" id="mc_event_open" name="mc_event_open" size="30" value="<?php if ( get_option('mc_event_open') == "") { _e('Registration is open','my-calendar'); } else { echo esc_attr( stripslashes( get_option('mc_event_open') ) ); } ?>" /> </li>
434
+ <li><label for="mc_event_closed"><?php _e('If events are closed','my-calendar'); ?></label> <input type="text" id="mc_event_closed" name="mc_event_closed" size="30" value="<?php if ( get_option('mc_event_closed') == "") { _e('Registration is closed','my-calendar'); } else { echo esc_attr( stripslashes( get_option('mc_event_closed') ) ); } ?>" /> </li>
435
+ <li><label for="mc_week_caption"><?php _e('Week view caption:','my-calendar'); ?></label> <input type="text" id="mc_week_caption" name="mc_week_caption" size="30" value="<?php echo esc_attr( stripslashes( get_option('mc_week_caption') ) ); ?>" /> <?php _e('Available tag: <code>{date format=""}</code>','my-calendar'); ?></li>
436
+ <li><label for="my_calendar_caption"><?php _e('Extended caption:','my-calendar'); ?></label> <input type="text" id="my_calendar_caption" name="my_calendar_caption" size="30" value="<?php echo esc_attr( stripslashes( get_option('mc_caption') ) ); ?>" /> <?php _e('Caption shows month/year in list/grid formats. Follows after month/year.','my-calendar'); ?></li>
437
  <li>
438
  <label for="mc_title_template"><?php _e('Event title template','my-calendar'); ?></label>
439
  <input type="text" name="mc_title_template" id="mc_title_template" size="30" value="<?php echo stripslashes(esc_attr($mc_title_template)); ?>" /> <?php _e('All template tags are available.','my-calendar'); ?></small>
440
  </li>
441
  <li>
442
  <label for="mc_details_label"><?php _e('Event details link text','my-calendar'); ?></label>
443
+ <input type="text" name="mc_details_label" id="mc_details_label" size="30" value="<?php echo stripslashes(esc_attr($mc_details_label)); ?>" /><?php _e('Tags: <code>{title}</code>, <code>{location}</code>, <code>{color}</code>, <code>{icon}</code>, <code>{date}</code>, <code>{time}</code>.','my-calendar'); ?>
 
444
  </li>
445
  <li>
446
  <label for="mc_link_label"><?php _e('Event URL link text','my-calendar'); ?></label>
447
  <input type="text" name="mc_link_label" id="mc_link_label" size="30" value="<?php echo stripslashes(esc_attr($mc_link_label)); ?>" />
448
+ <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'); ?>
449
  </li>
450
  <li>
451
+ <?php $mc_ett_current = ( $mc_event_title_template ) ? $mc_event_title_template : "{title} &raquo; {date}"; ?>
452
+ <label for="mc_event_title_template"><?php _e('Title element template','my-calendar'); ?></label>
453
+ <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)); ?>" />
454
+ <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'); ?> <?php printf( __('Current: %s', 'my-calendar' ), "<code>$mc_ett_current</code>" ); ?>
455
  </li>
456
  </ul>
457
  </fieldset>
469
  <div class="inside">
470
  <form method="post" action="<?php echo admin_url("admin.php?page=my-calendar-config"); ?>">
471
  <div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
 
472
  <fieldset>
473
  <legend><?php _e('Calendar Options: Customize the Output of your Calendar','my-calendar'); ?></legend>
474
  <fieldset>
475
  <legend><?php _e('Calendar Link Targets','my-calendar'); ?></legend>
476
  <ul>
477
  <li>
478
+ <?php $guess = mc_guess_calendar(); $mc_uri = get_option( 'mc_uri' ); ?>
479
+ <label for="mc_uri"><?php _e('Where is your main calendar page?','my-calendar'); ?></label>
480
+ <input type="text" name="mc_uri" id="mc_uri" size="60" value="<?php echo esc_url($mc_uri); ?>" /><br /><small><?php _e('Can be any Page or Post which includes the <code>[my_calendar]</code> shortcode.','my-calendar'); ?> <?php echo $guess; ?></small>
481
  </li>
482
  <li>
483
+ <label for="mc_mini_uri"><?php _e('Target <abbr title="Uniform resource locator">URL</abbr> for mini calendar date links:','my-calendar'); ?></label>
484
+ <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 which includes the <code>[my_calendar]</code> shortcode.','my-calendar'); ?></small>
485
  </li>
486
  <li><strong><?php _e('Modify date and event link behaviors:','my-calendar'); ?></strong></li>
487
  <li>
488
+ <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> (<?php _e('Replaces pop-up in grid view.','my-calendar'); ?>)
489
  </li>
490
  <li>
491
  <label for="mc_open_day_uri"><?php _e('Mini calendar widget date links to:','my-calendar'); ?></label> <select id="mc_open_day_uri" name="mc_open_day_uri"<?php if ( !$mc_uri && !$mc_mini_uri ) { echo ' disabled="disabled"'; } ?>>
494
  <option value='listanchor'<?php echo jd_option_selected(get_option('mc_open_day_uri'),'listanchor','option'); ?>><?php _e('in-page anchor on main calendar page (list)','my-calendar'); ?></option>
495
  <option value='calendaranchor'<?php echo jd_option_selected(get_option('mc_open_day_uri'),'calendaranchor','option'); ?>><?php _e('in-page anchor on main calendar page (grid)','my-calendar'); ?></option>
496
  </select>
497
+ (<?php _e('Replaces pop-up in mini calendar','my-calendar'); ?>)
 
 
 
 
 
 
 
 
 
 
498
  </li>
499
+ <li><input type="checkbox" id="mc_ical_utc" name="mc_ical_utc" <?php mc_is_checked('mc_ical_utc','true'); ?> /> <label for="mc_ical_utc"><?php _e('iCal times are UTC','my-calendar'); ?></label>
500
  </ul>
501
  <?php // End General Options // ?>
502
  </fieldset>
507
  <ul>
508
  <li>
509
  <label for="mc_topnav"><?php _e('Show above the calendar:','my-calendar'); ?></label><br />
510
+ <input type="text" id="mc_topnav" name="mc_topnav" size="60" value="<?php echo esc_attr($mc_topnav); ?>" /> <?php _e('Default: <code>nav,toggle,jump,print,timeframe</code>','my-calendar'); ?>
 
511
  </li>
512
  <li>
513
  <label for="mc_bottomnav"><?php _e('Show below the calendar:','my-calendar'); ?></label><br />
514
+ <input type="text" id="mc_bottomnav" name="mc_bottomnav" size="60" value="<?php echo esc_attr($mc_bottomnav); ?>" /> <?php _e('Default: <code>key,feeds</code>','my-calendar'); ?>
 
515
  </li>
516
  </ul>
517
  <?php // End Grid Options // ?>
544
  </fieldset>
545
 
546
  <fieldset>
547
+ <legend><?php _e('Event Details Pop-up','my-calendar'); ?></legend>
548
  <p><?php _e('The checked items will be shown in your event details view. Does not apply if you are using a custom template','my-calendar'); ?>
549
  <ul class="columns">
550
  <li>
551
+ <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('Author\'s name','my-calendar'); ?></label>
552
  </li>
553
  <li>
554
+ <input type="checkbox" id="mc_show_event_vcal" name="mc_show_event_vcal" <?php mc_is_checked('mc_show_event_vcal','true'); ?> /> <label for="mc_show_event_vcal"><?php _e('Link to single event iCal download','my-calendar'); ?></label>
555
  </li>
556
  <li>
557
+ <input type="checkbox" id="mc_show_gcal" name="mc_show_gcal" <?php mc_is_checked('mc_show_gcal','true'); ?> /> <label for="mc_show_gcal"><?php _e('Link to submit event to Google Calendar','my-calendar'); ?></label>
558
  </li>
559
  <li>
560
+ <input type="checkbox" id="mc_hide_icons" name="mc_hide_icons" <?php mc_is_checked('mc_hide_icons','false'); ?> /> <label for="mc_hide_icons"><?php _e('Category icons','my-calendar'); ?></label>
561
  </li>
562
  <li>
563
+ <input type="checkbox" id="mc_show_map" name="mc_show_map" <?php mc_is_checked('mc_show_map','true'); ?> /> <label for="mc_show_map"><?php _e('Link to Google Map','my-calendar'); ?></label>
564
  </li>
565
  <li>
566
+ <input type="checkbox" id="mc_show_address" name="mc_show_address" <?php mc_is_checked('mc_show_address','true'); ?> /> <label for="mc_show_address"><?php _e('Event Address','my-calendar'); ?></label>
567
  </li>
568
  <li>
569
+ <input type="checkbox" id="mc_short" name="mc_short" <?php mc_is_checked('mc_short','true'); ?> /> <label for="mc_short"><?php _e('Short description','my-calendar'); ?></label>
570
  </li>
571
  <li>
572
+ <input type="checkbox" id="mc_desc" name="mc_desc" <?php mc_is_checked('mc_desc','true'); ?> /> <label for="mc_desc"><?php _e('Full description','my-calendar'); ?></label>
573
  </li>
574
  <li>
575
  <input type="checkbox" id="mc_process_shortcodes" name="mc_process_shortcodes" <?php mc_is_checked('mc_process_shortcodes','true'); ?> /> <label for="mc_process_shortcodes"><?php _e('Process WordPress shortcodes in descriptions','my-calendar'); ?></label>
576
  </li>
577
  <li>
578
+ <input type="checkbox" id="mc_details" name="mc_details" <?php mc_is_checked('mc_details','true'); ?> /> <label for="mc_details"><?php _e('Link to event details (requires <a href=\'#mc_uri\'>URL</a>)','my-calendar'); ?></label>
579
  </li>
580
  <li>
581
+ <input type="checkbox" id="mc_event_link" name="mc_event_link" <?php mc_is_checked('mc_event_link','true'); ?> /> <label for="mc_event_link"><?php _e('External link','my-calendar'); ?></label>
582
  </li>
583
  <li>
584
+ <input type="checkbox" id="mc_event_registration" name="mc_event_registration" <?php mc_is_checked('mc_event_registration','true'); ?> /> <label for="mc_event_registration"><?php _e('Availability status','my-calendar'); ?></label>
585
  </li>
586
  <li>
587
  <input type="checkbox" id="mc_event_link_expires" name="mc_event_link_expires" <?php mc_is_checked('mc_event_link_expires','true'); ?> /> <label for="mc_event_link_expires"><?php _e('Event links expire after event passes.','my-calendar'); ?></label>
589
  </ul>
590
  </fieldset>
591
  <fieldset>
592
+ <legend><?php _e('Event Category Display','my-calendar'); ?></legend>
593
  <ul class='columns'>
594
  <li>
595
+ <input type="radio" id="mc_acn" name="mc_apply_color" value="default" <?php if ( get_option('mc_apply_color' ) == '' ) { echo 'checked="checked"'; } else { mc_is_checked('mc_apply_color','default'); } ?> /> <label for="mc_acn"><?php _e('No category colors with titles.','my-calendar'); ?></label><br />
596
+ <input type="radio" id="mc_act" name="mc_apply_color" value="font" <?php mc_is_checked('mc_apply_color','font'); ?> /> <label for="mc_act"><?php _e('Titles are in category colors.','my-calendar'); ?></label><br />
597
+ <input type="radio" id="mc_abt" name="mc_apply_color" value="background" <?php mc_is_checked('mc_apply_color','background'); ?> /> <label for="mc_abt"><?php _e('Titles have category color as background.','my-calendar'); ?></label>
598
  </li>
599
  <li>
600
+ <input type="checkbox" id="mc_inverse_color" name="mc_inverse_color" <?php mc_is_checked('mc_inverse_color','true'); ?> /> <label for="mc_inverse_color"><?php _e('Optimize contrast for category colors.','my-calendar'); ?></label>
601
  </li>
602
  </ul>
603
  <?php // End Event Options // ?>
609
  <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>
610
  </li>
611
  <li>
612
+ <label for="mc_shc"><?php _e('Holiday Category','my-calendar'); ?></label>
613
+ <select id="mc_shc" name="mc_skip_holidays_category">
614
  <option value=''> -- <?php _e('None','my-calendar'); ?> -- </option>
615
  <?php
616
  // Grab all the categories and list them
633
  <?php // End Scheduling Options // ?>
634
  </fieldset>
635
  </fieldset>
636
+ <p><input type="submit" name="save" class="button-primary" value="<?php _e('Save Output Settings','my-calendar'); ?>" /></p>
 
 
637
  </form>
638
  </div>
639
  </div>
667
  </fieldset>
668
  <p>
669
  <input type="submit" name="save" class="button-primary" value="<?php _e('Save Date/Time Settings','my-calendar'); ?>" />
670
+ </p>
671
  </form>
672
  </div>
673
  </div>
705
  </fieldset>
706
  <p>
707
  <input type="submit" name="save" class="button-primary" value="<?php _e('Save Input Settings','my-calendar'); ?>" />
708
+ </p>
709
  </form>
710
  </div>
711
  </div>
716
  <div class="postbox" id="my-calendar-multisite">
717
  <h3><?php _e('Multisite Settings (Network Administrators only)','my-calendar'); ?></h3>
718
  <div class="inside">
 
719
  <form method="post" action="<?php echo admin_url("admin.php?page=my-calendar-config"); ?>">
720
  <div><input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" /></div>
721
  <div><input type='hidden' name='mc_network' value='true' /></div>
887
  <input type="checkbox" id="loc_enabled" name="mc_user_settings[my_calendar_location_default][enabled]" <?php mc_is_checked('mc_user_settings','on','my_calendar_location_default'); ?> /> <label for="loc_enabled"><?php _e('Enable Location','my-calendar'); ?></label>
888
  </p>
889
  <p>
890
+ <input type="checkbox" id="loc_control" name="mc_location_control" <?php mc_is_checked('mc_location_control','on' ); ?> /> <label for="loc_control"><?php _e('Use this location list as input control','my-calendar'); ?></label> (<?php _e('The normal text entry for this location type will be replaced by a drop down containing these choices.','my-calendar'); ?>)
891
  </p>
892
  <p>
893
  <label for="loc_label"><?php _e('Select Location Label','my-calendar'); ?></label> <input type="text" name="mc_user_settings[my_calendar_location_default][label]" id="loc_label" value="<?php echo stripslashes( esc_attr( $mc_user_settings['my_calendar_location_default']['label'] ) ); ?>" size="40" />
916
  </fieldset>
917
  </fieldset>
918
  <p>
919
+ <input type="submit" name="save" class="button-primary" value="<?php _e('Save User Settings','my-calendar'); ?>" />
920
  </p>
921
  </form>
922
  <?php } else { ?>
my-calendar-shortcodes.php CHANGED
@@ -25,6 +25,13 @@ function my_calendar_insert($atts,$content=null) {
25
  $format = mysql_real_escape_string($_GET['format']);
26
  }
27
  }
 
 
 
 
 
 
 
28
  return my_calendar($name, $format, $category, $showkey, $shownav, $showjump, $toggle, $time, $ltype, $lvalue, $id, $template, $content, $author, $host, $above, $below );
29
  }
30
 
@@ -42,7 +49,14 @@ function my_calendar_insert_upcoming($atts) {
42
  'author' => 'default',
43
  'host' => 'default'
44
  ), $atts, 'my_calendar_upcoming' ) );
45
- return my_calendar_upcoming_events($before, $after, $type, $category, $template, $fallback, $order, $skip, $show_today, $author );
 
 
 
 
 
 
 
46
  }
47
 
48
  function my_calendar_insert_today($atts) {
@@ -53,7 +67,14 @@ function my_calendar_insert_today($atts) {
53
  'template' => 'default',
54
  'fallback' => ''
55
  ), $atts, 'my_calendar_today' ));
56
- return my_calendar_todays_events($category, $template, $fallback, $author);
 
 
 
 
 
 
 
57
  }
58
 
59
  function my_calendar_locations($atts) {
25
  $format = mysql_real_escape_string($_GET['format']);
26
  }
27
  }
28
+ global $user_ID;
29
+ if ( $author == 'current' ) {
30
+ $author = apply_filters( 'mc_display_author', $user_ID, 'main' );
31
+ }
32
+ if ( $host == 'current' ) {
33
+ $host = apply_filters( 'mc_display_host', $user_ID, 'main' );
34
+ }
35
  return my_calendar($name, $format, $category, $showkey, $shownav, $showjump, $toggle, $time, $ltype, $lvalue, $id, $template, $content, $author, $host, $above, $below );
36
  }
37
 
49
  'author' => 'default',
50
  'host' => 'default'
51
  ), $atts, 'my_calendar_upcoming' ) );
52
+ global $user_ID;
53
+ if ( $author == 'current' ) {
54
+ $author = apply_filters( 'mc_display_author', $user_ID, 'upcoming' );
55
+ }
56
+ if ( $host == 'current' ) {
57
+ $host = apply_filters( 'mc_display_host', $user_ID, 'upcoming' );
58
+ }
59
+ return my_calendar_upcoming_events($before, $after, $type, $category, $template, $fallback, $order, $skip, $show_today, $author, $host );
60
  }
61
 
62
  function my_calendar_insert_today($atts) {
67
  'template' => 'default',
68
  'fallback' => ''
69
  ), $atts, 'my_calendar_today' ));
70
+ global $user_ID;
71
+ if ( $author == 'current' ) {
72
+ $author = apply_filters( 'mc_display_author', $user_ID, 'today' );
73
+ }
74
+ if ( $host == 'current' ) {
75
+ $host = apply_filters( 'mc_display_host', $user_ID, 'today' );
76
+ }
77
+ return my_calendar_todays_events($category, $template, $fallback, $author, $host);
78
  }
79
 
80
  function my_calendar_locations($atts) {
my-calendar-styles.php CHANGED
@@ -3,11 +3,11 @@
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
5
  function mc_get_style_path($filename,$type='path') {
6
- $wp_plugin_url = plugin_dir_url( __FILE__ );
7
- $wp_plugin_dir = plugin_dir_path( __FILE__ );
8
  if ( strpos( $filename,'mc_custom_' ) === 0 ) {
9
  $filename = str_replace('mc_custom_','',$filename);
10
- $stylefile = ($type=='path')?str_replace('/my-calendar/','',$wp_plugin_dir).'/my-calendar-custom/styles/'.$filename:str_replace('/my-calendar/','',$wp_plugin_url).'/my-calendar-custom/styles/'.$filename;
11
  } else {
12
  $stylefile = ($type=='path')?dirname(__FILE__).'/styles/' . $filename:plugins_url('styles',__FILE__).'/'.$filename;
13
  }
@@ -32,7 +32,7 @@ function mc_is_custom_style( $filename ) {
32
 
33
  function mc_default_style( $filename, $return='content' ) {
34
  $mc_css_file = get_option('mc_css_file');
35
- $mc_current_file = dirname(__FILE__).'/templates/' . $mc_css_file;
36
  if ( file_exists($mc_current_file) ) {
37
  $f = "";
38
  $f = fopen($mc_current_file,'r');
@@ -45,7 +45,7 @@ function mc_default_style( $filename, $return='content' ) {
45
  case 'both':return array($mc_current_file,$mc_current_style);break;
46
  }
47
  } else {
48
- return;
49
  }
50
  }
51
 
@@ -68,7 +68,7 @@ function mc_write_styles($stylefile, $my_calendar_style) {
68
  function edit_my_calendar_styles() {
69
  $message = '';
70
  global $wpdb;
71
- $wp_plugin_dir = plugin_dir_path( __FILE__ );
72
  $mcdb = $wpdb;
73
  $wrote_styles = '';
74
  // We can't use this page unless My Calendar is installed/upgraded
@@ -155,7 +155,7 @@ my_calendar_check_db();
155
  <label for="mc_css_file"><?php _e('Select My Calendar Theme','my-calendar'); ?></label>
156
  <select name="mc_css_file" id="mc_css_file">
157
  <?php
158
- $custom_directory = str_replace('/my-calendar/','',$wp_plugin_dir) . '/my-calendar-custom/styles/';
159
  $directory = dirname(__FILE__).'/styles/';
160
 
161
  $files = @my_csslist($custom_directory);
@@ -222,14 +222,15 @@ my_calendar_check_db();
222
  echo '<div class="wrap jd-my-calendar" id="diff">';
223
  echo wp_text_diff( $left_string,$right_string, array( 'title' => __('Comparing Your Style with latest installed version of My Calendar','my-calendar'), 'title_right' => __('Latest (from plugin)','my-calendar'), 'title_left' => __('Current (in use)','my-calendar') ) );
224
  echo '</div>';
225
- } else if ( trim($left_string)!=trim($right_string) ) {
226
  echo '<div class="wrap jd-my-calendar">';
227
  echo '<div class="updated"><p>'.__('There have been updates to the stylesheet.','my-calendar').' <a href="'.admin_url("admin.php?page=my-calendar-styles&amp;diff#diff").'">'.__('Compare Your Stylesheet with latest installed version of My Calendar.','my-calendar').'</a></p></div>';
228
  echo '</div>';
229
  } else {
230
- echo '<div class="wrap jd-my-calendar">';
231
- echo '<p>'.__('Your stylesheet matches that included with My Calendar.','my-calendar').'</p>';
232
- echo '</div>';
 
233
  }
234
  }
235
 
3
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
4
 
5
  function mc_get_style_path($filename,$type='path') {
6
+ $url = plugin_dir_url( __FILE__ );
7
+ $dir = plugin_dir_path( __FILE__ );
8
  if ( strpos( $filename,'mc_custom_' ) === 0 ) {
9
  $filename = str_replace('mc_custom_','',$filename);
10
+ $stylefile = ($type=='path')?str_replace('/my-calendar/','',$dir).'/my-calendar-custom/styles/'.$filename:str_replace('/my-calendar/','',$url).'/my-calendar-custom/styles/'.$filename;
11
  } else {
12
  $stylefile = ($type=='path')?dirname(__FILE__).'/styles/' . $filename:plugins_url('styles',__FILE__).'/'.$filename;
13
  }
32
 
33
  function mc_default_style( $filename, $return='content' ) {
34
  $mc_css_file = get_option('mc_css_file');
35
+ $mc_current_file = dirname( __FILE__ ).'/templates/' . $mc_css_file;
36
  if ( file_exists($mc_current_file) ) {
37
  $f = "";
38
  $f = fopen($mc_current_file,'r');
45
  case 'both':return array($mc_current_file,$mc_current_style);break;
46
  }
47
  } else {
48
+ return;
49
  }
50
  }
51
 
68
  function edit_my_calendar_styles() {
69
  $message = '';
70
  global $wpdb;
71
+ $dir = plugin_dir_path( __FILE__ );
72
  $mcdb = $wpdb;
73
  $wrote_styles = '';
74
  // We can't use this page unless My Calendar is installed/upgraded
155
  <label for="mc_css_file"><?php _e('Select My Calendar Theme','my-calendar'); ?></label>
156
  <select name="mc_css_file" id="mc_css_file">
157
  <?php
158
+ $custom_directory = str_replace('/my-calendar/','',$dir) . '/my-calendar-custom/styles/';
159
  $directory = dirname(__FILE__).'/styles/';
160
 
161
  $files = @my_csslist($custom_directory);
222
  echo '<div class="wrap jd-my-calendar" id="diff">';
223
  echo wp_text_diff( $left_string,$right_string, array( 'title' => __('Comparing Your Style with latest installed version of My Calendar','my-calendar'), 'title_right' => __('Latest (from plugin)','my-calendar'), 'title_left' => __('Current (in use)','my-calendar') ) );
224
  echo '</div>';
225
+ } else if ( trim( $left_string )!=trim( $right_string ) ) {
226
  echo '<div class="wrap jd-my-calendar">';
227
  echo '<div class="updated"><p>'.__('There have been updates to the stylesheet.','my-calendar').' <a href="'.admin_url("admin.php?page=my-calendar-styles&amp;diff#diff").'">'.__('Compare Your Stylesheet with latest installed version of My Calendar.','my-calendar').'</a></p></div>';
228
  echo '</div>';
229
  } else {
230
+ echo '
231
+ <div class="wrap jd-my-calendar">
232
+ <p>'.__('Your stylesheet matches that included with My Calendar.','my-calendar').'</p>
233
+ </div>';
234
  }
235
  }
236
 
my-calendar-templates.php CHANGED
@@ -2,7 +2,6 @@
2
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
3
 
4
  function jd_draw_template($array,$template,$type='list') {
5
- //$mtime = microtime( true); // DEBUG PERFORMANCE
6
  //1st argument: array of details
7
  //2nd argument: template to print details into
8
  $template = stripcslashes($template);
@@ -12,7 +11,7 @@ function jd_draw_template($array,$template,$type='list') {
12
  } else {
13
  if ( strpos( $template, "{".$key ) !== false ) {
14
  if ($type != 'list') {
15
- if ( $key == 'link' && $value == '') { $value = ( get_option('mc_uri') != '' )?get_option('mc_uri'):home_url(); }
16
  if ( $key != 'guid') { $value = htmlentities($value); }
17
  }
18
  if ( strpos( $template, "{".$key." " ) !== false ) { // only do preg_match if appropriate
@@ -133,7 +132,6 @@ function mc_hcard( $event, $address='true', $map='true', $source='event' ) {
133
 
134
  // Produces the array of event details used for drawing templates
135
  function event_as_array($event,$type='html') {
136
- global $wp_plugin_dir,$wp_plugin_url;
137
  // My Calendar must be updated to run this function
138
  check_my_calendar();
139
  $details = array();
@@ -286,8 +284,8 @@ function event_as_array($event,$type='html') {
286
  } else {
287
  $details_link = '';
288
  }
289
- $details['details_link'] = ( get_option( 'mc_uri' ) != '' )?$details_link:'';
290
- $details['details'] = ( get_option( 'mc_uri' ) != '' )?"<a href='$details_link' class='mc-details'>$details_label</a>":'';
291
  $details['linking'] = ( $event->event_url != '' )?$event->event_url:$details_link;
292
  $details['dateid'] = $dateid; // unique ID for this date of this event
293
  $details['id'] = $id;
@@ -297,14 +295,14 @@ function event_as_array($event,$type='html') {
297
  $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>" );
298
  // RSS guid
299
  $details['region'] = $event->event_region;
300
- $details['guid'] =( get_option( 'mc_uri' ) != '')?"<guid isPermaLink='true'>$details_link</guid>":"<guid isPermalink='false'>$details_link</guid>";
301
  /* ical format */
302
  $details['ical_location'] = $event->event_label .' '. $event->event_street .' '. $event->event_street2 .' '. $event->event_city .' '. $event->event_state .' '. $event->event_postcode;
303
  $ical_description = mc_newline_replace(strip_tags($event->event_desc));
304
  $details['ical_description'] = str_replace( "\r", "=0D=0A=", $event->event_desc );
305
  $details['ical_desc'] = $ical_description;
306
  // get URL, TITLE, LOCATION, DESCRIPTION strings
307
- $url = ( get_option( 'mc_uri' ) != '' )?$details_link:$event->event_url;
308
  $title = stripcslashes($event->event_title);
309
  $location = mc_maplink( $event, 'gcal' );
310
  $description = $ical_description;
@@ -342,9 +340,11 @@ function mc_format_date_span( $dates, $display='simple',$default='' ) {
342
  foreach ($dates as $date ) {
343
  $begin = $date->occur_begin;
344
  $end = $date->occur_end;
 
 
345
  $bformat = "<span class='multidate-date'>".date_i18n( get_option('mc_date_format'),strtotime( $begin ) ).'</span> <span class="multidate-time">'.date_i18n( get_option('mc_time_format'), strtotime( $begin ) )."</span>";
346
  $endtimeformat = ($date->occur_end == '00:00:00')?'':' '.get_option('mc_time_format');
347
- $eformat = ($date->occur_begin != $date->occur_end)?get_option('mc_date_format').$endtimeformat:$endtimeformat;
348
  $span = ($eformat != '')?" <span>&ndash;</span> <span class='multidate-end'>":'';
349
  $endspan = ($eformat != '')?"</span>":'';
350
  $return .= "<li>$bformat".$span.date_i18n( $eformat,strtotime( $end ))."$endspan</li>";
2
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
3
 
4
  function jd_draw_template($array,$template,$type='list') {
 
5
  //1st argument: array of details
6
  //2nd argument: template to print details into
7
  $template = stripcslashes($template);
11
  } else {
12
  if ( strpos( $template, "{".$key ) !== false ) {
13
  if ($type != 'list') {
14
+ if ( $key == 'link' && $value == '') { $value = ( get_option('mc_uri') != '' && !is_numeric( get_option('mc_uri') ) )?get_option('mc_uri'):home_url(); }
15
  if ( $key != 'guid') { $value = htmlentities($value); }
16
  }
17
  if ( strpos( $template, "{".$key." " ) !== false ) { // only do preg_match if appropriate
132
 
133
  // Produces the array of event details used for drawing templates
134
  function event_as_array($event,$type='html') {
 
135
  // My Calendar must be updated to run this function
136
  check_my_calendar();
137
  $details = array();
284
  } else {
285
  $details_link = '';
286
  }
287
+ $details['details_link'] = ( get_option( 'mc_uri' ) != '' && !is_numeric( get_option('mc_uri') ) )?$details_link:'';
288
+ $details['details'] = ( get_option( 'mc_uri' ) != '' && !is_numeric( get_option('mc_uri') ) )?"<a href='$details_link' class='mc-details'>$details_label</a>":'';
289
  $details['linking'] = ( $event->event_url != '' )?$event->event_url:$details_link;
290
  $details['dateid'] = $dateid; // unique ID for this date of this event
291
  $details['id'] = $id;
295
  $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>" );
296
  // RSS guid
297
  $details['region'] = $event->event_region;
298
+ $details['guid'] =( get_option( 'mc_uri' ) != '' && !is_numeric( get_option('mc_uri') ) )?"<guid isPermaLink='true'>$details_link</guid>":"<guid isPermalink='false'>$details_link</guid>";
299
  /* ical format */
300
  $details['ical_location'] = $event->event_label .' '. $event->event_street .' '. $event->event_street2 .' '. $event->event_city .' '. $event->event_state .' '. $event->event_postcode;
301
  $ical_description = mc_newline_replace(strip_tags($event->event_desc));
302
  $details['ical_description'] = str_replace( "\r", "=0D=0A=", $event->event_desc );
303
  $details['ical_desc'] = $ical_description;
304
  // get URL, TITLE, LOCATION, DESCRIPTION strings
305
+ $url = ( get_option( 'mc_uri' ) != '' && !is_numeric( get_option('mc_uri') ) )?$details_link:$event->event_url;
306
  $title = stripcslashes($event->event_title);
307
  $location = mc_maplink( $event, 'gcal' );
308
  $description = $ical_description;
340
  foreach ($dates as $date ) {
341
  $begin = $date->occur_begin;
342
  $end = $date->occur_end;
343
+ $day_begin = date( 'Y-m-d', $date->occur_begin );
344
+ $day_end = date( 'Y-m-d', $date->occur_end );
345
  $bformat = "<span class='multidate-date'>".date_i18n( get_option('mc_date_format'),strtotime( $begin ) ).'</span> <span class="multidate-time">'.date_i18n( get_option('mc_time_format'), strtotime( $begin ) )."</span>";
346
  $endtimeformat = ($date->occur_end == '00:00:00')?'':' '.get_option('mc_time_format');
347
+ $eformat = ( $day_begin != $day_end )?get_option('mc_date_format').$endtimeformat:$endtimeformat;
348
  $span = ($eformat != '')?" <span>&ndash;</span> <span class='multidate-end'>":'';
349
  $endspan = ($eformat != '')?"</span>":'';
350
  $return .= "<li>$bformat".$span.date_i18n( $eformat,strtotime( $end ))."$endspan</li>";
my-calendar-upgrade-db.php CHANGED
@@ -30,7 +30,7 @@ function my_calendar_check_db() {
30
  <?php } else { ?>
31
  <div class='upgrade-db error'>
32
  <p>
33
- <?php _e('The My Calendar database needs to be updated.','my-calendar'); ?> <a href="<?php echo admin_url("admin.php?page=my-calendar-config"); ?>"><?php _e('Update now.','my-calendar'); ?></a>
34
  </p>
35
  </div><?php
36
  }
30
  <?php } else { ?>
31
  <div class='upgrade-db error'>
32
  <p>
33
+ <?php _e('The My Calendar database needs to be updated.','my-calendar'); ?> <a href="<?php echo admin_url("admin.php?page=my-calendar-config"); ?>"><?php _e('Update now','my-calendar'); ?></a>
34
  </p>
35
  </div><?php
36
  }
my-calendar-widgets.php CHANGED
@@ -28,7 +28,8 @@ class my_calendar_today_widget extends WP_Widget {
28
  $the_category = ($instance['my_calendar_today_category']=='')?'default':esc_attr($instance['my_calendar_today_category']);
29
  $author = ( !isset($instance['my_calendar_today_author']) || $instance['my_calendar_today_author']=='')?'all':esc_attr($instance['my_calendar_today_author']);
30
  $host = ( !isset($instance['mc_host']) || $instance['mc_host']=='')?'all':esc_attr($instance['mc_host']);
31
- $widget_link = (!empty($instance['my_calendar_today_linked']) && $instance['my_calendar_today_linked']=='yes')?get_option('mc_uri'):'';
 
32
  $widget_link = ( !empty($instance['mc_link']) )?esc_url($instance['mc_link']):$widget_link;
33
  $widget_title = empty($the_title) ? '' : $the_title;
34
  $offset = (60*60*get_option('gmt_offset'));
@@ -52,7 +53,7 @@ class my_calendar_today_widget extends WP_Widget {
52
  $widget_text = (isset($instance['my_calendar_no_events_text']))?esc_attr($instance['my_calendar_no_events_text']):'';
53
  $widget_category = (isset($instance['my_calendar_today_category']))?esc_attr($instance['my_calendar_today_category']):'';
54
  $widget_linked = (isset($instance['my_calendar_today_linked']))?esc_attr($instance['my_calendar_today_linked']):'';
55
- if ( $widget_linked == 'yes' ) { $default_link = get_option('mc_uri'); } else { $default_link = ''; }
56
  $widget_link = (!empty($instance['mc_link']))?esc_url($instance['mc_link']):$default_link;
57
  $widget_author = (isset($instance['my_calendar_today_author']))?esc_attr($instance['my_calendar_today_author']):'';
58
  $widget_host = (isset($instance['mc_host']))?esc_attr($instance['mc_host']):'';
@@ -153,7 +154,7 @@ class my_calendar_upcoming_widget extends WP_Widget {
153
  $widget_type = (isset($instance['my_calendar_upcoming_type']) )?esc_attr($instance['my_calendar_upcoming_type']):'';
154
  $widget_order = (isset($instance['my_calendar_upcoming_order']) )?esc_attr($instance['my_calendar_upcoming_order']):'';
155
  $widget_linked = (isset($instance['my_calendar_upcoming_linked']) )?esc_attr($instance['my_calendar_upcoming_linked']):'';
156
- if ( $widget_linked == 'yes' ) { $default_link = get_option('mc_uri'); } else { $default_link = ''; }
157
  $widget_link = (!empty($instance['mc_link']))?esc_url($instance['mc_link']):$default_link;
158
  $widget_skip = (isset($instance['my_calendar_upcoming_skip']) )?esc_attr($instance['my_calendar_upcoming_skip']):'';
159
  ?>
@@ -168,7 +169,7 @@ class my_calendar_upcoming_widget extends WP_Widget {
168
  <fieldset>
169
  <legend><?php _e('Widget Options','my-calendar'); ?></legend>
170
  <?php $config_url = admin_url("admin.php?page=my-calendar-config"); ?>
171
- <?php if ( get_option('mc_uri') == '' ) { $disabled = " disabled='disabled'"; _e('Add <a href="'.$config_url.'#mc_uri" target="_blank" title="Opens in new window">calendar URL in settings</a> to use this option.','my-calendar'); } else { $disabled=""; } ?>
172
  <p>
173
  <label for="<?php echo $this->get_field_id('mc_link'); ?>"><?php _e('Widget title links to:','my-calendar'); ?></label><br />
174
  <input class="widefat" type="text" id="<?php echo $this->get_field_id('mc_link'); ?>" name="<?php echo $this->get_field_name('mc_link'); ?>" value="<?php echo $widget_link; ?>" /></textarea>
@@ -308,17 +309,20 @@ function my_calendar_upcoming_events($before='default',$after='default',$type='d
308
  $i = 0;
309
  $last_item = '';
310
  $last_id = '';
 
311
  foreach ( reverse_array($temp_array, true, $order) as $details ) {
312
  $item = jd_draw_template($details,$template);
313
  if ( $i < $skip && $skip != 0 ) {
314
  $i++;
315
  } else {
316
- if ( $details['group'] !== $last_id || $details['group'] == '0' ) {
 
317
  $output .= ( $item == $last_item )?'':"<li>$item</li>";
318
  }
319
  }
320
  $last_id = $details['group']; // prevent group events from displaying in a row. Not if there are intervening events.
321
  $last_item = $item;
 
322
  }
323
  } else {
324
  $caching = apply_filters( 'mc_cache_enabled', false );
28
  $the_category = ($instance['my_calendar_today_category']=='')?'default':esc_attr($instance['my_calendar_today_category']);
29
  $author = ( !isset($instance['my_calendar_today_author']) || $instance['my_calendar_today_author']=='')?'all':esc_attr($instance['my_calendar_today_author']);
30
  $host = ( !isset($instance['mc_host']) || $instance['mc_host']=='')?'all':esc_attr($instance['mc_host']);
31
+ $default_link = ( is_numeric( get_option('mc_uri') ) ) ? get_permalink( get_option('mc_uri') ) : get_option('mc_uri');
32
+ $widget_link = ( !empty($instance['my_calendar_today_linked']) && $instance['my_calendar_today_linked']=='yes')?$default_link:'';
33
  $widget_link = ( !empty($instance['mc_link']) )?esc_url($instance['mc_link']):$widget_link;
34
  $widget_title = empty($the_title) ? '' : $the_title;
35
  $offset = (60*60*get_option('gmt_offset'));
53
  $widget_text = (isset($instance['my_calendar_no_events_text']))?esc_attr($instance['my_calendar_no_events_text']):'';
54
  $widget_category = (isset($instance['my_calendar_today_category']))?esc_attr($instance['my_calendar_today_category']):'';
55
  $widget_linked = (isset($instance['my_calendar_today_linked']))?esc_attr($instance['my_calendar_today_linked']):'';
56
+ if ( $widget_linked == 'yes' ) { $default_link = ( is_numeric( get_option('mc_uri') ) ) ? get_permalink( get_option('mc_uri') ) : get_option('mc_uri'); } else { $default_link = ''; }
57
  $widget_link = (!empty($instance['mc_link']))?esc_url($instance['mc_link']):$default_link;
58
  $widget_author = (isset($instance['my_calendar_today_author']))?esc_attr($instance['my_calendar_today_author']):'';
59
  $widget_host = (isset($instance['mc_host']))?esc_attr($instance['mc_host']):'';
154
  $widget_type = (isset($instance['my_calendar_upcoming_type']) )?esc_attr($instance['my_calendar_upcoming_type']):'';
155
  $widget_order = (isset($instance['my_calendar_upcoming_order']) )?esc_attr($instance['my_calendar_upcoming_order']):'';
156
  $widget_linked = (isset($instance['my_calendar_upcoming_linked']) )?esc_attr($instance['my_calendar_upcoming_linked']):'';
157
+ if ( $widget_linked == 'yes' ) { $default_link = ( is_numeric( get_option('mc_uri') ) ) ? get_permalink( get_option('mc_uri') ) : get_option('mc_uri'); } else { $default_link = ''; }
158
  $widget_link = (!empty($instance['mc_link']))?esc_url($instance['mc_link']):$default_link;
159
  $widget_skip = (isset($instance['my_calendar_upcoming_skip']) )?esc_attr($instance['my_calendar_upcoming_skip']):'';
160
  ?>
169
  <fieldset>
170
  <legend><?php _e('Widget Options','my-calendar'); ?></legend>
171
  <?php $config_url = admin_url("admin.php?page=my-calendar-config"); ?>
172
+ <?php if ( get_option('mc_uri') == '' && !is_numeric( get_option('mc_uri') ) ) { $disabled = " disabled='disabled'"; _e('Add <a href="'.$config_url.'#mc_uri" target="_blank" title="Opens in new window">calendar URL in settings</a> to use this option.','my-calendar'); } else { $disabled=""; } ?>
173
  <p>
174
  <label for="<?php echo $this->get_field_id('mc_link'); ?>"><?php _e('Widget title links to:','my-calendar'); ?></label><br />
175
  <input class="widefat" type="text" id="<?php echo $this->get_field_id('mc_link'); ?>" name="<?php echo $this->get_field_name('mc_link'); ?>" value="<?php echo $widget_link; ?>" /></textarea>
309
  $i = 0;
310
  $last_item = '';
311
  $last_id = '';
312
+ $last_date = '';
313
  foreach ( reverse_array($temp_array, true, $order) as $details ) {
314
  $item = jd_draw_template($details,$template);
315
  if ( $i < $skip && $skip != 0 ) {
316
  $i++;
317
  } else {
318
+ // if same group, and same date, use it.
319
+ if ( ( $details['group'] !== $last_id || $details['date'] == $last_date ) || $details['group'] == '0' ) {
320
  $output .= ( $item == $last_item )?'':"<li>$item</li>";
321
  }
322
  }
323
  $last_id = $details['group']; // prevent group events from displaying in a row. Not if there are intervening events.
324
  $last_item = $item;
325
+ $last_date = $details['date'];
326
  }
327
  } else {
328
  $caching = apply_filters( 'mc_cache_enabled', false );
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.2.9
9
  */
10
  /* Copyright 2009-2013 Joe Dolson (email : joe@joedolson.com)
11
 
@@ -28,7 +28,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
28
  apply_filters("debug", "MC Started");
29
 
30
  global $mc_version, $wpdb;
31
- $mc_version = '2.2.9';
32
 
33
  // Define the tables used in My Calendar
34
  if ( function_exists('is_multisite') && is_multisite() && get_site_option('mc_multisite_show') == 1 ) {
@@ -71,7 +71,6 @@ include(dirname(__FILE__).'/my-calendar-ical.php' );
71
  include(dirname(__FILE__).'/my-calendar-events.php' );
72
  include(dirname(__FILE__).'/my-calendar-limits.php' );
73
  include(dirname(__FILE__).'/my-calendar-shortcodes.php' );
74
- include(dirname(__FILE__).'/my-calendar-detect-mobile.php' );
75
  include(dirname(__FILE__).'/my-calendar-templating.php' );
76
  include(dirname(__FILE__).'/my-calendar-group-manager.php' );
77
  include(dirname(__FILE__).'/my-calendar-export.php' );
@@ -88,9 +87,6 @@ if ( version_compare( get_bloginfo( 'version' ) , '3.0' , '<' ) && is_ssl() ) {
88
  $wp_content_url = get_option( 'siteurl' );
89
  }
90
 
91
- $wp_plugin_url = plugin_dir_url( __FILE__ );
92
- $wp_plugin_dir = plugin_dir_path( __FILE__ );
93
-
94
  // Add actions
95
  add_action( 'admin_menu', 'my_calendar_menu' );
96
  add_action( 'wp_head', 'my_calendar_wp_head' );
@@ -106,7 +102,6 @@ add_action( 'init', 'my_calendar_add_feed' );
106
  add_action( 'admin_menu', 'my_calendar_add_javascript' );
107
  add_action( 'wp_footer','mc_footer_js' );
108
  add_action( 'wp_head','my_calendar_fouc' );
109
- add_action( 'wp_enqueue_scripts','mc_enqueue' );
110
  add_action( 'init', 'my_calendar_export_vcal', 200 );
111
  // Add filters
112
  add_filter( 'widget_text', 'do_shortcode', 9 );
@@ -120,7 +115,7 @@ function mc_event_filter( $title, $sep, $seplocation ) {
120
  $array = event_as_array( $event );
121
  $left_sep = ( $seplocation != 'right' ? ' ' . $sep . ' ' : '' );
122
  $right_sep = ( $seplocation != 'right' ? '' : ' ' . $sep . ' ' );
123
- $template = ( get_option( 'mc_event_title_template' ) != '' )? stripslashes( get_option( 'mc_event_title_template' ) ):"$left_sep {title} $sep {date} $right_sep ";
124
  return strip_tags(jd_draw_template( $array, $template ) );
125
  } else {
126
  return $title;
@@ -153,7 +148,7 @@ function jd_show_support_box( $show='', $add=false, $remove=false ) {
153
  <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="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
154
  </p>
155
  <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>
156
- <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>
157
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
158
  <p class="mcd">
159
  <input type="hidden" name="cmd" value="_s-xclick" />
@@ -174,9 +169,9 @@ function jd_show_support_box( $show='', $add=false, $remove=false ) {
174
  <ul>
175
  <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>
176
  <li><a href="<?php echo admin_url("admin.php?page=my-calendar-help"); ?>#get-support"><?php _e("Get Support",'my-calendar'); ?></a></li>
177
- <li><a href="<?php echo admin_url("admin.php?page=my-calendar-help"); ?>"><?php _e("My Calendar Help",'my-calendar'); ?></a></li>
178
  <li><a href="http://profiles.wordpress.org/users/joedolson/"><?php _e('Check out my other plug-ins','my-calendar'); ?></a></li>
179
- <li><a href="http://wordpress.org/extend/plugins/my-calendar/"><?php _e('Rate this plug-in 5 stars!','my-calendar'); ?></a></li>
180
  <li><a href="http://translate.joedolson.com/projects/my-calendar"><?php _e('Help translate this plug-in!','my-calendar'); ?></a></li> </ul>
181
  </div>
182
  </div>
@@ -271,13 +266,13 @@ function jd_show_support_box( $show='', $add=false, $remove=false ) {
271
  <dd><?php _e('Second line of the site address.','my-calendar'); ?></dd>
272
 
273
  <dt><code>{city}</code></dt>
274
- <dd><?php _e('City.','my-calendar'); ?></dd>
275
 
276
  <dt><code>{state}</code></dt>
277
- <dd><?php _e('State.','my-calendar'); ?></dd>
278
 
279
  <dt><code>{postcode}</code></dt>
280
- <dd><?php _e('Postal code/zip code.','my-calendar'); ?></dd>
281
 
282
  <dt><code>{region}</code></dt>
283
  <dd><?php _e('Custom region.','my-calendar'); ?></dd>
@@ -360,11 +355,19 @@ function my_calendar_menu() {
360
  add_submenu_page('my-calendar', __('My Calendar Help','my-calendar'), __('Help','my-calendar'), 'mc_view_help', 'my-calendar-help', 'my_calendar_help');
361
  }
362
  if ( function_exists( 'mcs_submissions' ) ) {
 
363
  add_action( "admin_head", 'my_calendar_sub_js' );
364
  add_action( "admin_head", 'my_calendar_sub_styles' );
365
- add_submenu_page('my-calendar', __('Event Submissions','my-calendar'), __('Event Submissions','my-calendar'), 'manage_options', 'my-calendar-submissions', 'mcs_settings');
366
- add_submenu_page('my-calendar', __('Payments','my-calendar'), __('Payments','my-calendar'), 'manage_options', 'my-calendar-payments', 'mcs_sales_page');
367
  }
 
 
 
 
 
 
 
368
  }
369
 
370
  function mc_event_editing() {
@@ -390,7 +393,7 @@ function mc_show_event_editing( $status, $args ) {
390
  foreach ($input_options as $key=>$value) {
391
  $checked = ($value == 'on')?"checked='checked'":'';
392
  $allowed = ( $settings_options[$key] == 'on' )?true:false;
393
- if ( !current_user_can('manage_options') && !$allowed ) {
394
  // don't display options if this user can't use them.
395
  $output .= "<input type='hidden' name='mc_show_on_page[$key]' value='off' />";
396
  } else {
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.2.13
9
  */
10
  /* Copyright 2009-2013 Joe Dolson (email : joe@joedolson.com)
11
 
28
  apply_filters("debug", "MC Started");
29
 
30
  global $mc_version, $wpdb;
31
+ $mc_version = '2.2.13';
32
 
33
  // Define the tables used in My Calendar
34
  if ( function_exists('is_multisite') && is_multisite() && get_site_option('mc_multisite_show') == 1 ) {
71
  include(dirname(__FILE__).'/my-calendar-events.php' );
72
  include(dirname(__FILE__).'/my-calendar-limits.php' );
73
  include(dirname(__FILE__).'/my-calendar-shortcodes.php' );
 
74
  include(dirname(__FILE__).'/my-calendar-templating.php' );
75
  include(dirname(__FILE__).'/my-calendar-group-manager.php' );
76
  include(dirname(__FILE__).'/my-calendar-export.php' );
87
  $wp_content_url = get_option( 'siteurl' );
88
  }
89
 
 
 
 
90
  // Add actions
91
  add_action( 'admin_menu', 'my_calendar_menu' );
92
  add_action( 'wp_head', 'my_calendar_wp_head' );
102
  add_action( 'admin_menu', 'my_calendar_add_javascript' );
103
  add_action( 'wp_footer','mc_footer_js' );
104
  add_action( 'wp_head','my_calendar_fouc' );
 
105
  add_action( 'init', 'my_calendar_export_vcal', 200 );
106
  // Add filters
107
  add_filter( 'widget_text', 'do_shortcode', 9 );
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 strip_tags(jd_draw_template( $array, $template ) );
120
  } else {
121
  return $title;
148
  <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="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
149
  </p>
150
  <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>
151
+ <p><?php _e('<strong>Or make a donation today!</strong> Every donation counts - donate $5, $20, or $100 and help me keep this plug-in running!','my-calendar'); ?></p>
152
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
153
  <p class="mcd">
154
  <input type="hidden" name="cmd" value="_s-xclick" />
169
  <ul>
170
  <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>
171
  <li><a href="<?php echo admin_url("admin.php?page=my-calendar-help"); ?>#get-support"><?php _e("Get Support",'my-calendar'); ?></a></li>
172
+ <li><a href="<?php echo admin_url("admin.php?page=my-calendar-help"); ?>"><?php _e("My Calendar Help",'my-calendar'); ?></a></li>
173
  <li><a href="http://profiles.wordpress.org/users/joedolson/"><?php _e('Check out my other plug-ins','my-calendar'); ?></a></li>
174
+ <li><a href="http://wordpress.org/support/view/plugin-reviews/my-calendar"><?php _e('Rate this plug-in 5 stars!','my-calendar'); ?></a></li>
175
  <li><a href="http://translate.joedolson.com/projects/my-calendar"><?php _e('Help translate this plug-in!','my-calendar'); ?></a></li> </ul>
176
  </div>
177
  </div>
266
  <dd><?php _e('Second line of the site address.','my-calendar'); ?></dd>
267
 
268
  <dt><code>{city}</code></dt>
269
+ <dd><?php _e('City','my-calendar'); ?></dd>
270
 
271
  <dt><code>{state}</code></dt>
272
+ <dd><?php _e('State','my-calendar'); ?></dd>
273
 
274
  <dt><code>{postcode}</code></dt>
275
+ <dd><?php _e('Postal Code','my-calendar'); ?></dd>
276
 
277
  <dt><code>{region}</code></dt>
278
  <dd><?php _e('Custom region.','my-calendar'); ?></dd>
355
  add_submenu_page('my-calendar', __('My Calendar Help','my-calendar'), __('Help','my-calendar'), 'mc_view_help', 'my-calendar-help', 'my_calendar_help');
356
  }
357
  if ( function_exists( 'mcs_submissions' ) ) {
358
+ $permission = apply_filters( 'mcs_submission_permissions', 'manage_options' );
359
  add_action( "admin_head", 'my_calendar_sub_js' );
360
  add_action( "admin_head", 'my_calendar_sub_styles' );
361
+ add_submenu_page('my-calendar', __('Event Submissions','my-calendar'), __('Event Submissions','my-calendar'), $permission, 'my-calendar-submissions', 'mcs_settings');
362
+ add_submenu_page('my-calendar', __('Payments','my-calendar'), __('Payments','my-calendar'), $permission, 'my-calendar-payments', 'mcs_sales_page');
363
  }
364
+ if ( function_exists( 'mcr_registrations' ) ) {
365
+ $permission = apply_filters( 'mcr_registration_permissions', 'manage_options' );
366
+ add_action( "admin_head", 'mcr_sub_js' );
367
+ add_action( "admin_head", 'mcr_reg_styles' );
368
+ add_submenu_page('my-calendar', __('Event Registrations','my-calendar'), __('Event Registrations','my-calendar'), $permission, 'my-calendar-registrations', 'mcr_settings');
369
+ add_submenu_page('my-calendar', __('Registration Payments','my-calendar'), __('Registration Payments','my-calendar'), $permission, 'mcr-payments', 'mcr_sales_page');
370
+ }
371
  }
372
 
373
  function mc_event_editing() {
393
  foreach ($input_options as $key=>$value) {
394
  $checked = ($value == 'on')?"checked='checked'":'';
395
  $allowed = ( $settings_options[$key] == 'on' )?true:false;
396
+ if ( !( current_user_can('manage_options') && get_option( 'mc_input_options_administrators' ) == 'true' ) && !$allowed ) {
397
  // don't display options if this user can't use them.
398
  $output .= "<input type='hidden' name='mc_show_on_page[$key]' value='off' />";
399
  } else {
readme.txt CHANGED
@@ -3,9 +3,9 @@ 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.3.0
6
- Tested up to: 3.6
7
  License: GPLv2 or later
8
- Stable tag: 2.2.9
9
 
10
  Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
11
 
@@ -56,9 +56,9 @@ Easy to use for anybody, My Calendar provides enormous potential for developers
56
  = Translations =
57
 
58
  Available languages (in order of completeness):
59
- French, Japanese, Dutch, Galician, Spanish, Italian, Danish, Czech, Hindi, Turkish, Finnish, Polish, German, Portuguese, Russian, Swedish, Romanian, Slovenian, Basque, Persian
60
 
61
- Visit the [My Calendar translations site](http://translate.joedolson.com/projects/my-calendar) to check how complete a translation is.
62
 
63
  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!
64
 
@@ -86,6 +86,41 @@ Translating my plug-ins is always appreciated. Visit <a href="http://translate.j
86
 
87
  == Changelog ==
88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  = 2.2.9 =
90
 
91
  * Bug fix: Reversed argument in $details filter, breaking custom template editor.
@@ -1105,5 +1140,5 @@ I've written a paid plug-in that adds this feature to My Calendar, called My Cal
1105
 
1106
  == Upgrade Notice ==
1107
 
1108
- = 2.2.8 =
1109
- Bug fixes and loads of new filters and actions for developers.
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.3.0
6
+ Tested up to: 3.7.0
7
  License: GPLv2 or later
8
+ Stable tag: 2.2.12
9
 
10
  Accessible WordPress event calendar plugin. Show events from multiple calendars on pages, in posts, or in widgets.
11
 
56
  = Translations =
57
 
58
  Available languages (in order of completeness):
59
+ French, Japanese, Dutch, German, Galician, Spanish, Italian, Danish, Czech, Hindi, Turkish, Finnish, Slovenian, Polish, Portuguese, Russian, Swedish, Romanian, Basque, Persian
60
 
61
+ Visit the [My Calendar translations site](http://translate.joedolson.com/projects/my-calendar) to check the progress of a translation.
62
 
63
  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!
64
 
86
 
87
  == Changelog ==
88
 
89
+ = 2.2.13 =
90
+
91
+ * Bug fix: Threw error if network-activated (wp_is_mobile() not defined yet)
92
+ * Bug fix: Calendar URI could be saved as integer instead of as URL.
93
+ * Bug fix: hide screen options that current user can't use.
94
+ * Improved localization of Calendrical jQuery plug-in.
95
+ * Feature: my_calendar_upcoming and my_calendar_today shortcodes now support filtering by host.
96
+ * New filter: mc_send_notification -- passes event and user data to determine whether a new event email notification should be sent. Return true|false.
97
+
98
+ = 2.2.12 =
99
+
100
+ * Bug fix: jquery.calendrical time rendering.
101
+
102
+ = 2.2.11 =
103
+
104
+ * Required deleted file.
105
+
106
+ = 2.2.10 =
107
+
108
+ * Bug fix: date comparison in grouped event date output.
109
+ * Bug fix: editing a single occurrence of an event when location fields not displayed could result in duplicating the event.
110
+ * Bug fix: Duplicated <a> on event title in events manager.
111
+ * Bug fix: Generated WP to Twitter empty sentence error.
112
+ * Bug fix: Grouped events within a single day in upcoming events list.
113
+ * Bug fix: Run My Calendar upgrade stylesheet archiving only when My Calendar is updated.
114
+ * Bug fix:
115
+ * Changed: replaced mc_is_mobile() functionality with native wp_is_mobile(). Filterable for My Calendar using 'mc_is_mobile' filter.
116
+ * Changed: properly registered and enqueue most front-end styles.
117
+ * Changed: Removed classes 'prevMonth' and 'nextMonth' from navigation.
118
+ * Misc. minor style changes to front and back end UI.
119
+ * Added: special value for 'author' and 'host' attributes of 'current' to only show events created by the logged-in user. Filter via 'mc_display_author' and 'mc_display_host'
120
+ * Added: date and time to title field for My Calendar RSS feed.
121
+ * Preparation: permission filtering for submissions and registrations add-ons.
122
+ * Updated: German & Slovenian Translations.
123
+
124
  = 2.2.9 =
125
 
126
  * Bug fix: Reversed argument in $details filter, breaking custom template editor.
1140
 
1141
  == Upgrade Notice ==
1142
 
1143
+ = 2.2.12 =
1144
+ Believe me, it's frustrating to me, too. Bug fix to jQuery time output.
styles/refresh.css CHANGED
@@ -13,7 +13,8 @@
13
  .mc-main .current-day .mc-date {color: #000; background: #ffd}
14
  .mc-main .mc-date, .mc-main.mini td {background:#f6f6f6}
15
  .mc-main .weekend .mc-date {background:#f0f1f5; color: #000}
16
- .mc-main .details .mc-event-date {font-weight: 700; font-size: 1.3em; text-shadow: 1px 1px 2px #aaa}
 
17
  .mc-main .my-calendar-nav li a {
18
  color: #fff; text-decoration: none;
19
  border: 1px solid #ddd;
13
  .mc-main .current-day .mc-date {color: #000; background: #ffd}
14
  .mc-main .mc-date, .mc-main.mini td {background:#f6f6f6}
15
  .mc-main .weekend .mc-date {background:#f0f1f5; color: #000}
16
+ .mc-main .details .mc-event-date { font-weight: 700; font-size: 1.3em; }
17
+ .mc-main .details .time-block p { padding: 0; margin: 0; }
18
  .mc-main .my-calendar-nav li a {
19
  color: #fff; text-decoration: none;
20
  border: 1px solid #ddd;
templates/refresh.css CHANGED
@@ -13,7 +13,8 @@
13
  .mc-main .current-day .mc-date {color: #000; background: #ffd}
14
  .mc-main .mc-date, .mc-main.mini td {background:#f6f6f6}
15
  .mc-main .weekend .mc-date {background:#f0f1f5; color: #000}
16
- .mc-main .details .mc-event-date {font-weight: 700; font-size: 1.3em; text-shadow: 1px 1px 2px #aaa}
 
17
  .mc-main .my-calendar-nav li a {
18
  color: #fff; text-decoration: none;
19
  border: 1px solid #ddd;
13
  .mc-main .current-day .mc-date {color: #000; background: #ffd}
14
  .mc-main .mc-date, .mc-main.mini td {background:#f6f6f6}
15
  .mc-main .weekend .mc-date {background:#f0f1f5; color: #000}
16
+ .mc-main .details .mc-event-date { font-weight: 700; font-size: 1.3em; }
17
+ .mc-main .details .time-block p { padding: 0; margin: 0; }
18
  .mc-main .my-calendar-nav li a {
19
  color: #fff; text-decoration: none;
20
  border: 1px solid #ddd;
uninstall.php CHANGED
@@ -35,7 +35,7 @@ delete_option('mc_next_events');
35
  delete_option('mc_previous_events');
36
  delete_option('mc_input_options');
37
  delete_option('mc_input_options_administrators');
38
- delete_option('mc_event_mail','false');
39
  delete_option('mc_event_mail_subject');
40
  delete_option('mc_event_mail_to');
41
  delete_option('mc_event_mail_message');
35
  delete_option('mc_previous_events');
36
  delete_option('mc_input_options');
37
  delete_option('mc_input_options_administrators');
38
+ delete_option('mc_event_mail' );
39
  delete_option('mc_event_mail_subject');
40
  delete_option('mc_event_mail_to');
41
  delete_option('mc_event_mail_message');