Version Description
Fixed: Minor bugs
Fixed: Finnish translation
Download this release
Release Info
Developer | webdorado |
Plugin | Calendar by WD – Responsive Event Calendar |
Version | 1.5.37 |
Comparing to | |
See all releases |
Code changes from version 1.5.36 to 1.5.37
- calendar.php +4 -4
- front_end/bigcalendarday.php +2 -2
- front_end/bigcalendarlist.php +2 -2
- front_end/bigcalendarmonth.php +33 -22
- front_end/bigcalendarweek.php +2 -1
- languages/sp_calendar-de_DE.mo +0 -0
- languages/sp_calendar-de_DE.po +5 -5
- languages/sp_calendar-fi.mo +0 -0
- languages/sp_calendar-fi.po +6 -6
- languages/sp_calendar-sl_SI.mo +0 -0
- languages/sp_calendar-sl_SI.po +0 -351
- readme.txt +5 -1
- spider_calendar_admin_class.php +1 -1
calendar.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
Plugin Name: Spider Event Calendar
|
4 |
Plugin URI: https://web-dorado.com/products/wordpress-calendar.html
|
5 |
Description: Spider Event Calendar is a highly configurable product which allows you to have multiple organized events. Spider Event Calendar is an extraordinary user friendly extension.
|
6 |
-
Version: 1.5.
|
7 |
Author: https://web-dorado.com/
|
8 |
License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
*/
|
10 |
-
$wd_spider_calendar_version="1.5.
|
11 |
// LANGUAGE localization.
|
12 |
function sp_calendar_language_load() {
|
13 |
load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
|
@@ -1093,7 +1093,7 @@ function calendar_Featured_Plugins() { ?>
|
|
1093 |
</table>
|
1094 |
<div class="featured_header">
|
1095 |
<div>
|
1096 |
-
<a href="https://web-dorado.com/wordpress-plugins.html?source=spidercalendar">
|
1097 |
<h1>GET SPIDER CALENDAR +18 PLUGINS</h1>
|
1098 |
<h1 class="get_plugins">FOR $100 ONLY <span>- SAVE 70%</span></h1>
|
1099 |
</a>
|
@@ -1303,7 +1303,7 @@ function calendar_Featured_themes() { ?>
|
|
1303 |
</table>
|
1304 |
<div class="featured_header">
|
1305 |
<div>
|
1306 |
-
<a href="https://web-dorado.com/wordpress-themes.html?source=spidercalendar">
|
1307 |
<h1>WORDPRESS THEMES</h1>
|
1308 |
<h1 class="get_plugins">ALL FOR $40 ONLY <span>- SAVE 80%</span></h1>
|
1309 |
</a>
|
3 |
Plugin Name: Spider Event Calendar
|
4 |
Plugin URI: https://web-dorado.com/products/wordpress-calendar.html
|
5 |
Description: Spider Event Calendar is a highly configurable product which allows you to have multiple organized events. Spider Event Calendar is an extraordinary user friendly extension.
|
6 |
+
Version: 1.5.37
|
7 |
Author: https://web-dorado.com/
|
8 |
License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
*/
|
10 |
+
$wd_spider_calendar_version="1.5.37";
|
11 |
// LANGUAGE localization.
|
12 |
function sp_calendar_language_load() {
|
13 |
load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
|
1093 |
</table>
|
1094 |
<div class="featured_header">
|
1095 |
<div>
|
1096 |
+
<a href="https://web-dorado.com/wordpress-plugins.html?source=spidercalendar" target="_blank">
|
1097 |
<h1>GET SPIDER CALENDAR +18 PLUGINS</h1>
|
1098 |
<h1 class="get_plugins">FOR $100 ONLY <span>- SAVE 70%</span></h1>
|
1099 |
</a>
|
1303 |
</table>
|
1304 |
<div class="featured_header">
|
1305 |
<div>
|
1306 |
+
<a href="https://web-dorado.com/wordpress-themes.html?source=spidercalendar" target="_blank">
|
1307 |
<h1>WORDPRESS THEMES</h1>
|
1308 |
<h1 class="get_plugins">ALL FOR $40 ONLY <span>- SAVE 80%</span></h1>
|
1309 |
</a>
|
front_end/bigcalendarday.php
CHANGED
@@ -97,7 +97,7 @@ $theme = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'spide
|
|
97 |
$text_color_other_months = '#' . str_replace('#','',$theme->text_color_other_months);
|
98 |
$text_color_this_month_unevented = '#' . str_replace('#','',$theme->text_color_this_month_unevented);
|
99 |
$evented_color = '#' . str_replace('#','',$theme->text_color_this_month_evented);
|
100 |
-
$evented_color_bg = '#' . str_replace('#','',$theme->bg_color_this_month_evented);
|
101 |
$color_arrow_year = '#' . str_replace('#','',$theme->arrow_color_year);
|
102 |
$color_arrow_month = '#' . str_replace('#','',$theme->arrow_color_month);
|
103 |
$sun_days = '#' . str_replace('#','',$theme->text_color_sun_days);
|
@@ -242,8 +242,8 @@ $theme = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'spide
|
|
242 |
for ($i = 0; $i < count($activedate); $i++) {
|
243 |
$activedatestr .= $activedate[$i];
|
244 |
}
|
245 |
-
|
246 |
|
|
|
247 |
$dateformat_arrays = array("dFY", "dYF", "FYd", "FdY", "YdF", "YFd" );
|
248 |
$dates_formats = array($day . ' ' . __($month,'sp_calendar') . ' ' . $year,
|
249 |
$day . ' ' . $year . ' ' . __($month,'sp_calendar'),
|
97 |
$text_color_other_months = '#' . str_replace('#','',$theme->text_color_other_months);
|
98 |
$text_color_this_month_unevented = '#' . str_replace('#','',$theme->text_color_this_month_unevented);
|
99 |
$evented_color = '#' . str_replace('#','',$theme->text_color_this_month_evented);
|
100 |
+
$evented_color_bg = (isset($theme->bg_color_this_month_evented) ?'#' . str_replace('#','',$theme->bg_color_this_month_evented) : '');
|
101 |
$color_arrow_year = '#' . str_replace('#','',$theme->arrow_color_year);
|
102 |
$color_arrow_month = '#' . str_replace('#','',$theme->arrow_color_month);
|
103 |
$sun_days = '#' . str_replace('#','',$theme->text_color_sun_days);
|
242 |
for ($i = 0; $i < count($activedate); $i++) {
|
243 |
$activedatestr .= $activedate[$i];
|
244 |
}
|
|
|
245 |
|
246 |
+
$day_month_year = $day . ' ' . __($month,'sp_calendar') . ' ' . $year;
|
247 |
$dateformat_arrays = array("dFY", "dYF", "FYd", "FdY", "YdF", "YFd" );
|
248 |
$dates_formats = array($day . ' ' . __($month,'sp_calendar') . ' ' . $year,
|
249 |
$day . ' ' . $year . ' ' . __($month,'sp_calendar'),
|
front_end/bigcalendarlist.php
CHANGED
@@ -95,7 +95,7 @@ $cat_ids = substr($cat_ids, 0,-1);
|
|
95 |
$text_color_other_months = '#' . str_replace('#','',$theme->text_color_other_months);
|
96 |
$text_color_this_month_unevented = '#' . str_replace('#','',$theme->text_color_this_month_unevented);
|
97 |
$evented_color = '#' . str_replace('#','',$theme->text_color_this_month_evented);
|
98 |
-
$evented_color_bg = '#' . str_replace('#','',$theme->bg_color_this_month_evented);
|
99 |
$color_arrow_year = '#' . str_replace('#','',$theme->arrow_color_year);
|
100 |
$color_arrow_month = '#' . str_replace('#','',$theme->arrow_color_month);
|
101 |
$sun_days = '#' . str_replace('#','',$theme->text_color_sun_days);
|
@@ -232,7 +232,7 @@ $cat_ids = substr($cat_ids, 0,-1);
|
|
232 |
$activedatestr .= $activedate[$i];
|
233 |
}
|
234 |
|
235 |
-
|
236 |
|
237 |
?>
|
238 |
<html>
|
95 |
$text_color_other_months = '#' . str_replace('#','',$theme->text_color_other_months);
|
96 |
$text_color_this_month_unevented = '#' . str_replace('#','',$theme->text_color_this_month_unevented);
|
97 |
$evented_color = '#' . str_replace('#','',$theme->text_color_this_month_evented);
|
98 |
+
$evented_color_bg = (isset($theme->bg_color_this_month_evented) ?'#' . str_replace('#','',$theme->bg_color_this_month_evented) : '');
|
99 |
$color_arrow_year = '#' . str_replace('#','',$theme->arrow_color_year);
|
100 |
$color_arrow_month = '#' . str_replace('#','',$theme->arrow_color_month);
|
101 |
$sun_days = '#' . str_replace('#','',$theme->text_color_sun_days);
|
232 |
$activedatestr .= $activedate[$i];
|
233 |
}
|
234 |
|
235 |
+
$name_year = __($month, 'sp_calendar') .' '. $year;
|
236 |
|
237 |
?>
|
238 |
<html>
|
front_end/bigcalendarmonth.php
CHANGED
@@ -87,6 +87,8 @@ $cat_ids = substr($cat_ids, 0,-1);
|
|
87 |
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
88 |
|
89 |
$theme = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'spidercalendar_theme WHERE id=%d', $theme_id));
|
|
|
|
|
90 |
$cal_width = $theme->width;
|
91 |
$bg_top = '#' . str_replace('#','',$theme->bg_top);
|
92 |
$bg_bottom = '#' . str_replace('#','',$theme->bg_bottom);
|
@@ -97,7 +99,7 @@ $cat_ids = substr($cat_ids, 0,-1);
|
|
97 |
$text_color_other_months = '#' . str_replace('#','',$theme->text_color_other_months);
|
98 |
$text_color_this_month_unevented = '#' . str_replace('#','',$theme->text_color_this_month_unevented);
|
99 |
$evented_color = '#' . str_replace('#','',$theme->text_color_this_month_evented);
|
100 |
-
$evented_color_bg = '#' . str_replace('#','',$theme->bg_color_this_month_evented);
|
101 |
$color_arrow_year = '#' . str_replace('#','',$theme->arrow_color_year);
|
102 |
$color_arrow_month = '#' . str_replace('#','',$theme->arrow_color_month);
|
103 |
$sun_days = '#' . str_replace('#','',$theme->text_color_sun_days);
|
@@ -157,9 +159,18 @@ $cat_ids = substr($cat_ids, 0,-1);
|
|
157 |
$text_color_year = '#' . str_replace('#','',$theme->text_color_year);
|
158 |
$ev_color = '#' . str_replace('#','',$theme->event_title_color);
|
159 |
$show_event_bgcolor = '#' . str_replace('#','',$theme->show_event_bgcolor);
|
|
|
|
|
|
|
160 |
|
161 |
-
if($theme_id
|
162 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
|
164 |
__('January', 'sp_calendar');
|
165 |
__('February', 'sp_calendar');
|
@@ -530,7 +541,7 @@ echo '<style>
|
|
530 |
for ($i = 0; $i < count($activedate); $i++) {
|
531 |
$activedatestr .= $activedate[$i];
|
532 |
}
|
533 |
-
$name_year = "";
|
534 |
$dateformat_arrays = array("dFY", "dYF", "FYd", "FdY", "YdF", "YFd" );
|
535 |
$dates_formats = array('<p class="month_name">'.__($month, 'sp_calendar') .'</p> '. $year,
|
536 |
$year . ' <p class="month_name">' . __($month, 'sp_calendar').'</p>',
|
@@ -720,7 +731,7 @@ echo '<style>
|
|
720 |
'cat_id' => '',
|
721 |
'cat_ids' => $cat_ids,
|
722 |
'widget' => $widget,
|
723 |
-
), $site_url);?>','<?php echo $many_sp_calendar; ?>','<?php echo $widget; ?>')" style="text-align:center; cursor:pointer; width:100%;
|
724 |
<span style="font-size:18px;color:#FFF"><?php echo $year - 1; ?></span>
|
725 |
</div>
|
726 |
</td>
|
@@ -787,7 +798,7 @@ echo '<style>
|
|
787 |
'cat_id' => '',
|
788 |
'cat_ids' => $cat_ids,
|
789 |
'widget' => $widget,
|
790 |
-
), $site_url);?>','<?php echo $many_sp_calendar; ?>','<?php echo $widget; ?>')" style="text-align:center; cursor:pointer; width:100%;
|
791 |
<span style="font-size:18px;color:#FFF"><?php echo $year + 1; ?></span>
|
792 |
</div>
|
793 |
</td>
|
@@ -856,7 +867,7 @@ echo '<style>
|
|
856 |
echo ' <tr id="days" height="' . $cell_height . '" style="line-height:15px;">';
|
857 |
for ($i = 1; $i < $weekday_i; $i++) {
|
858 |
echo ' <td class="caltext_color_other_months" style="background-color:' . $bg_color_other_months . ' !important">
|
859 |
-
<p style="padding-right: 7px; font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px;background: '.$
|
860 |
</td>';
|
861 |
$last_month_days = $last_month_days + 1;
|
862 |
}
|
@@ -930,7 +941,7 @@ function evented_days($r, $number_of_shown_evetns, $ev_id, $i,$evented_color_bg,
|
|
930 |
if ($i == $day_REFERER and $month == $month_REFERER and $year == $year_REFERER ) {
|
931 |
echo ' <td class="cala_day" style="padding:0; margin:0;line-height:15px;" id="event_td_'.$i.'">
|
932 |
<div class="calborder_day" style=" margin:0; padding:0;">
|
933 |
-
<p style="font-size:' . $other_days_font_size . 'px; font-weight: 600; color:' . $evented_color . ';line-height:1.4;font-family: Segoe UI; background: '.$
|
934 |
$r = 0;
|
935 |
echo ' <div style="background-color:' . $ev_title_bg_color . ' !important;">';
|
936 |
for ($j = 0; $j < $k; $j++) {
|
@@ -994,8 +1005,8 @@ function evented_days($r, $number_of_shown_evetns, $ev_id, $i,$evented_color_bg,
|
|
994 |
if(!isset($border_day)) $border_day = "";
|
995 |
if ($i == date('j') and $month == date('F') and $year == date('Y')) { $border_day = $current_day_border_color;}
|
996 |
if (in_array($i,$array_days)) {
|
997 |
-
echo ' <td class="cala_day" style="overflow: hidden; padding:0; margin:0;line-height:15px; border: 2px solid ' . $current_day_border_color . ' !important" id="event_td_'.$i.'">
|
998 |
-
<p style="background-color:' . $evented_color_bg . ' !important;color:' . $evented_color . ' !important;font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px;background: '.$
|
999 |
$r = 0;
|
1000 |
echo ' <div style="background-color:' . $ev_title_bg_color . ' !important">';
|
1001 |
for ($j = 0; $j < $k; $j++) {
|
@@ -1062,8 +1073,8 @@ function evented_days($r, $number_of_shown_evetns, $ev_id, $i,$evented_color_bg,
|
|
1062 |
else
|
1063 |
|
1064 |
if (in_array($i, $array_days)) {
|
1065 |
-
echo ' <td class="cala_day" style="padding:0; margin:0;line-height:15px;" id="event_td_'.$i.'">
|
1066 |
-
<p style="background-color:' . $evented_color_bg . ' !important;color:' . $evented_color . ';font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px;background: '.$
|
1067 |
<div>';
|
1068 |
$r = 0;
|
1069 |
for ($j = 0; $j < $k; $j++) {
|
@@ -1121,7 +1132,7 @@ function evented_days($r, $number_of_shown_evetns, $ev_id, $i,$evented_color_bg,
|
|
1121 |
}
|
1122 |
else {
|
1123 |
echo ' <td class="calsun_days" style="padding:0; margin:0;line-height:1.4;font-family: Segoe UI; font-size:' . $sundays_font_size . 'px">
|
1124 |
-
<p style="background: '.$
|
1125 |
</td>';
|
1126 |
}
|
1127 |
}
|
@@ -1131,7 +1142,7 @@ function evented_days($r, $number_of_shown_evetns, $ev_id, $i,$evented_color_bg,
|
|
1131 |
|
1132 |
echo ' <td bgcolor="' . $ev_title_bg_color . '" class="cala_day" style="overflow: hidden; border: 2px solid ' . $current_day_border_color . ' !important;padding:0; margin:0;line-height:15px;" id="event_td_'.$i.'">
|
1133 |
<div class="calborder_day" style="margin:0; padding:0;">
|
1134 |
-
<p style="background-color:' . $evented_color_bg . ' !important;color:' . $evented_color . ' !important;font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px;background: '.$
|
1135 |
<div style="background-color:' . $ev_title_bg_color . ' !important">';
|
1136 |
$r = 0;
|
1137 |
for ($j = 0; $j < $k; $j++) {
|
@@ -1194,8 +1205,8 @@ function evented_days($r, $number_of_shown_evetns, $ev_id, $i,$evented_color_bg,
|
|
1194 |
|
1195 |
|
1196 |
if (in_array ($i,$array_days)) {
|
1197 |
-
echo ' <td class="cala_day" style="overflow: hidden; padding:0; margin:0;line-height:15px; border: 2px solid ' . $current_day_border_color . ' !important;" id="event_td_'.$i.'">
|
1198 |
-
<p style="background-color:' . $evented_color_bg . ' !important;color:' . $evented_color . ';font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px;background: '.$
|
1199 |
<div style="background-color:' . $ev_title_bg_color . ' !important">';
|
1200 |
$r = 0;
|
1201 |
for ($j = 0; $j < $k; $j++) {
|
@@ -1254,15 +1265,15 @@ function evented_days($r, $number_of_shown_evetns, $ev_id, $i,$evented_color_bg,
|
|
1254 |
}
|
1255 |
else {
|
1256 |
echo ' <td style="overflow: hidden; color:' . $text_color_this_month_unevented . ';padding:0; margin:0; line-height:15px; border: 2px solid ' . $current_day_border_color . ' !important; vertical-align:top;">
|
1257 |
-
<p style="font-size:'.$other_days_font_size.'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px; background: '.$
|
1258 |
</td>';
|
1259 |
}
|
1260 |
}
|
1261 |
else
|
1262 |
|
1263 |
if (in_array($i, $array_days)) {
|
1264 |
-
echo ' <td class="cala_day" style="padding:0; margin:0;line-height:15px;" id="event_td_'.$i.'">
|
1265 |
-
<p style="color:' . $evented_color . ' !important;font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4; padding-left: 5px; font-family: Segoe UI;padding-left: 5px; background: '.$
|
1266 |
$r = 0;
|
1267 |
echo ' <div class="events_div">';
|
1268 |
|
@@ -1322,7 +1333,7 @@ if (in_array($i, $array_days)) {
|
|
1322 |
}
|
1323 |
else {
|
1324 |
echo ' <td style=" color:' . $text_color_this_month_unevented . ';padding:0; margin:0; line-height:15px;border-bottom: 1px solid ' . $cell_border_color . ' !important; border-left: 1px solid ' . $cell_border_color . ' !important;vertical-align:top;">
|
1325 |
-
<p style="font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI; padding-left: 5px; background: '.$
|
1326 |
</td>';
|
1327 |
}
|
1328 |
}
|
@@ -1338,10 +1349,10 @@ if (in_array($i, $array_days)) {
|
|
1338 |
if ($weekday_i != 1) {
|
1339 |
for ($i = $weekday_i; $i <= 7; $i++) {
|
1340 |
if ($i != 7) {
|
1341 |
-
echo ' <td class="caltext_color_other_months" style="font-size:' . $other_days_font_size . 'px;line-height:1.4;font-family: Segoe UI;font-weight: 600;background-color:' . $bg_color_other_months . ' !important;"><p style="background: '.$
|
1342 |
}
|
1343 |
else {
|
1344 |
-
echo ' <td class="caltext_color_other_months" style="font-size:' . $other_days_font_size . 'px;line-height:1.4; font-weight: 600;font-family: Segoe UI; background-color:' . $bg_color_other_months . ' !important;"><p style="background: '.$
|
1345 |
}
|
1346 |
$next_i += 1;
|
1347 |
}
|
87 |
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
88 |
|
89 |
$theme = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'spidercalendar_theme WHERE id=%d', $theme_id));
|
90 |
+
$themes = $wpdb->get_results('SELECT * FROM ' . $wpdb->prefix . 'spidercalendar_theme');
|
91 |
+
$theme_name = $theme->title;
|
92 |
$cal_width = $theme->width;
|
93 |
$bg_top = '#' . str_replace('#','',$theme->bg_top);
|
94 |
$bg_bottom = '#' . str_replace('#','',$theme->bg_bottom);
|
99 |
$text_color_other_months = '#' . str_replace('#','',$theme->text_color_other_months);
|
100 |
$text_color_this_month_unevented = '#' . str_replace('#','',$theme->text_color_this_month_unevented);
|
101 |
$evented_color = '#' . str_replace('#','',$theme->text_color_this_month_evented);
|
102 |
+
$evented_color_bg = (isset($theme->bg_color_this_month_evented) ?'#' . str_replace('#','',$theme->bg_color_this_month_evented) : '');
|
103 |
$color_arrow_year = '#' . str_replace('#','',$theme->arrow_color_year);
|
104 |
$color_arrow_month = '#' . str_replace('#','',$theme->arrow_color_month);
|
105 |
$sun_days = '#' . str_replace('#','',$theme->text_color_sun_days);
|
159 |
$text_color_year = '#' . str_replace('#','',$theme->text_color_year);
|
160 |
$ev_color = '#' . str_replace('#','',$theme->event_title_color);
|
161 |
$show_event_bgcolor = '#' . str_replace('#','',$theme->show_event_bgcolor);
|
162 |
+
|
163 |
+
|
164 |
+
$themes_titles = array('1' => 'Wasabi', '2' => 'Bluejay and Orange', '3' => 'White and Blue', '4' => 'Dark', '5' => 'Red and Olive', '6' => 'Blue and Bisque', '7' => 'White and OliveDrab', '8' => 'DarkCyan and Violet', '9' => 'SteelBlue', '10' => 'PaleGreen', '11' => 'Gold and Brown', '13' => 'Shiny Blue', '12' => 'Shiny Red', '14' => 'Shiny Green', '17' => 'Shiny Orange', '18' => 'Shiny Pink', '19' => 'Shiny Purple');
|
165 |
|
166 |
+
if (isset($themes_titles[$theme_id]) && $themes_titles[$theme_id] == $theme_name && count($themes)>13) {
|
167 |
+
$date_bgcolor = "transparent";
|
168 |
+
$years_bgcolor = "background-color: #000000; filter: alpha(opacity=30); opacity: 0.3;";
|
169 |
+
}
|
170 |
+
else {
|
171 |
+
$date_bgcolor = $cell_border_color;
|
172 |
+
$years_bgcolor = "background-color: ".hex_to_rgb($views_tabs_bg_color, 0.4).";";
|
173 |
+
}
|
174 |
|
175 |
__('January', 'sp_calendar');
|
176 |
__('February', 'sp_calendar');
|
541 |
for ($i = 0; $i < count($activedate); $i++) {
|
542 |
$activedatestr .= $activedate[$i];
|
543 |
}
|
544 |
+
$name_year = '<p class="month_name">'.__($month, 'sp_calendar') .'</p> '. $year;
|
545 |
$dateformat_arrays = array("dFY", "dYF", "FYd", "FdY", "YdF", "YFd" );
|
546 |
$dates_formats = array('<p class="month_name">'.__($month, 'sp_calendar') .'</p> '. $year,
|
547 |
$year . ' <p class="month_name">' . __($month, 'sp_calendar').'</p>',
|
731 |
'cat_id' => '',
|
732 |
'cat_ids' => $cat_ids,
|
733 |
'widget' => $widget,
|
734 |
+
), $site_url);?>','<?php echo $many_sp_calendar; ?>','<?php echo $widget; ?>')" style="text-align:center; cursor:pointer; width:100%; <?php echo $years_bgcolor; ?>;">
|
735 |
<span style="font-size:18px;color:#FFF"><?php echo $year - 1; ?></span>
|
736 |
</div>
|
737 |
</td>
|
798 |
'cat_id' => '',
|
799 |
'cat_ids' => $cat_ids,
|
800 |
'widget' => $widget,
|
801 |
+
), $site_url);?>','<?php echo $many_sp_calendar; ?>','<?php echo $widget; ?>')" style="text-align:center; cursor:pointer; width:100%; <?php echo $years_bgcolor; ?>;">
|
802 |
<span style="font-size:18px;color:#FFF"><?php echo $year + 1; ?></span>
|
803 |
</div>
|
804 |
</td>
|
867 |
echo ' <tr id="days" height="' . $cell_height . '" style="line-height:15px;">';
|
868 |
for ($i = 1; $i < $weekday_i; $i++) {
|
869 |
echo ' <td class="caltext_color_other_months" style="background-color:' . $bg_color_other_months . ' !important">
|
870 |
+
<p style="padding-right: 7px; font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px;background: '.$date_bgcolor.' !important; width: 100%; padding-right: 6px;">' . $last_month_days . '</p>
|
871 |
</td>';
|
872 |
$last_month_days = $last_month_days + 1;
|
873 |
}
|
941 |
if ($i == $day_REFERER and $month == $month_REFERER and $year == $year_REFERER ) {
|
942 |
echo ' <td class="cala_day" style="padding:0; margin:0;line-height:15px;" id="event_td_'.$i.'">
|
943 |
<div class="calborder_day" style=" margin:0; padding:0;">
|
944 |
+
<p style="font-size:' . $other_days_font_size . 'px; font-weight: 600; color:' . $evented_color . ';line-height:1.4;font-family: Segoe UI; background: '.$date_bgcolor.';">' . $i . '</p>';
|
945 |
$r = 0;
|
946 |
echo ' <div style="background-color:' . $ev_title_bg_color . ' !important;">';
|
947 |
for ($j = 0; $j < $k; $j++) {
|
1005 |
if(!isset($border_day)) $border_day = "";
|
1006 |
if ($i == date('j') and $month == date('F') and $year == date('Y')) { $border_day = $current_day_border_color;}
|
1007 |
if (in_array($i,$array_days)) {
|
1008 |
+
echo ' <td class="cala_day" style="background-color:' . $ev_title_bg_color . ' !important;overflow: hidden; padding:0; margin:0;line-height:15px; border: 2px solid ' . $current_day_border_color . ' !important" id="event_td_'.$i.'">
|
1009 |
+
<p style="background-color:' . $evented_color_bg . ' !important;color:' . $evented_color . ' !important;font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px;background: '.$date_bgcolor.' !important; width: 100%; padding-right: 6px;">' . $i . '</p>';
|
1010 |
$r = 0;
|
1011 |
echo ' <div style="background-color:' . $ev_title_bg_color . ' !important">';
|
1012 |
for ($j = 0; $j < $k; $j++) {
|
1073 |
else
|
1074 |
|
1075 |
if (in_array($i, $array_days)) {
|
1076 |
+
echo ' <td class="cala_day" style="background-color:' . $ev_title_bg_color . ' !important;padding:0; margin:0;line-height:15px;" id="event_td_'.$i.'">
|
1077 |
+
<p style="background-color:' . $evented_color_bg . ' !important;color:' . $evented_color . ';font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px;background: '.$date_bgcolor.' !important; padding-right: 6px;">' . $i . '</p>
|
1078 |
<div>';
|
1079 |
$r = 0;
|
1080 |
for ($j = 0; $j < $k; $j++) {
|
1132 |
}
|
1133 |
else {
|
1134 |
echo ' <td class="calsun_days" style="padding:0; margin:0;line-height:1.4;font-family: Segoe UI; font-size:' . $sundays_font_size . 'px">
|
1135 |
+
<p style="background: '.$date_bgcolor.'; padding-left: 5px; padding-right: 6px; ">' . $i . '</p>
|
1136 |
</td>';
|
1137 |
}
|
1138 |
}
|
1142 |
|
1143 |
echo ' <td bgcolor="' . $ev_title_bg_color . '" class="cala_day" style="overflow: hidden; border: 2px solid ' . $current_day_border_color . ' !important;padding:0; margin:0;line-height:15px;" id="event_td_'.$i.'">
|
1144 |
<div class="calborder_day" style="margin:0; padding:0;">
|
1145 |
+
<p style="background-color:' . $evented_color_bg . ' !important;color:' . $evented_color . ' !important;font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px;background: '.$date_bgcolor.' !important; width: 100%; padding-left: 5px; padding-right: 6px;">' . $i . '</p>
|
1146 |
<div style="background-color:' . $ev_title_bg_color . ' !important">';
|
1147 |
$r = 0;
|
1148 |
for ($j = 0; $j < $k; $j++) {
|
1205 |
|
1206 |
|
1207 |
if (in_array ($i,$array_days)) {
|
1208 |
+
echo ' <td class="cala_day" style="background-color:' . $ev_title_bg_color . ' !important;overflow: hidden; padding:0; margin:0;line-height:15px; border: 2px solid ' . $current_day_border_color . ' !important;" id="event_td_'.$i.'">
|
1209 |
+
<p style="background-color:' . $evented_color_bg . ' !important;color:' . $evented_color . ';font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px;background: '.$date_bgcolor.' !important; width: 100%; padding-right: 6px;">' . $i . '</p>
|
1210 |
<div style="background-color:' . $ev_title_bg_color . ' !important">';
|
1211 |
$r = 0;
|
1212 |
for ($j = 0; $j < $k; $j++) {
|
1265 |
}
|
1266 |
else {
|
1267 |
echo ' <td style="overflow: hidden; color:' . $text_color_this_month_unevented . ';padding:0; margin:0; line-height:15px; border: 2px solid ' . $current_day_border_color . ' !important; vertical-align:top;">
|
1268 |
+
<p style="font-size:'.$other_days_font_size.'px; font-weight: 600;line-height:1.4;font-family: Segoe UI;padding-left: 5px; background: '.$date_bgcolor.';">' . $i . '</p>
|
1269 |
</td>';
|
1270 |
}
|
1271 |
}
|
1272 |
else
|
1273 |
|
1274 |
if (in_array($i, $array_days)) {
|
1275 |
+
echo ' <td class="cala_day" style="background-color:' . $ev_title_bg_color . ' !important;padding:0; margin:0;line-height:15px;" id="event_td_'.$i.'">
|
1276 |
+
<p style="color:' . $evented_color . ' !important;font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4; padding-left: 5px; font-family: Segoe UI;padding-left: 5px; background: '.$date_bgcolor.' !important;">' . $i . '</p>';
|
1277 |
$r = 0;
|
1278 |
echo ' <div class="events_div">';
|
1279 |
|
1333 |
}
|
1334 |
else {
|
1335 |
echo ' <td style=" color:' . $text_color_this_month_unevented . ';padding:0; margin:0; line-height:15px;border-bottom: 1px solid ' . $cell_border_color . ' !important; border-left: 1px solid ' . $cell_border_color . ' !important;vertical-align:top;">
|
1336 |
+
<p style="font-size:' . $other_days_font_size . 'px; font-weight: 600;line-height:1.4;font-family: Segoe UI; padding-left: 5px; background: '.$date_bgcolor.';">' . $i . '</p>
|
1337 |
</td>';
|
1338 |
}
|
1339 |
}
|
1349 |
if ($weekday_i != 1) {
|
1350 |
for ($i = $weekday_i; $i <= 7; $i++) {
|
1351 |
if ($i != 7) {
|
1352 |
+
echo ' <td class="caltext_color_other_months" style="font-size:' . $other_days_font_size . 'px;line-height:1.4;font-family: Segoe UI;font-weight: 600;background-color:' . $bg_color_other_months . ' !important;"><p style="background: '.$date_bgcolor.';"><span style="padding: 0px 19px 0px 5px;">' . $next_i . '</span></p></td>';
|
1353 |
}
|
1354 |
else {
|
1355 |
+
echo ' <td class="caltext_color_other_months" style="font-size:' . $other_days_font_size . 'px;line-height:1.4; font-weight: 600;font-family: Segoe UI; background-color:' . $bg_color_other_months . ' !important;"><p style="background: '.$date_bgcolor.';"><span style="padding: 0px 19px 0px 5px;">' . $next_i . '</span></p></td>';
|
1356 |
}
|
1357 |
$next_i += 1;
|
1358 |
}
|
front_end/bigcalendarweek.php
CHANGED
@@ -96,7 +96,7 @@ $cat_ids = substr($cat_ids, 0,-1);
|
|
96 |
$text_color_other_months = '#' . str_replace('#','',$theme->text_color_other_months);
|
97 |
$text_color_this_month_unevented = '#' . str_replace('#','',$theme->text_color_this_month_unevented);
|
98 |
$evented_color = '#' . str_replace('#','',$theme->text_color_this_month_evented);
|
99 |
-
$evented_color_bg = '#' . str_replace('#','',$theme->bg_color_this_month_evented);
|
100 |
$color_arrow_year = '#' . str_replace('#','',$theme->arrow_color_year);
|
101 |
$color_arrow_month = '#' . str_replace('#','',$theme->arrow_color_month);
|
102 |
$sun_days = '#' . str_replace('#','',$theme->text_color_sun_days);
|
@@ -272,6 +272,7 @@ $cat_ids = substr($cat_ids, 0,-1);
|
|
272 |
$startmonth_name = month_name($startmonth);
|
273 |
$endmonth_name = month_name($endmonth);
|
274 |
|
|
|
275 |
$dateformat_arrays = array("dFY", "dYF", "FYd", "FdY", "YdF", "YFd" );
|
276 |
$dates_formats = array(
|
277 |
$weekstartday . ' '. __($startmonth_name,'sp_calendar') . ' - ' . $weekendday .' '.__( $endmonth_name,'sp_calendar'),
|
96 |
$text_color_other_months = '#' . str_replace('#','',$theme->text_color_other_months);
|
97 |
$text_color_this_month_unevented = '#' . str_replace('#','',$theme->text_color_this_month_unevented);
|
98 |
$evented_color = '#' . str_replace('#','',$theme->text_color_this_month_evented);
|
99 |
+
$evented_color_bg = (isset($theme->bg_color_this_month_evented) ?'#' . str_replace('#','',$theme->bg_color_this_month_evented) : '');
|
100 |
$color_arrow_year = '#' . str_replace('#','',$theme->arrow_color_year);
|
101 |
$color_arrow_month = '#' . str_replace('#','',$theme->arrow_color_month);
|
102 |
$sun_days = '#' . str_replace('#','',$theme->text_color_sun_days);
|
272 |
$startmonth_name = month_name($startmonth);
|
273 |
$endmonth_name = month_name($endmonth);
|
274 |
|
275 |
+
$weekdays = $weekstartday . ' '. __($startmonth_name,'sp_calendar') . ' - ' . $weekendday .' '.__($endmonth_name,'sp_calendar');
|
276 |
$dateformat_arrays = array("dFY", "dYF", "FYd", "FdY", "YdF", "YFd" );
|
277 |
$dates_formats = array(
|
278 |
$weekstartday . ' '. __($startmonth_name,'sp_calendar') . ' - ' . $weekendday .' '.__( $endmonth_name,'sp_calendar'),
|
languages/sp_calendar-de_DE.mo
CHANGED
Binary file
|
languages/sp_calendar-de_DE.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: spider_calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2013-08-13 18:37+0400\n"
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de\n"
|
@@ -27,7 +27,7 @@ msgstr "Datum"
|
|
27 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:481
|
28 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:484
|
29 |
msgid "Repeat Every"
|
30 |
-
msgstr "Wiederholung
|
31 |
|
32 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:458
|
33 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:366
|
@@ -43,7 +43,7 @@ msgstr "Tag"
|
|
43 |
|
44 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:461
|
45 |
msgid "Week(s) on"
|
46 |
-
msgstr "Woche(n)
|
47 |
|
48 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:475
|
49 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:478
|
@@ -77,7 +77,7 @@ msgstr "Zurück zur Veranstaltungsliste"
|
|
77 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:78
|
78 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:44
|
79 |
msgid "January"
|
80 |
-
msgstr "
|
81 |
|
82 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:79
|
83 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:44
|
@@ -88,7 +88,7 @@ msgstr "Januar"
|
|
88 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:79
|
89 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:45
|
90 |
msgid "February"
|
91 |
-
msgstr "
|
92 |
|
93 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:80
|
94 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:45
|
3 |
"Project-Id-Version: spider_calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2013-08-13 18:37+0400\n"
|
6 |
+
"PO-Revision-Date: 2016-01-25 13:23+0400\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de\n"
|
27 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:481
|
28 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:484
|
29 |
msgid "Repeat Every"
|
30 |
+
msgstr "Wiederholung jeder %@"
|
31 |
|
32 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:458
|
33 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:366
|
43 |
|
44 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:461
|
45 |
msgid "Week(s) on"
|
46 |
+
msgstr "Woche (n) auf"
|
47 |
|
48 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:475
|
49 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:478
|
77 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:78
|
78 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:44
|
79 |
msgid "January"
|
80 |
+
msgstr "Jänner"
|
81 |
|
82 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:79
|
83 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:44
|
88 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:79
|
89 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:45
|
90 |
msgid "February"
|
91 |
+
msgstr "Februar"
|
92 |
|
93 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:80
|
94 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:45
|
languages/sp_calendar-fi.mo
CHANGED
Binary file
|
languages/sp_calendar-fi.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: spider_calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2013-08-13 18:25+0400\n"
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: fi\n"
|
@@ -62,7 +62,7 @@ msgstr "päälle"
|
|
62 |
|
63 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:492
|
64 |
msgid "There Is No Text For This Event"
|
65 |
-
msgstr "
|
66 |
|
67 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:509
|
68 |
msgid "Back to event list"
|
@@ -99,7 +99,7 @@ msgstr "Helmikuu"
|
|
99 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:80
|
100 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:46
|
101 |
msgid "March"
|
102 |
-
msgstr "
|
103 |
|
104 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:81
|
105 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:46
|
@@ -121,7 +121,7 @@ msgstr "Huhtikuu"
|
|
121 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:82
|
122 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:48
|
123 |
msgid "May"
|
124 |
-
msgstr "
|
125 |
|
126 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:83
|
127 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:48
|
@@ -240,12 +240,12 @@ msgstr "Kuukausi"
|
|
240 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:638
|
241 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:458
|
242 |
msgid "There are no events on this date"
|
243 |
-
msgstr "
|
244 |
|
245 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:536
|
246 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:339
|
247 |
msgid "There are no events for this month"
|
248 |
-
msgstr "
|
249 |
|
250 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:398
|
251 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:421
|
3 |
"Project-Id-Version: spider_calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2013-08-13 18:25+0400\n"
|
6 |
+
"PO-Revision-Date: 2016-03-17 11:39+0400\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: fi\n"
|
62 |
|
63 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:492
|
64 |
msgid "There Is No Text For This Event"
|
65 |
+
msgstr "Tähän tapahtumaan ei liity tekstiä"
|
66 |
|
67 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:509
|
68 |
msgid "Back to event list"
|
99 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:80
|
100 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:46
|
101 |
msgid "March"
|
102 |
+
msgstr "Maaliskuu"
|
103 |
|
104 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:81
|
105 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:46
|
121 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:82
|
122 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:48
|
123 |
msgid "May"
|
124 |
+
msgstr "Toukokuu"
|
125 |
|
126 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:83
|
127 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:48
|
240 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:638
|
241 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:458
|
242 |
msgid "There are no events on this date"
|
243 |
+
msgstr " Tälle päivälle ei ole tapahtumia"
|
244 |
|
245 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:536
|
246 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:339
|
247 |
msgid "There are no events for this month"
|
248 |
+
msgstr "Tässä kuussa ei ole tapahtumia"
|
249 |
|
250 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:398
|
251 |
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:421
|
languages/sp_calendar-sl_SI.mo
DELETED
Binary file
|
languages/sp_calendar-sl_SI.po
DELETED
@@ -1,351 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: spider_calendar\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-08-13 18:54+0400\n"
|
6 |
-
"PO-Revision-Date: 2016-02-03 11:00+0400\n"
|
7 |
-
"Last-Translator: \n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: sl_SI\n"
|
10 |
-
"MIME-Version: 1.0\n"
|
11 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
-
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
|
14 |
-
"X-Poedit-Basepath: .\n"
|
15 |
-
"X-Generator: Poedit 1.8.6\n"
|
16 |
-
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n"
|
17 |
-
"%100==3 || n%100==4 ? 2 : 3);\n"
|
18 |
-
"X-Poedit-SearchPath-0: C:/wamp/www/wordpress3.5/wp-content/plugins/"
|
19 |
-
"spider-event-calendar\n"
|
20 |
-
|
21 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:451
|
22 |
-
msgid "Date"
|
23 |
-
msgstr "Datum"
|
24 |
-
|
25 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:458
|
26 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:461
|
27 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:475
|
28 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:478
|
29 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:481
|
30 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:484
|
31 |
-
msgid "Repeat Every"
|
32 |
-
msgstr "Ponavljaj vsak"
|
33 |
-
|
34 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:458
|
35 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:366
|
36 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:228
|
37 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:364
|
38 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:205
|
39 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:263
|
40 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:201
|
41 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:387
|
42 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:235
|
43 |
-
msgid "Day"
|
44 |
-
msgstr "Dan"
|
45 |
-
|
46 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:461
|
47 |
-
msgid "Week(s) on"
|
48 |
-
msgstr "Tedensko"
|
49 |
-
|
50 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:475
|
51 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:478
|
52 |
-
msgid "Month(s) on the"
|
53 |
-
msgstr "Mesečno"
|
54 |
-
|
55 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:481
|
56 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:484
|
57 |
-
msgid "Year(s) in"
|
58 |
-
msgstr "Letno"
|
59 |
-
|
60 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:481
|
61 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:484
|
62 |
-
msgid "on the"
|
63 |
-
msgstr "na"
|
64 |
-
|
65 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:492
|
66 |
-
msgid "There Is No Text For This Event"
|
67 |
-
msgstr "Ni besedila za ta dogodek"
|
68 |
-
|
69 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/functions_for_xml_and_ajax.php:509
|
70 |
-
msgid "Back to event list"
|
71 |
-
msgstr "Nazaj na seznam dogodkov"
|
72 |
-
|
73 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:78
|
74 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:43
|
75 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:87
|
76 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:43
|
77 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:80
|
78 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:43
|
79 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:78
|
80 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:44
|
81 |
-
msgid "January"
|
82 |
-
msgstr "Januar"
|
83 |
-
|
84 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:79
|
85 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:44
|
86 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:88
|
87 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:44
|
88 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:81
|
89 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:44
|
90 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:79
|
91 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:45
|
92 |
-
msgid "February"
|
93 |
-
msgstr "Februar"
|
94 |
-
|
95 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:80
|
96 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:45
|
97 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:89
|
98 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:45
|
99 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:82
|
100 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:45
|
101 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:80
|
102 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:46
|
103 |
-
msgid "March"
|
104 |
-
msgstr "Marec"
|
105 |
-
|
106 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:81
|
107 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:46
|
108 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:90
|
109 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:46
|
110 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:83
|
111 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:46
|
112 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:81
|
113 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:47
|
114 |
-
msgid "April"
|
115 |
-
msgstr "April"
|
116 |
-
|
117 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:82
|
118 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:47
|
119 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:91
|
120 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:47
|
121 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:84
|
122 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:47
|
123 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:82
|
124 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:48
|
125 |
-
msgid "May"
|
126 |
-
msgstr "Maj"
|
127 |
-
|
128 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:83
|
129 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:48
|
130 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:92
|
131 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:48
|
132 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:85
|
133 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:48
|
134 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:83
|
135 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:49
|
136 |
-
msgid "June"
|
137 |
-
msgstr "Junij"
|
138 |
-
|
139 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:84
|
140 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:49
|
141 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:93
|
142 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:49
|
143 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:86
|
144 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:49
|
145 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:84
|
146 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:50
|
147 |
-
msgid "July"
|
148 |
-
msgstr "Julij"
|
149 |
-
|
150 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:85
|
151 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:50
|
152 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:94
|
153 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:50
|
154 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:87
|
155 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:50
|
156 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:85
|
157 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:51
|
158 |
-
msgid "August"
|
159 |
-
msgstr "Avgust"
|
160 |
-
|
161 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:86
|
162 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:51
|
163 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:95
|
164 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:51
|
165 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:88
|
166 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:51
|
167 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:86
|
168 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:52
|
169 |
-
msgid "September"
|
170 |
-
msgstr "September"
|
171 |
-
|
172 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:87
|
173 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:52
|
174 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:96
|
175 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:52
|
176 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:89
|
177 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:52
|
178 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:87
|
179 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:53
|
180 |
-
msgid "October"
|
181 |
-
msgstr "Oktober"
|
182 |
-
|
183 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:88
|
184 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:53
|
185 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:97
|
186 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:53
|
187 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:90
|
188 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:53
|
189 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:88
|
190 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:54
|
191 |
-
msgid "November"
|
192 |
-
msgstr "November"
|
193 |
-
|
194 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:89
|
195 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:54
|
196 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:98
|
197 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:54
|
198 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:91
|
199 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:54
|
200 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:89
|
201 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:55
|
202 |
-
msgid "December"
|
203 |
-
msgstr "December"
|
204 |
-
|
205 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:379
|
206 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:241
|
207 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:377
|
208 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:218
|
209 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:276
|
210 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:214
|
211 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:400
|
212 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:475
|
213 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:248
|
214 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:310
|
215 |
-
msgid "Week"
|
216 |
-
msgstr "Teden"
|
217 |
-
|
218 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:391
|
219 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:253
|
220 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:389
|
221 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:230
|
222 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:288
|
223 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:226
|
224 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:412
|
225 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:260
|
226 |
-
msgid "List"
|
227 |
-
msgstr "Seznam"
|
228 |
-
|
229 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:403
|
230 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:265
|
231 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:401
|
232 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:242
|
233 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:300
|
234 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:238
|
235 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:424
|
236 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:272
|
237 |
-
msgid "Month"
|
238 |
-
msgstr "Mesec"
|
239 |
-
|
240 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday.php:556
|
241 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarday_widget.php:378
|
242 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:638
|
243 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:458
|
244 |
-
msgid "There are no events on this date"
|
245 |
-
msgstr "Ni dogodkov na ta datum"
|
246 |
-
|
247 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist.php:536
|
248 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarlist_widget.php:339
|
249 |
-
msgid "There are no events for this month"
|
250 |
-
msgstr "Ni dogodkov v tem mesecu"
|
251 |
-
|
252 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:398
|
253 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:421
|
254 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:305
|
255 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:328
|
256 |
-
msgid "Su"
|
257 |
-
msgstr "Ned"
|
258 |
-
|
259 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:402
|
260 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:309
|
261 |
-
msgid "Mo"
|
262 |
-
msgstr "Pon"
|
263 |
-
|
264 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:405
|
265 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:312
|
266 |
-
msgid "Tu"
|
267 |
-
msgstr "Tor"
|
268 |
-
|
269 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:408
|
270 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:315
|
271 |
-
msgid "We"
|
272 |
-
msgstr "Sre"
|
273 |
-
|
274 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:411
|
275 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:318
|
276 |
-
msgid "Th"
|
277 |
-
msgstr "Čet"
|
278 |
-
|
279 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:414
|
280 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:321
|
281 |
-
msgid "Fr"
|
282 |
-
msgstr "Pet"
|
283 |
-
|
284 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:417
|
285 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:324
|
286 |
-
msgid "Sa"
|
287 |
-
msgstr "Sob"
|
288 |
-
|
289 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:508
|
290 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:558
|
291 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:612
|
292 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:667
|
293 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:718
|
294 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:771
|
295 |
-
msgid "See more"
|
296 |
-
msgstr "Poglej več"
|
297 |
-
|
298 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:927
|
299 |
-
msgid "First"
|
300 |
-
msgstr "Prvi"
|
301 |
-
|
302 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:930
|
303 |
-
msgid "Second"
|
304 |
-
msgstr "Drugi"
|
305 |
-
|
306 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:933
|
307 |
-
msgid "Third"
|
308 |
-
msgstr "Tretji"
|
309 |
-
|
310 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:936
|
311 |
-
msgid "Fourth"
|
312 |
-
msgstr "Četrti"
|
313 |
-
|
314 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:939
|
315 |
-
msgid "Last"
|
316 |
-
msgstr "Zadnji"
|
317 |
-
|
318 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:945
|
319 |
-
msgid "Monday"
|
320 |
-
msgstr "Ponedeljek"
|
321 |
-
|
322 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:948
|
323 |
-
msgid "Tuesday"
|
324 |
-
msgstr "Torek"
|
325 |
-
|
326 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:951
|
327 |
-
msgid "Wednesday"
|
328 |
-
msgstr "Sreda"
|
329 |
-
|
330 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:954
|
331 |
-
msgid "Thursday"
|
332 |
-
msgstr "Četrtek"
|
333 |
-
|
334 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:957
|
335 |
-
msgid "Friday"
|
336 |
-
msgstr "Petek"
|
337 |
-
|
338 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:960
|
339 |
-
msgid "Saturday"
|
340 |
-
msgstr "Sobota"
|
341 |
-
|
342 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/frontend_functions.php:963
|
343 |
-
msgid "Sunday"
|
344 |
-
msgstr "Nedelja"
|
345 |
-
|
346 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/views.php:760
|
347 |
-
msgid "All categories"
|
348 |
-
msgstr "Vse kategorije"
|
349 |
-
|
350 |
-
#~ msgid "No Repeat"
|
351 |
-
#~ msgstr "Без паўтору"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-calendar.html
|
|
4 |
Tags: calendar, calendars, event, event calendar, event manager, events calendar,calendar widget, event registration, event management,events, Kalender, agenda, calendario, availability calendar,o nline calendar, holiday calendar, scheduling, free calendar, Calender, upcoming events, event widget , event list, calendar localization, Organizer, editorial calendar, Interactive Calendar, news calendar, meeting, appointment, event tracking, event organizer, upcoming events widget, event page, event bookings, recurring, recurring events, conference, date, dates, schedule, times, venue, AJAX, responsive, shortcode, seminar, summit, reservation
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -142,6 +142,10 @@ Vietnamese (vi)
|
|
142 |
|
143 |
== Changelog ==
|
144 |
|
|
|
|
|
|
|
|
|
145 |
= 1.5.36 =
|
146 |
Changed: Default themes redesigned.
|
147 |
Fixed: SEO issue.
|
4 |
Tags: calendar, calendars, event, event calendar, event manager, events calendar,calendar widget, event registration, event management,events, Kalender, agenda, calendario, availability calendar,o nline calendar, holiday calendar, scheduling, free calendar, Calender, upcoming events, event widget , event list, calendar localization, Organizer, editorial calendar, Interactive Calendar, news calendar, meeting, appointment, event tracking, event organizer, upcoming events widget, event page, event bookings, recurring, recurring events, conference, date, dates, schedule, times, venue, AJAX, responsive, shortcode, seminar, summit, reservation
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 1.5.37
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
142 |
|
143 |
== Changelog ==
|
144 |
|
145 |
+
= 1.5.37 =
|
146 |
+
Fixed: Minor bugs
|
147 |
+
Fixed: Finnish translation
|
148 |
+
|
149 |
= 1.5.36 =
|
150 |
Changed: Default themes redesigned.
|
151 |
Fixed: SEO issue.
|
spider_calendar_admin_class.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
class SC_Admin {
|
4 |
public static $instance = null;
|
5 |
-
protected $version = '1.5.
|
6 |
public $prefix = "sc_";
|
7 |
protected $notices = null;
|
8 |
public static function get_instance() {
|
2 |
|
3 |
class SC_Admin {
|
4 |
public static $instance = null;
|
5 |
+
protected $version = '1.5.37';
|
6 |
public $prefix = "sc_";
|
7 |
protected $notices = null;
|
8 |
public static function get_instance() {
|