Version Description
- Changed: Backend menu
Download this release
Release Info
Developer | webdorado |
Plugin | Event Calendar WD – Responsive Event Calendar plugin |
Version | 1.0.75 |
Comparing to | |
See all releases |
Code changes from version 1.0.74 to 1.0.75
- css/images/featured/arrow3.png +0 -0
- css/images/featured/minus.png +0 -0
- css/images/featured/plus.png +0 -0
- ecwd.php +2 -2
- ecwd_admin_class.php +69 -34
- ecwd_class.php +1 -1
- includes/ecwd-cpt-class.php +50 -47
- languages/ecwd-zh_CN.mo +0 -0
- languages/ecwd-zh_CN.po +1445 -0
- readme.txt +7 -4
css/images/featured/arrow3.png
ADDED
Binary file
|
css/images/featured/minus.png
ADDED
Binary file
|
css/images/featured/plus.png
ADDED
Binary file
|
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
|
@@ -22,7 +22,7 @@ if( ! defined( 'ECWD_MAIN_FILE' ) ) {
|
|
22 |
}
|
23 |
|
24 |
if(! defined( 'ECWD_VERSION' ) ){
|
25 |
-
define ('ECWD_VERSION',"1.0.
|
26 |
}
|
27 |
|
28 |
add_action( 'plugins_loaded', array( 'ECWD', 'get_instance' ) );
|
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.75
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
22 |
}
|
23 |
|
24 |
if(! defined( 'ECWD_VERSION' ) ){
|
25 |
+
define ('ECWD_VERSION',"1.0.75");
|
26 |
}
|
27 |
|
28 |
add_action( 'plugins_loaded', array( 'ECWD', 'get_instance' ) );
|
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 |
|
@@ -30,9 +30,8 @@ class ECWD_Admin {
|
|
30 |
|
31 |
// Add the options page and menu item.
|
32 |
add_action('admin_menu', array($this, 'add_plugin_admin_menu'), 10);
|
33 |
-
|
34 |
-
|
35 |
-
// add_filter('parent_file', array($this,'ecwd_set_current_menu'));
|
36 |
|
37 |
foreach (array('post.php', 'post-new.php') as $hook) {
|
38 |
add_action("admin_head-$hook", array($this, 'admin_head'));
|
@@ -126,48 +125,49 @@ class ECWD_Admin {
|
|
126 |
public function add_plugin_admin_menu() {
|
127 |
global $ecwd_config;
|
128 |
$this->ecwd_page[] = add_submenu_page(
|
129 |
-
|
130 |
-
|
131 |
-
'
|
132 |
-
|
|
|
|
|
133 |
);
|
134 |
-
// $this->ecwd_page[] = add_submenu_page(
|
135 |
-
// 'edit.php?post_type=ecwd_calendar',
|
136 |
-
// __('Event Categories', 'ecwd'),
|
137 |
-
// __('Event Categories', 'ecwd'),
|
138 |
-
// 'manage_options',
|
139 |
-
// 'edit-tags.php?taxonomy=ecwd_event_category&post_type=ecwd_event',
|
140 |
-
// null
|
141 |
-
// );
|
142 |
-
//
|
143 |
-
// $this->ecwd_page[] = add_submenu_page(
|
144 |
-
// 'edit.php?post_type=ecwd_calendar',
|
145 |
-
// __('Event Tags', 'ecwd'),
|
146 |
-
// __('Event Tags', 'ecwd'),
|
147 |
-
// 'manage_options',
|
148 |
-
// 'edit-tags.php?taxonomy=ecwd_event_tag&post_type=ecwd_event',
|
149 |
-
// null
|
150 |
-
// );
|
151 |
|
152 |
$this->ecwd_page[] = add_submenu_page(
|
153 |
-
|
154 |
-
|
155 |
-
'
|
156 |
-
|
|
|
|
|
157 |
);
|
158 |
|
159 |
$this->ecwd_page[] = add_submenu_page(
|
160 |
-
|
161 |
$this,
|
162 |
-
'
|
163 |
-
|
164 |
);
|
|
|
165 |
$this->ecwd_page[] = add_submenu_page(
|
166 |
-
'edit.php?post_type=ecwd_calendar', __('
|
167 |
$this,
|
168 |
-
'
|
169 |
)
|
170 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
$this->ecwd_page[] = add_menu_page(
|
172 |
__('Calendar Add-ons', 'ecwd'), __('Calendar Add-ons', 'ecwd'), 'manage_options', $this->prefix . '_addons', array(
|
173 |
$this,
|
@@ -190,6 +190,41 @@ class ECWD_Admin {
|
|
190 |
}
|
191 |
}
|
192 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
public function include_ecwd_pointer_class() {
|
194 |
include_once ('includes/ecwd_pointers.php');
|
195 |
$ecwd_pointer = new Ecwd_pointers();
|
6 |
class ECWD_Admin {
|
7 |
|
8 |
protected static $instance = null;
|
9 |
+
protected $version = '1.0.75';
|
10 |
protected $ecwd_page = null;
|
11 |
protected $notices = null;
|
12 |
|
30 |
|
31 |
// Add the options page and menu item.
|
32 |
add_action('admin_menu', array($this, 'add_plugin_admin_menu'), 10);
|
33 |
+
add_action('admin_menu', array($this, 'featured_plugins'), 30);
|
34 |
+
add_filter('parent_file', array($this,'ecwd_set_current_menu'));
|
|
|
35 |
|
36 |
foreach (array('post.php', 'post-new.php') as $hook) {
|
37 |
add_action("admin_head-$hook", array($this, 'admin_head'));
|
125 |
public function add_plugin_admin_menu() {
|
126 |
global $ecwd_config;
|
127 |
$this->ecwd_page[] = add_submenu_page(
|
128 |
+
'edit.php?post_type=ecwd_calendar',
|
129 |
+
__('Event Categories', 'ecwd'),
|
130 |
+
__('Event Categories', 'ecwd'),
|
131 |
+
'manage_options',
|
132 |
+
'edit-tags.php?taxonomy=ecwd_event_category&post_type=ecwd_event',
|
133 |
+
null
|
134 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
|
136 |
$this->ecwd_page[] = add_submenu_page(
|
137 |
+
'edit.php?post_type=ecwd_calendar',
|
138 |
+
__('Event Tags', 'ecwd'),
|
139 |
+
__('Event Tags', 'ecwd'),
|
140 |
+
'manage_options',
|
141 |
+
'edit-tags.php?taxonomy=ecwd_event_tag&post_type=ecwd_event',
|
142 |
+
null
|
143 |
);
|
144 |
|
145 |
$this->ecwd_page[] = add_submenu_page(
|
146 |
+
'edit.php?post_type=ecwd_calendar', __('Settings', 'ecwd'), __('Settings', 'ecwd'), 'manage_options', $this->prefix . '_general_settings', array(
|
147 |
$this,
|
148 |
+
'display_admin_page'
|
149 |
+
)
|
150 |
);
|
151 |
+
|
152 |
$this->ecwd_page[] = add_submenu_page(
|
153 |
+
'edit.php?post_type=ecwd_calendar', __('Licensing', 'ecwd'), __('Licensing', 'ecwd'), 'manage_options', $this->prefix . '_licensing', array(
|
154 |
$this,
|
155 |
+
'display_license_page'
|
156 |
)
|
157 |
);
|
158 |
+
|
159 |
+
// $this->ecwd_page[] = add_submenu_page(
|
160 |
+
// 'edit.php?post_type=ecwd_calendar', __('Featured plugins', 'ecwd'), __('Featured plugins', 'ecwd'), 'manage_options', $this->prefix . '_featured_plugins', array(
|
161 |
+
// $this,
|
162 |
+
// 'display_featured_plugins'
|
163 |
+
// )
|
164 |
+
// );
|
165 |
+
// $this->ecwd_page[] = add_submenu_page(
|
166 |
+
// 'edit.php?post_type=ecwd_calendar', __('Featured themes', 'ecwd'), __('Featured themes', 'ecwd'), 'manage_options', $this->prefix . '_featured_themes', array(
|
167 |
+
// $this,
|
168 |
+
// 'display_featured_themes'
|
169 |
+
// )
|
170 |
+
// );
|
171 |
$this->ecwd_page[] = add_menu_page(
|
172 |
__('Calendar Add-ons', 'ecwd'), __('Calendar Add-ons', 'ecwd'), 'manage_options', $this->prefix . '_addons', array(
|
173 |
$this,
|
190 |
}
|
191 |
}
|
192 |
|
193 |
+
public function featured_plugins(){
|
194 |
+
$this->ecwd_page[] = add_submenu_page(
|
195 |
+
'edit.php?post_type=ecwd_calendar', __('Featured plugins', 'ecwd'), __('Featured plugins', 'ecwd'), 'manage_options', $this->prefix . '_featured_plugins', array(
|
196 |
+
$this,
|
197 |
+
'display_featured_plugins'
|
198 |
+
)
|
199 |
+
);
|
200 |
+
$this->ecwd_page[] = add_submenu_page(
|
201 |
+
'edit.php?post_type=ecwd_calendar', __('Featured themes', 'ecwd'), __('Featured themes', 'ecwd'), 'manage_options', $this->prefix . '_featured_themes', array(
|
202 |
+
$this,
|
203 |
+
'display_featured_themes'
|
204 |
+
)
|
205 |
+
);
|
206 |
+
}
|
207 |
+
|
208 |
+
public function ecwd_set_current_menu() {
|
209 |
+
|
210 |
+
global $submenu_file, $current_screen, $pagenow;
|
211 |
+
if ($current_screen->post_type == 'ecwd_event') {
|
212 |
+
if ($pagenow == 'post.php') {
|
213 |
+
$submenu_file = 'edit.php?post_type=' . $current_screen->post_type;
|
214 |
+
}
|
215 |
+
|
216 |
+
if ($pagenow == 'edit-tags.php') {
|
217 |
+
if($_GET['taxonomy'] == 'ecwd_event_tag'){
|
218 |
+
$submenu_file = 'edit-tags.php?taxonomy=ecwd_event_tag&post_type=' . $current_screen->post_type;
|
219 |
+
}else{
|
220 |
+
$submenu_file = 'edit-tags.php?taxonomy=ecwd_event_category&post_type=' . $current_screen->post_type;
|
221 |
+
}
|
222 |
+
}
|
223 |
+
$parent_file = 'edit.php?post_type=ecwd_calendar';
|
224 |
+
return $parent_file;
|
225 |
+
}
|
226 |
+
}
|
227 |
+
|
228 |
public function include_ecwd_pointer_class() {
|
229 |
include_once ('includes/ecwd_pointers.php');
|
230 |
$ecwd_pointer = new Ecwd_pointers();
|
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.75';
|
10 |
protected $plugin_name = 'event-calendar-wd';
|
11 |
protected $prefix = 'ecwd';
|
12 |
protected static $instance = null;
|
includes/ecwd-cpt-class.php
CHANGED
@@ -297,47 +297,7 @@ class ECWD_Cpt {
|
|
297 |
);
|
298 |
|
299 |
register_post_type(self::CALENDAR_POST_TYPE, $calendar_args);
|
300 |
-
|
301 |
-
|
302 |
-
//events organizers
|
303 |
-
$organizers_labels = array(
|
304 |
-
'name' => __('Organizers', 'ecwd'),
|
305 |
-
'singular_name' => __('Organizer', 'ecwd'),
|
306 |
-
'name_admin_bar' => __('Organizer', 'ecwd'),
|
307 |
-
'add_new' => __('Add New', 'ecwd'),
|
308 |
-
'add_new_item' => __('Add New Organizer', 'ecwd'),
|
309 |
-
'new_item' => __('New Organizer', 'ecwd'),
|
310 |
-
'edit_item' => __('Edit Organizer', 'ecwd'),
|
311 |
-
'view_item' => __('View Organizer', 'ecwd'),
|
312 |
-
'all_items' => __('All Organizers', 'ecwd'),
|
313 |
-
'search_items' => __('Search Organizer', 'ecwd'),
|
314 |
-
'not_found' => __('No Organizers found.', 'ecwd'),
|
315 |
-
'not_found_in_trash' => __('No Organizers found in Trash.', 'ecwd')
|
316 |
-
);
|
317 |
-
|
318 |
-
$organizers_args = array(
|
319 |
-
'labels' => $organizers_labels,
|
320 |
-
'public' => true,
|
321 |
-
'publicly_queryable' => true,
|
322 |
-
'show_ui' => true,
|
323 |
-
'show_in_menu' => true,
|
324 |
-
'menu_position' => '26,13',
|
325 |
-
'query_var' => true,
|
326 |
-
'capability_type' => 'post',
|
327 |
-
'taxonomies' => array(),
|
328 |
-
'has_archive' => true,
|
329 |
-
'hierarchical' => true,
|
330 |
-
'menu_icon' => plugins_url('/assets/organizer-icon.png', ECWD_MAIN_FILE),
|
331 |
-
'supports' => array(
|
332 |
-
'title',
|
333 |
-
'editor',
|
334 |
-
'thumbnail'
|
335 |
-
),
|
336 |
-
'rewrite' => $organizer_rewrite
|
337 |
-
);
|
338 |
-
|
339 |
-
register_post_type(self::ORGANIZER_POST_TYPE, $organizers_args);
|
340 |
-
|
341 |
|
342 |
//events
|
343 |
$labels = array(
|
@@ -349,7 +309,7 @@ class ECWD_Cpt {
|
|
349 |
'new_item' => __('New Event', 'ecwd'),
|
350 |
'edit_item' => __('Edit Event', 'ecwd'),
|
351 |
'view_item' => __('View Event', 'ecwd'),
|
352 |
-
'all_items' => __('
|
353 |
'search_items' => __('Search Event', 'ecwd'),
|
354 |
'not_found' => __('No events found.', 'ecwd'),
|
355 |
'not_found_in_trash' => __('No events found in Trash.', 'ecwd')
|
@@ -359,8 +319,9 @@ class ECWD_Cpt {
|
|
359 |
'public' => true,
|
360 |
'publicly_queryable' => true,
|
361 |
'show_ui' => true,
|
362 |
-
'show_in_menu' => true,
|
363 |
-
'menu_position' => '26,14',
|
|
|
364 |
'query_var' => true,
|
365 |
'capability_type' => 'post',
|
366 |
'taxonomies' => array(
|
@@ -383,6 +344,47 @@ class ECWD_Cpt {
|
|
383 |
register_post_type(self::EVENT_POST_TYPE, $args);
|
384 |
|
385 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
//venues
|
387 |
$venues_labels = array(
|
388 |
'name' => __('Venues', 'ecwd'),
|
@@ -393,7 +395,7 @@ class ECWD_Cpt {
|
|
393 |
'new_item' => __('New Venue', 'ecwd'),
|
394 |
'edit_item' => __('Edit Venue', 'ecwd'),
|
395 |
'view_item' => __('View Venue', 'ecwd'),
|
396 |
-
'all_items' => __('
|
397 |
'search_items' => __('Search Venue', 'ecwd'),
|
398 |
'not_found' => __('No Venues found.', 'ecwd'),
|
399 |
'not_found_in_trash' => __('No Venues found in Trash.', 'ecwd')
|
@@ -404,8 +406,9 @@ class ECWD_Cpt {
|
|
404 |
'public' => true,
|
405 |
'publicly_queryable' => true,
|
406 |
'show_ui' => true,
|
407 |
-
'show_in_menu' => true,
|
408 |
-
'menu_position' => '26,15',
|
|
|
409 |
'query_var' => true,
|
410 |
'capability_type' => 'post',
|
411 |
'taxonomies' => array(),
|
297 |
);
|
298 |
|
299 |
register_post_type(self::CALENDAR_POST_TYPE, $calendar_args);
|
300 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
|
302 |
//events
|
303 |
$labels = array(
|
309 |
'new_item' => __('New Event', 'ecwd'),
|
310 |
'edit_item' => __('Edit Event', 'ecwd'),
|
311 |
'view_item' => __('View Event', 'ecwd'),
|
312 |
+
'all_items' => __('Events', 'ecwd'),
|
313 |
'search_items' => __('Search Event', 'ecwd'),
|
314 |
'not_found' => __('No events found.', 'ecwd'),
|
315 |
'not_found_in_trash' => __('No events found in Trash.', 'ecwd')
|
319 |
'public' => true,
|
320 |
'publicly_queryable' => true,
|
321 |
'show_ui' => true,
|
322 |
+
// 'show_in_menu' => true,
|
323 |
+
// 'menu_position' => '26,14',
|
324 |
+
'show_in_menu' => 'edit.php?post_type=ecwd_calendar',
|
325 |
'query_var' => true,
|
326 |
'capability_type' => 'post',
|
327 |
'taxonomies' => array(
|
344 |
register_post_type(self::EVENT_POST_TYPE, $args);
|
345 |
|
346 |
|
347 |
+
//events organizers
|
348 |
+
$organizers_labels = array(
|
349 |
+
'name' => __('Organizers', 'ecwd'),
|
350 |
+
'singular_name' => __('Organizer', 'ecwd'),
|
351 |
+
'name_admin_bar' => __('Organizer', 'ecwd'),
|
352 |
+
'add_new' => __('Add New', 'ecwd'),
|
353 |
+
'add_new_item' => __('Add New Organizer', 'ecwd'),
|
354 |
+
'new_item' => __('New Organizer', 'ecwd'),
|
355 |
+
'edit_item' => __('Edit Organizer', 'ecwd'),
|
356 |
+
'view_item' => __('View Organizer', 'ecwd'),
|
357 |
+
'all_items' => __('Organizers', 'ecwd'),
|
358 |
+
'search_items' => __('Search Organizer', 'ecwd'),
|
359 |
+
'not_found' => __('No Organizers found.', 'ecwd'),
|
360 |
+
'not_found_in_trash' => __('No Organizers found in Trash.', 'ecwd')
|
361 |
+
);
|
362 |
+
|
363 |
+
$organizers_args = array(
|
364 |
+
'labels' => $organizers_labels,
|
365 |
+
'public' => true,
|
366 |
+
'publicly_queryable' => true,
|
367 |
+
'show_ui' => true,
|
368 |
+
// 'show_in_menu' => true,
|
369 |
+
// 'menu_position' => '26,13',
|
370 |
+
'show_in_menu' => 'edit.php?post_type=ecwd_calendar',
|
371 |
+
'query_var' => true,
|
372 |
+
'capability_type' => 'post',
|
373 |
+
'taxonomies' => array(),
|
374 |
+
'has_archive' => true,
|
375 |
+
'hierarchical' => true,
|
376 |
+
'menu_icon' => plugins_url('/assets/organizer-icon.png', ECWD_MAIN_FILE),
|
377 |
+
'supports' => array(
|
378 |
+
'title',
|
379 |
+
'editor',
|
380 |
+
'thumbnail'
|
381 |
+
),
|
382 |
+
'rewrite' => $organizer_rewrite
|
383 |
+
);
|
384 |
+
|
385 |
+
register_post_type(self::ORGANIZER_POST_TYPE, $organizers_args);
|
386 |
+
|
387 |
+
|
388 |
//venues
|
389 |
$venues_labels = array(
|
390 |
'name' => __('Venues', 'ecwd'),
|
395 |
'new_item' => __('New Venue', 'ecwd'),
|
396 |
'edit_item' => __('Edit Venue', 'ecwd'),
|
397 |
'view_item' => __('View Venue', 'ecwd'),
|
398 |
+
'all_items' => __('Venues', 'ecwd'),
|
399 |
'search_items' => __('Search Venue', 'ecwd'),
|
400 |
'not_found' => __('No Venues found.', 'ecwd'),
|
401 |
'not_found_in_trash' => __('No Venues found in Trash.', 'ecwd')
|
406 |
'public' => true,
|
407 |
'publicly_queryable' => true,
|
408 |
'show_ui' => true,
|
409 |
+
// 'show_in_menu' => true,
|
410 |
+
// 'menu_position' => '26,15',
|
411 |
+
'show_in_menu' => 'edit.php?post_type=ecwd_calendar',
|
412 |
'query_var' => true,
|
413 |
'capability_type' => 'post',
|
414 |
'taxonomies' => array(),
|
languages/ecwd-zh_CN.mo
ADDED
Binary file
|
languages/ecwd-zh_CN.po
ADDED
@@ -0,0 +1,1445 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Event Calendar WD\n"
|
4 |
+
"POT-Creation-Date: 2016-10-22 11:14+0800\n"
|
5 |
+
"PO-Revision-Date: 2016-10-22 12:00+0800\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: zh_CN\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.11\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"X-Poedit-WPHeader: ecwd.php\n"
|
15 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
+
|
23 |
+
#: ecwd_admin_class.php:129 ecwd_admin_class.php:626
|
24 |
+
msgid "Settings"
|
25 |
+
msgstr "设置"
|
26 |
+
|
27 |
+
#: ecwd_admin_class.php:153
|
28 |
+
msgid "Licensing"
|
29 |
+
msgstr "许可"
|
30 |
+
|
31 |
+
#: ecwd_admin_class.php:160
|
32 |
+
msgid "Featured plugins"
|
33 |
+
msgstr "特色插件"
|
34 |
+
|
35 |
+
#: ecwd_admin_class.php:166
|
36 |
+
msgid "Featured themes"
|
37 |
+
msgstr "特色主题"
|
38 |
+
|
39 |
+
#: ecwd_admin_class.php:172
|
40 |
+
msgid "Calendar Add-ons"
|
41 |
+
msgstr "日历扩展"
|
42 |
+
|
43 |
+
#: ecwd_admin_class.php:178
|
44 |
+
msgid "Calendar Themes"
|
45 |
+
msgstr "日历主题"
|
46 |
+
|
47 |
+
#: ecwd_admin_class.php:185
|
48 |
+
msgid "Config"
|
49 |
+
msgstr "配置"
|
50 |
+
|
51 |
+
#: ecwd_admin_class.php:431 ecwd_class.php:172 includes/ecwd-functions.php:12
|
52 |
+
msgid "Loading..."
|
53 |
+
msgstr "加载中..."
|
54 |
+
|
55 |
+
#. Plugin Name of the plugin/theme
|
56 |
+
#: ecwd_admin_class.php:620 views/widgets.php:18
|
57 |
+
msgid "Event Calendar WD"
|
58 |
+
msgstr "活动日历WD"
|
59 |
+
|
60 |
+
#: ecwd_admin_class.php:627 includes/ecwd-cpt-class.php:344
|
61 |
+
#: views/admin/ecwd-calendar-meta.php:61 views/admin/import.php:26
|
62 |
+
#: views/admin/import.php:41
|
63 |
+
msgid "Events"
|
64 |
+
msgstr "活动"
|
65 |
+
|
66 |
+
#: ecwd_class.php:81
|
67 |
+
msgid "Could not load the localization file: "
|
68 |
+
msgstr "无法加载本地化文件:"
|
69 |
+
|
70 |
+
#: ecwd_class.php:173
|
71 |
+
msgid "Event Details"
|
72 |
+
msgstr "活动详情"
|
73 |
+
|
74 |
+
#: includes/activation_settings_page.php:112
|
75 |
+
msgid "Install sample data"
|
76 |
+
msgstr "安装样本数据"
|
77 |
+
|
78 |
+
#: includes/activation_settings_page.php:113
|
79 |
+
msgid "Check to install sample data."
|
80 |
+
msgstr "点击以安装示例数据。"
|
81 |
+
|
82 |
+
#: includes/calendar-class.php:204 includes/calendar-class.php:208
|
83 |
+
#: views/widgets.php:166
|
84 |
+
msgid "Month"
|
85 |
+
msgstr "月"
|
86 |
+
|
87 |
+
#: includes/calendar-class.php:212 views/widgets.php:167
|
88 |
+
msgid "List"
|
89 |
+
msgstr "列表"
|
90 |
+
|
91 |
+
#: includes/calendar-class.php:216 views/widgets.php:168
|
92 |
+
msgid "Week"
|
93 |
+
msgstr "周"
|
94 |
+
|
95 |
+
#: includes/calendar-class.php:220 views/widgets.php:169
|
96 |
+
msgid "Day"
|
97 |
+
msgstr "天"
|
98 |
+
|
99 |
+
#: includes/calendar-class.php:443 includes/calendar-class.php:1035
|
100 |
+
#: includes/calendar-class.php:1175 includes/ecwd-functions.php:383
|
101 |
+
#: views/admin/ecwd-event-meta.php:78 views/ecwd-event-content.php:80
|
102 |
+
#: views/ecwd-event-content.php:163 views/ecwd-event-popup.php:155
|
103 |
+
#: views/ecwd-event-popup.php:253 views/related_events.php:54
|
104 |
+
#: views/single-event.php:181 views/single-event.php:287
|
105 |
+
msgid "All day"
|
106 |
+
msgstr "全天"
|
107 |
+
|
108 |
+
#: includes/calendar-class.php:520
|
109 |
+
msgid "No Events"
|
110 |
+
msgstr "没有活动"
|
111 |
+
|
112 |
+
#: includes/calendar-class.php:1108
|
113 |
+
msgid "More events"
|
114 |
+
msgstr "更多活动"
|
115 |
+
|
116 |
+
#: includes/calendar-class.php:1229
|
117 |
+
msgid "No events"
|
118 |
+
msgstr "没有活动"
|
119 |
+
|
120 |
+
#: includes/ecwd-cpt-class.php:147
|
121 |
+
msgid "Duplicate Event"
|
122 |
+
msgstr "复制活动"
|
123 |
+
|
124 |
+
#: includes/ecwd-cpt-class.php:261
|
125 |
+
msgctxt "URL slug"
|
126 |
+
msgid "venue"
|
127 |
+
msgstr "地点"
|
128 |
+
|
129 |
+
#: includes/ecwd-cpt-class.php:262
|
130 |
+
msgctxt "URL slug"
|
131 |
+
msgid "organizer"
|
132 |
+
msgstr "组织者"
|
133 |
+
|
134 |
+
#: includes/ecwd-cpt-class.php:266 includes/ecwd-cpt-class.php:268
|
135 |
+
#: includes/ecwd-cpt-class.php:275 includes/ecwd-cpt-class.php:682
|
136 |
+
msgid "Calendars"
|
137 |
+
msgstr "日历"
|
138 |
+
|
139 |
+
#: includes/ecwd-cpt-class.php:267 includes/ecwd-cpt-class.php:269
|
140 |
+
#: includes/ecwd-cpt-class.php:507
|
141 |
+
msgid "Calendar"
|
142 |
+
msgstr "日历"
|
143 |
+
|
144 |
+
#: includes/ecwd-cpt-class.php:270 includes/ecwd-cpt-class.php:271
|
145 |
+
msgid "Add New Calendar"
|
146 |
+
msgstr "添加新日历"
|
147 |
+
|
148 |
+
#: includes/ecwd-cpt-class.php:272
|
149 |
+
msgid "New Calendar"
|
150 |
+
msgstr "新日历"
|
151 |
+
|
152 |
+
#: includes/ecwd-cpt-class.php:273
|
153 |
+
msgid "Edit Calendar"
|
154 |
+
msgstr "编辑日历"
|
155 |
+
|
156 |
+
#: includes/ecwd-cpt-class.php:274
|
157 |
+
msgid "View Calendar"
|
158 |
+
msgstr "查看日历"
|
159 |
+
|
160 |
+
#: includes/ecwd-cpt-class.php:276
|
161 |
+
msgid "Search Calendar"
|
162 |
+
msgstr "搜索日历"
|
163 |
+
|
164 |
+
#: includes/ecwd-cpt-class.php:277
|
165 |
+
msgid "No Calendars found."
|
166 |
+
msgstr "发现没有日历。"
|
167 |
+
|
168 |
+
#: includes/ecwd-cpt-class.php:278
|
169 |
+
msgid "No Calendars found in Trash."
|
170 |
+
msgstr "回收站中未找到日历"
|
171 |
+
|
172 |
+
#: includes/ecwd-cpt-class.php:304 includes/ecwd-cpt-class.php:686
|
173 |
+
#: views/admin/import.php:27 views/admin/import.php:42
|
174 |
+
#: views/ecwd-event-content.php:101 views/ecwd-event-popup.php:184
|
175 |
+
#: views/single-event.php:217
|
176 |
+
msgid "Organizers"
|
177 |
+
msgstr "组织者"
|
178 |
+
|
179 |
+
#: includes/ecwd-cpt-class.php:305 includes/ecwd-cpt-class.php:306
|
180 |
+
msgid "Organizer"
|
181 |
+
msgstr "组织者"
|
182 |
+
|
183 |
+
#: includes/ecwd-cpt-class.php:307 includes/ecwd-cpt-class.php:347
|
184 |
+
#: includes/ecwd-cpt-class.php:391
|
185 |
+
msgid "Add New"
|
186 |
+
msgstr "新增"
|
187 |
+
|
188 |
+
#: includes/ecwd-cpt-class.php:308
|
189 |
+
msgid "Add New Organizer"
|
190 |
+
msgstr "新增组织者"
|
191 |
+
|
192 |
+
#: includes/ecwd-cpt-class.php:309
|
193 |
+
msgid "New Organizer"
|
194 |
+
msgstr "新组织者"
|
195 |
+
|
196 |
+
#: includes/ecwd-cpt-class.php:310
|
197 |
+
msgid "Edit Organizer"
|
198 |
+
msgstr "编辑组织者"
|
199 |
+
|
200 |
+
#: includes/ecwd-cpt-class.php:311
|
201 |
+
msgid "View Organizer"
|
202 |
+
msgstr "查看组织者"
|
203 |
+
|
204 |
+
#: includes/ecwd-cpt-class.php:312
|
205 |
+
msgid "All Organizers"
|
206 |
+
msgstr "所有组织者"
|
207 |
+
|
208 |
+
#: includes/ecwd-cpt-class.php:313
|
209 |
+
msgid "Search Organizer"
|
210 |
+
msgstr "搜索组织者"
|
211 |
+
|
212 |
+
#: includes/ecwd-cpt-class.php:314
|
213 |
+
msgid "No Organizers found."
|
214 |
+
msgstr "未发现组织者"
|
215 |
+
|
216 |
+
#: includes/ecwd-cpt-class.php:315
|
217 |
+
msgid "No Organizers found in Trash."
|
218 |
+
msgstr "回收站中未发现组织者"
|
219 |
+
|
220 |
+
#: includes/ecwd-cpt-class.php:345 includes/ecwd-cpt-class.php:346
|
221 |
+
#: includes/ecwd-cpt-class.php:598
|
222 |
+
msgid "Event"
|
223 |
+
msgstr "活动"
|
224 |
+
|
225 |
+
#: includes/ecwd-cpt-class.php:348
|
226 |
+
msgid "Add New Event"
|
227 |
+
msgstr "新增活动"
|
228 |
+
|
229 |
+
#: includes/ecwd-cpt-class.php:349
|
230 |
+
msgid "New Event"
|
231 |
+
msgstr "新活动"
|
232 |
+
|
233 |
+
#: includes/ecwd-cpt-class.php:350
|
234 |
+
msgid "Edit Event"
|
235 |
+
msgstr "编辑活动"
|
236 |
+
|
237 |
+
#: includes/ecwd-cpt-class.php:351
|
238 |
+
msgid "View Event"
|
239 |
+
msgstr "查看活动"
|
240 |
+
|
241 |
+
#: includes/ecwd-cpt-class.php:352
|
242 |
+
msgid "All Events"
|
243 |
+
msgstr "所有活动"
|
244 |
+
|
245 |
+
#: includes/ecwd-cpt-class.php:353
|
246 |
+
msgid "Search Event"
|
247 |
+
msgstr "搜索活动"
|
248 |
+
|
249 |
+
#: includes/ecwd-cpt-class.php:354
|
250 |
+
msgid "No events found."
|
251 |
+
msgstr "未找到活动"
|
252 |
+
|
253 |
+
#: includes/ecwd-cpt-class.php:355
|
254 |
+
msgid "No events found in Trash."
|
255 |
+
msgstr "没有在回收站找到活动态"
|
256 |
+
|
257 |
+
#: includes/ecwd-cpt-class.php:388 includes/texts.php:50
|
258 |
+
#: views/admin/import.php:28 views/admin/import.php:43
|
259 |
+
msgid "Venues"
|
260 |
+
msgstr "地点"
|
261 |
+
|
262 |
+
#: includes/ecwd-cpt-class.php:389 includes/ecwd-cpt-class.php:390
|
263 |
+
#: views/ecwd-event-popup.php:196 views/single-event.php:229
|
264 |
+
msgid "Venue"
|
265 |
+
msgstr "地点"
|
266 |
+
|
267 |
+
#: includes/ecwd-cpt-class.php:392
|
268 |
+
msgid "Add New Venue"
|
269 |
+
msgstr "添加新的地点"
|
270 |
+
|
271 |
+
#: includes/ecwd-cpt-class.php:393
|
272 |
+
msgid "New Venue"
|
273 |
+
msgstr "新地点"
|
274 |
+
|
275 |
+
#: includes/ecwd-cpt-class.php:394
|
276 |
+
msgid "Edit Venue"
|
277 |
+
msgstr "编辑地点"
|
278 |
+
|
279 |
+
#: includes/ecwd-cpt-class.php:395
|
280 |
+
msgid "View Venue"
|
281 |
+
msgstr "查看地点"
|
282 |
+
|
283 |
+
#: includes/ecwd-cpt-class.php:396
|
284 |
+
msgid "All Venues"
|
285 |
+
msgstr "所有地点"
|
286 |
+
|
287 |
+
#: includes/ecwd-cpt-class.php:397
|
288 |
+
msgid "Search Venue"
|
289 |
+
msgstr "搜索地点"
|
290 |
+
|
291 |
+
#: includes/ecwd-cpt-class.php:398
|
292 |
+
msgid "No Venues found."
|
293 |
+
msgstr "未找到地点"
|
294 |
+
|
295 |
+
#: includes/ecwd-cpt-class.php:399
|
296 |
+
msgid "No Venues found in Trash."
|
297 |
+
msgstr "回收站中未发现地点"
|
298 |
+
|
299 |
+
#: includes/ecwd-cpt-class.php:505
|
300 |
+
msgid "calendar"
|
301 |
+
msgstr "日历"
|
302 |
+
|
303 |
+
#: includes/ecwd-cpt-class.php:510 includes/ecwd-cpt-class.php:551
|
304 |
+
#, php-format
|
305 |
+
msgid "%4$s updated."
|
306 |
+
msgstr "%4$s 更新。"
|
307 |
+
|
308 |
+
#: includes/ecwd-cpt-class.php:511 includes/ecwd-cpt-class.php:552
|
309 |
+
#, php-format
|
310 |
+
msgid "%4$s updated. "
|
311 |
+
msgstr "%4$s 更新。"
|
312 |
+
|
313 |
+
#: includes/ecwd-cpt-class.php:512 includes/ecwd-cpt-class.php:553
|
314 |
+
#, php-format
|
315 |
+
msgid "%4$s published."
|
316 |
+
msgstr "%4$s 发布。"
|
317 |
+
|
318 |
+
#: includes/ecwd-cpt-class.php:513 includes/ecwd-cpt-class.php:554
|
319 |
+
#, php-format
|
320 |
+
msgid "%4$s saved."
|
321 |
+
msgstr "%4$s 保存。"
|
322 |
+
|
323 |
+
#: includes/ecwd-cpt-class.php:514 includes/ecwd-cpt-class.php:555
|
324 |
+
#, php-format
|
325 |
+
msgid "%4$s submitted. "
|
326 |
+
msgstr "%4$s 提交。"
|
327 |
+
|
328 |
+
#: includes/ecwd-cpt-class.php:515 includes/ecwd-cpt-class.php:556
|
329 |
+
#, php-format
|
330 |
+
msgid "%4$s draft updated."
|
331 |
+
msgstr "%4$s 草稿已更新。"
|
332 |
+
|
333 |
+
#: includes/ecwd-cpt-class.php:546 includes/ecwd-cpt-class.php:548
|
334 |
+
#: views/admin/ecwd-calendar-meta.php:100
|
335 |
+
msgid "Theme"
|
336 |
+
msgstr "主题"
|
337 |
+
|
338 |
+
#: includes/ecwd-cpt-class.php:596
|
339 |
+
msgid "event"
|
340 |
+
msgstr "活动"
|
341 |
+
|
342 |
+
#: includes/ecwd-cpt-class.php:601 includes/ecwd-cpt-class.php:602
|
343 |
+
#, php-format
|
344 |
+
msgid "%4$s updated. %1$sView %2$s%3$s"
|
345 |
+
msgstr "%4$s 更新。%1$s查看%2$s%3$s"
|
346 |
+
|
347 |
+
#: includes/ecwd-cpt-class.php:603
|
348 |
+
#, php-format
|
349 |
+
msgid "%4$s published. %1$sView %2$s%3$s"
|
350 |
+
msgstr "%4$s 出版。%1$s查看%2$s%3$s"
|
351 |
+
|
352 |
+
#: includes/ecwd-cpt-class.php:604
|
353 |
+
#, php-format
|
354 |
+
msgid "%4$s saved. %1$sView %2$s%3$s"
|
355 |
+
msgstr "%4$s 保存。%1$s查看%2$s%3$s"
|
356 |
+
|
357 |
+
#: includes/ecwd-cpt-class.php:605
|
358 |
+
#, php-format
|
359 |
+
msgid "%4$s submitted. %1$sView %2$s%3$s"
|
360 |
+
msgstr "%4$s 提交。%1$s查看%2$s%3$s"
|
361 |
+
|
362 |
+
#: includes/ecwd-cpt-class.php:606
|
363 |
+
#, php-format
|
364 |
+
msgid "%4$s draft updated. %1$sView %2$s%3$s"
|
365 |
+
msgstr "%4$s 草案更新。%1$s查看%2$s%3$s"
|
366 |
+
|
367 |
+
#: includes/ecwd-cpt-class.php:616
|
368 |
+
msgid "Calendar Settings"
|
369 |
+
msgstr "日历设置"
|
370 |
+
|
371 |
+
#: includes/ecwd-cpt-class.php:690
|
372 |
+
msgid "Event Settings"
|
373 |
+
msgstr "活动设置"
|
374 |
+
|
375 |
+
#: includes/ecwd-cpt-class.php:695
|
376 |
+
msgid "Featured Image"
|
377 |
+
msgstr "特色图像"
|
378 |
+
|
379 |
+
#: includes/ecwd-cpt-class.php:732
|
380 |
+
msgid "Calendar Theme Settings"
|
381 |
+
msgstr "日历主题设置"
|
382 |
+
|
383 |
+
#: includes/ecwd-cpt-class.php:834
|
384 |
+
msgid "Venue Location"
|
385 |
+
msgstr "地点位置"
|
386 |
+
|
387 |
+
#: includes/ecwd-cpt-class.php:1114
|
388 |
+
msgid "Calendar ID"
|
389 |
+
msgstr "日历ID"
|
390 |
+
|
391 |
+
#: includes/ecwd-cpt-class.php:1115 views/admin/ecwd-calendar-meta.php:27
|
392 |
+
msgid "Calendar Shortcode"
|
393 |
+
msgstr "Calendar短码"
|
394 |
+
|
395 |
+
#: includes/ecwd-cpt-class.php:1125 views/admin/ecwd-event-meta.php:54
|
396 |
+
msgid "Event Dates"
|
397 |
+
msgstr "活动日期"
|
398 |
+
|
399 |
+
#: includes/ecwd-cpt-class.php:1171
|
400 |
+
msgctxt "taxonomy general name"
|
401 |
+
msgid "Event Categories"
|
402 |
+
msgstr "活动分类"
|
403 |
+
|
404 |
+
#: includes/ecwd-cpt-class.php:1172
|
405 |
+
msgctxt "taxonomy singular name"
|
406 |
+
msgid "Event Category"
|
407 |
+
msgstr "活动分类"
|
408 |
+
|
409 |
+
#: includes/ecwd-cpt-class.php:1173
|
410 |
+
msgid "Search Event Categories"
|
411 |
+
msgstr "搜索活动分类"
|
412 |
+
|
413 |
+
#: includes/ecwd-cpt-class.php:1174
|
414 |
+
msgid "All Event Categories"
|
415 |
+
msgstr "所有活动分类"
|
416 |
+
|
417 |
+
#: includes/ecwd-cpt-class.php:1175
|
418 |
+
msgid "Parent Category"
|
419 |
+
msgstr "父系分类"
|
420 |
+
|
421 |
+
#: includes/ecwd-cpt-class.php:1176
|
422 |
+
msgid "Parent Category:"
|
423 |
+
msgstr "父系分类:"
|
424 |
+
|
425 |
+
#: includes/ecwd-cpt-class.php:1177
|
426 |
+
msgid "Edit Category"
|
427 |
+
msgstr "编辑分类"
|
428 |
+
|
429 |
+
#: includes/ecwd-cpt-class.php:1178
|
430 |
+
msgid "Update Category"
|
431 |
+
msgstr "更新分类"
|
432 |
+
|
433 |
+
#: includes/ecwd-cpt-class.php:1179
|
434 |
+
msgid "Add New Event Category"
|
435 |
+
msgstr "新增活动分类"
|
436 |
+
|
437 |
+
#: includes/ecwd-cpt-class.php:1180
|
438 |
+
msgid "New Event Category Name"
|
439 |
+
msgstr "新活动分类名称"
|
440 |
+
|
441 |
+
#: includes/ecwd-cpt-class.php:1181
|
442 |
+
msgid "Event Categories"
|
443 |
+
msgstr "活动分类"
|
444 |
+
|
445 |
+
#: includes/ecwd-cpt-class.php:1198
|
446 |
+
msgid "Event Tags"
|
447 |
+
msgstr "活动标签"
|
448 |
+
|
449 |
+
#: includes/ecwd-cpt-class.php:1199
|
450 |
+
msgid "Event Tag"
|
451 |
+
msgstr "活动标签"
|
452 |
+
|
453 |
+
#: includes/ecwd-cpt-class.php:1278 includes/ecwd-cpt-class.php:1296
|
454 |
+
msgid "Icon"
|
455 |
+
msgstr "图标 "
|
456 |
+
|
457 |
+
#: includes/ecwd-cpt-class.php:1279
|
458 |
+
msgid "Color"
|
459 |
+
msgstr "颜色"
|
460 |
+
|
461 |
+
#: includes/ecwd-cpt-filter.php:67 views/admin/ecwd-event-meta.php:56
|
462 |
+
msgid "From"
|
463 |
+
msgstr "从"
|
464 |
+
|
465 |
+
#: includes/ecwd-cpt-filter.php:74 views/admin/ecwd-event-meta.php:63
|
466 |
+
msgid "To"
|
467 |
+
msgstr "到"
|
468 |
+
|
469 |
+
#: includes/ecwd-event-class.php:188
|
470 |
+
#, php-format
|
471 |
+
msgid "%s year"
|
472 |
+
msgstr "%s 年"
|
473 |
+
|
474 |
+
#: includes/ecwd-event-class.php:188
|
475 |
+
#, php-format
|
476 |
+
msgid "%s years"
|
477 |
+
msgstr "%s 年"
|
478 |
+
|
479 |
+
#: includes/ecwd-event-class.php:189
|
480 |
+
#, php-format
|
481 |
+
msgid "%s month"
|
482 |
+
msgstr "%s 月"
|
483 |
+
|
484 |
+
#: includes/ecwd-event-class.php:189
|
485 |
+
#, php-format
|
486 |
+
msgid "%s months"
|
487 |
+
msgstr "%s 月"
|
488 |
+
|
489 |
+
#: includes/ecwd-event-class.php:190
|
490 |
+
#, php-format
|
491 |
+
msgid "%s week"
|
492 |
+
msgstr "%s 周"
|
493 |
+
|
494 |
+
#: includes/ecwd-event-class.php:190
|
495 |
+
#, php-format
|
496 |
+
msgid "%s weeks"
|
497 |
+
msgstr "%s 周"
|
498 |
+
|
499 |
+
#: includes/ecwd-event-class.php:191
|
500 |
+
#, php-format
|
501 |
+
msgid "%s day"
|
502 |
+
msgstr "%s 天"
|
503 |
+
|
504 |
+
#: includes/ecwd-event-class.php:191
|
505 |
+
#, php-format
|
506 |
+
msgid "%s days"
|
507 |
+
msgstr "%s 天"
|
508 |
+
|
509 |
+
#: includes/ecwd-event-class.php:192
|
510 |
+
#, php-format
|
511 |
+
msgid "%s hour"
|
512 |
+
msgstr "%s 小时"
|
513 |
+
|
514 |
+
#: includes/ecwd-event-class.php:192
|
515 |
+
#, php-format
|
516 |
+
msgid "%s hours"
|
517 |
+
msgstr "%s 小时"
|
518 |
+
|
519 |
+
#: includes/ecwd-event-class.php:193
|
520 |
+
#, php-format
|
521 |
+
msgid "%s min"
|
522 |
+
msgstr "%s 分钟"
|
523 |
+
|
524 |
+
#: includes/ecwd-event-class.php:193
|
525 |
+
#, php-format
|
526 |
+
msgid "%s mins"
|
527 |
+
msgstr "%s 分钟"
|
528 |
+
|
529 |
+
#: includes/ecwd-event-class.php:221
|
530 |
+
msgctxt "human_time_diff"
|
531 |
+
msgid ", "
|
532 |
+
msgstr ", "
|
533 |
+
|
534 |
+
#: includes/ecwd-functions.php:460 includes/texts.php:53
|
535 |
+
msgid "DAYS"
|
536 |
+
msgstr "天"
|
537 |
+
|
538 |
+
#: includes/ecwd-functions.php:461 includes/texts.php:54
|
539 |
+
msgid "HOURS"
|
540 |
+
msgstr "时"
|
541 |
+
|
542 |
+
#: includes/ecwd-functions.php:462 includes/texts.php:55
|
543 |
+
msgid "MINUTES"
|
544 |
+
msgstr "分"
|
545 |
+
|
546 |
+
#: includes/ecwd-functions.php:463 includes/texts.php:56
|
547 |
+
msgid "SECONDS"
|
548 |
+
msgstr "秒"
|
549 |
+
|
550 |
+
#: includes/notices.php:19 includes/notices.php:41
|
551 |
+
msgid "Hey! How's It Going?"
|
552 |
+
msgstr "嘿 !它怎么了?"
|
553 |
+
|
554 |
+
#: includes/notices.php:21 includes/notices.php:33 includes/notices.php:45
|
555 |
+
msgid "Never show again"
|
556 |
+
msgstr "永远不会再显示"
|
557 |
+
|
558 |
+
#: includes/notices.php:28
|
559 |
+
msgid "Leave A Review?"
|
560 |
+
msgstr "发布评价?"
|
561 |
+
|
562 |
+
#: includes/notices.php:29
|
563 |
+
msgid ""
|
564 |
+
"We hope you've enjoyed using Event Calendar WD! Would you consider leaving "
|
565 |
+
"us a review on WordPress.org?"
|
566 |
+
msgstr "我们希望你喜欢使用活动日历WD! 你会考虑给我们在Wordpress.org上评价吗?"
|
567 |
+
|
568 |
+
#: includes/notices.php:30
|
569 |
+
msgid "Sure! I'd love to!"
|
570 |
+
msgstr "确定 !我很乐意去 !"
|
571 |
+
|
572 |
+
#: includes/notices.php:31
|
573 |
+
msgid "I've already left a review"
|
574 |
+
msgstr "我已经评论了"
|
575 |
+
|
576 |
+
#: includes/notices.php:32
|
577 |
+
msgid "Maybe Later"
|
578 |
+
msgstr "以后再说"
|
579 |
+
|
580 |
+
#: includes/notices.php:42
|
581 |
+
msgid ""
|
582 |
+
"Thank you for using Events Calendar WD! We hope that you've found everything "
|
583 |
+
"you need, but if you have any questions:"
|
584 |
+
msgstr ""
|
585 |
+
"感谢您使用活动日历 WD !我们希望你已经找到了一切你所需要的但是如果你有任何问"
|
586 |
+
"题︰"
|
587 |
+
|
588 |
+
#: includes/notices.php:43
|
589 |
+
msgid "Check out User Guide"
|
590 |
+
msgstr "查阅用户指南"
|
591 |
+
|
592 |
+
#: includes/notices.php:44
|
593 |
+
msgid "Get Some Help"
|
594 |
+
msgstr "获取帮助"
|
595 |
+
|
596 |
+
#: includes/register-settings.php:18
|
597 |
+
msgid "Cache has been deleted."
|
598 |
+
msgstr "缓存中已被删除。"
|
599 |
+
|
600 |
+
#: includes/register-settings.php:43
|
601 |
+
msgid "Auto generated data has been deleted."
|
602 |
+
msgstr "自动生成数据已被删除。"
|
603 |
+
|
604 |
+
#: includes/register-settings.php:45
|
605 |
+
msgid "Auto generated data has already deleted."
|
606 |
+
msgstr "已删除自动生成的数据。"
|
607 |
+
|
608 |
+
#: includes/register-settings.php:74
|
609 |
+
msgid "Start tour"
|
610 |
+
msgstr "进入新手引导"
|
611 |
+
|
612 |
+
#: includes/register-settings.php:75
|
613 |
+
msgid "Click to start tour."
|
614 |
+
msgstr "点击进入新手引导,"
|
615 |
+
|
616 |
+
#: includes/register-settings.php:82
|
617 |
+
msgid "Clear auto generated data"
|
618 |
+
msgstr "清除自动生成的数据"
|
619 |
+
|
620 |
+
#: includes/register-settings.php:83
|
621 |
+
msgid "Click to clear auto generated data"
|
622 |
+
msgstr "单击以清除自动生成的数据"
|
623 |
+
|
624 |
+
#: includes/register-settings.php:90
|
625 |
+
msgid "TimeZone"
|
626 |
+
msgstr "时区"
|
627 |
+
|
628 |
+
#: includes/register-settings.php:91
|
629 |
+
msgid ""
|
630 |
+
"Use Continent/City format, e.g. Europe/Berlin. If left empty, the server "
|
631 |
+
"timezone will be used (if set in php settings), otherwise default Europe/"
|
632 |
+
"Berlin"
|
633 |
+
msgstr ""
|
634 |
+
"使用国家/城市格式,例如 欧洲/柏林。 如果留空,将使用服务器时区(如果在php设置"
|
635 |
+
"中设置),否则默认为欧洲/柏林"
|
636 |
+
|
637 |
+
#: includes/register-settings.php:97
|
638 |
+
msgid "Date format"
|
639 |
+
msgstr "日期格式"
|
640 |
+
|
641 |
+
#: includes/register-settings.php:98
|
642 |
+
msgid "Set the format for displaying event dates. Ex Y-m-d or Y/m/d"
|
643 |
+
msgstr "设置显示活动日期的格式。 例如 Y-m-d或Y / m / d"
|
644 |
+
|
645 |
+
#: includes/register-settings.php:104
|
646 |
+
msgid "Time format"
|
647 |
+
msgstr "时间格式"
|
648 |
+
|
649 |
+
#: includes/register-settings.php:105
|
650 |
+
msgid "Set the format for displaying event time. Ex H:i or H/i"
|
651 |
+
msgstr "设置显示活动时间的格式。 例如 H:i或H / i"
|
652 |
+
|
653 |
+
#: includes/register-settings.php:111
|
654 |
+
msgid "Show AM/PM"
|
655 |
+
msgstr "显示上午/下午"
|
656 |
+
|
657 |
+
#: includes/register-settings.php:112
|
658 |
+
msgid "Select the time format type"
|
659 |
+
msgstr "选择时间格式类型"
|
660 |
+
|
661 |
+
#: includes/register-settings.php:118
|
662 |
+
msgid "List,Week,Day views day format"
|
663 |
+
msgstr "列表,周,天预览格式"
|
664 |
+
|
665 |
+
#: includes/register-settings.php:119
|
666 |
+
msgid "Note: Changed date format will not be translatable"
|
667 |
+
msgstr "注意:更改日期格式不能翻译"
|
668 |
+
|
669 |
+
#: includes/register-settings.php:126
|
670 |
+
msgid "Week start day"
|
671 |
+
msgstr "每周开始日期"
|
672 |
+
|
673 |
+
#: includes/register-settings.php:127
|
674 |
+
msgid "Define the starting day for the week."
|
675 |
+
msgstr "定义一周的开始日期。"
|
676 |
+
|
677 |
+
#: includes/register-settings.php:133
|
678 |
+
msgid "Enable rewrite"
|
679 |
+
msgstr "启用重写"
|
680 |
+
|
681 |
+
#: includes/register-settings.php:135
|
682 |
+
msgid "Check yes to enable event(s) url rewrite rule."
|
683 |
+
msgstr "选中是以启用活动url重写规则。"
|
684 |
+
|
685 |
+
#: includes/register-settings.php:141
|
686 |
+
msgid "Order of Organizers and Venues by"
|
687 |
+
msgstr "组织者和场地的顺序"
|
688 |
+
|
689 |
+
#: includes/register-settings.php:142
|
690 |
+
msgid "Select Order of Organizers and Venues."
|
691 |
+
msgstr "选择主办方和场地的顺序。"
|
692 |
+
|
693 |
+
#: includes/register-settings.php:147
|
694 |
+
msgid "Enable Social Icons"
|
695 |
+
msgstr "启用社交图标"
|
696 |
+
|
697 |
+
#: includes/register-settings.php:148
|
698 |
+
msgid "Check to display social icons in event, organizer and venue pages."
|
699 |
+
msgstr "选中以在活动,组织者和场地页面中显示社交图标。"
|
700 |
+
|
701 |
+
#: includes/register-settings.php:153
|
702 |
+
msgid "Apply category color to event title in event page"
|
703 |
+
msgstr "在活动页面中将类别颜色应用于活动标题"
|
704 |
+
|
705 |
+
#: includes/register-settings.php:160
|
706 |
+
msgid "Enable Category and Tags"
|
707 |
+
msgstr "启用类别和标签"
|
708 |
+
|
709 |
+
#: includes/register-settings.php:161
|
710 |
+
msgid "Check to display category and Tags."
|
711 |
+
msgstr "选中以显示类别和标签。"
|
712 |
+
|
713 |
+
#: includes/register-settings.php:166
|
714 |
+
msgid "Grab the first post image"
|
715 |
+
msgstr "抓取第一个文章图片"
|
716 |
+
|
717 |
+
#: includes/register-settings.php:176
|
718 |
+
msgid "Order of events archive page"
|
719 |
+
msgstr "活动归档页面顺序"
|
720 |
+
|
721 |
+
#: includes/register-settings.php:177
|
722 |
+
msgid "Sort by event start"
|
723 |
+
msgstr "按活动开始排序"
|
724 |
+
|
725 |
+
#: includes/register-settings.php:184
|
726 |
+
msgid "Enable sidebar in event page"
|
727 |
+
msgstr "启用在活动页侧边栏"
|
728 |
+
|
729 |
+
#: includes/register-settings.php:190
|
730 |
+
msgid "Description for events."
|
731 |
+
msgstr "活动的说明。"
|
732 |
+
|
733 |
+
#: includes/register-settings.php:191
|
734 |
+
msgid "No additional detail for this event."
|
735 |
+
msgstr "没有为此活动的附加详细信息。"
|
736 |
+
|
737 |
+
#: includes/register-settings.php:192
|
738 |
+
msgid "Define the default text for empty events description."
|
739 |
+
msgstr "定义空事件描述的默认文本。"
|
740 |
+
|
741 |
+
#: includes/register-settings.php:198
|
742 |
+
msgid "Show event date in the events list page"
|
743 |
+
msgstr "在活动列表页面中显示活动日期"
|
744 |
+
|
745 |
+
#: includes/register-settings.php:205
|
746 |
+
msgid "Mark all days of multi-day event"
|
747 |
+
msgstr "标记所有天的多天活动"
|
748 |
+
|
749 |
+
#: includes/register-settings.php:212
|
750 |
+
msgid "Related events count"
|
751 |
+
msgstr "相关的活动计数"
|
752 |
+
|
753 |
+
#: includes/register-settings.php:219
|
754 |
+
msgid "Display Events in popup"
|
755 |
+
msgstr "在弹出窗口中显示活动"
|
756 |
+
|
757 |
+
#: includes/register-settings.php:220
|
758 |
+
msgid "Check to display events in popup."
|
759 |
+
msgstr "选中以在弹出窗口中显示活动。"
|
760 |
+
|
761 |
+
#: includes/register-settings.php:225
|
762 |
+
msgid "Events slug"
|
763 |
+
msgstr "活动slug"
|
764 |
+
|
765 |
+
#: includes/register-settings.php:227
|
766 |
+
msgid "Define the slug for the events list page."
|
767 |
+
msgstr "定义事件列表页面的slug。"
|
768 |
+
|
769 |
+
#: includes/register-settings.php:233
|
770 |
+
msgid "Single Event slug"
|
771 |
+
msgstr "单个活动slug"
|
772 |
+
|
773 |
+
#: includes/register-settings.php:235
|
774 |
+
msgid "Define the slug for the single event page."
|
775 |
+
msgstr "定义单个活动页面slug。"
|
776 |
+
|
777 |
+
#: includes/register-settings.php:241
|
778 |
+
msgid "Enable comments for events"
|
779 |
+
msgstr "为活动启用评论"
|
780 |
+
|
781 |
+
#: includes/register-settings.php:242
|
782 |
+
msgid "Check to enable commenting."
|
783 |
+
msgstr "选中以启用评论。"
|
784 |
+
|
785 |
+
#: includes/register-settings.php:247
|
786 |
+
msgid "Include events in main loop"
|
787 |
+
msgstr "在主循环中包含活动"
|
788 |
+
|
789 |
+
#: includes/register-settings.php:248
|
790 |
+
msgid "Check to display events within website post list in main pages."
|
791 |
+
msgstr "选中以在主页面的网站文章列表中显示活动。"
|
792 |
+
|
793 |
+
#: includes/register-settings.php:253
|
794 |
+
msgid "Show events detail on hover"
|
795 |
+
msgstr "在悬停上显示活动详细信息"
|
796 |
+
|
797 |
+
#: includes/register-settings.php:260
|
798 |
+
msgid "Open events in new tab"
|
799 |
+
msgstr "在新标签页中打开活动"
|
800 |
+
|
801 |
+
#: includes/register-settings.php:267
|
802 |
+
msgid "Show related events in the event page"
|
803 |
+
msgstr "在活动页面中显示相关活动"
|
804 |
+
|
805 |
+
#: includes/register-settings.php:276
|
806 |
+
msgid "Events category slug"
|
807 |
+
msgstr "活动分类slug"
|
808 |
+
|
809 |
+
#: includes/register-settings.php:284
|
810 |
+
msgid "Display Description"
|
811 |
+
msgstr "显示描述"
|
812 |
+
|
813 |
+
#: includes/register-settings.php:291
|
814 |
+
msgid "Display Image"
|
815 |
+
msgstr "显示图象"
|
816 |
+
|
817 |
+
#: includes/register-settings.php:300
|
818 |
+
msgid "Custom css"
|
819 |
+
msgstr "自定义CSS"
|
820 |
+
|
821 |
+
#: includes/register-settings.php:310
|
822 |
+
msgid "Get key"
|
823 |
+
msgstr "获取密钥"
|
824 |
+
|
825 |
+
#: includes/register-settings.php:318
|
826 |
+
msgid "API key"
|
827 |
+
msgstr "API 密钥"
|
828 |
+
|
829 |
+
#: includes/register-settings.php:333 includes/register-settings.php:373
|
830 |
+
msgid "Show the repeat rate"
|
831 |
+
msgstr "显示重复率"
|
832 |
+
|
833 |
+
#: includes/register-settings.php:334 includes/register-settings.php:374
|
834 |
+
msgid "Check to show the repeat rate in event page ."
|
835 |
+
msgstr "选中以在活动页中显示重复率。"
|
836 |
+
|
837 |
+
#: includes/register-settings.php:339
|
838 |
+
msgid "Add fixed height for events in posterboard view"
|
839 |
+
msgstr "在广告牌视图中为活动添加固定高度"
|
840 |
+
|
841 |
+
#: includes/register-settings.php:346
|
842 |
+
msgid "Period for List view"
|
843 |
+
msgstr "列表视图的周期"
|
844 |
+
|
845 |
+
#: includes/register-settings.php:347
|
846 |
+
msgid "Period for showing events"
|
847 |
+
msgstr "显示活动的时间段"
|
848 |
+
|
849 |
+
#: includes/register-settings.php:355
|
850 |
+
msgid "Satellite Gmap Type"
|
851 |
+
msgstr "卫星地图类型"
|
852 |
+
|
853 |
+
#: includes/register-settings.php:362
|
854 |
+
msgid "Open Google map when Marker is clicked"
|
855 |
+
msgstr "打开Google地图点击标记"
|
856 |
+
|
857 |
+
#: includes/register-settings.php:827
|
858 |
+
#, php-format
|
859 |
+
msgid ""
|
860 |
+
"The callback function used for the <strong>%s</strong> setting is missing."
|
861 |
+
msgstr "缺少用于<strong>%s</strong>设置的回调函数。"
|
862 |
+
|
863 |
+
#: includes/texts.php:2 views/admin/ecwd-event-meta.php:339
|
864 |
+
msgid "January"
|
865 |
+
msgstr "一月"
|
866 |
+
|
867 |
+
#: includes/texts.php:3 views/admin/ecwd-event-meta.php:341
|
868 |
+
msgid "February"
|
869 |
+
msgstr "二月"
|
870 |
+
|
871 |
+
#: includes/texts.php:4 views/admin/ecwd-event-meta.php:343
|
872 |
+
msgid "March"
|
873 |
+
msgstr "三月"
|
874 |
+
|
875 |
+
#: includes/texts.php:5 views/admin/ecwd-event-meta.php:345
|
876 |
+
msgid "April"
|
877 |
+
msgstr "四月"
|
878 |
+
|
879 |
+
#: includes/texts.php:6 views/admin/ecwd-event-meta.php:347
|
880 |
+
msgid "May"
|
881 |
+
msgstr "五月"
|
882 |
+
|
883 |
+
#: includes/texts.php:7 views/admin/ecwd-event-meta.php:349
|
884 |
+
msgid "June"
|
885 |
+
msgstr "六月"
|
886 |
+
|
887 |
+
#: includes/texts.php:8 views/admin/ecwd-event-meta.php:351
|
888 |
+
msgid "July"
|
889 |
+
msgstr "七月"
|
890 |
+
|
891 |
+
#: includes/texts.php:9 views/admin/ecwd-event-meta.php:353
|
892 |
+
msgid "August"
|
893 |
+
msgstr "八月"
|
894 |
+
|
895 |
+
#: includes/texts.php:10 views/admin/ecwd-event-meta.php:355
|
896 |
+
msgid "September"
|
897 |
+
msgstr "九月"
|
898 |
+
|
899 |
+
#: includes/texts.php:11 views/admin/ecwd-event-meta.php:357
|
900 |
+
msgid "October"
|
901 |
+
msgstr "十月"
|
902 |
+
|
903 |
+
#: includes/texts.php:12 views/admin/ecwd-event-meta.php:359
|
904 |
+
msgid "November"
|
905 |
+
msgstr "十一月"
|
906 |
+
|
907 |
+
#: includes/texts.php:13 views/admin/ecwd-event-meta.php:361
|
908 |
+
msgid "December"
|
909 |
+
msgstr "十二月"
|
910 |
+
|
911 |
+
#: includes/texts.php:15 views/admin/ecwd-event-meta.php:271
|
912 |
+
#: views/admin/ecwd-event-meta.php:330 views/admin/ecwd-event-meta.php:416
|
913 |
+
msgid "Sunday"
|
914 |
+
msgstr "星期天"
|
915 |
+
|
916 |
+
#: includes/texts.php:16 views/admin/ecwd-event-meta.php:198
|
917 |
+
#: views/admin/ecwd-event-meta.php:318 views/admin/ecwd-event-meta.php:404
|
918 |
+
msgid "Monday"
|
919 |
+
msgstr "星期一"
|
920 |
+
|
921 |
+
#: includes/texts.php:17 views/admin/ecwd-event-meta.php:210
|
922 |
+
#: views/admin/ecwd-event-meta.php:320 views/admin/ecwd-event-meta.php:406
|
923 |
+
msgid "Tuesday"
|
924 |
+
msgstr "星期二"
|
925 |
+
|
926 |
+
#: includes/texts.php:18 views/admin/ecwd-event-meta.php:223
|
927 |
+
#: views/admin/ecwd-event-meta.php:322 views/admin/ecwd-event-meta.php:408
|
928 |
+
msgid "Wednesday"
|
929 |
+
msgstr "星期三"
|
930 |
+
|
931 |
+
#: includes/texts.php:19 views/admin/ecwd-event-meta.php:235
|
932 |
+
#: views/admin/ecwd-event-meta.php:324 views/admin/ecwd-event-meta.php:410
|
933 |
+
msgid "Thursday"
|
934 |
+
msgstr "星期四"
|
935 |
+
|
936 |
+
#: includes/texts.php:20 views/admin/ecwd-event-meta.php:247
|
937 |
+
#: views/admin/ecwd-event-meta.php:326 views/admin/ecwd-event-meta.php:412
|
938 |
+
msgid "Friday"
|
939 |
+
msgstr "星期五"
|
940 |
+
|
941 |
+
#: includes/texts.php:21 views/admin/ecwd-event-meta.php:259
|
942 |
+
#: views/admin/ecwd-event-meta.php:328 views/admin/ecwd-event-meta.php:414
|
943 |
+
msgid "Saturday"
|
944 |
+
msgstr "星期六"
|
945 |
+
|
946 |
+
#: includes/texts.php:25
|
947 |
+
msgid "Sun"
|
948 |
+
msgstr "周日"
|
949 |
+
|
950 |
+
#: includes/texts.php:26
|
951 |
+
msgid "Mon"
|
952 |
+
msgstr "周一"
|
953 |
+
|
954 |
+
#: includes/texts.php:27
|
955 |
+
msgid "Tue"
|
956 |
+
msgstr "周二"
|
957 |
+
|
958 |
+
#: includes/texts.php:28
|
959 |
+
msgid "Wed"
|
960 |
+
msgstr "周三"
|
961 |
+
|
962 |
+
#: includes/texts.php:29
|
963 |
+
msgid "Thu"
|
964 |
+
msgstr "周四"
|
965 |
+
|
966 |
+
#: includes/texts.php:30
|
967 |
+
msgid "Fri"
|
968 |
+
msgstr "周五"
|
969 |
+
|
970 |
+
#: includes/texts.php:31
|
971 |
+
msgid "Sat"
|
972 |
+
msgstr "周六"
|
973 |
+
|
974 |
+
#: includes/texts.php:34
|
975 |
+
msgid "Su"
|
976 |
+
msgstr "周日"
|
977 |
+
|
978 |
+
#: includes/texts.php:35
|
979 |
+
msgid "Mo"
|
980 |
+
msgstr "周一"
|
981 |
+
|
982 |
+
#: includes/texts.php:36
|
983 |
+
msgid "Tu"
|
984 |
+
msgstr "周二"
|
985 |
+
|
986 |
+
#: includes/texts.php:37
|
987 |
+
msgid "We"
|
988 |
+
msgstr "周三"
|
989 |
+
|
990 |
+
#: includes/texts.php:38
|
991 |
+
msgid "Th"
|
992 |
+
msgstr "周四"
|
993 |
+
|
994 |
+
#: includes/texts.php:39
|
995 |
+
msgid "Fr"
|
996 |
+
msgstr "周五"
|
997 |
+
|
998 |
+
#: includes/texts.php:40
|
999 |
+
msgid "Sa"
|
1000 |
+
msgstr "周六"
|
1001 |
+
|
1002 |
+
#: includes/texts.php:44
|
1003 |
+
msgid "Show Filters"
|
1004 |
+
msgstr "显示筛选器"
|
1005 |
+
|
1006 |
+
#: includes/texts.php:45
|
1007 |
+
msgid "Collapse Filters"
|
1008 |
+
msgstr "折叠筛选器"
|
1009 |
+
|
1010 |
+
#: includes/texts.php:46
|
1011 |
+
msgid "Reset Filters"
|
1012 |
+
msgstr "重置筛选器"
|
1013 |
+
|
1014 |
+
#: includes/texts.php:48
|
1015 |
+
msgid "Days"
|
1016 |
+
msgstr "天"
|
1017 |
+
|
1018 |
+
#: includes/texts.php:49
|
1019 |
+
msgid "Categories"
|
1020 |
+
msgstr "分类"
|
1021 |
+
|
1022 |
+
#: includes/texts.php:57
|
1023 |
+
msgid "The event has just started"
|
1024 |
+
msgstr "该活动只被开始"
|
1025 |
+
|
1026 |
+
#: includes/texts.php:60 views/admin/ecwd-event-meta.php:161
|
1027 |
+
msgid "Repeat every"
|
1028 |
+
msgstr "每重复"
|
1029 |
+
|
1030 |
+
#: includes/texts.php:61
|
1031 |
+
msgid "Repeat every day"
|
1032 |
+
msgstr "每天重复"
|
1033 |
+
|
1034 |
+
#: includes/texts.php:62
|
1035 |
+
msgid "Repeat every week"
|
1036 |
+
msgstr "每周重复"
|
1037 |
+
|
1038 |
+
#: includes/texts.php:63
|
1039 |
+
msgid "Repeat every month"
|
1040 |
+
msgstr "每月重复"
|
1041 |
+
|
1042 |
+
#: includes/texts.php:64
|
1043 |
+
msgid "Repeat every year"
|
1044 |
+
msgstr "每年重复"
|
1045 |
+
|
1046 |
+
#: includes/texts.php:66
|
1047 |
+
msgid "days"
|
1048 |
+
msgstr "天"
|
1049 |
+
|
1050 |
+
#: includes/texts.php:67
|
1051 |
+
msgid "weeks"
|
1052 |
+
msgstr "周"
|
1053 |
+
|
1054 |
+
#: includes/texts.php:68
|
1055 |
+
msgid "months"
|
1056 |
+
msgstr "月"
|
1057 |
+
|
1058 |
+
#: includes/texts.php:69
|
1059 |
+
msgid "years"
|
1060 |
+
msgstr "年"
|
1061 |
+
|
1062 |
+
#: includes/texts.php:70
|
1063 |
+
msgid "until"
|
1064 |
+
msgstr "直到"
|
1065 |
+
|
1066 |
+
#: includes/texts.php:72
|
1067 |
+
msgid "Sundays"
|
1068 |
+
msgstr "星期天"
|
1069 |
+
|
1070 |
+
#: includes/texts.php:73
|
1071 |
+
msgid "Mondays"
|
1072 |
+
msgstr "星期一"
|
1073 |
+
|
1074 |
+
#: includes/texts.php:74
|
1075 |
+
msgid "Tuesdays"
|
1076 |
+
msgstr "星期二"
|
1077 |
+
|
1078 |
+
#: includes/texts.php:75
|
1079 |
+
msgid "Wednesdays"
|
1080 |
+
msgstr "星期三"
|
1081 |
+
|
1082 |
+
#: includes/texts.php:76
|
1083 |
+
msgid "Thursdays"
|
1084 |
+
msgstr "星期四"
|
1085 |
+
|
1086 |
+
#: includes/texts.php:77
|
1087 |
+
msgid "Fridays"
|
1088 |
+
msgstr "星期五"
|
1089 |
+
|
1090 |
+
#: includes/texts.php:78
|
1091 |
+
msgid "Saturdays"
|
1092 |
+
msgstr "星期六"
|
1093 |
+
|
1094 |
+
#: includes/texts.php:80 views/single-event.php:155
|
1095 |
+
msgid "Back"
|
1096 |
+
msgstr "返回"
|
1097 |
+
|
1098 |
+
#: views/admin/ecwd-calendar-meta.php:24
|
1099 |
+
msgid "Preview"
|
1100 |
+
msgstr "预览 "
|
1101 |
+
|
1102 |
+
#: views/admin/ecwd-calendar-meta.php:24 views/admin/ecwd-calendar-meta.php:80
|
1103 |
+
msgid "Add Event"
|
1104 |
+
msgstr "增加活动"
|
1105 |
+
|
1106 |
+
#: views/admin/ecwd-calendar-meta.php:31
|
1107 |
+
msgid ""
|
1108 |
+
"Copy and paste this shortcode to display this Calendar event on any post or "
|
1109 |
+
"page."
|
1110 |
+
msgstr "复制并粘贴此简码在任何文章或页面上显示此日历事件。"
|
1111 |
+
|
1112 |
+
#: views/admin/ecwd-calendar-meta.php:77
|
1113 |
+
msgid "Select Events from the list"
|
1114 |
+
msgstr "从列表中选择活动"
|
1115 |
+
|
1116 |
+
#: views/admin/ecwd-calendar-meta.php:112
|
1117 |
+
msgid "Upgrade to Pro for more themes."
|
1118 |
+
msgstr "升级到专业版更多的主题。"
|
1119 |
+
|
1120 |
+
#: views/admin/ecwd-event-cat-meta.php:4 views/admin/ecwd-event-cat-meta.php:31
|
1121 |
+
msgid "Image"
|
1122 |
+
msgstr "图像 "
|
1123 |
+
|
1124 |
+
#: views/admin/ecwd-event-cat-meta.php:11
|
1125 |
+
#: views/admin/ecwd-event-cat-meta.php:34
|
1126 |
+
msgid "Upload/Add image"
|
1127 |
+
msgstr "上传/添加图像"
|
1128 |
+
|
1129 |
+
#: views/admin/ecwd-event-cat-meta.php:13
|
1130 |
+
msgid "Remove image"
|
1131 |
+
msgstr "删除图片"
|
1132 |
+
|
1133 |
+
#: views/admin/ecwd-event-cat-meta.php:20
|
1134 |
+
#: views/admin/ecwd-event-cat-meta.php:37
|
1135 |
+
msgid "Category color"
|
1136 |
+
msgstr "分类颜色"
|
1137 |
+
|
1138 |
+
#: views/admin/ecwd-event-cat-meta.php:26
|
1139 |
+
msgid "Choose the color"
|
1140 |
+
msgstr "选择颜色"
|
1141 |
+
|
1142 |
+
#: views/admin/ecwd-event-meta.php:84
|
1143 |
+
msgid ""
|
1144 |
+
"Fill in the starting and ending dates and time of the event. If the event "
|
1145 |
+
"lasts entire day, check the box on the right."
|
1146 |
+
msgstr "填写活动的开始和结束日期和时间。 如果活动持续整天,请选中右侧的框。"
|
1147 |
+
|
1148 |
+
#: views/admin/ecwd-event-meta.php:91 views/admin/ecwd-event-meta.php:446
|
1149 |
+
msgid "Repeat rate"
|
1150 |
+
msgstr "重复速率"
|
1151 |
+
|
1152 |
+
#: views/admin/ecwd-event-meta.php:105
|
1153 |
+
msgid "Don't repeat"
|
1154 |
+
msgstr "不重复"
|
1155 |
+
|
1156 |
+
#: views/admin/ecwd-event-meta.php:115
|
1157 |
+
msgid "Daily"
|
1158 |
+
msgstr "每日"
|
1159 |
+
|
1160 |
+
#: views/admin/ecwd-event-meta.php:127
|
1161 |
+
msgid "Weekly"
|
1162 |
+
msgstr "每周"
|
1163 |
+
|
1164 |
+
#: views/admin/ecwd-event-meta.php:142
|
1165 |
+
msgid "Monthly"
|
1166 |
+
msgstr "每月"
|
1167 |
+
|
1168 |
+
#: views/admin/ecwd-event-meta.php:155
|
1169 |
+
msgid "Yearly"
|
1170 |
+
msgstr "每年"
|
1171 |
+
|
1172 |
+
#: views/admin/ecwd-event-meta.php:167
|
1173 |
+
msgid "day(s)"
|
1174 |
+
msgstr "天"
|
1175 |
+
|
1176 |
+
#: views/admin/ecwd-event-meta.php:172
|
1177 |
+
msgid "weeks(s)"
|
1178 |
+
msgstr "周 (s)"
|
1179 |
+
|
1180 |
+
#: views/admin/ecwd-event-meta.php:173
|
1181 |
+
msgid "on "
|
1182 |
+
msgstr "在"
|
1183 |
+
|
1184 |
+
#: views/admin/ecwd-event-meta.php:177
|
1185 |
+
msgid "month(s)"
|
1186 |
+
msgstr "月"
|
1187 |
+
|
1188 |
+
#: views/admin/ecwd-event-meta.php:181
|
1189 |
+
msgid "year(s) in "
|
1190 |
+
msgstr "年份"
|
1191 |
+
|
1192 |
+
#: views/admin/ecwd-event-meta.php:284 views/admin/ecwd-event-meta.php:370
|
1193 |
+
msgid "On the same day"
|
1194 |
+
msgstr "在同一天"
|
1195 |
+
|
1196 |
+
#: views/admin/ecwd-event-meta.php:301 views/admin/ecwd-event-meta.php:387
|
1197 |
+
msgid "On the: "
|
1198 |
+
msgstr "在"
|
1199 |
+
|
1200 |
+
#: views/admin/ecwd-event-meta.php:305 views/admin/ecwd-event-meta.php:391
|
1201 |
+
msgid "First"
|
1202 |
+
msgstr "第一"
|
1203 |
+
|
1204 |
+
#: views/admin/ecwd-event-meta.php:307 views/admin/ecwd-event-meta.php:393
|
1205 |
+
msgid "Second"
|
1206 |
+
msgstr "第二"
|
1207 |
+
|
1208 |
+
#: views/admin/ecwd-event-meta.php:309 views/admin/ecwd-event-meta.php:395
|
1209 |
+
msgid "Third"
|
1210 |
+
msgstr "第三"
|
1211 |
+
|
1212 |
+
#: views/admin/ecwd-event-meta.php:311 views/admin/ecwd-event-meta.php:397
|
1213 |
+
msgid "Fourth"
|
1214 |
+
msgstr "第四"
|
1215 |
+
|
1216 |
+
#: views/admin/ecwd-event-meta.php:313 views/admin/ecwd-event-meta.php:399
|
1217 |
+
msgid "Last"
|
1218 |
+
msgstr "最后"
|
1219 |
+
|
1220 |
+
#: views/admin/ecwd-event-meta.php:426
|
1221 |
+
msgid "Repeat until"
|
1222 |
+
msgstr "重复直到"
|
1223 |
+
|
1224 |
+
#: views/admin/ecwd-event-meta.php:438
|
1225 |
+
msgid "Specify the repeating rate of the event."
|
1226 |
+
msgstr "指定活动的重复速率。"
|
1227 |
+
|
1228 |
+
#: views/admin/ecwd-event-meta.php:448
|
1229 |
+
msgid "Upgrade to Pro version"
|
1230 |
+
msgstr "升级成专业版"
|
1231 |
+
|
1232 |
+
#: views/admin/ecwd-event-meta.php:453
|
1233 |
+
msgid "Event Venue"
|
1234 |
+
msgstr "活动场地"
|
1235 |
+
|
1236 |
+
#: views/admin/ecwd-event-meta.php:473
|
1237 |
+
msgid "Select the venue of the event."
|
1238 |
+
msgstr "选择活动的地点。"
|
1239 |
+
|
1240 |
+
#: views/admin/ecwd-event-meta.php:477
|
1241 |
+
msgid "There is no venue added yet"
|
1242 |
+
msgstr "还有尚未添加任何地点"
|
1243 |
+
|
1244 |
+
#: views/admin/ecwd-event-meta.php:482
|
1245 |
+
msgid "Event Location"
|
1246 |
+
msgstr "活动地点"
|
1247 |
+
|
1248 |
+
#: views/admin/ecwd-event-meta.php:514
|
1249 |
+
msgid ""
|
1250 |
+
"If venue is not specified you can fill in the address of the event location "
|
1251 |
+
"or click on the map to drag and drop the marker to the event location."
|
1252 |
+
msgstr ""
|
1253 |
+
"如果没有指定地点,您可以填写活动地点的地址,或者点击地图将标记拖放到活动地"
|
1254 |
+
"点。"
|
1255 |
+
|
1256 |
+
#: views/admin/ecwd-event-meta.php:519
|
1257 |
+
msgid "Show map in event page"
|
1258 |
+
msgstr "在活动页面中显示地图"
|
1259 |
+
|
1260 |
+
#: views/admin/ecwd-event-meta.php:529
|
1261 |
+
msgid "Event URL"
|
1262 |
+
msgstr "活动链接"
|
1263 |
+
|
1264 |
+
#: views/admin/ecwd-event-meta.php:535
|
1265 |
+
msgid "Provide a custom URL which will display event details."
|
1266 |
+
msgstr "提供将显示活动详细信息的自定义网址。"
|
1267 |
+
|
1268 |
+
#: views/admin/ecwd-event-meta.php:540
|
1269 |
+
msgid "Event Video URL"
|
1270 |
+
msgstr "活动视频链接"
|
1271 |
+
|
1272 |
+
#: views/admin/ecwd-event-meta.php:546
|
1273 |
+
msgid "Provide Youtube or Vimeo URL of the video to accompany the event."
|
1274 |
+
msgstr "提供Youtube或Vimeo视频的链接以配合活动。"
|
1275 |
+
|
1276 |
+
#: views/admin/ecwd-event-organizers-meta.php:37
|
1277 |
+
msgid "Add organizer"
|
1278 |
+
msgstr "新增组织者"
|
1279 |
+
|
1280 |
+
#: views/admin/ecwd-featured-themes.php:213
|
1281 |
+
msgid ""
|
1282 |
+
"Business Elite is a robust parallax theme for business websites. The theme "
|
1283 |
+
"uses smooth transitions and many functional sections."
|
1284 |
+
msgstr ""
|
1285 |
+
"Business Elite是一个强大的视差主题的商业网站。 主题使用平滑过渡和许多功能部"
|
1286 |
+
"分。"
|
1287 |
+
|
1288 |
+
#: views/admin/ecwd-featured-themes.php:220
|
1289 |
+
msgid ""
|
1290 |
+
"Portfolio Gallery helps to display images using various color schemes and "
|
1291 |
+
"layouts combined with elegant fonts and content parts."
|
1292 |
+
msgstr ""
|
1293 |
+
"作品图库有助于使用各种配色方案和布局以及优雅的字体和内容部分来显示图像。"
|
1294 |
+
|
1295 |
+
#: views/admin/ecwd-featured-themes.php:227
|
1296 |
+
msgid ""
|
1297 |
+
"Sauron is a multipurpose parallax theme, which uses multiple interactive "
|
1298 |
+
"sections designed for the client-engagement."
|
1299 |
+
msgstr "Sauron是一个多用途视差主题,它使用多个交互部分设计用于客户互动。"
|
1300 |
+
|
1301 |
+
#: views/admin/ecwd-featured-themes.php:234
|
1302 |
+
msgid ""
|
1303 |
+
"Business World is an innovative WordPress theme great for Business websites."
|
1304 |
+
msgstr "Business World是一个创新的WordPress主题伟大的商业网站。"
|
1305 |
+
|
1306 |
+
#: views/admin/ecwd-featured-themes.php:241
|
1307 |
+
msgid ""
|
1308 |
+
"Best Magazine is an ultimate selection when you are dealing with multi-"
|
1309 |
+
"category news websites."
|
1310 |
+
msgstr "Best Magazine是一个终极的选择,当你在处理多类别的新闻网站。"
|
1311 |
+
|
1312 |
+
#: views/admin/ecwd-featured-themes.php:248
|
1313 |
+
msgid ""
|
1314 |
+
"Magazine theme is a perfect solution when creating news and informational "
|
1315 |
+
"websites. It comes with a wide range of layout options."
|
1316 |
+
msgstr ""
|
1317 |
+
"Magazine theme是创建新闻和信息网站时的完美解决方案。 它提供了广泛的布局选项。"
|
1318 |
+
|
1319 |
+
#: views/admin/ecwd-featured-themes.php:258
|
1320 |
+
msgid "Featured Themes"
|
1321 |
+
msgstr "特色主题"
|
1322 |
+
|
1323 |
+
#: views/admin/ecwd-featured-themes.php:262
|
1324 |
+
msgid "WORDPRESS THEMES"
|
1325 |
+
msgstr "WordPress 主题"
|
1326 |
+
|
1327 |
+
#: views/admin/ecwd-featured-themes.php:263
|
1328 |
+
msgid "ALL FOR $40 ONLY "
|
1329 |
+
msgstr "所有为仅要40美元"
|
1330 |
+
|
1331 |
+
#: views/admin/ecwd-featured-themes.php:263
|
1332 |
+
msgid "SAVE 80%"
|
1333 |
+
msgstr "节省 80%"
|
1334 |
+
|
1335 |
+
#: views/admin/ecwd-featured-themes.php:265
|
1336 |
+
msgid "TRY NOW"
|
1337 |
+
msgstr "现在试试"
|
1338 |
+
|
1339 |
+
#: views/admin/ecwd-featured-themes.php:282
|
1340 |
+
msgid "Demo"
|
1341 |
+
msgstr "演示"
|
1342 |
+
|
1343 |
+
#: views/admin/ecwd-featured-themes.php:283
|
1344 |
+
msgid "Free Download"
|
1345 |
+
msgstr "免费下载"
|
1346 |
+
|
1347 |
+
#: views/admin/ecwd-venue-meta.php:44
|
1348 |
+
msgid ""
|
1349 |
+
"Fill in the address of the venue or click on the map to drag and drop the "
|
1350 |
+
"marker to a specific location"
|
1351 |
+
msgstr "填写场地地址或点击地图将标记拖放到特定位置"
|
1352 |
+
|
1353 |
+
#: views/admin/import.php:32
|
1354 |
+
msgid "Choose csv file"
|
1355 |
+
msgstr "选择csv文件"
|
1356 |
+
|
1357 |
+
#: views/admin/import.php:34
|
1358 |
+
msgid "Import"
|
1359 |
+
msgstr "导入"
|
1360 |
+
|
1361 |
+
#: views/admin/import.php:47
|
1362 |
+
msgid "Download Export File"
|
1363 |
+
msgstr "下载导出文件"
|
1364 |
+
|
1365 |
+
#: views/ecwd-event-content.php:71 views/ecwd-event-content.php:158
|
1366 |
+
#: views/ecwd-event-popup.php:145 views/ecwd-event-popup.php:248
|
1367 |
+
#: views/single-event.php:171 views/single-event.php:282
|
1368 |
+
msgid "Date"
|
1369 |
+
msgstr "日期"
|
1370 |
+
|
1371 |
+
#: views/ecwd-event-content.php:95 views/ecwd-event-popup.php:177
|
1372 |
+
#: views/single-event.php:210
|
1373 |
+
msgid "Url"
|
1374 |
+
msgstr "链接"
|
1375 |
+
|
1376 |
+
#: views/ecwd-event-popup.php:206 views/single-event.php:240
|
1377 |
+
msgid "Location"
|
1378 |
+
msgstr "地点"
|
1379 |
+
|
1380 |
+
#: views/taxonomy-ecwd_event_category.php:43
|
1381 |
+
msgid "Previous page"
|
1382 |
+
msgstr "上一页"
|
1383 |
+
|
1384 |
+
#: views/taxonomy-ecwd_event_category.php:44
|
1385 |
+
msgid "Next page"
|
1386 |
+
msgstr "下一页"
|
1387 |
+
|
1388 |
+
#: views/widgets.php:18
|
1389 |
+
msgid "Descr"
|
1390 |
+
msgstr "描述"
|
1391 |
+
|
1392 |
+
#: views/widgets.php:62
|
1393 |
+
msgid ""
|
1394 |
+
"No valid Event IDs have been entered for this widget. Please check that you "
|
1395 |
+
"have entered the IDs correctly in the widget settings (Appearance > "
|
1396 |
+
"Widgets), and that the Events have not been deleted."
|
1397 |
+
msgstr ""
|
1398 |
+
"未为此窗口小部件输入有效的活动ID。 请检查您是否已在小部件设置(外观>窗口小部"
|
1399 |
+
"件)中正确输入ID,并且尚未删除活动。"
|
1400 |
+
|
1401 |
+
#: views/widgets.php:94
|
1402 |
+
msgid "You have not added any events yet."
|
1403 |
+
msgstr "尚未添加任何事件。"
|
1404 |
+
|
1405 |
+
#: views/widgets.php:127
|
1406 |
+
msgid "There are no calendars created yet."
|
1407 |
+
msgstr "没有尚未创建的日历。"
|
1408 |
+
|
1409 |
+
#: views/widgets.php:128
|
1410 |
+
msgid "Add your first calendar!"
|
1411 |
+
msgstr "添加您的第一个日历 !"
|
1412 |
+
|
1413 |
+
#: views/widgets.php:146
|
1414 |
+
msgid "Title:"
|
1415 |
+
msgstr "标题:"
|
1416 |
+
|
1417 |
+
#: views/widgets.php:151
|
1418 |
+
msgid "Calendar to display"
|
1419 |
+
msgstr "要显示的日程"
|
1420 |
+
|
1421 |
+
#: views/widgets.php:164
|
1422 |
+
msgid "Display Events as:"
|
1423 |
+
msgstr "显示事件为︰"
|
1424 |
+
|
1425 |
+
#: views/widgets.php:173
|
1426 |
+
msgid "Events per page in list view:"
|
1427 |
+
msgstr "每页显示在列表视图中的事件︰"
|
1428 |
+
|
1429 |
+
#. Plugin URI of the plugin/theme
|
1430 |
+
msgid "https://web-dorado.com/products/wordpress-event-calendar-wd.html"
|
1431 |
+
msgstr "https://web-dorado.com/products/wordpress-event-calendar-wd.html"
|
1432 |
+
|
1433 |
+
#. Description of the plugin/theme
|
1434 |
+
msgid ""
|
1435 |
+
"Event Calendar WD is an easy event management and planning tool with "
|
1436 |
+
"advanced features."
|
1437 |
+
msgstr "活动日历 WD 是容易活动管理和规划工具的高级功能。"
|
1438 |
+
|
1439 |
+
#. Author of the plugin/theme
|
1440 |
+
msgid "WebDorado"
|
1441 |
+
msgstr "WebDorado"
|
1442 |
+
|
1443 |
+
#. Author URI of the plugin/theme
|
1444 |
+
msgid "http://web-dorado.com"
|
1445 |
+
msgstr "http://web-dorado.com"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
|
4 |
Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.6
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -155,10 +155,13 @@ After downloading the ZIP file of the Event Calendar WD plugin,
|
|
155 |
|
156 |
== Changelog ==
|
157 |
|
|
|
|
|
|
|
158 |
= 1.0.74 =
|
159 |
-
Changed: Organizers, venues cache
|
160 |
-
Fixed: Venue edit in event
|
161 |
-
Fixed: Gmap js issue
|
162 |
|
163 |
= 1.0.73 =
|
164 |
* Changed: Settings structure
|
4 |
Tags: calendar, date, event, event calendar, events, events calendar, meeting, organizer, recurring, reservation, responsive, schedule
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.6
|
7 |
+
Stable tag: 1.0.75
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
+
= 1.0.75 =
|
159 |
+
* Changed: Backend menu
|
160 |
+
|
161 |
= 1.0.74 =
|
162 |
+
* Changed: Organizers, venues cache
|
163 |
+
* Fixed: Venue edit in event
|
164 |
+
* Fixed: Gmap js issue
|
165 |
|
166 |
= 1.0.73 =
|
167 |
* Changed: Settings structure
|