Version Description
- Fixed a bug where event end times were displaying the start time instead when editing.
- Fixed a bug introduced by the mini calendar option which displayed titles twice in list format.
- Fixed a bunch of typos.
- Added a loop which automatically adds the mini calendar styles if you don't already have them.
- Fixed a bug where JS didn't run if the 'show only on certain pages' option was used.
- Added a qualifier for upgrading databases when you haven't added any events.
Download this release
Release Info
Developer | joedolson |
Plugin | My Calendar |
Version | 1.4.3 |
Comparing to | |
See all releases |
Code changes from version 1.4.0 to 1.4.3
- my-calendar-categories.php +6 -0
- my-calendar-event-manager.php +4 -1
- my-calendar-help.php +1 -1
- my-calendar-install.php +48 -2
- my-calendar-locations.php +3 -0
- my-calendar-settings.php +6 -1
- my-calendar-styles.php +4 -2
- my-calendar-upgrade-db.php +112 -0
- my-calendar-widgets.php +2 -2
- my-calendar.php +22 -6
- my-calendar.pot +250 -228
- readme.txt +19 -1
my-calendar-categories.php
CHANGED
@@ -29,6 +29,9 @@ function my_calendar_manage_categories() {
|
|
29 |
|
30 |
?>
|
31 |
<div class="wrap">
|
|
|
|
|
|
|
32 |
<?php
|
33 |
// We do some checking to see what we're doing
|
34 |
if (isset($_POST['mode']) && $_POST['mode'] == 'add') {
|
@@ -46,9 +49,12 @@ function my_calendar_manage_categories() {
|
|
46 |
$cur_cat = $wpdb->get_row($sql);
|
47 |
?>
|
48 |
<h2><?php _e('Edit Category','my-calendar'); ?></h2>
|
|
|
|
|
49 |
<?php jd_show_support_box(); ?>
|
50 |
<div id="poststuff" class="jd-my-calendar">
|
51 |
<div class="postbox">
|
|
|
52 |
<h3><?php _e('Category Editor','my-calendar'); ?></h3>
|
53 |
<div class="inside">
|
54 |
<form name="my-calendar" id="my-calendar" method="post" action="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-categories">
|
29 |
|
30 |
?>
|
31 |
<div class="wrap">
|
32 |
+
<?php
|
33 |
+
echo my_calendar_check_db();
|
34 |
+
?>
|
35 |
<?php
|
36 |
// We do some checking to see what we're doing
|
37 |
if (isset($_POST['mode']) && $_POST['mode'] == 'add') {
|
49 |
$cur_cat = $wpdb->get_row($sql);
|
50 |
?>
|
51 |
<h2><?php _e('Edit Category','my-calendar'); ?></h2>
|
52 |
+
|
53 |
+
|
54 |
<?php jd_show_support_box(); ?>
|
55 |
<div id="poststuff" class="jd-my-calendar">
|
56 |
<div class="postbox">
|
57 |
+
|
58 |
<h3><?php _e('Category Editor','my-calendar'); ?></h3>
|
59 |
<div class="inside">
|
60 |
<form name="my-calendar" id="my-calendar" method="post" action="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-categories">
|
my-calendar-event-manager.php
CHANGED
@@ -522,6 +522,9 @@ if ( $action == 'add' ) {
|
|
522 |
?>
|
523 |
|
524 |
<div class="wrap">
|
|
|
|
|
|
|
525 |
<?php
|
526 |
if ( $action == 'edit' || ($action == 'edit_save' && $error_with_saving == 1)) {
|
527 |
?>
|
@@ -663,7 +666,7 @@ function jd_events_edit_form($mode='add', $event_id=false) {
|
|
663 |
if ($data->event_endtime == "00:00:00") {
|
664 |
echo '';
|
665 |
} else {
|
666 |
-
echo date("H:i",strtotime($data->
|
667 |
}
|
668 |
} else {
|
669 |
echo '';
|
522 |
?>
|
523 |
|
524 |
<div class="wrap">
|
525 |
+
<?php
|
526 |
+
my_calendar_check_db();
|
527 |
+
?>
|
528 |
<?php
|
529 |
if ( $action == 'edit' || ($action == 'edit_save' && $error_with_saving == 1)) {
|
530 |
?>
|
666 |
if ($data->event_endtime == "00:00:00") {
|
667 |
echo '';
|
668 |
} else {
|
669 |
+
echo date("H:i",strtotime($data->event_endtime));
|
670 |
}
|
671 |
} else {
|
672 |
echo '';
|
my-calendar-help.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
function my_calendar_help() {
|
3 |
-
|
4 |
?>
|
|
|
5 |
<div class="wrap">
|
6 |
<h2><?php _e('How to use My Calendar','my-calendar'); ?></h2>
|
7 |
<?php jd_show_support_box(); ?>
|
1 |
<?php
|
2 |
function my_calendar_help() {
|
|
|
3 |
?>
|
4 |
+
|
5 |
<div class="wrap">
|
6 |
<h2><?php _e('How to use My Calendar','my-calendar'); ?></h2>
|
7 |
<?php jd_show_support_box(); ?>
|
my-calendar-install.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
|
3 |
// define global variables;
|
4 |
-
global $initial_listjs, $initial_caljs, $initial_minijs, $initial_style, $initial_db, $initial_loc_db, $initial_cat_db, $default_template;
|
5 |
|
6 |
// defaults will go into the options table on a new install
|
7 |
$initial_listjs = 'var $j = jQuery.noConflict();
|
@@ -369,6 +369,50 @@ font-weight: 700;
|
|
369 |
text-decoration: underline;
|
370 |
}";
|
371 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
$default_template = "<strong>{date}</strong> – {link_title}<br /><span>{time}, {category}</span>";
|
373 |
|
374 |
$initial_db = "CREATE TABLE " . MY_CALENDAR_TABLE . " (
|
@@ -422,8 +466,10 @@ $initial_loc_db = "CREATE TABLE " . MY_CALENDAR_LOCATIONS_TABLE . " (
|
|
422 |
PRIMARY KEY (location_id)
|
423 |
);";
|
424 |
|
|
|
|
|
425 |
function mc_default_settings( ) {
|
426 |
-
global $initial_style, $default_template, $initial_listjs, $initial_caljs, $initial_db, $initial_loc_db, $initial_cat_db;
|
427 |
// no arguments
|
428 |
add_option('can_manage_events','edit_posts');
|
429 |
add_option('my_calendar_style',"$initial_style");
|
1 |
<?php
|
2 |
|
3 |
// define global variables;
|
4 |
+
global $initial_listjs, $initial_caljs, $initial_minijs, $initial_style, $initial_db, $initial_loc_db, $initial_cat_db, $default_template, $mini_styles;
|
5 |
|
6 |
// defaults will go into the options table on a new install
|
7 |
$initial_listjs = 'var $j = jQuery.noConflict();
|
369 |
text-decoration: underline;
|
370 |
}";
|
371 |
|
372 |
+
$mini_styles = ".mini td {
|
373 |
+
height: auto!important;
|
374 |
+
}
|
375 |
+
|
376 |
+
.mini .my-calendar-nav ul {
|
377 |
+
height: 2em!important;
|
378 |
+
}
|
379 |
+
.mini .my-calendar-nav li a {
|
380 |
+
padding: 1px 3px!important;
|
381 |
+
font-size: .7em;
|
382 |
+
}
|
383 |
+
#jd-calendar.mini .my-calendar-date-switcher label {
|
384 |
+
display: block;
|
385 |
+
float: left;
|
386 |
+
width: 6em;
|
387 |
+
}
|
388 |
+
#jd-calendar.mini .my-calendar-date-switcher {
|
389 |
+
padding: 4px;
|
390 |
+
}
|
391 |
+
#jd-calendar.mini td .category-icon {
|
392 |
+
display: none;
|
393 |
+
}
|
394 |
+
#jd-calendar.mini h3 {
|
395 |
+
font-size: 1.1em;
|
396 |
+
}
|
397 |
+
|
398 |
+
#jd-calendar.mini .day-with-date span, #jd-calendar.mini .day-with-date a {
|
399 |
+
font-family: Arial, Verdana, sans-serif;
|
400 |
+
font-size: .9em;
|
401 |
+
padding:1px;
|
402 |
+
}
|
403 |
+
#jd-calendar .mini-event .sub-details {
|
404 |
+
margin: 0;
|
405 |
+
border-bottom: 1px solid #ccc;
|
406 |
+
padding: 2px 0 0;
|
407 |
+
margin-bottom: 5px;
|
408 |
+
}
|
409 |
+
#jd-calendar.mini .day-with-date a {
|
410 |
+
display: block;
|
411 |
+
margin: -2px;
|
412 |
+
font-weight: 700;
|
413 |
+
text-decoration: underline;
|
414 |
+
}";
|
415 |
+
|
416 |
$default_template = "<strong>{date}</strong> – {link_title}<br /><span>{time}, {category}</span>";
|
417 |
|
418 |
$initial_db = "CREATE TABLE " . MY_CALENDAR_TABLE . " (
|
466 |
PRIMARY KEY (location_id)
|
467 |
);";
|
468 |
|
469 |
+
|
470 |
+
|
471 |
function mc_default_settings( ) {
|
472 |
+
global $initial_style, $default_template, $initial_listjs, $initial_caljs, $initial_minijs, $initial_db, $initial_loc_db, $initial_cat_db;
|
473 |
// no arguments
|
474 |
add_option('can_manage_events','edit_posts');
|
475 |
add_option('my_calendar_style',"$initial_style");
|
my-calendar-locations.php
CHANGED
@@ -10,6 +10,9 @@ function my_calendar_manage_locations() {
|
|
10 |
|
11 |
?>
|
12 |
<div class="wrap">
|
|
|
|
|
|
|
13 |
<?php
|
14 |
// We do some checking to see what we're doing
|
15 |
if (isset($_POST['mode']) && $_POST['mode'] == 'add') {
|
10 |
|
11 |
?>
|
12 |
<div class="wrap">
|
13 |
+
<?php
|
14 |
+
echo my_calendar_check_db();
|
15 |
+
?>
|
16 |
<?php
|
17 |
// We do some checking to see what we're doing
|
18 |
if (isset($_POST['mode']) && $_POST['mode'] == 'add') {
|
my-calendar-settings.php
CHANGED
@@ -155,10 +155,15 @@ function edit_my_calendar_config() {
|
|
155 |
// Now we render the form
|
156 |
?>
|
157 |
<div class="wrap">
|
158 |
-
|
|
|
|
|
159 |
<h2><?php _e('My Calendar Options','my-calendar'); ?></h2>
|
160 |
<?php jd_show_support_box(); ?>
|
161 |
<div id="poststuff" class="jd-my-calendar">
|
|
|
|
|
|
|
162 |
<div class="postbox">
|
163 |
<h3><?php _e('Calendar Settings','my-calendar'); ?></h3>
|
164 |
<div class="inside">
|
155 |
// Now we render the form
|
156 |
?>
|
157 |
<div class="wrap">
|
158 |
+
<?php
|
159 |
+
echo my_calendar_check_db();
|
160 |
+
?>
|
161 |
<h2><?php _e('My Calendar Options','my-calendar'); ?></h2>
|
162 |
<?php jd_show_support_box(); ?>
|
163 |
<div id="poststuff" class="jd-my-calendar">
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
<div class="postbox">
|
168 |
<h3><?php _e('Calendar Settings','my-calendar'); ?></h3>
|
169 |
<div class="inside">
|
my-calendar-styles.php
CHANGED
@@ -64,7 +64,9 @@ function edit_my_calendar_styles() {
|
|
64 |
|
65 |
?>
|
66 |
<div class="wrap">
|
67 |
-
|
|
|
|
|
68 |
<h2><?php _e('My Calendar Styles','my-calendar'); ?></h2>
|
69 |
<?php jd_show_support_box(); ?>
|
70 |
<div id="poststuff" class="jd-my-calendar">
|
@@ -114,7 +116,7 @@ function edit_my_calendar_styles() {
|
|
114 |
<fieldset>
|
115 |
<legend><?php _e('Calendar Behaviors: Mini Calendar View','my-calendar'); ?></legend>
|
116 |
<p>
|
117 |
-
<input type="checkbox" id="reset_minijs" name="reset_minijs" /> <label for="
|
118 |
</p>
|
119 |
<p>
|
120 |
<label for="mini-javascript"><?php _e('Edit the jQuery scripts for My Calendar in Mini Calendar format','my-calendar'); ?></label><br /><textarea id="mini-javascript" name="my_calendar_minijs" rows="10" cols="80"><?php echo $my_calendar_minijs; ?></textarea>
|
64 |
|
65 |
?>
|
66 |
<div class="wrap">
|
67 |
+
<?php
|
68 |
+
echo my_calendar_check_db();
|
69 |
+
?>
|
70 |
<h2><?php _e('My Calendar Styles','my-calendar'); ?></h2>
|
71 |
<?php jd_show_support_box(); ?>
|
72 |
<div id="poststuff" class="jd-my-calendar">
|
116 |
<fieldset>
|
117 |
<legend><?php _e('Calendar Behaviors: Mini Calendar View','my-calendar'); ?></legend>
|
118 |
<p>
|
119 |
+
<input type="checkbox" id="reset_minijs" name="reset_minijs" /> <label for="reset_minijs"><?php _e('Reset the My Calendar Mini Format Javascript','my-calendar'); ?></label> <input type="checkbox" id="mini_javascript" name="mini_javascript" value="1" <?php jd_cal_checkCheckbox('mini_javascript',1); ?> /> <label for="mini_javascript"><?php _e('Disable Mini Javascript Effects','my-calendar'); ?></label>
|
120 |
</p>
|
121 |
<p>
|
122 |
<label for="mini-javascript"><?php _e('Edit the jQuery scripts for My Calendar in Mini Calendar format','my-calendar'); ?></label><br /><textarea id="mini-javascript" name="my_calendar_minijs" rows="10" cols="80"><?php echo $my_calendar_minijs; ?></textarea>
|
my-calendar-upgrade-db.php
ADDED
@@ -0,0 +1,112 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function my_calendar_check_db() {
|
3 |
+
global $wpdb;
|
4 |
+
$row = $wpdb->get_row( 'SELECT * FROM '.MY_CALENDAR_TABLE );
|
5 |
+
|
6 |
+
if ( $_POST['upgrade'] == 'true' ) {
|
7 |
+
my_calendar_upgrade_db();
|
8 |
+
}
|
9 |
+
|
10 |
+
if ( !isset( $row->event_longitude ) && isset( $row->event_id ) ) {
|
11 |
+
?>
|
12 |
+
|
13 |
+
<div class='upgrade-db error'>
|
14 |
+
<form method="post" action="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-config">
|
15 |
+
<div>
|
16 |
+
<input type="hidden" name="upgrade" value="true" />
|
17 |
+
</div>
|
18 |
+
<p>
|
19 |
+
<?php _e('The My Calendar database needs to be updated.','my-calendar'); ?>
|
20 |
+
<input type="submit" value="<?php _e('Update now','my-calendar'); ?>" name="update-calendar" class="button-primary" />
|
21 |
+
</p>
|
22 |
+
</form>
|
23 |
+
</div>
|
24 |
+
<?php
|
25 |
+
} elseif ( !isset ( $row->event_id ) ) {
|
26 |
+
?>
|
27 |
+
<div class='upgrade-db error'>
|
28 |
+
<form method="post" action="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=my-calendar-config">
|
29 |
+
<div>
|
30 |
+
<input type="hidden" name="upgrade" value="true" />
|
31 |
+
</div>
|
32 |
+
<p>
|
33 |
+
<?php _e('You haven\'t entered any events, so My Calendar can\'t tell whether your database needs to be updated. If you can\'t add events, upgrade your database!','my-calendar'); ?>
|
34 |
+
<input type="submit" value="<?php _e('Update now','my-calendar'); ?>" name="update-calendar" class="button-primary" />
|
35 |
+
</p>
|
36 |
+
</form>
|
37 |
+
</div>
|
38 |
+
<?php
|
39 |
+
} else {
|
40 |
+
if ( isset($_POST) && $_POST['upgrade'] == 'true' ) {
|
41 |
+
?>
|
42 |
+
<div class='upgrade-db updated'>
|
43 |
+
<p>
|
44 |
+
<?php _e('My Calendar Database is updated.','my-calendar'); ?>
|
45 |
+
</p>
|
46 |
+
</div>
|
47 |
+
<?php
|
48 |
+
}
|
49 |
+
}
|
50 |
+
}
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
function my_calendar_upgrade_db() {
|
55 |
+
|
56 |
+
$initial_db = "CREATE TABLE " . MY_CALENDAR_TABLE . " (
|
57 |
+
event_id INT(11) NOT NULL AUTO_INCREMENT,
|
58 |
+
event_begin DATE NOT NULL,
|
59 |
+
event_end DATE NOT NULL,
|
60 |
+
event_title VARCHAR(255) NOT NULL,
|
61 |
+
event_desc TEXT NOT NULL,
|
62 |
+
event_time TIME,
|
63 |
+
event_endtime TIME,
|
64 |
+
event_recur CHAR(1),
|
65 |
+
event_repeats INT(3),
|
66 |
+
event_author BIGINT(20) UNSIGNED,
|
67 |
+
event_category BIGINT(20) UNSIGNED,
|
68 |
+
event_link TEXT,
|
69 |
+
event_link_expires TINYINT(1) NOT NULL,
|
70 |
+
event_label VARCHAR(60) NOT NULL,
|
71 |
+
event_street VARCHAR(60) NOT NULL,
|
72 |
+
event_street2 VARCHAR(60) NOT NULL,
|
73 |
+
event_city VARCHAR(60) NOT NULL,
|
74 |
+
event_state VARCHAR(60) NOT NULL,
|
75 |
+
event_postcode VARCHAR(10) NOT NULL,
|
76 |
+
event_country VARCHAR(60) NOT NULL,
|
77 |
+
event_longitude FLOAT(10,6) NOT NULL DEFAULT '0',
|
78 |
+
event_latitude FLOAT(10,6) NOT NULL DEFAULT '0',
|
79 |
+
event_zoom INT(2) NOT NULL DEFAULT '14',
|
80 |
+
PRIMARY KEY (event_id),
|
81 |
+
KEY event_recur (event_recur)
|
82 |
+
);";
|
83 |
+
|
84 |
+
$initial_cat_db = "CREATE TABLE " . MY_CALENDAR_CATEGORIES_TABLE . " (
|
85 |
+
category_id INT(11) NOT NULL AUTO_INCREMENT,
|
86 |
+
category_name VARCHAR(255) NOT NULL,
|
87 |
+
category_color VARCHAR(7) NOT NULL,
|
88 |
+
category_icon VARCHAR(128) NOT NULL,
|
89 |
+
PRIMARY KEY (category_id)
|
90 |
+
);";
|
91 |
+
|
92 |
+
$initial_loc_db = "CREATE TABLE " . MY_CALENDAR_LOCATIONS_TABLE . " (
|
93 |
+
location_id INT(11) NOT NULL AUTO_INCREMENT,
|
94 |
+
location_label VARCHAR(60) NOT NULL,
|
95 |
+
location_street VARCHAR(60) NOT NULL,
|
96 |
+
location_street2 VARCHAR(60) NOT NULL,
|
97 |
+
location_city VARCHAR(60) NOT NULL,
|
98 |
+
location_state VARCHAR(60) NOT NULL,
|
99 |
+
location_postcode VARCHAR(10) NOT NULL,
|
100 |
+
location_country VARCHAR(60) NOT NULL,
|
101 |
+
location_longitude FLOAT(10,6) NOT NULL DEFAULT '0',
|
102 |
+
location_latitude FLOAT(10,6) NOT NULL DEFAULT '0',
|
103 |
+
location_zoom INT(2) NOT NULL DEFAULT '14',
|
104 |
+
PRIMARY KEY (location_id)
|
105 |
+
);";
|
106 |
+
|
107 |
+
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
108 |
+
$q_db = dbDelta($initial_db);
|
109 |
+
$cat_db = dbDelta($initial_cat_db);
|
110 |
+
$loc_db = dbDelta($initial_loc_db);
|
111 |
+
|
112 |
+
} ?>
|
my-calendar-widgets.php
CHANGED
@@ -63,7 +63,7 @@ function init_my_calendar_upcoming() {
|
|
63 |
extract($args);
|
64 |
$the_title = get_option('my_calendar_upcoming_title');
|
65 |
$widget_title = empty($the_title) ? __('Upcoming Events','my-calendar') : $the_title;
|
66 |
-
|
67 |
if ($the_events != '') {
|
68 |
echo $before_widget;
|
69 |
echo $before_title . stripslashes($widget_title) . $after_title;
|
@@ -79,7 +79,7 @@ function init_my_calendar_upcoming() {
|
|
79 |
$past_days = get_option('display_past_days');
|
80 |
$upcoming_events = get_option('display_upcoming_events');
|
81 |
$past_events = get_option('display_past_events');
|
82 |
-
$display_in_category = get_option('display_in_category');
|
83 |
|
84 |
|
85 |
if (isset($_POST['my_calendar_upcoming_title'])) {
|
63 |
extract($args);
|
64 |
$the_title = get_option('my_calendar_upcoming_title');
|
65 |
$widget_title = empty($the_title) ? __('Upcoming Events','my-calendar') : $the_title;
|
66 |
+
$the_events = my_calendar_upcoming_events();
|
67 |
if ($the_events != '') {
|
68 |
echo $before_widget;
|
69 |
echo $before_title . stripslashes($widget_title) . $after_title;
|
79 |
$past_days = get_option('display_past_days');
|
80 |
$upcoming_events = get_option('display_upcoming_events');
|
81 |
$past_events = get_option('display_past_events');
|
82 |
+
$display_in_category = stripcslashes( get_option('display_in_category') );
|
83 |
|
84 |
|
85 |
if (isset($_POST['my_calendar_upcoming_title'])) {
|
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: 1.4.
|
9 |
*/
|
10 |
/* Copyright 2009 Joe Dolson (email : joe@joedolson.com)
|
11 |
|
@@ -64,6 +64,7 @@ include(dirname(__FILE__).'/my-calendar-styles.php' );
|
|
64 |
include(dirname(__FILE__).'/my-calendar-widgets.php' );
|
65 |
include(dirname(__FILE__).'/date-utilities.php' );
|
66 |
include(dirname(__FILE__).'/my-calendar-install.php' );
|
|
|
67 |
|
68 |
|
69 |
// Before we get on with the functions, we need to define the initial style used for My Calendar
|
@@ -218,6 +219,8 @@ function my_calendar_add_display_javascript() {
|
|
218 |
add_action('init','my_calendar_add_display_javascript');
|
219 |
|
220 |
function my_calendar_calendar_javascript() {
|
|
|
|
|
221 |
$list_js = stripcslashes( get_option( 'my_calendar_listjs' ) );
|
222 |
$cal_js = stripcslashes( get_option( 'my_calendar_caljs' ) );
|
223 |
$mini_js = stripcslashes( get_option( 'my_calendar_minijs' ) );
|
@@ -227,6 +230,10 @@ if ( get_option('calendar_javascript') != 1 || get_option('list_javascript') !=
|
|
227 |
} else {
|
228 |
$fouc = '';
|
229 |
}
|
|
|
|
|
|
|
|
|
230 |
if ( get_option( 'my_calendar_show_css' ) != '' ) {
|
231 |
$array = explode( ",",get_option( 'my_calendar_show_css' ) );
|
232 |
if (!is_array($array)) {
|
@@ -260,6 +267,8 @@ echo "\n"
|
|
260 |
</script>
|
261 |
<?php
|
262 |
}
|
|
|
|
|
263 |
}
|
264 |
}
|
265 |
add_action('wp_head','my_calendar_calendar_javascript');
|
@@ -377,12 +386,18 @@ add_shortcode('my_calendar_today','my_calendar_insert_today');
|
|
377 |
|
378 |
// Function to check what version of My Calendar is installed and install if needed
|
379 |
function check_my_calendar() {
|
380 |
-
global $wpdb, $initial_style, $initial_listjs, $initial_caljs, $initial_minijs;
|
381 |
$current_version = get_option('my_calendar_version');
|
382 |
// If current version matches, don't bother running this.
|
383 |
-
if ($current_version == '1.4.
|
384 |
return true;
|
385 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
// Checks to make sure My Calendar is installed, if not it adds the default
|
387 |
// database tables and populates them with test data. If it is, then the
|
388 |
// version is checked through various means and if it is not up to date
|
@@ -417,7 +432,7 @@ function check_my_calendar() {
|
|
417 |
}
|
418 |
|
419 |
// having determined upgrade path, assign new version number
|
420 |
-
update_option( 'my_calendar_version' , '1.4.
|
421 |
|
422 |
// Now we've determined what the current install is or isn't
|
423 |
if ( $new_install == true ) {
|
@@ -677,8 +692,9 @@ $my_calendar_directory = get_bloginfo( 'wpurl' ) . '/' . PLUGINDIR . '/' . dirna
|
|
677 |
} else {
|
678 |
$toggle = "";
|
679 |
}
|
|
|
680 |
$header_details .= "<h3 class='event-title $category'>$image".stripslashes($event->event_title)."$toggle</h3>\n";
|
681 |
-
|
682 |
|
683 |
$header_details .= "<div class='details'>";
|
684 |
if ($type == "calendar" ) { $header_details .= "<h3 class='close'><a href='#' class='mc-toggle mc-close'><img src='$my_calendar_directory/images/event-close.png' alt='".__('Close','my-calendar')."' /></a></h3>"; }
|
@@ -743,7 +759,7 @@ global $wpdb;
|
|
743 |
if ($i < $numcat) {
|
744 |
$select_category .= " OR ";
|
745 |
} else if ($i == $numcat) {
|
746 |
-
$
|
747 |
}
|
748 |
$i++;
|
749 |
} 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: 1.4.3
|
9 |
*/
|
10 |
/* Copyright 2009 Joe Dolson (email : joe@joedolson.com)
|
11 |
|
64 |
include(dirname(__FILE__).'/my-calendar-widgets.php' );
|
65 |
include(dirname(__FILE__).'/date-utilities.php' );
|
66 |
include(dirname(__FILE__).'/my-calendar-install.php' );
|
67 |
+
include(dirname(__FILE__).'/my-calendar-upgrade-db.php' );
|
68 |
|
69 |
|
70 |
// Before we get on with the functions, we need to define the initial style used for My Calendar
|
219 |
add_action('init','my_calendar_add_display_javascript');
|
220 |
|
221 |
function my_calendar_calendar_javascript() {
|
222 |
+
global $wpdb, $wp_query;
|
223 |
+
|
224 |
$list_js = stripcslashes( get_option( 'my_calendar_listjs' ) );
|
225 |
$cal_js = stripcslashes( get_option( 'my_calendar_caljs' ) );
|
226 |
$mini_js = stripcslashes( get_option( 'my_calendar_minijs' ) );
|
230 |
} else {
|
231 |
$fouc = '';
|
232 |
}
|
233 |
+
$this_post = $wp_query->get_queried_object();
|
234 |
+
if (is_object($this_post)) {
|
235 |
+
$id = $this_post->ID;
|
236 |
+
}
|
237 |
if ( get_option( 'my_calendar_show_css' ) != '' ) {
|
238 |
$array = explode( ",",get_option( 'my_calendar_show_css' ) );
|
239 |
if (!is_array($array)) {
|
267 |
</script>
|
268 |
<?php
|
269 |
}
|
270 |
+
} else {
|
271 |
+
echo "Ha, Ha!";
|
272 |
}
|
273 |
}
|
274 |
add_action('wp_head','my_calendar_calendar_javascript');
|
386 |
|
387 |
// Function to check what version of My Calendar is installed and install if needed
|
388 |
function check_my_calendar() {
|
389 |
+
global $wpdb, $initial_style, $initial_listjs, $initial_caljs, $initial_minijs, $mini_styles;
|
390 |
$current_version = get_option('my_calendar_version');
|
391 |
// If current version matches, don't bother running this.
|
392 |
+
if ($current_version == '1.4.3') {
|
393 |
return true;
|
394 |
}
|
395 |
+
// check whether mini version styles exist in current styles, if not, add them
|
396 |
+
if (strpos(get_option('my_calendar_style'),"mini-event") === false) {
|
397 |
+
$cur_styles = get_option('my_calendar_style')."\n".$mini_styles;
|
398 |
+
update_option('my_calendar_style',$cur_styles);
|
399 |
+
}
|
400 |
+
|
401 |
// Checks to make sure My Calendar is installed, if not it adds the default
|
402 |
// database tables and populates them with test data. If it is, then the
|
403 |
// version is checked through various means and if it is not up to date
|
432 |
}
|
433 |
|
434 |
// having determined upgrade path, assign new version number
|
435 |
+
update_option( 'my_calendar_version' , '1.4.3' );
|
436 |
|
437 |
// Now we've determined what the current install is or isn't
|
438 |
if ( $new_install == true ) {
|
692 |
} else {
|
693 |
$toggle = "";
|
694 |
}
|
695 |
+
if ($type != 'list') {
|
696 |
$header_details .= "<h3 class='event-title $category'>$image".stripslashes($event->event_title)."$toggle</h3>\n";
|
697 |
+
}
|
698 |
|
699 |
$header_details .= "<div class='details'>";
|
700 |
if ($type == "calendar" ) { $header_details .= "<h3 class='close'><a href='#' class='mc-toggle mc-close'><img src='$my_calendar_directory/images/event-close.png' alt='".__('Close','my-calendar')."' /></a></h3>"; }
|
759 |
if ($i < $numcat) {
|
760 |
$select_category .= " OR ";
|
761 |
} else if ($i == $numcat) {
|
762 |
+
$select_category .= ") ";
|
763 |
}
|
764 |
$i++;
|
765 |
} else {
|
my-calendar.pot
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Translation of the WordPress plugin My Calendar 1.4.
|
2 |
# Copyright (C) 2010 Joseph C Dolson
|
3 |
# This file is distributed under the same license as the My Calendar package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
@@ -6,9 +6,9 @@
|
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"Project-Id-Version: My Calendar 1.4.
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
|
11 |
-
"POT-Creation-Date: 2010-
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -16,99 +16,99 @@ msgstr ""
|
|
16 |
"Content-Type: text/plain; charset=utf-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
|
19 |
-
#: my-calendar-categories.php:
|
20 |
msgid "Category added successfully"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: my-calendar-categories.php:
|
24 |
msgid "Category deleted successfully"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: my-calendar-categories.php:
|
28 |
msgid "Edit Category"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: my-calendar-categories.php:
|
32 |
msgid "Category Editor"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: my-calendar-categories.php:
|
36 |
-
#: my-calendar-categories.php:
|
37 |
msgid "Category Name"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: my-calendar-categories.php:
|
41 |
msgid "Category Color (Hex format)"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: my-calendar-categories.php:
|
45 |
-
#: my-calendar-categories.php:
|
46 |
msgid "Category Icon"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: my-calendar-categories.php:
|
50 |
msgid "Save Changes"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: my-calendar-categories.php:
|
54 |
msgid "Category edited successfully"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: my-calendar-categories.php:
|
58 |
-
#: my-calendar-categories.php:
|
59 |
msgid "Add Category"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: my-calendar-categories.php:
|
63 |
msgid "Add New Category"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: my-calendar-categories.php:
|
67 |
msgid "Manage Categories"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: my-calendar-categories.php:
|
71 |
-
#: my-calendar-locations.php:
|
72 |
msgid "ID"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: my-calendar-categories.php:
|
76 |
msgid "Category Color"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: my-calendar-categories.php:
|
80 |
-
#: my-calendar-event-manager.php:
|
81 |
-
#: my-calendar-locations.php:
|
82 |
msgid "Edit"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: my-calendar-categories.php:
|
86 |
-
#: my-calendar-event-manager.php:57 my-calendar-event-manager.php:
|
87 |
-
#: my-calendar-locations.php:
|
88 |
msgid "Delete"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: my-calendar-categories.php:
|
92 |
-
#: my-calendar-settings.php:
|
93 |
msgid "N/A"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: my-calendar-categories.php:
|
97 |
msgid "Are you sure you want to delete this category?"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: my-calendar-categories.php:
|
101 |
msgid "There are no categories in the database - something has gone wrong!"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: my-calendar-event-manager.php:13 my-calendar-settings.php:
|
105 |
msgid ""
|
106 |
"My Calendar has identified that you have the Calendar plugin by Kieran "
|
107 |
"O'Shea installed. You can import those events and categories into the My "
|
108 |
"Calendar database. Would you like to import these events?"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: my-calendar-event-manager.php:19 my-calendar-settings.php:
|
112 |
msgid "Import from Calendar"
|
113 |
msgstr ""
|
114 |
|
@@ -224,306 +224,306 @@ msgid ""
|
|
224 |
"database. Please investigate."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: my-calendar-event-manager.php:
|
228 |
msgid "Edit Event"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: my-calendar-event-manager.php:
|
232 |
msgid "You must provide an event id in order to edit it"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: my-calendar-event-manager.php:
|
236 |
msgid "Add Event"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: my-calendar-event-manager.php:
|
240 |
msgid "Manage Events"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: my-calendar-event-manager.php:
|
244 |
msgid "Sorry! That's an invalid event key."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: my-calendar-event-manager.php:
|
248 |
msgid "Sorry! We couldn't find an event with that ID."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: my-calendar-event-manager.php:
|
252 |
msgid "Add an Event"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: my-calendar-event-manager.php:
|
256 |
msgid "Enter your Event Information"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: my-calendar-event-manager.php:
|
260 |
msgid "Event Title"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: my-calendar-event-manager.php:
|
264 |
msgid ""
|
265 |
"Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> "
|
266 |
"allowed)"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: my-calendar-event-manager.php:
|
270 |
msgid "Event Category"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: my-calendar-event-manager.php:
|
274 |
msgid "Event Link (Optional)"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: my-calendar-event-manager.php:
|
278 |
msgid "This link will expire when the event passes."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: my-calendar-event-manager.php:
|
282 |
msgid "Start Date (YYYY-MM-DD)"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: my-calendar-event-manager.php:
|
286 |
msgid "End Date (YYYY-MM-DD) (Optional)"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: my-calendar-event-manager.php:
|
290 |
msgid "Time (hh:mm)"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: my-calendar-event-manager.php:
|
294 |
msgid ""
|
295 |
"Optional, set blank if your event is an all-day event or does not happen at "
|
296 |
"a specific time."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: my-calendar-event-manager.php:
|
300 |
msgid "Current time difference from GMT is "
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: my-calendar-event-manager.php:
|
304 |
msgid " hour(s)"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: my-calendar-event-manager.php:
|
308 |
msgid "End Time (hh:mm)"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: my-calendar-event-manager.php:
|
312 |
msgid ""
|
313 |
"Optional. End times will not be displayed on events where this is not set."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: my-calendar-event-manager.php:
|
317 |
msgid "Recurring Events"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: my-calendar-event-manager.php:
|
321 |
msgid "Repeats for"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: my-calendar-event-manager.php:
|
325 |
msgid "Units"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: my-calendar-event-manager.php:
|
329 |
msgid "Does not recur"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: my-calendar-event-manager.php:
|
333 |
msgid "Daily"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: my-calendar-event-manager.php:
|
337 |
msgid "Weekly"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: my-calendar-event-manager.php:
|
341 |
msgid "Bi-weekly"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: my-calendar-event-manager.php:
|
345 |
msgid "Monthly"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: my-calendar-event-manager.php:
|
349 |
msgid "Annually"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: my-calendar-event-manager.php:
|
353 |
msgid ""
|
354 |
"Entering 0 means forever, if a unit is selected. If the recurrance unit is "
|
355 |
"left at \"Does not recur,\" the event will not reoccur."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: my-calendar-event-manager.php:
|
359 |
-
#: my-calendar-locations.php:
|
360 |
msgid ""
|
361 |
"All location fields are optional: <em>insufficient information may result in "
|
362 |
"an inaccurate map</em>."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: my-calendar-event-manager.php:
|
366 |
msgid "Choose a preset location:"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: my-calendar-event-manager.php:
|
370 |
msgid "Add recurring locations for later use."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: my-calendar-event-manager.php:737 my-calendar-locations.php:44
|
374 |
-
#: my-calendar-locations.php:113
|
375 |
-
msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
|
376 |
-
msgstr ""
|
377 |
-
|
378 |
#: my-calendar-event-manager.php:740 my-calendar-locations.php:47
|
379 |
#: my-calendar-locations.php:116
|
380 |
-
msgid "
|
381 |
msgstr ""
|
382 |
|
383 |
#: my-calendar-event-manager.php:743 my-calendar-locations.php:50
|
384 |
#: my-calendar-locations.php:119
|
385 |
-
msgid "Street Address
|
386 |
msgstr ""
|
387 |
|
388 |
#: my-calendar-event-manager.php:746 my-calendar-locations.php:53
|
389 |
#: my-calendar-locations.php:122
|
390 |
-
msgid "
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: my-calendar-event-manager.php:
|
394 |
-
#: my-calendar-locations.php:
|
395 |
-
msgid "
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: my-calendar-event-manager.php:
|
399 |
-
#: my-calendar-locations.php:
|
400 |
-
msgid "
|
401 |
msgstr ""
|
402 |
|
403 |
#: my-calendar-event-manager.php:749 my-calendar-locations.php:56
|
404 |
#: my-calendar-locations.php:125
|
405 |
-
msgid "
|
406 |
msgstr ""
|
407 |
|
408 |
#: my-calendar-event-manager.php:752 my-calendar-locations.php:59
|
409 |
#: my-calendar-locations.php:128
|
|
|
|
|
|
|
|
|
|
|
410 |
msgid "Initial Zoom"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: my-calendar-event-manager.php:
|
414 |
-
#: my-calendar-locations.php:
|
415 |
msgid "Neighborhood"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: my-calendar-event-manager.php:
|
419 |
-
#: my-calendar-locations.php:
|
420 |
msgid "Small City"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: my-calendar-event-manager.php:
|
424 |
-
#: my-calendar-locations.php:
|
425 |
msgid "Large City"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: my-calendar-event-manager.php:
|
429 |
-
#: my-calendar-locations.php:
|
430 |
msgid "Greater Metro Area"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: my-calendar-event-manager.php:
|
434 |
-
#: my-calendar-locations.php:
|
435 |
msgid "State"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: my-calendar-event-manager.php:
|
439 |
-
#: my-calendar-locations.php:
|
440 |
msgid "Region"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: my-calendar-event-manager.php:
|
444 |
-
#: my-calendar-locations.php:
|
445 |
msgid "GPS Coordinates (optional)"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: my-calendar-event-manager.php:
|
449 |
-
#: my-calendar-locations.php:
|
450 |
msgid ""
|
451 |
"If you supply GPS coordinates for your location, they will be used in place "
|
452 |
"of any other address information to pinpoint your location."
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: my-calendar-event-manager.php:
|
456 |
-
#: my-calendar-locations.php:
|
457 |
msgid "Longitude"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: my-calendar-event-manager.php:
|
461 |
-
#: my-calendar-locations.php:
|
462 |
msgid "Latitude"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: my-calendar-event-manager.php:
|
466 |
msgid "Save Event"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: my-calendar-event-manager.php:
|
470 |
#: my-calendar-widgets.php:122
|
471 |
msgid "Title"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: my-calendar-event-manager.php:
|
475 |
msgid "Link"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: my-calendar-event-manager.php:
|
479 |
msgid "Location"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: my-calendar-event-manager.php:
|
483 |
msgid "Description"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: my-calendar-event-manager.php:
|
487 |
msgid "Start Date"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: my-calendar-event-manager.php:
|
491 |
msgid "Recurs"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: my-calendar-event-manager.php:
|
495 |
msgid "Author"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: my-calendar-event-manager.php:
|
499 |
msgid "Category"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: my-calendar-event-manager.php:
|
503 |
msgid "Edit / Delete"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: my-calendar-event-manager.php:
|
507 |
msgid "Never"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: my-calendar-event-manager.php:
|
511 |
msgid "Bi-Weekly"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: my-calendar-event-manager.php:
|
515 |
msgid "Yearly"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: my-calendar-event-manager.php:
|
519 |
msgid "Forever"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: my-calendar-event-manager.php:
|
523 |
msgid "Times"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: my-calendar-event-manager.php:
|
527 |
msgid "There are no events in the database!"
|
528 |
msgstr ""
|
529 |
|
@@ -702,43 +702,43 @@ msgid ""
|
|
702 |
"information is available. If not, will be empty."
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: my-calendar-locations.php:
|
706 |
msgid "Location added successfully"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: my-calendar-locations.php:
|
710 |
msgid "Location deleted successfully"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: my-calendar-locations.php:
|
714 |
msgid "Edit Location"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: my-calendar-locations.php:
|
718 |
msgid "Location Editor"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: my-calendar-locations.php:
|
722 |
msgid "Location edited successfully"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: my-calendar-locations.php:
|
726 |
msgid "Add Location"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: my-calendar-locations.php:
|
730 |
msgid "Add New Location"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: my-calendar-locations.php:
|
734 |
msgid "Manage Locations"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: my-calendar-locations.php:
|
738 |
msgid "There are no locations in the database yet!"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: my-calendar-locations.php:
|
742 |
msgid ""
|
743 |
"Please note: editing or deleting locations stored for re-use will have no "
|
744 |
"effect on any event previously scheduled at that location. The location "
|
@@ -766,139 +766,139 @@ msgstr ""
|
|
766 |
msgid "Settings saved"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: my-calendar-settings.php:
|
770 |
msgid "My Calendar Options"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: my-calendar-settings.php:
|
774 |
msgid "Calendar Settings"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: my-calendar-settings.php:
|
778 |
msgid "Calendar Options: Management"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: my-calendar-settings.php:
|
782 |
msgid "Choose the lowest user group that may manage events"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: my-calendar-settings.php:
|
786 |
msgid "Subscriber"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: my-calendar-settings.php:
|
790 |
msgid "Contributor"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: my-calendar-settings.php:
|
794 |
msgid "Editor"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: my-calendar-settings.php:
|
798 |
msgid "Administrator"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: my-calendar-settings.php:
|
802 |
msgid "Calendar Options: Output"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: my-calendar-settings.php:
|
806 |
msgid "Do you want to display the author name on events?"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: my-calendar-settings.php:
|
810 |
msgid "Yes"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: my-calendar-settings.php:
|
814 |
msgid "No"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: my-calendar-settings.php:
|
818 |
msgid "Display a jumpbox for changing month and year quickly?"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: my-calendar-settings.php:
|
822 |
msgid "In list mode, show how many months of events at a time:"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: my-calendar-settings.php:
|
826 |
msgid "Date format in list mode"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: my-calendar-settings.php:
|
830 |
msgid ""
|
831 |
"Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP "
|
832 |
"<code>date()</code> function</a>. Save option to update sample output."
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: my-calendar-settings.php:
|
836 |
msgid "Show Heading for Calendar"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: my-calendar-settings.php:
|
840 |
msgid "Label for events without a specific time"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: my-calendar-settings.php:
|
844 |
msgid "Previous events link text"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: my-calendar-settings.php:
|
848 |
msgid "Previous Events"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: my-calendar-settings.php:
|
852 |
msgid "Next events link text"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: my-calendar-settings.php:
|
856 |
msgid "Next Events"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: my-calendar-settings.php:
|
860 |
msgid "Additional caption text"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: my-calendar-settings.php:
|
864 |
msgid ""
|
865 |
"The calendar caption is the text containing the displayed month and year in "
|
866 |
"either list or calendar format. This text will be displayed following that "
|
867 |
"existing text."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: my-calendar-settings.php:
|
871 |
msgid "Hide category icons in output"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: my-calendar-settings.php:
|
875 |
msgid ""
|
876 |
"Show Link to Google Map (when sufficient address information is available.)"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: my-calendar-settings.php:
|
880 |
msgid "Show Event Address in Details"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: my-calendar-settings.php:
|
884 |
msgid ""
|
885 |
"Links associated with events will automatically expire after the event has "
|
886 |
"passed."
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: my-calendar-settings.php:
|
890 |
msgid "Default usage of category colors."
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: my-calendar-settings.php:
|
894 |
msgid "Apply category colors to event titles as a font color."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: my-calendar-settings.php:
|
898 |
msgid "Apply category colors to event titles as a background color."
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: my-calendar-settings.php:
|
902 |
msgid "Save Settings"
|
903 |
msgstr ""
|
904 |
|
@@ -906,83 +906,105 @@ msgstr ""
|
|
906 |
msgid "Style Settings saved"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: my-calendar-styles.php:
|
910 |
msgid "My Calendar Styles"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: my-calendar-styles.php:
|
914 |
msgid "Calendar Style Settings"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: my-calendar-styles.php:
|
918 |
msgid "Show CSS & JavaScript only on these pages (comma separated page IDs)"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: my-calendar-styles.php:
|
922 |
msgid "CSS Style Options"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: my-calendar-styles.php:
|
926 |
msgid "Reset the My Calendar stylesheet to the default"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: my-calendar-styles.php:
|
930 |
msgid "Disable My Calendar Stylesheet"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: my-calendar-styles.php:
|
934 |
msgid "Edit the stylesheet for My Calendar"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: my-calendar-styles.php:
|
938 |
-
#: my-calendar-styles.php:
|
939 |
msgid "Save"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: my-calendar-styles.php:
|
943 |
msgid "Calendar Behaviors: Calendar View"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: my-calendar-styles.php:
|
947 |
msgid "Reset the My Calendar Calendar Javascript"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: my-calendar-styles.php:
|
951 |
msgid "Disable Calendar Javascript Effects"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: my-calendar-styles.php:
|
955 |
msgid "Edit the jQuery scripts for My Calendar in Calendar format"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: my-calendar-styles.php:
|
959 |
msgid "Calendar Behaviors: List View"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: my-calendar-styles.php:
|
963 |
msgid "Reset the My Calendar List Javascript"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: my-calendar-styles.php:
|
967 |
msgid "Disable List Javascript Effects"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: my-calendar-styles.php:
|
971 |
msgid "Edit the jQuery scripts for My Calendar in List format"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: my-calendar-styles.php:
|
975 |
msgid "Calendar Behaviors: Mini Calendar View"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: my-calendar-styles.php:
|
979 |
msgid "Reset the My Calendar Mini Format Javascript"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: my-calendar-styles.php:
|
|
|
|
|
|
|
|
|
983 |
msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
|
984 |
msgstr ""
|
985 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
986 |
#: my-calendar-widgets.php:11 my-calendar-widgets.php:51
|
987 |
#: my-calendar-widgets.php:52
|
988 |
msgid "Today's Events"
|
@@ -1041,189 +1063,189 @@ msgstr ""
|
|
1041 |
msgid "There are no events currently scheduled."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: my-calendar.php:52 my-calendar.php:
|
1045 |
msgid "Settings"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: my-calendar.php:53 my-calendar.php:
|
1049 |
msgid "Help"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: my-calendar.php:
|
1053 |
msgid "Get Support"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: my-calendar.php:
|
1057 |
msgid "My Calendar Help"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: my-calendar.php:
|
1061 |
msgid "Make a Donation"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#. #-#-#-#-# plugin.pot (My Calendar 1.4.
|
1065 |
#. Plugin Name of the plugin/theme
|
1066 |
-
#: my-calendar.php:
|
1067 |
msgid "My Calendar"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: my-calendar.php:
|
1071 |
msgid "Add/Edit Events"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: my-calendar.php:
|
1075 |
msgid "Style Editor"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: my-calendar.php:
|
1079 |
msgid "Event Details"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: my-calendar.php:
|
1083 |
msgid "Close"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: my-calendar.php:
|
1087 |
msgid "Not Applicable"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: my-calendar.php:
|
1091 |
msgid "Posted by"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: my-calendar.php:
|
1095 |
msgid "Month"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: my-calendar.php:
|
1099 |
msgid "January"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: my-calendar.php:
|
1103 |
msgid "February"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: my-calendar.php:
|
1107 |
msgid "March"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: my-calendar.php:
|
1111 |
msgid "April"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: my-calendar.php:
|
1115 |
msgid "May"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: my-calendar.php:
|
1119 |
msgid "June"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: my-calendar.php:
|
1123 |
msgid "July"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: my-calendar.php:
|
1127 |
msgid "August"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: my-calendar.php:
|
1131 |
msgid "September"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: my-calendar.php:
|
1135 |
msgid "October"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: my-calendar.php:
|
1139 |
msgid "November"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: my-calendar.php:
|
1143 |
msgid "December"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: my-calendar.php:
|
1147 |
msgid "Year"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: my-calendar.php:
|
1151 |
msgid "Go"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: my-calendar.php:
|
1155 |
msgid "<abbr title=\"Sunday\">Sun</abbr>"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: my-calendar.php:
|
1159 |
msgid "<abbr title=\"Monday\">Mon</abbr>"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: my-calendar.php:
|
1163 |
msgid "<abbr title=\"Tuesday\">Tues</abbr>"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: my-calendar.php:
|
1167 |
msgid "<abbr title=\"Wednesday\">Wed</abbr>"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: my-calendar.php:
|
1171 |
msgid "<abbr title=\"Thursday\">Thur</abbr>"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: my-calendar.php:
|
1175 |
msgid "<abbr title=\"Friday\">Fri</abbr>"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: my-calendar.php:
|
1179 |
msgid "<abbr title=\"Saturday\">Sat</abbr>"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: my-calendar.php:
|
1183 |
msgid "<abbr title=\"Sunday\">S</abbr>"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: my-calendar.php:
|
1187 |
msgid "<abbr title=\"Monday\">M</abbr>"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: my-calendar.php:
|
1191 |
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: my-calendar.php:
|
1195 |
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: my-calendar.php:
|
1199 |
msgid "<abbr title=\"Thursday\">T</abbr>"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: my-calendar.php:
|
1203 |
msgid "<abbr title=\"Friday\">F</abbr>"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: my-calendar.php:
|
1207 |
msgid "<abbr title=\"Saturday\">S</abbr>"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: my-calendar.php:
|
1211 |
msgid "and"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: my-calendar.php:
|
1215 |
msgid "Calendar"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: my-calendar.php:
|
1219 |
msgid "Events in"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: my-calendar.php:
|
1223 |
msgid "There are no events scheduled during this period."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: my-calendar.php:
|
1227 |
msgid "Category Key"
|
1228 |
msgstr ""
|
1229 |
|
1 |
+
# Translation of the WordPress plugin My Calendar 1.4.3 by Joseph C Dolson.
|
2 |
# Copyright (C) 2010 Joseph C Dolson
|
3 |
# This file is distributed under the same license as the My Calendar package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: My Calendar 1.4.3\n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/my-calendar\n"
|
11 |
+
"POT-Creation-Date: 2010-08-03 17:58+0000\n"
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
16 |
"Content-Type: text/plain; charset=utf-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
|
19 |
+
#: my-calendar-categories.php:40
|
20 |
msgid "Category added successfully"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: my-calendar-categories.php:46
|
24 |
msgid "Category deleted successfully"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: my-calendar-categories.php:51 my-calendar-categories.php:66
|
28 |
msgid "Edit Category"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: my-calendar-categories.php:58
|
32 |
msgid "Category Editor"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: my-calendar-categories.php:67 my-calendar-categories.php:120
|
36 |
+
#: my-calendar-categories.php:158
|
37 |
msgid "Category Name"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: my-calendar-categories.php:68 my-calendar-categories.php:121
|
41 |
msgid "Category Color (Hex format)"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: my-calendar-categories.php:69 my-calendar-categories.php:122
|
45 |
+
#: my-calendar-categories.php:160
|
46 |
msgid "Category Icon"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: my-calendar-categories.php:91 my-calendar-locations.php:82
|
50 |
msgid "Save Changes"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: my-calendar-categories.php:101
|
54 |
msgid "Category edited successfully"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: my-calendar-categories.php:107 my-calendar-categories.php:119
|
58 |
+
#: my-calendar-categories.php:139
|
59 |
msgid "Add Category"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: my-calendar-categories.php:111
|
63 |
msgid "Add New Category"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: my-calendar-categories.php:145 my-calendar.php:169
|
67 |
msgid "Manage Categories"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: my-calendar-categories.php:157 my-calendar-event-manager.php:836
|
71 |
+
#: my-calendar-locations.php:171
|
72 |
msgid "ID"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: my-calendar-categories.php:159
|
76 |
msgid "Category Color"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: my-calendar-categories.php:161 my-calendar-categories.php:175
|
80 |
+
#: my-calendar-event-manager.php:887 my-calendar-locations.php:173
|
81 |
+
#: my-calendar-locations.php:185
|
82 |
msgid "Edit"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: my-calendar-categories.php:162 my-calendar-categories.php:181
|
86 |
+
#: my-calendar-event-manager.php:57 my-calendar-event-manager.php:887
|
87 |
+
#: my-calendar-locations.php:174 my-calendar-locations.php:186
|
88 |
msgid "Delete"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: my-calendar-categories.php:178 my-calendar-event-manager.php:873
|
92 |
+
#: my-calendar-settings.php:209 my-calendar.php:710
|
93 |
msgid "N/A"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: my-calendar-categories.php:181 my-calendar-locations.php:186
|
97 |
msgid "Are you sure you want to delete this category?"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: my-calendar-categories.php:192
|
101 |
msgid "There are no categories in the database - something has gone wrong!"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: my-calendar-event-manager.php:13 my-calendar-settings.php:249
|
105 |
msgid ""
|
106 |
"My Calendar has identified that you have the Calendar plugin by Kieran "
|
107 |
"O'Shea installed. You can import those events and categories into the My "
|
108 |
"Calendar database. Would you like to import these events?"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: my-calendar-event-manager.php:19 my-calendar-settings.php:255
|
112 |
msgid "Import from Calendar"
|
113 |
msgstr ""
|
114 |
|
224 |
"database. Please investigate."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: my-calendar-event-manager.php:531 my-calendar-event-manager.php:604
|
228 |
msgid "Edit Event"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: my-calendar-event-manager.php:535
|
232 |
msgid "You must provide an event id in order to edit it"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: my-calendar-event-manager.php:541
|
236 |
msgid "Add Event"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: my-calendar-event-manager.php:546
|
240 |
msgid "Manage Events"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: my-calendar-event-manager.php:580
|
244 |
msgid "Sorry! That's an invalid event key."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: my-calendar-event-manager.php:585
|
248 |
msgid "Sorry! We couldn't find an event with that ID."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: my-calendar-event-manager.php:604
|
252 |
msgid "Add an Event"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: my-calendar-event-manager.php:613
|
256 |
msgid "Enter your Event Information"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: my-calendar-event-manager.php:615
|
260 |
msgid "Event Title"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: my-calendar-event-manager.php:618
|
264 |
msgid ""
|
265 |
"Event Description (<abbr title=\"hypertext markup language\">HTML</abbr> "
|
266 |
"allowed)"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: my-calendar-event-manager.php:621
|
270 |
msgid "Event Category"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: my-calendar-event-manager.php:640
|
274 |
msgid "Event Link (Optional)"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: my-calendar-event-manager.php:640
|
278 |
msgid "This link will expire when the event passes."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: my-calendar-event-manager.php:643
|
282 |
msgid "Start Date (YYYY-MM-DD)"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: my-calendar-event-manager.php:646
|
286 |
msgid "End Date (YYYY-MM-DD) (Optional)"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: my-calendar-event-manager.php:649
|
290 |
msgid "Time (hh:mm)"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: my-calendar-event-manager.php:660
|
294 |
msgid ""
|
295 |
"Optional, set blank if your event is an all-day event or does not happen at "
|
296 |
"a specific time."
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: my-calendar-event-manager.php:660
|
300 |
msgid "Current time difference from GMT is "
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: my-calendar-event-manager.php:660
|
304 |
msgid " hour(s)"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: my-calendar-event-manager.php:663
|
308 |
msgid "End Time (hh:mm)"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: my-calendar-event-manager.php:674
|
312 |
msgid ""
|
313 |
"Optional. End times will not be displayed on events where this is not set."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: my-calendar-event-manager.php:678
|
317 |
msgid "Recurring Events"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: my-calendar-event-manager.php:699
|
321 |
msgid "Repeats for"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: my-calendar-event-manager.php:700
|
325 |
msgid "Units"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: my-calendar-event-manager.php:701
|
329 |
msgid "Does not recur"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: my-calendar-event-manager.php:702 my-calendar-event-manager.php:866
|
333 |
msgid "Daily"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: my-calendar-event-manager.php:703 my-calendar-event-manager.php:867
|
337 |
msgid "Weekly"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: my-calendar-event-manager.php:704
|
341 |
msgid "Bi-weekly"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: my-calendar-event-manager.php:705 my-calendar-event-manager.php:869
|
345 |
msgid "Monthly"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: my-calendar-event-manager.php:706
|
349 |
msgid "Annually"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: my-calendar-event-manager.php:708
|
353 |
msgid ""
|
354 |
"Entering 0 means forever, if a unit is selected. If the recurrance unit is "
|
355 |
"left at \"Does not recur,\" the event will not reoccur."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: my-calendar-event-manager.php:715 my-calendar-locations.php:44
|
359 |
+
#: my-calendar-locations.php:113
|
360 |
msgid ""
|
361 |
"All location fields are optional: <em>insufficient information may result in "
|
362 |
"an inaccurate map</em>."
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: my-calendar-event-manager.php:721
|
366 |
msgid "Choose a preset location:"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: my-calendar-event-manager.php:735
|
370 |
msgid "Add recurring locations for later use."
|
371 |
msgstr ""
|
372 |
|
|
|
|
|
|
|
|
|
|
|
373 |
#: my-calendar-event-manager.php:740 my-calendar-locations.php:47
|
374 |
#: my-calendar-locations.php:116
|
375 |
+
msgid "Name of Location (e.g. <em>Joe's Bar and Grill</em>)"
|
376 |
msgstr ""
|
377 |
|
378 |
#: my-calendar-event-manager.php:743 my-calendar-locations.php:50
|
379 |
#: my-calendar-locations.php:119
|
380 |
+
msgid "Street Address"
|
381 |
msgstr ""
|
382 |
|
383 |
#: my-calendar-event-manager.php:746 my-calendar-locations.php:53
|
384 |
#: my-calendar-locations.php:122
|
385 |
+
msgid "Street Address (2)"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: my-calendar-event-manager.php:749 my-calendar-locations.php:56
|
389 |
+
#: my-calendar-locations.php:125
|
390 |
+
msgid "City"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: my-calendar-event-manager.php:749 my-calendar-locations.php:56
|
394 |
+
#: my-calendar-locations.php:125
|
395 |
+
msgid "State/Province"
|
396 |
msgstr ""
|
397 |
|
398 |
#: my-calendar-event-manager.php:749 my-calendar-locations.php:56
|
399 |
#: my-calendar-locations.php:125
|
400 |
+
msgid "Postal Code"
|
401 |
msgstr ""
|
402 |
|
403 |
#: my-calendar-event-manager.php:752 my-calendar-locations.php:59
|
404 |
#: my-calendar-locations.php:128
|
405 |
+
msgid "Country"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: my-calendar-event-manager.php:755 my-calendar-locations.php:62
|
409 |
+
#: my-calendar-locations.php:131
|
410 |
msgid "Initial Zoom"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: my-calendar-event-manager.php:757 my-calendar-locations.php:64
|
414 |
+
#: my-calendar-locations.php:133
|
415 |
msgid "Neighborhood"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: my-calendar-event-manager.php:758 my-calendar-locations.php:65
|
419 |
+
#: my-calendar-locations.php:134
|
420 |
msgid "Small City"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: my-calendar-event-manager.php:759 my-calendar-locations.php:66
|
424 |
+
#: my-calendar-locations.php:135
|
425 |
msgid "Large City"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: my-calendar-event-manager.php:760 my-calendar-locations.php:67
|
429 |
+
#: my-calendar-locations.php:136
|
430 |
msgid "Greater Metro Area"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: my-calendar-event-manager.php:761 my-calendar-locations.php:68
|
434 |
+
#: my-calendar-locations.php:137
|
435 |
msgid "State"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: my-calendar-event-manager.php:762 my-calendar-locations.php:69
|
439 |
+
#: my-calendar-locations.php:138
|
440 |
msgid "Region"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: my-calendar-event-manager.php:766 my-calendar-locations.php:73
|
444 |
+
#: my-calendar-locations.php:142
|
445 |
msgid "GPS Coordinates (optional)"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: my-calendar-event-manager.php:768 my-calendar-locations.php:75
|
449 |
+
#: my-calendar-locations.php:144
|
450 |
msgid ""
|
451 |
"If you supply GPS coordinates for your location, they will be used in place "
|
452 |
"of any other address information to pinpoint your location."
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: my-calendar-event-manager.php:771 my-calendar-locations.php:78
|
456 |
+
#: my-calendar-locations.php:147
|
457 |
msgid "Longitude"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: my-calendar-event-manager.php:771 my-calendar-locations.php:78
|
461 |
+
#: my-calendar-locations.php:147
|
462 |
msgid "Latitude"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: my-calendar-event-manager.php:777
|
466 |
msgid "Save Event"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: my-calendar-event-manager.php:837 my-calendar-widgets.php:37
|
470 |
#: my-calendar-widgets.php:122
|
471 |
msgid "Title"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: my-calendar-event-manager.php:838
|
475 |
msgid "Link"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: my-calendar-event-manager.php:839 my-calendar-locations.php:172
|
479 |
msgid "Location"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: my-calendar-event-manager.php:840
|
483 |
msgid "Description"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: my-calendar-event-manager.php:841
|
487 |
msgid "Start Date"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: my-calendar-event-manager.php:842
|
491 |
msgid "Recurs"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: my-calendar-event-manager.php:843 my-calendar-settings.php:177
|
495 |
msgid "Author"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: my-calendar-event-manager.php:844
|
499 |
msgid "Category"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: my-calendar-event-manager.php:845
|
503 |
msgid "Edit / Delete"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: my-calendar-event-manager.php:865
|
507 |
msgid "Never"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: my-calendar-event-manager.php:868
|
511 |
msgid "Bi-Weekly"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: my-calendar-event-manager.php:870
|
515 |
msgid "Yearly"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: my-calendar-event-manager.php:874
|
519 |
msgid "Forever"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: my-calendar-event-manager.php:875
|
523 |
msgid "Times"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: my-calendar-event-manager.php:897
|
527 |
msgid "There are no events in the database!"
|
528 |
msgstr ""
|
529 |
|
702 |
"information is available. If not, will be empty."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: my-calendar-locations.php:21
|
706 |
msgid "Location added successfully"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: my-calendar-locations.php:25
|
710 |
msgid "Location deleted successfully"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: my-calendar-locations.php:30
|
714 |
msgid "Edit Location"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: my-calendar-locations.php:34
|
718 |
msgid "Location Editor"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: my-calendar-locations.php:93
|
722 |
msgid "Location edited successfully"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: my-calendar-locations.php:99 my-calendar-locations.php:151
|
726 |
msgid "Add Location"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: my-calendar-locations.php:103
|
730 |
msgid "Add New Location"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: my-calendar-locations.php:159 my-calendar.php:170
|
734 |
msgid "Manage Locations"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: my-calendar-locations.php:194
|
738 |
msgid "There are no locations in the database yet!"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: my-calendar-locations.php:198
|
742 |
msgid ""
|
743 |
"Please note: editing or deleting locations stored for re-use will have no "
|
744 |
"effect on any event previously scheduled at that location. The location "
|
766 |
msgid "Settings saved"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: my-calendar-settings.php:161
|
770 |
msgid "My Calendar Options"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: my-calendar-settings.php:168
|
774 |
msgid "Calendar Settings"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: my-calendar-settings.php:172
|
778 |
msgid "Calendar Options: Management"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: my-calendar-settings.php:174
|
782 |
msgid "Choose the lowest user group that may manage events"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: my-calendar-settings.php:175
|
786 |
msgid "Subscriber"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: my-calendar-settings.php:176
|
790 |
msgid "Contributor"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: my-calendar-settings.php:178
|
794 |
msgid "Editor"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: my-calendar-settings.php:179
|
798 |
msgid "Administrator"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: my-calendar-settings.php:184
|
802 |
msgid "Calendar Options: Output"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: my-calendar-settings.php:186
|
806 |
msgid "Do you want to display the author name on events?"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: my-calendar-settings.php:187 my-calendar-settings.php:194
|
810 |
msgid "Yes"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: my-calendar-settings.php:188 my-calendar-settings.php:195
|
814 |
msgid "No"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: my-calendar-settings.php:193
|
818 |
msgid "Display a jumpbox for changing month and year quickly?"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: my-calendar-settings.php:199
|
822 |
msgid "In list mode, show how many months of events at a time:"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: my-calendar-settings.php:202
|
826 |
msgid "Date format in list mode"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: my-calendar-settings.php:203
|
830 |
msgid ""
|
831 |
"Date format uses the same syntax as the <a href=\"http://php.net/date\">PHP "
|
832 |
"<code>date()</code> function</a>. Save option to update sample output."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: my-calendar-settings.php:206
|
836 |
msgid "Show Heading for Calendar"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: my-calendar-settings.php:209
|
840 |
msgid "Label for events without a specific time"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: my-calendar-settings.php:212
|
844 |
msgid "Previous events link text"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: my-calendar-settings.php:212
|
848 |
msgid "Previous Events"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: my-calendar-settings.php:215
|
852 |
msgid "Next events link text"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: my-calendar-settings.php:215
|
856 |
msgid "Next Events"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: my-calendar-settings.php:218
|
860 |
msgid "Additional caption text"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: my-calendar-settings.php:218
|
864 |
msgid ""
|
865 |
"The calendar caption is the text containing the displayed month and year in "
|
866 |
"either list or calendar format. This text will be displayed following that "
|
867 |
"existing text."
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: my-calendar-settings.php:221
|
871 |
msgid "Hide category icons in output"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: my-calendar-settings.php:224
|
875 |
msgid ""
|
876 |
"Show Link to Google Map (when sufficient address information is available.)"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: my-calendar-settings.php:227
|
880 |
msgid "Show Event Address in Details"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: my-calendar-settings.php:230
|
884 |
msgid ""
|
885 |
"Links associated with events will automatically expire after the event has "
|
886 |
"passed."
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: my-calendar-settings.php:233
|
890 |
msgid "Default usage of category colors."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: my-calendar-settings.php:234
|
894 |
msgid "Apply category colors to event titles as a font color."
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: my-calendar-settings.php:235
|
898 |
msgid "Apply category colors to event titles as a background color."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: my-calendar-settings.php:239
|
902 |
msgid "Save Settings"
|
903 |
msgstr ""
|
904 |
|
906 |
msgid "Style Settings saved"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: my-calendar-styles.php:70
|
910 |
msgid "My Calendar Styles"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: my-calendar-styles.php:74
|
914 |
msgid "Calendar Style Settings"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: my-calendar-styles.php:78
|
918 |
msgid "Show CSS & JavaScript only on these pages (comma separated page IDs)"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: my-calendar-styles.php:81
|
922 |
msgid "CSS Style Options"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: my-calendar-styles.php:83
|
926 |
msgid "Reset the My Calendar stylesheet to the default"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: my-calendar-styles.php:83
|
930 |
msgid "Disable My Calendar Stylesheet"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: my-calendar-styles.php:86
|
934 |
msgid "Edit the stylesheet for My Calendar"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: my-calendar-styles.php:89 my-calendar-styles.php:101
|
938 |
+
#: my-calendar-styles.php:113 my-calendar-styles.php:125
|
939 |
msgid "Save"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: my-calendar-styles.php:93
|
943 |
msgid "Calendar Behaviors: Calendar View"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: my-calendar-styles.php:95
|
947 |
msgid "Reset the My Calendar Calendar Javascript"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: my-calendar-styles.php:95
|
951 |
msgid "Disable Calendar Javascript Effects"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: my-calendar-styles.php:98
|
955 |
msgid "Edit the jQuery scripts for My Calendar in Calendar format"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: my-calendar-styles.php:105
|
959 |
msgid "Calendar Behaviors: List View"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: my-calendar-styles.php:107
|
963 |
msgid "Reset the My Calendar List Javascript"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: my-calendar-styles.php:107
|
967 |
msgid "Disable List Javascript Effects"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: my-calendar-styles.php:110
|
971 |
msgid "Edit the jQuery scripts for My Calendar in List format"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: my-calendar-styles.php:117
|
975 |
msgid "Calendar Behaviors: Mini Calendar View"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: my-calendar-styles.php:119
|
979 |
msgid "Reset the My Calendar Mini Format Javascript"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: my-calendar-styles.php:119
|
983 |
+
msgid "Disable Mini Javascript Effects"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: my-calendar-styles.php:122
|
987 |
msgid "Edit the jQuery scripts for My Calendar in Mini Calendar format"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: my-calendar-upgrade-db.php:19
|
991 |
+
msgid "The My Calendar database needs to be updated."
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: my-calendar-upgrade-db.php:20 my-calendar-upgrade-db.php:34
|
995 |
+
msgid "Update now"
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
+
#: my-calendar-upgrade-db.php:33
|
999 |
+
msgid ""
|
1000 |
+
"You haven't entered any events, so My Calendar can't tell whether your "
|
1001 |
+
"database needs to be updated. If you can't add events, upgrade your database!"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: my-calendar-upgrade-db.php:44
|
1005 |
+
msgid "My Calendar Database is updated."
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
#: my-calendar-widgets.php:11 my-calendar-widgets.php:51
|
1009 |
#: my-calendar-widgets.php:52
|
1010 |
msgid "Today's Events"
|
1063 |
msgid "There are no events currently scheduled."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: my-calendar.php:52 my-calendar.php:171
|
1067 |
msgid "Settings"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: my-calendar.php:53 my-calendar.php:173
|
1071 |
msgid "Help"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: my-calendar.php:76
|
1075 |
msgid "Get Support"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: my-calendar.php:77 my-calendar.php:173
|
1079 |
msgid "My Calendar Help"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: my-calendar.php:78
|
1083 |
msgid "Make a Donation"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#. #-#-#-#-# plugin.pot (My Calendar 1.4.3) #-#-#-#-#
|
1087 |
#. Plugin Name of the plugin/theme
|
1088 |
+
#: my-calendar.php:162
|
1089 |
msgid "My Calendar"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: my-calendar.php:165
|
1093 |
msgid "Add/Edit Events"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: my-calendar.php:172
|
1097 |
msgid "Style Editor"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: my-calendar.php:691
|
1101 |
msgid "Event Details"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: my-calendar.php:700
|
1105 |
msgid "Close"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: my-calendar.php:710
|
1109 |
msgid "Not Applicable"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: my-calendar.php:722
|
1113 |
msgid "Posted by"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: my-calendar.php:1287
|
1117 |
msgid "Month"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: my-calendar.php:1288 my-calendar.php:1372
|
1121 |
msgid "January"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: my-calendar.php:1289 my-calendar.php:1372
|
1125 |
msgid "February"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: my-calendar.php:1290 my-calendar.php:1372
|
1129 |
msgid "March"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: my-calendar.php:1291 my-calendar.php:1372
|
1133 |
msgid "April"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: my-calendar.php:1292 my-calendar.php:1372
|
1137 |
msgid "May"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: my-calendar.php:1293 my-calendar.php:1372
|
1141 |
msgid "June"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: my-calendar.php:1294 my-calendar.php:1372
|
1145 |
msgid "July"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: my-calendar.php:1295 my-calendar.php:1372
|
1149 |
msgid "August"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: my-calendar.php:1296 my-calendar.php:1372
|
1153 |
msgid "September"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: my-calendar.php:1297 my-calendar.php:1372
|
1157 |
msgid "October"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: my-calendar.php:1298 my-calendar.php:1372
|
1161 |
msgid "November"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: my-calendar.php:1299 my-calendar.php:1372
|
1165 |
msgid "December"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: my-calendar.php:1301
|
1169 |
msgid "Year"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: my-calendar.php:1326
|
1173 |
msgid "Go"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: my-calendar.php:1344
|
1177 |
msgid "<abbr title=\"Sunday\">Sun</abbr>"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: my-calendar.php:1345
|
1181 |
msgid "<abbr title=\"Monday\">Mon</abbr>"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: my-calendar.php:1346
|
1185 |
msgid "<abbr title=\"Tuesday\">Tues</abbr>"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: my-calendar.php:1347
|
1189 |
msgid "<abbr title=\"Wednesday\">Wed</abbr>"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: my-calendar.php:1348
|
1193 |
msgid "<abbr title=\"Thursday\">Thur</abbr>"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: my-calendar.php:1349
|
1197 |
msgid "<abbr title=\"Friday\">Fri</abbr>"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: my-calendar.php:1350
|
1201 |
msgid "<abbr title=\"Saturday\">Sat</abbr>"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: my-calendar.php:1355
|
1205 |
msgid "<abbr title=\"Sunday\">S</abbr>"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: my-calendar.php:1356
|
1209 |
msgid "<abbr title=\"Monday\">M</abbr>"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: my-calendar.php:1357
|
1213 |
msgid "<abbr title=\"Tuesday\">T</abbr>"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: my-calendar.php:1358
|
1217 |
msgid "<abbr title=\"Wednesday\">W</abbr>"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: my-calendar.php:1359
|
1221 |
msgid "<abbr title=\"Thursday\">T</abbr>"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: my-calendar.php:1360
|
1225 |
msgid "<abbr title=\"Friday\">F</abbr>"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: my-calendar.php:1361
|
1229 |
msgid "<abbr title=\"Saturday\">S</abbr>"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: my-calendar.php:1411
|
1233 |
msgid "and"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: my-calendar.php:1440 my-calendar.php:1444
|
1237 |
msgid "Calendar"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: my-calendar.php:1448
|
1241 |
msgid "Events in"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: my-calendar.php:1560
|
1245 |
msgid "There are no events scheduled during this period."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: my-calendar.php:1570
|
1249 |
msgid "Category Key"
|
1250 |
msgstr ""
|
1251 |
|
readme.txt
CHANGED
@@ -10,6 +10,8 @@ Accessible WordPress event calendar plugin. Show events from multiple calendars
|
|
10 |
|
11 |
== Description ==
|
12 |
|
|
|
|
|
13 |
This calendar is branched from [Kieran O'Shea's Calendar plugin](http://wordpress.org/extend/plugins/calendar/). The output has been pretty much completely re-written, the settings methods have been revamped, and the widgets have been completely revamped. The information you can provide for an event has been expanded to include location information. The UI has been completely revamped.
|
14 |
|
15 |
In short, there isn't actually much left of the original plugin.
|
@@ -45,7 +47,6 @@ Languages available:
|
|
45 |
* American English (Default)
|
46 |
* Brazilian Portuguese ([Daniel Prata](daniel@grudaemmim.com.br))
|
47 |
* Spanish ([Esteban Truelsegaard](http://www.netmdp.com))
|
48 |
-
* German ([Norman Scorpion](http://myscorpion.de)
|
49 |
|
50 |
== Installation ==
|
51 |
|
@@ -68,6 +69,23 @@ Languages available:
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
= 1.4.0 =
|
72 |
|
73 |
* Bug fixed: Today's Events widget was not taking internationalized time as it's argument
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
+
My Calendar provides basic event management and provides numerous methods to display your events.
|
14 |
+
|
15 |
This calendar is branched from [Kieran O'Shea's Calendar plugin](http://wordpress.org/extend/plugins/calendar/). The output has been pretty much completely re-written, the settings methods have been revamped, and the widgets have been completely revamped. The information you can provide for an event has been expanded to include location information. The UI has been completely revamped.
|
16 |
|
17 |
In short, there isn't actually much left of the original plugin.
|
47 |
* American English (Default)
|
48 |
* Brazilian Portuguese ([Daniel Prata](daniel@grudaemmim.com.br))
|
49 |
* Spanish ([Esteban Truelsegaard](http://www.netmdp.com))
|
|
|
50 |
|
51 |
== Installation ==
|
52 |
|
69 |
|
70 |
== Changelog ==
|
71 |
|
72 |
+
= 1.4.3 =
|
73 |
+
|
74 |
+
* Fixed a bug where event end times were displaying the start time instead when editing.
|
75 |
+
* Fixed a bug introduced by the mini calendar option which displayed titles twice in list format.
|
76 |
+
* Fixed a bunch of typos.
|
77 |
+
* Added a loop which automatically adds the mini calendar styles if you don't already have them.
|
78 |
+
* Fixed a bug where JS didn't run if the 'show only on certain pages' option was used.
|
79 |
+
* Added a qualifier for upgrading databases when you haven't added any events.
|
80 |
+
|
81 |
+
= 1.4.2 =
|
82 |
+
|
83 |
+
* Fixed a bug in the widget display code which caused problems displaying multiple categories.
|
84 |
+
|
85 |
+
= 1.4.1 =
|
86 |
+
|
87 |
+
* Database upgrade didn't run for some users in 1.4.0. Added manual check and upgrade if necessary.
|
88 |
+
|
89 |
= 1.4.0 =
|
90 |
|
91 |
* Bug fixed: Today's Events widget was not taking internationalized time as it's argument
|