Version Description
- Added: Croatian translation
- Added: Sample data
Download this release
Release Info
Developer | webdorado |
Plugin | Event Calendar WD – Responsive Event Calendar plugin |
Version | 1.0.44 |
Comparing to | |
See all releases |
Code changes from version 1.0.43 to 1.0.44
- ecwd.php +1 -1
- ecwd_admin_class.php +76 -1
- ecwd_class.php +1 -1
- includes/ecwd-cpt-class.php +1 -15
- includes/register-settings.php +29 -0
- js/admin/editor-buttons.js +6 -0
- languages/ecwd-hr.mo +0 -0
- languages/ecwd-hr.po +1516 -0
- readme.txt +8 -3
- views/admin/ecwd-event-meta.php +78 -77
ecwd.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Event Calendar WD
|
4 |
* Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
5 |
* Description: Event Calendar WD is an easy event management and planning tool with advanced features.
|
6 |
-
* Version: 1.0.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
3 |
* Plugin Name: Event Calendar WD
|
4 |
* Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
5 |
* Description: Event Calendar WD is an easy event management and planning tool with advanced features.
|
6 |
+
* Version: 1.0.44
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
ecwd_admin_class.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
class ECWD_Admin {
|
7 |
|
8 |
protected static $instance = null;
|
9 |
-
protected $version = '1.0.
|
10 |
protected $ecwd_page = null;
|
11 |
protected $notices = null;
|
12 |
|
@@ -76,6 +76,81 @@ class ECWD_Admin {
|
|
76 |
add_option('ecwd_old_events', 0);
|
77 |
}
|
78 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
}
|
80 |
|
81 |
public static function uninstall() {
|
6 |
class ECWD_Admin {
|
7 |
|
8 |
protected static $instance = null;
|
9 |
+
protected $version = '1.0.44';
|
10 |
protected $ecwd_page = null;
|
11 |
protected $notices = null;
|
12 |
|
76 |
add_option('ecwd_old_events', 0);
|
77 |
}
|
78 |
}
|
79 |
+
$posts = get_posts(array(
|
80 |
+
'post_type' => 'ecwd_calendar'
|
81 |
+
)
|
82 |
+
);
|
83 |
+
if(count($posts) == 0){
|
84 |
+
$cal = array(
|
85 |
+
'post_title' => 'CALENDAR 1',
|
86 |
+
'post_type' => 'ecwd_calendar',
|
87 |
+
'post_status' => 'publish'
|
88 |
+
);
|
89 |
+
$ids = array();
|
90 |
+
$ids[] = wp_insert_post($cal);
|
91 |
+
update_post_meta($ids[0], 'ecwd_calendar_theme', 'calendar_grey');
|
92 |
+
$ven = array(
|
93 |
+
'post_title' => 'VENUE 1',
|
94 |
+
'post_type' => 'ecwd_venue',
|
95 |
+
'post_status' => 'publish'
|
96 |
+
);
|
97 |
+
$ids[] = wp_insert_post($ven);
|
98 |
+
update_post_meta($ids[1], 'ecwd_venue_lat_long','51.554448,-0.286331');
|
99 |
+
update_post_meta($ids[1], 'ecwd_venue_location','23A Wembley Hill Rd, Wembley, Greater London HA9 8AS, UK');
|
100 |
+
$org1 = array(
|
101 |
+
'post_title' => 'ORGANIZER 1',
|
102 |
+
'post_type' => 'ecwd_organizer',
|
103 |
+
'post_status' => 'publish'
|
104 |
+
);
|
105 |
+
$org_ids=array();
|
106 |
+
$org_ids[] = wp_insert_post($org1);
|
107 |
+
$org2 = array(
|
108 |
+
'post_title' => 'ORGANIZER 2',
|
109 |
+
'post_type' => 'ecwd_organizer',
|
110 |
+
'post_status' => 'publish'
|
111 |
+
);
|
112 |
+
$org_ids[] = wp_insert_post($org2);
|
113 |
+
$ids[] = $org_ids;
|
114 |
+
$ev1 = array(
|
115 |
+
'post_title' => 'EVENT 1',
|
116 |
+
'post_type' => 'ecwd_event',
|
117 |
+
'post_status' => 'publish'
|
118 |
+
);
|
119 |
+
$ev_ids = array();
|
120 |
+
$ev_ids[] = wp_insert_post($ev1);
|
121 |
+
date_default_timezone_set("Europe/Berlin");
|
122 |
+
$date1 = date('Y-m-d H:i');
|
123 |
+
$date2 = date("Y-m-d H:i", strtotime("+1 week"));
|
124 |
+
$date1 = str_replace('-',"/",$date1);
|
125 |
+
$date2 = str_replace('-',"/",$date2);
|
126 |
+
update_post_meta($ev_ids[0], 'ecwd_event_date_from',$date1);
|
127 |
+
update_post_meta($ev_ids[0], 'ecwd_event_date_to', $date1);
|
128 |
+
update_post_meta($ev_ids[0], 'ecwd_event_venue', $ids[1]);
|
129 |
+
update_post_meta($ev_ids[0], 'ecwd_event_location', '23A Wembley Hill Rd, Wembley, Greater London HA9 8AS, UK');
|
130 |
+
update_post_meta($ev_ids[0], 'ecwd_lat_long', '51.554448,-0.286331');
|
131 |
+
$cals=array();
|
132 |
+
$cals[0] = (string)$ids[0];
|
133 |
+
$orgs = array();
|
134 |
+
$orgs[0] = (string)$org_ids[0];
|
135 |
+
$orgs[1] = (string)$org_ids[1];
|
136 |
+
update_post_meta($ev_ids[0], 'ecwd_event_organizers', $orgs);
|
137 |
+
update_post_meta($ev_ids[0], 'ecwd_event_calendars',$cals);
|
138 |
+
$ev2 = array(
|
139 |
+
'post_title' => 'EVENT 2',
|
140 |
+
'post_type' => 'ecwd_event',
|
141 |
+
'post_status' => 'publish'
|
142 |
+
);
|
143 |
+
$ev_ids[] = wp_insert_post($ev2);
|
144 |
+
update_post_meta($ev_ids[1], 'ecwd_event_date_from',$date2);
|
145 |
+
update_post_meta($ev_ids[1], 'ecwd_event_date_to', $date2);
|
146 |
+
update_post_meta($ev_ids[1], 'ecwd_event_venue', $ids[1]);
|
147 |
+
update_post_meta($ev_ids[1], 'ecwd_event_calendars',$cals);
|
148 |
+
update_post_meta($ev_ids[1], 'ecwd_event_location', '23A Wembley Hill Rd, Wembley, Greater London HA9 8AS, UK');
|
149 |
+
update_post_meta($ev_ids[1], 'ecwd_lat_long', '51.554448,-0.286331');
|
150 |
+
update_post_meta($ev_ids[1], 'ecwd_event_organizers', $orgs);
|
151 |
+
$ids[] = $ev_ids;
|
152 |
+
update_option('auto_generated_posts',$ids);
|
153 |
+
}
|
154 |
}
|
155 |
|
156 |
public static function uninstall() {
|
ecwd_class.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
*/
|
7 |
class ECWD {
|
8 |
|
9 |
-
protected $version = '1.0.
|
10 |
protected $plugin_name = 'event-calendar-wd';
|
11 |
protected $prefix = 'ecwd';
|
12 |
protected static $instance = null;
|
6 |
*/
|
7 |
class ECWD {
|
8 |
|
9 |
+
protected $version = '1.0.44';
|
10 |
protected $plugin_name = 'event-calendar-wd';
|
11 |
protected $prefix = 'ecwd';
|
12 |
protected static $instance = null;
|
includes/ecwd-cpt-class.php
CHANGED
@@ -800,21 +800,7 @@ class ECWD_Cpt {
|
|
800 |
$ip_addr = $_SERVER['REMOTE_ADDR'];
|
801 |
$lat = '';
|
802 |
$long = '';
|
803 |
-
|
804 |
-
if ( $ip_addr == '127.0.0.1' ) {
|
805 |
-
$ip_addr = '37.157.218.77';
|
806 |
-
}
|
807 |
-
|
808 |
-
$url = 'http://www.geoplugin.net/php.gp?ip=' . $ip_addr;
|
809 |
-
if ( false == $geoplugin = get_transient( ECWD_PLUGIN_PREFIX . '_ip_' . $ip_addr ) ) {
|
810 |
-
$geoplugin = unserialize( file_get_contents( 'http://www.geoplugin.net/php.gp?ip=' . $ip_addr ) );
|
811 |
-
set_transient( ECWD_PLUGIN_PREFIX . '_ip_' . $ip_addr, $geoplugin, 12 * 60 * 60 );
|
812 |
-
}
|
813 |
-
if ( is_numeric( $geoplugin['geoplugin_latitude'] ) && is_numeric( $geoplugin['geoplugin_longitude'] ) ) {
|
814 |
-
$lat = $geoplugin['geoplugin_latitude'];
|
815 |
-
$long = $geoplugin['geoplugin_longitude'];
|
816 |
-
}
|
817 |
-
}
|
818 |
include_once( ECWD_DIR . '/views/admin/ecwd-venue-meta.php' );
|
819 |
}
|
820 |
|
800 |
$ip_addr = $_SERVER['REMOTE_ADDR'];
|
801 |
$lat = '';
|
802 |
$long = '';
|
803 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
804 |
include_once( ECWD_DIR . '/views/admin/ecwd-venue-meta.php' );
|
805 |
}
|
806 |
|
includes/register-settings.php
CHANGED
@@ -22,6 +22,27 @@ if (isset($_GET[ECWD_PLUGIN_PREFIX . '_clear_cache']) && $_GET[ECWD_PLUGIN_PREFI
|
|
22 |
}
|
23 |
}
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
/**
|
26 |
* Main function to register all of the plugin settings
|
27 |
*/
|
@@ -43,6 +64,14 @@ function ecwd_register_settings() {
|
|
43 |
/* General Settings */
|
44 |
|
45 |
'general' => array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
'time_zone' => array(
|
47 |
'id' => 'time_zone',
|
48 |
'name' => __('TimeZone', 'ecwd'),
|
22 |
}
|
23 |
}
|
24 |
|
25 |
+
if (isset($_GET[ECWD_PLUGIN_PREFIX . '_clear_autogen']) && $_GET[ECWD_PLUGIN_PREFIX . '_clear_autogen'] == 1) {
|
26 |
+
$posts = get_option('auto_generated_posts');
|
27 |
+
if($posts){
|
28 |
+
$calen_id = $posts[0];
|
29 |
+
$venue_id = $posts[1];
|
30 |
+
$org_ids = $posts[2];
|
31 |
+
$ev_ids = $posts[3];
|
32 |
+
foreach ($ev_ids as $id)
|
33 |
+
wp_delete_post($id,true);
|
34 |
+
foreach ($org_ids as $id)
|
35 |
+
wp_delete_post($id,true);
|
36 |
+
wp_delete_post($venue_id,true);
|
37 |
+
wp_delete_post($calen_id,true);
|
38 |
+
delete_option('auto_generated_posts');
|
39 |
+
echo '<div class= "updated" ><p> ' . __('Auto generated data has been deleted.', 'ecwd') . '</p></div>';
|
40 |
+
}
|
41 |
+
else{
|
42 |
+
echo '<div class= "updated" ><p> ' . __('Auto generated data has already deleted.', 'ecwd') . '</p></div>';
|
43 |
+
}
|
44 |
+
}
|
45 |
+
|
46 |
/**
|
47 |
* Main function to register all of the plugin settings
|
48 |
*/
|
64 |
/* General Settings */
|
65 |
|
66 |
'general' => array(
|
67 |
+
'clear_auto_gen' => array(
|
68 |
+
'id' => 'clear_auto_gen',
|
69 |
+
'name' => __('Clear auto generated data', 'ecwd'),
|
70 |
+
'desc' => __('Click to clear auto generated data', 'ecwd'),
|
71 |
+
'size' => 'small-text',
|
72 |
+
'type' => 'link',
|
73 |
+
'href' => $_SERVER['REQUEST_URI'] . '&ecwd_clear_autogen=1'
|
74 |
+
),
|
75 |
'time_zone' => array(
|
76 |
'id' => 'time_zone',
|
77 |
'name' => __('TimeZone', 'ecwd'),
|
js/admin/editor-buttons.js
CHANGED
@@ -270,6 +270,12 @@
|
|
270 |
label: 'Enable event search',
|
271 |
checked: event_search,
|
272 |
tooltip: 'Enable event search'
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
}
|
274 |
]
|
275 |
},
|
270 |
label: 'Enable event search',
|
271 |
checked: event_search,
|
272 |
tooltip: 'Enable event search'
|
273 |
+
},
|
274 |
+
{
|
275 |
+
type: 'container',
|
276 |
+
name: 'href',
|
277 |
+
style: 'color:#bf1b02',
|
278 |
+
html: '<a href="https://web-dorado.com/products/wordpress-event-calendar-wd.html" target="_blank">Upgrade to PRO version.</a>'
|
279 |
}
|
280 |
]
|
281 |
},
|
languages/ecwd-hr.mo
ADDED
Binary file
|
languages/ecwd-hr.po
ADDED
@@ -0,0 +1,1516 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2016-01-19 13:43+0400\n"
|
5 |
+
"PO-Revision-Date: 2016-01-19 13:49+0400\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: hr\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.6\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
15 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
18 |
+
"X-Poedit-SearchPathExcluded-1: js\n"
|
19 |
+
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
20 |
+
"X-Poedit-SearchPathExcluded-3: includes/register-settings.php\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-4: includes/ecwd-ical-events-class.php\n"
|
22 |
+
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
23 |
+
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
24 |
+
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
25 |
+
|
26 |
+
#: ecwd_class.php:54
|
27 |
+
msgid "Could not load the localization file: "
|
28 |
+
msgstr "Nije moguće učitati datoteku lokalizacije:"
|
29 |
+
|
30 |
+
#: ecwd_class.php:138 includes/ecwd-functions.php:11
|
31 |
+
msgid "Loading..."
|
32 |
+
msgstr "Učitavanje..."
|
33 |
+
|
34 |
+
#: includes/calendar-class.php:204 includes/calendar-class.php:205
|
35 |
+
#: views/widgets.php:168
|
36 |
+
msgid "Month"
|
37 |
+
msgstr "Mjesec"
|
38 |
+
|
39 |
+
#: includes/calendar-class.php:206 views/widgets.php:169
|
40 |
+
msgid "List"
|
41 |
+
msgstr "Lista"
|
42 |
+
|
43 |
+
#: includes/calendar-class.php:208 views/widgets.php:170
|
44 |
+
msgid "Week"
|
45 |
+
msgstr "Tjedan"
|
46 |
+
|
47 |
+
#: includes/calendar-class.php:212 views/widgets.php:171
|
48 |
+
msgid "Day"
|
49 |
+
msgstr "Dan"
|
50 |
+
|
51 |
+
#: includes/calendar-class.php:215
|
52 |
+
msgid "Map"
|
53 |
+
msgstr "Mapa"
|
54 |
+
|
55 |
+
#: includes/calendar-class.php:217
|
56 |
+
msgid "4 Days"
|
57 |
+
msgstr "4 dana"
|
58 |
+
|
59 |
+
#: includes/calendar-class.php:220
|
60 |
+
msgid "Posterboard"
|
61 |
+
msgstr "Posterboard"
|
62 |
+
|
63 |
+
#: includes/calendar-class.php:421 includes/calendar-class.php:461
|
64 |
+
#: includes/calendar-class.php:621 includes/calendar-class.php:1238
|
65 |
+
#: includes/calendar-class.php:1383 includes/ecwd-functions.php:414
|
66 |
+
#: views/ecwd-event-content.php:81 views/ecwd-event-content.php:168
|
67 |
+
#: views/ecwd-event-popup.php:151 views/ecwd-event-popup.php:249
|
68 |
+
#: views/ecwd-organizer-content.php:150 views/ecwd-venue-content.php:183
|
69 |
+
#: views/single-event.php:176 views/single-event.php:283
|
70 |
+
#: views/single-event.php:524
|
71 |
+
msgid "All day"
|
72 |
+
msgstr "Cijeli dan"
|
73 |
+
|
74 |
+
#: includes/calendar-class.php:484 includes/calendar-class.php:569
|
75 |
+
#: includes/calendar-class.php:1441
|
76 |
+
msgid "No events"
|
77 |
+
msgstr "Nema događanja"
|
78 |
+
|
79 |
+
#: includes/calendar-class.php:694
|
80 |
+
msgid "No Events"
|
81 |
+
msgstr "Nema Događanja"
|
82 |
+
|
83 |
+
#: includes/calendar-class.php:1316
|
84 |
+
msgid "More events"
|
85 |
+
msgstr "Više događanja"
|
86 |
+
|
87 |
+
#: includes/ecwd-cpt-filter.php:67
|
88 |
+
msgid "From"
|
89 |
+
msgstr "Od"
|
90 |
+
|
91 |
+
#: includes/ecwd-cpt-filter.php:74
|
92 |
+
msgid "To"
|
93 |
+
msgstr "Za"
|
94 |
+
|
95 |
+
#: includes/ecwd-display-class.php:856 includes/ecwd-display-class.php:862
|
96 |
+
#: includes/ecwd-display-class.php:880 includes/ecwd-display-class.php:897
|
97 |
+
#: includes/texts.php:60
|
98 |
+
msgid "Repeat every"
|
99 |
+
msgstr "Ponovite svaki"
|
100 |
+
|
101 |
+
#: includes/ecwd-display-class.php:856 includes/texts.php:66
|
102 |
+
msgid "days"
|
103 |
+
msgstr "dana"
|
104 |
+
|
105 |
+
#: includes/ecwd-display-class.php:858 includes/texts.php:61
|
106 |
+
msgid "Repeat every day"
|
107 |
+
msgstr "Ponovite svaki dan"
|
108 |
+
|
109 |
+
#: includes/ecwd-display-class.php:862 includes/texts.php:67
|
110 |
+
msgid "weeks"
|
111 |
+
msgstr "tjedana"
|
112 |
+
|
113 |
+
#: includes/ecwd-display-class.php:864 includes/texts.php:62
|
114 |
+
msgid "Repeat every week"
|
115 |
+
msgstr "Ponovite svaki tjedan"
|
116 |
+
|
117 |
+
#: includes/ecwd-display-class.php:869
|
118 |
+
msgid "on"
|
119 |
+
msgstr "na"
|
120 |
+
|
121 |
+
#: includes/ecwd-display-class.php:880 includes/texts.php:68
|
122 |
+
msgid "months"
|
123 |
+
msgstr "mjeseci"
|
124 |
+
|
125 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:63
|
126 |
+
msgid "Repeat every month"
|
127 |
+
msgstr "Ponovite svaki mjesec"
|
128 |
+
|
129 |
+
#: includes/ecwd-display-class.php:887 includes/ecwd-display-class.php:911
|
130 |
+
msgid "on the same day"
|
131 |
+
msgstr "na isti dan"
|
132 |
+
|
133 |
+
#: includes/ecwd-display-class.php:892 includes/ecwd-display-class.php:916
|
134 |
+
msgid "on the"
|
135 |
+
msgstr "na"
|
136 |
+
|
137 |
+
#: includes/ecwd-display-class.php:897 includes/texts.php:69
|
138 |
+
msgid "years"
|
139 |
+
msgstr "godine"
|
140 |
+
|
141 |
+
#: includes/ecwd-display-class.php:899 includes/texts.php:64
|
142 |
+
msgid "Repeat every year"
|
143 |
+
msgstr "Ponovite svake godine"
|
144 |
+
|
145 |
+
#: includes/ecwd-display-class.php:920 includes/texts.php:70
|
146 |
+
msgid "until"
|
147 |
+
msgstr "do"
|
148 |
+
|
149 |
+
#: includes/ecwd-event-class.php:188
|
150 |
+
#, php-format
|
151 |
+
msgid "%s year"
|
152 |
+
msgstr "%s godinu"
|
153 |
+
|
154 |
+
#: includes/ecwd-event-class.php:188
|
155 |
+
#, php-format
|
156 |
+
msgid "%s years"
|
157 |
+
msgstr "%s godina"
|
158 |
+
|
159 |
+
#: includes/ecwd-event-class.php:189
|
160 |
+
#, php-format
|
161 |
+
msgid "%s month"
|
162 |
+
msgstr "%s mjesec"
|
163 |
+
|
164 |
+
#: includes/ecwd-event-class.php:189
|
165 |
+
#, php-format
|
166 |
+
msgid "%s months"
|
167 |
+
msgstr "%s mjeseci"
|
168 |
+
|
169 |
+
#: includes/ecwd-event-class.php:190
|
170 |
+
#, php-format
|
171 |
+
msgid "%s week"
|
172 |
+
msgstr "%s tjedna"
|
173 |
+
|
174 |
+
#: includes/ecwd-event-class.php:190
|
175 |
+
#, php-format
|
176 |
+
msgid "%s weeks"
|
177 |
+
msgstr "%s tjedana"
|
178 |
+
|
179 |
+
#: includes/ecwd-event-class.php:191
|
180 |
+
#, php-format
|
181 |
+
msgid "%s day"
|
182 |
+
msgstr "%s dana"
|
183 |
+
|
184 |
+
#: includes/ecwd-event-class.php:191
|
185 |
+
#, php-format
|
186 |
+
msgid "%s days"
|
187 |
+
msgstr "%s dana"
|
188 |
+
|
189 |
+
#: includes/ecwd-event-class.php:192
|
190 |
+
#, php-format
|
191 |
+
msgid "%s hour"
|
192 |
+
msgstr "%s sat"
|
193 |
+
|
194 |
+
#: includes/ecwd-event-class.php:192
|
195 |
+
#, php-format
|
196 |
+
msgid "%s hours"
|
197 |
+
msgstr "%s sati"
|
198 |
+
|
199 |
+
#: includes/ecwd-event-class.php:193
|
200 |
+
#, php-format
|
201 |
+
msgid "%s min"
|
202 |
+
msgstr "%s min"
|
203 |
+
|
204 |
+
#: includes/ecwd-event-class.php:193
|
205 |
+
#, php-format
|
206 |
+
msgid "%s mins"
|
207 |
+
msgstr "%s mina"
|
208 |
+
|
209 |
+
#: includes/ecwd-functions.php:495 includes/texts.php:53
|
210 |
+
msgid "DAYS"
|
211 |
+
msgstr "DANI"
|
212 |
+
|
213 |
+
#: includes/ecwd-functions.php:496 includes/texts.php:54
|
214 |
+
msgid "HOURS"
|
215 |
+
msgstr "SATI"
|
216 |
+
|
217 |
+
#: includes/ecwd-functions.php:497 includes/texts.php:55
|
218 |
+
msgid "MINUTES"
|
219 |
+
msgstr "MINUTE"
|
220 |
+
|
221 |
+
#: includes/ecwd-functions.php:498 includes/texts.php:56
|
222 |
+
msgid "SECONDS"
|
223 |
+
msgstr "SEKUNDE"
|
224 |
+
|
225 |
+
#: includes/notices.php:20
|
226 |
+
msgid "Leave A Review?"
|
227 |
+
msgstr "Ostavite recenziju?"
|
228 |
+
|
229 |
+
#: includes/notices.php:21
|
230 |
+
msgid ""
|
231 |
+
"We hope you've enjoyed using Event Calendar WD! Would you consider leaving "
|
232 |
+
"us a review on WordPress.org?"
|
233 |
+
msgstr ""
|
234 |
+
"Nadamo se da ste uživali koristeći Event Calendar WD! Biste li nam ostavili "
|
235 |
+
"recenziju na WordPress.org?"
|
236 |
+
|
237 |
+
#: includes/notices.php:22
|
238 |
+
msgid "Sure! I'd love to!"
|
239 |
+
msgstr "Naravno! Volio bih!"
|
240 |
+
|
241 |
+
#: includes/notices.php:23
|
242 |
+
msgid "I've already left a review"
|
243 |
+
msgstr "Već sam ostavio recenziju"
|
244 |
+
|
245 |
+
#: includes/notices.php:24
|
246 |
+
msgid "Maybe Later"
|
247 |
+
msgstr "Možda kasnije"
|
248 |
+
|
249 |
+
#: includes/notices.php:25 includes/notices.php:37
|
250 |
+
msgid "Never show again"
|
251 |
+
msgstr "Ne prikazuj ponovo"
|
252 |
+
|
253 |
+
#: includes/notices.php:33
|
254 |
+
msgid "Hey! How's It Going?"
|
255 |
+
msgstr "Hej! Kako ide?"
|
256 |
+
|
257 |
+
#: includes/notices.php:34
|
258 |
+
msgid ""
|
259 |
+
"Thank you for using Events Calendar WD! We hope that you've found everything "
|
260 |
+
"you need, but if you have any questions:"
|
261 |
+
msgstr ""
|
262 |
+
"Hvala što koristite Events Calendar WD! Nadamo se da ste pronašli sve što "
|
263 |
+
"vam je potrebno, ali ako imate bilo kakvih pitanja:"
|
264 |
+
|
265 |
+
#: includes/notices.php:35
|
266 |
+
msgid "Check out User Guide"
|
267 |
+
msgstr "Pogledajte Vodič za korisnike"
|
268 |
+
|
269 |
+
#: includes/notices.php:36
|
270 |
+
msgid "Get Some Help"
|
271 |
+
msgstr "Potražite pomoć"
|
272 |
+
|
273 |
+
#: includes/texts.php:2
|
274 |
+
msgid "January"
|
275 |
+
msgstr "Siječanj"
|
276 |
+
|
277 |
+
#: includes/texts.php:3
|
278 |
+
msgid "February"
|
279 |
+
msgstr "Veljača"
|
280 |
+
|
281 |
+
#: includes/texts.php:4
|
282 |
+
msgid "March"
|
283 |
+
msgstr "Ožujak"
|
284 |
+
|
285 |
+
#: includes/texts.php:5
|
286 |
+
msgid "April"
|
287 |
+
msgstr "Travanj"
|
288 |
+
|
289 |
+
#: includes/texts.php:6 includes/texts.php:84
|
290 |
+
msgid "May"
|
291 |
+
msgstr "Svibanj"
|
292 |
+
|
293 |
+
#: includes/texts.php:7
|
294 |
+
msgid "June"
|
295 |
+
msgstr "Lipanj"
|
296 |
+
|
297 |
+
#: includes/texts.php:8
|
298 |
+
msgid "July"
|
299 |
+
msgstr "Srpanj"
|
300 |
+
|
301 |
+
#: includes/texts.php:9
|
302 |
+
msgid "August"
|
303 |
+
msgstr "Kolovoz"
|
304 |
+
|
305 |
+
#: includes/texts.php:10
|
306 |
+
msgid "September"
|
307 |
+
msgstr "Rujan"
|
308 |
+
|
309 |
+
#: includes/texts.php:11
|
310 |
+
msgid "October"
|
311 |
+
msgstr "Listopad"
|
312 |
+
|
313 |
+
#: includes/texts.php:12
|
314 |
+
msgid "November"
|
315 |
+
msgstr "Studeni"
|
316 |
+
|
317 |
+
#: includes/texts.php:13
|
318 |
+
msgid "December"
|
319 |
+
msgstr "Prosinac"
|
320 |
+
|
321 |
+
#: includes/texts.php:15
|
322 |
+
msgid "Sunday"
|
323 |
+
msgstr "Nedjelja"
|
324 |
+
|
325 |
+
#: includes/texts.php:16
|
326 |
+
msgid "Monday"
|
327 |
+
msgstr "Ponedjeljak"
|
328 |
+
|
329 |
+
#: includes/texts.php:17
|
330 |
+
msgid "Tuesday"
|
331 |
+
msgstr "Utorak"
|
332 |
+
|
333 |
+
#: includes/texts.php:18
|
334 |
+
msgid "Wednesday"
|
335 |
+
msgstr "Srijeda"
|
336 |
+
|
337 |
+
#: includes/texts.php:19
|
338 |
+
msgid "Thursday"
|
339 |
+
msgstr "Četvrtak"
|
340 |
+
|
341 |
+
#: includes/texts.php:20
|
342 |
+
msgid "Friday"
|
343 |
+
msgstr "Petak"
|
344 |
+
|
345 |
+
#: includes/texts.php:21
|
346 |
+
msgid "Saturday"
|
347 |
+
msgstr "Subota"
|
348 |
+
|
349 |
+
#: includes/texts.php:25
|
350 |
+
msgid "Sun"
|
351 |
+
msgstr "Ned"
|
352 |
+
|
353 |
+
#: includes/texts.php:26
|
354 |
+
msgid "Mon"
|
355 |
+
msgstr "Pon"
|
356 |
+
|
357 |
+
#: includes/texts.php:27
|
358 |
+
msgid "Tue"
|
359 |
+
msgstr "Uto"
|
360 |
+
|
361 |
+
#: includes/texts.php:28
|
362 |
+
msgid "Wed"
|
363 |
+
msgstr "Sri"
|
364 |
+
|
365 |
+
#: includes/texts.php:29
|
366 |
+
msgid "Thu"
|
367 |
+
msgstr "Čet"
|
368 |
+
|
369 |
+
#: includes/texts.php:30
|
370 |
+
msgid "Fri"
|
371 |
+
msgstr "Pet"
|
372 |
+
|
373 |
+
#: includes/texts.php:31
|
374 |
+
msgid "Sat"
|
375 |
+
msgstr "Sub"
|
376 |
+
|
377 |
+
#: includes/texts.php:34
|
378 |
+
msgid "Su"
|
379 |
+
msgstr "N"
|
380 |
+
|
381 |
+
#: includes/texts.php:35
|
382 |
+
msgid "Mo"
|
383 |
+
msgstr "P"
|
384 |
+
|
385 |
+
#: includes/texts.php:36
|
386 |
+
msgid "Tu"
|
387 |
+
msgstr "U"
|
388 |
+
|
389 |
+
#: includes/texts.php:37
|
390 |
+
msgid "We"
|
391 |
+
msgstr "S"
|
392 |
+
|
393 |
+
#: includes/texts.php:38
|
394 |
+
msgid "Th"
|
395 |
+
msgstr "Č"
|
396 |
+
|
397 |
+
#: includes/texts.php:39
|
398 |
+
msgid "Fr"
|
399 |
+
msgstr "P"
|
400 |
+
|
401 |
+
#: includes/texts.php:40
|
402 |
+
msgid "Sa"
|
403 |
+
msgstr "S"
|
404 |
+
|
405 |
+
#: includes/texts.php:44
|
406 |
+
msgid "Show Filters"
|
407 |
+
msgstr "Pokaži filtre"
|
408 |
+
|
409 |
+
#: includes/texts.php:45
|
410 |
+
msgid "Collapse Filters"
|
411 |
+
msgstr "Sažmi filtre"
|
412 |
+
|
413 |
+
#: includes/texts.php:46
|
414 |
+
msgid "Reset Filters"
|
415 |
+
msgstr "Resetiraj filtre"
|
416 |
+
|
417 |
+
#: includes/texts.php:48
|
418 |
+
msgid "Days"
|
419 |
+
msgstr "Dani"
|
420 |
+
|
421 |
+
#: includes/texts.php:49
|
422 |
+
msgid "Categories"
|
423 |
+
msgstr "Kategorije"
|
424 |
+
|
425 |
+
#: includes/texts.php:50
|
426 |
+
msgid "Venues"
|
427 |
+
msgstr "Mjesta održavanja"
|
428 |
+
|
429 |
+
#: includes/texts.php:57
|
430 |
+
msgid "The event has just started"
|
431 |
+
msgstr "Događanje je upravo počelo"
|
432 |
+
|
433 |
+
#: includes/texts.php:72
|
434 |
+
msgid "Sundays"
|
435 |
+
msgstr "Nedjeljom"
|
436 |
+
|
437 |
+
#: includes/texts.php:73
|
438 |
+
msgid "Mondays"
|
439 |
+
msgstr "Ponedjeljkom"
|
440 |
+
|
441 |
+
#: includes/texts.php:74
|
442 |
+
msgid "Tuesdays"
|
443 |
+
msgstr "Utorkom"
|
444 |
+
|
445 |
+
#: includes/texts.php:75
|
446 |
+
msgid "Wednesdays"
|
447 |
+
msgstr "Srijedom"
|
448 |
+
|
449 |
+
#: includes/texts.php:76
|
450 |
+
msgid "Thursdays"
|
451 |
+
msgstr "Četvrtkom"
|
452 |
+
|
453 |
+
#: includes/texts.php:77
|
454 |
+
msgid "Fridays"
|
455 |
+
msgstr "Petkom"
|
456 |
+
|
457 |
+
#: includes/texts.php:78
|
458 |
+
msgid "Saturdays"
|
459 |
+
msgstr "Subotom"
|
460 |
+
|
461 |
+
#: includes/texts.php:80
|
462 |
+
msgid "Jan"
|
463 |
+
msgstr "Sij"
|
464 |
+
|
465 |
+
#: includes/texts.php:81
|
466 |
+
msgid "Feb"
|
467 |
+
msgstr "Velj"
|
468 |
+
|
469 |
+
#: includes/texts.php:82
|
470 |
+
msgid "Mar"
|
471 |
+
msgstr "Ožu"
|
472 |
+
|
473 |
+
#: includes/texts.php:83
|
474 |
+
msgid "Apr"
|
475 |
+
msgstr "Tra"
|
476 |
+
|
477 |
+
#: includes/texts.php:85
|
478 |
+
msgid "Jun"
|
479 |
+
msgstr "Svi"
|
480 |
+
|
481 |
+
#: includes/texts.php:86
|
482 |
+
msgid "Jul"
|
483 |
+
msgstr "Lip"
|
484 |
+
|
485 |
+
#: includes/texts.php:87
|
486 |
+
msgid "Aug"
|
487 |
+
msgstr "Kol"
|
488 |
+
|
489 |
+
#: includes/texts.php:88
|
490 |
+
msgid "Sep"
|
491 |
+
msgstr "Ruj"
|
492 |
+
|
493 |
+
#: includes/texts.php:89
|
494 |
+
msgid "Oct"
|
495 |
+
msgstr "Lis"
|
496 |
+
|
497 |
+
#: includes/texts.php:90
|
498 |
+
msgid "Nov"
|
499 |
+
msgstr "Stu"
|
500 |
+
|
501 |
+
#: includes/texts.php:91
|
502 |
+
msgid "Dec"
|
503 |
+
msgstr "Pro"
|
504 |
+
|
505 |
+
#: views/ecwd-event-content.php:71 views/ecwd-event-content.php:163
|
506 |
+
#: views/ecwd-event-popup.php:141 views/ecwd-event-popup.php:244
|
507 |
+
#: views/single-event.php:166 views/single-event.php:278
|
508 |
+
msgid "Date"
|
509 |
+
msgstr "Datum"
|
510 |
+
|
511 |
+
#: views/ecwd-event-content.php:97 views/ecwd-event-popup.php:173
|
512 |
+
#: views/single-event.php:206
|
513 |
+
msgid "Url"
|
514 |
+
msgstr "URL"
|
515 |
+
|
516 |
+
#: views/ecwd-event-content.php:103 views/ecwd-event-popup.php:180
|
517 |
+
#: views/single-event.php:213
|
518 |
+
msgid "Organizers"
|
519 |
+
msgstr "Organizatori"
|
520 |
+
|
521 |
+
#: views/ecwd-event-popup.php:192 views/single-event.php:225
|
522 |
+
msgid "Venue"
|
523 |
+
msgstr "Mjesto održavanja"
|
524 |
+
|
525 |
+
#: views/ecwd-event-popup.php:202 views/single-event.php:236
|
526 |
+
msgid "Location"
|
527 |
+
msgstr "Lokacija"
|
528 |
+
|
529 |
+
#: views/ecwd-organizer-content.php:114
|
530 |
+
msgid "upcoming events"
|
531 |
+
msgstr "nadolazeća događanja"
|
532 |
+
|
533 |
+
#: views/ecwd-venue-content.php:146
|
534 |
+
msgid "events"
|
535 |
+
msgstr "događanja"
|
536 |
+
|
537 |
+
#: views/single-event.php:483
|
538 |
+
msgid "Related events"
|
539 |
+
msgstr "Povezana događanja"
|
540 |
+
|
541 |
+
#: views/taxonomy-ecwd_event_category.php:43
|
542 |
+
msgid "Previous page"
|
543 |
+
msgstr "Prethodna stranica"
|
544 |
+
|
545 |
+
#: views/taxonomy-ecwd_event_category.php:44
|
546 |
+
msgid "Next page"
|
547 |
+
msgstr "Sljedeća stranica"
|
548 |
+
|
549 |
+
#: views/widgets.php:19
|
550 |
+
msgid "Event Calendar WD"
|
551 |
+
msgstr "Event Calendar WD"
|
552 |
+
|
553 |
+
#: views/widgets.php:19
|
554 |
+
msgid "A calendar of your events"
|
555 |
+
msgstr "Kalendar vaših događanja"
|
556 |
+
|
557 |
+
#: views/widgets.php:63
|
558 |
+
msgid ""
|
559 |
+
"No valid Event IDs have been entered for this widget. Please check that you "
|
560 |
+
"have entered the IDs correctly in the widget settings (Appearance > "
|
561 |
+
"Widgets), and that the Events have not been deleted."
|
562 |
+
msgstr ""
|
563 |
+
"U widget nije unijet nijedan valjani ID Događanja. Provjerite jeste li "
|
564 |
+
"unijeli dobar ID u postavke widgeta (Appearance > Widgets), i da Događanja "
|
565 |
+
"nisu izbrisana."
|
566 |
+
|
567 |
+
#: views/widgets.php:95
|
568 |
+
msgid "You have not added any events yet."
|
569 |
+
msgstr "Niste još dodali događanja."
|
570 |
+
|
571 |
+
#: views/widgets.php:128
|
572 |
+
msgid "There are no calendars created yet."
|
573 |
+
msgstr "Nema kreiranih kalendara."
|
574 |
+
|
575 |
+
#: views/widgets.php:129
|
576 |
+
msgid "Add your first calendar!"
|
577 |
+
msgstr "Dodaj prvi kalendar!"
|
578 |
+
|
579 |
+
#: views/widgets.php:147
|
580 |
+
msgid "Title:"
|
581 |
+
msgstr "Naziv:"
|
582 |
+
|
583 |
+
#: views/widgets.php:152
|
584 |
+
msgid "Calendar to display"
|
585 |
+
msgstr "Kalendar za prikaz"
|
586 |
+
|
587 |
+
#: views/widgets.php:166
|
588 |
+
msgid "Display Events as:"
|
589 |
+
msgstr "Prikaži događanja kao:"
|
590 |
+
|
591 |
+
#: views/widgets.php:175
|
592 |
+
msgid "Events per page in list view:"
|
593 |
+
msgstr "Događanja po stranici u prikazu Liste događanja:"
|
594 |
+
|
595 |
+
#~ msgid "Settings"
|
596 |
+
#~ msgstr "Postavke"
|
597 |
+
|
598 |
+
#~ msgid "Calendar Add-ons"
|
599 |
+
#~ msgstr "Kalendar Add-ons"
|
600 |
+
|
601 |
+
#~ msgid "Featured plugins"
|
602 |
+
#~ msgstr "Istaknuti dodaci"
|
603 |
+
|
604 |
+
#~ msgid "Featured themes"
|
605 |
+
#~ msgstr "Istaknute teme"
|
606 |
+
|
607 |
+
#~ msgid "Mail Template"
|
608 |
+
#~ msgstr "E-mail predložak"
|
609 |
+
|
610 |
+
#~ msgid "Updates"
|
611 |
+
#~ msgstr "Ažuriranja"
|
612 |
+
|
613 |
+
#~ msgid "Events"
|
614 |
+
#~ msgstr "Događanja"
|
615 |
+
|
616 |
+
#~ msgid "Duplicate Event"
|
617 |
+
#~ msgstr "Napravi kopiju Događanja"
|
618 |
+
|
619 |
+
#~ msgid "Duplicate Theme"
|
620 |
+
#~ msgstr "Napravi kopiju Teme"
|
621 |
+
|
622 |
+
#~ msgctxt "URL slug"
|
623 |
+
#~ msgid "venue"
|
624 |
+
#~ msgstr "mjesto"
|
625 |
+
|
626 |
+
#~ msgctxt "URL slug"
|
627 |
+
#~ msgid "organizer"
|
628 |
+
#~ msgstr "organizator"
|
629 |
+
|
630 |
+
#~ msgid "Calendars"
|
631 |
+
#~ msgstr "Kalendari"
|
632 |
+
|
633 |
+
#~ msgid "Calendar"
|
634 |
+
#~ msgstr "Kalendar"
|
635 |
+
|
636 |
+
#~ msgid "Add New Calendar"
|
637 |
+
#~ msgstr "Dodaj novi Kalendar"
|
638 |
+
|
639 |
+
#~ msgid "New Calendar"
|
640 |
+
#~ msgstr "Novi Kalendar"
|
641 |
+
|
642 |
+
#~ msgid "Edit Calendar"
|
643 |
+
#~ msgstr "Uredi Kalendar"
|
644 |
+
|
645 |
+
#~ msgid "View Calendar"
|
646 |
+
#~ msgstr "Pogledajte Kalendar"
|
647 |
+
|
648 |
+
#~ msgid "All Calendars"
|
649 |
+
#~ msgstr "Svi Kalendari"
|
650 |
+
|
651 |
+
#~ msgid "Search Calendar"
|
652 |
+
#~ msgstr "Pretraži Kalendar"
|
653 |
+
|
654 |
+
#~ msgid "No Calendars found."
|
655 |
+
#~ msgstr "Nema pronađenih Kalendara"
|
656 |
+
|
657 |
+
#~ msgid "No Calendars found in Trash."
|
658 |
+
#~ msgstr "Nema Kalendara pronađenih u Smeću."
|
659 |
+
|
660 |
+
#~ msgid "Organizer"
|
661 |
+
#~ msgstr "Organizator"
|
662 |
+
|
663 |
+
#~ msgid "Add New"
|
664 |
+
#~ msgstr "Dodaj novu stavku"
|
665 |
+
|
666 |
+
#~ msgid "Add New Organizer"
|
667 |
+
#~ msgstr "Dodaj novog Organizatora"
|
668 |
+
|
669 |
+
#~ msgid "New Organizer"
|
670 |
+
#~ msgstr "Novi Organizator"
|
671 |
+
|
672 |
+
#~ msgid "Edit Organizer"
|
673 |
+
#~ msgstr "Uredi Organizatora"
|
674 |
+
|
675 |
+
#~ msgid "View Organizer"
|
676 |
+
#~ msgstr "Pogledaj Organizatora"
|
677 |
+
|
678 |
+
#~ msgid "All Organizers"
|
679 |
+
#~ msgstr "Svi Organizatori"
|
680 |
+
|
681 |
+
#~ msgid "Search Organizer"
|
682 |
+
#~ msgstr "Pretraži Organizatora"
|
683 |
+
|
684 |
+
#~ msgid "No Organizers found."
|
685 |
+
#~ msgstr "Nema pronađenih Organizatora."
|
686 |
+
|
687 |
+
#~ msgid "No Organizers found in Trash."
|
688 |
+
#~ msgstr "Nema pronađenih Organizatora u Smeću."
|
689 |
+
|
690 |
+
#~ msgid "Event"
|
691 |
+
#~ msgstr "Događanje"
|
692 |
+
|
693 |
+
#~ msgid "Add New Event"
|
694 |
+
#~ msgstr "Dodaj novo Događanje"
|
695 |
+
|
696 |
+
#~ msgid "New Event"
|
697 |
+
#~ msgstr "Novo Događanje"
|
698 |
+
|
699 |
+
#~ msgid "Edit Event"
|
700 |
+
#~ msgstr "Uredi Događanje"
|
701 |
+
|
702 |
+
#~ msgid "View Event"
|
703 |
+
#~ msgstr "Pogledaj Događanje"
|
704 |
+
|
705 |
+
#~ msgid "All Events"
|
706 |
+
#~ msgstr "Sva Događanja"
|
707 |
+
|
708 |
+
#~ msgid "Search Event"
|
709 |
+
#~ msgstr "Pretraži Događanje"
|
710 |
+
|
711 |
+
#~ msgid "No events found."
|
712 |
+
#~ msgstr "Nema pronađenih Događanja."
|
713 |
+
|
714 |
+
#~ msgid "No events found in Trash."
|
715 |
+
#~ msgstr "Nema pronađenih Događanja u Smeću."
|
716 |
+
|
717 |
+
#~ msgid "Add New Venue"
|
718 |
+
#~ msgstr "Dodaj novo Mjesto održavanja"
|
719 |
+
|
720 |
+
#~ msgid "New Venue"
|
721 |
+
#~ msgstr "Novo Mjesto održavanja"
|
722 |
+
|
723 |
+
#~ msgid "Edit Venue"
|
724 |
+
#~ msgstr "Uredi Mjesto održavanja"
|
725 |
+
|
726 |
+
#~ msgid "View Venue"
|
727 |
+
#~ msgstr "Pogledaj Mjesto održavanja"
|
728 |
+
|
729 |
+
#~ msgid "All Venues"
|
730 |
+
#~ msgstr "Sva Mjesta održavanja"
|
731 |
+
|
732 |
+
#~ msgid "Search Venue"
|
733 |
+
#~ msgstr "Pretraži Mjesta održavanja"
|
734 |
+
|
735 |
+
#~ msgid "No Venues found."
|
736 |
+
#~ msgstr "Nema pronađenih Mjesta održavanja."
|
737 |
+
|
738 |
+
#~ msgid "No Venues found in Trash."
|
739 |
+
#~ msgstr "Nema pronađenih Mjesta održavanja u Smeću."
|
740 |
+
|
741 |
+
#~ msgid "Calendar Themes"
|
742 |
+
#~ msgstr "Teme Kalendara"
|
743 |
+
|
744 |
+
#~ msgid "Calendar Theme"
|
745 |
+
#~ msgstr "Tema Kalendara"
|
746 |
+
|
747 |
+
#~ msgid "Add New Theme"
|
748 |
+
#~ msgstr "Dodaj novu Temu"
|
749 |
+
|
750 |
+
#~ msgid "New Theme"
|
751 |
+
#~ msgstr "Nova Tema"
|
752 |
+
|
753 |
+
#~ msgid "Edit Theme"
|
754 |
+
#~ msgstr "Uredi Temu"
|
755 |
+
|
756 |
+
#~ msgid "View Theme"
|
757 |
+
#~ msgstr "Pogledaj Temu"
|
758 |
+
|
759 |
+
#~ msgid "All Themes"
|
760 |
+
#~ msgstr "Sve Teme"
|
761 |
+
|
762 |
+
#~ msgid "Search Themes"
|
763 |
+
#~ msgstr "Pretraži Teme"
|
764 |
+
|
765 |
+
#~ msgid "No Themes found."
|
766 |
+
#~ msgstr "Nema pronađenih Tema."
|
767 |
+
|
768 |
+
#~ msgid "No Theme found in Trash."
|
769 |
+
#~ msgstr "Nema pronađenih Tema u smeću."
|
770 |
+
|
771 |
+
#~ msgid "calendar"
|
772 |
+
#~ msgstr "kalendar"
|
773 |
+
|
774 |
+
#~ msgid "%4$s updated."
|
775 |
+
#~ msgstr "%4$s ažurirano."
|
776 |
+
|
777 |
+
#~ msgid "%4$s updated. "
|
778 |
+
#~ msgstr "%4$s ažurirano."
|
779 |
+
|
780 |
+
#~ msgid "%4$s published."
|
781 |
+
#~ msgstr "%4$s objavljeno."
|
782 |
+
|
783 |
+
#~ msgid "%4$s saved."
|
784 |
+
#~ msgstr "%4$s spremljeno."
|
785 |
+
|
786 |
+
#~ msgid "%4$s submitted. "
|
787 |
+
#~ msgstr "%4$s zaprimljeno."
|
788 |
+
|
789 |
+
#~ msgid "%4$s draft updated."
|
790 |
+
#~ msgstr "%4$s nacrt ažuriran."
|
791 |
+
|
792 |
+
#~ msgid "Theme"
|
793 |
+
#~ msgstr "Tema"
|
794 |
+
|
795 |
+
#~ msgid "event"
|
796 |
+
#~ msgstr "događanje"
|
797 |
+
|
798 |
+
#~ msgid "%4$s updated. %1$sView %2$s%3$s"
|
799 |
+
#~ msgstr "%4$s ažurirano. %1$sView%2$s %3$s"
|
800 |
+
|
801 |
+
#~ msgid "%4$s published. %1$sView %2$s%3$s"
|
802 |
+
#~ msgstr "%4$s objavljeno. %1$sView%2$s %3$s"
|
803 |
+
|
804 |
+
#~ msgid "%4$s saved. %1$sView %2$s%3$s"
|
805 |
+
#~ msgstr "%4$s spremljeno. %1$sView %2$s%3$s"
|
806 |
+
|
807 |
+
#~ msgid "%4$s submitted. %1$sView %2$s%3$s"
|
808 |
+
#~ msgstr "%4$s zaprimljeno. %1$sView %2$s%3$s"
|
809 |
+
|
810 |
+
#~ msgid "%4$s draft updated. %1$sView %2$s%3$s"
|
811 |
+
#~ msgstr "%4$s nacrt ažuriran. %1$sView %2$s%3$s"
|
812 |
+
|
813 |
+
#~ msgid "Calendar Settings"
|
814 |
+
#~ msgstr "Postavke Kalendara"
|
815 |
+
|
816 |
+
#~ msgid "Event Settings"
|
817 |
+
#~ msgstr "Postavke Događanja"
|
818 |
+
|
819 |
+
#~ msgid "Featured Image"
|
820 |
+
#~ msgstr "Istaknuta slika"
|
821 |
+
|
822 |
+
#~ msgid "Calendar Theme Settings"
|
823 |
+
#~ msgstr "Postavke Tema Kalendara"
|
824 |
+
|
825 |
+
#~ msgid "Venue Location"
|
826 |
+
#~ msgstr "Lokacija događanja"
|
827 |
+
|
828 |
+
#~ msgid "Calendar ID"
|
829 |
+
#~ msgstr "Kalendar ID"
|
830 |
+
|
831 |
+
#~ msgid "Calendar Shortcode"
|
832 |
+
#~ msgstr "Kalendar Shortcode"
|
833 |
+
|
834 |
+
#~ msgid "Event Dates"
|
835 |
+
#~ msgstr "Datumi Događanja"
|
836 |
+
|
837 |
+
#~ msgctxt "taxonomy general name"
|
838 |
+
#~ msgid "Event Categories"
|
839 |
+
#~ msgstr "Kategorije Događanja"
|
840 |
+
|
841 |
+
#~ msgctxt "taxonomy singular name"
|
842 |
+
#~ msgid "Event Category"
|
843 |
+
#~ msgstr "Kategorija Događanja"
|
844 |
+
|
845 |
+
#~ msgid "Search Event Categories"
|
846 |
+
#~ msgstr "Pretraži Kategorije Događanja"
|
847 |
+
|
848 |
+
#~ msgid "All Event Categories"
|
849 |
+
#~ msgstr "Sve Kategorije Događanja"
|
850 |
+
|
851 |
+
#~ msgid "Parent Category"
|
852 |
+
#~ msgstr "Glavna Kategorija"
|
853 |
+
|
854 |
+
#~ msgid "Parent Category:"
|
855 |
+
#~ msgstr "Glavna Kategorija:"
|
856 |
+
|
857 |
+
#~ msgid "Edit Category"
|
858 |
+
#~ msgstr "Uredi Kategoriju"
|
859 |
+
|
860 |
+
#~ msgid "Update Category"
|
861 |
+
#~ msgstr "Ažuriraj Kategoriju"
|
862 |
+
|
863 |
+
#~ msgid "Add New Event Category"
|
864 |
+
#~ msgstr "Dodaj novu Kategoriju Događanja"
|
865 |
+
|
866 |
+
#~ msgid "New Event Category Name"
|
867 |
+
#~ msgstr "Ime nove Kategorije Događanja"
|
868 |
+
|
869 |
+
#~ msgid "Event Categories"
|
870 |
+
#~ msgstr "Kategorije Događanja"
|
871 |
+
|
872 |
+
#~ msgid "Event Tags"
|
873 |
+
#~ msgstr "Tagovi Događanja"
|
874 |
+
|
875 |
+
#~ msgid "Event Tag"
|
876 |
+
#~ msgstr "Tag Događanja"
|
877 |
+
|
878 |
+
#~ msgid "Icon"
|
879 |
+
#~ msgstr "Ikona stavke"
|
880 |
+
|
881 |
+
#~ msgid "Color"
|
882 |
+
#~ msgstr "Boja"
|
883 |
+
|
884 |
+
#~ msgid ""
|
885 |
+
#~ "Some data was retrieved, but could not be parsed successfully. Please "
|
886 |
+
#~ "ensure your event settings are correct."
|
887 |
+
#~ msgstr ""
|
888 |
+
#~ "Dio podataka je dohvaćen, ali ne može biti uspješno analiziran. "
|
889 |
+
#~ "Provjerite jesu li sve postavke događanja ispravne."
|
890 |
+
|
891 |
+
#~ msgid "An error has occured."
|
892 |
+
#~ msgstr "Došlo je do pogreške."
|
893 |
+
|
894 |
+
#~ msgid " Please ensure your calendar ID is correct."
|
895 |
+
#~ msgstr "Provjerite je li Kalendar ID ispravan."
|
896 |
+
|
897 |
+
#~ msgid "Cache has been deleted."
|
898 |
+
#~ msgstr "Cache je izbrisan."
|
899 |
+
|
900 |
+
#~ msgid "Clear cache"
|
901 |
+
#~ msgstr "Obriši cache"
|
902 |
+
|
903 |
+
#~ msgid "Click to clear events cache pulled from other calendars."
|
904 |
+
#~ msgstr "Kliknite kako biste očistili cache iz drugih kalendara."
|
905 |
+
|
906 |
+
#~ msgid "TimeZone"
|
907 |
+
#~ msgstr "Vremenska zona"
|
908 |
+
|
909 |
+
#~ msgid ""
|
910 |
+
#~ "If the timezone is not set, the server timezone will be used (if set in "
|
911 |
+
#~ "php settings), otherwise the Europe/Berlin timezone will be used"
|
912 |
+
#~ msgstr ""
|
913 |
+
#~ "Ako vremenska zona nije postavljena, koristit će se zona servera (ako je "
|
914 |
+
#~ "postavljena u php postavkama), u suprotnom će se koristiti zona Europe / "
|
915 |
+
#~ "Berlin"
|
916 |
+
|
917 |
+
#~ msgid "Date format"
|
918 |
+
#~ msgstr "Format datuma"
|
919 |
+
|
920 |
+
#~ msgid "Set the format for displaying event dates. Ex Y-m-d or Y/m/d"
|
921 |
+
#~ msgstr "Postavite format za prikaz datuma događanja. Npr, Ymd ili Y / M / D"
|
922 |
+
|
923 |
+
#~ msgid "Time format"
|
924 |
+
#~ msgstr "Format vremena"
|
925 |
+
|
926 |
+
#~ msgid "Set the format for displaying event time. Ex H:i or H/i"
|
927 |
+
#~ msgstr ""
|
928 |
+
#~ "Postavite format za prikazivanje vremena događanja. Npr, H: I ili H / i"
|
929 |
+
|
930 |
+
#~ msgid "Show AM/PM"
|
931 |
+
#~ msgstr "Pokaži AM / PM"
|
932 |
+
|
933 |
+
#~ msgid "Select the time format type"
|
934 |
+
#~ msgstr "Odaberite vrstu formata vremena"
|
935 |
+
|
936 |
+
#~ msgid "List,Week,Day views day format"
|
937 |
+
#~ msgstr "Format prikaza za Listu, Tjedan i Dan"
|
938 |
+
|
939 |
+
#~ msgid "Note: Changed date format will not be translatable"
|
940 |
+
#~ msgstr "Napomena: Promijenjeni format datuma neće se moći prevesti"
|
941 |
+
|
942 |
+
#~ msgid "Week start day"
|
943 |
+
#~ msgstr "Početni dan u tjednu"
|
944 |
+
|
945 |
+
#~ msgid "Define the starting day for the week."
|
946 |
+
#~ msgstr "Definirajte početni dan u tjednu."
|
947 |
+
|
948 |
+
#~ msgid "Enable rewrite"
|
949 |
+
#~ msgstr "Omogućite rewrite"
|
950 |
+
|
951 |
+
#~ msgid "Check yes to enable event(s) url rewrite rule."
|
952 |
+
#~ msgstr ""
|
953 |
+
#~ "Označite 'da' kako biste omogućili rewrite pravilo za URL događanja."
|
954 |
+
|
955 |
+
#~ msgid "Events slug"
|
956 |
+
#~ msgstr "Slug događanja"
|
957 |
+
|
958 |
+
#~ msgid "Define the slug for the events list page."
|
959 |
+
#~ msgstr "Definirajte slug za stranicu liste događanja."
|
960 |
+
|
961 |
+
#~ msgid "Single Event slug"
|
962 |
+
#~ msgstr "Slug pojedinog događanja"
|
963 |
+
|
964 |
+
#~ msgid "Define the slug for the single event page."
|
965 |
+
#~ msgstr "Definirajte slug za stranicu pojedinog događanja."
|
966 |
+
|
967 |
+
#~ msgid "Enable comments for events"
|
968 |
+
#~ msgstr "Omogućite komentare za događanja"
|
969 |
+
|
970 |
+
#~ msgid "Check to enable commenting."
|
971 |
+
#~ msgstr "Označite da biste omogućili komentare."
|
972 |
+
|
973 |
+
#~ msgid "Include events in main loop"
|
974 |
+
#~ msgstr "Uključite događanja u glavnom loopu"
|
975 |
+
|
976 |
+
#~ msgid "Check to display events within website post list in main pages."
|
977 |
+
#~ msgstr ""
|
978 |
+
#~ "Označite za prikaz događanja unutar objava na stranici na glavnim "
|
979 |
+
#~ "stranicama."
|
980 |
+
|
981 |
+
#~ msgid "Order of Organizers and Venues by"
|
982 |
+
#~ msgstr "Redoslijed organizatora i mjesta događanja"
|
983 |
+
|
984 |
+
#~ msgid "Select Order of Organizers and Venues."
|
985 |
+
#~ msgstr "Odaberite redoslijed organizatora i mjesta događanja."
|
986 |
+
|
987 |
+
#~ msgid "Open events in new tab"
|
988 |
+
#~ msgstr "Otvori događanja u novoj kartici"
|
989 |
+
|
990 |
+
#~ msgid "Enable Social Icons"
|
991 |
+
#~ msgstr "Omogući društvene ikone"
|
992 |
+
|
993 |
+
#~ msgid "Check to display social icons in event, organizer and venue pages."
|
994 |
+
#~ msgstr ""
|
995 |
+
#~ "Označite za prikaz društvenih ikona u stranicama događanja, organizatora "
|
996 |
+
#~ "i mjesta događanja."
|
997 |
+
|
998 |
+
#~ msgid "Show the repeat rate"
|
999 |
+
#~ msgstr "Prikaži stopu ponavljanja"
|
1000 |
+
|
1001 |
+
#~ msgid "Check to show the repeat rate in event page ."
|
1002 |
+
#~ msgstr "Označite za prikaz stope ponavljanja na stranici događanja."
|
1003 |
+
|
1004 |
+
#~ msgid "Show related events in the event page"
|
1005 |
+
#~ msgstr "Prikaži vezana događanja na stranici događanja"
|
1006 |
+
|
1007 |
+
#~ msgid "Apply category color to event title in event page"
|
1008 |
+
#~ msgstr "Dodijeli boju kategorije naslovu događanja na stranici događanja"
|
1009 |
+
|
1010 |
+
#~ msgid "Enable Category and Tags"
|
1011 |
+
#~ msgstr "Omogući Kategorije i Tagove"
|
1012 |
+
|
1013 |
+
#~ msgid "Check to display category and Tags."
|
1014 |
+
#~ msgstr "Označi za prikaz kategorije i tagova."
|
1015 |
+
|
1016 |
+
#~ msgid "Display Events in popup"
|
1017 |
+
#~ msgstr "Prikaži Događanja kao popup."
|
1018 |
+
|
1019 |
+
#~ msgid "Check to display events in popup."
|
1020 |
+
#~ msgstr "Označite za prikaz događanja u popup-u."
|
1021 |
+
|
1022 |
+
#~ msgid "Add fixed height for events in posterboard view"
|
1023 |
+
#~ msgstr "Dodaj fiksnu visinu za događanja u pregledu Posterboard"
|
1024 |
+
|
1025 |
+
#~ msgid "Events category slug"
|
1026 |
+
#~ msgstr "Slug kategorije događanja"
|
1027 |
+
|
1028 |
+
#~ msgid "Display Description"
|
1029 |
+
#~ msgstr "Prikaži opis"
|
1030 |
+
|
1031 |
+
#~ msgid "Display Image"
|
1032 |
+
#~ msgstr "Prikaži sliku"
|
1033 |
+
|
1034 |
+
#~ msgid "Custom css"
|
1035 |
+
#~ msgstr "Prilagođeni CSS"
|
1036 |
+
|
1037 |
+
#~ msgid ""
|
1038 |
+
#~ "The callback function used for the <strong>%s</strong> setting is missing."
|
1039 |
+
#~ msgstr ""
|
1040 |
+
#~ "Nedostaje pozivna funkcija koja se koristi za <strong>%s</strong> "
|
1041 |
+
#~ "postavku."
|
1042 |
+
|
1043 |
+
#~ msgid "Preview"
|
1044 |
+
#~ msgstr "Pretpregled"
|
1045 |
+
|
1046 |
+
#~ msgid "Add Event"
|
1047 |
+
#~ msgstr "Dodaj Događanje"
|
1048 |
+
|
1049 |
+
#~ msgid ""
|
1050 |
+
#~ "Copy and paste this shortcode to display this Calendar event on any post "
|
1051 |
+
#~ "or page."
|
1052 |
+
#~ msgstr ""
|
1053 |
+
#~ "Kopirajte i zalijepite ovaj SHORTCODE da biste dodali Kalendar događanja "
|
1054 |
+
#~ "na bilo koji post ili stranicu."
|
1055 |
+
|
1056 |
+
#~ msgid "Select Events from the list"
|
1057 |
+
#~ msgstr "Odaberite Događanje s popisa"
|
1058 |
+
|
1059 |
+
#~ msgid "Add theme"
|
1060 |
+
#~ msgstr "Dodaj temu"
|
1061 |
+
|
1062 |
+
#~ msgid "Image"
|
1063 |
+
#~ msgstr "Slika"
|
1064 |
+
|
1065 |
+
#~ msgid "Upload/Add image"
|
1066 |
+
#~ msgstr "Dodaj sliku"
|
1067 |
+
|
1068 |
+
#~ msgid "Remove image"
|
1069 |
+
#~ msgstr "Ukloni sliku"
|
1070 |
+
|
1071 |
+
#~ msgid "Category color"
|
1072 |
+
#~ msgstr "Boja Kategorije"
|
1073 |
+
|
1074 |
+
#~ msgid "Choose the color"
|
1075 |
+
#~ msgstr "Odaberite boju"
|
1076 |
+
|
1077 |
+
#~ msgid "Event Venue"
|
1078 |
+
#~ msgstr "Mjesto događaja"
|
1079 |
+
|
1080 |
+
#~ msgid "Select the venue of the event."
|
1081 |
+
#~ msgstr "Odaberite mjesto događaja."
|
1082 |
+
|
1083 |
+
#~ msgid "There is no venue added yet"
|
1084 |
+
#~ msgstr "Još nema unesenih mjesta događaja"
|
1085 |
+
|
1086 |
+
#~ msgid "Event Location"
|
1087 |
+
#~ msgstr "Lokacija događanja"
|
1088 |
+
|
1089 |
+
#~ msgid ""
|
1090 |
+
#~ "If venue is not specified you can fill in the address of the event "
|
1091 |
+
#~ "location or click on the map to drag and drop the marker to the event "
|
1092 |
+
#~ "location."
|
1093 |
+
#~ msgstr ""
|
1094 |
+
#~ "Ako mjesto nije određeno možete popuniti adresu mjesta događaja ili "
|
1095 |
+
#~ "kliknite na kartu te povucite i ispustite marker na mjesto događanja."
|
1096 |
+
|
1097 |
+
#~ msgid "Show map in event page"
|
1098 |
+
#~ msgstr "Prikaži kartu na stranici događanja"
|
1099 |
+
|
1100 |
+
#~ msgid ""
|
1101 |
+
#~ "Fill in the starting and ending dates and time of the event. If the event "
|
1102 |
+
#~ "lasts entire day, check the box on the right."
|
1103 |
+
#~ msgstr ""
|
1104 |
+
#~ "Unesite datume početka i završetka događanja. Ako događanje traje cijeli "
|
1105 |
+
#~ "dan, označite okvir na desnoj strani."
|
1106 |
+
|
1107 |
+
#~ msgid "Repeat rate"
|
1108 |
+
#~ msgstr "Ponavljanje"
|
1109 |
+
|
1110 |
+
#~ msgid "Don't repeat"
|
1111 |
+
#~ msgstr "Bez ponavljanja"
|
1112 |
+
|
1113 |
+
#~ msgid "Daily"
|
1114 |
+
#~ msgstr "Dnevno"
|
1115 |
+
|
1116 |
+
#~ msgid "Weekly"
|
1117 |
+
#~ msgstr "Tjedno"
|
1118 |
+
|
1119 |
+
#~ msgid "Monthly"
|
1120 |
+
#~ msgstr "Mjesečno"
|
1121 |
+
|
1122 |
+
#~ msgid "Yearly"
|
1123 |
+
#~ msgstr "Godišnje"
|
1124 |
+
|
1125 |
+
#~ msgid "day(s)"
|
1126 |
+
#~ msgstr "dan(i)"
|
1127 |
+
|
1128 |
+
#~ msgid "weeks(s)"
|
1129 |
+
#~ msgstr "tjedan(i)"
|
1130 |
+
|
1131 |
+
#~ msgid "on "
|
1132 |
+
#~ msgstr "na"
|
1133 |
+
|
1134 |
+
#~ msgid "month(s)"
|
1135 |
+
#~ msgstr "mjesec (i)"
|
1136 |
+
|
1137 |
+
#~ msgid "year(s) in "
|
1138 |
+
#~ msgstr "u godini (godinama)"
|
1139 |
+
|
1140 |
+
#~ msgid "On the same day"
|
1141 |
+
#~ msgstr "Istoga dana"
|
1142 |
+
|
1143 |
+
#~ msgid "On the: "
|
1144 |
+
#~ msgstr "Na:"
|
1145 |
+
|
1146 |
+
#~ msgid "First"
|
1147 |
+
#~ msgstr "Prvi"
|
1148 |
+
|
1149 |
+
#~ msgid "Second"
|
1150 |
+
#~ msgstr "Drugi"
|
1151 |
+
|
1152 |
+
#~ msgid "Third"
|
1153 |
+
#~ msgstr "Treći"
|
1154 |
+
|
1155 |
+
#~ msgid "Fourth"
|
1156 |
+
#~ msgstr "Četvrti"
|
1157 |
+
|
1158 |
+
#~ msgid "Last"
|
1159 |
+
#~ msgstr "Posljednji"
|
1160 |
+
|
1161 |
+
#~ msgid "Repeat until"
|
1162 |
+
#~ msgstr "Ponavljaj do"
|
1163 |
+
|
1164 |
+
#~ msgid "Specify the repeating rate of the event."
|
1165 |
+
#~ msgstr "Navedite stopu ponavljanja događanja."
|
1166 |
+
|
1167 |
+
#~ msgid "Event URL"
|
1168 |
+
#~ msgstr "URL događanja"
|
1169 |
+
|
1170 |
+
#~ msgid "Provide a custom URL which will display event details."
|
1171 |
+
#~ msgstr "Unesite URL koji vežete uz detalje događanja."
|
1172 |
+
|
1173 |
+
#~ msgid "Event Video URL"
|
1174 |
+
#~ msgstr "Video URL događanja"
|
1175 |
+
|
1176 |
+
#~ msgid "Provide Youtube or Vimeo URL of the video to accompany the event."
|
1177 |
+
#~ msgstr ""
|
1178 |
+
#~ "Unesite Youtube or Vimeo URL za video koji želite povezati uz događanje."
|
1179 |
+
|
1180 |
+
#~ msgid "Add organizer"
|
1181 |
+
#~ msgstr "Dodaj organizatora"
|
1182 |
+
|
1183 |
+
#~ msgid "Reset Theme"
|
1184 |
+
#~ msgstr "Resetiraj Temu"
|
1185 |
+
|
1186 |
+
#~ msgid "General"
|
1187 |
+
#~ msgstr "Općenito"
|
1188 |
+
|
1189 |
+
#~ msgid "Header"
|
1190 |
+
#~ msgstr "Zaglavlje"
|
1191 |
+
|
1192 |
+
#~ msgid "Views"
|
1193 |
+
#~ msgstr "Pregledi"
|
1194 |
+
|
1195 |
+
#~ msgid "Filter"
|
1196 |
+
#~ msgstr "Filter"
|
1197 |
+
|
1198 |
+
#~ msgid "Week days"
|
1199 |
+
#~ msgstr "Dani u tjednu"
|
1200 |
+
|
1201 |
+
#~ msgid "Pagination"
|
1202 |
+
#~ msgstr "Obilježavanje stranica"
|
1203 |
+
|
1204 |
+
#~ msgid ""
|
1205 |
+
#~ "In this section you can make changes for the calendar overall display."
|
1206 |
+
#~ msgstr ""
|
1207 |
+
#~ "U ovoj sekciji možete unijeti promjene za cjelokupni prikaz kalendara."
|
1208 |
+
|
1209 |
+
#~ msgid "Calendar width"
|
1210 |
+
#~ msgstr "Širina kalendara"
|
1211 |
+
|
1212 |
+
#~ msgid "Calendar border color"
|
1213 |
+
#~ msgstr "Boja ruba kalendara"
|
1214 |
+
|
1215 |
+
#~ msgid "Border width"
|
1216 |
+
#~ msgstr "Širina ruba"
|
1217 |
+
|
1218 |
+
#~ msgid "Border radius"
|
1219 |
+
#~ msgstr "Radijus ruba"
|
1220 |
+
|
1221 |
+
#~ msgid ""
|
1222 |
+
#~ "In this section you can make the changes within the calendar header "
|
1223 |
+
#~ "(current, next and previous month display, navigation and overall color "
|
1224 |
+
#~ "scheme)."
|
1225 |
+
#~ msgstr ""
|
1226 |
+
#~ "U ovoj sekciji možete unijeti promjene za zaglavlje kalendara (prikaz "
|
1227 |
+
#~ "trenutačnog, prošlog i sljedećeg mjeseca, navigacije i općenito sheme "
|
1228 |
+
#~ "boja)."
|
1229 |
+
|
1230 |
+
#~ msgid "Header color"
|
1231 |
+
#~ msgstr "Boja zaglavlja"
|
1232 |
+
|
1233 |
+
#~ msgid "Header border color"
|
1234 |
+
#~ msgstr "Boja ruba zaglavlja"
|
1235 |
+
|
1236 |
+
#~ msgid "Current year color"
|
1237 |
+
#~ msgstr "Boja trenutačne godine"
|
1238 |
+
|
1239 |
+
#~ msgid "Current year font size"
|
1240 |
+
#~ msgstr "Veličina fonta trenutačne godine"
|
1241 |
+
|
1242 |
+
#~ msgid "Current month color"
|
1243 |
+
#~ msgstr "Boja trenutačnog mjeseca"
|
1244 |
+
|
1245 |
+
#~ msgid "Current month font size"
|
1246 |
+
#~ msgstr "Veličina fonta tenutačnog mjeseca"
|
1247 |
+
|
1248 |
+
#~ msgid "Next, Prev links color"
|
1249 |
+
#~ msgstr "Sljedeći, Prethodni - boja linkova"
|
1250 |
+
|
1251 |
+
#~ msgid "Next, Prev links font size"
|
1252 |
+
#~ msgstr "Sljedeći, Prethodni - veličina fonta"
|
1253 |
+
|
1254 |
+
#~ msgid ""
|
1255 |
+
#~ "In this section you can make changes within the view tabs below the main "
|
1256 |
+
#~ "header."
|
1257 |
+
#~ msgstr ""
|
1258 |
+
#~ "U ovoj sekciji možete unijeti promjene unutar kartica pregleda ispod "
|
1259 |
+
#~ "glavnog zaglavlja."
|
1260 |
+
|
1261 |
+
#~ msgid "View tabs background color"
|
1262 |
+
#~ msgstr "Boja podloge kartica pregleda"
|
1263 |
+
|
1264 |
+
#~ msgid "View tabs border color"
|
1265 |
+
#~ msgstr "Boja ruba kartica pregleda"
|
1266 |
+
|
1267 |
+
#~ msgid "Current tab color"
|
1268 |
+
#~ msgstr "Boja trenutačne kartice"
|
1269 |
+
|
1270 |
+
#~ msgid "View tabs text color"
|
1271 |
+
#~ msgstr "Boja teksta kartica pregleda"
|
1272 |
+
|
1273 |
+
#~ msgid "View tabs text font size"
|
1274 |
+
#~ msgstr "Veličina fonta teksta kartica pregleda"
|
1275 |
+
|
1276 |
+
#~ msgid "Current tab text color"
|
1277 |
+
#~ msgstr "Boja teksta trenutačne kartice pregleda"
|
1278 |
+
|
1279 |
+
#~ msgid "Search background color"
|
1280 |
+
#~ msgstr "Boja podloge Pretraživača"
|
1281 |
+
|
1282 |
+
#~ msgid "Search icon color"
|
1283 |
+
#~ msgstr "Boja ikone Pretraživača"
|
1284 |
+
|
1285 |
+
#~ msgid ""
|
1286 |
+
#~ "In this section you can make color changes within the filtering drop-down "
|
1287 |
+
#~ "box."
|
1288 |
+
#~ msgstr ""
|
1289 |
+
#~ "U ovoj sekciji možete unijeti promjene boje u padajućem okviru za "
|
1290 |
+
#~ "filtriranje."
|
1291 |
+
|
1292 |
+
#~ msgid "Filters header background color (top)"
|
1293 |
+
#~ msgstr "Boja pozadine zaglavlja filtra (vrh)"
|
1294 |
+
|
1295 |
+
#~ msgid "Filters header background color (left)"
|
1296 |
+
#~ msgstr "Boja pozadine zaglavlja filtra (lijevo)"
|
1297 |
+
|
1298 |
+
#~ msgid "Filters header text color (top)"
|
1299 |
+
#~ msgstr "Boja teksta zaglavlja filtra (vrh)"
|
1300 |
+
|
1301 |
+
#~ msgid "Filters header text color (left)"
|
1302 |
+
#~ msgstr "Boja teksta zaglavlja filtra (lijevo)"
|
1303 |
+
|
1304 |
+
#~ msgid "Sections"
|
1305 |
+
#~ msgstr "Sekcije"
|
1306 |
+
|
1307 |
+
#~ msgid "Filters section background color"
|
1308 |
+
#~ msgstr "Boja pozadine sekcije filtra"
|
1309 |
+
|
1310 |
+
#~ msgid "Filters section border color"
|
1311 |
+
#~ msgstr "Boja ruba sekcije filtra"
|
1312 |
+
|
1313 |
+
#~ msgid "Filters sction arrow color"
|
1314 |
+
#~ msgstr "Boja strelica sekcije filtra"
|
1315 |
+
|
1316 |
+
#~ msgid "Filters section text color"
|
1317 |
+
#~ msgstr "Boja teksta sekcije filtra"
|
1318 |
+
|
1319 |
+
#~ msgid "Filters section text font size"
|
1320 |
+
#~ msgstr "Veličina fonta teksta sekcije filtra"
|
1321 |
+
|
1322 |
+
#~ msgid "Filters reset text color"
|
1323 |
+
#~ msgstr "Reset boja teksta filtra"
|
1324 |
+
|
1325 |
+
#~ msgid "Filters reset text font size"
|
1326 |
+
#~ msgstr "Reset veličina fonta teksta filtra"
|
1327 |
+
|
1328 |
+
#~ msgid "Items"
|
1329 |
+
#~ msgstr "Stavke"
|
1330 |
+
|
1331 |
+
#~ msgid "Filters background color"
|
1332 |
+
#~ msgstr "Boja pozadine filtra"
|
1333 |
+
|
1334 |
+
#~ msgid "Filters border color"
|
1335 |
+
#~ msgstr "Boja ruba filtra"
|
1336 |
+
|
1337 |
+
#~ msgid "Filters text color"
|
1338 |
+
#~ msgstr "Boja teksta filtra"
|
1339 |
+
|
1340 |
+
#~ msgid "Filters text font size"
|
1341 |
+
#~ msgstr "Veličina fonta teksta filtra"
|
1342 |
+
|
1343 |
+
#~ msgid ""
|
1344 |
+
#~ "In this section you can make color and font size changes within the tabs "
|
1345 |
+
#~ "displaying the titles of the week days."
|
1346 |
+
#~ msgstr ""
|
1347 |
+
#~ "U ovoj sekciji možete unijeti promjene za boju i veličinu fonta u "
|
1348 |
+
#~ "karticama koje prikazuju imena dana u tjednu."
|
1349 |
+
|
1350 |
+
#~ msgid "Week days background color"
|
1351 |
+
#~ msgstr "Boja pozadine dana u tjednu"
|
1352 |
+
|
1353 |
+
#~ msgid "Week days border color"
|
1354 |
+
#~ msgstr "Boja ruba dana u tjednu"
|
1355 |
+
|
1356 |
+
#~ msgid "Week days text color"
|
1357 |
+
#~ msgstr "Boja teksta dana u tjednu"
|
1358 |
+
|
1359 |
+
#~ msgid "Week days text font size"
|
1360 |
+
#~ msgstr "Veličina fonta teksta dana u tjednu"
|
1361 |
+
|
1362 |
+
#~ msgid ""
|
1363 |
+
#~ "In this section you can make changes within the cells displaying the days "
|
1364 |
+
#~ "of the week/month."
|
1365 |
+
#~ msgstr ""
|
1366 |
+
#~ "U ovoj sekciji možete unijeti promjene za rubrike koje prikazuju dane "
|
1367 |
+
#~ "tjedana/mjeseci."
|
1368 |
+
|
1369 |
+
#~ msgid "Cell background color"
|
1370 |
+
#~ msgstr "Boja pozadine rubrika"
|
1371 |
+
|
1372 |
+
#~ msgid "Cell border color"
|
1373 |
+
#~ msgstr "Boja ruba rubrike"
|
1374 |
+
|
1375 |
+
#~ msgid "Weekend cell background color"
|
1376 |
+
#~ msgstr "Boja pozadine rubrike vikenda"
|
1377 |
+
|
1378 |
+
#~ msgid "Prev/Next month cell background color"
|
1379 |
+
#~ msgstr "Sljedeći, Prethodni mjesec - boja pozadine rubrika"
|
1380 |
+
|
1381 |
+
#~ msgid "Day number background color"
|
1382 |
+
#~ msgstr "Boja pozadine broja dana"
|
1383 |
+
|
1384 |
+
#~ msgid "Day text color"
|
1385 |
+
#~ msgstr "Boja teksta dana"
|
1386 |
+
|
1387 |
+
#~ msgid "Day text font size"
|
1388 |
+
#~ msgstr "Veličina fonta teksta dana"
|
1389 |
+
|
1390 |
+
#~ msgid "Current day cell background color"
|
1391 |
+
#~ msgstr "Boja pozadine rubrike trenutačnog dana"
|
1392 |
+
|
1393 |
+
#~ msgid "Current day number background color"
|
1394 |
+
#~ msgstr "Boja pozadine broja trenutačnog dana"
|
1395 |
+
|
1396 |
+
#~ msgid "Current day text color"
|
1397 |
+
#~ msgstr "Boja teksta trenutačnog dana"
|
1398 |
+
|
1399 |
+
#~ msgid ""
|
1400 |
+
#~ "In this section you can make changes within the cells displaying events "
|
1401 |
+
#~ "in various views, as well as the event detail display tooltip."
|
1402 |
+
#~ msgstr ""
|
1403 |
+
#~ "U ovoj sekciji možete unijeti promjene u rubrikama koje prikazuju "
|
1404 |
+
#~ "događanja u raznim vrstama pregleda, kao i prikaz tooltipa detalja "
|
1405 |
+
#~ "događanja."
|
1406 |
+
|
1407 |
+
#~ msgid "Event title color"
|
1408 |
+
#~ msgstr "Boja naslova događanja"
|
1409 |
+
|
1410 |
+
#~ msgid "Event title font size"
|
1411 |
+
#~ msgstr "Veličina fonta naslova događanja"
|
1412 |
+
|
1413 |
+
#~ msgid "Event details background color"
|
1414 |
+
#~ msgstr "Boja pozadine detalja događanja"
|
1415 |
+
|
1416 |
+
#~ msgid "Event details border color"
|
1417 |
+
#~ msgstr "Boja ruba detalja događanja"
|
1418 |
+
|
1419 |
+
#~ msgid "Event details text color"
|
1420 |
+
#~ msgstr "Boja teksta detalja događanja"
|
1421 |
+
|
1422 |
+
#~ msgid "Event date background color"
|
1423 |
+
#~ msgstr "Boja pozadine datuma događanja"
|
1424 |
+
|
1425 |
+
#~ msgid "Event date text color"
|
1426 |
+
#~ msgstr "Boja teksta datuma događanja"
|
1427 |
+
|
1428 |
+
#~ msgid "Event date font size"
|
1429 |
+
#~ msgstr "Veličina fonta datuma događanja"
|
1430 |
+
|
1431 |
+
#~ msgid "Posterboard view date background color"
|
1432 |
+
#~ msgstr "Boja pozadine datuma u Posterboard pregledu"
|
1433 |
+
|
1434 |
+
#~ msgid "Posterboard view date text color"
|
1435 |
+
#~ msgstr "Boja teksta datuma u Posterboard pregledu"
|
1436 |
+
|
1437 |
+
#~ msgid "In this section you can make changes for the pagination"
|
1438 |
+
#~ msgstr "U ovoj sekciji možete unijeti promjene za numeriranje."
|
1439 |
+
|
1440 |
+
#~ msgid "Page numbers background color"
|
1441 |
+
#~ msgstr "Boja pozadine broja stranica"
|
1442 |
+
|
1443 |
+
#~ msgid "Current page background color"
|
1444 |
+
#~ msgstr "Boja pozadine trenutačne stranice"
|
1445 |
+
|
1446 |
+
#~ msgid "Page number color"
|
1447 |
+
#~ msgstr "Boja brojeva stranica"
|
1448 |
+
|
1449 |
+
#~ msgid ""
|
1450 |
+
#~ "Fill in the address of the venue or click on the map to drag and drop the "
|
1451 |
+
#~ "marker to a specific location"
|
1452 |
+
#~ msgstr ""
|
1453 |
+
#~ "Ispunite mjesto za adresu ili kliknite na kartu i povucite pa ispustite "
|
1454 |
+
#~ "oznaku na željenom mjestu"
|
1455 |
+
|
1456 |
+
#~ msgid ""
|
1457 |
+
#~ "This event was created using Community Events. Are you sure you want to "
|
1458 |
+
#~ "sell tickets for it?"
|
1459 |
+
#~ msgstr ""
|
1460 |
+
#~ "Ovaj događaj je izrađen koristeći Community Events. Jeste li sigurni da "
|
1461 |
+
#~ "želite prodavati ulaznice za to?"
|
1462 |
+
|
1463 |
+
#~ msgid "Upload image for the ticket header"
|
1464 |
+
#~ msgstr "Upload slike za zaglavlje ulaznica"
|
1465 |
+
|
1466 |
+
#~ msgid ""
|
1467 |
+
#~ "The maximum image size in the email will be 580px wide by any height, and "
|
1468 |
+
#~ "then scaled for mobile. If you would like \"retina\" support use an image "
|
1469 |
+
#~ "sized to 1160px wide."
|
1470 |
+
#~ msgstr ""
|
1471 |
+
#~ "Maksimalna veličina slike u poruci e-pošte bit će 580 px širine u bilo "
|
1472 |
+
#~ "kojoj visini, a zatim umanjena za mobilne uređaje. Ako želite koristiti "
|
1473 |
+
#~ "\"retina\" podrškom onda koristite slike širine do 1160 px."
|
1474 |
+
|
1475 |
+
#~ msgid "Select an Image"
|
1476 |
+
#~ msgstr "Odaberite sliku"
|
1477 |
+
|
1478 |
+
#~ msgid "Remove"
|
1479 |
+
#~ msgstr "Ukloni"
|
1480 |
+
|
1481 |
+
#~ msgid "Add new ticket"
|
1482 |
+
#~ msgstr "Dodaj novu ulaznicu"
|
1483 |
+
|
1484 |
+
#~ msgid "Edit ticket"
|
1485 |
+
#~ msgstr "Uredi ulaznicu"
|
1486 |
+
|
1487 |
+
#~ msgid "Sell using:"
|
1488 |
+
#~ msgstr "Prodaja pomoću:"
|
1489 |
+
|
1490 |
+
#~ msgid "Ticket Name:"
|
1491 |
+
#~ msgstr "Naziv ulaznice:"
|
1492 |
+
|
1493 |
+
#~ msgid "Ticket Description:"
|
1494 |
+
#~ msgstr "Opis ulaznice:"
|
1495 |
+
|
1496 |
+
#~ msgid "Price:"
|
1497 |
+
#~ msgstr "Cijena:"
|
1498 |
+
|
1499 |
+
#~ msgid "(0 or empty for free tickets)"
|
1500 |
+
#~ msgstr "(0 ili prazno za besplatne ulaznice)"
|
1501 |
+
|
1502 |
+
#~ msgid "Start sale:"
|
1503 |
+
#~ msgstr "Početak prodaje:"
|
1504 |
+
|
1505 |
+
#~ msgid "End sale:"
|
1506 |
+
#~ msgstr "Kraj prodaje:"
|
1507 |
+
|
1508 |
+
#~ msgid ""
|
1509 |
+
#~ "When will ticket sales occur? If you don't set a start/end date for "
|
1510 |
+
#~ "sales, tickets will be available from now until the event ends."
|
1511 |
+
#~ msgstr ""
|
1512 |
+
#~ "Kada će se prodavati ulaznice? Ako ne postavite datum početka/kraja "
|
1513 |
+
#~ "prodaje, ulaznice će biti dostupne od sad sve dok događanje ne završi."
|
1514 |
+
|
1515 |
+
#~ msgid "Save this ticket"
|
1516 |
+
#~ msgstr "Spremite ovu ulaznicu"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
|
4 |
Tags: calendar, calendars, event, event calendar, event manager, events calendar, calendar widget, event registration, event management,events, agenda, 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, facebook integration, widget
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -90,10 +90,11 @@ If you think you found a bug in Event Calendar WD or have any problem/question
|
|
90 |
|
91 |
*If you need language which is not included in this list, please contact us and we will do the translation within 3 days. If you find any mistakes in the translation, please contact us and we will make relevant corrections within 3 days. *
|
92 |
|
93 |
-
Catalan (ca) by Vicenc Huguet
|
|
|
94 |
Dutch (nl_NL) by F. van Reem and Sabrina Gordijn
|
95 |
Finnish (fi) by Håkan Mitts
|
96 |
-
German (de_DE) by Ogi Djuraskovic
|
97 |
Hungarian (hu_HU) by Szabolcs Egerhazi
|
98 |
Norwegian (Bokmål) (nb_NO) by Vegard Innerdal
|
99 |
Norwegian (Nynorsk) (nn_NO) by Vegard Innerdal
|
@@ -144,6 +145,10 @@ After downloading the ZIP file of the Event Calendar WD plugin,
|
|
144 |
|
145 |
== Changelog ==
|
146 |
|
|
|
|
|
|
|
|
|
147 |
= 1.0.43 =
|
148 |
* Added: Option for no additional details text
|
149 |
|
4 |
Tags: calendar, calendars, event, event calendar, event manager, events calendar, calendar widget, event registration, event management,events, agenda, 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, facebook integration, widget
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 1.0.44
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
90 |
|
91 |
*If you need language which is not included in this list, please contact us and we will do the translation within 3 days. If you find any mistakes in the translation, please contact us and we will make relevant corrections within 3 days. *
|
92 |
|
93 |
+
Catalan (ca) by Vicenc Huguet
|
94 |
+
Croatian (hr) by Igor Weidlich
|
95 |
Dutch (nl_NL) by F. van Reem and Sabrina Gordijn
|
96 |
Finnish (fi) by Håkan Mitts
|
97 |
+
German (de_DE) by Ogi Djuraskovic
|
98 |
Hungarian (hu_HU) by Szabolcs Egerhazi
|
99 |
Norwegian (Bokmål) (nb_NO) by Vegard Innerdal
|
100 |
Norwegian (Nynorsk) (nn_NO) by Vegard Innerdal
|
145 |
|
146 |
== Changelog ==
|
147 |
|
148 |
+
= 1.0.44 =
|
149 |
+
* Added: Croatian translation
|
150 |
+
* Added: Sample data
|
151 |
+
|
152 |
= 1.0.43 =
|
153 |
* Added: Option for no additional details text
|
154 |
|
views/admin/ecwd-event-meta.php
CHANGED
@@ -50,83 +50,7 @@ $ecwd_event_video = get_post_meta( $post->ID, ECWD_PLUGIN_PREFIX . '_eve
|
|
50 |
|
51 |
|
52 |
<table class="form-table">
|
53 |
-
|
54 |
-
<th scope="row"><?php _e( 'Event Venue', 'ecwd' ); ?></th>
|
55 |
-
<td>
|
56 |
-
<?php if ( ! empty( $venues ) ) { ?>
|
57 |
-
<select name="<?php echo ECWD_PLUGIN_PREFIX; ?>_event_venue"
|
58 |
-
id="<?php echo ECWD_PLUGIN_PREFIX; ?>_event_venue">
|
59 |
-
<option value="0">None</option>
|
60 |
-
<?php
|
61 |
-
foreach ( $venues as $venue ) {
|
62 |
-
$venue_location = get_post_meta( $venue->ID, ECWD_PLUGIN_PREFIX . '_venue_location', true );
|
63 |
-
$venue_lat_long = get_post_meta( $venue->ID, ECWD_PLUGIN_PREFIX . '_venue_lat_long', true );
|
64 |
-
$venue_zoom = get_post_meta( $venue->ID, ECWD_PLUGIN_PREFIX . '_map_zoom', true );
|
65 |
-
?>
|
66 |
-
<option value="<?php echo $venue->ID; ?>" data-location="<?php echo $venue_location; ?>"
|
67 |
-
data-marker="<?php echo $venue_lat_long; ?>"
|
68 |
-
data-zoom="<?php echo $venue_zoom; ?>" <?php echo selected( $venue->ID, $ecwd_event_venue ); ?>><?php echo $venue->post_title; ?></option>
|
69 |
-
<?php
|
70 |
-
}
|
71 |
-
?>
|
72 |
-
</select>
|
73 |
-
<p class="description">
|
74 |
-
<?php _e( 'Select the venue of the event.', 'ecwd' ); ?>
|
75 |
-
</p>
|
76 |
-
<?php
|
77 |
-
} else {
|
78 |
-
?><?php _e( 'There is no venue added yet', 'ecwd' ); ?><?php
|
79 |
-
} ?>
|
80 |
-
</td>
|
81 |
-
</tr>
|
82 |
-
<tr>
|
83 |
-
<th scope="row"><?php _e( 'Event Location', 'ecwd' ); ?></th>
|
84 |
-
<td>
|
85 |
-
<input type="text" name="<?php echo ECWD_PLUGIN_PREFIX; ?>_event_location"
|
86 |
-
id="<?php echo ECWD_PLUGIN_PREFIX; ?>_event_location"
|
87 |
-
value="<?php echo $ecwd_event_location; ?>" size="70"/>
|
88 |
-
|
89 |
-
<div class="google_map">
|
90 |
-
<?php
|
91 |
-
if ( ! $ecwd_map_zoom ) {
|
92 |
-
$ecwd_map_zoom = 17;
|
93 |
-
}
|
94 |
-
$ecwd_marker = 1;
|
95 |
-
if ( ! $ecwd_lat_long ) {
|
96 |
-
$ecwd_map_zoom = 9;
|
97 |
-
$ecwd_lat_long = $lat . ',' . $long;
|
98 |
-
$ecwd_marker = 0;
|
99 |
-
}
|
100 |
-
?>
|
101 |
-
<input type="hidden" name="<?php echo ECWD_PLUGIN_PREFIX; ?>_lat_long"
|
102 |
-
id="<?php echo ECWD_PLUGIN_PREFIX; ?>_lat_long"
|
103 |
-
value="<?php echo $ecwd_lat_long; ?>"/>
|
104 |
-
<input type="hidden" name="<?php echo ECWD_PLUGIN_PREFIX; ?>_marker"
|
105 |
-
id="<?php echo ECWD_PLUGIN_PREFIX; ?>_marker" value="<?php echo $ecwd_marker; ?>"/>
|
106 |
-
<input type="hidden" name="<?php echo ECWD_PLUGIN_PREFIX; ?>_map_zoom"
|
107 |
-
id="<?php echo ECWD_PLUGIN_PREFIX; ?>_map_zoom"
|
108 |
-
value="<?php echo $ecwd_map_zoom; ?>"/>
|
109 |
-
|
110 |
-
<div id="map-canvas" style="width: 100%; height: 100%; min-height: 300px;">
|
111 |
-
|
112 |
-
</div>
|
113 |
-
</div>
|
114 |
-
<p class="description">
|
115 |
-
<?php _e( 'If venue is not specified you can fill in the address of the event location or click on the map to drag and drop the marker to the event location.', 'ecwd' ); ?>
|
116 |
-
</p>
|
117 |
-
</td>
|
118 |
-
</tr>
|
119 |
-
<tr>
|
120 |
-
<th scope="row"><?php _e( 'Show map in event page', 'ecwd' ); ?></th>
|
121 |
-
<td>
|
122 |
-
<div class="checkbox-div">
|
123 |
-
<input type='checkbox' class='ecwd_event_show_map' id='ecwd_event_show_map'
|
124 |
-
name='ecwd_event_show_map' value="1" <?php checked( $ecwd_event_show_map, '1' ); ?>/>
|
125 |
-
<label for="ecwd_event_show_map"></label>
|
126 |
-
</div>
|
127 |
-
</td>
|
128 |
-
</tr>
|
129 |
-
<tr>
|
130 |
<th scope="row"><?php _e( 'Event Dates', 'ecwd' ); ?></th>
|
131 |
<td>
|
132 |
<?php _e( 'From', 'ecwd' ); ?>
|
@@ -515,6 +439,83 @@ $ecwd_event_video = get_post_meta( $post->ID, ECWD_PLUGIN_PREFIX . '_eve
|
|
515 |
</p>
|
516 |
</td>
|
517 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
<?php }else{?>
|
519 |
<tr>
|
520 |
<th scope="row"><label class="repeat_format"><?php _e( 'Repeat rate', 'ecwd' ); ?></label></th>
|
50 |
|
51 |
|
52 |
<table class="form-table">
|
53 |
+
<tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
<th scope="row"><?php _e( 'Event Dates', 'ecwd' ); ?></th>
|
55 |
<td>
|
56 |
<?php _e( 'From', 'ecwd' ); ?>
|
439 |
</p>
|
440 |
</td>
|
441 |
</tr>
|
442 |
+
<tr>
|
443 |
+
<th scope="row"><?php _e( 'Event Venue', 'ecwd' ); ?></th>
|
444 |
+
<td>
|
445 |
+
<?php if ( ! empty( $venues ) ) { ?>
|
446 |
+
<select name="<?php echo ECWD_PLUGIN_PREFIX; ?>_event_venue"
|
447 |
+
id="<?php echo ECWD_PLUGIN_PREFIX; ?>_event_venue">
|
448 |
+
<option value="0">None</option>
|
449 |
+
<?php
|
450 |
+
foreach ( $venues as $venue ) {
|
451 |
+
$venue_location = get_post_meta( $venue->ID, ECWD_PLUGIN_PREFIX . '_venue_location', true );
|
452 |
+
$venue_lat_long = get_post_meta( $venue->ID, ECWD_PLUGIN_PREFIX . '_venue_lat_long', true );
|
453 |
+
$venue_zoom = get_post_meta( $venue->ID, ECWD_PLUGIN_PREFIX . '_map_zoom', true );
|
454 |
+
?>
|
455 |
+
<option value="<?php echo $venue->ID; ?>" data-location="<?php echo $venue_location; ?>"
|
456 |
+
data-marker="<?php echo $venue_lat_long; ?>"
|
457 |
+
data-zoom="<?php echo $venue_zoom; ?>" <?php echo selected( $venue->ID, $ecwd_event_venue ); ?>><?php echo $venue->post_title; ?></option>
|
458 |
+
<?php
|
459 |
+
}
|
460 |
+
?>
|
461 |
+
</select>
|
462 |
+
<p class="description">
|
463 |
+
<?php _e( 'Select the venue of the event.', 'ecwd' ); ?>
|
464 |
+
</p>
|
465 |
+
<?php
|
466 |
+
} else {
|
467 |
+
?><?php _e( 'There is no venue added yet', 'ecwd' ); ?><?php
|
468 |
+
} ?>
|
469 |
+
</td>
|
470 |
+
</tr>
|
471 |
+
<tr>
|
472 |
+
<th scope="row"><?php _e( 'Event Location', 'ecwd' ); ?></th>
|
473 |
+
<td>
|
474 |
+
<input type="text" name="<?php echo ECWD_PLUGIN_PREFIX; ?>_event_location"
|
475 |
+
id="<?php echo ECWD_PLUGIN_PREFIX; ?>_event_location"
|
476 |
+
value="<?php echo $ecwd_event_location; ?>" size="70"/>
|
477 |
+
|
478 |
+
<div class="google_map">
|
479 |
+
<?php
|
480 |
+
if ( ! $ecwd_map_zoom ) {
|
481 |
+
$ecwd_map_zoom = 17;
|
482 |
+
}
|
483 |
+
$ecwd_marker = 1;
|
484 |
+
if ( ! $ecwd_lat_long ) {
|
485 |
+
$ecwd_map_zoom = 9;
|
486 |
+
$ecwd_lat_long = $lat . ',' . $long;
|
487 |
+
$ecwd_marker = 0;
|
488 |
+
}
|
489 |
+
?>
|
490 |
+
<input type="hidden" name="<?php echo ECWD_PLUGIN_PREFIX; ?>_lat_long"
|
491 |
+
id="<?php echo ECWD_PLUGIN_PREFIX; ?>_lat_long"
|
492 |
+
value="<?php echo $ecwd_lat_long; ?>"/>
|
493 |
+
<input type="hidden" name="<?php echo ECWD_PLUGIN_PREFIX; ?>_marker"
|
494 |
+
id="<?php echo ECWD_PLUGIN_PREFIX; ?>_marker" value="<?php echo $ecwd_marker; ?>"/>
|
495 |
+
<input type="hidden" name="<?php echo ECWD_PLUGIN_PREFIX; ?>_map_zoom"
|
496 |
+
id="<?php echo ECWD_PLUGIN_PREFIX; ?>_map_zoom"
|
497 |
+
value="<?php echo $ecwd_map_zoom; ?>"/>
|
498 |
+
|
499 |
+
<div id="map-canvas" style="width: 100%; height: 100%; min-height: 300px;">
|
500 |
+
|
501 |
+
</div>
|
502 |
+
</div>
|
503 |
+
<p class="description">
|
504 |
+
<?php _e( 'If venue is not specified you can fill in the address of the event location or click on the map to drag and drop the marker to the event location.', 'ecwd' ); ?>
|
505 |
+
</p>
|
506 |
+
</td>
|
507 |
+
</tr>
|
508 |
+
<tr>
|
509 |
+
<th scope="row"><?php _e( 'Show map in event page', 'ecwd' ); ?></th>
|
510 |
+
<td>
|
511 |
+
<div class="checkbox-div">
|
512 |
+
<input type='checkbox' class='ecwd_event_show_map' id='ecwd_event_show_map'
|
513 |
+
name='ecwd_event_show_map' value="1" <?php checked( $ecwd_event_show_map, '1' ); ?>/>
|
514 |
+
<label for="ecwd_event_show_map"></label>
|
515 |
+
</div>
|
516 |
+
</td>
|
517 |
+
</tr>
|
518 |
+
|
519 |
<?php }else{?>
|
520 |
<tr>
|
521 |
<th scope="row"><label class="repeat_format"><?php _e( 'Repeat rate', 'ecwd' ); ?></label></th>
|