Version Description
(2018-02-04) = * added option to change events permalink slug * added some additional upgrade check to improve the 0.8.0 upgrade * fixed time display on frontpage * fixed copy event function * fixed issues with older php versions * fixed issues with older WordPress versions
Attention: This version fixes a lot of issues reported with the 0.8.0 version. It is now more safe to update, but in general the information provided in the changelog of 0.8.0 is still valid. Also check the required manual changes provided there.
Download this release
Release Info
Developer | mibuthu |
Plugin | Event List |
Version | 0.8.1 |
Comparing to | |
See all releases |
Code changes from version 0.8.0 to 0.8.1
- admin/admin.php +2 -2
- admin/includes/admin-about.php +1 -1
- admin/includes/admin-category-sync.php +1 -1
- admin/includes/admin-import.php +20 -15
- admin/includes/admin-main.php +3 -2
- admin/includes/admin-new.php +7 -10
- admin/includes/admin-settings.php +15 -8
- admin/includes/event-category_functions.php +33 -4
- admin/includes/upgrade.php +49 -25
- event-list.php +1 -1
- includes/daterange.php +16 -5
- includes/event.php +8 -12
- includes/events.php +0 -7
- includes/events_post_type.php +1 -3
- includes/options.php +24 -23
- includes/options_helptexts.php +4 -0
- includes/sc_event-list.php +2 -2
- languages/event-list-da_DK.po +131 -116
- languages/event-list-de_DE.po +131 -116
- languages/event-list-es_AR.po +131 -116
- languages/event-list-es_ES.po +131 -116
- languages/event-list-et_EE.po +131 -116
- languages/event-list-fi_FI.po +131 -116
- languages/event-list-fr_FR.po +131 -116
- languages/event-list-id_ID.po +131 -116
- languages/event-list-it_IT.po +131 -116
- languages/event-list-nl_NL.po +131 -116
- languages/event-list-pl_PL.po +131 -116
- languages/event-list-pt_BR.po +131 -116
- languages/event-list-sk_SK.po +131 -116
- languages/event-list-sl_SI.po +131 -116
- languages/event-list-sv_SE.po +131 -116
- languages/event-list-zh_CN.po +131 -116
- languages/event-list.pot +128 -115
- readme.txt +16 -1
admin/admin.php
CHANGED
@@ -37,9 +37,9 @@ class EL_Admin {
|
|
37 |
|
38 |
public function plugin_upgrade_check() {
|
39 |
// Upgrade check
|
40 |
-
$
|
41 |
$last_upgr_version = get_option('el_last_upgr_version', '');
|
42 |
-
if($
|
43 |
// load upgrade class
|
44 |
require_once(EL_PATH.'admin/includes/upgrade.php');
|
45 |
EL_Upgrade::get_instance();
|
37 |
|
38 |
public function plugin_upgrade_check() {
|
39 |
// Upgrade check
|
40 |
+
$file_data = get_file_data(EL_PATH.'event-list.php', array('version'=>'Version'));
|
41 |
$last_upgr_version = get_option('el_last_upgr_version', '');
|
42 |
+
if($file_data['version'] != $last_upgr_version) {
|
43 |
// load upgrade class
|
44 |
require_once(EL_PATH.'admin/includes/upgrade.php');
|
45 |
EL_Upgrade::get_instance();
|
admin/includes/admin-about.php
CHANGED
@@ -61,7 +61,7 @@ class EL_Admin_About {
|
|
61 |
$out = '<h3 class="nav-tab-wrapper">';
|
62 |
foreach($tabs as $tab => $name){
|
63 |
$class = ($tab == $current) ? ' nav-tab-active' : '';
|
64 |
-
$out .= '<a class="nav-tab'.$class.'" href="'.add_query_arg('tab', $tab, add_query_arg(
|
65 |
}
|
66 |
$out .= '</h3>';
|
67 |
return $out;
|
61 |
$out = '<h3 class="nav-tab-wrapper">';
|
62 |
foreach($tabs as $tab => $name){
|
63 |
$class = ($tab == $current) ? ' nav-tab-active' : '';
|
64 |
+
$out .= '<a class="nav-tab'.$class.'" href="'.add_query_arg('tab', $tab, add_query_arg(array())).'">'.$name.'</a>';
|
65 |
}
|
66 |
$out .= '</h3>';
|
67 |
return $out;
|
admin/includes/admin-category-sync.php
CHANGED
@@ -41,7 +41,7 @@ class EL_Admin_Category_Sync {
|
|
41 |
if(!current_user_can('manage_categories') || ($this->switch_taxonomy && !current_user_can('manage_options'))) {
|
42 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
43 |
}
|
44 |
-
if(
|
45 |
wp_die(__('Error: You are not allowed to view this page!','event-list'));
|
46 |
}
|
47 |
}
|
41 |
if(!current_user_can('manage_categories') || ($this->switch_taxonomy && !current_user_can('manage_options'))) {
|
42 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
43 |
}
|
44 |
+
if(!(bool)wp_get_referer() || (!$this->switch_taxonomy && $this->use_post_cats)) {
|
45 |
wp_die(__('Error: You are not allowed to view this page!','event-list'));
|
46 |
}
|
47 |
}
|
admin/includes/admin-import.php
CHANGED
@@ -7,6 +7,10 @@ require_once(EL_PATH.'includes/options.php');
|
|
7 |
require_once(EL_PATH.'includes/events_post_type.php');
|
8 |
require_once(EL_PATH.'admin/includes/admin-functions.php');
|
9 |
require_once(EL_PATH.'includes/events.php');
|
|
|
|
|
|
|
|
|
10 |
|
11 |
// This class handles all data for the admin new event page
|
12 |
class EL_Admin_Import {
|
@@ -16,7 +20,7 @@ class EL_Admin_Import {
|
|
16 |
private $functions;
|
17 |
private $events;
|
18 |
private $import_data;
|
19 |
-
private $example_file_path
|
20 |
|
21 |
public static function &get_instance() {
|
22 |
// Create class instance if required
|
@@ -32,6 +36,7 @@ class EL_Admin_Import {
|
|
32 |
$this->events_post_type = &EL_Events_Post_Type::get_instance();
|
33 |
$this->functions = &EL_Admin_Functions::get_instance();
|
34 |
$this->events = &EL_Events::get_instance();
|
|
|
35 |
$this->add_metaboxes();
|
36 |
}
|
37 |
|
@@ -49,8 +54,8 @@ class EL_Admin_Import {
|
|
49 |
}
|
50 |
// Finish import (add events)
|
51 |
elseif(isset($_POST['reviewed_events'])) {
|
52 |
-
$
|
53 |
-
$this->show_import_finished($
|
54 |
}
|
55 |
// Import form
|
56 |
else {
|
@@ -150,16 +155,16 @@ class EL_Admin_Import {
|
|
150 |
</form>';
|
151 |
}
|
152 |
|
153 |
-
private function show_import_finished($
|
154 |
-
if(empty($
|
155 |
echo '
|
156 |
-
<h3>'.__('Import
|
157 |
-
'.__('
|
158 |
}
|
159 |
else {
|
160 |
echo '
|
161 |
-
<h3>'.__('Import
|
162 |
-
|
163 |
}
|
164 |
}
|
165 |
|
@@ -296,12 +301,12 @@ class EL_Admin_Import {
|
|
296 |
$event_ref['categories'] = array_unique(array_merge($event_ref['categories'], $additional_cat_slugs));
|
297 |
}
|
298 |
}
|
299 |
-
$
|
300 |
require_once(EL_PATH.'includes/event.php');
|
301 |
foreach($reviewed_events as $eventdata) {
|
302 |
// check if dates have correct formats
|
303 |
-
$startdate =
|
304 |
-
$enddate =
|
305 |
if($startdate instanceof DateTime) {
|
306 |
$eventdata['startdate'] = $startdate->format('Y-m-d');
|
307 |
if($enddate) {
|
@@ -310,14 +315,14 @@ class EL_Admin_Import {
|
|
310 |
else {
|
311 |
$eventdata['enddate'] = '';
|
312 |
}
|
313 |
-
$
|
314 |
}
|
315 |
else {
|
316 |
-
|
317 |
}
|
318 |
}
|
319 |
// TODO: Improve error messages
|
320 |
-
return $
|
321 |
}
|
322 |
|
323 |
public function embed_import_scripts() {
|
7 |
require_once(EL_PATH.'includes/events_post_type.php');
|
8 |
require_once(EL_PATH.'admin/includes/admin-functions.php');
|
9 |
require_once(EL_PATH.'includes/events.php');
|
10 |
+
// fix for PHP 5.2 (provide function date_create_from_format defined in daterange.php)
|
11 |
+
if(version_compare(PHP_VERSION, '5.3') < 0) {
|
12 |
+
require_once(EL_PATH.'includes/daterange.php');
|
13 |
+
}
|
14 |
|
15 |
// This class handles all data for the admin new event page
|
16 |
class EL_Admin_Import {
|
20 |
private $functions;
|
21 |
private $events;
|
22 |
private $import_data;
|
23 |
+
private $example_file_path;
|
24 |
|
25 |
public static function &get_instance() {
|
26 |
// Create class instance if required
|
36 |
$this->events_post_type = &EL_Events_Post_Type::get_instance();
|
37 |
$this->functions = &EL_Admin_Functions::get_instance();
|
38 |
$this->events = &EL_Events::get_instance();
|
39 |
+
$this->example_file_path = EL_URL.'/files/events-import-example.csv';
|
40 |
$this->add_metaboxes();
|
41 |
}
|
42 |
|
54 |
}
|
55 |
// Finish import (add events)
|
56 |
elseif(isset($_POST['reviewed_events'])) {
|
57 |
+
$import_errors = $this->import_events();
|
58 |
+
$this->show_import_finished($import_errors);
|
59 |
}
|
60 |
// Import form
|
61 |
else {
|
155 |
</form>';
|
156 |
}
|
157 |
|
158 |
+
private function show_import_finished($import_errors) {
|
159 |
+
if(empty($import_errors)) {
|
160 |
echo '
|
161 |
+
<h3>'.__('Import successful!','event-list').'</h3>
|
162 |
+
<a href="'.admin_url('edit.php?post_type=el_events').'">'.__('Go back to All Events','event-list').'</a>';
|
163 |
}
|
164 |
else {
|
165 |
echo '
|
166 |
+
<h3>'.__('Import with errors!','event-list').'</h3>
|
167 |
+
'.sprintf(__('Sorry, an error occurred during import! %1$d events could not be imported.','event-list'), $import_errors);
|
168 |
}
|
169 |
}
|
170 |
|
301 |
$event_ref['categories'] = array_unique(array_merge($event_ref['categories'], $additional_cat_slugs));
|
302 |
}
|
303 |
}
|
304 |
+
$error_counter = 0;
|
305 |
require_once(EL_PATH.'includes/event.php');
|
306 |
foreach($reviewed_events as $eventdata) {
|
307 |
// check if dates have correct formats
|
308 |
+
$startdate = date_create_from_format($this->options->get('el_import_date_format'), $eventdata['startdate']);
|
309 |
+
$enddate = date_create_from_format($this->options->get('el_import_date_format'), $eventdata['enddate']);
|
310 |
if($startdate instanceof DateTime) {
|
311 |
$eventdata['startdate'] = $startdate->format('Y-m-d');
|
312 |
if($enddate) {
|
315 |
else {
|
316 |
$eventdata['enddate'] = '';
|
317 |
}
|
318 |
+
$error_counter += (false === EL_Event::safe($eventdata)) ? 1 : 0;
|
319 |
}
|
320 |
else {
|
321 |
+
$error_counter += 1;
|
322 |
}
|
323 |
}
|
324 |
// TODO: Improve error messages
|
325 |
+
return $error_counter;
|
326 |
}
|
327 |
|
328 |
public function embed_import_scripts() {
|
admin/includes/admin-main.php
CHANGED
@@ -69,7 +69,7 @@ class EL_Admin_Main {
|
|
69 |
switch($column_name) {
|
70 |
case 'eventdate':
|
71 |
$event = new EL_Event($pid);
|
72 |
-
echo $this->format_event_date($event->startdate, $event->enddate, $event->
|
73 |
break;
|
74 |
case 'location':
|
75 |
$event = new EL_Event($pid);
|
@@ -188,7 +188,8 @@ class EL_Admin_Main {
|
|
188 |
|
189 |
public function add_import_button() {
|
190 |
echo '
|
191 |
-
<script>jQuery(document).ready(function($) { $("a.page-title-action").
|
|
|
192 |
}
|
193 |
|
194 |
/** ************************************************************************
|
69 |
switch($column_name) {
|
70 |
case 'eventdate':
|
71 |
$event = new EL_Event($pid);
|
72 |
+
echo $this->format_event_date($event->startdate, $event->enddate, $event->starttime_i18n());
|
73 |
break;
|
74 |
case 'location':
|
75 |
$event = new EL_Event($pid);
|
188 |
|
189 |
public function add_import_button() {
|
190 |
echo '
|
191 |
+
<script>jQuery(document).ready(function($) { items = $("a.page-title-action").length ? $("a.page-title-action") : $("a.add-new-h2"); '.
|
192 |
+
'items.first().after(\'<a href="'.admin_url('edit.php?post_type=el_events&page=el_admin_import').'" class="add-new-h2">'.__('Import','event-list').'</a>\'); });</script>';
|
193 |
}
|
194 |
|
195 |
/** ************************************************************************
|
admin/includes/admin-new.php
CHANGED
@@ -4,6 +4,7 @@ if(!defined('WP_ADMIN')) {
|
|
4 |
}
|
5 |
|
6 |
require_once(EL_PATH.'includes/options.php');
|
|
|
7 |
|
8 |
/**
|
9 |
* This class handles all data for the admin new event page
|
@@ -28,7 +29,6 @@ class EL_Admin_New {
|
|
28 |
$action = isset($_GET['action']) ? sanitize_key($_GET['action']) : '';
|
29 |
$copy = isset($_GET['copy']) ? intval($_GET['copy']) : 0;
|
30 |
if(!empty($copy)) {
|
31 |
-
require_once(EL_PATH.'includes/event.php');
|
32 |
$this->copy_event = new EL_Event($copy);
|
33 |
add_filter('get_object_terms', array(&$this, 'set_copied_categories'));
|
34 |
}
|
@@ -58,7 +58,7 @@ class EL_Admin_New {
|
|
58 |
|
59 |
public function render_eventdata_metabox() {
|
60 |
global $post;
|
61 |
-
if($this->is_new && empty($this->
|
62 |
// set next day as date
|
63 |
$startdate = current_time('timestamp')+86400; // next day (86400 seconds = 1*24*60*60 = 1 day);
|
64 |
$enddate = $startdate;
|
@@ -67,8 +67,7 @@ class EL_Admin_New {
|
|
67 |
}
|
68 |
else {
|
69 |
// set existing eventdata
|
70 |
-
|
71 |
-
$event = new EL_Event($this->is_new ? $this->copy : $post);
|
72 |
$startdate = strtotime($event->startdate);
|
73 |
$enddate = strtotime($event->enddate);
|
74 |
$starttime = esc_html($event->starttime);
|
@@ -97,11 +96,10 @@ class EL_Admin_New {
|
|
97 |
|
98 |
public function form_top_content() {
|
99 |
// set post values if an event gets copied
|
100 |
-
if(!empty($this->
|
101 |
global $post;
|
102 |
-
$
|
103 |
-
$post->
|
104 |
-
$post->post_content = $event->post_content;
|
105 |
}
|
106 |
// show label for event title
|
107 |
echo '
|
@@ -155,8 +153,7 @@ class EL_Admin_New {
|
|
155 |
if(empty($eventdata['multiday'])) {
|
156 |
$eventdata['enddate'] = $eventdata['startdate'];
|
157 |
}
|
158 |
-
|
159 |
-
return !empty(EL_Event::safe_postmeta($pid, $eventdata));
|
160 |
}
|
161 |
|
162 |
private function get_event_dateformat() {
|
4 |
}
|
5 |
|
6 |
require_once(EL_PATH.'includes/options.php');
|
7 |
+
require_once(EL_PATH.'includes/event.php');
|
8 |
|
9 |
/**
|
10 |
* This class handles all data for the admin new event page
|
29 |
$action = isset($_GET['action']) ? sanitize_key($_GET['action']) : '';
|
30 |
$copy = isset($_GET['copy']) ? intval($_GET['copy']) : 0;
|
31 |
if(!empty($copy)) {
|
|
|
32 |
$this->copy_event = new EL_Event($copy);
|
33 |
add_filter('get_object_terms', array(&$this, 'set_copied_categories'));
|
34 |
}
|
58 |
|
59 |
public function render_eventdata_metabox() {
|
60 |
global $post;
|
61 |
+
if($this->is_new && empty($this->copy_event)) {
|
62 |
// set next day as date
|
63 |
$startdate = current_time('timestamp')+86400; // next day (86400 seconds = 1*24*60*60 = 1 day);
|
64 |
$enddate = $startdate;
|
67 |
}
|
68 |
else {
|
69 |
// set existing eventdata
|
70 |
+
$event = $this->is_new ? $this->copy_event : new EL_Event($post);
|
|
|
71 |
$startdate = strtotime($event->startdate);
|
72 |
$enddate = strtotime($event->enddate);
|
73 |
$starttime = esc_html($event->starttime);
|
96 |
|
97 |
public function form_top_content() {
|
98 |
// set post values if an event gets copied
|
99 |
+
if(!empty($this->copy_event)) {
|
100 |
global $post;
|
101 |
+
$post->post_title = $this->copy_event->title;
|
102 |
+
$post->post_content = $this->copy_event->content;
|
|
|
103 |
}
|
104 |
// show label for event title
|
105 |
echo '
|
153 |
if(empty($eventdata['multiday'])) {
|
154 |
$eventdata['enddate'] = $eventdata['startdate'];
|
155 |
}
|
156 |
+
return (bool)EL_Event::safe_postmeta($pid, $eventdata);
|
|
|
157 |
}
|
158 |
|
159 |
private function get_event_dateformat() {
|
admin/includes/admin-settings.php
CHANGED
@@ -41,14 +41,21 @@ class EL_Admin_Settings {
|
|
41 |
$out .= '<div id="message" class="updated">
|
42 |
<p><strong>'.__('Settings saved.').'</strong></p>
|
43 |
</div>';
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
}
|
54 |
|
41 |
$out .= '<div id="message" class="updated">
|
42 |
<p><strong>'.__('Settings saved.').'</strong></p>
|
43 |
</div>';
|
44 |
+
switch($tab) {
|
45 |
+
case 'frontend':
|
46 |
+
// flush rewrite rules (required if permalink slug was changed)
|
47 |
+
flush_rewrite_rules();
|
48 |
+
break;
|
49 |
+
case 'feed':
|
50 |
+
// update feed rewrite status if required
|
51 |
+
require_once(EL_PATH.'includes/feed.php');
|
52 |
+
EL_Feed::get_instance()->update_feed_rewrite_status();
|
53 |
+
break;
|
54 |
+
case 'taxonomy':
|
55 |
+
// update category count
|
56 |
+
require_once(EL_PATH.'admin/includes/event-category_functions.php');
|
57 |
+
EL_Event_Category_Functions::get_instance()->update_cat_count();
|
58 |
+
break;
|
59 |
}
|
60 |
}
|
61 |
|
admin/includes/event-category_functions.php
CHANGED
@@ -32,7 +32,7 @@ class EL_Event_Category_Functions {
|
|
32 |
}
|
33 |
// prepare category slugs for comparison
|
34 |
$post_cats = get_categories(array('type'=>'post', 'orderby'=>'parent', 'hide_empty'=>0));
|
35 |
-
$event_cats =
|
36 |
$post_cat_slugs = wp_list_pluck($post_cats, 'slug');
|
37 |
$event_cat_slugs = wp_list_pluck($event_cats, 'slug');
|
38 |
if('to_post_cats' === $direction) {
|
@@ -108,7 +108,7 @@ class EL_Event_Category_Functions {
|
|
108 |
$parent_id = $parent_target_cat instanceof WP_Term ? $parent_target_cat->term_id : 0;
|
109 |
$args = array(
|
110 |
'name' => $source_cat->name,
|
111 |
-
'alias_of' => $source_cat->alias_of,
|
112 |
'description' => $source_cat->description,
|
113 |
'parent' => $parent_id,
|
114 |
'slug' => $source_cat->slug
|
@@ -197,7 +197,7 @@ class EL_Event_Category_Functions {
|
|
197 |
else {
|
198 |
// target category is not available -> remove category from event
|
199 |
wp_remove_object_terms($event->post->ID, $source_cat->term_id, $source_taxonomy);
|
200 |
-
error_log('Category "'.$source_cat->slug.'" removed from event '.$event->
|
201 |
}
|
202 |
}
|
203 |
}
|
@@ -222,7 +222,7 @@ class EL_Event_Category_Functions {
|
|
222 |
}
|
223 |
|
224 |
public function update_cat_count() {
|
225 |
-
$event_cats =
|
226 |
$event_cat_ids = wp_list_pluck($event_cats, 'term_id');
|
227 |
wp_update_term_count_now($event_cat_ids, $this->events_post_type->taxonomy);
|
228 |
}
|
@@ -237,6 +237,16 @@ class EL_Event_Category_Functions {
|
|
237 |
unregister_taxonomy($this->events_post_type->event_cat_taxonomy);
|
238 |
}
|
239 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
private function get_event_cats_from_db($cat_slug=null) {
|
241 |
global $wpdb;
|
242 |
$slug_text = empty($cat_slug) ? '' : ' AND slug = "'.$cat_slug.'"';
|
@@ -254,4 +264,23 @@ class EL_Event_Category_Functions {
|
|
254 |
}
|
255 |
}
|
256 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
?>
|
32 |
}
|
33 |
// prepare category slugs for comparison
|
34 |
$post_cats = get_categories(array('type'=>'post', 'orderby'=>'parent', 'hide_empty'=>0));
|
35 |
+
$event_cats = $this->get_event_cats(array('taxonomy'=>$this->events_post_type->event_cat_taxonomy, 'orderby'=>'parent', 'hide_empty'=>false));
|
36 |
$post_cat_slugs = wp_list_pluck($post_cats, 'slug');
|
37 |
$event_cat_slugs = wp_list_pluck($event_cats, 'slug');
|
38 |
if('to_post_cats' === $direction) {
|
108 |
$parent_id = $parent_target_cat instanceof WP_Term ? $parent_target_cat->term_id : 0;
|
109 |
$args = array(
|
110 |
'name' => $source_cat->name,
|
111 |
+
'alias_of' => isset($source_cat->alias_of) ? $source_cat->alias_of : '', // availability check required for older WordPress versions
|
112 |
'description' => $source_cat->description,
|
113 |
'parent' => $parent_id,
|
114 |
'slug' => $source_cat->slug
|
197 |
else {
|
198 |
// target category is not available -> remove category from event
|
199 |
wp_remove_object_terms($event->post->ID, $source_cat->term_id, $source_taxonomy);
|
200 |
+
error_log('Category "'.$source_cat->slug.'" removed from event "'.$event->post->post_name.'"');
|
201 |
}
|
202 |
}
|
203 |
}
|
222 |
}
|
223 |
|
224 |
public function update_cat_count() {
|
225 |
+
$event_cats = $this->get_event_cats(array('taxonomy'=>$this->events_post_type->taxonomy, 'orderby'=>'parent', 'hide_empty'=>false));
|
226 |
$event_cat_ids = wp_list_pluck($event_cats, 'term_id');
|
227 |
wp_update_term_count_now($event_cat_ids, $this->events_post_type->taxonomy);
|
228 |
}
|
237 |
unregister_taxonomy($this->events_post_type->event_cat_taxonomy);
|
238 |
}
|
239 |
|
240 |
+
private function get_event_cats($options) {
|
241 |
+
// fix for different get_terms function parameters in older WordPress versions
|
242 |
+
if(version_compare(get_bloginfo('version'), '4.5') < 0) {
|
243 |
+
return get_terms($options['taxonomy'], $options);
|
244 |
+
}
|
245 |
+
else {
|
246 |
+
return get_terms($options);
|
247 |
+
}
|
248 |
+
}
|
249 |
+
|
250 |
private function get_event_cats_from_db($cat_slug=null) {
|
251 |
global $wpdb;
|
252 |
$slug_text = empty($cat_slug) ? '' : ' AND slug = "'.$cat_slug.'"';
|
264 |
}
|
265 |
}
|
266 |
}
|
267 |
+
|
268 |
+
/** Function to unregister taxonomy before WordPress version 4.5
|
269 |
+
**/
|
270 |
+
if(!function_exists('unregister_taxonomy')) {
|
271 |
+
function unregister_taxonomy($taxonomy) {
|
272 |
+
if(!taxonomy_exists($taxonomy)) {
|
273 |
+
return new WP_Error('invalid_taxonomy', __('Invalid taxonomy.'));
|
274 |
+
}
|
275 |
+
$taxonomy_object = get_taxonomy($taxonomy);
|
276 |
+
// Do not allow unregistering internal taxonomies.
|
277 |
+
if($taxonomy_object->_builtin) {
|
278 |
+
return new WP_Error( 'invalid_taxonomy', __( 'Unregistering a built-in taxonomy is not allowed.' ) );
|
279 |
+
}
|
280 |
+
global $wp_taxonomies;
|
281 |
+
// Remove the taxonomy.
|
282 |
+
unset( $wp_taxonomies[$taxonomy]);
|
283 |
+
return true;
|
284 |
+
}
|
285 |
+
}
|
286 |
?>
|
admin/includes/upgrade.php
CHANGED
@@ -23,8 +23,18 @@ class EL_Upgrade {
|
|
23 |
}
|
24 |
|
25 |
private function __construct() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
$this->init();
|
27 |
$this->upgrade_check();
|
|
|
|
|
28 |
}
|
29 |
|
30 |
/**
|
@@ -32,11 +42,12 @@ class EL_Upgrade {
|
|
32 |
*/
|
33 |
private function init() {
|
34 |
// get actual plugin version
|
35 |
-
$
|
|
|
36 |
// check last upgrade version
|
37 |
$this->last_upgr_version = $this->get_db_option('el_last_upgr_version');
|
38 |
// fix for older version < 0.8.0
|
39 |
-
if(empty($this->last_upgr_version) &&
|
40 |
$this->last_upgr_version = '0.7.0';
|
41 |
$this->insert_db_option('el_last_upgr_version', $this->last_upgr_version, false);
|
42 |
$this->log('Applied fix for versions < 0.8.0');
|
@@ -44,27 +55,23 @@ class EL_Upgrade {
|
|
44 |
// return if last_upgr_version is empty (new install --> no upgrade required)
|
45 |
if(empty($this->last_upgr_version)) {
|
46 |
$this->insert_db_option('el_last_upgr_version', $this->actual_version);
|
|
|
|
|
47 |
return false;
|
48 |
}
|
49 |
-
// create the version array
|
50 |
-
$this->last_upgr_version = explode('.', $this->last_upgr_version);
|
51 |
}
|
52 |
|
53 |
/**
|
54 |
* Do the upgrade check and start the required upgrades
|
55 |
*/
|
56 |
private function upgrade_check() {
|
57 |
-
|
58 |
-
$upgrade_done = false;
|
59 |
if($this->upgrade_required('0.8.0')) {
|
60 |
$this->upgrade_to_0_8_0();
|
61 |
-
$upgrade_done = true;
|
62 |
}
|
63 |
|
64 |
// update last_upgr_version
|
65 |
-
|
66 |
-
$this->update_last_upgr_version();
|
67 |
-
}
|
68 |
}
|
69 |
|
70 |
|
@@ -85,7 +92,7 @@ class EL_Upgrade {
|
|
85 |
require_once(EL_PATH.'includes/events_post_type.php');
|
86 |
$events_post_type = EL_Events_Post_Type::get_instance();
|
87 |
// set correct taxonomy
|
88 |
-
$events_post_type->use_post_categories =
|
89 |
$events_post_type->taxonomy = $events_post_type->use_post_categories ? $events_post_type->post_cat_taxonomy : $events_post_type->event_cat_taxonomy;
|
90 |
// re-register events post type with correct taxonomy
|
91 |
unregister_post_type('el_events');
|
@@ -134,6 +141,21 @@ class EL_Upgrade {
|
|
134 |
$events = $wpdb->get_results($sql, 'ARRAY_A');
|
135 |
if(!empty($events)) {
|
136 |
foreach($events as $event) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
$eventdata['title'] = $event['title'];
|
138 |
$eventdata['startdate'] = $event['start_date'];
|
139 |
$eventdata['enddate'] = $event['end_date'];
|
@@ -171,18 +193,7 @@ class EL_Upgrade {
|
|
171 |
|
172 |
|
173 |
private function upgrade_required($version) {
|
174 |
-
|
175 |
-
$vers = explode('.', $version);
|
176 |
-
// compare main version
|
177 |
-
if($this->last_upgr_version[0] < $vers[0]) {
|
178 |
-
return true;
|
179 |
-
}
|
180 |
-
// compare sub version
|
181 |
-
elseif($this->last_upgr_version[0] === $vers[0] && $this->last_upgr_version[1] < $vers[1]) {
|
182 |
-
return true;
|
183 |
-
}
|
184 |
-
// compare revision
|
185 |
-
elseif($this->last_upgr_version[0] === $vers[0] && $this->last_upgr_version[1] === $vers[1] && $this->last_upgr_version[2] < $vers[2]) {
|
186 |
return true;
|
187 |
}
|
188 |
else {
|
@@ -280,10 +291,10 @@ class EL_Upgrade {
|
|
280 |
'%s'
|
281 |
);
|
282 |
if(!empty($ret)) {
|
283 |
-
$this->log('Deleted
|
284 |
}
|
285 |
else {
|
286 |
-
$this->log('Deleting
|
287 |
}
|
288 |
return $ret;
|
289 |
}
|
@@ -354,4 +365,17 @@ class EL_Upgrade {
|
|
354 |
}
|
355 |
}
|
356 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
357 |
?>
|
23 |
}
|
24 |
|
25 |
private function __construct() {
|
26 |
+
// check upgrade trigger to avoid duplicate updates
|
27 |
+
if('1' == $this->get_db_option('el_upgrade_in_progress')) {
|
28 |
+
$this->log('Upgrade is already running');
|
29 |
+
return false;
|
30 |
+
}
|
31 |
+
// set upgrade trigger
|
32 |
+
$this->insert_db_option('el_upgrade_in_progress', '1');
|
33 |
+
// do upgrade
|
34 |
$this->init();
|
35 |
$this->upgrade_check();
|
36 |
+
// delete upgrade trigger
|
37 |
+
$this->delete_db_option('el_upgrade_in_progress');
|
38 |
}
|
39 |
|
40 |
/**
|
42 |
*/
|
43 |
private function init() {
|
44 |
// get actual plugin version
|
45 |
+
$filedata = get_file_data(EL_PATH.'event-list.php', array('version'=>'Version'));
|
46 |
+
$this->actual_version = $filedata['version'];
|
47 |
// check last upgrade version
|
48 |
$this->last_upgr_version = $this->get_db_option('el_last_upgr_version');
|
49 |
// fix for older version < 0.8.0
|
50 |
+
if(empty($this->last_upgr_version) && (bool)$this->get_db_option('el_db_version')) {
|
51 |
$this->last_upgr_version = '0.7.0';
|
52 |
$this->insert_db_option('el_last_upgr_version', $this->last_upgr_version, false);
|
53 |
$this->log('Applied fix for versions < 0.8.0');
|
55 |
// return if last_upgr_version is empty (new install --> no upgrade required)
|
56 |
if(empty($this->last_upgr_version)) {
|
57 |
$this->insert_db_option('el_last_upgr_version', $this->actual_version);
|
58 |
+
flush_rewrite_rules();
|
59 |
+
$this->log('New install -> no upgrade required');
|
60 |
return false;
|
61 |
}
|
|
|
|
|
62 |
}
|
63 |
|
64 |
/**
|
65 |
* Do the upgrade check and start the required upgrades
|
66 |
*/
|
67 |
private function upgrade_check() {
|
68 |
+
$this->log('Start upgrade check');
|
|
|
69 |
if($this->upgrade_required('0.8.0')) {
|
70 |
$this->upgrade_to_0_8_0();
|
|
|
71 |
}
|
72 |
|
73 |
// update last_upgr_version
|
74 |
+
$this->update_last_upgr_version();
|
|
|
|
|
75 |
}
|
76 |
|
77 |
|
92 |
require_once(EL_PATH.'includes/events_post_type.php');
|
93 |
$events_post_type = EL_Events_Post_Type::get_instance();
|
94 |
// set correct taxonomy
|
95 |
+
$events_post_type->use_post_categories = (bool)$this->get_db_option('el_sync_cats');
|
96 |
$events_post_type->taxonomy = $events_post_type->use_post_categories ? $events_post_type->post_cat_taxonomy : $events_post_type->event_cat_taxonomy;
|
97 |
// re-register events post type with correct taxonomy
|
98 |
unregister_post_type('el_events');
|
141 |
$events = $wpdb->get_results($sql, 'ARRAY_A');
|
142 |
if(!empty($events)) {
|
143 |
foreach($events as $event) {
|
144 |
+
// check if the event is already available (to avoid duplicates)
|
145 |
+
$sql = 'SELECT ID FROM (SELECT * FROM (SELECT DISTINCT ID, post_title, post_date, '.
|
146 |
+
'(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "startdate" AND wp_postmeta.post_id = wp_posts.ID) AS startdate, '.
|
147 |
+
'(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "enddate" AND wp_postmeta.post_id = wp_posts.ID) AS enddate, '.
|
148 |
+
'(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "starttime" AND wp_postmeta.post_id = wp_posts.ID) AS starttime, '.
|
149 |
+
'(SELECT meta_value FROM wp_postmeta WHERE wp_postmeta.meta_key = "location" AND wp_postmeta.post_id = wp_posts.ID) AS location '.
|
150 |
+
'FROM wp_posts WHERE post_type = "el_events") AS events) AS events '.
|
151 |
+
'WHERE (post_title="'.$event['title'].'" AND post_date="'.$event['pub_date'].'"'.
|
152 |
+
'AND startdate="'.$event['start_date'].'" AND enddate="'.$event['end_date'].'" AND starttime = "'.$event['time'].'" AND location = "'.$event['location'].'")';
|
153 |
+
$ret = $wpdb->get_row($sql, ARRAY_N);
|
154 |
+
if(is_array($ret)) {
|
155 |
+
$this->log('Event "'.$event['title'].'" is already available, import skipped!');
|
156 |
+
continue;
|
157 |
+
}
|
158 |
+
// import event
|
159 |
$eventdata['title'] = $event['title'];
|
160 |
$eventdata['startdate'] = $event['start_date'];
|
161 |
$eventdata['enddate'] = $event['end_date'];
|
193 |
|
194 |
|
195 |
private function upgrade_required($version) {
|
196 |
+
if(version_compare($this->last_upgr_version, $version) < 0) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
return true;
|
198 |
}
|
199 |
else {
|
291 |
'%s'
|
292 |
);
|
293 |
if(!empty($ret)) {
|
294 |
+
$this->log('Deleted option "'.$option.'"', $msg);
|
295 |
}
|
296 |
else {
|
297 |
+
$this->log('Deleting option "'.$option.'" failed!', $msg, true);
|
298 |
}
|
299 |
return $ret;
|
300 |
}
|
365 |
}
|
366 |
}
|
367 |
}
|
368 |
+
|
369 |
+
/** Function to unregister posttype before version 4.5
|
370 |
+
**/
|
371 |
+
if(!function_exists('unregister_post_type')) {
|
372 |
+
function unregister_post_type( $post_type ) {
|
373 |
+
global $wp_post_types;
|
374 |
+
if(isset($wp_post_types[$post_type])) {
|
375 |
+
unset($wp_post_types[$post_type]);
|
376 |
+
return true;
|
377 |
+
}
|
378 |
+
return false;
|
379 |
+
}
|
380 |
+
}
|
381 |
?>
|
event-list.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Event List
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/event-list/
|
5 |
Description: Manage your events and show them in a list view on your site.
|
6 |
-
Version: 0.8.
|
7 |
Author: mibuthu
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
9 |
Text Domain: event-list
|
3 |
Plugin Name: Event List
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/event-list/
|
5 |
Description: Manage your events and show them in a list view on your site.
|
6 |
+
Version: 0.8.1
|
7 |
Author: mibuthu
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
9 |
Text Domain: event-list
|
includes/daterange.php
CHANGED
@@ -122,13 +122,24 @@ class EL_Daterange {
|
|
122 |
}
|
123 |
|
124 |
/* create date_create_from_format (DateTime::createFromFormat) alternative for PHP 5.2
|
125 |
-
*
|
126 |
-
* This function is only a small implementation of this function with reduced functionality to handle sql dates (format: 2014-01-31)
|
127 |
*/
|
128 |
-
if(!function_exists(
|
129 |
function date_create_from_format($dformat, $dvalue) {
|
130 |
-
|
131 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
}
|
133 |
}
|
134 |
?>
|
122 |
}
|
123 |
|
124 |
/* create date_create_from_format (DateTime::createFromFormat) alternative for PHP 5.2
|
|
|
|
|
125 |
*/
|
126 |
+
if(!function_exists('date_create_from_format')) {
|
127 |
function date_create_from_format($dformat, $dvalue) {
|
128 |
+
$schedule = $dvalue;
|
129 |
+
$schedule_format = str_replace(array('Y','m','d', 'H', 'i','a'), array('%Y','%m','%d', '%I', '%M', '%p'), $dformat);
|
130 |
+
$ugly = strptime($schedule, $schedule_format);
|
131 |
+
$ymd = sprintf(
|
132 |
+
// This is a format string that takes six total decimal arguments, then left-pads
|
133 |
+
// them with zeros to either 4 or 2 characters, as needed
|
134 |
+
'%04d-%02d-%02d %02d:%02d:%02d',
|
135 |
+
$ugly['tm_year'] + 1900, // This will be "111", so we need to add 1900.
|
136 |
+
$ugly['tm_mon'] + 1, // This will be the month minus one, so we add one.
|
137 |
+
$ugly['tm_mday'],
|
138 |
+
$ugly['tm_hour'],
|
139 |
+
$ugly['tm_min'],
|
140 |
+
$ugly['tm_sec']
|
141 |
+
);
|
142 |
+
return new DateTime($ymd);
|
143 |
}
|
144 |
}
|
145 |
?>
|
includes/event.php
CHANGED
@@ -4,6 +4,10 @@ if(!defined('WPINC')) {
|
|
4 |
}
|
5 |
|
6 |
require_once(EL_PATH.'includes/events_post_type.php');
|
|
|
|
|
|
|
|
|
7 |
|
8 |
// Class to manage categories
|
9 |
class EL_Event {
|
@@ -24,7 +28,7 @@ class EL_Event {
|
|
24 |
}
|
25 |
else {
|
26 |
$this->post = get_post($post);
|
27 |
-
if(
|
28 |
die('ERROR: Post not found!');
|
29 |
}
|
30 |
}
|
@@ -132,20 +136,12 @@ class EL_Event {
|
|
132 |
return wp_set_object_terms($pid, $cats, EL_Events_Post_Type::get_instance()->taxonomy);
|
133 |
}
|
134 |
|
135 |
-
public function
|
136 |
-
$timestamp = strtotime($
|
137 |
if($timestamp) {
|
138 |
return date_i18n(get_option('time_format'), $timestamp);
|
139 |
}
|
140 |
-
return $
|
141 |
-
}
|
142 |
-
|
143 |
-
private function convert_event_timeformat($event) {
|
144 |
-
$timestamp = strtotime($event->starttime);
|
145 |
-
if($timestamp) {
|
146 |
-
$event->starttime = date_i18n(get_option('time_format'), $timestamp);
|
147 |
-
}
|
148 |
-
return $event;
|
149 |
}
|
150 |
|
151 |
private function validate_date($datestring) {
|
4 |
}
|
5 |
|
6 |
require_once(EL_PATH.'includes/events_post_type.php');
|
7 |
+
// fix for PHP 5.2 (provide function date_create_from_format defined in daterange.php)
|
8 |
+
if(version_compare(PHP_VERSION, '5.3') < 0) {
|
9 |
+
require_once(EL_PATH.'includes/daterange.php');
|
10 |
+
}
|
11 |
|
12 |
// Class to manage categories
|
13 |
class EL_Event {
|
28 |
}
|
29 |
else {
|
30 |
$this->post = get_post($post);
|
31 |
+
if(0 === $this->post->ID) {
|
32 |
die('ERROR: Post not found!');
|
33 |
}
|
34 |
}
|
136 |
return wp_set_object_terms($pid, $cats, EL_Events_Post_Type::get_instance()->taxonomy);
|
137 |
}
|
138 |
|
139 |
+
public function starttime_i18n() {
|
140 |
+
$timestamp = strtotime($this->starttime);
|
141 |
if($timestamp) {
|
142 |
return date_i18n(get_option('time_format'), $timestamp);
|
143 |
}
|
144 |
+
return $this->starttime;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
}
|
146 |
|
147 |
private function validate_date($datestring) {
|
includes/events.php
CHANGED
@@ -187,13 +187,6 @@ class EL_Events {
|
|
187 |
return $wpdb->get_var( $sql );
|
188 |
}
|
189 |
|
190 |
-
private function convert_events_timeformat($events) {
|
191 |
-
foreach($events as $event) {
|
192 |
-
$this->convert_event_timeformat($event);
|
193 |
-
}
|
194 |
-
return $events;
|
195 |
-
}
|
196 |
-
|
197 |
private function get_sql_filter_string($date_filter=null, $cat_filter=null) {
|
198 |
$sql_filter_string = '';
|
199 |
// date filter
|
187 |
return $wpdb->get_var( $sql );
|
188 |
}
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
private function get_sql_filter_string($date_filter=null, $cat_filter=null) {
|
191 |
$sql_filter_string = '';
|
192 |
// date filter
|
includes/events_post_type.php
CHANGED
@@ -80,9 +80,7 @@ class EL_Events_Post_Type {
|
|
80 |
'items_list' => __('Events list','event-list'),
|
81 |
);
|
82 |
$args = array(
|
83 |
-
'label' => __('Events'),
|
84 |
'labels' => $labels,
|
85 |
-
'description' => __('Event handling'),
|
86 |
'public' => true,
|
87 |
'hierarchical' => false,
|
88 |
'exclude_from_search' => false,
|
@@ -99,7 +97,7 @@ class EL_Events_Post_Type {
|
|
99 |
'register_meta_box_cb' => null,
|
100 |
'taxonomies' => $this->use_post_categories ? array($this->post_cat_taxonomy) : array(),
|
101 |
'has_archive' => true,
|
102 |
-
'rewrite' => array('slug' => '
|
103 |
'query_var' => true,
|
104 |
'can_export' => true,
|
105 |
'delete_with_user' => false,
|
80 |
'items_list' => __('Events list','event-list'),
|
81 |
);
|
82 |
$args = array(
|
|
|
83 |
'labels' => $labels,
|
|
|
84 |
'public' => true,
|
85 |
'hierarchical' => false,
|
86 |
'exclude_from_search' => false,
|
97 |
'register_meta_box_cb' => null,
|
98 |
'taxonomies' => $this->use_post_categories ? array($this->post_cat_taxonomy) : array(),
|
99 |
'has_archive' => true,
|
100 |
+
'rewrite' => array('slug' => EL_Options::get_instance()->get('el_permalink_slug')),
|
101 |
'query_var' => true,
|
102 |
'can_export' => true,
|
103 |
'delete_with_user' => false,
|
includes/options.php
CHANGED
@@ -25,35 +25,36 @@ class EL_Options {
|
|
25 |
|
26 |
public function init_options() {
|
27 |
$this->options = array(
|
28 |
-
'el_last_upgrade_version' => array('section' => 'system',
|
29 |
|
30 |
-
'el_import_file' => array('section' => 'import',
|
31 |
-
'el_import_date_format' => array('section' => 'import',
|
32 |
|
33 |
-
'el_no_event_text' => array('section' => 'general',
|
34 |
-
'el_multiday_filterrange' => array('section' => 'general',
|
35 |
-
'el_date_once_per_day' => array('section' => 'general',
|
36 |
-
'el_html_tags_in_time' => array('section' => 'general',
|
37 |
-
'el_html_tags_in_loc' => array('section' => 'general',
|
38 |
-
'el_mo_lang_dir_first' => array('section' => 'general',
|
39 |
|
40 |
-
'
|
41 |
-
'
|
42 |
-
'
|
|
|
43 |
|
44 |
-
'el_edit_dateformat' => array('section' => 'admin',
|
45 |
|
46 |
-
'el_enable_feed' => array('section' => 'feed',
|
47 |
-
'el_feed_name' => array('section' => 'feed',
|
48 |
-
'el_feed_description' => array('section' => 'feed',
|
49 |
-
'el_feed_upcoming_only' => array('section' => 'feed',
|
50 |
-
'el_head_feed_link' => array('section' => 'feed',
|
51 |
-
'el_feed_link_pos' => array('section' => 'feed',
|
52 |
-
'el_feed_link_align' => array('section' => 'feed',
|
53 |
-
'el_feed_link_text' => array('section' => 'feed',
|
54 |
-
'el_feed_link_img' => array('section' => 'feed',
|
55 |
|
56 |
-
'el_use_post_cats' => array('section' => 'taxonomy',
|
57 |
);
|
58 |
}
|
59 |
|
25 |
|
26 |
public function init_options() {
|
27 |
$this->options = array(
|
28 |
+
'el_last_upgrade_version' => array('section' => 'system', 'std_val' => ''),
|
29 |
|
30 |
+
'el_import_file' => array('section' => 'import', 'std_val' => ''),
|
31 |
+
'el_import_date_format' => array('section' => 'import', 'std_val' => 'Y-m-d'),
|
32 |
|
33 |
+
'el_no_event_text' => array('section' => 'general', 'std_val' => 'no event'),
|
34 |
+
'el_multiday_filterrange' => array('section' => 'general', 'std_val' => '1'),
|
35 |
+
'el_date_once_per_day' => array('section' => 'general', 'std_val' => ''),
|
36 |
+
'el_html_tags_in_time' => array('section' => 'general', 'std_val' => ''),
|
37 |
+
'el_html_tags_in_loc' => array('section' => 'general', 'std_val' => ''),
|
38 |
+
'el_mo_lang_dir_first' => array('section' => 'general', 'std_val' => ''), // default value must be set also in load_textdomain function in Event-List class
|
39 |
|
40 |
+
'el_permalink_slug' => array('section' => 'frontend', 'std_val' => __('events','event-list')),
|
41 |
+
'el_content_show_text' => array('section' => 'frontend', 'std_val' => __('Show content','event-list')),
|
42 |
+
'el_content_hide_text' => array('section' => 'frontend', 'std_val' => __('Hide content','event-list')),
|
43 |
+
'el_disable_css_file' => array('section' => 'frontend', 'std_val' => ''),
|
44 |
|
45 |
+
'el_edit_dateformat' => array('section' => 'admin', 'std_val' => ''),
|
46 |
|
47 |
+
'el_enable_feed' => array('section' => 'feed', 'std_val' => ''),
|
48 |
+
'el_feed_name' => array('section' => 'feed', 'std_val' => 'event-list'),
|
49 |
+
'el_feed_description' => array('section' => 'feed', 'std_val' => 'Eventlist Feed'),
|
50 |
+
'el_feed_upcoming_only' => array('section' => 'feed', 'std_val' => ''),
|
51 |
+
'el_head_feed_link' => array('section' => 'feed', 'std_val' => '1'),
|
52 |
+
'el_feed_link_pos' => array('section' => 'feed', 'std_val' => 'bottom'),
|
53 |
+
'el_feed_link_align' => array('section' => 'feed', 'std_val' => 'left'),
|
54 |
+
'el_feed_link_text' => array('section' => 'feed', 'std_val' => 'RSS Feed'),
|
55 |
+
'el_feed_link_img' => array('section' => 'feed', 'std_val' => '1'),
|
56 |
|
57 |
+
'el_use_post_cats' => array('section' => 'taxonomy', 'std_val' => ''),
|
58 |
);
|
59 |
}
|
60 |
|
includes/options_helptexts.php
CHANGED
@@ -52,6 +52,10 @@ $options_helptexts = array(
|
|
52 |
'.sprintf(__('If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option.','event-list'), '<code>wp-content/languages/plugins/</code>')),
|
53 |
|
54 |
// Section: "frontend"
|
|
|
|
|
|
|
|
|
55 |
'el_content_show_text' => array('type' => 'text',
|
56 |
'label' => __('Text for "Show content"','event-list'),
|
57 |
'desc' => __('With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled.','event-list')),
|
52 |
'.sprintf(__('If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option.','event-list'), '<code>wp-content/languages/plugins/</code>')),
|
53 |
|
54 |
// Section: "frontend"
|
55 |
+
'el_permalink_slug' => array('type' => 'text',
|
56 |
+
'label' => __('Events permalink slug','event-list'),
|
57 |
+
'desc' => __('With this option the slug for the events permalink URLs can be defined.','event-list')),
|
58 |
+
|
59 |
'el_content_show_text' => array('type' => 'text',
|
60 |
'label' => __('Text for "Show content"','event-list'),
|
61 |
'desc' => __('With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled.','event-list')),
|
includes/sc_event-list.php
CHANGED
@@ -213,9 +213,9 @@ class SC_Event_List {
|
|
213 |
// event starttime
|
214 |
if('' != $event->starttime && $this->is_visible($a['show_starttime'])) {
|
215 |
if('' == $this->options->get('el_html_tags_in_time')) {
|
216 |
-
$event->starttime = esc_attr($event->
|
217 |
}
|
218 |
-
$out .= '<span class="event-time">'.$event->
|
219 |
}
|
220 |
// event location
|
221 |
if('' != $event->location && $this->is_visible($a['show_location'])) {
|
213 |
// event starttime
|
214 |
if('' != $event->starttime && $this->is_visible($a['show_starttime'])) {
|
215 |
if('' == $this->options->get('el_html_tags_in_time')) {
|
216 |
+
$event->starttime = esc_attr($event->starttime_i18n());
|
217 |
}
|
218 |
+
$out .= '<span class="event-time">'.$event->starttime_i18n().'</span>';
|
219 |
}
|
220 |
// event location
|
221 |
if('' != $event->location && $this->is_visible($a['show_location'])) {
|
languages/event-list-da_DK.po
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
-
"POT-Creation-Date: 2018-
|
12 |
-
"PO-Revision-Date: 2018-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Danish (Denmark) (http://www.transifex.com/mibuthu/wp-event-list/language/da_DK/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -32,7 +32,7 @@ msgstr ""
|
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Event List indstillinger"
|
38 |
|
@@ -55,7 +55,7 @@ msgid_plural "%s Events"
|
|
55 |
msgstr[0] ""
|
56 |
msgstr[1] ""
|
57 |
|
58 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
59 |
msgid "General"
|
60 |
msgstr "Generelt"
|
61 |
|
@@ -430,80 +430,72 @@ msgstr ""
|
|
430 |
msgid "none"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin/includes/admin-import.php:
|
434 |
msgid "Import Events"
|
435 |
msgstr "Importér begivenheder"
|
436 |
|
437 |
-
#: admin/includes/admin-import.php:
|
438 |
msgid "Step"
|
439 |
msgstr "Trin"
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
msgid "Set import file and options"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin/includes/admin-import.php:
|
446 |
#, php-format
|
447 |
msgid "Proceed with Step %1$s"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin/includes/admin-import.php:
|
451 |
msgid "Example file"
|
452 |
msgstr "Eksempelfil"
|
453 |
|
454 |
-
#: admin/includes/admin-import.php:
|
455 |
#, php-format
|
456 |
msgid ""
|
457 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: admin/includes/admin-import.php:
|
461 |
msgid "Note"
|
462 |
msgstr "Note"
|
463 |
|
464 |
-
#: admin/includes/admin-import.php:
|
465 |
msgid ""
|
466 |
"Do not change the column header and separator line (first two lines), "
|
467 |
"otherwise the import will fail!"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
-
#: admin/includes/admin-import.php:
|
472 |
msgid "Sorry, there has been an error."
|
473 |
msgstr "Beklager, der er sket en fejl."
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
msgid "The file does not exist, please try again."
|
477 |
msgstr "Filen eksisterer ikke. Prøv venligst igen."
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid "The file is not a CSV file."
|
481 |
msgstr "Filen er ikke en CSV-fil."
|
482 |
|
483 |
-
#: admin/includes/admin-import.php:
|
484 |
msgid "Events review and additonal category selection"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/includes/admin-import.php:
|
488 |
msgid ""
|
489 |
"Warning: The following category slugs are not available and will be removed "
|
490 |
"from the imported events:"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/includes/admin-import.php:
|
494 |
msgid ""
|
495 |
"If you want to keep these categories, please create these Categories first "
|
496 |
"and do the import afterwards."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:156
|
500 |
-
msgid "Import with errors!"
|
501 |
-
msgstr ""
|
502 |
-
|
503 |
-
#: admin/includes/admin-import.php:157
|
504 |
-
msgid "Sorry, an error occurred during import!"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
#: admin/includes/admin-import.php:161
|
508 |
msgid "Import successful!"
|
509 |
msgstr ""
|
@@ -512,54 +504,64 @@ msgstr ""
|
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
516 |
#: includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Titel"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:
|
521 |
msgid "Start Date"
|
522 |
msgstr "Starter"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Slutter"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
530 |
msgid "Time"
|
531 |
msgstr "Tidspunkt"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
-
#: admin/includes/admin-new.php:
|
535 |
#: includes/options_helptexts.php:46
|
536 |
msgid "Location"
|
537 |
msgstr "Lokalitet"
|
538 |
|
539 |
-
#: admin/includes/admin-import.php:
|
540 |
msgid "Content"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/includes/admin-import.php:
|
544 |
msgid "Category slugs"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin/includes/admin-import.php:
|
548 |
#, php-format
|
549 |
msgid ""
|
550 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
551 |
"missing or not correct!"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/includes/admin-import.php:
|
555 |
msgid "Import events"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: admin/includes/admin-import.php:
|
559 |
msgid "Add additional categories"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: admin/includes/admin-import.php:
|
563 |
msgid "Import"
|
564 |
msgstr "Importér"
|
565 |
|
@@ -584,82 +586,82 @@ msgstr ""
|
|
584 |
msgid "Event data"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: admin/includes/admin-new.php:
|
588 |
msgid "Add Copy"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: admin/includes/admin-new.php:
|
592 |
msgid "Date"
|
593 |
msgstr "Dato"
|
594 |
|
595 |
-
#: admin/includes/admin-new.php:
|
596 |
msgid "required"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: admin/includes/admin-new.php:
|
600 |
msgid "Multi-Day Event"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: admin/includes/admin-new.php:
|
604 |
msgid "Event Title"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: admin/includes/admin-new.php:
|
608 |
msgid "Event Content"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: admin/includes/admin-new.php:
|
612 |
msgid "Event updated."
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: admin/includes/admin-new.php:
|
616 |
msgid "View event"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: admin/includes/admin-new.php:
|
620 |
#, php-format
|
621 |
msgid "Event restored to revision from %1$s"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/includes/admin-new.php:
|
625 |
msgid "Event published."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: admin/includes/admin-new.php:
|
629 |
msgid "Event submitted."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/includes/admin-new.php:
|
633 |
-
#: admin/includes/admin-new.php:
|
634 |
msgid "Preview event"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: admin/includes/admin-new.php:
|
638 |
#, php-format
|
639 |
msgid "Event scheduled for: %1$s>"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: admin/includes/admin-new.php:
|
643 |
msgid "Event draft updated."
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: admin/includes/admin-settings.php:
|
647 |
msgid "Go to Event Category switching page"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: admin/includes/admin-settings.php:
|
651 |
msgid "Frontend Settings"
|
652 |
msgstr "Frontend-indstillinger"
|
653 |
|
654 |
-
#: admin/includes/admin-settings.php:
|
655 |
msgid "Admin Page Settings"
|
656 |
msgstr "Admin Page-indstillinger"
|
657 |
|
658 |
-
#: admin/includes/admin-settings.php:
|
659 |
msgid "Feed Settings"
|
660 |
msgstr "Feed-indstillinger"
|
661 |
|
662 |
-
#: admin/includes/admin-settings.php:
|
663 |
msgid "Category Taxonomy"
|
664 |
msgstr ""
|
665 |
|
@@ -822,7 +824,7 @@ msgstr "Tidligere"
|
|
822 |
msgid "This value defines a range from the past to the previous day."
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/event.php:
|
826 |
msgid "No valid start date provided"
|
827 |
msgstr ""
|
828 |
|
@@ -1031,273 +1033,286 @@ msgid ""
|
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: includes/options_helptexts.php:56
|
1034 |
-
msgid "
|
1035 |
msgstr ""
|
1036 |
|
1037 |
#: includes/options_helptexts.php:57
|
1038 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1039 |
"With this option the displayed text for the link to show the event content "
|
1040 |
"can be changed, when collapsing is enabled."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/options_helptexts.php:
|
1044 |
msgid "Text for \"Hide content\""
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: includes/options_helptexts.php:
|
1048 |
msgid ""
|
1049 |
"With this option the displayed text for the link to hide the event content "
|
1050 |
"can be changed, when collapsing is enabled."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/options_helptexts.php:
|
1054 |
msgid "Disable CSS file"
|
1055 |
msgstr "Deaktiver CSS-fil"
|
1056 |
|
1057 |
-
#: includes/options_helptexts.php:
|
1058 |
#, php-format
|
1059 |
msgid "Disable the %1$s file."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/options_helptexts.php:
|
1063 |
#, php-format
|
1064 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: includes/options_helptexts.php:
|
1068 |
msgid ""
|
1069 |
"This normally only make sense if you have css conflicts with your theme and "
|
1070 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/options_helptexts.php:
|
1074 |
msgid "Date format in edit form"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: includes/options_helptexts.php:
|
1078 |
msgid ""
|
1079 |
"This option sets the displayed date format for the event date fields in the "
|
1080 |
"event new / edit form."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/options_helptexts.php:
|
1084 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: includes/options_helptexts.php:
|
1088 |
#, php-format
|
1089 |
msgid ""
|
1090 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: includes/options_helptexts.php:
|
1094 |
msgid "Enable RSS feed"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: includes/options_helptexts.php:
|
1098 |
msgid "Enable support for an event RSS feed"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: includes/options_helptexts.php:
|
1102 |
msgid "This option activates a RSS feed for the events."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: includes/options_helptexts.php:
|
1106 |
msgid ""
|
1107 |
"You have to enable this option if you want to use one of the RSS feed "
|
1108 |
"features."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/options_helptexts.php:
|
1112 |
msgid "Feed name"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: includes/options_helptexts.php:
|
1116 |
#, php-format
|
1117 |
msgid "This option sets the feed name. The default value is %1$s."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: includes/options_helptexts.php:
|
1121 |
#, php-format
|
1122 |
msgid ""
|
1123 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1124 |
"enabled)."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/options_helptexts.php:
|
1128 |
msgid "Feed Description"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: includes/options_helptexts.php:
|
1132 |
#, php-format
|
1133 |
msgid "This options set the feed description. The default value is %1$s."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/options_helptexts.php:
|
1137 |
msgid ""
|
1138 |
"This description will be used in the title for the feed link in the html "
|
1139 |
"head and for the description in the feed itself."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: includes/options_helptexts.php:
|
1143 |
msgid "Listed events"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: includes/options_helptexts.php:
|
1147 |
msgid "Only show upcoming events in feed"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: includes/options_helptexts.php:
|
1151 |
msgid ""
|
1152 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: includes/options_helptexts.php:
|
1156 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/options_helptexts.php:
|
1160 |
msgid "Add RSS feed link in head"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: includes/options_helptexts.php:
|
1164 |
msgid "Add RSS feed link in the html head"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: includes/options_helptexts.php:
|
1168 |
msgid "This option adds a RSS feed in the html head for the events."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: includes/options_helptexts.php:
|
1172 |
msgid "There are 2 alternatives to include the RSS feed"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: includes/options_helptexts.php:
|
1176 |
msgid ""
|
1177 |
"The first way is this option to include a link in the html head. This link "
|
1178 |
"will be recognized by browers or feed readers."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: includes/options_helptexts.php:
|
1182 |
#, php-format
|
1183 |
msgid ""
|
1184 |
"The second way is to include a visible feed link directly in the event list."
|
1185 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: includes/options_helptexts.php:
|
1189 |
#, php-format
|
1190 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: includes/options_helptexts.php:
|
1194 |
msgid "Position of the RSS feed link"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: includes/options_helptexts.php:
|
1198 |
msgid "at the top (above the navigation bar)"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: includes/options_helptexts.php:
|
1202 |
msgid "between navigation bar and events"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: includes/options_helptexts.php:
|
1206 |
msgid "at the bottom"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: includes/options_helptexts.php:
|
1210 |
msgid ""
|
1211 |
"This option specifies the position of the RSS feed link in the event list."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
-
#: includes/options_helptexts.php:
|
1216 |
#, php-format
|
1217 |
msgid ""
|
1218 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1219 |
" feed link."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: includes/options_helptexts.php:
|
1223 |
msgid "Align of the RSS feed link"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: includes/options_helptexts.php:
|
1227 |
msgid "left"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: includes/options_helptexts.php:
|
1231 |
msgid "center"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: includes/options_helptexts.php:
|
1235 |
msgid "right"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/options_helptexts.php:
|
1239 |
msgid ""
|
1240 |
"This option specifies the align of the RSS feed link in the event list."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: includes/options_helptexts.php:
|
1244 |
msgid "Feed link text"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: includes/options_helptexts.php:
|
1248 |
msgid ""
|
1249 |
"This option specifies the caption of the RSS feed link in the event list."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/options_helptexts.php:
|
1253 |
msgid ""
|
1254 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1255 |
"image."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: includes/options_helptexts.php:
|
1259 |
msgid "Feed link image"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/options_helptexts.php:
|
1263 |
msgid "Show rss image in feed link"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: includes/options_helptexts.php:
|
1267 |
msgid ""
|
1268 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1269 |
" front of the text."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: includes/options_helptexts.php:
|
1273 |
msgid "Event Category handling"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options_helptexts.php:
|
1277 |
msgid "Use Post Categories"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options_helptexts.php:
|
1281 |
msgid ""
|
1282 |
"Do not maintain seperate categories for the events, and use the existing "
|
1283 |
"post categories instead."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/options_helptexts.php:
|
1287 |
msgid "Attention"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/options_helptexts.php:
|
1291 |
msgid ""
|
1292 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1293 |
" switching page from here."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
#: includes/options.php:40
|
1297 |
-
msgid "
|
1298 |
msgstr ""
|
1299 |
|
1300 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1301 |
msgid "Hide content"
|
1302 |
msgstr ""
|
1303 |
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
12 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Danish (Denmark) (http://www.transifex.com/mibuthu/wp-event-list/language/da_DK/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Event List indstillinger"
|
38 |
|
55 |
msgstr[0] ""
|
56 |
msgstr[1] ""
|
57 |
|
58 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
59 |
msgid "General"
|
60 |
msgstr "Generelt"
|
61 |
|
430 |
msgid "none"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:50
|
434 |
msgid "Import Events"
|
435 |
msgstr "Importér begivenheder"
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
438 |
msgid "Step"
|
439 |
msgstr "Trin"
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:70
|
442 |
msgid "Set import file and options"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: admin/includes/admin-import.php:73
|
446 |
#, php-format
|
447 |
msgid "Proceed with Step %1$s"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin/includes/admin-import.php:76
|
451 |
msgid "Example file"
|
452 |
msgstr "Eksempelfil"
|
453 |
|
454 |
+
#: admin/includes/admin-import.php:77
|
455 |
#, php-format
|
456 |
msgid ""
|
457 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin/includes/admin-import.php:78
|
461 |
msgid "Note"
|
462 |
msgstr "Note"
|
463 |
|
464 |
+
#: admin/includes/admin-import.php:78
|
465 |
msgid ""
|
466 |
"Do not change the column header and separator line (first two lines), "
|
467 |
"otherwise the import will fail!"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
471 |
+
#: admin/includes/admin-import.php:106
|
472 |
msgid "Sorry, there has been an error."
|
473 |
msgstr "Beklager, der er sket en fejl."
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:86
|
476 |
msgid "The file does not exist, please try again."
|
477 |
msgstr "Filen eksisterer ikke. Prøv venligst igen."
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:94
|
480 |
msgid "The file is not a CSV file."
|
481 |
msgstr "Filen er ikke en CSV-fil."
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:123
|
484 |
msgid "Events review and additonal category selection"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/includes/admin-import.php:126
|
488 |
msgid ""
|
489 |
"Warning: The following category slugs are not available and will be removed "
|
490 |
"from the imported events:"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: admin/includes/admin-import.php:132
|
494 |
msgid ""
|
495 |
"If you want to keep these categories, please create these Categories first "
|
496 |
"and do the import afterwards."
|
497 |
msgstr ""
|
498 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
#: admin/includes/admin-import.php:161
|
500 |
msgid "Import successful!"
|
501 |
msgstr ""
|
504 |
msgid "Go back to All Events"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:166
|
508 |
+
msgid "Import with errors!"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: admin/includes/admin-import.php:167
|
512 |
+
#, php-format
|
513 |
+
msgid ""
|
514 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
518 |
#: includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr "Titel"
|
521 |
|
522 |
+
#: admin/includes/admin-import.php:175
|
523 |
msgid "Start Date"
|
524 |
msgstr "Starter"
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:176
|
527 |
msgid "End Date"
|
528 |
msgstr "Slutter"
|
529 |
|
530 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
531 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
532 |
msgid "Time"
|
533 |
msgstr "Tidspunkt"
|
534 |
|
535 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
536 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
537 |
#: includes/options_helptexts.php:46
|
538 |
msgid "Location"
|
539 |
msgstr "Lokalitet"
|
540 |
|
541 |
+
#: admin/includes/admin-import.php:179
|
542 |
msgid "Content"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin/includes/admin-import.php:180
|
546 |
msgid "Category slugs"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: admin/includes/admin-import.php:219
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
553 |
"missing or not correct!"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/includes/admin-import.php:251
|
557 |
msgid "Import events"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/includes/admin-import.php:252
|
561 |
msgid "Add additional categories"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
565 |
msgid "Import"
|
566 |
msgstr "Importér"
|
567 |
|
586 |
msgid "Event data"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: admin/includes/admin-new.php:80
|
590 |
msgid "Add Copy"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/includes/admin-new.php:84
|
594 |
msgid "Date"
|
595 |
msgstr "Dato"
|
596 |
|
597 |
+
#: admin/includes/admin-new.php:84
|
598 |
msgid "required"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: admin/includes/admin-new.php:87
|
602 |
msgid "Multi-Day Event"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: admin/includes/admin-new.php:106
|
606 |
msgid "Event Title"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: admin/includes/admin-new.php:121
|
610 |
msgid "Event Content"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
614 |
msgid "Event updated."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
618 |
msgid "View event"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: admin/includes/admin-new.php:184
|
622 |
#, php-format
|
623 |
msgid "Event restored to revision from %1$s"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: admin/includes/admin-new.php:185
|
627 |
msgid "Event published."
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: admin/includes/admin-new.php:187
|
631 |
msgid "Event submitted."
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
635 |
+
#: admin/includes/admin-new.php:190
|
636 |
msgid "Preview event"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/includes/admin-new.php:188
|
640 |
#, php-format
|
641 |
msgid "Event scheduled for: %1$s>"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: admin/includes/admin-new.php:190
|
645 |
msgid "Event draft updated."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: admin/includes/admin-settings.php:71
|
649 |
msgid "Go to Event Category switching page"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: admin/includes/admin-settings.php:83
|
653 |
msgid "Frontend Settings"
|
654 |
msgstr "Frontend-indstillinger"
|
655 |
|
656 |
+
#: admin/includes/admin-settings.php:84
|
657 |
msgid "Admin Page Settings"
|
658 |
msgstr "Admin Page-indstillinger"
|
659 |
|
660 |
+
#: admin/includes/admin-settings.php:85
|
661 |
msgid "Feed Settings"
|
662 |
msgstr "Feed-indstillinger"
|
663 |
|
664 |
+
#: admin/includes/admin-settings.php:86
|
665 |
msgid "Category Taxonomy"
|
666 |
msgstr ""
|
667 |
|
824 |
msgid "This value defines a range from the past to the previous day."
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: includes/event.php:107
|
828 |
msgid "No valid start date provided"
|
829 |
msgstr ""
|
830 |
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: includes/options_helptexts.php:56
|
1036 |
+
msgid "Events permalink slug"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
#: includes/options_helptexts.php:57
|
1040 |
msgid ""
|
1041 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: includes/options_helptexts.php:60
|
1045 |
+
msgid "Text for \"Show content\""
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: includes/options_helptexts.php:61
|
1049 |
+
msgid ""
|
1050 |
"With this option the displayed text for the link to show the event content "
|
1051 |
"can be changed, when collapsing is enabled."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:64
|
1055 |
msgid "Text for \"Hide content\""
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:65
|
1059 |
msgid ""
|
1060 |
"With this option the displayed text for the link to hide the event content "
|
1061 |
"can be changed, when collapsing is enabled."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: includes/options_helptexts.php:68
|
1065 |
msgid "Disable CSS file"
|
1066 |
msgstr "Deaktiver CSS-fil"
|
1067 |
|
1068 |
+
#: includes/options_helptexts.php:69
|
1069 |
#, php-format
|
1070 |
msgid "Disable the %1$s file."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: includes/options_helptexts.php:70
|
1074 |
#, php-format
|
1075 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:71
|
1079 |
msgid ""
|
1080 |
"This normally only make sense if you have css conflicts with your theme and "
|
1081 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: includes/options_helptexts.php:75
|
1085 |
msgid "Date format in edit form"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:76
|
1089 |
msgid ""
|
1090 |
"This option sets the displayed date format for the event date fields in the "
|
1091 |
"event new / edit form."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/options_helptexts.php:77
|
1095 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: includes/options_helptexts.php:78
|
1099 |
#, php-format
|
1100 |
msgid ""
|
1101 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1105 |
msgid "Enable RSS feed"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: includes/options_helptexts.php:83
|
1109 |
msgid "Enable support for an event RSS feed"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/options_helptexts.php:84
|
1113 |
msgid "This option activates a RSS feed for the events."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/options_helptexts.php:85
|
1117 |
msgid ""
|
1118 |
"You have to enable this option if you want to use one of the RSS feed "
|
1119 |
"features."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: includes/options_helptexts.php:88
|
1123 |
msgid "Feed name"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/options_helptexts.php:89
|
1127 |
#, php-format
|
1128 |
msgid "This option sets the feed name. The default value is %1$s."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: includes/options_helptexts.php:90
|
1132 |
#, php-format
|
1133 |
msgid ""
|
1134 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1135 |
"enabled)."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/options_helptexts.php:93
|
1139 |
msgid "Feed Description"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: includes/options_helptexts.php:94
|
1143 |
#, php-format
|
1144 |
msgid "This options set the feed description. The default value is %1$s."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/options_helptexts.php:95
|
1148 |
msgid ""
|
1149 |
"This description will be used in the title for the feed link in the html "
|
1150 |
"head and for the description in the feed itself."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: includes/options_helptexts.php:98
|
1154 |
msgid "Listed events"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:99
|
1158 |
msgid "Only show upcoming events in feed"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: includes/options_helptexts.php:100
|
1162 |
msgid ""
|
1163 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:101
|
1167 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: includes/options_helptexts.php:104
|
1171 |
msgid "Add RSS feed link in head"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: includes/options_helptexts.php:105
|
1175 |
msgid "Add RSS feed link in the html head"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/options_helptexts.php:106
|
1179 |
msgid "This option adds a RSS feed in the html head for the events."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/options_helptexts.php:107
|
1183 |
msgid "There are 2 alternatives to include the RSS feed"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/options_helptexts.php:108
|
1187 |
msgid ""
|
1188 |
"The first way is this option to include a link in the html head. This link "
|
1189 |
"will be recognized by browers or feed readers."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/options_helptexts.php:109
|
1193 |
#, php-format
|
1194 |
msgid ""
|
1195 |
"The second way is to include a visible feed link directly in the event list."
|
1196 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/options_helptexts.php:110
|
1200 |
#, php-format
|
1201 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: includes/options_helptexts.php:113
|
1205 |
msgid "Position of the RSS feed link"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: includes/options_helptexts.php:114
|
1209 |
msgid "at the top (above the navigation bar)"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: includes/options_helptexts.php:114
|
1213 |
msgid "between navigation bar and events"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: includes/options_helptexts.php:114
|
1217 |
msgid "at the bottom"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: includes/options_helptexts.php:115
|
1221 |
msgid ""
|
1222 |
"This option specifies the position of the RSS feed link in the event list."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1226 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1227 |
#, php-format
|
1228 |
msgid ""
|
1229 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1230 |
" feed link."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/options_helptexts.php:119
|
1234 |
msgid "Align of the RSS feed link"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: includes/options_helptexts.php:120
|
1238 |
msgid "left"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: includes/options_helptexts.php:120
|
1242 |
msgid "center"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: includes/options_helptexts.php:120
|
1246 |
msgid "right"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: includes/options_helptexts.php:121
|
1250 |
msgid ""
|
1251 |
"This option specifies the align of the RSS feed link in the event list."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/options_helptexts.php:125
|
1255 |
msgid "Feed link text"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/options_helptexts.php:126
|
1259 |
msgid ""
|
1260 |
"This option specifies the caption of the RSS feed link in the event list."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options_helptexts.php:127
|
1264 |
msgid ""
|
1265 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1266 |
"image."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options_helptexts.php:131
|
1270 |
msgid "Feed link image"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:132
|
1274 |
msgid "Show rss image in feed link"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:133
|
1278 |
msgid ""
|
1279 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1280 |
" front of the text."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/options_helptexts.php:139
|
1284 |
msgid "Event Category handling"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: includes/options_helptexts.php:140
|
1288 |
msgid "Use Post Categories"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: includes/options_helptexts.php:141
|
1292 |
msgid ""
|
1293 |
"Do not maintain seperate categories for the events, and use the existing "
|
1294 |
"post categories instead."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options_helptexts.php:142
|
1298 |
msgid "Attention"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:143
|
1302 |
msgid ""
|
1303 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1304 |
" switching page from here."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: includes/options.php:40
|
1308 |
+
msgid "events"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
#: includes/options.php:41
|
1312 |
+
msgid "Show content"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: includes/options.php:42
|
1316 |
msgid "Hide content"
|
1317 |
msgstr ""
|
1318 |
|
languages/event-list-de_DE.po
CHANGED
@@ -12,8 +12,8 @@ msgid ""
|
|
12 |
msgstr ""
|
13 |
"Project-Id-Version: wp-event-list\n"
|
14 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
15 |
-
"POT-Creation-Date: 2018-
|
16 |
-
"PO-Revision-Date: 2018-
|
17 |
"Last-Translator: mibuthu\n"
|
18 |
"Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
|
19 |
"MIME-Version: 1.0\n"
|
@@ -36,7 +36,7 @@ msgstr "Upgrade des Plugins %1$s erfolgreich"
|
|
36 |
msgid "no additional information available"
|
37 |
msgstr "keine zusätzlichen Informationen verfügbar"
|
38 |
|
39 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
40 |
msgid "Event List Settings"
|
41 |
msgstr "Event List Einstellungen"
|
42 |
|
@@ -59,7 +59,7 @@ msgid_plural "%s Events"
|
|
59 |
msgstr[0] "%s Termin"
|
60 |
msgstr[1] "%s Termine"
|
61 |
|
62 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
63 |
msgid "General"
|
64 |
msgstr "Allgemein"
|
65 |
|
@@ -434,80 +434,72 @@ msgstr "Ergänze nicht verfügbare Beitrags-Kategorien"
|
|
434 |
msgid "none"
|
435 |
msgstr "keine"
|
436 |
|
437 |
-
#: admin/includes/admin-import.php:
|
438 |
msgid "Import Events"
|
439 |
msgstr "Importiere Termine"
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
msgid "Step"
|
443 |
msgstr "Schritt"
|
444 |
|
445 |
-
#: admin/includes/admin-import.php:
|
446 |
msgid "Set import file and options"
|
447 |
msgstr "Datei und Optionen zum Importieren wählen"
|
448 |
|
449 |
-
#: admin/includes/admin-import.php:
|
450 |
#, php-format
|
451 |
msgid "Proceed with Step %1$s"
|
452 |
msgstr "Weiter zu Schritt %1$s"
|
453 |
|
454 |
-
#: admin/includes/admin-import.php:
|
455 |
msgid "Example file"
|
456 |
msgstr "Beispieldatei"
|
457 |
|
458 |
-
#: admin/includes/admin-import.php:
|
459 |
#, php-format
|
460 |
msgid ""
|
461 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
462 |
msgstr "Du kannst eine Beispieldatei herunterladen %1$shere%2$s (Das CSV-Trennzeichen ist ein Komma!)"
|
463 |
|
464 |
-
#: admin/includes/admin-import.php:
|
465 |
msgid "Note"
|
466 |
msgstr "Achtung"
|
467 |
|
468 |
-
#: admin/includes/admin-import.php:
|
469 |
msgid ""
|
470 |
"Do not change the column header and separator line (first two lines), "
|
471 |
"otherwise the import will fail!"
|
472 |
msgstr "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import "
|
473 |
|
474 |
-
#: admin/includes/admin-import.php:
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
msgid "Sorry, there has been an error."
|
477 |
msgstr "Entschuldigung, ein Fehler ist aufgetreten."
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid "The file does not exist, please try again."
|
481 |
msgstr "Die Datei existiert nicht, bitte erneut versuchen."
|
482 |
|
483 |
-
#: admin/includes/admin-import.php:
|
484 |
msgid "The file is not a CSV file."
|
485 |
msgstr "Bei dieser Datei handelt es sich nicht um eine gültige CSV-Datei."
|
486 |
|
487 |
-
#: admin/includes/admin-import.php:
|
488 |
msgid "Events review and additonal category selection"
|
489 |
msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl"
|
490 |
|
491 |
-
#: admin/includes/admin-import.php:
|
492 |
msgid ""
|
493 |
"Warning: The following category slugs are not available and will be removed "
|
494 |
"from the imported events:"
|
495 |
msgstr "Warning: Die folgenden Kategorie-Slugs sind nicht verfügbar und werden aus den importierten Terminen entfernt:"
|
496 |
|
497 |
-
#: admin/includes/admin-import.php:
|
498 |
msgid ""
|
499 |
"If you want to keep these categories, please create these Categories first "
|
500 |
"and do the import afterwards."
|
501 |
msgstr "Wenn diese Kategorien erhalten bleiben sollen, bitte zuerst die Kategorien anlegen und erst anschließend den Import ausführen."
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:156
|
504 |
-
msgid "Import with errors!"
|
505 |
-
msgstr "Import mit Fehler!"
|
506 |
-
|
507 |
-
#: admin/includes/admin-import.php:157
|
508 |
-
msgid "Sorry, an error occurred during import!"
|
509 |
-
msgstr "Entschuldigung, während des Imports ist ein Fehler aufgetreten!"
|
510 |
-
|
511 |
#: admin/includes/admin-import.php:161
|
512 |
msgid "Import successful!"
|
513 |
msgstr "Importieren erfolgreich abgeschlossen!"
|
@@ -516,54 +508,64 @@ msgstr "Importieren erfolgreich abgeschlossen!"
|
|
516 |
msgid "Go back to All Events"
|
517 |
msgstr "Gehe zurück zu Alle Termine"
|
518 |
|
519 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
520 |
#: includes/widget_helptexts.php:8
|
521 |
msgid "Title"
|
522 |
msgstr "Titel"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "Start Date"
|
526 |
msgstr "Start-Datum"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
msgid "End Date"
|
530 |
msgstr "End-Datum"
|
531 |
|
532 |
-
#: admin/includes/admin-import.php:
|
533 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
534 |
msgid "Time"
|
535 |
msgstr "Uhrzeit"
|
536 |
|
537 |
-
#: admin/includes/admin-import.php:
|
538 |
-
#: admin/includes/admin-new.php:
|
539 |
#: includes/options_helptexts.php:46
|
540 |
msgid "Location"
|
541 |
msgstr "Ort"
|
542 |
|
543 |
-
#: admin/includes/admin-import.php:
|
544 |
msgid "Content"
|
545 |
msgstr "Inhalt"
|
546 |
|
547 |
-
#: admin/includes/admin-import.php:
|
548 |
msgid "Category slugs"
|
549 |
msgstr "Kategorie-Slugs"
|
550 |
|
551 |
-
#: admin/includes/admin-import.php:
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
555 |
"missing or not correct!"
|
556 |
msgstr "Fehler beim Lesen der CSV-Datei in Zeile %1$s: Header-Zeile fehlt oder ist nicht korrekt!"
|
557 |
|
558 |
-
#: admin/includes/admin-import.php:
|
559 |
msgid "Import events"
|
560 |
msgstr "Importiere die Termine"
|
561 |
|
562 |
-
#: admin/includes/admin-import.php:
|
563 |
msgid "Add additional categories"
|
564 |
msgstr "Kategorien ergänzen"
|
565 |
|
566 |
-
#: admin/includes/admin-import.php:
|
567 |
msgid "Import"
|
568 |
msgstr "Importieren"
|
569 |
|
@@ -588,82 +590,82 @@ msgstr "Kopieren"
|
|
588 |
msgid "Event data"
|
589 |
msgstr "Termin-Daten"
|
590 |
|
591 |
-
#: admin/includes/admin-new.php:
|
592 |
msgid "Add Copy"
|
593 |
msgstr "Kopie erstellen"
|
594 |
|
595 |
-
#: admin/includes/admin-new.php:
|
596 |
msgid "Date"
|
597 |
msgstr "Datum"
|
598 |
|
599 |
-
#: admin/includes/admin-new.php:
|
600 |
msgid "required"
|
601 |
msgstr "erforderlich"
|
602 |
|
603 |
-
#: admin/includes/admin-new.php:
|
604 |
msgid "Multi-Day Event"
|
605 |
msgstr "Mehrtägiger Termin"
|
606 |
|
607 |
-
#: admin/includes/admin-new.php:
|
608 |
msgid "Event Title"
|
609 |
msgstr "Termin-Titel"
|
610 |
|
611 |
-
#: admin/includes/admin-new.php:
|
612 |
msgid "Event Content"
|
613 |
msgstr "Termin-Inhalt"
|
614 |
|
615 |
-
#: admin/includes/admin-new.php:
|
616 |
msgid "Event updated."
|
617 |
msgstr "Termin aktualisiert."
|
618 |
|
619 |
-
#: admin/includes/admin-new.php:
|
620 |
msgid "View event"
|
621 |
msgstr "Termin anzeigen"
|
622 |
|
623 |
-
#: admin/includes/admin-new.php:
|
624 |
#, php-format
|
625 |
msgid "Event restored to revision from %1$s"
|
626 |
msgstr "Termin wiederhergestellt mit Revision von %1$s"
|
627 |
|
628 |
-
#: admin/includes/admin-new.php:
|
629 |
msgid "Event published."
|
630 |
msgstr "Termin veröffentlicht."
|
631 |
|
632 |
-
#: admin/includes/admin-new.php:
|
633 |
msgid "Event submitted."
|
634 |
msgstr "Termin eingereicht."
|
635 |
|
636 |
-
#: admin/includes/admin-new.php:
|
637 |
-
#: admin/includes/admin-new.php:
|
638 |
msgid "Preview event"
|
639 |
msgstr "Termin-Vorschau anzeigen"
|
640 |
|
641 |
-
#: admin/includes/admin-new.php:
|
642 |
#, php-format
|
643 |
msgid "Event scheduled for: %1$s>"
|
644 |
msgstr "Termin eingeplant für: %1$s"
|
645 |
|
646 |
-
#: admin/includes/admin-new.php:
|
647 |
msgid "Event draft updated."
|
648 |
msgstr "Termin-Entwurf aktualisiert."
|
649 |
|
650 |
-
#: admin/includes/admin-settings.php:
|
651 |
msgid "Go to Event Category switching page"
|
652 |
msgstr "Gehe zur Wechel-Seite für die Termin-Kategorien"
|
653 |
|
654 |
-
#: admin/includes/admin-settings.php:
|
655 |
msgid "Frontend Settings"
|
656 |
msgstr "Frontend Einstellungen"
|
657 |
|
658 |
-
#: admin/includes/admin-settings.php:
|
659 |
msgid "Admin Page Settings"
|
660 |
msgstr "Admin-Seiten Einstellungen"
|
661 |
|
662 |
-
#: admin/includes/admin-settings.php:
|
663 |
msgid "Feed Settings"
|
664 |
msgstr "Feed Einstellungen"
|
665 |
|
666 |
-
#: admin/includes/admin-settings.php:
|
667 |
msgid "Category Taxonomy"
|
668 |
msgstr "Kategorie-Taxonomie"
|
669 |
|
@@ -826,7 +828,7 @@ msgstr "Beendet"
|
|
826 |
msgid "This value defines a range from the past to the previous day."
|
827 |
msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
|
828 |
|
829 |
-
#: includes/event.php:
|
830 |
msgid "No valid start date provided"
|
831 |
msgstr "Kein gültiges Start-Datum angegeben"
|
832 |
|
@@ -1035,273 +1037,286 @@ msgid ""
|
|
1035 |
msgstr "Wenn eine eigene Übersetzungsdatei aus dem generellen Übersetzungsverzeichnis %1$s verwendet werden soll, die bereits im Sprachverzeichnis des Plugins vorhanden ist, dann muss diese Option aktiviert werden."
|
1036 |
|
1037 |
#: includes/options_helptexts.php:56
|
1038 |
-
msgid "
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: includes/options_helptexts.php:57
|
1042 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1043 |
"With this option the displayed text for the link to show the event content "
|
1044 |
"can be changed, when collapsing is enabled."
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: includes/options_helptexts.php:
|
1048 |
msgid "Text for \"Hide content\""
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: includes/options_helptexts.php:
|
1052 |
msgid ""
|
1053 |
"With this option the displayed text for the link to hide the event content "
|
1054 |
"can be changed, when collapsing is enabled."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: includes/options_helptexts.php:
|
1058 |
msgid "Disable CSS file"
|
1059 |
msgstr "Deaktiviere die CSS-Datei"
|
1060 |
|
1061 |
-
#: includes/options_helptexts.php:
|
1062 |
#, php-format
|
1063 |
msgid "Disable the %1$s file."
|
1064 |
msgstr "Deaktiviere die %1$s Datei."
|
1065 |
|
1066 |
-
#: includes/options_helptexts.php:
|
1067 |
#, php-format
|
1068 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1069 |
msgstr "Mit dieser Einstellung kann das Einbinden der Datei %1$s deaktiviert werden."
|
1070 |
|
1071 |
-
#: includes/options_helptexts.php:
|
1072 |
msgid ""
|
1073 |
"This normally only make sense if you have css conflicts with your theme and "
|
1074 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1075 |
msgstr "Dies ist normalerweise nur bei CSS-Konflikten mit dem verwendeten Theme sinnvoll. Alle erforderlichen CSS-Stile müssen dann irgendwo anders gesetzt werden (z.B. in der CSS-Datei des Themes)."
|
1076 |
|
1077 |
-
#: includes/options_helptexts.php:
|
1078 |
msgid "Date format in edit form"
|
1079 |
msgstr "Datumsformat im Formular"
|
1080 |
|
1081 |
-
#: includes/options_helptexts.php:
|
1082 |
msgid ""
|
1083 |
"This option sets the displayed date format for the event date fields in the "
|
1084 |
"event new / edit form."
|
1085 |
msgstr "Diese Einstellung setzt das angezeigte Datumsformat für die Datumsfelder im Termin Erstellungs- / Änderungsformular."
|
1086 |
|
1087 |
-
#: includes/options_helptexts.php:
|
1088 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1089 |
msgstr "Der Standardwert ist ein leerer String, um die Standard-Wordpress-Einstellung zu verwenden."
|
1090 |
|
1091 |
-
#: includes/options_helptexts.php:
|
1092 |
#, php-format
|
1093 |
msgid ""
|
1094 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1095 |
msgstr "Alle verfügbaren Optionen zur Spezifizierung des Datumformats sind %1$shier%2$s ersichtlich."
|
1096 |
|
1097 |
-
#: includes/options_helptexts.php:
|
1098 |
msgid "Enable RSS feed"
|
1099 |
msgstr "RSS feed aktivieren"
|
1100 |
|
1101 |
-
#: includes/options_helptexts.php:
|
1102 |
msgid "Enable support for an event RSS feed"
|
1103 |
msgstr "Support für ein Termin-RSS-Feed aktivieren"
|
1104 |
|
1105 |
-
#: includes/options_helptexts.php:
|
1106 |
msgid "This option activates a RSS feed for the events."
|
1107 |
msgstr "Diese Einstellung aktiviert einen RSS-Feed für die Termine."
|
1108 |
|
1109 |
-
#: includes/options_helptexts.php:
|
1110 |
msgid ""
|
1111 |
"You have to enable this option if you want to use one of the RSS feed "
|
1112 |
"features."
|
1113 |
msgstr "Diese Option muss aktiviert werden, um eine der RSS-Feed Funktionen nutzen zu können."
|
1114 |
|
1115 |
-
#: includes/options_helptexts.php:
|
1116 |
msgid "Feed name"
|
1117 |
msgstr "Feed-Name"
|
1118 |
|
1119 |
-
#: includes/options_helptexts.php:
|
1120 |
#, php-format
|
1121 |
msgid "This option sets the feed name. The default value is %1$s."
|
1122 |
msgstr "Diese Einstellung setzt den Feed-Namen. Der Standardwert ist %1$s."
|
1123 |
|
1124 |
-
#: includes/options_helptexts.php:
|
1125 |
#, php-format
|
1126 |
msgid ""
|
1127 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1128 |
"enabled)."
|
1129 |
msgstr "Dieser Name wird in der Feed-URL verwendet (z.B. %1$s, oder %2$s bei Verwendung von Permalinks)"
|
1130 |
|
1131 |
-
#: includes/options_helptexts.php:
|
1132 |
msgid "Feed Description"
|
1133 |
msgstr "Feed-Beschreibung"
|
1134 |
|
1135 |
-
#: includes/options_helptexts.php:
|
1136 |
#, php-format
|
1137 |
msgid "This options set the feed description. The default value is %1$s."
|
1138 |
msgstr "Diese Einstellung setzt die Feed-Beschreibung. Der Standardwert ist %1$s."
|
1139 |
|
1140 |
-
#: includes/options_helptexts.php:
|
1141 |
msgid ""
|
1142 |
"This description will be used in the title for the feed link in the html "
|
1143 |
"head and for the description in the feed itself."
|
1144 |
msgstr "Diese Beschreibung wird im HTML-Kopf für den Titel des Feed-Links verwendet und für die Beschreibung im Feed selbst."
|
1145 |
|
1146 |
-
#: includes/options_helptexts.php:
|
1147 |
msgid "Listed events"
|
1148 |
msgstr "Anzuzeigende Termine"
|
1149 |
|
1150 |
-
#: includes/options_helptexts.php:
|
1151 |
msgid "Only show upcoming events in feed"
|
1152 |
msgstr "Zeige nur anstehende Termine im Feed an"
|
1153 |
|
1154 |
-
#: includes/options_helptexts.php:
|
1155 |
msgid ""
|
1156 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1157 |
msgstr "Wenn diese Option aktiviert ist, werden nur die anstehenden Termine im Feed angezeigt."
|
1158 |
|
1159 |
-
#: includes/options_helptexts.php:
|
1160 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1161 |
msgstr "Ist die Einstellung deaktiviert, sind alle Termine (anstehende und beendete) im Feed vorhanden."
|
1162 |
|
1163 |
-
#: includes/options_helptexts.php:
|
1164 |
msgid "Add RSS feed link in head"
|
1165 |
msgstr "Füge einen RSS-Link in der Kopfzeile hinzu"
|
1166 |
|
1167 |
-
#: includes/options_helptexts.php:
|
1168 |
msgid "Add RSS feed link in the html head"
|
1169 |
msgstr "Füge einen RSS-Feed-Link im HTML-Kopf ein"
|
1170 |
|
1171 |
-
#: includes/options_helptexts.php:
|
1172 |
msgid "This option adds a RSS feed in the html head for the events."
|
1173 |
msgstr "Diese Einstellung fügt einen RSS-Feed für die Termine in den HTML-Kopf ein."
|
1174 |
|
1175 |
-
#: includes/options_helptexts.php:
|
1176 |
msgid "There are 2 alternatives to include the RSS feed"
|
1177 |
msgstr "Es gibt 2 Möglichkeiten zur Einbingung eines RSS-Feed"
|
1178 |
|
1179 |
-
#: includes/options_helptexts.php:
|
1180 |
msgid ""
|
1181 |
"The first way is this option to include a link in the html head. This link "
|
1182 |
"will be recognized by browers or feed readers."
|
1183 |
msgstr "Die erste Variante ist diese Einstellung, mit der ein Link in den HTML-Kopfeingefügt wird. Dieser Link wird von den Browsern und Feed-Readern erkannt."
|
1184 |
|
1185 |
-
#: includes/options_helptexts.php:
|
1186 |
#, php-format
|
1187 |
msgid ""
|
1188 |
"The second way is to include a visible feed link directly in the event list."
|
1189 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1190 |
msgstr "Die 2. Variante ist die Einbindung eines sichtbaren Feed-Links direkt in der Terminliste. Dies kann durch das Setzen des Shortcode-Attributs %1$s auf %2$s erreicht werden."
|
1191 |
|
1192 |
-
#: includes/options_helptexts.php:
|
1193 |
#, php-format
|
1194 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1195 |
msgstr "Diese Einstellung ist nur gültig, wenn die Option %1$s aktiviert ist."
|
1196 |
|
1197 |
-
#: includes/options_helptexts.php:
|
1198 |
msgid "Position of the RSS feed link"
|
1199 |
msgstr "Position des RSS feed Links"
|
1200 |
|
1201 |
-
#: includes/options_helptexts.php:
|
1202 |
msgid "at the top (above the navigation bar)"
|
1203 |
msgstr "oben (über der Navigationsleiste)"
|
1204 |
|
1205 |
-
#: includes/options_helptexts.php:
|
1206 |
msgid "between navigation bar and events"
|
1207 |
msgstr "zwischen Navigationsleiste und Terminliste"
|
1208 |
|
1209 |
-
#: includes/options_helptexts.php:
|
1210 |
msgid "at the bottom"
|
1211 |
msgstr "unterhalb der Terminliste"
|
1212 |
|
1213 |
-
#: includes/options_helptexts.php:
|
1214 |
msgid ""
|
1215 |
"This option specifies the position of the RSS feed link in the event list."
|
1216 |
msgstr "Diese Einstellung definiert die Position des RSS-Feed-Links in der Terminliste."
|
1217 |
|
1218 |
-
#: includes/options_helptexts.php:
|
1219 |
-
#: includes/options_helptexts.php:
|
1220 |
#, php-format
|
1221 |
msgid ""
|
1222 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1223 |
" feed link."
|
1224 |
msgstr "Das Shortcode-Attribut %1$s muss auf %2$s gesetzt werden, um die Anzeige des Feed-Links zu aktivieren."
|
1225 |
|
1226 |
-
#: includes/options_helptexts.php:
|
1227 |
msgid "Align of the RSS feed link"
|
1228 |
msgstr "Ausrichtung des RSS-Feed-Links"
|
1229 |
|
1230 |
-
#: includes/options_helptexts.php:
|
1231 |
msgid "left"
|
1232 |
msgstr "links"
|
1233 |
|
1234 |
-
#: includes/options_helptexts.php:
|
1235 |
msgid "center"
|
1236 |
msgstr "mittig"
|
1237 |
|
1238 |
-
#: includes/options_helptexts.php:
|
1239 |
msgid "right"
|
1240 |
msgstr "rechts"
|
1241 |
|
1242 |
-
#: includes/options_helptexts.php:
|
1243 |
msgid ""
|
1244 |
"This option specifies the align of the RSS feed link in the event list."
|
1245 |
msgstr "Diese Einstellung definiert die Ausrichtung des RSS-Feed-Links in der Terminliste."
|
1246 |
|
1247 |
-
#: includes/options_helptexts.php:
|
1248 |
msgid "Feed link text"
|
1249 |
msgstr "Feed Link Text"
|
1250 |
|
1251 |
-
#: includes/options_helptexts.php:
|
1252 |
msgid ""
|
1253 |
"This option specifies the caption of the RSS feed link in the event list."
|
1254 |
msgstr "Diese Einstellung definiert die Beschriftung des RSS-Feed-Links in der Terminliste."
|
1255 |
|
1256 |
-
#: includes/options_helptexts.php:
|
1257 |
msgid ""
|
1258 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1259 |
"image."
|
1260 |
msgstr "Wir der Text leer gelassen, dann wird nur das RSS-Bild angezeigt."
|
1261 |
|
1262 |
-
#: includes/options_helptexts.php:
|
1263 |
msgid "Feed link image"
|
1264 |
msgstr "Bild für den Feed-Link"
|
1265 |
|
1266 |
-
#: includes/options_helptexts.php:
|
1267 |
msgid "Show rss image in feed link"
|
1268 |
msgstr "Zeige das RSS-Bild im Feed-Link an"
|
1269 |
|
1270 |
-
#: includes/options_helptexts.php:
|
1271 |
msgid ""
|
1272 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1273 |
" front of the text."
|
1274 |
msgstr "Diese Einstellung definiert ein Bild, das im Feed-Link links von der Beschriftung angezeigt wird."
|
1275 |
|
1276 |
-
#: includes/options_helptexts.php:
|
1277 |
msgid "Event Category handling"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options_helptexts.php:
|
1281 |
msgid "Use Post Categories"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/options_helptexts.php:
|
1285 |
msgid ""
|
1286 |
"Do not maintain seperate categories for the events, and use the existing "
|
1287 |
"post categories instead."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/options_helptexts.php:
|
1291 |
msgid "Attention"
|
1292 |
msgstr "Achtung"
|
1293 |
|
1294 |
-
#: includes/options_helptexts.php:
|
1295 |
msgid ""
|
1296 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1297 |
" switching page from here."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
#: includes/options.php:40
|
1301 |
-
msgid "
|
1302 |
msgstr ""
|
1303 |
|
1304 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1305 |
msgid "Hide content"
|
1306 |
msgstr ""
|
1307 |
|
12 |
msgstr ""
|
13 |
"Project-Id-Version: wp-event-list\n"
|
14 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
15 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
16 |
+
"PO-Revision-Date: 2018-02-04 11:48+0000\n"
|
17 |
"Last-Translator: mibuthu\n"
|
18 |
"Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
|
19 |
"MIME-Version: 1.0\n"
|
36 |
msgid "no additional information available"
|
37 |
msgstr "keine zusätzlichen Informationen verfügbar"
|
38 |
|
39 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
40 |
msgid "Event List Settings"
|
41 |
msgstr "Event List Einstellungen"
|
42 |
|
59 |
msgstr[0] "%s Termin"
|
60 |
msgstr[1] "%s Termine"
|
61 |
|
62 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
63 |
msgid "General"
|
64 |
msgstr "Allgemein"
|
65 |
|
434 |
msgid "none"
|
435 |
msgstr "keine"
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:50
|
438 |
msgid "Import Events"
|
439 |
msgstr "Importiere Termine"
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
442 |
msgid "Step"
|
443 |
msgstr "Schritt"
|
444 |
|
445 |
+
#: admin/includes/admin-import.php:70
|
446 |
msgid "Set import file and options"
|
447 |
msgstr "Datei und Optionen zum Importieren wählen"
|
448 |
|
449 |
+
#: admin/includes/admin-import.php:73
|
450 |
#, php-format
|
451 |
msgid "Proceed with Step %1$s"
|
452 |
msgstr "Weiter zu Schritt %1$s"
|
453 |
|
454 |
+
#: admin/includes/admin-import.php:76
|
455 |
msgid "Example file"
|
456 |
msgstr "Beispieldatei"
|
457 |
|
458 |
+
#: admin/includes/admin-import.php:77
|
459 |
#, php-format
|
460 |
msgid ""
|
461 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
462 |
msgstr "Du kannst eine Beispieldatei herunterladen %1$shere%2$s (Das CSV-Trennzeichen ist ein Komma!)"
|
463 |
|
464 |
+
#: admin/includes/admin-import.php:78
|
465 |
msgid "Note"
|
466 |
msgstr "Achtung"
|
467 |
|
468 |
+
#: admin/includes/admin-import.php:78
|
469 |
msgid ""
|
470 |
"Do not change the column header and separator line (first two lines), "
|
471 |
"otherwise the import will fail!"
|
472 |
msgstr "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import "
|
473 |
|
474 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
475 |
+
#: admin/includes/admin-import.php:106
|
476 |
msgid "Sorry, there has been an error."
|
477 |
msgstr "Entschuldigung, ein Fehler ist aufgetreten."
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:86
|
480 |
msgid "The file does not exist, please try again."
|
481 |
msgstr "Die Datei existiert nicht, bitte erneut versuchen."
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:94
|
484 |
msgid "The file is not a CSV file."
|
485 |
msgstr "Bei dieser Datei handelt es sich nicht um eine gültige CSV-Datei."
|
486 |
|
487 |
+
#: admin/includes/admin-import.php:123
|
488 |
msgid "Events review and additonal category selection"
|
489 |
msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl"
|
490 |
|
491 |
+
#: admin/includes/admin-import.php:126
|
492 |
msgid ""
|
493 |
"Warning: The following category slugs are not available and will be removed "
|
494 |
"from the imported events:"
|
495 |
msgstr "Warning: Die folgenden Kategorie-Slugs sind nicht verfügbar und werden aus den importierten Terminen entfernt:"
|
496 |
|
497 |
+
#: admin/includes/admin-import.php:132
|
498 |
msgid ""
|
499 |
"If you want to keep these categories, please create these Categories first "
|
500 |
"and do the import afterwards."
|
501 |
msgstr "Wenn diese Kategorien erhalten bleiben sollen, bitte zuerst die Kategorien anlegen und erst anschließend den Import ausführen."
|
502 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
503 |
#: admin/includes/admin-import.php:161
|
504 |
msgid "Import successful!"
|
505 |
msgstr "Importieren erfolgreich abgeschlossen!"
|
508 |
msgid "Go back to All Events"
|
509 |
msgstr "Gehe zurück zu Alle Termine"
|
510 |
|
511 |
+
#: admin/includes/admin-import.php:166
|
512 |
+
msgid "Import with errors!"
|
513 |
+
msgstr "Import mit Fehler!"
|
514 |
+
|
515 |
+
#: admin/includes/admin-import.php:167
|
516 |
+
#, php-format
|
517 |
+
msgid ""
|
518 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
519 |
+
msgstr "Entschuldigung, während des Imports ist ein Fehler aufgetreten! %1$d Termine konnten nicht importiert werden."
|
520 |
+
|
521 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
522 |
#: includes/widget_helptexts.php:8
|
523 |
msgid "Title"
|
524 |
msgstr "Titel"
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:175
|
527 |
msgid "Start Date"
|
528 |
msgstr "Start-Datum"
|
529 |
|
530 |
+
#: admin/includes/admin-import.php:176
|
531 |
msgid "End Date"
|
532 |
msgstr "End-Datum"
|
533 |
|
534 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
535 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
536 |
msgid "Time"
|
537 |
msgstr "Uhrzeit"
|
538 |
|
539 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
540 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
541 |
#: includes/options_helptexts.php:46
|
542 |
msgid "Location"
|
543 |
msgstr "Ort"
|
544 |
|
545 |
+
#: admin/includes/admin-import.php:179
|
546 |
msgid "Content"
|
547 |
msgstr "Inhalt"
|
548 |
|
549 |
+
#: admin/includes/admin-import.php:180
|
550 |
msgid "Category slugs"
|
551 |
msgstr "Kategorie-Slugs"
|
552 |
|
553 |
+
#: admin/includes/admin-import.php:219
|
554 |
#, php-format
|
555 |
msgid ""
|
556 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
557 |
"missing or not correct!"
|
558 |
msgstr "Fehler beim Lesen der CSV-Datei in Zeile %1$s: Header-Zeile fehlt oder ist nicht korrekt!"
|
559 |
|
560 |
+
#: admin/includes/admin-import.php:251
|
561 |
msgid "Import events"
|
562 |
msgstr "Importiere die Termine"
|
563 |
|
564 |
+
#: admin/includes/admin-import.php:252
|
565 |
msgid "Add additional categories"
|
566 |
msgstr "Kategorien ergänzen"
|
567 |
|
568 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
569 |
msgid "Import"
|
570 |
msgstr "Importieren"
|
571 |
|
590 |
msgid "Event data"
|
591 |
msgstr "Termin-Daten"
|
592 |
|
593 |
+
#: admin/includes/admin-new.php:80
|
594 |
msgid "Add Copy"
|
595 |
msgstr "Kopie erstellen"
|
596 |
|
597 |
+
#: admin/includes/admin-new.php:84
|
598 |
msgid "Date"
|
599 |
msgstr "Datum"
|
600 |
|
601 |
+
#: admin/includes/admin-new.php:84
|
602 |
msgid "required"
|
603 |
msgstr "erforderlich"
|
604 |
|
605 |
+
#: admin/includes/admin-new.php:87
|
606 |
msgid "Multi-Day Event"
|
607 |
msgstr "Mehrtägiger Termin"
|
608 |
|
609 |
+
#: admin/includes/admin-new.php:106
|
610 |
msgid "Event Title"
|
611 |
msgstr "Termin-Titel"
|
612 |
|
613 |
+
#: admin/includes/admin-new.php:121
|
614 |
msgid "Event Content"
|
615 |
msgstr "Termin-Inhalt"
|
616 |
|
617 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
618 |
msgid "Event updated."
|
619 |
msgstr "Termin aktualisiert."
|
620 |
|
621 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
622 |
msgid "View event"
|
623 |
msgstr "Termin anzeigen"
|
624 |
|
625 |
+
#: admin/includes/admin-new.php:184
|
626 |
#, php-format
|
627 |
msgid "Event restored to revision from %1$s"
|
628 |
msgstr "Termin wiederhergestellt mit Revision von %1$s"
|
629 |
|
630 |
+
#: admin/includes/admin-new.php:185
|
631 |
msgid "Event published."
|
632 |
msgstr "Termin veröffentlicht."
|
633 |
|
634 |
+
#: admin/includes/admin-new.php:187
|
635 |
msgid "Event submitted."
|
636 |
msgstr "Termin eingereicht."
|
637 |
|
638 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
639 |
+
#: admin/includes/admin-new.php:190
|
640 |
msgid "Preview event"
|
641 |
msgstr "Termin-Vorschau anzeigen"
|
642 |
|
643 |
+
#: admin/includes/admin-new.php:188
|
644 |
#, php-format
|
645 |
msgid "Event scheduled for: %1$s>"
|
646 |
msgstr "Termin eingeplant für: %1$s"
|
647 |
|
648 |
+
#: admin/includes/admin-new.php:190
|
649 |
msgid "Event draft updated."
|
650 |
msgstr "Termin-Entwurf aktualisiert."
|
651 |
|
652 |
+
#: admin/includes/admin-settings.php:71
|
653 |
msgid "Go to Event Category switching page"
|
654 |
msgstr "Gehe zur Wechel-Seite für die Termin-Kategorien"
|
655 |
|
656 |
+
#: admin/includes/admin-settings.php:83
|
657 |
msgid "Frontend Settings"
|
658 |
msgstr "Frontend Einstellungen"
|
659 |
|
660 |
+
#: admin/includes/admin-settings.php:84
|
661 |
msgid "Admin Page Settings"
|
662 |
msgstr "Admin-Seiten Einstellungen"
|
663 |
|
664 |
+
#: admin/includes/admin-settings.php:85
|
665 |
msgid "Feed Settings"
|
666 |
msgstr "Feed Einstellungen"
|
667 |
|
668 |
+
#: admin/includes/admin-settings.php:86
|
669 |
msgid "Category Taxonomy"
|
670 |
msgstr "Kategorie-Taxonomie"
|
671 |
|
828 |
msgid "This value defines a range from the past to the previous day."
|
829 |
msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
|
830 |
|
831 |
+
#: includes/event.php:107
|
832 |
msgid "No valid start date provided"
|
833 |
msgstr "Kein gültiges Start-Datum angegeben"
|
834 |
|
1037 |
msgstr "Wenn eine eigene Übersetzungsdatei aus dem generellen Übersetzungsverzeichnis %1$s verwendet werden soll, die bereits im Sprachverzeichnis des Plugins vorhanden ist, dann muss diese Option aktiviert werden."
|
1038 |
|
1039 |
#: includes/options_helptexts.php:56
|
1040 |
+
msgid "Events permalink slug"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
#: includes/options_helptexts.php:57
|
1044 |
msgid ""
|
1045 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: includes/options_helptexts.php:60
|
1049 |
+
msgid "Text for \"Show content\""
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: includes/options_helptexts.php:61
|
1053 |
+
msgid ""
|
1054 |
"With this option the displayed text for the link to show the event content "
|
1055 |
"can be changed, when collapsing is enabled."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:64
|
1059 |
msgid "Text for \"Hide content\""
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/options_helptexts.php:65
|
1063 |
msgid ""
|
1064 |
"With this option the displayed text for the link to hide the event content "
|
1065 |
"can be changed, when collapsing is enabled."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: includes/options_helptexts.php:68
|
1069 |
msgid "Disable CSS file"
|
1070 |
msgstr "Deaktiviere die CSS-Datei"
|
1071 |
|
1072 |
+
#: includes/options_helptexts.php:69
|
1073 |
#, php-format
|
1074 |
msgid "Disable the %1$s file."
|
1075 |
msgstr "Deaktiviere die %1$s Datei."
|
1076 |
|
1077 |
+
#: includes/options_helptexts.php:70
|
1078 |
#, php-format
|
1079 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1080 |
msgstr "Mit dieser Einstellung kann das Einbinden der Datei %1$s deaktiviert werden."
|
1081 |
|
1082 |
+
#: includes/options_helptexts.php:71
|
1083 |
msgid ""
|
1084 |
"This normally only make sense if you have css conflicts with your theme and "
|
1085 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1086 |
msgstr "Dies ist normalerweise nur bei CSS-Konflikten mit dem verwendeten Theme sinnvoll. Alle erforderlichen CSS-Stile müssen dann irgendwo anders gesetzt werden (z.B. in der CSS-Datei des Themes)."
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:75
|
1089 |
msgid "Date format in edit form"
|
1090 |
msgstr "Datumsformat im Formular"
|
1091 |
|
1092 |
+
#: includes/options_helptexts.php:76
|
1093 |
msgid ""
|
1094 |
"This option sets the displayed date format for the event date fields in the "
|
1095 |
"event new / edit form."
|
1096 |
msgstr "Diese Einstellung setzt das angezeigte Datumsformat für die Datumsfelder im Termin Erstellungs- / Änderungsformular."
|
1097 |
|
1098 |
+
#: includes/options_helptexts.php:77
|
1099 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1100 |
msgstr "Der Standardwert ist ein leerer String, um die Standard-Wordpress-Einstellung zu verwenden."
|
1101 |
|
1102 |
+
#: includes/options_helptexts.php:78
|
1103 |
#, php-format
|
1104 |
msgid ""
|
1105 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1106 |
msgstr "Alle verfügbaren Optionen zur Spezifizierung des Datumformats sind %1$shier%2$s ersichtlich."
|
1107 |
|
1108 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1109 |
msgid "Enable RSS feed"
|
1110 |
msgstr "RSS feed aktivieren"
|
1111 |
|
1112 |
+
#: includes/options_helptexts.php:83
|
1113 |
msgid "Enable support for an event RSS feed"
|
1114 |
msgstr "Support für ein Termin-RSS-Feed aktivieren"
|
1115 |
|
1116 |
+
#: includes/options_helptexts.php:84
|
1117 |
msgid "This option activates a RSS feed for the events."
|
1118 |
msgstr "Diese Einstellung aktiviert einen RSS-Feed für die Termine."
|
1119 |
|
1120 |
+
#: includes/options_helptexts.php:85
|
1121 |
msgid ""
|
1122 |
"You have to enable this option if you want to use one of the RSS feed "
|
1123 |
"features."
|
1124 |
msgstr "Diese Option muss aktiviert werden, um eine der RSS-Feed Funktionen nutzen zu können."
|
1125 |
|
1126 |
+
#: includes/options_helptexts.php:88
|
1127 |
msgid "Feed name"
|
1128 |
msgstr "Feed-Name"
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:89
|
1131 |
#, php-format
|
1132 |
msgid "This option sets the feed name. The default value is %1$s."
|
1133 |
msgstr "Diese Einstellung setzt den Feed-Namen. Der Standardwert ist %1$s."
|
1134 |
|
1135 |
+
#: includes/options_helptexts.php:90
|
1136 |
#, php-format
|
1137 |
msgid ""
|
1138 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1139 |
"enabled)."
|
1140 |
msgstr "Dieser Name wird in der Feed-URL verwendet (z.B. %1$s, oder %2$s bei Verwendung von Permalinks)"
|
1141 |
|
1142 |
+
#: includes/options_helptexts.php:93
|
1143 |
msgid "Feed Description"
|
1144 |
msgstr "Feed-Beschreibung"
|
1145 |
|
1146 |
+
#: includes/options_helptexts.php:94
|
1147 |
#, php-format
|
1148 |
msgid "This options set the feed description. The default value is %1$s."
|
1149 |
msgstr "Diese Einstellung setzt die Feed-Beschreibung. Der Standardwert ist %1$s."
|
1150 |
|
1151 |
+
#: includes/options_helptexts.php:95
|
1152 |
msgid ""
|
1153 |
"This description will be used in the title for the feed link in the html "
|
1154 |
"head and for the description in the feed itself."
|
1155 |
msgstr "Diese Beschreibung wird im HTML-Kopf für den Titel des Feed-Links verwendet und für die Beschreibung im Feed selbst."
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:98
|
1158 |
msgid "Listed events"
|
1159 |
msgstr "Anzuzeigende Termine"
|
1160 |
|
1161 |
+
#: includes/options_helptexts.php:99
|
1162 |
msgid "Only show upcoming events in feed"
|
1163 |
msgstr "Zeige nur anstehende Termine im Feed an"
|
1164 |
|
1165 |
+
#: includes/options_helptexts.php:100
|
1166 |
msgid ""
|
1167 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1168 |
msgstr "Wenn diese Option aktiviert ist, werden nur die anstehenden Termine im Feed angezeigt."
|
1169 |
|
1170 |
+
#: includes/options_helptexts.php:101
|
1171 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1172 |
msgstr "Ist die Einstellung deaktiviert, sind alle Termine (anstehende und beendete) im Feed vorhanden."
|
1173 |
|
1174 |
+
#: includes/options_helptexts.php:104
|
1175 |
msgid "Add RSS feed link in head"
|
1176 |
msgstr "Füge einen RSS-Link in der Kopfzeile hinzu"
|
1177 |
|
1178 |
+
#: includes/options_helptexts.php:105
|
1179 |
msgid "Add RSS feed link in the html head"
|
1180 |
msgstr "Füge einen RSS-Feed-Link im HTML-Kopf ein"
|
1181 |
|
1182 |
+
#: includes/options_helptexts.php:106
|
1183 |
msgid "This option adds a RSS feed in the html head for the events."
|
1184 |
msgstr "Diese Einstellung fügt einen RSS-Feed für die Termine in den HTML-Kopf ein."
|
1185 |
|
1186 |
+
#: includes/options_helptexts.php:107
|
1187 |
msgid "There are 2 alternatives to include the RSS feed"
|
1188 |
msgstr "Es gibt 2 Möglichkeiten zur Einbingung eines RSS-Feed"
|
1189 |
|
1190 |
+
#: includes/options_helptexts.php:108
|
1191 |
msgid ""
|
1192 |
"The first way is this option to include a link in the html head. This link "
|
1193 |
"will be recognized by browers or feed readers."
|
1194 |
msgstr "Die erste Variante ist diese Einstellung, mit der ein Link in den HTML-Kopfeingefügt wird. Dieser Link wird von den Browsern und Feed-Readern erkannt."
|
1195 |
|
1196 |
+
#: includes/options_helptexts.php:109
|
1197 |
#, php-format
|
1198 |
msgid ""
|
1199 |
"The second way is to include a visible feed link directly in the event list."
|
1200 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1201 |
msgstr "Die 2. Variante ist die Einbindung eines sichtbaren Feed-Links direkt in der Terminliste. Dies kann durch das Setzen des Shortcode-Attributs %1$s auf %2$s erreicht werden."
|
1202 |
|
1203 |
+
#: includes/options_helptexts.php:110
|
1204 |
#, php-format
|
1205 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1206 |
msgstr "Diese Einstellung ist nur gültig, wenn die Option %1$s aktiviert ist."
|
1207 |
|
1208 |
+
#: includes/options_helptexts.php:113
|
1209 |
msgid "Position of the RSS feed link"
|
1210 |
msgstr "Position des RSS feed Links"
|
1211 |
|
1212 |
+
#: includes/options_helptexts.php:114
|
1213 |
msgid "at the top (above the navigation bar)"
|
1214 |
msgstr "oben (über der Navigationsleiste)"
|
1215 |
|
1216 |
+
#: includes/options_helptexts.php:114
|
1217 |
msgid "between navigation bar and events"
|
1218 |
msgstr "zwischen Navigationsleiste und Terminliste"
|
1219 |
|
1220 |
+
#: includes/options_helptexts.php:114
|
1221 |
msgid "at the bottom"
|
1222 |
msgstr "unterhalb der Terminliste"
|
1223 |
|
1224 |
+
#: includes/options_helptexts.php:115
|
1225 |
msgid ""
|
1226 |
"This option specifies the position of the RSS feed link in the event list."
|
1227 |
msgstr "Diese Einstellung definiert die Position des RSS-Feed-Links in der Terminliste."
|
1228 |
|
1229 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1230 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1231 |
#, php-format
|
1232 |
msgid ""
|
1233 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1234 |
" feed link."
|
1235 |
msgstr "Das Shortcode-Attribut %1$s muss auf %2$s gesetzt werden, um die Anzeige des Feed-Links zu aktivieren."
|
1236 |
|
1237 |
+
#: includes/options_helptexts.php:119
|
1238 |
msgid "Align of the RSS feed link"
|
1239 |
msgstr "Ausrichtung des RSS-Feed-Links"
|
1240 |
|
1241 |
+
#: includes/options_helptexts.php:120
|
1242 |
msgid "left"
|
1243 |
msgstr "links"
|
1244 |
|
1245 |
+
#: includes/options_helptexts.php:120
|
1246 |
msgid "center"
|
1247 |
msgstr "mittig"
|
1248 |
|
1249 |
+
#: includes/options_helptexts.php:120
|
1250 |
msgid "right"
|
1251 |
msgstr "rechts"
|
1252 |
|
1253 |
+
#: includes/options_helptexts.php:121
|
1254 |
msgid ""
|
1255 |
"This option specifies the align of the RSS feed link in the event list."
|
1256 |
msgstr "Diese Einstellung definiert die Ausrichtung des RSS-Feed-Links in der Terminliste."
|
1257 |
|
1258 |
+
#: includes/options_helptexts.php:125
|
1259 |
msgid "Feed link text"
|
1260 |
msgstr "Feed Link Text"
|
1261 |
|
1262 |
+
#: includes/options_helptexts.php:126
|
1263 |
msgid ""
|
1264 |
"This option specifies the caption of the RSS feed link in the event list."
|
1265 |
msgstr "Diese Einstellung definiert die Beschriftung des RSS-Feed-Links in der Terminliste."
|
1266 |
|
1267 |
+
#: includes/options_helptexts.php:127
|
1268 |
msgid ""
|
1269 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1270 |
"image."
|
1271 |
msgstr "Wir der Text leer gelassen, dann wird nur das RSS-Bild angezeigt."
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:131
|
1274 |
msgid "Feed link image"
|
1275 |
msgstr "Bild für den Feed-Link"
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:132
|
1278 |
msgid "Show rss image in feed link"
|
1279 |
msgstr "Zeige das RSS-Bild im Feed-Link an"
|
1280 |
|
1281 |
+
#: includes/options_helptexts.php:133
|
1282 |
msgid ""
|
1283 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1284 |
" front of the text."
|
1285 |
msgstr "Diese Einstellung definiert ein Bild, das im Feed-Link links von der Beschriftung angezeigt wird."
|
1286 |
|
1287 |
+
#: includes/options_helptexts.php:139
|
1288 |
msgid "Event Category handling"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: includes/options_helptexts.php:140
|
1292 |
msgid "Use Post Categories"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: includes/options_helptexts.php:141
|
1296 |
msgid ""
|
1297 |
"Do not maintain seperate categories for the events, and use the existing "
|
1298 |
"post categories instead."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:142
|
1302 |
msgid "Attention"
|
1303 |
msgstr "Achtung"
|
1304 |
|
1305 |
+
#: includes/options_helptexts.php:143
|
1306 |
msgid ""
|
1307 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1308 |
" switching page from here."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
#: includes/options.php:40
|
1312 |
+
msgid "events"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
#: includes/options.php:41
|
1316 |
+
msgid "Show content"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: includes/options.php:42
|
1320 |
msgid "Hide content"
|
1321 |
msgstr ""
|
1322 |
|
languages/event-list-es_AR.po
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
-
"POT-Creation-Date: 2018-
|
12 |
-
"PO-Revision-Date: 2018-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -32,7 +32,7 @@ msgstr ""
|
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Configuraciones del Listado de Eventos"
|
38 |
|
@@ -55,7 +55,7 @@ msgid_plural "%s Events"
|
|
55 |
msgstr[0] ""
|
56 |
msgstr[1] ""
|
57 |
|
58 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
59 |
msgid "General"
|
60 |
msgstr ""
|
61 |
|
@@ -430,80 +430,72 @@ msgstr ""
|
|
430 |
msgid "none"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin/includes/admin-import.php:
|
434 |
msgid "Import Events"
|
435 |
msgstr "Importar Eventos"
|
436 |
|
437 |
-
#: admin/includes/admin-import.php:
|
438 |
msgid "Step"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
msgid "Set import file and options"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin/includes/admin-import.php:
|
446 |
#, php-format
|
447 |
msgid "Proceed with Step %1$s"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin/includes/admin-import.php:
|
451 |
msgid "Example file"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin/includes/admin-import.php:
|
455 |
#, php-format
|
456 |
msgid ""
|
457 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: admin/includes/admin-import.php:
|
461 |
msgid "Note"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: admin/includes/admin-import.php:
|
465 |
msgid ""
|
466 |
"Do not change the column header and separator line (first two lines), "
|
467 |
"otherwise the import will fail!"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
-
#: admin/includes/admin-import.php:
|
472 |
msgid "Sorry, there has been an error."
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
msgid "The file does not exist, please try again."
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid "The file is not a CSV file."
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: admin/includes/admin-import.php:
|
484 |
msgid "Events review and additonal category selection"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/includes/admin-import.php:
|
488 |
msgid ""
|
489 |
"Warning: The following category slugs are not available and will be removed "
|
490 |
"from the imported events:"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/includes/admin-import.php:
|
494 |
msgid ""
|
495 |
"If you want to keep these categories, please create these Categories first "
|
496 |
"and do the import afterwards."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:156
|
500 |
-
msgid "Import with errors!"
|
501 |
-
msgstr ""
|
502 |
-
|
503 |
-
#: admin/includes/admin-import.php:157
|
504 |
-
msgid "Sorry, an error occurred during import!"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
#: admin/includes/admin-import.php:161
|
508 |
msgid "Import successful!"
|
509 |
msgstr ""
|
@@ -512,54 +504,64 @@ msgstr ""
|
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
516 |
#: includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Título"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:
|
521 |
msgid "Start Date"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
530 |
msgid "Time"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
-
#: admin/includes/admin-new.php:
|
535 |
#: includes/options_helptexts.php:46
|
536 |
msgid "Location"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: admin/includes/admin-import.php:
|
540 |
msgid "Content"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/includes/admin-import.php:
|
544 |
msgid "Category slugs"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin/includes/admin-import.php:
|
548 |
#, php-format
|
549 |
msgid ""
|
550 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
551 |
"missing or not correct!"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/includes/admin-import.php:
|
555 |
msgid "Import events"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: admin/includes/admin-import.php:
|
559 |
msgid "Add additional categories"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: admin/includes/admin-import.php:
|
563 |
msgid "Import"
|
564 |
msgstr "Importar"
|
565 |
|
@@ -584,82 +586,82 @@ msgstr ""
|
|
584 |
msgid "Event data"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: admin/includes/admin-new.php:
|
588 |
msgid "Add Copy"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: admin/includes/admin-new.php:
|
592 |
msgid "Date"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: admin/includes/admin-new.php:
|
596 |
msgid "required"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: admin/includes/admin-new.php:
|
600 |
msgid "Multi-Day Event"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: admin/includes/admin-new.php:
|
604 |
msgid "Event Title"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: admin/includes/admin-new.php:
|
608 |
msgid "Event Content"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: admin/includes/admin-new.php:
|
612 |
msgid "Event updated."
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: admin/includes/admin-new.php:
|
616 |
msgid "View event"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: admin/includes/admin-new.php:
|
620 |
#, php-format
|
621 |
msgid "Event restored to revision from %1$s"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/includes/admin-new.php:
|
625 |
msgid "Event published."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: admin/includes/admin-new.php:
|
629 |
msgid "Event submitted."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/includes/admin-new.php:
|
633 |
-
#: admin/includes/admin-new.php:
|
634 |
msgid "Preview event"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: admin/includes/admin-new.php:
|
638 |
#, php-format
|
639 |
msgid "Event scheduled for: %1$s>"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: admin/includes/admin-new.php:
|
643 |
msgid "Event draft updated."
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: admin/includes/admin-settings.php:
|
647 |
msgid "Go to Event Category switching page"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: admin/includes/admin-settings.php:
|
651 |
msgid "Frontend Settings"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: admin/includes/admin-settings.php:
|
655 |
msgid "Admin Page Settings"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: admin/includes/admin-settings.php:
|
659 |
msgid "Feed Settings"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: admin/includes/admin-settings.php:
|
663 |
msgid "Category Taxonomy"
|
664 |
msgstr ""
|
665 |
|
@@ -822,7 +824,7 @@ msgstr "Pasado"
|
|
822 |
msgid "This value defines a range from the past to the previous day."
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/event.php:
|
826 |
msgid "No valid start date provided"
|
827 |
msgstr ""
|
828 |
|
@@ -1031,273 +1033,286 @@ msgid ""
|
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: includes/options_helptexts.php:56
|
1034 |
-
msgid "
|
1035 |
msgstr ""
|
1036 |
|
1037 |
#: includes/options_helptexts.php:57
|
1038 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1039 |
"With this option the displayed text for the link to show the event content "
|
1040 |
"can be changed, when collapsing is enabled."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/options_helptexts.php:
|
1044 |
msgid "Text for \"Hide content\""
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: includes/options_helptexts.php:
|
1048 |
msgid ""
|
1049 |
"With this option the displayed text for the link to hide the event content "
|
1050 |
"can be changed, when collapsing is enabled."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/options_helptexts.php:
|
1054 |
msgid "Disable CSS file"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: includes/options_helptexts.php:
|
1058 |
#, php-format
|
1059 |
msgid "Disable the %1$s file."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/options_helptexts.php:
|
1063 |
#, php-format
|
1064 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: includes/options_helptexts.php:
|
1068 |
msgid ""
|
1069 |
"This normally only make sense if you have css conflicts with your theme and "
|
1070 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/options_helptexts.php:
|
1074 |
msgid "Date format in edit form"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: includes/options_helptexts.php:
|
1078 |
msgid ""
|
1079 |
"This option sets the displayed date format for the event date fields in the "
|
1080 |
"event new / edit form."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/options_helptexts.php:
|
1084 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: includes/options_helptexts.php:
|
1088 |
#, php-format
|
1089 |
msgid ""
|
1090 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: includes/options_helptexts.php:
|
1094 |
msgid "Enable RSS feed"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: includes/options_helptexts.php:
|
1098 |
msgid "Enable support for an event RSS feed"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: includes/options_helptexts.php:
|
1102 |
msgid "This option activates a RSS feed for the events."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: includes/options_helptexts.php:
|
1106 |
msgid ""
|
1107 |
"You have to enable this option if you want to use one of the RSS feed "
|
1108 |
"features."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/options_helptexts.php:
|
1112 |
msgid "Feed name"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: includes/options_helptexts.php:
|
1116 |
#, php-format
|
1117 |
msgid "This option sets the feed name. The default value is %1$s."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: includes/options_helptexts.php:
|
1121 |
#, php-format
|
1122 |
msgid ""
|
1123 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1124 |
"enabled)."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/options_helptexts.php:
|
1128 |
msgid "Feed Description"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: includes/options_helptexts.php:
|
1132 |
#, php-format
|
1133 |
msgid "This options set the feed description. The default value is %1$s."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/options_helptexts.php:
|
1137 |
msgid ""
|
1138 |
"This description will be used in the title for the feed link in the html "
|
1139 |
"head and for the description in the feed itself."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: includes/options_helptexts.php:
|
1143 |
msgid "Listed events"
|
1144 |
msgstr "Eventos Listados"
|
1145 |
|
1146 |
-
#: includes/options_helptexts.php:
|
1147 |
msgid "Only show upcoming events in feed"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: includes/options_helptexts.php:
|
1151 |
msgid ""
|
1152 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: includes/options_helptexts.php:
|
1156 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/options_helptexts.php:
|
1160 |
msgid "Add RSS feed link in head"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: includes/options_helptexts.php:
|
1164 |
msgid "Add RSS feed link in the html head"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: includes/options_helptexts.php:
|
1168 |
msgid "This option adds a RSS feed in the html head for the events."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: includes/options_helptexts.php:
|
1172 |
msgid "There are 2 alternatives to include the RSS feed"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: includes/options_helptexts.php:
|
1176 |
msgid ""
|
1177 |
"The first way is this option to include a link in the html head. This link "
|
1178 |
"will be recognized by browers or feed readers."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: includes/options_helptexts.php:
|
1182 |
#, php-format
|
1183 |
msgid ""
|
1184 |
"The second way is to include a visible feed link directly in the event list."
|
1185 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: includes/options_helptexts.php:
|
1189 |
#, php-format
|
1190 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: includes/options_helptexts.php:
|
1194 |
msgid "Position of the RSS feed link"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: includes/options_helptexts.php:
|
1198 |
msgid "at the top (above the navigation bar)"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: includes/options_helptexts.php:
|
1202 |
msgid "between navigation bar and events"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: includes/options_helptexts.php:
|
1206 |
msgid "at the bottom"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: includes/options_helptexts.php:
|
1210 |
msgid ""
|
1211 |
"This option specifies the position of the RSS feed link in the event list."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
-
#: includes/options_helptexts.php:
|
1216 |
#, php-format
|
1217 |
msgid ""
|
1218 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1219 |
" feed link."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: includes/options_helptexts.php:
|
1223 |
msgid "Align of the RSS feed link"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: includes/options_helptexts.php:
|
1227 |
msgid "left"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: includes/options_helptexts.php:
|
1231 |
msgid "center"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: includes/options_helptexts.php:
|
1235 |
msgid "right"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/options_helptexts.php:
|
1239 |
msgid ""
|
1240 |
"This option specifies the align of the RSS feed link in the event list."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: includes/options_helptexts.php:
|
1244 |
msgid "Feed link text"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: includes/options_helptexts.php:
|
1248 |
msgid ""
|
1249 |
"This option specifies the caption of the RSS feed link in the event list."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/options_helptexts.php:
|
1253 |
msgid ""
|
1254 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1255 |
"image."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: includes/options_helptexts.php:
|
1259 |
msgid "Feed link image"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/options_helptexts.php:
|
1263 |
msgid "Show rss image in feed link"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: includes/options_helptexts.php:
|
1267 |
msgid ""
|
1268 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1269 |
" front of the text."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: includes/options_helptexts.php:
|
1273 |
msgid "Event Category handling"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options_helptexts.php:
|
1277 |
msgid "Use Post Categories"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options_helptexts.php:
|
1281 |
msgid ""
|
1282 |
"Do not maintain seperate categories for the events, and use the existing "
|
1283 |
"post categories instead."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/options_helptexts.php:
|
1287 |
msgid "Attention"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/options_helptexts.php:
|
1291 |
msgid ""
|
1292 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1293 |
" switching page from here."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
#: includes/options.php:40
|
1297 |
-
msgid "
|
1298 |
msgstr ""
|
1299 |
|
1300 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1301 |
msgid "Hide content"
|
1302 |
msgstr ""
|
1303 |
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
12 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Configuraciones del Listado de Eventos"
|
38 |
|
55 |
msgstr[0] ""
|
56 |
msgstr[1] ""
|
57 |
|
58 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
59 |
msgid "General"
|
60 |
msgstr ""
|
61 |
|
430 |
msgid "none"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:50
|
434 |
msgid "Import Events"
|
435 |
msgstr "Importar Eventos"
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
438 |
msgid "Step"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:70
|
442 |
msgid "Set import file and options"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: admin/includes/admin-import.php:73
|
446 |
#, php-format
|
447 |
msgid "Proceed with Step %1$s"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin/includes/admin-import.php:76
|
451 |
msgid "Example file"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin/includes/admin-import.php:77
|
455 |
#, php-format
|
456 |
msgid ""
|
457 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin/includes/admin-import.php:78
|
461 |
msgid "Note"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: admin/includes/admin-import.php:78
|
465 |
msgid ""
|
466 |
"Do not change the column header and separator line (first two lines), "
|
467 |
"otherwise the import will fail!"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
471 |
+
#: admin/includes/admin-import.php:106
|
472 |
msgid "Sorry, there has been an error."
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:86
|
476 |
msgid "The file does not exist, please try again."
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:94
|
480 |
msgid "The file is not a CSV file."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:123
|
484 |
msgid "Events review and additonal category selection"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/includes/admin-import.php:126
|
488 |
msgid ""
|
489 |
"Warning: The following category slugs are not available and will be removed "
|
490 |
"from the imported events:"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: admin/includes/admin-import.php:132
|
494 |
msgid ""
|
495 |
"If you want to keep these categories, please create these Categories first "
|
496 |
"and do the import afterwards."
|
497 |
msgstr ""
|
498 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
#: admin/includes/admin-import.php:161
|
500 |
msgid "Import successful!"
|
501 |
msgstr ""
|
504 |
msgid "Go back to All Events"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:166
|
508 |
+
msgid "Import with errors!"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: admin/includes/admin-import.php:167
|
512 |
+
#, php-format
|
513 |
+
msgid ""
|
514 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
518 |
#: includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr "Título"
|
521 |
|
522 |
+
#: admin/includes/admin-import.php:175
|
523 |
msgid "Start Date"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:176
|
527 |
msgid "End Date"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
531 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
532 |
msgid "Time"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
536 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
537 |
#: includes/options_helptexts.php:46
|
538 |
msgid "Location"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: admin/includes/admin-import.php:179
|
542 |
msgid "Content"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin/includes/admin-import.php:180
|
546 |
msgid "Category slugs"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: admin/includes/admin-import.php:219
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
553 |
"missing or not correct!"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/includes/admin-import.php:251
|
557 |
msgid "Import events"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/includes/admin-import.php:252
|
561 |
msgid "Add additional categories"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
565 |
msgid "Import"
|
566 |
msgstr "Importar"
|
567 |
|
586 |
msgid "Event data"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: admin/includes/admin-new.php:80
|
590 |
msgid "Add Copy"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/includes/admin-new.php:84
|
594 |
msgid "Date"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: admin/includes/admin-new.php:84
|
598 |
msgid "required"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: admin/includes/admin-new.php:87
|
602 |
msgid "Multi-Day Event"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: admin/includes/admin-new.php:106
|
606 |
msgid "Event Title"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: admin/includes/admin-new.php:121
|
610 |
msgid "Event Content"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
614 |
msgid "Event updated."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
618 |
msgid "View event"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: admin/includes/admin-new.php:184
|
622 |
#, php-format
|
623 |
msgid "Event restored to revision from %1$s"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: admin/includes/admin-new.php:185
|
627 |
msgid "Event published."
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: admin/includes/admin-new.php:187
|
631 |
msgid "Event submitted."
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
635 |
+
#: admin/includes/admin-new.php:190
|
636 |
msgid "Preview event"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/includes/admin-new.php:188
|
640 |
#, php-format
|
641 |
msgid "Event scheduled for: %1$s>"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: admin/includes/admin-new.php:190
|
645 |
msgid "Event draft updated."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: admin/includes/admin-settings.php:71
|
649 |
msgid "Go to Event Category switching page"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: admin/includes/admin-settings.php:83
|
653 |
msgid "Frontend Settings"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: admin/includes/admin-settings.php:84
|
657 |
msgid "Admin Page Settings"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: admin/includes/admin-settings.php:85
|
661 |
msgid "Feed Settings"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: admin/includes/admin-settings.php:86
|
665 |
msgid "Category Taxonomy"
|
666 |
msgstr ""
|
667 |
|
824 |
msgid "This value defines a range from the past to the previous day."
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: includes/event.php:107
|
828 |
msgid "No valid start date provided"
|
829 |
msgstr ""
|
830 |
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: includes/options_helptexts.php:56
|
1036 |
+
msgid "Events permalink slug"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
#: includes/options_helptexts.php:57
|
1040 |
msgid ""
|
1041 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: includes/options_helptexts.php:60
|
1045 |
+
msgid "Text for \"Show content\""
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: includes/options_helptexts.php:61
|
1049 |
+
msgid ""
|
1050 |
"With this option the displayed text for the link to show the event content "
|
1051 |
"can be changed, when collapsing is enabled."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:64
|
1055 |
msgid "Text for \"Hide content\""
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:65
|
1059 |
msgid ""
|
1060 |
"With this option the displayed text for the link to hide the event content "
|
1061 |
"can be changed, when collapsing is enabled."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: includes/options_helptexts.php:68
|
1065 |
msgid "Disable CSS file"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: includes/options_helptexts.php:69
|
1069 |
#, php-format
|
1070 |
msgid "Disable the %1$s file."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: includes/options_helptexts.php:70
|
1074 |
#, php-format
|
1075 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:71
|
1079 |
msgid ""
|
1080 |
"This normally only make sense if you have css conflicts with your theme and "
|
1081 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: includes/options_helptexts.php:75
|
1085 |
msgid "Date format in edit form"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:76
|
1089 |
msgid ""
|
1090 |
"This option sets the displayed date format for the event date fields in the "
|
1091 |
"event new / edit form."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/options_helptexts.php:77
|
1095 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: includes/options_helptexts.php:78
|
1099 |
#, php-format
|
1100 |
msgid ""
|
1101 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1105 |
msgid "Enable RSS feed"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: includes/options_helptexts.php:83
|
1109 |
msgid "Enable support for an event RSS feed"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/options_helptexts.php:84
|
1113 |
msgid "This option activates a RSS feed for the events."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/options_helptexts.php:85
|
1117 |
msgid ""
|
1118 |
"You have to enable this option if you want to use one of the RSS feed "
|
1119 |
"features."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: includes/options_helptexts.php:88
|
1123 |
msgid "Feed name"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/options_helptexts.php:89
|
1127 |
#, php-format
|
1128 |
msgid "This option sets the feed name. The default value is %1$s."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: includes/options_helptexts.php:90
|
1132 |
#, php-format
|
1133 |
msgid ""
|
1134 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1135 |
"enabled)."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/options_helptexts.php:93
|
1139 |
msgid "Feed Description"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: includes/options_helptexts.php:94
|
1143 |
#, php-format
|
1144 |
msgid "This options set the feed description. The default value is %1$s."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/options_helptexts.php:95
|
1148 |
msgid ""
|
1149 |
"This description will be used in the title for the feed link in the html "
|
1150 |
"head and for the description in the feed itself."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: includes/options_helptexts.php:98
|
1154 |
msgid "Listed events"
|
1155 |
msgstr "Eventos Listados"
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:99
|
1158 |
msgid "Only show upcoming events in feed"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: includes/options_helptexts.php:100
|
1162 |
msgid ""
|
1163 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:101
|
1167 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: includes/options_helptexts.php:104
|
1171 |
msgid "Add RSS feed link in head"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: includes/options_helptexts.php:105
|
1175 |
msgid "Add RSS feed link in the html head"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/options_helptexts.php:106
|
1179 |
msgid "This option adds a RSS feed in the html head for the events."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/options_helptexts.php:107
|
1183 |
msgid "There are 2 alternatives to include the RSS feed"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/options_helptexts.php:108
|
1187 |
msgid ""
|
1188 |
"The first way is this option to include a link in the html head. This link "
|
1189 |
"will be recognized by browers or feed readers."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/options_helptexts.php:109
|
1193 |
#, php-format
|
1194 |
msgid ""
|
1195 |
"The second way is to include a visible feed link directly in the event list."
|
1196 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/options_helptexts.php:110
|
1200 |
#, php-format
|
1201 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: includes/options_helptexts.php:113
|
1205 |
msgid "Position of the RSS feed link"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: includes/options_helptexts.php:114
|
1209 |
msgid "at the top (above the navigation bar)"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: includes/options_helptexts.php:114
|
1213 |
msgid "between navigation bar and events"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: includes/options_helptexts.php:114
|
1217 |
msgid "at the bottom"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: includes/options_helptexts.php:115
|
1221 |
msgid ""
|
1222 |
"This option specifies the position of the RSS feed link in the event list."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1226 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1227 |
#, php-format
|
1228 |
msgid ""
|
1229 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1230 |
" feed link."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/options_helptexts.php:119
|
1234 |
msgid "Align of the RSS feed link"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: includes/options_helptexts.php:120
|
1238 |
msgid "left"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: includes/options_helptexts.php:120
|
1242 |
msgid "center"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: includes/options_helptexts.php:120
|
1246 |
msgid "right"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: includes/options_helptexts.php:121
|
1250 |
msgid ""
|
1251 |
"This option specifies the align of the RSS feed link in the event list."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/options_helptexts.php:125
|
1255 |
msgid "Feed link text"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/options_helptexts.php:126
|
1259 |
msgid ""
|
1260 |
"This option specifies the caption of the RSS feed link in the event list."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options_helptexts.php:127
|
1264 |
msgid ""
|
1265 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1266 |
"image."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options_helptexts.php:131
|
1270 |
msgid "Feed link image"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:132
|
1274 |
msgid "Show rss image in feed link"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:133
|
1278 |
msgid ""
|
1279 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1280 |
" front of the text."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/options_helptexts.php:139
|
1284 |
msgid "Event Category handling"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: includes/options_helptexts.php:140
|
1288 |
msgid "Use Post Categories"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: includes/options_helptexts.php:141
|
1292 |
msgid ""
|
1293 |
"Do not maintain seperate categories for the events, and use the existing "
|
1294 |
"post categories instead."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options_helptexts.php:142
|
1298 |
msgid "Attention"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:143
|
1302 |
msgid ""
|
1303 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1304 |
" switching page from here."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: includes/options.php:40
|
1308 |
+
msgid "events"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
#: includes/options.php:41
|
1312 |
+
msgid "Show content"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: includes/options.php:42
|
1316 |
msgid "Hide content"
|
1317 |
msgstr ""
|
1318 |
|
languages/event-list-es_ES.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: wp-event-list\n"
|
9 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
10 |
-
"POT-Creation-Date: 2018-
|
11 |
-
"PO-Revision-Date: 2018-
|
12 |
"Last-Translator: mibuthu\n"
|
13 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -31,7 +31,7 @@ msgstr ""
|
|
31 |
msgid "no additional information available"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
35 |
msgid "Event List Settings"
|
36 |
msgstr "Ajustes de eventos"
|
37 |
|
@@ -54,7 +54,7 @@ msgid_plural "%s Events"
|
|
54 |
msgstr[0] ""
|
55 |
msgstr[1] ""
|
56 |
|
57 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
58 |
msgid "General"
|
59 |
msgstr "General"
|
60 |
|
@@ -429,80 +429,72 @@ msgstr ""
|
|
429 |
msgid "none"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/includes/admin-import.php:
|
433 |
msgid "Import Events"
|
434 |
msgstr "Importar Eventos"
|
435 |
|
436 |
-
#: admin/includes/admin-import.php:
|
437 |
msgid "Step"
|
438 |
msgstr "Paso"
|
439 |
|
440 |
-
#: admin/includes/admin-import.php:
|
441 |
msgid "Set import file and options"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin/includes/admin-import.php:
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin/includes/admin-import.php:
|
450 |
msgid "Example file"
|
451 |
msgstr "Archivo de ejemplo"
|
452 |
|
453 |
-
#: admin/includes/admin-import.php:
|
454 |
#, php-format
|
455 |
msgid ""
|
456 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin/includes/admin-import.php:
|
460 |
msgid "Note"
|
461 |
msgstr "Nota"
|
462 |
|
463 |
-
#: admin/includes/admin-import.php:
|
464 |
msgid ""
|
465 |
"Do not change the column header and separator line (first two lines), "
|
466 |
"otherwise the import will fail!"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: admin/includes/admin-import.php:
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
msgid "Sorry, there has been an error."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/includes/admin-import.php:
|
475 |
msgid "The file does not exist, please try again."
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/includes/admin-import.php:
|
479 |
msgid "The file is not a CSV file."
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: admin/includes/admin-import.php:
|
483 |
msgid "Events review and additonal category selection"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: admin/includes/admin-import.php:
|
487 |
msgid ""
|
488 |
"Warning: The following category slugs are not available and will be removed "
|
489 |
"from the imported events:"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: admin/includes/admin-import.php:
|
493 |
msgid ""
|
494 |
"If you want to keep these categories, please create these Categories first "
|
495 |
"and do the import afterwards."
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: admin/includes/admin-import.php:156
|
499 |
-
msgid "Import with errors!"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: admin/includes/admin-import.php:157
|
503 |
-
msgid "Sorry, an error occurred during import!"
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
#: admin/includes/admin-import.php:161
|
507 |
msgid "Import successful!"
|
508 |
msgstr ""
|
@@ -511,54 +503,64 @@ msgstr ""
|
|
511 |
msgid "Go back to All Events"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
515 |
#: includes/widget_helptexts.php:8
|
516 |
msgid "Title"
|
517 |
msgstr "Título"
|
518 |
|
519 |
-
#: admin/includes/admin-import.php:
|
520 |
msgid "Start Date"
|
521 |
msgstr "Fecha Inicio"
|
522 |
|
523 |
-
#: admin/includes/admin-import.php:
|
524 |
msgid "End Date"
|
525 |
msgstr "Fecha Final"
|
526 |
|
527 |
-
#: admin/includes/admin-import.php:
|
528 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
529 |
msgid "Time"
|
530 |
msgstr "Hora"
|
531 |
|
532 |
-
#: admin/includes/admin-import.php:
|
533 |
-
#: admin/includes/admin-new.php:
|
534 |
#: includes/options_helptexts.php:46
|
535 |
msgid "Location"
|
536 |
msgstr "Ubicación"
|
537 |
|
538 |
-
#: admin/includes/admin-import.php:
|
539 |
msgid "Content"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: admin/includes/admin-import.php:
|
543 |
msgid "Category slugs"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: admin/includes/admin-import.php:
|
547 |
#, php-format
|
548 |
msgid ""
|
549 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
550 |
"missing or not correct!"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: admin/includes/admin-import.php:
|
554 |
msgid "Import events"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: admin/includes/admin-import.php:
|
558 |
msgid "Add additional categories"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: admin/includes/admin-import.php:
|
562 |
msgid "Import"
|
563 |
msgstr "Importar"
|
564 |
|
@@ -583,82 +585,82 @@ msgstr ""
|
|
583 |
msgid "Event data"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: admin/includes/admin-new.php:
|
587 |
msgid "Add Copy"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: admin/includes/admin-new.php:
|
591 |
msgid "Date"
|
592 |
msgstr "Fecha"
|
593 |
|
594 |
-
#: admin/includes/admin-new.php:
|
595 |
msgid "required"
|
596 |
msgstr "obligatorio"
|
597 |
|
598 |
-
#: admin/includes/admin-new.php:
|
599 |
msgid "Multi-Day Event"
|
600 |
msgstr "Evento de varios días"
|
601 |
|
602 |
-
#: admin/includes/admin-new.php:
|
603 |
msgid "Event Title"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: admin/includes/admin-new.php:
|
607 |
msgid "Event Content"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: admin/includes/admin-new.php:
|
611 |
msgid "Event updated."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: admin/includes/admin-new.php:
|
615 |
msgid "View event"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: admin/includes/admin-new.php:
|
619 |
#, php-format
|
620 |
msgid "Event restored to revision from %1$s"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: admin/includes/admin-new.php:
|
624 |
msgid "Event published."
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: admin/includes/admin-new.php:
|
628 |
msgid "Event submitted."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: admin/includes/admin-new.php:
|
632 |
-
#: admin/includes/admin-new.php:
|
633 |
msgid "Preview event"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: admin/includes/admin-new.php:
|
637 |
#, php-format
|
638 |
msgid "Event scheduled for: %1$s>"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: admin/includes/admin-new.php:
|
642 |
msgid "Event draft updated."
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: admin/includes/admin-settings.php:
|
646 |
msgid "Go to Event Category switching page"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: admin/includes/admin-settings.php:
|
650 |
msgid "Frontend Settings"
|
651 |
msgstr "Configuración de interfaz"
|
652 |
|
653 |
-
#: admin/includes/admin-settings.php:
|
654 |
msgid "Admin Page Settings"
|
655 |
msgstr "Configuración de página de administrador"
|
656 |
|
657 |
-
#: admin/includes/admin-settings.php:
|
658 |
msgid "Feed Settings"
|
659 |
msgstr "Configuración Conectores"
|
660 |
|
661 |
-
#: admin/includes/admin-settings.php:
|
662 |
msgid "Category Taxonomy"
|
663 |
msgstr ""
|
664 |
|
@@ -821,7 +823,7 @@ msgstr "Pasado"
|
|
821 |
msgid "This value defines a range from the past to the previous day."
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: includes/event.php:
|
825 |
msgid "No valid start date provided"
|
826 |
msgstr ""
|
827 |
|
@@ -1030,273 +1032,286 @@ msgid ""
|
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: includes/options_helptexts.php:56
|
1033 |
-
msgid "
|
1034 |
msgstr ""
|
1035 |
|
1036 |
#: includes/options_helptexts.php:57
|
1037 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1038 |
"With this option the displayed text for the link to show the event content "
|
1039 |
"can be changed, when collapsing is enabled."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/options_helptexts.php:
|
1043 |
msgid "Text for \"Hide content\""
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/options_helptexts.php:
|
1047 |
msgid ""
|
1048 |
"With this option the displayed text for the link to hide the event content "
|
1049 |
"can be changed, when collapsing is enabled."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: includes/options_helptexts.php:
|
1053 |
msgid "Disable CSS file"
|
1054 |
msgstr "Deshabitar CSS"
|
1055 |
|
1056 |
-
#: includes/options_helptexts.php:
|
1057 |
#, php-format
|
1058 |
msgid "Disable the %1$s file."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: includes/options_helptexts.php:
|
1062 |
#, php-format
|
1063 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: includes/options_helptexts.php:
|
1067 |
msgid ""
|
1068 |
"This normally only make sense if you have css conflicts with your theme and "
|
1069 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: includes/options_helptexts.php:
|
1073 |
msgid "Date format in edit form"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: includes/options_helptexts.php:
|
1077 |
msgid ""
|
1078 |
"This option sets the displayed date format for the event date fields in the "
|
1079 |
"event new / edit form."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: includes/options_helptexts.php:
|
1083 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
#, php-format
|
1088 |
msgid ""
|
1089 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: includes/options_helptexts.php:
|
1093 |
msgid "Enable RSS feed"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/options_helptexts.php:
|
1097 |
msgid "Enable support for an event RSS feed"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/options_helptexts.php:
|
1101 |
msgid "This option activates a RSS feed for the events."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: includes/options_helptexts.php:
|
1105 |
msgid ""
|
1106 |
"You have to enable this option if you want to use one of the RSS feed "
|
1107 |
"features."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: includes/options_helptexts.php:
|
1111 |
msgid "Feed name"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/options_helptexts.php:
|
1115 |
#, php-format
|
1116 |
msgid "This option sets the feed name. The default value is %1$s."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: includes/options_helptexts.php:
|
1120 |
#, php-format
|
1121 |
msgid ""
|
1122 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1123 |
"enabled)."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: includes/options_helptexts.php:
|
1127 |
msgid "Feed Description"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: includes/options_helptexts.php:
|
1131 |
#, php-format
|
1132 |
msgid "This options set the feed description. The default value is %1$s."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: includes/options_helptexts.php:
|
1136 |
msgid ""
|
1137 |
"This description will be used in the title for the feed link in the html "
|
1138 |
"head and for the description in the feed itself."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: includes/options_helptexts.php:
|
1142 |
msgid "Listed events"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/options_helptexts.php:
|
1146 |
msgid "Only show upcoming events in feed"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/options_helptexts.php:
|
1150 |
msgid ""
|
1151 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: includes/options_helptexts.php:
|
1155 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: includes/options_helptexts.php:
|
1159 |
msgid "Add RSS feed link in head"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options_helptexts.php:
|
1163 |
msgid "Add RSS feed link in the html head"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: includes/options_helptexts.php:
|
1167 |
msgid "This option adds a RSS feed in the html head for the events."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: includes/options_helptexts.php:
|
1171 |
msgid "There are 2 alternatives to include the RSS feed"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/options_helptexts.php:
|
1175 |
msgid ""
|
1176 |
"The first way is this option to include a link in the html head. This link "
|
1177 |
"will be recognized by browers or feed readers."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/options_helptexts.php:
|
1181 |
#, php-format
|
1182 |
msgid ""
|
1183 |
"The second way is to include a visible feed link directly in the event list."
|
1184 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/options_helptexts.php:
|
1188 |
#, php-format
|
1189 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: includes/options_helptexts.php:
|
1193 |
msgid "Position of the RSS feed link"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options_helptexts.php:
|
1197 |
msgid "at the top (above the navigation bar)"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options_helptexts.php:
|
1201 |
msgid "between navigation bar and events"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: includes/options_helptexts.php:
|
1205 |
msgid "at the bottom"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: includes/options_helptexts.php:
|
1209 |
msgid ""
|
1210 |
"This option specifies the position of the RSS feed link in the event list."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: includes/options_helptexts.php:
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
#, php-format
|
1216 |
msgid ""
|
1217 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1218 |
" feed link."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: includes/options_helptexts.php:
|
1222 |
msgid "Align of the RSS feed link"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: includes/options_helptexts.php:
|
1226 |
msgid "left"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: includes/options_helptexts.php:
|
1230 |
msgid "center"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: includes/options_helptexts.php:
|
1234 |
msgid "right"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/options_helptexts.php:
|
1238 |
msgid ""
|
1239 |
"This option specifies the align of the RSS feed link in the event list."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/options_helptexts.php:
|
1243 |
msgid "Feed link text"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/options_helptexts.php:
|
1247 |
msgid ""
|
1248 |
"This option specifies the caption of the RSS feed link in the event list."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: includes/options_helptexts.php:
|
1252 |
msgid ""
|
1253 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1254 |
"image."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: includes/options_helptexts.php:
|
1258 |
msgid "Feed link image"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options_helptexts.php:
|
1262 |
msgid "Show rss image in feed link"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options_helptexts.php:
|
1266 |
msgid ""
|
1267 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1268 |
" front of the text."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/options_helptexts.php:
|
1272 |
msgid "Event Category handling"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: includes/options_helptexts.php:
|
1276 |
msgid "Use Post Categories"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/options_helptexts.php:
|
1280 |
msgid ""
|
1281 |
"Do not maintain seperate categories for the events, and use the existing "
|
1282 |
"post categories instead."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options_helptexts.php:
|
1286 |
msgid "Attention"
|
1287 |
msgstr "Atención"
|
1288 |
|
1289 |
-
#: includes/options_helptexts.php:
|
1290 |
msgid ""
|
1291 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1292 |
" switching page from here."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
#: includes/options.php:40
|
1296 |
-
msgid "
|
1297 |
msgstr ""
|
1298 |
|
1299 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1300 |
msgid "Hide content"
|
1301 |
msgstr ""
|
1302 |
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: wp-event-list\n"
|
9 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
10 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
11 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
12 |
"Last-Translator: mibuthu\n"
|
13 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
31 |
msgid "no additional information available"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
35 |
msgid "Event List Settings"
|
36 |
msgstr "Ajustes de eventos"
|
37 |
|
54 |
msgstr[0] ""
|
55 |
msgstr[1] ""
|
56 |
|
57 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
58 |
msgid "General"
|
59 |
msgstr "General"
|
60 |
|
429 |
msgid "none"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin/includes/admin-import.php:50
|
433 |
msgid "Import Events"
|
434 |
msgstr "Importar Eventos"
|
435 |
|
436 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
437 |
msgid "Step"
|
438 |
msgstr "Paso"
|
439 |
|
440 |
+
#: admin/includes/admin-import.php:70
|
441 |
msgid "Set import file and options"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin/includes/admin-import.php:73
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/includes/admin-import.php:76
|
450 |
msgid "Example file"
|
451 |
msgstr "Archivo de ejemplo"
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:77
|
454 |
#, php-format
|
455 |
msgid ""
|
456 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: admin/includes/admin-import.php:78
|
460 |
msgid "Note"
|
461 |
msgstr "Nota"
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:78
|
464 |
msgid ""
|
465 |
"Do not change the column header and separator line (first two lines), "
|
466 |
"otherwise the import will fail!"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
470 |
+
#: admin/includes/admin-import.php:106
|
471 |
msgid "Sorry, there has been an error."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin/includes/admin-import.php:86
|
475 |
msgid "The file does not exist, please try again."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: admin/includes/admin-import.php:94
|
479 |
msgid "The file is not a CSV file."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: admin/includes/admin-import.php:123
|
483 |
msgid "Events review and additonal category selection"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: admin/includes/admin-import.php:126
|
487 |
msgid ""
|
488 |
"Warning: The following category slugs are not available and will be removed "
|
489 |
"from the imported events:"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin/includes/admin-import.php:132
|
493 |
msgid ""
|
494 |
"If you want to keep these categories, please create these Categories first "
|
495 |
"and do the import afterwards."
|
496 |
msgstr ""
|
497 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
#: admin/includes/admin-import.php:161
|
499 |
msgid "Import successful!"
|
500 |
msgstr ""
|
503 |
msgid "Go back to All Events"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: admin/includes/admin-import.php:166
|
507 |
+
msgid "Import with errors!"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: admin/includes/admin-import.php:167
|
511 |
+
#, php-format
|
512 |
+
msgid ""
|
513 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
517 |
#: includes/widget_helptexts.php:8
|
518 |
msgid "Title"
|
519 |
msgstr "Título"
|
520 |
|
521 |
+
#: admin/includes/admin-import.php:175
|
522 |
msgid "Start Date"
|
523 |
msgstr "Fecha Inicio"
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:176
|
526 |
msgid "End Date"
|
527 |
msgstr "Fecha Final"
|
528 |
|
529 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
530 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
531 |
msgid "Time"
|
532 |
msgstr "Hora"
|
533 |
|
534 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
535 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
536 |
#: includes/options_helptexts.php:46
|
537 |
msgid "Location"
|
538 |
msgstr "Ubicación"
|
539 |
|
540 |
+
#: admin/includes/admin-import.php:179
|
541 |
msgid "Content"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:180
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:219
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:251
|
556 |
msgid "Import events"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin/includes/admin-import.php:252
|
560 |
msgid "Add additional categories"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
564 |
msgid "Import"
|
565 |
msgstr "Importar"
|
566 |
|
585 |
msgid "Event data"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: admin/includes/admin-new.php:80
|
589 |
msgid "Add Copy"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: admin/includes/admin-new.php:84
|
593 |
msgid "Date"
|
594 |
msgstr "Fecha"
|
595 |
|
596 |
+
#: admin/includes/admin-new.php:84
|
597 |
msgid "required"
|
598 |
msgstr "obligatorio"
|
599 |
|
600 |
+
#: admin/includes/admin-new.php:87
|
601 |
msgid "Multi-Day Event"
|
602 |
msgstr "Evento de varios días"
|
603 |
|
604 |
+
#: admin/includes/admin-new.php:106
|
605 |
msgid "Event Title"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: admin/includes/admin-new.php:121
|
609 |
msgid "Event Content"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
613 |
msgid "Event updated."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
617 |
msgid "View event"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: admin/includes/admin-new.php:184
|
621 |
#, php-format
|
622 |
msgid "Event restored to revision from %1$s"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: admin/includes/admin-new.php:185
|
626 |
msgid "Event published."
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: admin/includes/admin-new.php:187
|
630 |
msgid "Event submitted."
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
634 |
+
#: admin/includes/admin-new.php:190
|
635 |
msgid "Preview event"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: admin/includes/admin-new.php:188
|
639 |
#, php-format
|
640 |
msgid "Event scheduled for: %1$s>"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/includes/admin-new.php:190
|
644 |
msgid "Event draft updated."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: admin/includes/admin-settings.php:71
|
648 |
msgid "Go to Event Category switching page"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/includes/admin-settings.php:83
|
652 |
msgid "Frontend Settings"
|
653 |
msgstr "Configuración de interfaz"
|
654 |
|
655 |
+
#: admin/includes/admin-settings.php:84
|
656 |
msgid "Admin Page Settings"
|
657 |
msgstr "Configuración de página de administrador"
|
658 |
|
659 |
+
#: admin/includes/admin-settings.php:85
|
660 |
msgid "Feed Settings"
|
661 |
msgstr "Configuración Conectores"
|
662 |
|
663 |
+
#: admin/includes/admin-settings.php:86
|
664 |
msgid "Category Taxonomy"
|
665 |
msgstr ""
|
666 |
|
823 |
msgid "This value defines a range from the past to the previous day."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: includes/event.php:107
|
827 |
msgid "No valid start date provided"
|
828 |
msgstr ""
|
829 |
|
1032 |
msgstr ""
|
1033 |
|
1034 |
#: includes/options_helptexts.php:56
|
1035 |
+
msgid "Events permalink slug"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/options_helptexts.php:57
|
1039 |
msgid ""
|
1040 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: includes/options_helptexts.php:60
|
1044 |
+
msgid "Text for \"Show content\""
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: includes/options_helptexts.php:61
|
1048 |
+
msgid ""
|
1049 |
"With this option the displayed text for the link to show the event content "
|
1050 |
"can be changed, when collapsing is enabled."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/options_helptexts.php:64
|
1054 |
msgid "Text for \"Hide content\""
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: includes/options_helptexts.php:65
|
1058 |
msgid ""
|
1059 |
"With this option the displayed text for the link to hide the event content "
|
1060 |
"can be changed, when collapsing is enabled."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: includes/options_helptexts.php:68
|
1064 |
msgid "Disable CSS file"
|
1065 |
msgstr "Deshabitar CSS"
|
1066 |
|
1067 |
+
#: includes/options_helptexts.php:69
|
1068 |
#, php-format
|
1069 |
msgid "Disable the %1$s file."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: includes/options_helptexts.php:70
|
1073 |
#, php-format
|
1074 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: includes/options_helptexts.php:71
|
1078 |
msgid ""
|
1079 |
"This normally only make sense if you have css conflicts with your theme and "
|
1080 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: includes/options_helptexts.php:75
|
1084 |
msgid "Date format in edit form"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: includes/options_helptexts.php:76
|
1088 |
msgid ""
|
1089 |
"This option sets the displayed date format for the event date fields in the "
|
1090 |
"event new / edit form."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: includes/options_helptexts.php:77
|
1094 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/options_helptexts.php:78
|
1098 |
#, php-format
|
1099 |
msgid ""
|
1100 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1104 |
msgid "Enable RSS feed"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:83
|
1108 |
msgid "Enable support for an event RSS feed"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:84
|
1112 |
msgid "This option activates a RSS feed for the events."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/options_helptexts.php:85
|
1116 |
msgid ""
|
1117 |
"You have to enable this option if you want to use one of the RSS feed "
|
1118 |
"features."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/options_helptexts.php:88
|
1122 |
msgid "Feed name"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: includes/options_helptexts.php:89
|
1126 |
#, php-format
|
1127 |
msgid "This option sets the feed name. The default value is %1$s."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:90
|
1131 |
#, php-format
|
1132 |
msgid ""
|
1133 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1134 |
"enabled)."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/options_helptexts.php:93
|
1138 |
msgid "Feed Description"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/options_helptexts.php:94
|
1142 |
#, php-format
|
1143 |
msgid "This options set the feed description. The default value is %1$s."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: includes/options_helptexts.php:95
|
1147 |
msgid ""
|
1148 |
"This description will be used in the title for the feed link in the html "
|
1149 |
"head and for the description in the feed itself."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: includes/options_helptexts.php:98
|
1153 |
msgid "Listed events"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: includes/options_helptexts.php:99
|
1157 |
msgid "Only show upcoming events in feed"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: includes/options_helptexts.php:100
|
1161 |
msgid ""
|
1162 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: includes/options_helptexts.php:101
|
1166 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: includes/options_helptexts.php:104
|
1170 |
msgid "Add RSS feed link in head"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: includes/options_helptexts.php:105
|
1174 |
msgid "Add RSS feed link in the html head"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:106
|
1178 |
msgid "This option adds a RSS feed in the html head for the events."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:107
|
1182 |
msgid "There are 2 alternatives to include the RSS feed"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:108
|
1186 |
msgid ""
|
1187 |
"The first way is this option to include a link in the html head. This link "
|
1188 |
"will be recognized by browers or feed readers."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options_helptexts.php:109
|
1192 |
#, php-format
|
1193 |
msgid ""
|
1194 |
"The second way is to include a visible feed link directly in the event list."
|
1195 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: includes/options_helptexts.php:110
|
1199 |
#, php-format
|
1200 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: includes/options_helptexts.php:113
|
1204 |
msgid "Position of the RSS feed link"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: includes/options_helptexts.php:114
|
1208 |
msgid "at the top (above the navigation bar)"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: includes/options_helptexts.php:114
|
1212 |
msgid "between navigation bar and events"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/options_helptexts.php:114
|
1216 |
msgid "at the bottom"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: includes/options_helptexts.php:115
|
1220 |
msgid ""
|
1221 |
"This option specifies the position of the RSS feed link in the event list."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1225 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1226 |
#, php-format
|
1227 |
msgid ""
|
1228 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1229 |
" feed link."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: includes/options_helptexts.php:119
|
1233 |
msgid "Align of the RSS feed link"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: includes/options_helptexts.php:120
|
1237 |
msgid "left"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/options_helptexts.php:120
|
1241 |
msgid "center"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/options_helptexts.php:120
|
1245 |
msgid "right"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:121
|
1249 |
msgid ""
|
1250 |
"This option specifies the align of the RSS feed link in the event list."
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: includes/options_helptexts.php:125
|
1254 |
msgid "Feed link text"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: includes/options_helptexts.php:126
|
1258 |
msgid ""
|
1259 |
"This option specifies the caption of the RSS feed link in the event list."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/options_helptexts.php:127
|
1263 |
msgid ""
|
1264 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1265 |
"image."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: includes/options_helptexts.php:131
|
1269 |
msgid "Feed link image"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/options_helptexts.php:132
|
1273 |
msgid "Show rss image in feed link"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/options_helptexts.php:133
|
1277 |
msgid ""
|
1278 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1279 |
" front of the text."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: includes/options_helptexts.php:139
|
1283 |
msgid "Event Category handling"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/options_helptexts.php:140
|
1287 |
msgid "Use Post Categories"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/options_helptexts.php:141
|
1291 |
msgid ""
|
1292 |
"Do not maintain seperate categories for the events, and use the existing "
|
1293 |
"post categories instead."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options_helptexts.php:142
|
1297 |
msgid "Attention"
|
1298 |
msgstr "Atención"
|
1299 |
|
1300 |
+
#: includes/options_helptexts.php:143
|
1301 |
msgid ""
|
1302 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1303 |
" switching page from here."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: includes/options.php:40
|
1307 |
+
msgid "events"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
#: includes/options.php:41
|
1311 |
+
msgid "Show content"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/options.php:42
|
1315 |
msgid "Hide content"
|
1316 |
msgstr ""
|
1317 |
|
languages/event-list-et_EE.po
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
-
"POT-Creation-Date: 2018-
|
12 |
-
"PO-Revision-Date: 2018-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Estonian (Estonia) (http://www.transifex.com/mibuthu/wp-event-list/language/et_EE/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -32,7 +32,7 @@ msgstr ""
|
|
32 |
msgid "no additional information available"
|
33 |
msgstr "täiendavat teavet ei ole"
|
34 |
|
35 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Sündmuste loendi seaded"
|
38 |
|
@@ -55,7 +55,7 @@ msgid_plural "%s Events"
|
|
55 |
msgstr[0] ""
|
56 |
msgstr[1] ""
|
57 |
|
58 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
59 |
msgid "General"
|
60 |
msgstr ""
|
61 |
|
@@ -430,80 +430,72 @@ msgstr ""
|
|
430 |
msgid "none"
|
431 |
msgstr "pole ühtegi"
|
432 |
|
433 |
-
#: admin/includes/admin-import.php:
|
434 |
msgid "Import Events"
|
435 |
msgstr "Impordi sündmused"
|
436 |
|
437 |
-
#: admin/includes/admin-import.php:
|
438 |
msgid "Step"
|
439 |
msgstr "Samm"
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
msgid "Set import file and options"
|
443 |
msgstr "Määrake impordifail ja valikud"
|
444 |
|
445 |
-
#: admin/includes/admin-import.php:
|
446 |
#, php-format
|
447 |
msgid "Proceed with Step %1$s"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin/includes/admin-import.php:
|
451 |
msgid "Example file"
|
452 |
msgstr "Näidisfail"
|
453 |
|
454 |
-
#: admin/includes/admin-import.php:
|
455 |
#, php-format
|
456 |
msgid ""
|
457 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: admin/includes/admin-import.php:
|
461 |
msgid "Note"
|
462 |
msgstr "Märge"
|
463 |
|
464 |
-
#: admin/includes/admin-import.php:
|
465 |
msgid ""
|
466 |
"Do not change the column header and separator line (first two lines), "
|
467 |
"otherwise the import will fail!"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
-
#: admin/includes/admin-import.php:
|
472 |
msgid "Sorry, there has been an error."
|
473 |
msgstr "Vabandage, tekkis viga."
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
msgid "The file does not exist, please try again."
|
477 |
msgstr "Sellist faili ei eksisteeri, palun proovi uuesti."
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid "The file is not a CSV file."
|
481 |
msgstr "See ei ole CSV file."
|
482 |
|
483 |
-
#: admin/includes/admin-import.php:
|
484 |
msgid "Events review and additonal category selection"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/includes/admin-import.php:
|
488 |
msgid ""
|
489 |
"Warning: The following category slugs are not available and will be removed "
|
490 |
"from the imported events:"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/includes/admin-import.php:
|
494 |
msgid ""
|
495 |
"If you want to keep these categories, please create these Categories first "
|
496 |
"and do the import afterwards."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:156
|
500 |
-
msgid "Import with errors!"
|
501 |
-
msgstr "Impordi koos vigadega!"
|
502 |
-
|
503 |
-
#: admin/includes/admin-import.php:157
|
504 |
-
msgid "Sorry, an error occurred during import!"
|
505 |
-
msgstr "Vabandame, importimise käigus tekkis viga!"
|
506 |
-
|
507 |
#: admin/includes/admin-import.php:161
|
508 |
msgid "Import successful!"
|
509 |
msgstr "Importimine oli edukas!"
|
@@ -512,54 +504,64 @@ msgstr "Importimine oli edukas!"
|
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr "Mine tagasi \"Kõik sündmused\" juurde"
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
516 |
#: includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Pealkiri"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:
|
521 |
msgid "Start Date"
|
522 |
msgstr "Alguskuupäev"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Lõppkuupäev"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
530 |
msgid "Time"
|
531 |
msgstr "Aeg"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
-
#: admin/includes/admin-new.php:
|
535 |
#: includes/options_helptexts.php:46
|
536 |
msgid "Location"
|
537 |
msgstr "Koht"
|
538 |
|
539 |
-
#: admin/includes/admin-import.php:
|
540 |
msgid "Content"
|
541 |
msgstr "Sisu"
|
542 |
|
543 |
-
#: admin/includes/admin-import.php:
|
544 |
msgid "Category slugs"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin/includes/admin-import.php:
|
548 |
#, php-format
|
549 |
msgid ""
|
550 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
551 |
"missing or not correct!"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/includes/admin-import.php:
|
555 |
msgid "Import events"
|
556 |
msgstr "Impordi sündmused"
|
557 |
|
558 |
-
#: admin/includes/admin-import.php:
|
559 |
msgid "Add additional categories"
|
560 |
msgstr "Lisage täiendavaid kategooriaid"
|
561 |
|
562 |
-
#: admin/includes/admin-import.php:
|
563 |
msgid "Import"
|
564 |
msgstr "Impordi"
|
565 |
|
@@ -584,82 +586,82 @@ msgstr "Kopeeri"
|
|
584 |
msgid "Event data"
|
585 |
msgstr "Sündmuse andmed"
|
586 |
|
587 |
-
#: admin/includes/admin-new.php:
|
588 |
msgid "Add Copy"
|
589 |
msgstr "Lisa koopia"
|
590 |
|
591 |
-
#: admin/includes/admin-new.php:
|
592 |
msgid "Date"
|
593 |
msgstr "Kuupäev"
|
594 |
|
595 |
-
#: admin/includes/admin-new.php:
|
596 |
msgid "required"
|
597 |
msgstr "nõutud"
|
598 |
|
599 |
-
#: admin/includes/admin-new.php:
|
600 |
msgid "Multi-Day Event"
|
601 |
msgstr "Mitmepäevane sündmus"
|
602 |
|
603 |
-
#: admin/includes/admin-new.php:
|
604 |
msgid "Event Title"
|
605 |
msgstr "Sündmuse pealkiri"
|
606 |
|
607 |
-
#: admin/includes/admin-new.php:
|
608 |
msgid "Event Content"
|
609 |
msgstr "Sündmuse sisu"
|
610 |
|
611 |
-
#: admin/includes/admin-new.php:
|
612 |
msgid "Event updated."
|
613 |
msgstr "Sündmus uuendatud."
|
614 |
|
615 |
-
#: admin/includes/admin-new.php:
|
616 |
msgid "View event"
|
617 |
msgstr "Vaata sündmust"
|
618 |
|
619 |
-
#: admin/includes/admin-new.php:
|
620 |
#, php-format
|
621 |
msgid "Event restored to revision from %1$s"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/includes/admin-new.php:
|
625 |
msgid "Event published."
|
626 |
msgstr "Sündmus avaldatud."
|
627 |
|
628 |
-
#: admin/includes/admin-new.php:
|
629 |
msgid "Event submitted."
|
630 |
msgstr "Sündmus on esitatud."
|
631 |
|
632 |
-
#: admin/includes/admin-new.php:
|
633 |
-
#: admin/includes/admin-new.php:
|
634 |
msgid "Preview event"
|
635 |
msgstr "Sündmuse eelvaade"
|
636 |
|
637 |
-
#: admin/includes/admin-new.php:
|
638 |
#, php-format
|
639 |
msgid "Event scheduled for: %1$s>"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: admin/includes/admin-new.php:
|
643 |
msgid "Event draft updated."
|
644 |
msgstr "Sündmuse visand uuendatud."
|
645 |
|
646 |
-
#: admin/includes/admin-settings.php:
|
647 |
msgid "Go to Event Category switching page"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: admin/includes/admin-settings.php:
|
651 |
msgid "Frontend Settings"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: admin/includes/admin-settings.php:
|
655 |
msgid "Admin Page Settings"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: admin/includes/admin-settings.php:
|
659 |
msgid "Feed Settings"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: admin/includes/admin-settings.php:
|
663 |
msgid "Category Taxonomy"
|
664 |
msgstr ""
|
665 |
|
@@ -822,7 +824,7 @@ msgstr "Toimunud"
|
|
822 |
msgid "This value defines a range from the past to the previous day."
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/event.php:
|
826 |
msgid "No valid start date provided"
|
827 |
msgstr ""
|
828 |
|
@@ -1031,273 +1033,286 @@ msgid ""
|
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: includes/options_helptexts.php:56
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1034 |
msgid "Text for \"Show content\""
|
1035 |
msgstr "Tekst \"Näita sisu\" jaoks"
|
1036 |
|
1037 |
-
#: includes/options_helptexts.php:
|
1038 |
msgid ""
|
1039 |
"With this option the displayed text for the link to show the event content "
|
1040 |
"can be changed, when collapsing is enabled."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/options_helptexts.php:
|
1044 |
msgid "Text for \"Hide content\""
|
1045 |
msgstr "Tekst \"Peida sisu\" jaoks"
|
1046 |
|
1047 |
-
#: includes/options_helptexts.php:
|
1048 |
msgid ""
|
1049 |
"With this option the displayed text for the link to hide the event content "
|
1050 |
"can be changed, when collapsing is enabled."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/options_helptexts.php:
|
1054 |
msgid "Disable CSS file"
|
1055 |
msgstr "Keela CSS-fail"
|
1056 |
|
1057 |
-
#: includes/options_helptexts.php:
|
1058 |
#, php-format
|
1059 |
msgid "Disable the %1$s file."
|
1060 |
msgstr "Keela %1$s fail."
|
1061 |
|
1062 |
-
#: includes/options_helptexts.php:
|
1063 |
#, php-format
|
1064 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: includes/options_helptexts.php:
|
1068 |
msgid ""
|
1069 |
"This normally only make sense if you have css conflicts with your theme and "
|
1070 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/options_helptexts.php:
|
1074 |
msgid "Date format in edit form"
|
1075 |
msgstr "Kuupäevavorming muutmisvormis"
|
1076 |
|
1077 |
-
#: includes/options_helptexts.php:
|
1078 |
msgid ""
|
1079 |
"This option sets the displayed date format for the event date fields in the "
|
1080 |
"event new / edit form."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/options_helptexts.php:
|
1084 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: includes/options_helptexts.php:
|
1088 |
#, php-format
|
1089 |
msgid ""
|
1090 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: includes/options_helptexts.php:
|
1094 |
msgid "Enable RSS feed"
|
1095 |
msgstr "Luba RSS-voog"
|
1096 |
|
1097 |
-
#: includes/options_helptexts.php:
|
1098 |
msgid "Enable support for an event RSS feed"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: includes/options_helptexts.php:
|
1102 |
msgid "This option activates a RSS feed for the events."
|
1103 |
msgstr "See valik aktiveerib ürituste RSS-voo."
|
1104 |
|
1105 |
-
#: includes/options_helptexts.php:
|
1106 |
msgid ""
|
1107 |
"You have to enable this option if you want to use one of the RSS feed "
|
1108 |
"features."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/options_helptexts.php:
|
1112 |
msgid "Feed name"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: includes/options_helptexts.php:
|
1116 |
#, php-format
|
1117 |
msgid "This option sets the feed name. The default value is %1$s."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: includes/options_helptexts.php:
|
1121 |
#, php-format
|
1122 |
msgid ""
|
1123 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1124 |
"enabled)."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/options_helptexts.php:
|
1128 |
msgid "Feed Description"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: includes/options_helptexts.php:
|
1132 |
#, php-format
|
1133 |
msgid "This options set the feed description. The default value is %1$s."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/options_helptexts.php:
|
1137 |
msgid ""
|
1138 |
"This description will be used in the title for the feed link in the html "
|
1139 |
"head and for the description in the feed itself."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: includes/options_helptexts.php:
|
1143 |
msgid "Listed events"
|
1144 |
msgstr "Loetletud sündmused"
|
1145 |
|
1146 |
-
#: includes/options_helptexts.php:
|
1147 |
msgid "Only show upcoming events in feed"
|
1148 |
msgstr "Näita ainult eelseisvaid sündmusi sündmustevoos."
|
1149 |
|
1150 |
-
#: includes/options_helptexts.php:
|
1151 |
msgid ""
|
1152 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1153 |
msgstr "Kui see suvand on lubatud, kuvatakse ainult eelolevad sündmused sündmustevoos."
|
1154 |
|
1155 |
-
#: includes/options_helptexts.php:
|
1156 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1157 |
msgstr "Kui see suvand ei ole lubatud, kuvatakse kõik (nii möödunud kui ka eelolevad) sündmused sündmustevoos."
|
1158 |
|
1159 |
-
#: includes/options_helptexts.php:
|
1160 |
msgid "Add RSS feed link in head"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: includes/options_helptexts.php:
|
1164 |
msgid "Add RSS feed link in the html head"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: includes/options_helptexts.php:
|
1168 |
msgid "This option adds a RSS feed in the html head for the events."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: includes/options_helptexts.php:
|
1172 |
msgid "There are 2 alternatives to include the RSS feed"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: includes/options_helptexts.php:
|
1176 |
msgid ""
|
1177 |
"The first way is this option to include a link in the html head. This link "
|
1178 |
"will be recognized by browers or feed readers."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: includes/options_helptexts.php:
|
1182 |
#, php-format
|
1183 |
msgid ""
|
1184 |
"The second way is to include a visible feed link directly in the event list."
|
1185 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: includes/options_helptexts.php:
|
1189 |
#, php-format
|
1190 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: includes/options_helptexts.php:
|
1194 |
msgid "Position of the RSS feed link"
|
1195 |
msgstr "Paiguta RSS-voo link"
|
1196 |
|
1197 |
-
#: includes/options_helptexts.php:
|
1198 |
msgid "at the top (above the navigation bar)"
|
1199 |
msgstr "üles (navigatsiooniriba kohale)"
|
1200 |
|
1201 |
-
#: includes/options_helptexts.php:
|
1202 |
msgid "between navigation bar and events"
|
1203 |
msgstr "navigatsiooniriba ja sündmuste vahele"
|
1204 |
|
1205 |
-
#: includes/options_helptexts.php:
|
1206 |
msgid "at the bottom"
|
1207 |
msgstr "alla"
|
1208 |
|
1209 |
-
#: includes/options_helptexts.php:
|
1210 |
msgid ""
|
1211 |
"This option specifies the position of the RSS feed link in the event list."
|
1212 |
msgstr "See suvand määrab RSS-voo lingi asukoha sündmuste lehel."
|
1213 |
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
-
#: includes/options_helptexts.php:
|
1216 |
#, php-format
|
1217 |
msgid ""
|
1218 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1219 |
" feed link."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: includes/options_helptexts.php:
|
1223 |
msgid "Align of the RSS feed link"
|
1224 |
msgstr "Joonda RSS-voo link"
|
1225 |
|
1226 |
-
#: includes/options_helptexts.php:
|
1227 |
msgid "left"
|
1228 |
msgstr "vasakule"
|
1229 |
|
1230 |
-
#: includes/options_helptexts.php:
|
1231 |
msgid "center"
|
1232 |
msgstr "keskele"
|
1233 |
|
1234 |
-
#: includes/options_helptexts.php:
|
1235 |
msgid "right"
|
1236 |
msgstr "paremale"
|
1237 |
|
1238 |
-
#: includes/options_helptexts.php:
|
1239 |
msgid ""
|
1240 |
"This option specifies the align of the RSS feed link in the event list."
|
1241 |
msgstr "See suvand määrab RSS-voo lingi joonduse sündmuste lehel."
|
1242 |
|
1243 |
-
#: includes/options_helptexts.php:
|
1244 |
msgid "Feed link text"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: includes/options_helptexts.php:
|
1248 |
msgid ""
|
1249 |
"This option specifies the caption of the RSS feed link in the event list."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/options_helptexts.php:
|
1253 |
msgid ""
|
1254 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1255 |
"image."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: includes/options_helptexts.php:
|
1259 |
msgid "Feed link image"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/options_helptexts.php:
|
1263 |
msgid "Show rss image in feed link"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: includes/options_helptexts.php:
|
1267 |
msgid ""
|
1268 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1269 |
" front of the text."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: includes/options_helptexts.php:
|
1273 |
msgid "Event Category handling"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options_helptexts.php:
|
1277 |
msgid "Use Post Categories"
|
1278 |
msgstr "Kasuta postituste kategooriaid"
|
1279 |
|
1280 |
-
#: includes/options_helptexts.php:
|
1281 |
msgid ""
|
1282 |
"Do not maintain seperate categories for the events, and use the existing "
|
1283 |
"post categories instead."
|
1284 |
msgstr "Ära hoia sündmuste jaoks eraldi kategooriaid, vaid kasuta olemasolevaid postituste kategooriaid."
|
1285 |
|
1286 |
-
#: includes/options_helptexts.php:
|
1287 |
msgid "Attention"
|
1288 |
msgstr "Tähelepanu"
|
1289 |
|
1290 |
-
#: includes/options_helptexts.php:
|
1291 |
msgid ""
|
1292 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1293 |
" switching page from here."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
#: includes/options.php:40
|
|
|
|
|
|
|
|
|
1297 |
msgid "Show content"
|
1298 |
msgstr "Näita sisu"
|
1299 |
|
1300 |
-
#: includes/options.php:
|
1301 |
msgid "Hide content"
|
1302 |
msgstr "Peida sisu"
|
1303 |
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
12 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Estonian (Estonia) (http://www.transifex.com/mibuthu/wp-event-list/language/et_EE/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
32 |
msgid "no additional information available"
|
33 |
msgstr "täiendavat teavet ei ole"
|
34 |
|
35 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Sündmuste loendi seaded"
|
38 |
|
55 |
msgstr[0] ""
|
56 |
msgstr[1] ""
|
57 |
|
58 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
59 |
msgid "General"
|
60 |
msgstr ""
|
61 |
|
430 |
msgid "none"
|
431 |
msgstr "pole ühtegi"
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:50
|
434 |
msgid "Import Events"
|
435 |
msgstr "Impordi sündmused"
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
438 |
msgid "Step"
|
439 |
msgstr "Samm"
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:70
|
442 |
msgid "Set import file and options"
|
443 |
msgstr "Määrake impordifail ja valikud"
|
444 |
|
445 |
+
#: admin/includes/admin-import.php:73
|
446 |
#, php-format
|
447 |
msgid "Proceed with Step %1$s"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin/includes/admin-import.php:76
|
451 |
msgid "Example file"
|
452 |
msgstr "Näidisfail"
|
453 |
|
454 |
+
#: admin/includes/admin-import.php:77
|
455 |
#, php-format
|
456 |
msgid ""
|
457 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin/includes/admin-import.php:78
|
461 |
msgid "Note"
|
462 |
msgstr "Märge"
|
463 |
|
464 |
+
#: admin/includes/admin-import.php:78
|
465 |
msgid ""
|
466 |
"Do not change the column header and separator line (first two lines), "
|
467 |
"otherwise the import will fail!"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
471 |
+
#: admin/includes/admin-import.php:106
|
472 |
msgid "Sorry, there has been an error."
|
473 |
msgstr "Vabandage, tekkis viga."
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:86
|
476 |
msgid "The file does not exist, please try again."
|
477 |
msgstr "Sellist faili ei eksisteeri, palun proovi uuesti."
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:94
|
480 |
msgid "The file is not a CSV file."
|
481 |
msgstr "See ei ole CSV file."
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:123
|
484 |
msgid "Events review and additonal category selection"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/includes/admin-import.php:126
|
488 |
msgid ""
|
489 |
"Warning: The following category slugs are not available and will be removed "
|
490 |
"from the imported events:"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: admin/includes/admin-import.php:132
|
494 |
msgid ""
|
495 |
"If you want to keep these categories, please create these Categories first "
|
496 |
"and do the import afterwards."
|
497 |
msgstr ""
|
498 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
#: admin/includes/admin-import.php:161
|
500 |
msgid "Import successful!"
|
501 |
msgstr "Importimine oli edukas!"
|
504 |
msgid "Go back to All Events"
|
505 |
msgstr "Mine tagasi \"Kõik sündmused\" juurde"
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:166
|
508 |
+
msgid "Import with errors!"
|
509 |
+
msgstr "Impordi koos vigadega!"
|
510 |
+
|
511 |
+
#: admin/includes/admin-import.php:167
|
512 |
+
#, php-format
|
513 |
+
msgid ""
|
514 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
518 |
#: includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr "Pealkiri"
|
521 |
|
522 |
+
#: admin/includes/admin-import.php:175
|
523 |
msgid "Start Date"
|
524 |
msgstr "Alguskuupäev"
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:176
|
527 |
msgid "End Date"
|
528 |
msgstr "Lõppkuupäev"
|
529 |
|
530 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
531 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
532 |
msgid "Time"
|
533 |
msgstr "Aeg"
|
534 |
|
535 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
536 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
537 |
#: includes/options_helptexts.php:46
|
538 |
msgid "Location"
|
539 |
msgstr "Koht"
|
540 |
|
541 |
+
#: admin/includes/admin-import.php:179
|
542 |
msgid "Content"
|
543 |
msgstr "Sisu"
|
544 |
|
545 |
+
#: admin/includes/admin-import.php:180
|
546 |
msgid "Category slugs"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: admin/includes/admin-import.php:219
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
553 |
"missing or not correct!"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/includes/admin-import.php:251
|
557 |
msgid "Import events"
|
558 |
msgstr "Impordi sündmused"
|
559 |
|
560 |
+
#: admin/includes/admin-import.php:252
|
561 |
msgid "Add additional categories"
|
562 |
msgstr "Lisage täiendavaid kategooriaid"
|
563 |
|
564 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
565 |
msgid "Import"
|
566 |
msgstr "Impordi"
|
567 |
|
586 |
msgid "Event data"
|
587 |
msgstr "Sündmuse andmed"
|
588 |
|
589 |
+
#: admin/includes/admin-new.php:80
|
590 |
msgid "Add Copy"
|
591 |
msgstr "Lisa koopia"
|
592 |
|
593 |
+
#: admin/includes/admin-new.php:84
|
594 |
msgid "Date"
|
595 |
msgstr "Kuupäev"
|
596 |
|
597 |
+
#: admin/includes/admin-new.php:84
|
598 |
msgid "required"
|
599 |
msgstr "nõutud"
|
600 |
|
601 |
+
#: admin/includes/admin-new.php:87
|
602 |
msgid "Multi-Day Event"
|
603 |
msgstr "Mitmepäevane sündmus"
|
604 |
|
605 |
+
#: admin/includes/admin-new.php:106
|
606 |
msgid "Event Title"
|
607 |
msgstr "Sündmuse pealkiri"
|
608 |
|
609 |
+
#: admin/includes/admin-new.php:121
|
610 |
msgid "Event Content"
|
611 |
msgstr "Sündmuse sisu"
|
612 |
|
613 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
614 |
msgid "Event updated."
|
615 |
msgstr "Sündmus uuendatud."
|
616 |
|
617 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
618 |
msgid "View event"
|
619 |
msgstr "Vaata sündmust"
|
620 |
|
621 |
+
#: admin/includes/admin-new.php:184
|
622 |
#, php-format
|
623 |
msgid "Event restored to revision from %1$s"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: admin/includes/admin-new.php:185
|
627 |
msgid "Event published."
|
628 |
msgstr "Sündmus avaldatud."
|
629 |
|
630 |
+
#: admin/includes/admin-new.php:187
|
631 |
msgid "Event submitted."
|
632 |
msgstr "Sündmus on esitatud."
|
633 |
|
634 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
635 |
+
#: admin/includes/admin-new.php:190
|
636 |
msgid "Preview event"
|
637 |
msgstr "Sündmuse eelvaade"
|
638 |
|
639 |
+
#: admin/includes/admin-new.php:188
|
640 |
#, php-format
|
641 |
msgid "Event scheduled for: %1$s>"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: admin/includes/admin-new.php:190
|
645 |
msgid "Event draft updated."
|
646 |
msgstr "Sündmuse visand uuendatud."
|
647 |
|
648 |
+
#: admin/includes/admin-settings.php:71
|
649 |
msgid "Go to Event Category switching page"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: admin/includes/admin-settings.php:83
|
653 |
msgid "Frontend Settings"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: admin/includes/admin-settings.php:84
|
657 |
msgid "Admin Page Settings"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: admin/includes/admin-settings.php:85
|
661 |
msgid "Feed Settings"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: admin/includes/admin-settings.php:86
|
665 |
msgid "Category Taxonomy"
|
666 |
msgstr ""
|
667 |
|
824 |
msgid "This value defines a range from the past to the previous day."
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: includes/event.php:107
|
828 |
msgid "No valid start date provided"
|
829 |
msgstr ""
|
830 |
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: includes/options_helptexts.php:56
|
1036 |
+
msgid "Events permalink slug"
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: includes/options_helptexts.php:57
|
1040 |
+
msgid ""
|
1041 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: includes/options_helptexts.php:60
|
1045 |
msgid "Text for \"Show content\""
|
1046 |
msgstr "Tekst \"Näita sisu\" jaoks"
|
1047 |
|
1048 |
+
#: includes/options_helptexts.php:61
|
1049 |
msgid ""
|
1050 |
"With this option the displayed text for the link to show the event content "
|
1051 |
"can be changed, when collapsing is enabled."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:64
|
1055 |
msgid "Text for \"Hide content\""
|
1056 |
msgstr "Tekst \"Peida sisu\" jaoks"
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:65
|
1059 |
msgid ""
|
1060 |
"With this option the displayed text for the link to hide the event content "
|
1061 |
"can be changed, when collapsing is enabled."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: includes/options_helptexts.php:68
|
1065 |
msgid "Disable CSS file"
|
1066 |
msgstr "Keela CSS-fail"
|
1067 |
|
1068 |
+
#: includes/options_helptexts.php:69
|
1069 |
#, php-format
|
1070 |
msgid "Disable the %1$s file."
|
1071 |
msgstr "Keela %1$s fail."
|
1072 |
|
1073 |
+
#: includes/options_helptexts.php:70
|
1074 |
#, php-format
|
1075 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:71
|
1079 |
msgid ""
|
1080 |
"This normally only make sense if you have css conflicts with your theme and "
|
1081 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: includes/options_helptexts.php:75
|
1085 |
msgid "Date format in edit form"
|
1086 |
msgstr "Kuupäevavorming muutmisvormis"
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:76
|
1089 |
msgid ""
|
1090 |
"This option sets the displayed date format for the event date fields in the "
|
1091 |
"event new / edit form."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/options_helptexts.php:77
|
1095 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: includes/options_helptexts.php:78
|
1099 |
#, php-format
|
1100 |
msgid ""
|
1101 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1105 |
msgid "Enable RSS feed"
|
1106 |
msgstr "Luba RSS-voog"
|
1107 |
|
1108 |
+
#: includes/options_helptexts.php:83
|
1109 |
msgid "Enable support for an event RSS feed"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/options_helptexts.php:84
|
1113 |
msgid "This option activates a RSS feed for the events."
|
1114 |
msgstr "See valik aktiveerib ürituste RSS-voo."
|
1115 |
|
1116 |
+
#: includes/options_helptexts.php:85
|
1117 |
msgid ""
|
1118 |
"You have to enable this option if you want to use one of the RSS feed "
|
1119 |
"features."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: includes/options_helptexts.php:88
|
1123 |
msgid "Feed name"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/options_helptexts.php:89
|
1127 |
#, php-format
|
1128 |
msgid "This option sets the feed name. The default value is %1$s."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: includes/options_helptexts.php:90
|
1132 |
#, php-format
|
1133 |
msgid ""
|
1134 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1135 |
"enabled)."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/options_helptexts.php:93
|
1139 |
msgid "Feed Description"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: includes/options_helptexts.php:94
|
1143 |
#, php-format
|
1144 |
msgid "This options set the feed description. The default value is %1$s."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/options_helptexts.php:95
|
1148 |
msgid ""
|
1149 |
"This description will be used in the title for the feed link in the html "
|
1150 |
"head and for the description in the feed itself."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: includes/options_helptexts.php:98
|
1154 |
msgid "Listed events"
|
1155 |
msgstr "Loetletud sündmused"
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:99
|
1158 |
msgid "Only show upcoming events in feed"
|
1159 |
msgstr "Näita ainult eelseisvaid sündmusi sündmustevoos."
|
1160 |
|
1161 |
+
#: includes/options_helptexts.php:100
|
1162 |
msgid ""
|
1163 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1164 |
msgstr "Kui see suvand on lubatud, kuvatakse ainult eelolevad sündmused sündmustevoos."
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:101
|
1167 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1168 |
msgstr "Kui see suvand ei ole lubatud, kuvatakse kõik (nii möödunud kui ka eelolevad) sündmused sündmustevoos."
|
1169 |
|
1170 |
+
#: includes/options_helptexts.php:104
|
1171 |
msgid "Add RSS feed link in head"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: includes/options_helptexts.php:105
|
1175 |
msgid "Add RSS feed link in the html head"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/options_helptexts.php:106
|
1179 |
msgid "This option adds a RSS feed in the html head for the events."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/options_helptexts.php:107
|
1183 |
msgid "There are 2 alternatives to include the RSS feed"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/options_helptexts.php:108
|
1187 |
msgid ""
|
1188 |
"The first way is this option to include a link in the html head. This link "
|
1189 |
"will be recognized by browers or feed readers."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/options_helptexts.php:109
|
1193 |
#, php-format
|
1194 |
msgid ""
|
1195 |
"The second way is to include a visible feed link directly in the event list."
|
1196 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/options_helptexts.php:110
|
1200 |
#, php-format
|
1201 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: includes/options_helptexts.php:113
|
1205 |
msgid "Position of the RSS feed link"
|
1206 |
msgstr "Paiguta RSS-voo link"
|
1207 |
|
1208 |
+
#: includes/options_helptexts.php:114
|
1209 |
msgid "at the top (above the navigation bar)"
|
1210 |
msgstr "üles (navigatsiooniriba kohale)"
|
1211 |
|
1212 |
+
#: includes/options_helptexts.php:114
|
1213 |
msgid "between navigation bar and events"
|
1214 |
msgstr "navigatsiooniriba ja sündmuste vahele"
|
1215 |
|
1216 |
+
#: includes/options_helptexts.php:114
|
1217 |
msgid "at the bottom"
|
1218 |
msgstr "alla"
|
1219 |
|
1220 |
+
#: includes/options_helptexts.php:115
|
1221 |
msgid ""
|
1222 |
"This option specifies the position of the RSS feed link in the event list."
|
1223 |
msgstr "See suvand määrab RSS-voo lingi asukoha sündmuste lehel."
|
1224 |
|
1225 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1226 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1227 |
#, php-format
|
1228 |
msgid ""
|
1229 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1230 |
" feed link."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/options_helptexts.php:119
|
1234 |
msgid "Align of the RSS feed link"
|
1235 |
msgstr "Joonda RSS-voo link"
|
1236 |
|
1237 |
+
#: includes/options_helptexts.php:120
|
1238 |
msgid "left"
|
1239 |
msgstr "vasakule"
|
1240 |
|
1241 |
+
#: includes/options_helptexts.php:120
|
1242 |
msgid "center"
|
1243 |
msgstr "keskele"
|
1244 |
|
1245 |
+
#: includes/options_helptexts.php:120
|
1246 |
msgid "right"
|
1247 |
msgstr "paremale"
|
1248 |
|
1249 |
+
#: includes/options_helptexts.php:121
|
1250 |
msgid ""
|
1251 |
"This option specifies the align of the RSS feed link in the event list."
|
1252 |
msgstr "See suvand määrab RSS-voo lingi joonduse sündmuste lehel."
|
1253 |
|
1254 |
+
#: includes/options_helptexts.php:125
|
1255 |
msgid "Feed link text"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/options_helptexts.php:126
|
1259 |
msgid ""
|
1260 |
"This option specifies the caption of the RSS feed link in the event list."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options_helptexts.php:127
|
1264 |
msgid ""
|
1265 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1266 |
"image."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options_helptexts.php:131
|
1270 |
msgid "Feed link image"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:132
|
1274 |
msgid "Show rss image in feed link"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:133
|
1278 |
msgid ""
|
1279 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1280 |
" front of the text."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/options_helptexts.php:139
|
1284 |
msgid "Event Category handling"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: includes/options_helptexts.php:140
|
1288 |
msgid "Use Post Categories"
|
1289 |
msgstr "Kasuta postituste kategooriaid"
|
1290 |
|
1291 |
+
#: includes/options_helptexts.php:141
|
1292 |
msgid ""
|
1293 |
"Do not maintain seperate categories for the events, and use the existing "
|
1294 |
"post categories instead."
|
1295 |
msgstr "Ära hoia sündmuste jaoks eraldi kategooriaid, vaid kasuta olemasolevaid postituste kategooriaid."
|
1296 |
|
1297 |
+
#: includes/options_helptexts.php:142
|
1298 |
msgid "Attention"
|
1299 |
msgstr "Tähelepanu"
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:143
|
1302 |
msgid ""
|
1303 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1304 |
" switching page from here."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: includes/options.php:40
|
1308 |
+
msgid "events"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: includes/options.php:41
|
1312 |
msgid "Show content"
|
1313 |
msgstr "Näita sisu"
|
1314 |
|
1315 |
+
#: includes/options.php:42
|
1316 |
msgid "Hide content"
|
1317 |
msgstr "Peida sisu"
|
1318 |
|
languages/event-list-fi_FI.po
CHANGED
@@ -10,8 +10,8 @@ msgid ""
|
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
-
"POT-Creation-Date: 2018-
|
14 |
-
"PO-Revision-Date: 2018-
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
@@ -34,7 +34,7 @@ msgstr ""
|
|
34 |
msgid "no additional information available"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
38 |
msgid "Event List Settings"
|
39 |
msgstr "Tapahtuma listan asetukset"
|
40 |
|
@@ -57,7 +57,7 @@ msgid_plural "%s Events"
|
|
57 |
msgstr[0] ""
|
58 |
msgstr[1] ""
|
59 |
|
60 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
61 |
msgid "General"
|
62 |
msgstr "Yleinen"
|
63 |
|
@@ -432,80 +432,72 @@ msgstr ""
|
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
436 |
msgid "Import Events"
|
437 |
msgstr "Tuo tapahtumia"
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Step"
|
441 |
msgstr "Vaihe"
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
msgid "Set import file and options"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin/includes/admin-import.php:
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
msgid "Example file"
|
454 |
msgstr "Esimerkki tiedosto"
|
455 |
|
456 |
-
#: admin/includes/admin-import.php:
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid "Note"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: admin/includes/admin-import.php:
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin/includes/admin-import.php:
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr "Tiedosto ei ole olemassa, yritä uudelleen."
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr "Tiedosto ei ole CSV-tiedosto."
|
484 |
|
485 |
-
#: admin/includes/admin-import.php:
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:156
|
502 |
-
msgid "Import with errors!"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: admin/includes/admin-import.php:157
|
506 |
-
msgid "Sorry, an error occurred during import!"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
#: admin/includes/admin-import.php:161
|
510 |
msgid "Import successful!"
|
511 |
msgstr "Lisääminen onnistui!"
|
@@ -514,54 +506,64 @@ msgstr "Lisääminen onnistui!"
|
|
514 |
msgid "Go back to All Events"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
#: includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr "Otsikko"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "Start Date"
|
524 |
msgstr "Alku päivämäärä"
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
msgid "End Date"
|
528 |
msgstr "Loppu päivämäärä"
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
532 |
msgid "Time"
|
533 |
msgstr "Aika"
|
534 |
|
535 |
-
#: admin/includes/admin-import.php:
|
536 |
-
#: admin/includes/admin-new.php:
|
537 |
#: includes/options_helptexts.php:46
|
538 |
msgid "Location"
|
539 |
msgstr "Sijainti"
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Content"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
546 |
msgid "Category slugs"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: admin/includes/admin-import.php:
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
553 |
"missing or not correct!"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/includes/admin-import.php:
|
557 |
msgid "Import events"
|
558 |
msgstr "Tuo tapahtumia"
|
559 |
|
560 |
-
#: admin/includes/admin-import.php:
|
561 |
msgid "Add additional categories"
|
562 |
msgstr "Lisää kategorioita"
|
563 |
|
564 |
-
#: admin/includes/admin-import.php:
|
565 |
msgid "Import"
|
566 |
msgstr "Tuo"
|
567 |
|
@@ -586,82 +588,82 @@ msgstr ""
|
|
586 |
msgid "Event data"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: admin/includes/admin-new.php:
|
590 |
msgid "Add Copy"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: admin/includes/admin-new.php:
|
594 |
msgid "Date"
|
595 |
msgstr "Päiväys"
|
596 |
|
597 |
-
#: admin/includes/admin-new.php:
|
598 |
msgid "required"
|
599 |
msgstr "tarpeellinen"
|
600 |
|
601 |
-
#: admin/includes/admin-new.php:
|
602 |
msgid "Multi-Day Event"
|
603 |
msgstr "Monipäiväinen tapahtuma"
|
604 |
|
605 |
-
#: admin/includes/admin-new.php:
|
606 |
msgid "Event Title"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: admin/includes/admin-new.php:
|
610 |
msgid "Event Content"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: admin/includes/admin-new.php:
|
614 |
msgid "Event updated."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: admin/includes/admin-new.php:
|
618 |
msgid "View event"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: admin/includes/admin-new.php:
|
622 |
#, php-format
|
623 |
msgid "Event restored to revision from %1$s"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: admin/includes/admin-new.php:
|
627 |
msgid "Event published."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: admin/includes/admin-new.php:
|
631 |
msgid "Event submitted."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/includes/admin-new.php:
|
635 |
-
#: admin/includes/admin-new.php:
|
636 |
msgid "Preview event"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: admin/includes/admin-new.php:
|
640 |
#, php-format
|
641 |
msgid "Event scheduled for: %1$s>"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/includes/admin-new.php:
|
645 |
msgid "Event draft updated."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: admin/includes/admin-settings.php:
|
649 |
msgid "Go to Event Category switching page"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: admin/includes/admin-settings.php:
|
653 |
msgid "Frontend Settings"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: admin/includes/admin-settings.php:
|
657 |
msgid "Admin Page Settings"
|
658 |
msgstr "Hallinnointisivun asetukset"
|
659 |
|
660 |
-
#: admin/includes/admin-settings.php:
|
661 |
msgid "Feed Settings"
|
662 |
msgstr "Syöte asetukset"
|
663 |
|
664 |
-
#: admin/includes/admin-settings.php:
|
665 |
msgid "Category Taxonomy"
|
666 |
msgstr ""
|
667 |
|
@@ -824,7 +826,7 @@ msgstr "Menneet"
|
|
824 |
msgid "This value defines a range from the past to the previous day."
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/event.php:
|
828 |
msgid "No valid start date provided"
|
829 |
msgstr ""
|
830 |
|
@@ -1033,273 +1035,286 @@ msgid ""
|
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: includes/options_helptexts.php:56
|
1036 |
-
msgid "
|
1037 |
msgstr ""
|
1038 |
|
1039 |
#: includes/options_helptexts.php:57
|
1040 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
"With this option the displayed text for the link to show the event content "
|
1042 |
"can be changed, when collapsing is enabled."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: includes/options_helptexts.php:
|
1046 |
msgid "Text for \"Hide content\""
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/options_helptexts.php:
|
1050 |
msgid ""
|
1051 |
"With this option the displayed text for the link to hide the event content "
|
1052 |
"can be changed, when collapsing is enabled."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: includes/options_helptexts.php:
|
1056 |
msgid "Disable CSS file"
|
1057 |
msgstr "Estä CSS tiedosto"
|
1058 |
|
1059 |
-
#: includes/options_helptexts.php:
|
1060 |
#, php-format
|
1061 |
msgid "Disable the %1$s file."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: includes/options_helptexts.php:
|
1065 |
#, php-format
|
1066 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/options_helptexts.php:
|
1070 |
msgid ""
|
1071 |
"This normally only make sense if you have css conflicts with your theme and "
|
1072 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: includes/options_helptexts.php:
|
1076 |
msgid "Date format in edit form"
|
1077 |
msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
|
1078 |
|
1079 |
-
#: includes/options_helptexts.php:
|
1080 |
msgid ""
|
1081 |
"This option sets the displayed date format for the event date fields in the "
|
1082 |
"event new / edit form."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: includes/options_helptexts.php:
|
1086 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/options_helptexts.php:
|
1090 |
#, php-format
|
1091 |
msgid ""
|
1092 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: includes/options_helptexts.php:
|
1096 |
msgid "Enable RSS feed"
|
1097 |
msgstr "Salli RSS syöte"
|
1098 |
|
1099 |
-
#: includes/options_helptexts.php:
|
1100 |
msgid "Enable support for an event RSS feed"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: includes/options_helptexts.php:
|
1104 |
msgid "This option activates a RSS feed for the events."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid ""
|
1109 |
"You have to enable this option if you want to use one of the RSS feed "
|
1110 |
"features."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: includes/options_helptexts.php:
|
1114 |
msgid "Feed name"
|
1115 |
msgstr "Syötteen nimi"
|
1116 |
|
1117 |
-
#: includes/options_helptexts.php:
|
1118 |
#, php-format
|
1119 |
msgid "This option sets the feed name. The default value is %1$s."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
#, php-format
|
1124 |
msgid ""
|
1125 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1126 |
"enabled)."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
msgid "Feed Description"
|
1131 |
msgstr "Syötteen kuvaus"
|
1132 |
|
1133 |
-
#: includes/options_helptexts.php:
|
1134 |
#, php-format
|
1135 |
msgid "This options set the feed description. The default value is %1$s."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
msgid ""
|
1140 |
"This description will be used in the title for the feed link in the html "
|
1141 |
"head and for the description in the feed itself."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: includes/options_helptexts.php:
|
1145 |
msgid "Listed events"
|
1146 |
msgstr "Listatut tapahtumat"
|
1147 |
|
1148 |
-
#: includes/options_helptexts.php:
|
1149 |
msgid "Only show upcoming events in feed"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: includes/options_helptexts.php:
|
1153 |
msgid ""
|
1154 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/options_helptexts.php:
|
1162 |
msgid "Add RSS feed link in head"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: includes/options_helptexts.php:
|
1166 |
msgid "Add RSS feed link in the html head"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "This option adds a RSS feed in the html head for the events."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "There are 2 alternatives to include the RSS feed"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid ""
|
1179 |
"The first way is this option to include a link in the html head. This link "
|
1180 |
"will be recognized by browers or feed readers."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: includes/options_helptexts.php:
|
1184 |
#, php-format
|
1185 |
msgid ""
|
1186 |
"The second way is to include a visible feed link directly in the event list."
|
1187 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/options_helptexts.php:
|
1196 |
msgid "Position of the RSS feed link"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/options_helptexts.php:
|
1200 |
msgid "at the top (above the navigation bar)"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/options_helptexts.php:
|
1204 |
msgid "between navigation bar and events"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/options_helptexts.php:
|
1208 |
msgid "at the bottom"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/options_helptexts.php:
|
1212 |
msgid ""
|
1213 |
"This option specifies the position of the RSS feed link in the event list."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
-
#: includes/options_helptexts.php:
|
1218 |
#, php-format
|
1219 |
msgid ""
|
1220 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1221 |
" feed link."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: includes/options_helptexts.php:
|
1225 |
msgid "Align of the RSS feed link"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/options_helptexts.php:
|
1229 |
msgid "left"
|
1230 |
msgstr "vasen"
|
1231 |
|
1232 |
-
#: includes/options_helptexts.php:
|
1233 |
msgid "center"
|
1234 |
msgstr "keskitetty"
|
1235 |
|
1236 |
-
#: includes/options_helptexts.php:
|
1237 |
msgid "right"
|
1238 |
msgstr "oikea"
|
1239 |
|
1240 |
-
#: includes/options_helptexts.php:
|
1241 |
msgid ""
|
1242 |
"This option specifies the align of the RSS feed link in the event list."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: includes/options_helptexts.php:
|
1246 |
msgid "Feed link text"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: includes/options_helptexts.php:
|
1250 |
msgid ""
|
1251 |
"This option specifies the caption of the RSS feed link in the event list."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/options_helptexts.php:
|
1255 |
msgid ""
|
1256 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1257 |
"image."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: includes/options_helptexts.php:
|
1261 |
msgid "Feed link image"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: includes/options_helptexts.php:
|
1265 |
msgid "Show rss image in feed link"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: includes/options_helptexts.php:
|
1269 |
msgid ""
|
1270 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1271 |
" front of the text."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: includes/options_helptexts.php:
|
1275 |
msgid "Event Category handling"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options_helptexts.php:
|
1279 |
msgid "Use Post Categories"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options_helptexts.php:
|
1283 |
msgid ""
|
1284 |
"Do not maintain seperate categories for the events, and use the existing "
|
1285 |
"post categories instead."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: includes/options_helptexts.php:
|
1289 |
msgid "Attention"
|
1290 |
msgstr "Huomio"
|
1291 |
|
1292 |
-
#: includes/options_helptexts.php:
|
1293 |
msgid ""
|
1294 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1295 |
" switching page from here."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
#: includes/options.php:40
|
1299 |
-
msgid "
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1303 |
msgid "Hide content"
|
1304 |
msgstr ""
|
1305 |
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
14 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
34 |
msgid "no additional information available"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
38 |
msgid "Event List Settings"
|
39 |
msgstr "Tapahtuma listan asetukset"
|
40 |
|
57 |
msgstr[0] ""
|
58 |
msgstr[1] ""
|
59 |
|
60 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
61 |
msgid "General"
|
62 |
msgstr "Yleinen"
|
63 |
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:50
|
436 |
msgid "Import Events"
|
437 |
msgstr "Tuo tapahtumia"
|
438 |
|
439 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
440 |
msgid "Step"
|
441 |
msgstr "Vaihe"
|
442 |
|
443 |
+
#: admin/includes/admin-import.php:70
|
444 |
msgid "Set import file and options"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:73
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin/includes/admin-import.php:76
|
453 |
msgid "Example file"
|
454 |
msgstr "Esimerkki tiedosto"
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:77
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin/includes/admin-import.php:78
|
463 |
msgid "Note"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: admin/includes/admin-import.php:78
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
473 |
+
#: admin/includes/admin-import.php:106
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:86
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr "Tiedosto ei ole olemassa, yritä uudelleen."
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:94
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr "Tiedosto ei ole CSV-tiedosto."
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:123
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/includes/admin-import.php:126
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:132
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr ""
|
500 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
501 |
#: admin/includes/admin-import.php:161
|
502 |
msgid "Import successful!"
|
503 |
msgstr "Lisääminen onnistui!"
|
506 |
msgid "Go back to All Events"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:166
|
510 |
+
msgid "Import with errors!"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:167
|
514 |
+
#, php-format
|
515 |
+
msgid ""
|
516 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
520 |
#: includes/widget_helptexts.php:8
|
521 |
msgid "Title"
|
522 |
msgstr "Otsikko"
|
523 |
|
524 |
+
#: admin/includes/admin-import.php:175
|
525 |
msgid "Start Date"
|
526 |
msgstr "Alku päivämäärä"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:176
|
529 |
msgid "End Date"
|
530 |
msgstr "Loppu päivämäärä"
|
531 |
|
532 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
533 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
534 |
msgid "Time"
|
535 |
msgstr "Aika"
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
538 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
539 |
#: includes/options_helptexts.php:46
|
540 |
msgid "Location"
|
541 |
msgstr "Sijainti"
|
542 |
|
543 |
+
#: admin/includes/admin-import.php:179
|
544 |
msgid "Content"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/includes/admin-import.php:180
|
548 |
msgid "Category slugs"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/includes/admin-import.php:219
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
555 |
"missing or not correct!"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin/includes/admin-import.php:251
|
559 |
msgid "Import events"
|
560 |
msgstr "Tuo tapahtumia"
|
561 |
|
562 |
+
#: admin/includes/admin-import.php:252
|
563 |
msgid "Add additional categories"
|
564 |
msgstr "Lisää kategorioita"
|
565 |
|
566 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
567 |
msgid "Import"
|
568 |
msgstr "Tuo"
|
569 |
|
588 |
msgid "Event data"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: admin/includes/admin-new.php:80
|
592 |
msgid "Add Copy"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/includes/admin-new.php:84
|
596 |
msgid "Date"
|
597 |
msgstr "Päiväys"
|
598 |
|
599 |
+
#: admin/includes/admin-new.php:84
|
600 |
msgid "required"
|
601 |
msgstr "tarpeellinen"
|
602 |
|
603 |
+
#: admin/includes/admin-new.php:87
|
604 |
msgid "Multi-Day Event"
|
605 |
msgstr "Monipäiväinen tapahtuma"
|
606 |
|
607 |
+
#: admin/includes/admin-new.php:106
|
608 |
msgid "Event Title"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/includes/admin-new.php:121
|
612 |
msgid "Event Content"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
616 |
msgid "Event updated."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
620 |
msgid "View event"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: admin/includes/admin-new.php:184
|
624 |
#, php-format
|
625 |
msgid "Event restored to revision from %1$s"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: admin/includes/admin-new.php:185
|
629 |
msgid "Event published."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/includes/admin-new.php:187
|
633 |
msgid "Event submitted."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
637 |
+
#: admin/includes/admin-new.php:190
|
638 |
msgid "Preview event"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/includes/admin-new.php:188
|
642 |
#, php-format
|
643 |
msgid "Event scheduled for: %1$s>"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: admin/includes/admin-new.php:190
|
647 |
msgid "Event draft updated."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: admin/includes/admin-settings.php:71
|
651 |
msgid "Go to Event Category switching page"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: admin/includes/admin-settings.php:83
|
655 |
msgid "Frontend Settings"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: admin/includes/admin-settings.php:84
|
659 |
msgid "Admin Page Settings"
|
660 |
msgstr "Hallinnointisivun asetukset"
|
661 |
|
662 |
+
#: admin/includes/admin-settings.php:85
|
663 |
msgid "Feed Settings"
|
664 |
msgstr "Syöte asetukset"
|
665 |
|
666 |
+
#: admin/includes/admin-settings.php:86
|
667 |
msgid "Category Taxonomy"
|
668 |
msgstr ""
|
669 |
|
826 |
msgid "This value defines a range from the past to the previous day."
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/event.php:107
|
830 |
msgid "No valid start date provided"
|
831 |
msgstr ""
|
832 |
|
1035 |
msgstr ""
|
1036 |
|
1037 |
#: includes/options_helptexts.php:56
|
1038 |
+
msgid "Events permalink slug"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: includes/options_helptexts.php:57
|
1042 |
msgid ""
|
1043 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/options_helptexts.php:60
|
1047 |
+
msgid "Text for \"Show content\""
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/options_helptexts.php:61
|
1051 |
+
msgid ""
|
1052 |
"With this option the displayed text for the link to show the event content "
|
1053 |
"can be changed, when collapsing is enabled."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/options_helptexts.php:64
|
1057 |
msgid "Text for \"Hide content\""
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/options_helptexts.php:65
|
1061 |
msgid ""
|
1062 |
"With this option the displayed text for the link to hide the event content "
|
1063 |
"can be changed, when collapsing is enabled."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:68
|
1067 |
msgid "Disable CSS file"
|
1068 |
msgstr "Estä CSS tiedosto"
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:69
|
1071 |
#, php-format
|
1072 |
msgid "Disable the %1$s file."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: includes/options_helptexts.php:70
|
1076 |
#, php-format
|
1077 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:71
|
1081 |
msgid ""
|
1082 |
"This normally only make sense if you have css conflicts with your theme and "
|
1083 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:75
|
1087 |
msgid "Date format in edit form"
|
1088 |
msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:76
|
1091 |
msgid ""
|
1092 |
"This option sets the displayed date format for the event date fields in the "
|
1093 |
"event new / edit form."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: includes/options_helptexts.php:77
|
1097 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: includes/options_helptexts.php:78
|
1101 |
#, php-format
|
1102 |
msgid ""
|
1103 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1107 |
msgid "Enable RSS feed"
|
1108 |
msgstr "Salli RSS syöte"
|
1109 |
|
1110 |
+
#: includes/options_helptexts.php:83
|
1111 |
msgid "Enable support for an event RSS feed"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: includes/options_helptexts.php:84
|
1115 |
msgid "This option activates a RSS feed for the events."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/options_helptexts.php:85
|
1119 |
msgid ""
|
1120 |
"You have to enable this option if you want to use one of the RSS feed "
|
1121 |
"features."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/options_helptexts.php:88
|
1125 |
msgid "Feed name"
|
1126 |
msgstr "Syötteen nimi"
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:89
|
1129 |
#, php-format
|
1130 |
msgid "This option sets the feed name. The default value is %1$s."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/options_helptexts.php:90
|
1134 |
#, php-format
|
1135 |
msgid ""
|
1136 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1137 |
"enabled)."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: includes/options_helptexts.php:93
|
1141 |
msgid "Feed Description"
|
1142 |
msgstr "Syötteen kuvaus"
|
1143 |
|
1144 |
+
#: includes/options_helptexts.php:94
|
1145 |
#, php-format
|
1146 |
msgid "This options set the feed description. The default value is %1$s."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:95
|
1150 |
msgid ""
|
1151 |
"This description will be used in the title for the feed link in the html "
|
1152 |
"head and for the description in the feed itself."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/options_helptexts.php:98
|
1156 |
msgid "Listed events"
|
1157 |
msgstr "Listatut tapahtumat"
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:99
|
1160 |
msgid "Only show upcoming events in feed"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:100
|
1164 |
msgid ""
|
1165 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:101
|
1169 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/options_helptexts.php:104
|
1173 |
msgid "Add RSS feed link in head"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/options_helptexts.php:105
|
1177 |
msgid "Add RSS feed link in the html head"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: includes/options_helptexts.php:106
|
1181 |
msgid "This option adds a RSS feed in the html head for the events."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/options_helptexts.php:107
|
1185 |
msgid "There are 2 alternatives to include the RSS feed"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/options_helptexts.php:108
|
1189 |
msgid ""
|
1190 |
"The first way is this option to include a link in the html head. This link "
|
1191 |
"will be recognized by browers or feed readers."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/options_helptexts.php:109
|
1195 |
#, php-format
|
1196 |
msgid ""
|
1197 |
"The second way is to include a visible feed link directly in the event list."
|
1198 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:110
|
1202 |
#, php-format
|
1203 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: includes/options_helptexts.php:113
|
1207 |
msgid "Position of the RSS feed link"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: includes/options_helptexts.php:114
|
1211 |
msgid "at the top (above the navigation bar)"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: includes/options_helptexts.php:114
|
1215 |
msgid "between navigation bar and events"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: includes/options_helptexts.php:114
|
1219 |
msgid "at the bottom"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: includes/options_helptexts.php:115
|
1223 |
msgid ""
|
1224 |
"This option specifies the position of the RSS feed link in the event list."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1228 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1229 |
#, php-format
|
1230 |
msgid ""
|
1231 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1232 |
" feed link."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: includes/options_helptexts.php:119
|
1236 |
msgid "Align of the RSS feed link"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: includes/options_helptexts.php:120
|
1240 |
msgid "left"
|
1241 |
msgstr "vasen"
|
1242 |
|
1243 |
+
#: includes/options_helptexts.php:120
|
1244 |
msgid "center"
|
1245 |
msgstr "keskitetty"
|
1246 |
|
1247 |
+
#: includes/options_helptexts.php:120
|
1248 |
msgid "right"
|
1249 |
msgstr "oikea"
|
1250 |
|
1251 |
+
#: includes/options_helptexts.php:121
|
1252 |
msgid ""
|
1253 |
"This option specifies the align of the RSS feed link in the event list."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options_helptexts.php:125
|
1257 |
msgid "Feed link text"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: includes/options_helptexts.php:126
|
1261 |
msgid ""
|
1262 |
"This option specifies the caption of the RSS feed link in the event list."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:127
|
1266 |
msgid ""
|
1267 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1268 |
"image."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:131
|
1272 |
msgid "Feed link image"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:132
|
1276 |
msgid "Show rss image in feed link"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/options_helptexts.php:133
|
1280 |
msgid ""
|
1281 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1282 |
" front of the text."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options_helptexts.php:139
|
1286 |
msgid "Event Category handling"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/options_helptexts.php:140
|
1290 |
msgid "Use Post Categories"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options_helptexts.php:141
|
1294 |
msgid ""
|
1295 |
"Do not maintain seperate categories for the events, and use the existing "
|
1296 |
"post categories instead."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:142
|
1300 |
msgid "Attention"
|
1301 |
msgstr "Huomio"
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:143
|
1304 |
msgid ""
|
1305 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1306 |
" switching page from here."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
#: includes/options.php:40
|
1310 |
+
msgid "events"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: includes/options.php:41
|
1314 |
+
msgid "Show content"
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: includes/options.php:42
|
1318 |
msgid "Hide content"
|
1319 |
msgstr ""
|
1320 |
|
languages/event-list-fr_FR.po
CHANGED
@@ -10,8 +10,8 @@ msgid ""
|
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
-
"POT-Creation-Date: 2018-
|
14 |
-
"PO-Revision-Date: 2018-
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
@@ -34,7 +34,7 @@ msgstr ""
|
|
34 |
msgid "no additional information available"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
38 |
msgid "Event List Settings"
|
39 |
msgstr "Préférences"
|
40 |
|
@@ -57,7 +57,7 @@ msgid_plural "%s Events"
|
|
57 |
msgstr[0] ""
|
58 |
msgstr[1] ""
|
59 |
|
60 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
61 |
msgid "General"
|
62 |
msgstr "Général"
|
63 |
|
@@ -432,80 +432,72 @@ msgstr ""
|
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
436 |
msgid "Import Events"
|
437 |
msgstr "Importer évènements."
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Step"
|
441 |
msgstr "Etape"
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
msgid "Set import file and options"
|
445 |
msgstr "Sélection du fichier à importer et des options."
|
446 |
|
447 |
-
#: admin/includes/admin-import.php:
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
msgid "Example file"
|
454 |
msgstr "Fichier d'exemple"
|
455 |
|
456 |
-
#: admin/includes/admin-import.php:
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr "Vous pouvez télécharger un fichier d'exemble %1$sici%2$s (Le séparateur du fichier CSV est une virgule!)"
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid "Note"
|
464 |
msgstr "Remarque"
|
465 |
|
466 |
-
#: admin/includes/admin-import.php:
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr "Ne pas changer la colonne d'entête et de séparateur (deux premières lignes), sinon l'import de fonctionnera pas!"
|
471 |
|
472 |
-
#: admin/includes/admin-import.php:
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr "Désolé, il y a eu une erreur."
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr "Le fichier n'existe pas, essayez encore."
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr "Le fichier n'est pas un fichier CSV valide."
|
484 |
|
485 |
-
#: admin/includes/admin-import.php:
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr "Si vous voulez conserver ces catégories, merci de les créer au préalable et de faire l'import en suivant."
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:156
|
502 |
-
msgid "Import with errors!"
|
503 |
-
msgstr "Importé avec des erreurs!"
|
504 |
-
|
505 |
-
#: admin/includes/admin-import.php:157
|
506 |
-
msgid "Sorry, an error occurred during import!"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
#: admin/includes/admin-import.php:161
|
510 |
msgid "Import successful!"
|
511 |
msgstr "Importation réussis!"
|
@@ -514,54 +506,64 @@ msgstr "Importation réussis!"
|
|
514 |
msgid "Go back to All Events"
|
515 |
msgstr "Retour à la liste des évènements"
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
#: includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr "Titre"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "Start Date"
|
524 |
msgstr "Date de début"
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
msgid "End Date"
|
528 |
msgstr "Date de fin"
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
532 |
msgid "Time"
|
533 |
msgstr "Heure"
|
534 |
|
535 |
-
#: admin/includes/admin-import.php:
|
536 |
-
#: admin/includes/admin-new.php:
|
537 |
#: includes/options_helptexts.php:46
|
538 |
msgid "Location"
|
539 |
msgstr "Lieu"
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Content"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
546 |
msgid "Category slugs"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: admin/includes/admin-import.php:
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
553 |
"missing or not correct!"
|
554 |
msgstr "Une erreur s'est produite à la ligne %1$s lors de la lecture du fichier CSV : la ligne d'entête est manquante ou incorrecte."
|
555 |
|
556 |
-
#: admin/includes/admin-import.php:
|
557 |
msgid "Import events"
|
558 |
msgstr "Importer des événements"
|
559 |
|
560 |
-
#: admin/includes/admin-import.php:
|
561 |
msgid "Add additional categories"
|
562 |
msgstr "Ajouter plus de catégories"
|
563 |
|
564 |
-
#: admin/includes/admin-import.php:
|
565 |
msgid "Import"
|
566 |
msgstr "Importer"
|
567 |
|
@@ -586,82 +588,82 @@ msgstr ""
|
|
586 |
msgid "Event data"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: admin/includes/admin-new.php:
|
590 |
msgid "Add Copy"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: admin/includes/admin-new.php:
|
594 |
msgid "Date"
|
595 |
msgstr "Date"
|
596 |
|
597 |
-
#: admin/includes/admin-new.php:
|
598 |
msgid "required"
|
599 |
msgstr "Requis"
|
600 |
|
601 |
-
#: admin/includes/admin-new.php:
|
602 |
msgid "Multi-Day Event"
|
603 |
msgstr "Evènement sur plusieurs jours"
|
604 |
|
605 |
-
#: admin/includes/admin-new.php:
|
606 |
msgid "Event Title"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: admin/includes/admin-new.php:
|
610 |
msgid "Event Content"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: admin/includes/admin-new.php:
|
614 |
msgid "Event updated."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: admin/includes/admin-new.php:
|
618 |
msgid "View event"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: admin/includes/admin-new.php:
|
622 |
#, php-format
|
623 |
msgid "Event restored to revision from %1$s"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: admin/includes/admin-new.php:
|
627 |
msgid "Event published."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: admin/includes/admin-new.php:
|
631 |
msgid "Event submitted."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/includes/admin-new.php:
|
635 |
-
#: admin/includes/admin-new.php:
|
636 |
msgid "Preview event"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: admin/includes/admin-new.php:
|
640 |
#, php-format
|
641 |
msgid "Event scheduled for: %1$s>"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/includes/admin-new.php:
|
645 |
msgid "Event draft updated."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: admin/includes/admin-settings.php:
|
649 |
msgid "Go to Event Category switching page"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: admin/includes/admin-settings.php:
|
653 |
msgid "Frontend Settings"
|
654 |
msgstr "Frontend Préférences"
|
655 |
|
656 |
-
#: admin/includes/admin-settings.php:
|
657 |
msgid "Admin Page Settings"
|
658 |
msgstr "Administration Préférences"
|
659 |
|
660 |
-
#: admin/includes/admin-settings.php:
|
661 |
msgid "Feed Settings"
|
662 |
msgstr "Flux RSS Préférences"
|
663 |
|
664 |
-
#: admin/includes/admin-settings.php:
|
665 |
msgid "Category Taxonomy"
|
666 |
msgstr ""
|
667 |
|
@@ -824,7 +826,7 @@ msgstr "Passé"
|
|
824 |
msgid "This value defines a range from the past to the previous day."
|
825 |
msgstr "Cette valeur définie une période antérieur à la date du jour."
|
826 |
|
827 |
-
#: includes/event.php:
|
828 |
msgid "No valid start date provided"
|
829 |
msgstr ""
|
830 |
|
@@ -1033,273 +1035,286 @@ msgid ""
|
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: includes/options_helptexts.php:56
|
1036 |
-
msgid "
|
1037 |
msgstr ""
|
1038 |
|
1039 |
#: includes/options_helptexts.php:57
|
1040 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
"With this option the displayed text for the link to show the event content "
|
1042 |
"can be changed, when collapsing is enabled."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: includes/options_helptexts.php:
|
1046 |
msgid "Text for \"Hide content\""
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/options_helptexts.php:
|
1050 |
msgid ""
|
1051 |
"With this option the displayed text for the link to hide the event content "
|
1052 |
"can be changed, when collapsing is enabled."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: includes/options_helptexts.php:
|
1056 |
msgid "Disable CSS file"
|
1057 |
msgstr "Désactiver le fichier CSS"
|
1058 |
|
1059 |
-
#: includes/options_helptexts.php:
|
1060 |
#, php-format
|
1061 |
msgid "Disable the %1$s file."
|
1062 |
msgstr "Désactiver le fichier %1$s."
|
1063 |
|
1064 |
-
#: includes/options_helptexts.php:
|
1065 |
#, php-format
|
1066 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1067 |
msgstr "Avec cette option vous pouvez désactiver l'inclusion du fichier CSS %1$s."
|
1068 |
|
1069 |
-
#: includes/options_helptexts.php:
|
1070 |
msgid ""
|
1071 |
"This normally only make sense if you have css conflicts with your theme and "
|
1072 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1073 |
msgstr "Cela n'a de sens que si vous avez un conflit de CSS avec votre theme et voulez définir tous les styles CSS à un autre endroit (I.E. dans le CSS de votre thème)."
|
1074 |
|
1075 |
-
#: includes/options_helptexts.php:
|
1076 |
msgid "Date format in edit form"
|
1077 |
msgstr "Format de la date dans le formulaire d'édition."
|
1078 |
|
1079 |
-
#: includes/options_helptexts.php:
|
1080 |
msgid ""
|
1081 |
"This option sets the displayed date format for the event date fields in the "
|
1082 |
"event new / edit form."
|
1083 |
msgstr "Cette option définie le format de la date affiché dans le champ date pour le formulaire d'ajout/édition d'évènements."
|
1084 |
|
1085 |
-
#: includes/options_helptexts.php:
|
1086 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/options_helptexts.php:
|
1090 |
#, php-format
|
1091 |
msgid ""
|
1092 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1093 |
msgstr "Toutes les options disponibles pour spécifier le format de la date peut être trouvé %1$sici%2$s"
|
1094 |
|
1095 |
-
#: includes/options_helptexts.php:
|
1096 |
msgid "Enable RSS feed"
|
1097 |
msgstr "Activer flux RSS"
|
1098 |
|
1099 |
-
#: includes/options_helptexts.php:
|
1100 |
msgid "Enable support for an event RSS feed"
|
1101 |
msgstr "Activer le support pour un flux RSS des évènements"
|
1102 |
|
1103 |
-
#: includes/options_helptexts.php:
|
1104 |
msgid "This option activates a RSS feed for the events."
|
1105 |
msgstr "Cette option active un flux RSS pour les événements"
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid ""
|
1109 |
"You have to enable this option if you want to use one of the RSS feed "
|
1110 |
"features."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: includes/options_helptexts.php:
|
1114 |
msgid "Feed name"
|
1115 |
msgstr "Nom du flux"
|
1116 |
|
1117 |
-
#: includes/options_helptexts.php:
|
1118 |
#, php-format
|
1119 |
msgid "This option sets the feed name. The default value is %1$s."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
#, php-format
|
1124 |
msgid ""
|
1125 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1126 |
"enabled)."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
msgid "Feed Description"
|
1131 |
msgstr "Description du Flux"
|
1132 |
|
1133 |
-
#: includes/options_helptexts.php:
|
1134 |
#, php-format
|
1135 |
msgid "This options set the feed description. The default value is %1$s."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
msgid ""
|
1140 |
"This description will be used in the title for the feed link in the html "
|
1141 |
"head and for the description in the feed itself."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: includes/options_helptexts.php:
|
1145 |
msgid "Listed events"
|
1146 |
msgstr "Evènements listés"
|
1147 |
|
1148 |
-
#: includes/options_helptexts.php:
|
1149 |
msgid "Only show upcoming events in feed"
|
1150 |
msgstr "Voir seulement les prochains évènements dans le flux."
|
1151 |
|
1152 |
-
#: includes/options_helptexts.php:
|
1153 |
msgid ""
|
1154 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/options_helptexts.php:
|
1162 |
msgid "Add RSS feed link in head"
|
1163 |
msgstr "Ajouter le lien du flux RSS dans l'entête de la page"
|
1164 |
|
1165 |
-
#: includes/options_helptexts.php:
|
1166 |
msgid "Add RSS feed link in the html head"
|
1167 |
msgstr "Ajouter le lien vers le flux dans l'entête de la page HTML"
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "This option adds a RSS feed in the html head for the events."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "There are 2 alternatives to include the RSS feed"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid ""
|
1179 |
"The first way is this option to include a link in the html head. This link "
|
1180 |
"will be recognized by browers or feed readers."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: includes/options_helptexts.php:
|
1184 |
#, php-format
|
1185 |
msgid ""
|
1186 |
"The second way is to include a visible feed link directly in the event list."
|
1187 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/options_helptexts.php:
|
1196 |
msgid "Position of the RSS feed link"
|
1197 |
msgstr "Position du flux RSS"
|
1198 |
|
1199 |
-
#: includes/options_helptexts.php:
|
1200 |
msgid "at the top (above the navigation bar)"
|
1201 |
msgstr "En haut (au dessus du menu)"
|
1202 |
|
1203 |
-
#: includes/options_helptexts.php:
|
1204 |
msgid "between navigation bar and events"
|
1205 |
msgstr "Entre le menu et les événements"
|
1206 |
|
1207 |
-
#: includes/options_helptexts.php:
|
1208 |
msgid "at the bottom"
|
1209 |
msgstr "En bas"
|
1210 |
|
1211 |
-
#: includes/options_helptexts.php:
|
1212 |
msgid ""
|
1213 |
"This option specifies the position of the RSS feed link in the event list."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
-
#: includes/options_helptexts.php:
|
1218 |
#, php-format
|
1219 |
msgid ""
|
1220 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1221 |
" feed link."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: includes/options_helptexts.php:
|
1225 |
msgid "Align of the RSS feed link"
|
1226 |
msgstr "Alignement du lien RSS"
|
1227 |
|
1228 |
-
#: includes/options_helptexts.php:
|
1229 |
msgid "left"
|
1230 |
msgstr "gauche"
|
1231 |
|
1232 |
-
#: includes/options_helptexts.php:
|
1233 |
msgid "center"
|
1234 |
msgstr "centré"
|
1235 |
|
1236 |
-
#: includes/options_helptexts.php:
|
1237 |
msgid "right"
|
1238 |
msgstr "droite"
|
1239 |
|
1240 |
-
#: includes/options_helptexts.php:
|
1241 |
msgid ""
|
1242 |
"This option specifies the align of the RSS feed link in the event list."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: includes/options_helptexts.php:
|
1246 |
msgid "Feed link text"
|
1247 |
msgstr "Text du lien du flux"
|
1248 |
|
1249 |
-
#: includes/options_helptexts.php:
|
1250 |
msgid ""
|
1251 |
"This option specifies the caption of the RSS feed link in the event list."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/options_helptexts.php:
|
1255 |
msgid ""
|
1256 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1257 |
"image."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: includes/options_helptexts.php:
|
1261 |
msgid "Feed link image"
|
1262 |
msgstr "Image du flux RSS"
|
1263 |
|
1264 |
-
#: includes/options_helptexts.php:
|
1265 |
msgid "Show rss image in feed link"
|
1266 |
msgstr "Afficher l'image dans le lien vers le flux RSS"
|
1267 |
|
1268 |
-
#: includes/options_helptexts.php:
|
1269 |
msgid ""
|
1270 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1271 |
" front of the text."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: includes/options_helptexts.php:
|
1275 |
msgid "Event Category handling"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options_helptexts.php:
|
1279 |
msgid "Use Post Categories"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options_helptexts.php:
|
1283 |
msgid ""
|
1284 |
"Do not maintain seperate categories for the events, and use the existing "
|
1285 |
"post categories instead."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: includes/options_helptexts.php:
|
1289 |
msgid "Attention"
|
1290 |
msgstr "Attention"
|
1291 |
|
1292 |
-
#: includes/options_helptexts.php:
|
1293 |
msgid ""
|
1294 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1295 |
" switching page from here."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
#: includes/options.php:40
|
1299 |
-
msgid "
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1303 |
msgid "Hide content"
|
1304 |
msgstr ""
|
1305 |
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
14 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
34 |
msgid "no additional information available"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
38 |
msgid "Event List Settings"
|
39 |
msgstr "Préférences"
|
40 |
|
57 |
msgstr[0] ""
|
58 |
msgstr[1] ""
|
59 |
|
60 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
61 |
msgid "General"
|
62 |
msgstr "Général"
|
63 |
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:50
|
436 |
msgid "Import Events"
|
437 |
msgstr "Importer évènements."
|
438 |
|
439 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
440 |
msgid "Step"
|
441 |
msgstr "Etape"
|
442 |
|
443 |
+
#: admin/includes/admin-import.php:70
|
444 |
msgid "Set import file and options"
|
445 |
msgstr "Sélection du fichier à importer et des options."
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:73
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin/includes/admin-import.php:76
|
453 |
msgid "Example file"
|
454 |
msgstr "Fichier d'exemple"
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:77
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr "Vous pouvez télécharger un fichier d'exemble %1$sici%2$s (Le séparateur du fichier CSV est une virgule!)"
|
461 |
|
462 |
+
#: admin/includes/admin-import.php:78
|
463 |
msgid "Note"
|
464 |
msgstr "Remarque"
|
465 |
|
466 |
+
#: admin/includes/admin-import.php:78
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr "Ne pas changer la colonne d'entête et de séparateur (deux premières lignes), sinon l'import de fonctionnera pas!"
|
471 |
|
472 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
473 |
+
#: admin/includes/admin-import.php:106
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr "Désolé, il y a eu une erreur."
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:86
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr "Le fichier n'existe pas, essayez encore."
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:94
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr "Le fichier n'est pas un fichier CSV valide."
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:123
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/includes/admin-import.php:126
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:132
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr "Si vous voulez conserver ces catégories, merci de les créer au préalable et de faire l'import en suivant."
|
500 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
501 |
#: admin/includes/admin-import.php:161
|
502 |
msgid "Import successful!"
|
503 |
msgstr "Importation réussis!"
|
506 |
msgid "Go back to All Events"
|
507 |
msgstr "Retour à la liste des évènements"
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:166
|
510 |
+
msgid "Import with errors!"
|
511 |
+
msgstr "Importé avec des erreurs!"
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:167
|
514 |
+
#, php-format
|
515 |
+
msgid ""
|
516 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
520 |
#: includes/widget_helptexts.php:8
|
521 |
msgid "Title"
|
522 |
msgstr "Titre"
|
523 |
|
524 |
+
#: admin/includes/admin-import.php:175
|
525 |
msgid "Start Date"
|
526 |
msgstr "Date de début"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:176
|
529 |
msgid "End Date"
|
530 |
msgstr "Date de fin"
|
531 |
|
532 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
533 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
534 |
msgid "Time"
|
535 |
msgstr "Heure"
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
538 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
539 |
#: includes/options_helptexts.php:46
|
540 |
msgid "Location"
|
541 |
msgstr "Lieu"
|
542 |
|
543 |
+
#: admin/includes/admin-import.php:179
|
544 |
msgid "Content"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/includes/admin-import.php:180
|
548 |
msgid "Category slugs"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/includes/admin-import.php:219
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
555 |
"missing or not correct!"
|
556 |
msgstr "Une erreur s'est produite à la ligne %1$s lors de la lecture du fichier CSV : la ligne d'entête est manquante ou incorrecte."
|
557 |
|
558 |
+
#: admin/includes/admin-import.php:251
|
559 |
msgid "Import events"
|
560 |
msgstr "Importer des événements"
|
561 |
|
562 |
+
#: admin/includes/admin-import.php:252
|
563 |
msgid "Add additional categories"
|
564 |
msgstr "Ajouter plus de catégories"
|
565 |
|
566 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
567 |
msgid "Import"
|
568 |
msgstr "Importer"
|
569 |
|
588 |
msgid "Event data"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: admin/includes/admin-new.php:80
|
592 |
msgid "Add Copy"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/includes/admin-new.php:84
|
596 |
msgid "Date"
|
597 |
msgstr "Date"
|
598 |
|
599 |
+
#: admin/includes/admin-new.php:84
|
600 |
msgid "required"
|
601 |
msgstr "Requis"
|
602 |
|
603 |
+
#: admin/includes/admin-new.php:87
|
604 |
msgid "Multi-Day Event"
|
605 |
msgstr "Evènement sur plusieurs jours"
|
606 |
|
607 |
+
#: admin/includes/admin-new.php:106
|
608 |
msgid "Event Title"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/includes/admin-new.php:121
|
612 |
msgid "Event Content"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
616 |
msgid "Event updated."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
620 |
msgid "View event"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: admin/includes/admin-new.php:184
|
624 |
#, php-format
|
625 |
msgid "Event restored to revision from %1$s"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: admin/includes/admin-new.php:185
|
629 |
msgid "Event published."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/includes/admin-new.php:187
|
633 |
msgid "Event submitted."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
637 |
+
#: admin/includes/admin-new.php:190
|
638 |
msgid "Preview event"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/includes/admin-new.php:188
|
642 |
#, php-format
|
643 |
msgid "Event scheduled for: %1$s>"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: admin/includes/admin-new.php:190
|
647 |
msgid "Event draft updated."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: admin/includes/admin-settings.php:71
|
651 |
msgid "Go to Event Category switching page"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: admin/includes/admin-settings.php:83
|
655 |
msgid "Frontend Settings"
|
656 |
msgstr "Frontend Préférences"
|
657 |
|
658 |
+
#: admin/includes/admin-settings.php:84
|
659 |
msgid "Admin Page Settings"
|
660 |
msgstr "Administration Préférences"
|
661 |
|
662 |
+
#: admin/includes/admin-settings.php:85
|
663 |
msgid "Feed Settings"
|
664 |
msgstr "Flux RSS Préférences"
|
665 |
|
666 |
+
#: admin/includes/admin-settings.php:86
|
667 |
msgid "Category Taxonomy"
|
668 |
msgstr ""
|
669 |
|
826 |
msgid "This value defines a range from the past to the previous day."
|
827 |
msgstr "Cette valeur définie une période antérieur à la date du jour."
|
828 |
|
829 |
+
#: includes/event.php:107
|
830 |
msgid "No valid start date provided"
|
831 |
msgstr ""
|
832 |
|
1035 |
msgstr ""
|
1036 |
|
1037 |
#: includes/options_helptexts.php:56
|
1038 |
+
msgid "Events permalink slug"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: includes/options_helptexts.php:57
|
1042 |
msgid ""
|
1043 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/options_helptexts.php:60
|
1047 |
+
msgid "Text for \"Show content\""
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/options_helptexts.php:61
|
1051 |
+
msgid ""
|
1052 |
"With this option the displayed text for the link to show the event content "
|
1053 |
"can be changed, when collapsing is enabled."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/options_helptexts.php:64
|
1057 |
msgid "Text for \"Hide content\""
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/options_helptexts.php:65
|
1061 |
msgid ""
|
1062 |
"With this option the displayed text for the link to hide the event content "
|
1063 |
"can be changed, when collapsing is enabled."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:68
|
1067 |
msgid "Disable CSS file"
|
1068 |
msgstr "Désactiver le fichier CSS"
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:69
|
1071 |
#, php-format
|
1072 |
msgid "Disable the %1$s file."
|
1073 |
msgstr "Désactiver le fichier %1$s."
|
1074 |
|
1075 |
+
#: includes/options_helptexts.php:70
|
1076 |
#, php-format
|
1077 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1078 |
msgstr "Avec cette option vous pouvez désactiver l'inclusion du fichier CSS %1$s."
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:71
|
1081 |
msgid ""
|
1082 |
"This normally only make sense if you have css conflicts with your theme and "
|
1083 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1084 |
msgstr "Cela n'a de sens que si vous avez un conflit de CSS avec votre theme et voulez définir tous les styles CSS à un autre endroit (I.E. dans le CSS de votre thème)."
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:75
|
1087 |
msgid "Date format in edit form"
|
1088 |
msgstr "Format de la date dans le formulaire d'édition."
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:76
|
1091 |
msgid ""
|
1092 |
"This option sets the displayed date format for the event date fields in the "
|
1093 |
"event new / edit form."
|
1094 |
msgstr "Cette option définie le format de la date affiché dans le champ date pour le formulaire d'ajout/édition d'évènements."
|
1095 |
|
1096 |
+
#: includes/options_helptexts.php:77
|
1097 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: includes/options_helptexts.php:78
|
1101 |
#, php-format
|
1102 |
msgid ""
|
1103 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1104 |
msgstr "Toutes les options disponibles pour spécifier le format de la date peut être trouvé %1$sici%2$s"
|
1105 |
|
1106 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1107 |
msgid "Enable RSS feed"
|
1108 |
msgstr "Activer flux RSS"
|
1109 |
|
1110 |
+
#: includes/options_helptexts.php:83
|
1111 |
msgid "Enable support for an event RSS feed"
|
1112 |
msgstr "Activer le support pour un flux RSS des évènements"
|
1113 |
|
1114 |
+
#: includes/options_helptexts.php:84
|
1115 |
msgid "This option activates a RSS feed for the events."
|
1116 |
msgstr "Cette option active un flux RSS pour les événements"
|
1117 |
|
1118 |
+
#: includes/options_helptexts.php:85
|
1119 |
msgid ""
|
1120 |
"You have to enable this option if you want to use one of the RSS feed "
|
1121 |
"features."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/options_helptexts.php:88
|
1125 |
msgid "Feed name"
|
1126 |
msgstr "Nom du flux"
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:89
|
1129 |
#, php-format
|
1130 |
msgid "This option sets the feed name. The default value is %1$s."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/options_helptexts.php:90
|
1134 |
#, php-format
|
1135 |
msgid ""
|
1136 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1137 |
"enabled)."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: includes/options_helptexts.php:93
|
1141 |
msgid "Feed Description"
|
1142 |
msgstr "Description du Flux"
|
1143 |
|
1144 |
+
#: includes/options_helptexts.php:94
|
1145 |
#, php-format
|
1146 |
msgid "This options set the feed description. The default value is %1$s."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:95
|
1150 |
msgid ""
|
1151 |
"This description will be used in the title for the feed link in the html "
|
1152 |
"head and for the description in the feed itself."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/options_helptexts.php:98
|
1156 |
msgid "Listed events"
|
1157 |
msgstr "Evènements listés"
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:99
|
1160 |
msgid "Only show upcoming events in feed"
|
1161 |
msgstr "Voir seulement les prochains évènements dans le flux."
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:100
|
1164 |
msgid ""
|
1165 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:101
|
1169 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/options_helptexts.php:104
|
1173 |
msgid "Add RSS feed link in head"
|
1174 |
msgstr "Ajouter le lien du flux RSS dans l'entête de la page"
|
1175 |
|
1176 |
+
#: includes/options_helptexts.php:105
|
1177 |
msgid "Add RSS feed link in the html head"
|
1178 |
msgstr "Ajouter le lien vers le flux dans l'entête de la page HTML"
|
1179 |
|
1180 |
+
#: includes/options_helptexts.php:106
|
1181 |
msgid "This option adds a RSS feed in the html head for the events."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/options_helptexts.php:107
|
1185 |
msgid "There are 2 alternatives to include the RSS feed"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/options_helptexts.php:108
|
1189 |
msgid ""
|
1190 |
"The first way is this option to include a link in the html head. This link "
|
1191 |
"will be recognized by browers or feed readers."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/options_helptexts.php:109
|
1195 |
#, php-format
|
1196 |
msgid ""
|
1197 |
"The second way is to include a visible feed link directly in the event list."
|
1198 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:110
|
1202 |
#, php-format
|
1203 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: includes/options_helptexts.php:113
|
1207 |
msgid "Position of the RSS feed link"
|
1208 |
msgstr "Position du flux RSS"
|
1209 |
|
1210 |
+
#: includes/options_helptexts.php:114
|
1211 |
msgid "at the top (above the navigation bar)"
|
1212 |
msgstr "En haut (au dessus du menu)"
|
1213 |
|
1214 |
+
#: includes/options_helptexts.php:114
|
1215 |
msgid "between navigation bar and events"
|
1216 |
msgstr "Entre le menu et les événements"
|
1217 |
|
1218 |
+
#: includes/options_helptexts.php:114
|
1219 |
msgid "at the bottom"
|
1220 |
msgstr "En bas"
|
1221 |
|
1222 |
+
#: includes/options_helptexts.php:115
|
1223 |
msgid ""
|
1224 |
"This option specifies the position of the RSS feed link in the event list."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1228 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1229 |
#, php-format
|
1230 |
msgid ""
|
1231 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1232 |
" feed link."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: includes/options_helptexts.php:119
|
1236 |
msgid "Align of the RSS feed link"
|
1237 |
msgstr "Alignement du lien RSS"
|
1238 |
|
1239 |
+
#: includes/options_helptexts.php:120
|
1240 |
msgid "left"
|
1241 |
msgstr "gauche"
|
1242 |
|
1243 |
+
#: includes/options_helptexts.php:120
|
1244 |
msgid "center"
|
1245 |
msgstr "centré"
|
1246 |
|
1247 |
+
#: includes/options_helptexts.php:120
|
1248 |
msgid "right"
|
1249 |
msgstr "droite"
|
1250 |
|
1251 |
+
#: includes/options_helptexts.php:121
|
1252 |
msgid ""
|
1253 |
"This option specifies the align of the RSS feed link in the event list."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options_helptexts.php:125
|
1257 |
msgid "Feed link text"
|
1258 |
msgstr "Text du lien du flux"
|
1259 |
|
1260 |
+
#: includes/options_helptexts.php:126
|
1261 |
msgid ""
|
1262 |
"This option specifies the caption of the RSS feed link in the event list."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:127
|
1266 |
msgid ""
|
1267 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1268 |
"image."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:131
|
1272 |
msgid "Feed link image"
|
1273 |
msgstr "Image du flux RSS"
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:132
|
1276 |
msgid "Show rss image in feed link"
|
1277 |
msgstr "Afficher l'image dans le lien vers le flux RSS"
|
1278 |
|
1279 |
+
#: includes/options_helptexts.php:133
|
1280 |
msgid ""
|
1281 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1282 |
" front of the text."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options_helptexts.php:139
|
1286 |
msgid "Event Category handling"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/options_helptexts.php:140
|
1290 |
msgid "Use Post Categories"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options_helptexts.php:141
|
1294 |
msgid ""
|
1295 |
"Do not maintain seperate categories for the events, and use the existing "
|
1296 |
"post categories instead."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:142
|
1300 |
msgid "Attention"
|
1301 |
msgstr "Attention"
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:143
|
1304 |
msgid ""
|
1305 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1306 |
" switching page from here."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
#: includes/options.php:40
|
1310 |
+
msgid "events"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: includes/options.php:41
|
1314 |
+
msgid "Show content"
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: includes/options.php:42
|
1318 |
msgid "Hide content"
|
1319 |
msgstr ""
|
1320 |
|
languages/event-list-id_ID.po
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
-
"POT-Creation-Date: 2018-
|
12 |
-
"PO-Revision-Date: 2018-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/mibuthu/wp-event-list/language/id_ID/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -32,7 +32,7 @@ msgstr ""
|
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Pengaturan Daftar Acara"
|
38 |
|
@@ -54,7 +54,7 @@ msgid "%s Event"
|
|
54 |
msgid_plural "%s Events"
|
55 |
msgstr[0] ""
|
56 |
|
57 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
58 |
msgid "General"
|
59 |
msgstr "Umum"
|
60 |
|
@@ -429,80 +429,72 @@ msgstr ""
|
|
429 |
msgid "none"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/includes/admin-import.php:
|
433 |
msgid "Import Events"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: admin/includes/admin-import.php:
|
437 |
msgid "Step"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin/includes/admin-import.php:
|
441 |
msgid "Set import file and options"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin/includes/admin-import.php:
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin/includes/admin-import.php:
|
450 |
msgid "Example file"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin/includes/admin-import.php:
|
454 |
#, php-format
|
455 |
msgid ""
|
456 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin/includes/admin-import.php:
|
460 |
msgid "Note"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin/includes/admin-import.php:
|
464 |
msgid ""
|
465 |
"Do not change the column header and separator line (first two lines), "
|
466 |
"otherwise the import will fail!"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: admin/includes/admin-import.php:
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
msgid "Sorry, there has been an error."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/includes/admin-import.php:
|
475 |
msgid "The file does not exist, please try again."
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/includes/admin-import.php:
|
479 |
msgid "The file is not a CSV file."
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: admin/includes/admin-import.php:
|
483 |
msgid "Events review and additonal category selection"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: admin/includes/admin-import.php:
|
487 |
msgid ""
|
488 |
"Warning: The following category slugs are not available and will be removed "
|
489 |
"from the imported events:"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: admin/includes/admin-import.php:
|
493 |
msgid ""
|
494 |
"If you want to keep these categories, please create these Categories first "
|
495 |
"and do the import afterwards."
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: admin/includes/admin-import.php:156
|
499 |
-
msgid "Import with errors!"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: admin/includes/admin-import.php:157
|
503 |
-
msgid "Sorry, an error occurred during import!"
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
#: admin/includes/admin-import.php:161
|
507 |
msgid "Import successful!"
|
508 |
msgstr ""
|
@@ -511,54 +503,64 @@ msgstr ""
|
|
511 |
msgid "Go back to All Events"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
515 |
#: includes/widget_helptexts.php:8
|
516 |
msgid "Title"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin/includes/admin-import.php:
|
520 |
msgid "Start Date"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin/includes/admin-import.php:
|
524 |
msgid "End Date"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: admin/includes/admin-import.php:
|
528 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
529 |
msgid "Time"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/includes/admin-import.php:
|
533 |
-
#: admin/includes/admin-new.php:
|
534 |
#: includes/options_helptexts.php:46
|
535 |
msgid "Location"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: admin/includes/admin-import.php:
|
539 |
msgid "Content"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: admin/includes/admin-import.php:
|
543 |
msgid "Category slugs"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: admin/includes/admin-import.php:
|
547 |
#, php-format
|
548 |
msgid ""
|
549 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
550 |
"missing or not correct!"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: admin/includes/admin-import.php:
|
554 |
msgid "Import events"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: admin/includes/admin-import.php:
|
558 |
msgid "Add additional categories"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: admin/includes/admin-import.php:
|
562 |
msgid "Import"
|
563 |
msgstr ""
|
564 |
|
@@ -583,82 +585,82 @@ msgstr ""
|
|
583 |
msgid "Event data"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: admin/includes/admin-new.php:
|
587 |
msgid "Add Copy"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: admin/includes/admin-new.php:
|
591 |
msgid "Date"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: admin/includes/admin-new.php:
|
595 |
msgid "required"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: admin/includes/admin-new.php:
|
599 |
msgid "Multi-Day Event"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: admin/includes/admin-new.php:
|
603 |
msgid "Event Title"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: admin/includes/admin-new.php:
|
607 |
msgid "Event Content"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: admin/includes/admin-new.php:
|
611 |
msgid "Event updated."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: admin/includes/admin-new.php:
|
615 |
msgid "View event"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: admin/includes/admin-new.php:
|
619 |
#, php-format
|
620 |
msgid "Event restored to revision from %1$s"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: admin/includes/admin-new.php:
|
624 |
msgid "Event published."
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: admin/includes/admin-new.php:
|
628 |
msgid "Event submitted."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: admin/includes/admin-new.php:
|
632 |
-
#: admin/includes/admin-new.php:
|
633 |
msgid "Preview event"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: admin/includes/admin-new.php:
|
637 |
#, php-format
|
638 |
msgid "Event scheduled for: %1$s>"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: admin/includes/admin-new.php:
|
642 |
msgid "Event draft updated."
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: admin/includes/admin-settings.php:
|
646 |
msgid "Go to Event Category switching page"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: admin/includes/admin-settings.php:
|
650 |
msgid "Frontend Settings"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: admin/includes/admin-settings.php:
|
654 |
msgid "Admin Page Settings"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: admin/includes/admin-settings.php:
|
658 |
msgid "Feed Settings"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: admin/includes/admin-settings.php:
|
662 |
msgid "Category Taxonomy"
|
663 |
msgstr ""
|
664 |
|
@@ -821,7 +823,7 @@ msgstr ""
|
|
821 |
msgid "This value defines a range from the past to the previous day."
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: includes/event.php:
|
825 |
msgid "No valid start date provided"
|
826 |
msgstr ""
|
827 |
|
@@ -1030,273 +1032,286 @@ msgid ""
|
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: includes/options_helptexts.php:56
|
1033 |
-
msgid "
|
1034 |
msgstr ""
|
1035 |
|
1036 |
#: includes/options_helptexts.php:57
|
1037 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1038 |
"With this option the displayed text for the link to show the event content "
|
1039 |
"can be changed, when collapsing is enabled."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/options_helptexts.php:
|
1043 |
msgid "Text for \"Hide content\""
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/options_helptexts.php:
|
1047 |
msgid ""
|
1048 |
"With this option the displayed text for the link to hide the event content "
|
1049 |
"can be changed, when collapsing is enabled."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: includes/options_helptexts.php:
|
1053 |
msgid "Disable CSS file"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/options_helptexts.php:
|
1057 |
#, php-format
|
1058 |
msgid "Disable the %1$s file."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: includes/options_helptexts.php:
|
1062 |
#, php-format
|
1063 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: includes/options_helptexts.php:
|
1067 |
msgid ""
|
1068 |
"This normally only make sense if you have css conflicts with your theme and "
|
1069 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: includes/options_helptexts.php:
|
1073 |
msgid "Date format in edit form"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: includes/options_helptexts.php:
|
1077 |
msgid ""
|
1078 |
"This option sets the displayed date format for the event date fields in the "
|
1079 |
"event new / edit form."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: includes/options_helptexts.php:
|
1083 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
#, php-format
|
1088 |
msgid ""
|
1089 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: includes/options_helptexts.php:
|
1093 |
msgid "Enable RSS feed"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/options_helptexts.php:
|
1097 |
msgid "Enable support for an event RSS feed"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/options_helptexts.php:
|
1101 |
msgid "This option activates a RSS feed for the events."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: includes/options_helptexts.php:
|
1105 |
msgid ""
|
1106 |
"You have to enable this option if you want to use one of the RSS feed "
|
1107 |
"features."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: includes/options_helptexts.php:
|
1111 |
msgid "Feed name"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/options_helptexts.php:
|
1115 |
#, php-format
|
1116 |
msgid "This option sets the feed name. The default value is %1$s."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: includes/options_helptexts.php:
|
1120 |
#, php-format
|
1121 |
msgid ""
|
1122 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1123 |
"enabled)."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: includes/options_helptexts.php:
|
1127 |
msgid "Feed Description"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: includes/options_helptexts.php:
|
1131 |
#, php-format
|
1132 |
msgid "This options set the feed description. The default value is %1$s."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: includes/options_helptexts.php:
|
1136 |
msgid ""
|
1137 |
"This description will be used in the title for the feed link in the html "
|
1138 |
"head and for the description in the feed itself."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: includes/options_helptexts.php:
|
1142 |
msgid "Listed events"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/options_helptexts.php:
|
1146 |
msgid "Only show upcoming events in feed"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/options_helptexts.php:
|
1150 |
msgid ""
|
1151 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: includes/options_helptexts.php:
|
1155 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: includes/options_helptexts.php:
|
1159 |
msgid "Add RSS feed link in head"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options_helptexts.php:
|
1163 |
msgid "Add RSS feed link in the html head"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: includes/options_helptexts.php:
|
1167 |
msgid "This option adds a RSS feed in the html head for the events."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: includes/options_helptexts.php:
|
1171 |
msgid "There are 2 alternatives to include the RSS feed"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/options_helptexts.php:
|
1175 |
msgid ""
|
1176 |
"The first way is this option to include a link in the html head. This link "
|
1177 |
"will be recognized by browers or feed readers."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/options_helptexts.php:
|
1181 |
#, php-format
|
1182 |
msgid ""
|
1183 |
"The second way is to include a visible feed link directly in the event list."
|
1184 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/options_helptexts.php:
|
1188 |
#, php-format
|
1189 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: includes/options_helptexts.php:
|
1193 |
msgid "Position of the RSS feed link"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options_helptexts.php:
|
1197 |
msgid "at the top (above the navigation bar)"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options_helptexts.php:
|
1201 |
msgid "between navigation bar and events"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: includes/options_helptexts.php:
|
1205 |
msgid "at the bottom"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: includes/options_helptexts.php:
|
1209 |
msgid ""
|
1210 |
"This option specifies the position of the RSS feed link in the event list."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: includes/options_helptexts.php:
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
#, php-format
|
1216 |
msgid ""
|
1217 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1218 |
" feed link."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: includes/options_helptexts.php:
|
1222 |
msgid "Align of the RSS feed link"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: includes/options_helptexts.php:
|
1226 |
msgid "left"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: includes/options_helptexts.php:
|
1230 |
msgid "center"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: includes/options_helptexts.php:
|
1234 |
msgid "right"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/options_helptexts.php:
|
1238 |
msgid ""
|
1239 |
"This option specifies the align of the RSS feed link in the event list."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/options_helptexts.php:
|
1243 |
msgid "Feed link text"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/options_helptexts.php:
|
1247 |
msgid ""
|
1248 |
"This option specifies the caption of the RSS feed link in the event list."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: includes/options_helptexts.php:
|
1252 |
msgid ""
|
1253 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1254 |
"image."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: includes/options_helptexts.php:
|
1258 |
msgid "Feed link image"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options_helptexts.php:
|
1262 |
msgid "Show rss image in feed link"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options_helptexts.php:
|
1266 |
msgid ""
|
1267 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1268 |
" front of the text."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/options_helptexts.php:
|
1272 |
msgid "Event Category handling"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: includes/options_helptexts.php:
|
1276 |
msgid "Use Post Categories"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/options_helptexts.php:
|
1280 |
msgid ""
|
1281 |
"Do not maintain seperate categories for the events, and use the existing "
|
1282 |
"post categories instead."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options_helptexts.php:
|
1286 |
msgid "Attention"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options_helptexts.php:
|
1290 |
msgid ""
|
1291 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1292 |
" switching page from here."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
#: includes/options.php:40
|
1296 |
-
msgid "
|
1297 |
msgstr ""
|
1298 |
|
1299 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1300 |
msgid "Hide content"
|
1301 |
msgstr ""
|
1302 |
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
12 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Indonesian (Indonesia) (http://www.transifex.com/mibuthu/wp-event-list/language/id_ID/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Pengaturan Daftar Acara"
|
38 |
|
54 |
msgid_plural "%s Events"
|
55 |
msgstr[0] ""
|
56 |
|
57 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
58 |
msgid "General"
|
59 |
msgstr "Umum"
|
60 |
|
429 |
msgid "none"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin/includes/admin-import.php:50
|
433 |
msgid "Import Events"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
437 |
msgid "Step"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin/includes/admin-import.php:70
|
441 |
msgid "Set import file and options"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin/includes/admin-import.php:73
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/includes/admin-import.php:76
|
450 |
msgid "Example file"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:77
|
454 |
#, php-format
|
455 |
msgid ""
|
456 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: admin/includes/admin-import.php:78
|
460 |
msgid "Note"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:78
|
464 |
msgid ""
|
465 |
"Do not change the column header and separator line (first two lines), "
|
466 |
"otherwise the import will fail!"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
470 |
+
#: admin/includes/admin-import.php:106
|
471 |
msgid "Sorry, there has been an error."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin/includes/admin-import.php:86
|
475 |
msgid "The file does not exist, please try again."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: admin/includes/admin-import.php:94
|
479 |
msgid "The file is not a CSV file."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: admin/includes/admin-import.php:123
|
483 |
msgid "Events review and additonal category selection"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: admin/includes/admin-import.php:126
|
487 |
msgid ""
|
488 |
"Warning: The following category slugs are not available and will be removed "
|
489 |
"from the imported events:"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin/includes/admin-import.php:132
|
493 |
msgid ""
|
494 |
"If you want to keep these categories, please create these Categories first "
|
495 |
"and do the import afterwards."
|
496 |
msgstr ""
|
497 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
#: admin/includes/admin-import.php:161
|
499 |
msgid "Import successful!"
|
500 |
msgstr ""
|
503 |
msgid "Go back to All Events"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: admin/includes/admin-import.php:166
|
507 |
+
msgid "Import with errors!"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: admin/includes/admin-import.php:167
|
511 |
+
#, php-format
|
512 |
+
msgid ""
|
513 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
517 |
#: includes/widget_helptexts.php:8
|
518 |
msgid "Title"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/includes/admin-import.php:175
|
522 |
msgid "Start Date"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:176
|
526 |
msgid "End Date"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
530 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
531 |
msgid "Time"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
535 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
536 |
#: includes/options_helptexts.php:46
|
537 |
msgid "Location"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/includes/admin-import.php:179
|
541 |
msgid "Content"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:180
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:219
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:251
|
556 |
msgid "Import events"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin/includes/admin-import.php:252
|
560 |
msgid "Add additional categories"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
564 |
msgid "Import"
|
565 |
msgstr ""
|
566 |
|
585 |
msgid "Event data"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: admin/includes/admin-new.php:80
|
589 |
msgid "Add Copy"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: admin/includes/admin-new.php:84
|
593 |
msgid "Date"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: admin/includes/admin-new.php:84
|
597 |
msgid "required"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: admin/includes/admin-new.php:87
|
601 |
msgid "Multi-Day Event"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: admin/includes/admin-new.php:106
|
605 |
msgid "Event Title"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: admin/includes/admin-new.php:121
|
609 |
msgid "Event Content"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
613 |
msgid "Event updated."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
617 |
msgid "View event"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: admin/includes/admin-new.php:184
|
621 |
#, php-format
|
622 |
msgid "Event restored to revision from %1$s"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: admin/includes/admin-new.php:185
|
626 |
msgid "Event published."
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: admin/includes/admin-new.php:187
|
630 |
msgid "Event submitted."
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
634 |
+
#: admin/includes/admin-new.php:190
|
635 |
msgid "Preview event"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: admin/includes/admin-new.php:188
|
639 |
#, php-format
|
640 |
msgid "Event scheduled for: %1$s>"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/includes/admin-new.php:190
|
644 |
msgid "Event draft updated."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: admin/includes/admin-settings.php:71
|
648 |
msgid "Go to Event Category switching page"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/includes/admin-settings.php:83
|
652 |
msgid "Frontend Settings"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: admin/includes/admin-settings.php:84
|
656 |
msgid "Admin Page Settings"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: admin/includes/admin-settings.php:85
|
660 |
msgid "Feed Settings"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: admin/includes/admin-settings.php:86
|
664 |
msgid "Category Taxonomy"
|
665 |
msgstr ""
|
666 |
|
823 |
msgid "This value defines a range from the past to the previous day."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: includes/event.php:107
|
827 |
msgid "No valid start date provided"
|
828 |
msgstr ""
|
829 |
|
1032 |
msgstr ""
|
1033 |
|
1034 |
#: includes/options_helptexts.php:56
|
1035 |
+
msgid "Events permalink slug"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/options_helptexts.php:57
|
1039 |
msgid ""
|
1040 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: includes/options_helptexts.php:60
|
1044 |
+
msgid "Text for \"Show content\""
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: includes/options_helptexts.php:61
|
1048 |
+
msgid ""
|
1049 |
"With this option the displayed text for the link to show the event content "
|
1050 |
"can be changed, when collapsing is enabled."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/options_helptexts.php:64
|
1054 |
msgid "Text for \"Hide content\""
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: includes/options_helptexts.php:65
|
1058 |
msgid ""
|
1059 |
"With this option the displayed text for the link to hide the event content "
|
1060 |
"can be changed, when collapsing is enabled."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: includes/options_helptexts.php:68
|
1064 |
msgid "Disable CSS file"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: includes/options_helptexts.php:69
|
1068 |
#, php-format
|
1069 |
msgid "Disable the %1$s file."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: includes/options_helptexts.php:70
|
1073 |
#, php-format
|
1074 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: includes/options_helptexts.php:71
|
1078 |
msgid ""
|
1079 |
"This normally only make sense if you have css conflicts with your theme and "
|
1080 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: includes/options_helptexts.php:75
|
1084 |
msgid "Date format in edit form"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: includes/options_helptexts.php:76
|
1088 |
msgid ""
|
1089 |
"This option sets the displayed date format for the event date fields in the "
|
1090 |
"event new / edit form."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: includes/options_helptexts.php:77
|
1094 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/options_helptexts.php:78
|
1098 |
#, php-format
|
1099 |
msgid ""
|
1100 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1104 |
msgid "Enable RSS feed"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:83
|
1108 |
msgid "Enable support for an event RSS feed"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:84
|
1112 |
msgid "This option activates a RSS feed for the events."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/options_helptexts.php:85
|
1116 |
msgid ""
|
1117 |
"You have to enable this option if you want to use one of the RSS feed "
|
1118 |
"features."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/options_helptexts.php:88
|
1122 |
msgid "Feed name"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: includes/options_helptexts.php:89
|
1126 |
#, php-format
|
1127 |
msgid "This option sets the feed name. The default value is %1$s."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:90
|
1131 |
#, php-format
|
1132 |
msgid ""
|
1133 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1134 |
"enabled)."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/options_helptexts.php:93
|
1138 |
msgid "Feed Description"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/options_helptexts.php:94
|
1142 |
#, php-format
|
1143 |
msgid "This options set the feed description. The default value is %1$s."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: includes/options_helptexts.php:95
|
1147 |
msgid ""
|
1148 |
"This description will be used in the title for the feed link in the html "
|
1149 |
"head and for the description in the feed itself."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: includes/options_helptexts.php:98
|
1153 |
msgid "Listed events"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: includes/options_helptexts.php:99
|
1157 |
msgid "Only show upcoming events in feed"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: includes/options_helptexts.php:100
|
1161 |
msgid ""
|
1162 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: includes/options_helptexts.php:101
|
1166 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: includes/options_helptexts.php:104
|
1170 |
msgid "Add RSS feed link in head"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: includes/options_helptexts.php:105
|
1174 |
msgid "Add RSS feed link in the html head"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:106
|
1178 |
msgid "This option adds a RSS feed in the html head for the events."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:107
|
1182 |
msgid "There are 2 alternatives to include the RSS feed"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:108
|
1186 |
msgid ""
|
1187 |
"The first way is this option to include a link in the html head. This link "
|
1188 |
"will be recognized by browers or feed readers."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options_helptexts.php:109
|
1192 |
#, php-format
|
1193 |
msgid ""
|
1194 |
"The second way is to include a visible feed link directly in the event list."
|
1195 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: includes/options_helptexts.php:110
|
1199 |
#, php-format
|
1200 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: includes/options_helptexts.php:113
|
1204 |
msgid "Position of the RSS feed link"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: includes/options_helptexts.php:114
|
1208 |
msgid "at the top (above the navigation bar)"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: includes/options_helptexts.php:114
|
1212 |
msgid "between navigation bar and events"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/options_helptexts.php:114
|
1216 |
msgid "at the bottom"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: includes/options_helptexts.php:115
|
1220 |
msgid ""
|
1221 |
"This option specifies the position of the RSS feed link in the event list."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1225 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1226 |
#, php-format
|
1227 |
msgid ""
|
1228 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1229 |
" feed link."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: includes/options_helptexts.php:119
|
1233 |
msgid "Align of the RSS feed link"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: includes/options_helptexts.php:120
|
1237 |
msgid "left"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/options_helptexts.php:120
|
1241 |
msgid "center"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/options_helptexts.php:120
|
1245 |
msgid "right"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:121
|
1249 |
msgid ""
|
1250 |
"This option specifies the align of the RSS feed link in the event list."
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: includes/options_helptexts.php:125
|
1254 |
msgid "Feed link text"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: includes/options_helptexts.php:126
|
1258 |
msgid ""
|
1259 |
"This option specifies the caption of the RSS feed link in the event list."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/options_helptexts.php:127
|
1263 |
msgid ""
|
1264 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1265 |
"image."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: includes/options_helptexts.php:131
|
1269 |
msgid "Feed link image"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/options_helptexts.php:132
|
1273 |
msgid "Show rss image in feed link"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/options_helptexts.php:133
|
1277 |
msgid ""
|
1278 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1279 |
" front of the text."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: includes/options_helptexts.php:139
|
1283 |
msgid "Event Category handling"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/options_helptexts.php:140
|
1287 |
msgid "Use Post Categories"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/options_helptexts.php:141
|
1291 |
msgid ""
|
1292 |
"Do not maintain seperate categories for the events, and use the existing "
|
1293 |
"post categories instead."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options_helptexts.php:142
|
1297 |
msgid "Attention"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options_helptexts.php:143
|
1301 |
msgid ""
|
1302 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1303 |
" switching page from here."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: includes/options.php:40
|
1307 |
+
msgid "events"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
#: includes/options.php:41
|
1311 |
+
msgid "Show content"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/options.php:42
|
1315 |
msgid "Hide content"
|
1316 |
msgstr ""
|
1317 |
|
languages/event-list-it_IT.po
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
-
"POT-Creation-Date: 2018-
|
12 |
-
"PO-Revision-Date: 2018-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -32,7 +32,7 @@ msgstr ""
|
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Impostazioni Eventi Lista"
|
38 |
|
@@ -55,7 +55,7 @@ msgid_plural "%s Events"
|
|
55 |
msgstr[0] ""
|
56 |
msgstr[1] ""
|
57 |
|
58 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
59 |
msgid "General"
|
60 |
msgstr "Generico"
|
61 |
|
@@ -430,80 +430,72 @@ msgstr ""
|
|
430 |
msgid "none"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin/includes/admin-import.php:
|
434 |
msgid "Import Events"
|
435 |
msgstr "Importazione Eventi"
|
436 |
|
437 |
-
#: admin/includes/admin-import.php:
|
438 |
msgid "Step"
|
439 |
msgstr "Passo"
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
msgid "Set import file and options"
|
443 |
msgstr "Insieme dei file e delle opzioni di importazione"
|
444 |
|
445 |
-
#: admin/includes/admin-import.php:
|
446 |
#, php-format
|
447 |
msgid "Proceed with Step %1$s"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin/includes/admin-import.php:
|
451 |
msgid "Example file"
|
452 |
msgstr "File di esempio"
|
453 |
|
454 |
-
#: admin/includes/admin-import.php:
|
455 |
#, php-format
|
456 |
msgid ""
|
457 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
458 |
msgstr "È possibile scaricare un file di esempio %1$s qui %2$s (il delimitatore del CSV è una virgola!)"
|
459 |
|
460 |
-
#: admin/includes/admin-import.php:
|
461 |
msgid "Note"
|
462 |
msgstr "Nota"
|
463 |
|
464 |
-
#: admin/includes/admin-import.php:
|
465 |
msgid ""
|
466 |
"Do not change the column header and separator line (first two lines), "
|
467 |
"otherwise the import will fail!"
|
468 |
msgstr "Non modificare l' intestazione e il separatore di riga (le prime due righe), altrimenti l'importazione fallirà!"
|
469 |
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
-
#: admin/includes/admin-import.php:
|
472 |
msgid "Sorry, there has been an error."
|
473 |
msgstr "Siamo spiacenti, si è verificato un errore."
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
msgid "The file does not exist, please try again."
|
477 |
msgstr "Il file non esiste, riprova."
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid "The file is not a CSV file."
|
481 |
msgstr "Il file non è un file CSV."
|
482 |
|
483 |
-
#: admin/includes/admin-import.php:
|
484 |
msgid "Events review and additonal category selection"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/includes/admin-import.php:
|
488 |
msgid ""
|
489 |
"Warning: The following category slugs are not available and will be removed "
|
490 |
"from the imported events:"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/includes/admin-import.php:
|
494 |
msgid ""
|
495 |
"If you want to keep these categories, please create these Categories first "
|
496 |
"and do the import afterwards."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:156
|
500 |
-
msgid "Import with errors!"
|
501 |
-
msgstr "Importazione avvenuta con errori!"
|
502 |
-
|
503 |
-
#: admin/includes/admin-import.php:157
|
504 |
-
msgid "Sorry, an error occurred during import!"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
#: admin/includes/admin-import.php:161
|
508 |
msgid "Import successful!"
|
509 |
msgstr "Importazione avvenuta con successo"
|
@@ -512,54 +504,64 @@ msgstr "Importazione avvenuta con successo"
|
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr "Torna a Tutti gli Eventi"
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
516 |
#: includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Titolo"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:
|
521 |
msgid "Start Date"
|
522 |
msgstr "Data di inizio"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Data di fine"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
530 |
msgid "Time"
|
531 |
msgstr "Ora"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
-
#: admin/includes/admin-new.php:
|
535 |
#: includes/options_helptexts.php:46
|
536 |
msgid "Location"
|
537 |
msgstr "Ubicazione"
|
538 |
|
539 |
-
#: admin/includes/admin-import.php:
|
540 |
msgid "Content"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/includes/admin-import.php:
|
544 |
msgid "Category slugs"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin/includes/admin-import.php:
|
548 |
#, php-format
|
549 |
msgid ""
|
550 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
551 |
"missing or not correct!"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/includes/admin-import.php:
|
555 |
msgid "Import events"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: admin/includes/admin-import.php:
|
559 |
msgid "Add additional categories"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: admin/includes/admin-import.php:
|
563 |
msgid "Import"
|
564 |
msgstr "Importazione"
|
565 |
|
@@ -584,82 +586,82 @@ msgstr ""
|
|
584 |
msgid "Event data"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: admin/includes/admin-new.php:
|
588 |
msgid "Add Copy"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: admin/includes/admin-new.php:
|
592 |
msgid "Date"
|
593 |
msgstr "Data"
|
594 |
|
595 |
-
#: admin/includes/admin-new.php:
|
596 |
msgid "required"
|
597 |
msgstr "richiesto"
|
598 |
|
599 |
-
#: admin/includes/admin-new.php:
|
600 |
msgid "Multi-Day Event"
|
601 |
msgstr "Evento multi giornaliero"
|
602 |
|
603 |
-
#: admin/includes/admin-new.php:
|
604 |
msgid "Event Title"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: admin/includes/admin-new.php:
|
608 |
msgid "Event Content"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: admin/includes/admin-new.php:
|
612 |
msgid "Event updated."
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: admin/includes/admin-new.php:
|
616 |
msgid "View event"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: admin/includes/admin-new.php:
|
620 |
#, php-format
|
621 |
msgid "Event restored to revision from %1$s"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/includes/admin-new.php:
|
625 |
msgid "Event published."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: admin/includes/admin-new.php:
|
629 |
msgid "Event submitted."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/includes/admin-new.php:
|
633 |
-
#: admin/includes/admin-new.php:
|
634 |
msgid "Preview event"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: admin/includes/admin-new.php:
|
638 |
#, php-format
|
639 |
msgid "Event scheduled for: %1$s>"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: admin/includes/admin-new.php:
|
643 |
msgid "Event draft updated."
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: admin/includes/admin-settings.php:
|
647 |
msgid "Go to Event Category switching page"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: admin/includes/admin-settings.php:
|
651 |
msgid "Frontend Settings"
|
652 |
msgstr "Impostazioni interfaccia grafica"
|
653 |
|
654 |
-
#: admin/includes/admin-settings.php:
|
655 |
msgid "Admin Page Settings"
|
656 |
msgstr "Impostazioni di amministrazione"
|
657 |
|
658 |
-
#: admin/includes/admin-settings.php:
|
659 |
msgid "Feed Settings"
|
660 |
msgstr "Impostazioni Feed"
|
661 |
|
662 |
-
#: admin/includes/admin-settings.php:
|
663 |
msgid "Category Taxonomy"
|
664 |
msgstr ""
|
665 |
|
@@ -822,7 +824,7 @@ msgstr "Passati"
|
|
822 |
msgid "This value defines a range from the past to the previous day."
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/event.php:
|
826 |
msgid "No valid start date provided"
|
827 |
msgstr ""
|
828 |
|
@@ -1031,273 +1033,286 @@ msgid ""
|
|
1031 |
msgstr ""
|
1032 |
|
1033 |
#: includes/options_helptexts.php:56
|
1034 |
-
msgid "
|
1035 |
msgstr ""
|
1036 |
|
1037 |
#: includes/options_helptexts.php:57
|
1038 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1039 |
"With this option the displayed text for the link to show the event content "
|
1040 |
"can be changed, when collapsing is enabled."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/options_helptexts.php:
|
1044 |
msgid "Text for \"Hide content\""
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: includes/options_helptexts.php:
|
1048 |
msgid ""
|
1049 |
"With this option the displayed text for the link to hide the event content "
|
1050 |
"can be changed, when collapsing is enabled."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/options_helptexts.php:
|
1054 |
msgid "Disable CSS file"
|
1055 |
msgstr "Disabilita file CSS"
|
1056 |
|
1057 |
-
#: includes/options_helptexts.php:
|
1058 |
#, php-format
|
1059 |
msgid "Disable the %1$s file."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/options_helptexts.php:
|
1063 |
#, php-format
|
1064 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: includes/options_helptexts.php:
|
1068 |
msgid ""
|
1069 |
"This normally only make sense if you have css conflicts with your theme and "
|
1070 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/options_helptexts.php:
|
1074 |
msgid "Date format in edit form"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: includes/options_helptexts.php:
|
1078 |
msgid ""
|
1079 |
"This option sets the displayed date format for the event date fields in the "
|
1080 |
"event new / edit form."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/options_helptexts.php:
|
1084 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: includes/options_helptexts.php:
|
1088 |
#, php-format
|
1089 |
msgid ""
|
1090 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: includes/options_helptexts.php:
|
1094 |
msgid "Enable RSS feed"
|
1095 |
msgstr "Abilita feed RSS"
|
1096 |
|
1097 |
-
#: includes/options_helptexts.php:
|
1098 |
msgid "Enable support for an event RSS feed"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: includes/options_helptexts.php:
|
1102 |
msgid "This option activates a RSS feed for the events."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: includes/options_helptexts.php:
|
1106 |
msgid ""
|
1107 |
"You have to enable this option if you want to use one of the RSS feed "
|
1108 |
"features."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/options_helptexts.php:
|
1112 |
msgid "Feed name"
|
1113 |
msgstr "Nome del Feed"
|
1114 |
|
1115 |
-
#: includes/options_helptexts.php:
|
1116 |
#, php-format
|
1117 |
msgid "This option sets the feed name. The default value is %1$s."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: includes/options_helptexts.php:
|
1121 |
#, php-format
|
1122 |
msgid ""
|
1123 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1124 |
"enabled)."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/options_helptexts.php:
|
1128 |
msgid "Feed Description"
|
1129 |
msgstr "Descrizione del Feed"
|
1130 |
|
1131 |
-
#: includes/options_helptexts.php:
|
1132 |
#, php-format
|
1133 |
msgid "This options set the feed description. The default value is %1$s."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/options_helptexts.php:
|
1137 |
msgid ""
|
1138 |
"This description will be used in the title for the feed link in the html "
|
1139 |
"head and for the description in the feed itself."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: includes/options_helptexts.php:
|
1143 |
msgid "Listed events"
|
1144 |
msgstr "Eventi elencati"
|
1145 |
|
1146 |
-
#: includes/options_helptexts.php:
|
1147 |
msgid "Only show upcoming events in feed"
|
1148 |
msgstr "Mostra solo i prossimi eventi nel Feed"
|
1149 |
|
1150 |
-
#: includes/options_helptexts.php:
|
1151 |
msgid ""
|
1152 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: includes/options_helptexts.php:
|
1156 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/options_helptexts.php:
|
1160 |
msgid "Add RSS feed link in head"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: includes/options_helptexts.php:
|
1164 |
msgid "Add RSS feed link in the html head"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: includes/options_helptexts.php:
|
1168 |
msgid "This option adds a RSS feed in the html head for the events."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: includes/options_helptexts.php:
|
1172 |
msgid "There are 2 alternatives to include the RSS feed"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: includes/options_helptexts.php:
|
1176 |
msgid ""
|
1177 |
"The first way is this option to include a link in the html head. This link "
|
1178 |
"will be recognized by browers or feed readers."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: includes/options_helptexts.php:
|
1182 |
#, php-format
|
1183 |
msgid ""
|
1184 |
"The second way is to include a visible feed link directly in the event list."
|
1185 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: includes/options_helptexts.php:
|
1189 |
#, php-format
|
1190 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: includes/options_helptexts.php:
|
1194 |
msgid "Position of the RSS feed link"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: includes/options_helptexts.php:
|
1198 |
msgid "at the top (above the navigation bar)"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: includes/options_helptexts.php:
|
1202 |
msgid "between navigation bar and events"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: includes/options_helptexts.php:
|
1206 |
msgid "at the bottom"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: includes/options_helptexts.php:
|
1210 |
msgid ""
|
1211 |
"This option specifies the position of the RSS feed link in the event list."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
-
#: includes/options_helptexts.php:
|
1216 |
#, php-format
|
1217 |
msgid ""
|
1218 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1219 |
" feed link."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: includes/options_helptexts.php:
|
1223 |
msgid "Align of the RSS feed link"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: includes/options_helptexts.php:
|
1227 |
msgid "left"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: includes/options_helptexts.php:
|
1231 |
msgid "center"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: includes/options_helptexts.php:
|
1235 |
msgid "right"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/options_helptexts.php:
|
1239 |
msgid ""
|
1240 |
"This option specifies the align of the RSS feed link in the event list."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: includes/options_helptexts.php:
|
1244 |
msgid "Feed link text"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: includes/options_helptexts.php:
|
1248 |
msgid ""
|
1249 |
"This option specifies the caption of the RSS feed link in the event list."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/options_helptexts.php:
|
1253 |
msgid ""
|
1254 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1255 |
"image."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: includes/options_helptexts.php:
|
1259 |
msgid "Feed link image"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/options_helptexts.php:
|
1263 |
msgid "Show rss image in feed link"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: includes/options_helptexts.php:
|
1267 |
msgid ""
|
1268 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1269 |
" front of the text."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: includes/options_helptexts.php:
|
1273 |
msgid "Event Category handling"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options_helptexts.php:
|
1277 |
msgid "Use Post Categories"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options_helptexts.php:
|
1281 |
msgid ""
|
1282 |
"Do not maintain seperate categories for the events, and use the existing "
|
1283 |
"post categories instead."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/options_helptexts.php:
|
1287 |
msgid "Attention"
|
1288 |
msgstr "Attenzione"
|
1289 |
|
1290 |
-
#: includes/options_helptexts.php:
|
1291 |
msgid ""
|
1292 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1293 |
" switching page from here."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
#: includes/options.php:40
|
1297 |
-
msgid "
|
1298 |
msgstr ""
|
1299 |
|
1300 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1301 |
msgid "Hide content"
|
1302 |
msgstr ""
|
1303 |
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
12 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Impostazioni Eventi Lista"
|
38 |
|
55 |
msgstr[0] ""
|
56 |
msgstr[1] ""
|
57 |
|
58 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
59 |
msgid "General"
|
60 |
msgstr "Generico"
|
61 |
|
430 |
msgid "none"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:50
|
434 |
msgid "Import Events"
|
435 |
msgstr "Importazione Eventi"
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
438 |
msgid "Step"
|
439 |
msgstr "Passo"
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:70
|
442 |
msgid "Set import file and options"
|
443 |
msgstr "Insieme dei file e delle opzioni di importazione"
|
444 |
|
445 |
+
#: admin/includes/admin-import.php:73
|
446 |
#, php-format
|
447 |
msgid "Proceed with Step %1$s"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin/includes/admin-import.php:76
|
451 |
msgid "Example file"
|
452 |
msgstr "File di esempio"
|
453 |
|
454 |
+
#: admin/includes/admin-import.php:77
|
455 |
#, php-format
|
456 |
msgid ""
|
457 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
458 |
msgstr "È possibile scaricare un file di esempio %1$s qui %2$s (il delimitatore del CSV è una virgola!)"
|
459 |
|
460 |
+
#: admin/includes/admin-import.php:78
|
461 |
msgid "Note"
|
462 |
msgstr "Nota"
|
463 |
|
464 |
+
#: admin/includes/admin-import.php:78
|
465 |
msgid ""
|
466 |
"Do not change the column header and separator line (first two lines), "
|
467 |
"otherwise the import will fail!"
|
468 |
msgstr "Non modificare l' intestazione e il separatore di riga (le prime due righe), altrimenti l'importazione fallirà!"
|
469 |
|
470 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
471 |
+
#: admin/includes/admin-import.php:106
|
472 |
msgid "Sorry, there has been an error."
|
473 |
msgstr "Siamo spiacenti, si è verificato un errore."
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:86
|
476 |
msgid "The file does not exist, please try again."
|
477 |
msgstr "Il file non esiste, riprova."
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:94
|
480 |
msgid "The file is not a CSV file."
|
481 |
msgstr "Il file non è un file CSV."
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:123
|
484 |
msgid "Events review and additonal category selection"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/includes/admin-import.php:126
|
488 |
msgid ""
|
489 |
"Warning: The following category slugs are not available and will be removed "
|
490 |
"from the imported events:"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: admin/includes/admin-import.php:132
|
494 |
msgid ""
|
495 |
"If you want to keep these categories, please create these Categories first "
|
496 |
"and do the import afterwards."
|
497 |
msgstr ""
|
498 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
#: admin/includes/admin-import.php:161
|
500 |
msgid "Import successful!"
|
501 |
msgstr "Importazione avvenuta con successo"
|
504 |
msgid "Go back to All Events"
|
505 |
msgstr "Torna a Tutti gli Eventi"
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:166
|
508 |
+
msgid "Import with errors!"
|
509 |
+
msgstr "Importazione avvenuta con errori!"
|
510 |
+
|
511 |
+
#: admin/includes/admin-import.php:167
|
512 |
+
#, php-format
|
513 |
+
msgid ""
|
514 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
518 |
#: includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr "Titolo"
|
521 |
|
522 |
+
#: admin/includes/admin-import.php:175
|
523 |
msgid "Start Date"
|
524 |
msgstr "Data di inizio"
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:176
|
527 |
msgid "End Date"
|
528 |
msgstr "Data di fine"
|
529 |
|
530 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
531 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
532 |
msgid "Time"
|
533 |
msgstr "Ora"
|
534 |
|
535 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
536 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
537 |
#: includes/options_helptexts.php:46
|
538 |
msgid "Location"
|
539 |
msgstr "Ubicazione"
|
540 |
|
541 |
+
#: admin/includes/admin-import.php:179
|
542 |
msgid "Content"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin/includes/admin-import.php:180
|
546 |
msgid "Category slugs"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: admin/includes/admin-import.php:219
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
553 |
"missing or not correct!"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/includes/admin-import.php:251
|
557 |
msgid "Import events"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/includes/admin-import.php:252
|
561 |
msgid "Add additional categories"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
565 |
msgid "Import"
|
566 |
msgstr "Importazione"
|
567 |
|
586 |
msgid "Event data"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: admin/includes/admin-new.php:80
|
590 |
msgid "Add Copy"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/includes/admin-new.php:84
|
594 |
msgid "Date"
|
595 |
msgstr "Data"
|
596 |
|
597 |
+
#: admin/includes/admin-new.php:84
|
598 |
msgid "required"
|
599 |
msgstr "richiesto"
|
600 |
|
601 |
+
#: admin/includes/admin-new.php:87
|
602 |
msgid "Multi-Day Event"
|
603 |
msgstr "Evento multi giornaliero"
|
604 |
|
605 |
+
#: admin/includes/admin-new.php:106
|
606 |
msgid "Event Title"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: admin/includes/admin-new.php:121
|
610 |
msgid "Event Content"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
614 |
msgid "Event updated."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
618 |
msgid "View event"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: admin/includes/admin-new.php:184
|
622 |
#, php-format
|
623 |
msgid "Event restored to revision from %1$s"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: admin/includes/admin-new.php:185
|
627 |
msgid "Event published."
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: admin/includes/admin-new.php:187
|
631 |
msgid "Event submitted."
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
635 |
+
#: admin/includes/admin-new.php:190
|
636 |
msgid "Preview event"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/includes/admin-new.php:188
|
640 |
#, php-format
|
641 |
msgid "Event scheduled for: %1$s>"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: admin/includes/admin-new.php:190
|
645 |
msgid "Event draft updated."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: admin/includes/admin-settings.php:71
|
649 |
msgid "Go to Event Category switching page"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: admin/includes/admin-settings.php:83
|
653 |
msgid "Frontend Settings"
|
654 |
msgstr "Impostazioni interfaccia grafica"
|
655 |
|
656 |
+
#: admin/includes/admin-settings.php:84
|
657 |
msgid "Admin Page Settings"
|
658 |
msgstr "Impostazioni di amministrazione"
|
659 |
|
660 |
+
#: admin/includes/admin-settings.php:85
|
661 |
msgid "Feed Settings"
|
662 |
msgstr "Impostazioni Feed"
|
663 |
|
664 |
+
#: admin/includes/admin-settings.php:86
|
665 |
msgid "Category Taxonomy"
|
666 |
msgstr ""
|
667 |
|
824 |
msgid "This value defines a range from the past to the previous day."
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: includes/event.php:107
|
828 |
msgid "No valid start date provided"
|
829 |
msgstr ""
|
830 |
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: includes/options_helptexts.php:56
|
1036 |
+
msgid "Events permalink slug"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
#: includes/options_helptexts.php:57
|
1040 |
msgid ""
|
1041 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: includes/options_helptexts.php:60
|
1045 |
+
msgid "Text for \"Show content\""
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: includes/options_helptexts.php:61
|
1049 |
+
msgid ""
|
1050 |
"With this option the displayed text for the link to show the event content "
|
1051 |
"can be changed, when collapsing is enabled."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:64
|
1055 |
msgid "Text for \"Hide content\""
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:65
|
1059 |
msgid ""
|
1060 |
"With this option the displayed text for the link to hide the event content "
|
1061 |
"can be changed, when collapsing is enabled."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: includes/options_helptexts.php:68
|
1065 |
msgid "Disable CSS file"
|
1066 |
msgstr "Disabilita file CSS"
|
1067 |
|
1068 |
+
#: includes/options_helptexts.php:69
|
1069 |
#, php-format
|
1070 |
msgid "Disable the %1$s file."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: includes/options_helptexts.php:70
|
1074 |
#, php-format
|
1075 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:71
|
1079 |
msgid ""
|
1080 |
"This normally only make sense if you have css conflicts with your theme and "
|
1081 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: includes/options_helptexts.php:75
|
1085 |
msgid "Date format in edit form"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:76
|
1089 |
msgid ""
|
1090 |
"This option sets the displayed date format for the event date fields in the "
|
1091 |
"event new / edit form."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/options_helptexts.php:77
|
1095 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: includes/options_helptexts.php:78
|
1099 |
#, php-format
|
1100 |
msgid ""
|
1101 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1105 |
msgid "Enable RSS feed"
|
1106 |
msgstr "Abilita feed RSS"
|
1107 |
|
1108 |
+
#: includes/options_helptexts.php:83
|
1109 |
msgid "Enable support for an event RSS feed"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/options_helptexts.php:84
|
1113 |
msgid "This option activates a RSS feed for the events."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/options_helptexts.php:85
|
1117 |
msgid ""
|
1118 |
"You have to enable this option if you want to use one of the RSS feed "
|
1119 |
"features."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: includes/options_helptexts.php:88
|
1123 |
msgid "Feed name"
|
1124 |
msgstr "Nome del Feed"
|
1125 |
|
1126 |
+
#: includes/options_helptexts.php:89
|
1127 |
#, php-format
|
1128 |
msgid "This option sets the feed name. The default value is %1$s."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: includes/options_helptexts.php:90
|
1132 |
#, php-format
|
1133 |
msgid ""
|
1134 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1135 |
"enabled)."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/options_helptexts.php:93
|
1139 |
msgid "Feed Description"
|
1140 |
msgstr "Descrizione del Feed"
|
1141 |
|
1142 |
+
#: includes/options_helptexts.php:94
|
1143 |
#, php-format
|
1144 |
msgid "This options set the feed description. The default value is %1$s."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/options_helptexts.php:95
|
1148 |
msgid ""
|
1149 |
"This description will be used in the title for the feed link in the html "
|
1150 |
"head and for the description in the feed itself."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: includes/options_helptexts.php:98
|
1154 |
msgid "Listed events"
|
1155 |
msgstr "Eventi elencati"
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:99
|
1158 |
msgid "Only show upcoming events in feed"
|
1159 |
msgstr "Mostra solo i prossimi eventi nel Feed"
|
1160 |
|
1161 |
+
#: includes/options_helptexts.php:100
|
1162 |
msgid ""
|
1163 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:101
|
1167 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: includes/options_helptexts.php:104
|
1171 |
msgid "Add RSS feed link in head"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: includes/options_helptexts.php:105
|
1175 |
msgid "Add RSS feed link in the html head"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/options_helptexts.php:106
|
1179 |
msgid "This option adds a RSS feed in the html head for the events."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/options_helptexts.php:107
|
1183 |
msgid "There are 2 alternatives to include the RSS feed"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/options_helptexts.php:108
|
1187 |
msgid ""
|
1188 |
"The first way is this option to include a link in the html head. This link "
|
1189 |
"will be recognized by browers or feed readers."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/options_helptexts.php:109
|
1193 |
#, php-format
|
1194 |
msgid ""
|
1195 |
"The second way is to include a visible feed link directly in the event list."
|
1196 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/options_helptexts.php:110
|
1200 |
#, php-format
|
1201 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: includes/options_helptexts.php:113
|
1205 |
msgid "Position of the RSS feed link"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: includes/options_helptexts.php:114
|
1209 |
msgid "at the top (above the navigation bar)"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: includes/options_helptexts.php:114
|
1213 |
msgid "between navigation bar and events"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: includes/options_helptexts.php:114
|
1217 |
msgid "at the bottom"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: includes/options_helptexts.php:115
|
1221 |
msgid ""
|
1222 |
"This option specifies the position of the RSS feed link in the event list."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1226 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1227 |
#, php-format
|
1228 |
msgid ""
|
1229 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1230 |
" feed link."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/options_helptexts.php:119
|
1234 |
msgid "Align of the RSS feed link"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: includes/options_helptexts.php:120
|
1238 |
msgid "left"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: includes/options_helptexts.php:120
|
1242 |
msgid "center"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: includes/options_helptexts.php:120
|
1246 |
msgid "right"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: includes/options_helptexts.php:121
|
1250 |
msgid ""
|
1251 |
"This option specifies the align of the RSS feed link in the event list."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/options_helptexts.php:125
|
1255 |
msgid "Feed link text"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/options_helptexts.php:126
|
1259 |
msgid ""
|
1260 |
"This option specifies the caption of the RSS feed link in the event list."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options_helptexts.php:127
|
1264 |
msgid ""
|
1265 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1266 |
"image."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options_helptexts.php:131
|
1270 |
msgid "Feed link image"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:132
|
1274 |
msgid "Show rss image in feed link"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:133
|
1278 |
msgid ""
|
1279 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1280 |
" front of the text."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/options_helptexts.php:139
|
1284 |
msgid "Event Category handling"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: includes/options_helptexts.php:140
|
1288 |
msgid "Use Post Categories"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: includes/options_helptexts.php:141
|
1292 |
msgid ""
|
1293 |
"Do not maintain seperate categories for the events, and use the existing "
|
1294 |
"post categories instead."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options_helptexts.php:142
|
1298 |
msgid "Attention"
|
1299 |
msgstr "Attenzione"
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:143
|
1302 |
msgid ""
|
1303 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1304 |
" switching page from here."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: includes/options.php:40
|
1308 |
+
msgid "events"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
#: includes/options.php:41
|
1312 |
+
msgid "Show content"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: includes/options.php:42
|
1316 |
msgid "Hide content"
|
1317 |
msgstr ""
|
1318 |
|
languages/event-list-nl_NL.po
CHANGED
@@ -11,8 +11,8 @@ msgid ""
|
|
11 |
msgstr ""
|
12 |
"Project-Id-Version: wp-event-list\n"
|
13 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
14 |
-
"POT-Creation-Date: 2018-
|
15 |
-
"PO-Revision-Date: 2018-
|
16 |
"Last-Translator: mibuthu\n"
|
17 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
|
18 |
"MIME-Version: 1.0\n"
|
@@ -35,7 +35,7 @@ msgstr ""
|
|
35 |
msgid "no additional information available"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
39 |
msgid "Event List Settings"
|
40 |
msgstr "Gebeurtenislijst Instellingen"
|
41 |
|
@@ -58,7 +58,7 @@ msgid_plural "%s Events"
|
|
58 |
msgstr[0] ""
|
59 |
msgstr[1] ""
|
60 |
|
61 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
62 |
msgid "General"
|
63 |
msgstr "Algemeen"
|
64 |
|
@@ -433,80 +433,72 @@ msgstr ""
|
|
433 |
msgid "none"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: admin/includes/admin-import.php:
|
437 |
msgid "Import Events"
|
438 |
msgstr "Importeer Gebeurtenissen"
|
439 |
|
440 |
-
#: admin/includes/admin-import.php:
|
441 |
msgid "Step"
|
442 |
msgstr "Stap"
|
443 |
|
444 |
-
#: admin/includes/admin-import.php:
|
445 |
msgid "Set import file and options"
|
446 |
msgstr "Stel het import bestand en opties in"
|
447 |
|
448 |
-
#: admin/includes/admin-import.php:
|
449 |
#, php-format
|
450 |
msgid "Proceed with Step %1$s"
|
451 |
msgstr "Ga door naar stap %1$s"
|
452 |
|
453 |
-
#: admin/includes/admin-import.php:
|
454 |
msgid "Example file"
|
455 |
msgstr "Voorbeeld bestand"
|
456 |
|
457 |
-
#: admin/includes/admin-import.php:
|
458 |
#, php-format
|
459 |
msgid ""
|
460 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
461 |
msgstr "Je kunt %1$shier%2$s een voorbeeld bestand downloaden (CSV scheider is een komma!)"
|
462 |
|
463 |
-
#: admin/includes/admin-import.php:
|
464 |
msgid "Note"
|
465 |
msgstr "Aantekening"
|
466 |
|
467 |
-
#: admin/includes/admin-import.php:
|
468 |
msgid ""
|
469 |
"Do not change the column header and separator line (first two lines), "
|
470 |
"otherwise the import will fail!"
|
471 |
msgstr "Verander niet de kolom rubriek en scheidingslijn (de eerste twee regels), anders zal de import falen."
|
472 |
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
-
#: admin/includes/admin-import.php:
|
475 |
msgid "Sorry, there has been an error."
|
476 |
msgstr "Sorry, er ging iets fout."
|
477 |
|
478 |
-
#: admin/includes/admin-import.php:
|
479 |
msgid "The file does not exist, please try again."
|
480 |
msgstr "Het bestand bestaat niet, probeer het nog eens."
|
481 |
|
482 |
-
#: admin/includes/admin-import.php:
|
483 |
msgid "The file is not a CSV file."
|
484 |
msgstr "Het bestand is geen CSV bestand."
|
485 |
|
486 |
-
#: admin/includes/admin-import.php:
|
487 |
msgid "Events review and additonal category selection"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: admin/includes/admin-import.php:
|
491 |
msgid ""
|
492 |
"Warning: The following category slugs are not available and will be removed "
|
493 |
"from the imported events:"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: admin/includes/admin-import.php:
|
497 |
msgid ""
|
498 |
"If you want to keep these categories, please create these Categories first "
|
499 |
"and do the import afterwards."
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: admin/includes/admin-import.php:156
|
503 |
-
msgid "Import with errors!"
|
504 |
-
msgstr "Import met fouten!"
|
505 |
-
|
506 |
-
#: admin/includes/admin-import.php:157
|
507 |
-
msgid "Sorry, an error occurred during import!"
|
508 |
-
msgstr "Sorry, er is een fout opgetreden tijdens het importeren!"
|
509 |
-
|
510 |
#: admin/includes/admin-import.php:161
|
511 |
msgid "Import successful!"
|
512 |
msgstr "Import succesvol!"
|
@@ -515,54 +507,64 @@ msgstr "Import succesvol!"
|
|
515 |
msgid "Go back to All Events"
|
516 |
msgstr "Ga terug naar Alle Gebeurtenissen"
|
517 |
|
518 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
#: includes/widget_helptexts.php:8
|
520 |
msgid "Title"
|
521 |
msgstr "Titel"
|
522 |
|
523 |
-
#: admin/includes/admin-import.php:
|
524 |
msgid "Start Date"
|
525 |
msgstr "Start Datum"
|
526 |
|
527 |
-
#: admin/includes/admin-import.php:
|
528 |
msgid "End Date"
|
529 |
msgstr "Eind Datum"
|
530 |
|
531 |
-
#: admin/includes/admin-import.php:
|
532 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
533 |
msgid "Time"
|
534 |
msgstr "Tijd"
|
535 |
|
536 |
-
#: admin/includes/admin-import.php:
|
537 |
-
#: admin/includes/admin-new.php:
|
538 |
#: includes/options_helptexts.php:46
|
539 |
msgid "Location"
|
540 |
msgstr "Locatie"
|
541 |
|
542 |
-
#: admin/includes/admin-import.php:
|
543 |
msgid "Content"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: admin/includes/admin-import.php:
|
547 |
msgid "Category slugs"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: admin/includes/admin-import.php:
|
551 |
#, php-format
|
552 |
msgid ""
|
553 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
554 |
"missing or not correct!"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: admin/includes/admin-import.php:
|
558 |
msgid "Import events"
|
559 |
msgstr "Importeer gebeurtenis"
|
560 |
|
561 |
-
#: admin/includes/admin-import.php:
|
562 |
msgid "Add additional categories"
|
563 |
msgstr "Voeg extra categorieën toe"
|
564 |
|
565 |
-
#: admin/includes/admin-import.php:
|
566 |
msgid "Import"
|
567 |
msgstr "Importeer"
|
568 |
|
@@ -587,82 +589,82 @@ msgstr ""
|
|
587 |
msgid "Event data"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: admin/includes/admin-new.php:
|
591 |
msgid "Add Copy"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: admin/includes/admin-new.php:
|
595 |
msgid "Date"
|
596 |
msgstr "Datum"
|
597 |
|
598 |
-
#: admin/includes/admin-new.php:
|
599 |
msgid "required"
|
600 |
msgstr "vereist"
|
601 |
|
602 |
-
#: admin/includes/admin-new.php:
|
603 |
msgid "Multi-Day Event"
|
604 |
msgstr "Meerdaagse gebeurtenis"
|
605 |
|
606 |
-
#: admin/includes/admin-new.php:
|
607 |
msgid "Event Title"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: admin/includes/admin-new.php:
|
611 |
msgid "Event Content"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: admin/includes/admin-new.php:
|
615 |
msgid "Event updated."
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: admin/includes/admin-new.php:
|
619 |
msgid "View event"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: admin/includes/admin-new.php:
|
623 |
#, php-format
|
624 |
msgid "Event restored to revision from %1$s"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: admin/includes/admin-new.php:
|
628 |
msgid "Event published."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: admin/includes/admin-new.php:
|
632 |
msgid "Event submitted."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: admin/includes/admin-new.php:
|
636 |
-
#: admin/includes/admin-new.php:
|
637 |
msgid "Preview event"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: admin/includes/admin-new.php:
|
641 |
#, php-format
|
642 |
msgid "Event scheduled for: %1$s>"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: admin/includes/admin-new.php:
|
646 |
msgid "Event draft updated."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: admin/includes/admin-settings.php:
|
650 |
msgid "Go to Event Category switching page"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: admin/includes/admin-settings.php:
|
654 |
msgid "Frontend Settings"
|
655 |
msgstr "Frontend Instellingen"
|
656 |
|
657 |
-
#: admin/includes/admin-settings.php:
|
658 |
msgid "Admin Page Settings"
|
659 |
msgstr "Admin Pagina Instellingen"
|
660 |
|
661 |
-
#: admin/includes/admin-settings.php:
|
662 |
msgid "Feed Settings"
|
663 |
msgstr "Feed Instellingen"
|
664 |
|
665 |
-
#: admin/includes/admin-settings.php:
|
666 |
msgid "Category Taxonomy"
|
667 |
msgstr ""
|
668 |
|
@@ -825,7 +827,7 @@ msgstr "Eerdere"
|
|
825 |
msgid "This value defines a range from the past to the previous day."
|
826 |
msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag."
|
827 |
|
828 |
-
#: includes/event.php:
|
829 |
msgid "No valid start date provided"
|
830 |
msgstr ""
|
831 |
|
@@ -1034,273 +1036,286 @@ msgid ""
|
|
1034 |
msgstr ""
|
1035 |
|
1036 |
#: includes/options_helptexts.php:56
|
1037 |
-
msgid "
|
1038 |
msgstr ""
|
1039 |
|
1040 |
#: includes/options_helptexts.php:57
|
1041 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1042 |
"With this option the displayed text for the link to show the event content "
|
1043 |
"can be changed, when collapsing is enabled."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/options_helptexts.php:
|
1047 |
msgid "Text for \"Hide content\""
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: includes/options_helptexts.php:
|
1051 |
msgid ""
|
1052 |
"With this option the displayed text for the link to hide the event content "
|
1053 |
"can be changed, when collapsing is enabled."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/options_helptexts.php:
|
1057 |
msgid "Disable CSS file"
|
1058 |
msgstr "CSS-bestand uitschakelen"
|
1059 |
|
1060 |
-
#: includes/options_helptexts.php:
|
1061 |
#, php-format
|
1062 |
msgid "Disable the %1$s file."
|
1063 |
msgstr "Schakel het %1$s bestand uit."
|
1064 |
|
1065 |
-
#: includes/options_helptexts.php:
|
1066 |
#, php-format
|
1067 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1068 |
msgstr "Met deze optie kan je het insluiten van het %1$s bestand uitschakelen."
|
1069 |
|
1070 |
-
#: includes/options_helptexts.php:
|
1071 |
msgid ""
|
1072 |
"This normally only make sense if you have css conflicts with your theme and "
|
1073 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1074 |
msgstr "Dit is alleen nuttig als je CSS conflicten hebt met je thema en je alle vereiste CSS opmaak elders wil onderbrengen (bijv. in de CSS van je thema)."
|
1075 |
|
1076 |
-
#: includes/options_helptexts.php:
|
1077 |
msgid "Date format in edit form"
|
1078 |
msgstr "Datumweergave in formulieren"
|
1079 |
|
1080 |
-
#: includes/options_helptexts.php:
|
1081 |
msgid ""
|
1082 |
"This option sets the displayed date format for the event date fields in the "
|
1083 |
"event new / edit form."
|
1084 |
msgstr "Deze optie bepaalt de datumweergave voor de evenement datumvelden in de formulieren 'nieuw evenement' / 'evenement aanpassen'."
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: includes/options_helptexts.php:
|
1091 |
#, php-format
|
1092 |
msgid ""
|
1093 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1094 |
msgstr "Alle beschikbare opties om de datumweergave te specificeren kan je %1$shier%2$s vinden."
|
1095 |
|
1096 |
-
#: includes/options_helptexts.php:
|
1097 |
msgid "Enable RSS feed"
|
1098 |
msgstr "RSS feed inschakelen"
|
1099 |
|
1100 |
-
#: includes/options_helptexts.php:
|
1101 |
msgid "Enable support for an event RSS feed"
|
1102 |
msgstr "Ondersteuning voor een RSS feed inschakelen"
|
1103 |
|
1104 |
-
#: includes/options_helptexts.php:
|
1105 |
msgid "This option activates a RSS feed for the events."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: includes/options_helptexts.php:
|
1109 |
msgid ""
|
1110 |
"You have to enable this option if you want to use one of the RSS feed "
|
1111 |
"features."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/options_helptexts.php:
|
1115 |
msgid "Feed name"
|
1116 |
msgstr "Feed naam"
|
1117 |
|
1118 |
-
#: includes/options_helptexts.php:
|
1119 |
#, php-format
|
1120 |
msgid "This option sets the feed name. The default value is %1$s."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: includes/options_helptexts.php:
|
1124 |
#, php-format
|
1125 |
msgid ""
|
1126 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1127 |
"enabled)."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: includes/options_helptexts.php:
|
1131 |
msgid "Feed Description"
|
1132 |
msgstr "Feed beschrijving"
|
1133 |
|
1134 |
-
#: includes/options_helptexts.php:
|
1135 |
#, php-format
|
1136 |
msgid "This options set the feed description. The default value is %1$s."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: includes/options_helptexts.php:
|
1140 |
msgid ""
|
1141 |
"This description will be used in the title for the feed link in the html "
|
1142 |
"head and for the description in the feed itself."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/options_helptexts.php:
|
1146 |
msgid "Listed events"
|
1147 |
msgstr "Vermeldde evenementen"
|
1148 |
|
1149 |
-
#: includes/options_helptexts.php:
|
1150 |
msgid "Only show upcoming events in feed"
|
1151 |
msgstr "Toon alleen komende evenementen in feed"
|
1152 |
|
1153 |
-
#: includes/options_helptexts.php:
|
1154 |
msgid ""
|
1155 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: includes/options_helptexts.php:
|
1159 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options_helptexts.php:
|
1163 |
msgid "Add RSS feed link in head"
|
1164 |
msgstr "Voeg RSS feed toe in kop"
|
1165 |
|
1166 |
-
#: includes/options_helptexts.php:
|
1167 |
msgid "Add RSS feed link in the html head"
|
1168 |
msgstr "Een link naar de RSS feed toevoegen aan de HTML 'head'."
|
1169 |
|
1170 |
-
#: includes/options_helptexts.php:
|
1171 |
msgid "This option adds a RSS feed in the html head for the events."
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/options_helptexts.php:
|
1175 |
msgid "There are 2 alternatives to include the RSS feed"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: includes/options_helptexts.php:
|
1179 |
msgid ""
|
1180 |
"The first way is this option to include a link in the html head. This link "
|
1181 |
"will be recognized by browers or feed readers."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: includes/options_helptexts.php:
|
1185 |
#, php-format
|
1186 |
msgid ""
|
1187 |
"The second way is to include a visible feed link directly in the event list."
|
1188 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: includes/options_helptexts.php:
|
1192 |
#, php-format
|
1193 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options_helptexts.php:
|
1197 |
msgid "Position of the RSS feed link"
|
1198 |
msgstr "Plek van de RSS feed link"
|
1199 |
|
1200 |
-
#: includes/options_helptexts.php:
|
1201 |
msgid "at the top (above the navigation bar)"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: includes/options_helptexts.php:
|
1205 |
msgid "between navigation bar and events"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: includes/options_helptexts.php:
|
1209 |
msgid "at the bottom"
|
1210 |
msgstr "aan de onderkant"
|
1211 |
|
1212 |
-
#: includes/options_helptexts.php:
|
1213 |
msgid ""
|
1214 |
"This option specifies the position of the RSS feed link in the event list."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: includes/options_helptexts.php:
|
1218 |
-
#: includes/options_helptexts.php:
|
1219 |
#, php-format
|
1220 |
msgid ""
|
1221 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1222 |
" feed link."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: includes/options_helptexts.php:
|
1226 |
msgid "Align of the RSS feed link"
|
1227 |
msgstr "Uitlijning van RSS feed link"
|
1228 |
|
1229 |
-
#: includes/options_helptexts.php:
|
1230 |
msgid "left"
|
1231 |
msgstr "links"
|
1232 |
|
1233 |
-
#: includes/options_helptexts.php:
|
1234 |
msgid "center"
|
1235 |
msgstr "midden"
|
1236 |
|
1237 |
-
#: includes/options_helptexts.php:
|
1238 |
msgid "right"
|
1239 |
msgstr "rechts"
|
1240 |
|
1241 |
-
#: includes/options_helptexts.php:
|
1242 |
msgid ""
|
1243 |
"This option specifies the align of the RSS feed link in the event list."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/options_helptexts.php:
|
1247 |
msgid "Feed link text"
|
1248 |
msgstr "Tekst feed link"
|
1249 |
|
1250 |
-
#: includes/options_helptexts.php:
|
1251 |
msgid ""
|
1252 |
"This option specifies the caption of the RSS feed link in the event list."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: includes/options_helptexts.php:
|
1256 |
msgid ""
|
1257 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1258 |
"image."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options_helptexts.php:
|
1262 |
msgid "Feed link image"
|
1263 |
msgstr "Afbeelding feed link"
|
1264 |
|
1265 |
-
#: includes/options_helptexts.php:
|
1266 |
msgid "Show rss image in feed link"
|
1267 |
msgstr "Toon RSS afbeelding in feed link"
|
1268 |
|
1269 |
-
#: includes/options_helptexts.php:
|
1270 |
msgid ""
|
1271 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1272 |
" front of the text."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: includes/options_helptexts.php:
|
1276 |
msgid "Event Category handling"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/options_helptexts.php:
|
1280 |
msgid "Use Post Categories"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: includes/options_helptexts.php:
|
1284 |
msgid ""
|
1285 |
"Do not maintain seperate categories for the events, and use the existing "
|
1286 |
"post categories instead."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options_helptexts.php:
|
1290 |
msgid "Attention"
|
1291 |
msgstr "Let op"
|
1292 |
|
1293 |
-
#: includes/options_helptexts.php:
|
1294 |
msgid ""
|
1295 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1296 |
" switching page from here."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
#: includes/options.php:40
|
1300 |
-
msgid "
|
1301 |
msgstr ""
|
1302 |
|
1303 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1304 |
msgid "Hide content"
|
1305 |
msgstr ""
|
1306 |
|
11 |
msgstr ""
|
12 |
"Project-Id-Version: wp-event-list\n"
|
13 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
14 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
15 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
16 |
"Last-Translator: mibuthu\n"
|
17 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
|
18 |
"MIME-Version: 1.0\n"
|
35 |
msgid "no additional information available"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
39 |
msgid "Event List Settings"
|
40 |
msgstr "Gebeurtenislijst Instellingen"
|
41 |
|
58 |
msgstr[0] ""
|
59 |
msgstr[1] ""
|
60 |
|
61 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
62 |
msgid "General"
|
63 |
msgstr "Algemeen"
|
64 |
|
433 |
msgid "none"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin/includes/admin-import.php:50
|
437 |
msgid "Import Events"
|
438 |
msgstr "Importeer Gebeurtenissen"
|
439 |
|
440 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
441 |
msgid "Step"
|
442 |
msgstr "Stap"
|
443 |
|
444 |
+
#: admin/includes/admin-import.php:70
|
445 |
msgid "Set import file and options"
|
446 |
msgstr "Stel het import bestand en opties in"
|
447 |
|
448 |
+
#: admin/includes/admin-import.php:73
|
449 |
#, php-format
|
450 |
msgid "Proceed with Step %1$s"
|
451 |
msgstr "Ga door naar stap %1$s"
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:76
|
454 |
msgid "Example file"
|
455 |
msgstr "Voorbeeld bestand"
|
456 |
|
457 |
+
#: admin/includes/admin-import.php:77
|
458 |
#, php-format
|
459 |
msgid ""
|
460 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
461 |
msgstr "Je kunt %1$shier%2$s een voorbeeld bestand downloaden (CSV scheider is een komma!)"
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:78
|
464 |
msgid "Note"
|
465 |
msgstr "Aantekening"
|
466 |
|
467 |
+
#: admin/includes/admin-import.php:78
|
468 |
msgid ""
|
469 |
"Do not change the column header and separator line (first two lines), "
|
470 |
"otherwise the import will fail!"
|
471 |
msgstr "Verander niet de kolom rubriek en scheidingslijn (de eerste twee regels), anders zal de import falen."
|
472 |
|
473 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
474 |
+
#: admin/includes/admin-import.php:106
|
475 |
msgid "Sorry, there has been an error."
|
476 |
msgstr "Sorry, er ging iets fout."
|
477 |
|
478 |
+
#: admin/includes/admin-import.php:86
|
479 |
msgid "The file does not exist, please try again."
|
480 |
msgstr "Het bestand bestaat niet, probeer het nog eens."
|
481 |
|
482 |
+
#: admin/includes/admin-import.php:94
|
483 |
msgid "The file is not a CSV file."
|
484 |
msgstr "Het bestand is geen CSV bestand."
|
485 |
|
486 |
+
#: admin/includes/admin-import.php:123
|
487 |
msgid "Events review and additonal category selection"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: admin/includes/admin-import.php:126
|
491 |
msgid ""
|
492 |
"Warning: The following category slugs are not available and will be removed "
|
493 |
"from the imported events:"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin/includes/admin-import.php:132
|
497 |
msgid ""
|
498 |
"If you want to keep these categories, please create these Categories first "
|
499 |
"and do the import afterwards."
|
500 |
msgstr ""
|
501 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
#: admin/includes/admin-import.php:161
|
503 |
msgid "Import successful!"
|
504 |
msgstr "Import succesvol!"
|
507 |
msgid "Go back to All Events"
|
508 |
msgstr "Ga terug naar Alle Gebeurtenissen"
|
509 |
|
510 |
+
#: admin/includes/admin-import.php:166
|
511 |
+
msgid "Import with errors!"
|
512 |
+
msgstr "Import met fouten!"
|
513 |
+
|
514 |
+
#: admin/includes/admin-import.php:167
|
515 |
+
#, php-format
|
516 |
+
msgid ""
|
517 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
521 |
#: includes/widget_helptexts.php:8
|
522 |
msgid "Title"
|
523 |
msgstr "Titel"
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:175
|
526 |
msgid "Start Date"
|
527 |
msgstr "Start Datum"
|
528 |
|
529 |
+
#: admin/includes/admin-import.php:176
|
530 |
msgid "End Date"
|
531 |
msgstr "Eind Datum"
|
532 |
|
533 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
534 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
535 |
msgid "Time"
|
536 |
msgstr "Tijd"
|
537 |
|
538 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
539 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
540 |
#: includes/options_helptexts.php:46
|
541 |
msgid "Location"
|
542 |
msgstr "Locatie"
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:179
|
545 |
msgid "Content"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:180
|
549 |
msgid "Category slugs"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin/includes/admin-import.php:219
|
553 |
#, php-format
|
554 |
msgid ""
|
555 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
556 |
"missing or not correct!"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin/includes/admin-import.php:251
|
560 |
msgid "Import events"
|
561 |
msgstr "Importeer gebeurtenis"
|
562 |
|
563 |
+
#: admin/includes/admin-import.php:252
|
564 |
msgid "Add additional categories"
|
565 |
msgstr "Voeg extra categorieën toe"
|
566 |
|
567 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
568 |
msgid "Import"
|
569 |
msgstr "Importeer"
|
570 |
|
589 |
msgid "Event data"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: admin/includes/admin-new.php:80
|
593 |
msgid "Add Copy"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: admin/includes/admin-new.php:84
|
597 |
msgid "Date"
|
598 |
msgstr "Datum"
|
599 |
|
600 |
+
#: admin/includes/admin-new.php:84
|
601 |
msgid "required"
|
602 |
msgstr "vereist"
|
603 |
|
604 |
+
#: admin/includes/admin-new.php:87
|
605 |
msgid "Multi-Day Event"
|
606 |
msgstr "Meerdaagse gebeurtenis"
|
607 |
|
608 |
+
#: admin/includes/admin-new.php:106
|
609 |
msgid "Event Title"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/includes/admin-new.php:121
|
613 |
msgid "Event Content"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
617 |
msgid "Event updated."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
621 |
msgid "View event"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: admin/includes/admin-new.php:184
|
625 |
#, php-format
|
626 |
msgid "Event restored to revision from %1$s"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: admin/includes/admin-new.php:185
|
630 |
msgid "Event published."
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: admin/includes/admin-new.php:187
|
634 |
msgid "Event submitted."
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
638 |
+
#: admin/includes/admin-new.php:190
|
639 |
msgid "Preview event"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: admin/includes/admin-new.php:188
|
643 |
#, php-format
|
644 |
msgid "Event scheduled for: %1$s>"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: admin/includes/admin-new.php:190
|
648 |
msgid "Event draft updated."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/includes/admin-settings.php:71
|
652 |
msgid "Go to Event Category switching page"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: admin/includes/admin-settings.php:83
|
656 |
msgid "Frontend Settings"
|
657 |
msgstr "Frontend Instellingen"
|
658 |
|
659 |
+
#: admin/includes/admin-settings.php:84
|
660 |
msgid "Admin Page Settings"
|
661 |
msgstr "Admin Pagina Instellingen"
|
662 |
|
663 |
+
#: admin/includes/admin-settings.php:85
|
664 |
msgid "Feed Settings"
|
665 |
msgstr "Feed Instellingen"
|
666 |
|
667 |
+
#: admin/includes/admin-settings.php:86
|
668 |
msgid "Category Taxonomy"
|
669 |
msgstr ""
|
670 |
|
827 |
msgid "This value defines a range from the past to the previous day."
|
828 |
msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag."
|
829 |
|
830 |
+
#: includes/event.php:107
|
831 |
msgid "No valid start date provided"
|
832 |
msgstr ""
|
833 |
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/options_helptexts.php:56
|
1039 |
+
msgid "Events permalink slug"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
#: includes/options_helptexts.php:57
|
1043 |
msgid ""
|
1044 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: includes/options_helptexts.php:60
|
1048 |
+
msgid "Text for \"Show content\""
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: includes/options_helptexts.php:61
|
1052 |
+
msgid ""
|
1053 |
"With this option the displayed text for the link to show the event content "
|
1054 |
"can be changed, when collapsing is enabled."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: includes/options_helptexts.php:64
|
1058 |
msgid "Text for \"Hide content\""
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/options_helptexts.php:65
|
1062 |
msgid ""
|
1063 |
"With this option the displayed text for the link to hide the event content "
|
1064 |
"can be changed, when collapsing is enabled."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: includes/options_helptexts.php:68
|
1068 |
msgid "Disable CSS file"
|
1069 |
msgstr "CSS-bestand uitschakelen"
|
1070 |
|
1071 |
+
#: includes/options_helptexts.php:69
|
1072 |
#, php-format
|
1073 |
msgid "Disable the %1$s file."
|
1074 |
msgstr "Schakel het %1$s bestand uit."
|
1075 |
|
1076 |
+
#: includes/options_helptexts.php:70
|
1077 |
#, php-format
|
1078 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1079 |
msgstr "Met deze optie kan je het insluiten van het %1$s bestand uitschakelen."
|
1080 |
|
1081 |
+
#: includes/options_helptexts.php:71
|
1082 |
msgid ""
|
1083 |
"This normally only make sense if you have css conflicts with your theme and "
|
1084 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1085 |
msgstr "Dit is alleen nuttig als je CSS conflicten hebt met je thema en je alle vereiste CSS opmaak elders wil onderbrengen (bijv. in de CSS van je thema)."
|
1086 |
|
1087 |
+
#: includes/options_helptexts.php:75
|
1088 |
msgid "Date format in edit form"
|
1089 |
msgstr "Datumweergave in formulieren"
|
1090 |
|
1091 |
+
#: includes/options_helptexts.php:76
|
1092 |
msgid ""
|
1093 |
"This option sets the displayed date format for the event date fields in the "
|
1094 |
"event new / edit form."
|
1095 |
msgstr "Deze optie bepaalt de datumweergave voor de evenement datumvelden in de formulieren 'nieuw evenement' / 'evenement aanpassen'."
|
1096 |
|
1097 |
+
#: includes/options_helptexts.php:77
|
1098 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: includes/options_helptexts.php:78
|
1102 |
#, php-format
|
1103 |
msgid ""
|
1104 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1105 |
msgstr "Alle beschikbare opties om de datumweergave te specificeren kan je %1$shier%2$s vinden."
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1108 |
msgid "Enable RSS feed"
|
1109 |
msgstr "RSS feed inschakelen"
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:83
|
1112 |
msgid "Enable support for an event RSS feed"
|
1113 |
msgstr "Ondersteuning voor een RSS feed inschakelen"
|
1114 |
|
1115 |
+
#: includes/options_helptexts.php:84
|
1116 |
msgid "This option activates a RSS feed for the events."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: includes/options_helptexts.php:85
|
1120 |
msgid ""
|
1121 |
"You have to enable this option if you want to use one of the RSS feed "
|
1122 |
"features."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: includes/options_helptexts.php:88
|
1126 |
msgid "Feed name"
|
1127 |
msgstr "Feed naam"
|
1128 |
|
1129 |
+
#: includes/options_helptexts.php:89
|
1130 |
#, php-format
|
1131 |
msgid "This option sets the feed name. The default value is %1$s."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/options_helptexts.php:90
|
1135 |
#, php-format
|
1136 |
msgid ""
|
1137 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1138 |
"enabled)."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/options_helptexts.php:93
|
1142 |
msgid "Feed Description"
|
1143 |
msgstr "Feed beschrijving"
|
1144 |
|
1145 |
+
#: includes/options_helptexts.php:94
|
1146 |
#, php-format
|
1147 |
msgid "This options set the feed description. The default value is %1$s."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: includes/options_helptexts.php:95
|
1151 |
msgid ""
|
1152 |
"This description will be used in the title for the feed link in the html "
|
1153 |
"head and for the description in the feed itself."
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: includes/options_helptexts.php:98
|
1157 |
msgid "Listed events"
|
1158 |
msgstr "Vermeldde evenementen"
|
1159 |
|
1160 |
+
#: includes/options_helptexts.php:99
|
1161 |
msgid "Only show upcoming events in feed"
|
1162 |
msgstr "Toon alleen komende evenementen in feed"
|
1163 |
|
1164 |
+
#: includes/options_helptexts.php:100
|
1165 |
msgid ""
|
1166 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: includes/options_helptexts.php:101
|
1170 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: includes/options_helptexts.php:104
|
1174 |
msgid "Add RSS feed link in head"
|
1175 |
msgstr "Voeg RSS feed toe in kop"
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:105
|
1178 |
msgid "Add RSS feed link in the html head"
|
1179 |
msgstr "Een link naar de RSS feed toevoegen aan de HTML 'head'."
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:106
|
1182 |
msgid "This option adds a RSS feed in the html head for the events."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:107
|
1186 |
msgid "There are 2 alternatives to include the RSS feed"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: includes/options_helptexts.php:108
|
1190 |
msgid ""
|
1191 |
"The first way is this option to include a link in the html head. This link "
|
1192 |
"will be recognized by browers or feed readers."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: includes/options_helptexts.php:109
|
1196 |
#, php-format
|
1197 |
msgid ""
|
1198 |
"The second way is to include a visible feed link directly in the event list."
|
1199 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: includes/options_helptexts.php:110
|
1203 |
#, php-format
|
1204 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: includes/options_helptexts.php:113
|
1208 |
msgid "Position of the RSS feed link"
|
1209 |
msgstr "Plek van de RSS feed link"
|
1210 |
|
1211 |
+
#: includes/options_helptexts.php:114
|
1212 |
msgid "at the top (above the navigation bar)"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/options_helptexts.php:114
|
1216 |
msgid "between navigation bar and events"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: includes/options_helptexts.php:114
|
1220 |
msgid "at the bottom"
|
1221 |
msgstr "aan de onderkant"
|
1222 |
|
1223 |
+
#: includes/options_helptexts.php:115
|
1224 |
msgid ""
|
1225 |
"This option specifies the position of the RSS feed link in the event list."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1229 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1230 |
#, php-format
|
1231 |
msgid ""
|
1232 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1233 |
" feed link."
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: includes/options_helptexts.php:119
|
1237 |
msgid "Align of the RSS feed link"
|
1238 |
msgstr "Uitlijning van RSS feed link"
|
1239 |
|
1240 |
+
#: includes/options_helptexts.php:120
|
1241 |
msgid "left"
|
1242 |
msgstr "links"
|
1243 |
|
1244 |
+
#: includes/options_helptexts.php:120
|
1245 |
msgid "center"
|
1246 |
msgstr "midden"
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:120
|
1249 |
msgid "right"
|
1250 |
msgstr "rechts"
|
1251 |
|
1252 |
+
#: includes/options_helptexts.php:121
|
1253 |
msgid ""
|
1254 |
"This option specifies the align of the RSS feed link in the event list."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: includes/options_helptexts.php:125
|
1258 |
msgid "Feed link text"
|
1259 |
msgstr "Tekst feed link"
|
1260 |
|
1261 |
+
#: includes/options_helptexts.php:126
|
1262 |
msgid ""
|
1263 |
"This option specifies the caption of the RSS feed link in the event list."
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: includes/options_helptexts.php:127
|
1267 |
msgid ""
|
1268 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1269 |
"image."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/options_helptexts.php:131
|
1273 |
msgid "Feed link image"
|
1274 |
msgstr "Afbeelding feed link"
|
1275 |
|
1276 |
+
#: includes/options_helptexts.php:132
|
1277 |
msgid "Show rss image in feed link"
|
1278 |
msgstr "Toon RSS afbeelding in feed link"
|
1279 |
|
1280 |
+
#: includes/options_helptexts.php:133
|
1281 |
msgid ""
|
1282 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1283 |
" front of the text."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/options_helptexts.php:139
|
1287 |
msgid "Event Category handling"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/options_helptexts.php:140
|
1291 |
msgid "Use Post Categories"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/options_helptexts.php:141
|
1295 |
msgid ""
|
1296 |
"Do not maintain seperate categories for the events, and use the existing "
|
1297 |
"post categories instead."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options_helptexts.php:142
|
1301 |
msgid "Attention"
|
1302 |
msgstr "Let op"
|
1303 |
|
1304 |
+
#: includes/options_helptexts.php:143
|
1305 |
msgid ""
|
1306 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1307 |
" switching page from here."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
#: includes/options.php:40
|
1311 |
+
msgid "events"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
#: includes/options.php:41
|
1315 |
+
msgid "Show content"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: includes/options.php:42
|
1319 |
msgid "Hide content"
|
1320 |
msgstr ""
|
1321 |
|
languages/event-list-pl_PL.po
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
-
"POT-Creation-Date: 2018-
|
12 |
-
"PO-Revision-Date: 2018-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Polish (Poland) (http://www.transifex.com/mibuthu/wp-event-list/language/pl_PL/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -32,7 +32,7 @@ msgstr ""
|
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Ustawienia Listy Wydarzeń"
|
38 |
|
@@ -57,7 +57,7 @@ msgstr[1] ""
|
|
57 |
msgstr[2] ""
|
58 |
msgstr[3] ""
|
59 |
|
60 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
61 |
msgid "General"
|
62 |
msgstr "Ogólne"
|
63 |
|
@@ -432,80 +432,72 @@ msgstr ""
|
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
436 |
msgid "Import Events"
|
437 |
msgstr "Importuj wydarzenia"
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Step"
|
441 |
msgstr "Krok"
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
msgid "Set import file and options"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin/includes/admin-import.php:
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
msgid "Example file"
|
454 |
msgstr "Przykładowy plik"
|
455 |
|
456 |
-
#: admin/includes/admin-import.php:
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid "Note"
|
464 |
msgstr "Uwaga"
|
465 |
|
466 |
-
#: admin/includes/admin-import.php:
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin/includes/admin-import.php:
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr "Plik nie został znaleziony, proszę spróbować ponownie."
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr "Plik nie jest w formacie CSV."
|
484 |
|
485 |
-
#: admin/includes/admin-import.php:
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:156
|
502 |
-
msgid "Import with errors!"
|
503 |
-
msgstr "Import z błędami!"
|
504 |
-
|
505 |
-
#: admin/includes/admin-import.php:157
|
506 |
-
msgid "Sorry, an error occurred during import!"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
#: admin/includes/admin-import.php:161
|
510 |
msgid "Import successful!"
|
511 |
msgstr "Import zakończony sukcesem!"
|
@@ -514,54 +506,64 @@ msgstr "Import zakończony sukcesem!"
|
|
514 |
msgid "Go back to All Events"
|
515 |
msgstr "Wróć do Wszystkie wydarzenia"
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
#: includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr "Tytuł"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "Start Date"
|
524 |
msgstr "Termin rozpoczęcia"
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
msgid "End Date"
|
528 |
msgstr "Termin zakończenia"
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
532 |
msgid "Time"
|
533 |
msgstr "Godzina"
|
534 |
|
535 |
-
#: admin/includes/admin-import.php:
|
536 |
-
#: admin/includes/admin-new.php:
|
537 |
#: includes/options_helptexts.php:46
|
538 |
msgid "Location"
|
539 |
msgstr "Miejsce"
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Content"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
546 |
msgid "Category slugs"
|
547 |
msgstr "Upr. nazwy kategorii"
|
548 |
|
549 |
-
#: admin/includes/admin-import.php:
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
553 |
"missing or not correct!"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/includes/admin-import.php:
|
557 |
msgid "Import events"
|
558 |
msgstr "Importuj wydarzenia"
|
559 |
|
560 |
-
#: admin/includes/admin-import.php:
|
561 |
msgid "Add additional categories"
|
562 |
msgstr "Dodaj dodatkowe kategorie"
|
563 |
|
564 |
-
#: admin/includes/admin-import.php:
|
565 |
msgid "Import"
|
566 |
msgstr "Import"
|
567 |
|
@@ -586,82 +588,82 @@ msgstr ""
|
|
586 |
msgid "Event data"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: admin/includes/admin-new.php:
|
590 |
msgid "Add Copy"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: admin/includes/admin-new.php:
|
594 |
msgid "Date"
|
595 |
msgstr "Termin"
|
596 |
|
597 |
-
#: admin/includes/admin-new.php:
|
598 |
msgid "required"
|
599 |
msgstr "wymagane"
|
600 |
|
601 |
-
#: admin/includes/admin-new.php:
|
602 |
msgid "Multi-Day Event"
|
603 |
msgstr "Wydarzenie kilkudniowe"
|
604 |
|
605 |
-
#: admin/includes/admin-new.php:
|
606 |
msgid "Event Title"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: admin/includes/admin-new.php:
|
610 |
msgid "Event Content"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: admin/includes/admin-new.php:
|
614 |
msgid "Event updated."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: admin/includes/admin-new.php:
|
618 |
msgid "View event"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: admin/includes/admin-new.php:
|
622 |
#, php-format
|
623 |
msgid "Event restored to revision from %1$s"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: admin/includes/admin-new.php:
|
627 |
msgid "Event published."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: admin/includes/admin-new.php:
|
631 |
msgid "Event submitted."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/includes/admin-new.php:
|
635 |
-
#: admin/includes/admin-new.php:
|
636 |
msgid "Preview event"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: admin/includes/admin-new.php:
|
640 |
#, php-format
|
641 |
msgid "Event scheduled for: %1$s>"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/includes/admin-new.php:
|
645 |
msgid "Event draft updated."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: admin/includes/admin-settings.php:
|
649 |
msgid "Go to Event Category switching page"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: admin/includes/admin-settings.php:
|
653 |
msgid "Frontend Settings"
|
654 |
msgstr "Strona frontowa"
|
655 |
|
656 |
-
#: admin/includes/admin-settings.php:
|
657 |
msgid "Admin Page Settings"
|
658 |
msgstr "Panel administratora"
|
659 |
|
660 |
-
#: admin/includes/admin-settings.php:
|
661 |
msgid "Feed Settings"
|
662 |
msgstr "Ustawienia kanału"
|
663 |
|
664 |
-
#: admin/includes/admin-settings.php:
|
665 |
msgid "Category Taxonomy"
|
666 |
msgstr ""
|
667 |
|
@@ -824,7 +826,7 @@ msgstr "Przeszłe"
|
|
824 |
msgid "This value defines a range from the past to the previous day."
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/event.php:
|
828 |
msgid "No valid start date provided"
|
829 |
msgstr ""
|
830 |
|
@@ -1033,273 +1035,286 @@ msgid ""
|
|
1033 |
msgstr "Jeśli chcesz załadować własny plik językowy znajdujący się w folderze ogólnym języka %1$s dla języka, który już zawarty jest w folderze języków wtyczki, musisz włączyć tę opcję."
|
1034 |
|
1035 |
#: includes/options_helptexts.php:56
|
1036 |
-
msgid "
|
1037 |
msgstr ""
|
1038 |
|
1039 |
#: includes/options_helptexts.php:57
|
1040 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
"With this option the displayed text for the link to show the event content "
|
1042 |
"can be changed, when collapsing is enabled."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: includes/options_helptexts.php:
|
1046 |
msgid "Text for \"Hide content\""
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/options_helptexts.php:
|
1050 |
msgid ""
|
1051 |
"With this option the displayed text for the link to hide the event content "
|
1052 |
"can be changed, when collapsing is enabled."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: includes/options_helptexts.php:
|
1056 |
msgid "Disable CSS file"
|
1057 |
msgstr "Wyłącz plik CSS"
|
1058 |
|
1059 |
-
#: includes/options_helptexts.php:
|
1060 |
#, php-format
|
1061 |
msgid "Disable the %1$s file."
|
1062 |
msgstr "Wyłącz plik %1$s."
|
1063 |
|
1064 |
-
#: includes/options_helptexts.php:
|
1065 |
#, php-format
|
1066 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1067 |
msgstr "Ta opcja pozwala na usunięcie łącza do pliku %1$s z nagłówka strony HTML."
|
1068 |
|
1069 |
-
#: includes/options_helptexts.php:
|
1070 |
msgid ""
|
1071 |
"This normally only make sense if you have css conflicts with your theme and "
|
1072 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1073 |
msgstr "Zwykle ma to sens jeśli występują konflikty z motywami i chcesz ustawić wszystkie wymagane style CSS w innym miejscu (np. w motywie CSS)."
|
1074 |
|
1075 |
-
#: includes/options_helptexts.php:
|
1076 |
msgid "Date format in edit form"
|
1077 |
msgstr "Format daty w formularzu edycji"
|
1078 |
|
1079 |
-
#: includes/options_helptexts.php:
|
1080 |
msgid ""
|
1081 |
"This option sets the displayed date format for the event date fields in the "
|
1082 |
"event new / edit form."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: includes/options_helptexts.php:
|
1086 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/options_helptexts.php:
|
1090 |
#, php-format
|
1091 |
msgid ""
|
1092 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: includes/options_helptexts.php:
|
1096 |
msgid "Enable RSS feed"
|
1097 |
msgstr "Włącz kanał RSS"
|
1098 |
|
1099 |
-
#: includes/options_helptexts.php:
|
1100 |
msgid "Enable support for an event RSS feed"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: includes/options_helptexts.php:
|
1104 |
msgid "This option activates a RSS feed for the events."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid ""
|
1109 |
"You have to enable this option if you want to use one of the RSS feed "
|
1110 |
"features."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: includes/options_helptexts.php:
|
1114 |
msgid "Feed name"
|
1115 |
msgstr "Nazwa kanału"
|
1116 |
|
1117 |
-
#: includes/options_helptexts.php:
|
1118 |
#, php-format
|
1119 |
msgid "This option sets the feed name. The default value is %1$s."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
#, php-format
|
1124 |
msgid ""
|
1125 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1126 |
"enabled)."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
msgid "Feed Description"
|
1131 |
msgstr "Opis kanału"
|
1132 |
|
1133 |
-
#: includes/options_helptexts.php:
|
1134 |
#, php-format
|
1135 |
msgid "This options set the feed description. The default value is %1$s."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
msgid ""
|
1140 |
"This description will be used in the title for the feed link in the html "
|
1141 |
"head and for the description in the feed itself."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: includes/options_helptexts.php:
|
1145 |
msgid "Listed events"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: includes/options_helptexts.php:
|
1149 |
msgid "Only show upcoming events in feed"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: includes/options_helptexts.php:
|
1153 |
msgid ""
|
1154 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/options_helptexts.php:
|
1162 |
msgid "Add RSS feed link in head"
|
1163 |
msgstr "Dodaj łącze kanału RSS w nagłówku"
|
1164 |
|
1165 |
-
#: includes/options_helptexts.php:
|
1166 |
msgid "Add RSS feed link in the html head"
|
1167 |
msgstr "Dodaje łącze kanału RSS w nagłówku HTML"
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "This option adds a RSS feed in the html head for the events."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "There are 2 alternatives to include the RSS feed"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid ""
|
1179 |
"The first way is this option to include a link in the html head. This link "
|
1180 |
"will be recognized by browers or feed readers."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: includes/options_helptexts.php:
|
1184 |
#, php-format
|
1185 |
msgid ""
|
1186 |
"The second way is to include a visible feed link directly in the event list."
|
1187 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/options_helptexts.php:
|
1196 |
msgid "Position of the RSS feed link"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/options_helptexts.php:
|
1200 |
msgid "at the top (above the navigation bar)"
|
1201 |
msgstr "na górze (ponad panelem nawigacyjnym)"
|
1202 |
|
1203 |
-
#: includes/options_helptexts.php:
|
1204 |
msgid "between navigation bar and events"
|
1205 |
msgstr "pomiędzy panelem nawigacyjnym a wydarzeniami"
|
1206 |
|
1207 |
-
#: includes/options_helptexts.php:
|
1208 |
msgid "at the bottom"
|
1209 |
msgstr "na dole"
|
1210 |
|
1211 |
-
#: includes/options_helptexts.php:
|
1212 |
msgid ""
|
1213 |
"This option specifies the position of the RSS feed link in the event list."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
-
#: includes/options_helptexts.php:
|
1218 |
#, php-format
|
1219 |
msgid ""
|
1220 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1221 |
" feed link."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: includes/options_helptexts.php:
|
1225 |
msgid "Align of the RSS feed link"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/options_helptexts.php:
|
1229 |
msgid "left"
|
1230 |
msgstr "do lewej"
|
1231 |
|
1232 |
-
#: includes/options_helptexts.php:
|
1233 |
msgid "center"
|
1234 |
msgstr "do środka"
|
1235 |
|
1236 |
-
#: includes/options_helptexts.php:
|
1237 |
msgid "right"
|
1238 |
msgstr "do prawej"
|
1239 |
|
1240 |
-
#: includes/options_helptexts.php:
|
1241 |
msgid ""
|
1242 |
"This option specifies the align of the RSS feed link in the event list."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: includes/options_helptexts.php:
|
1246 |
msgid "Feed link text"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: includes/options_helptexts.php:
|
1250 |
msgid ""
|
1251 |
"This option specifies the caption of the RSS feed link in the event list."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/options_helptexts.php:
|
1255 |
msgid ""
|
1256 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1257 |
"image."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: includes/options_helptexts.php:
|
1261 |
msgid "Feed link image"
|
1262 |
msgstr "Obraz łącza kanału"
|
1263 |
|
1264 |
-
#: includes/options_helptexts.php:
|
1265 |
msgid "Show rss image in feed link"
|
1266 |
msgstr "Wyświetlaj braz łącza kanału RSS"
|
1267 |
|
1268 |
-
#: includes/options_helptexts.php:
|
1269 |
msgid ""
|
1270 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1271 |
" front of the text."
|
1272 |
msgstr "Ta opcja określa, czy obraz powinien być wyświetlany w łączu kanału RSS przed tekstem."
|
1273 |
|
1274 |
-
#: includes/options_helptexts.php:
|
1275 |
msgid "Event Category handling"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options_helptexts.php:
|
1279 |
msgid "Use Post Categories"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options_helptexts.php:
|
1283 |
msgid ""
|
1284 |
"Do not maintain seperate categories for the events, and use the existing "
|
1285 |
"post categories instead."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: includes/options_helptexts.php:
|
1289 |
msgid "Attention"
|
1290 |
msgstr "Uwaga"
|
1291 |
|
1292 |
-
#: includes/options_helptexts.php:
|
1293 |
msgid ""
|
1294 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1295 |
" switching page from here."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
#: includes/options.php:40
|
1299 |
-
msgid "
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1303 |
msgid "Hide content"
|
1304 |
msgstr ""
|
1305 |
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
12 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Polish (Poland) (http://www.transifex.com/mibuthu/wp-event-list/language/pl_PL/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Ustawienia Listy Wydarzeń"
|
38 |
|
57 |
msgstr[2] ""
|
58 |
msgstr[3] ""
|
59 |
|
60 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
61 |
msgid "General"
|
62 |
msgstr "Ogólne"
|
63 |
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:50
|
436 |
msgid "Import Events"
|
437 |
msgstr "Importuj wydarzenia"
|
438 |
|
439 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
440 |
msgid "Step"
|
441 |
msgstr "Krok"
|
442 |
|
443 |
+
#: admin/includes/admin-import.php:70
|
444 |
msgid "Set import file and options"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:73
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin/includes/admin-import.php:76
|
453 |
msgid "Example file"
|
454 |
msgstr "Przykładowy plik"
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:77
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin/includes/admin-import.php:78
|
463 |
msgid "Note"
|
464 |
msgstr "Uwaga"
|
465 |
|
466 |
+
#: admin/includes/admin-import.php:78
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
473 |
+
#: admin/includes/admin-import.php:106
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:86
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr "Plik nie został znaleziony, proszę spróbować ponownie."
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:94
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr "Plik nie jest w formacie CSV."
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:123
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/includes/admin-import.php:126
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:132
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr ""
|
500 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
501 |
#: admin/includes/admin-import.php:161
|
502 |
msgid "Import successful!"
|
503 |
msgstr "Import zakończony sukcesem!"
|
506 |
msgid "Go back to All Events"
|
507 |
msgstr "Wróć do Wszystkie wydarzenia"
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:166
|
510 |
+
msgid "Import with errors!"
|
511 |
+
msgstr "Import z błędami!"
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:167
|
514 |
+
#, php-format
|
515 |
+
msgid ""
|
516 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
520 |
#: includes/widget_helptexts.php:8
|
521 |
msgid "Title"
|
522 |
msgstr "Tytuł"
|
523 |
|
524 |
+
#: admin/includes/admin-import.php:175
|
525 |
msgid "Start Date"
|
526 |
msgstr "Termin rozpoczęcia"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:176
|
529 |
msgid "End Date"
|
530 |
msgstr "Termin zakończenia"
|
531 |
|
532 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
533 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
534 |
msgid "Time"
|
535 |
msgstr "Godzina"
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
538 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
539 |
#: includes/options_helptexts.php:46
|
540 |
msgid "Location"
|
541 |
msgstr "Miejsce"
|
542 |
|
543 |
+
#: admin/includes/admin-import.php:179
|
544 |
msgid "Content"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/includes/admin-import.php:180
|
548 |
msgid "Category slugs"
|
549 |
msgstr "Upr. nazwy kategorii"
|
550 |
|
551 |
+
#: admin/includes/admin-import.php:219
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
555 |
"missing or not correct!"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin/includes/admin-import.php:251
|
559 |
msgid "Import events"
|
560 |
msgstr "Importuj wydarzenia"
|
561 |
|
562 |
+
#: admin/includes/admin-import.php:252
|
563 |
msgid "Add additional categories"
|
564 |
msgstr "Dodaj dodatkowe kategorie"
|
565 |
|
566 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
567 |
msgid "Import"
|
568 |
msgstr "Import"
|
569 |
|
588 |
msgid "Event data"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: admin/includes/admin-new.php:80
|
592 |
msgid "Add Copy"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/includes/admin-new.php:84
|
596 |
msgid "Date"
|
597 |
msgstr "Termin"
|
598 |
|
599 |
+
#: admin/includes/admin-new.php:84
|
600 |
msgid "required"
|
601 |
msgstr "wymagane"
|
602 |
|
603 |
+
#: admin/includes/admin-new.php:87
|
604 |
msgid "Multi-Day Event"
|
605 |
msgstr "Wydarzenie kilkudniowe"
|
606 |
|
607 |
+
#: admin/includes/admin-new.php:106
|
608 |
msgid "Event Title"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/includes/admin-new.php:121
|
612 |
msgid "Event Content"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
616 |
msgid "Event updated."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
620 |
msgid "View event"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: admin/includes/admin-new.php:184
|
624 |
#, php-format
|
625 |
msgid "Event restored to revision from %1$s"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: admin/includes/admin-new.php:185
|
629 |
msgid "Event published."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/includes/admin-new.php:187
|
633 |
msgid "Event submitted."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
637 |
+
#: admin/includes/admin-new.php:190
|
638 |
msgid "Preview event"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/includes/admin-new.php:188
|
642 |
#, php-format
|
643 |
msgid "Event scheduled for: %1$s>"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: admin/includes/admin-new.php:190
|
647 |
msgid "Event draft updated."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: admin/includes/admin-settings.php:71
|
651 |
msgid "Go to Event Category switching page"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: admin/includes/admin-settings.php:83
|
655 |
msgid "Frontend Settings"
|
656 |
msgstr "Strona frontowa"
|
657 |
|
658 |
+
#: admin/includes/admin-settings.php:84
|
659 |
msgid "Admin Page Settings"
|
660 |
msgstr "Panel administratora"
|
661 |
|
662 |
+
#: admin/includes/admin-settings.php:85
|
663 |
msgid "Feed Settings"
|
664 |
msgstr "Ustawienia kanału"
|
665 |
|
666 |
+
#: admin/includes/admin-settings.php:86
|
667 |
msgid "Category Taxonomy"
|
668 |
msgstr ""
|
669 |
|
826 |
msgid "This value defines a range from the past to the previous day."
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/event.php:107
|
830 |
msgid "No valid start date provided"
|
831 |
msgstr ""
|
832 |
|
1035 |
msgstr "Jeśli chcesz załadować własny plik językowy znajdujący się w folderze ogólnym języka %1$s dla języka, który już zawarty jest w folderze języków wtyczki, musisz włączyć tę opcję."
|
1036 |
|
1037 |
#: includes/options_helptexts.php:56
|
1038 |
+
msgid "Events permalink slug"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: includes/options_helptexts.php:57
|
1042 |
msgid ""
|
1043 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/options_helptexts.php:60
|
1047 |
+
msgid "Text for \"Show content\""
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/options_helptexts.php:61
|
1051 |
+
msgid ""
|
1052 |
"With this option the displayed text for the link to show the event content "
|
1053 |
"can be changed, when collapsing is enabled."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/options_helptexts.php:64
|
1057 |
msgid "Text for \"Hide content\""
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/options_helptexts.php:65
|
1061 |
msgid ""
|
1062 |
"With this option the displayed text for the link to hide the event content "
|
1063 |
"can be changed, when collapsing is enabled."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:68
|
1067 |
msgid "Disable CSS file"
|
1068 |
msgstr "Wyłącz plik CSS"
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:69
|
1071 |
#, php-format
|
1072 |
msgid "Disable the %1$s file."
|
1073 |
msgstr "Wyłącz plik %1$s."
|
1074 |
|
1075 |
+
#: includes/options_helptexts.php:70
|
1076 |
#, php-format
|
1077 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1078 |
msgstr "Ta opcja pozwala na usunięcie łącza do pliku %1$s z nagłówka strony HTML."
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:71
|
1081 |
msgid ""
|
1082 |
"This normally only make sense if you have css conflicts with your theme and "
|
1083 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1084 |
msgstr "Zwykle ma to sens jeśli występują konflikty z motywami i chcesz ustawić wszystkie wymagane style CSS w innym miejscu (np. w motywie CSS)."
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:75
|
1087 |
msgid "Date format in edit form"
|
1088 |
msgstr "Format daty w formularzu edycji"
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:76
|
1091 |
msgid ""
|
1092 |
"This option sets the displayed date format for the event date fields in the "
|
1093 |
"event new / edit form."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: includes/options_helptexts.php:77
|
1097 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: includes/options_helptexts.php:78
|
1101 |
#, php-format
|
1102 |
msgid ""
|
1103 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1107 |
msgid "Enable RSS feed"
|
1108 |
msgstr "Włącz kanał RSS"
|
1109 |
|
1110 |
+
#: includes/options_helptexts.php:83
|
1111 |
msgid "Enable support for an event RSS feed"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: includes/options_helptexts.php:84
|
1115 |
msgid "This option activates a RSS feed for the events."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/options_helptexts.php:85
|
1119 |
msgid ""
|
1120 |
"You have to enable this option if you want to use one of the RSS feed "
|
1121 |
"features."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/options_helptexts.php:88
|
1125 |
msgid "Feed name"
|
1126 |
msgstr "Nazwa kanału"
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:89
|
1129 |
#, php-format
|
1130 |
msgid "This option sets the feed name. The default value is %1$s."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/options_helptexts.php:90
|
1134 |
#, php-format
|
1135 |
msgid ""
|
1136 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1137 |
"enabled)."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: includes/options_helptexts.php:93
|
1141 |
msgid "Feed Description"
|
1142 |
msgstr "Opis kanału"
|
1143 |
|
1144 |
+
#: includes/options_helptexts.php:94
|
1145 |
#, php-format
|
1146 |
msgid "This options set the feed description. The default value is %1$s."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:95
|
1150 |
msgid ""
|
1151 |
"This description will be used in the title for the feed link in the html "
|
1152 |
"head and for the description in the feed itself."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/options_helptexts.php:98
|
1156 |
msgid "Listed events"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:99
|
1160 |
msgid "Only show upcoming events in feed"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:100
|
1164 |
msgid ""
|
1165 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:101
|
1169 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/options_helptexts.php:104
|
1173 |
msgid "Add RSS feed link in head"
|
1174 |
msgstr "Dodaj łącze kanału RSS w nagłówku"
|
1175 |
|
1176 |
+
#: includes/options_helptexts.php:105
|
1177 |
msgid "Add RSS feed link in the html head"
|
1178 |
msgstr "Dodaje łącze kanału RSS w nagłówku HTML"
|
1179 |
|
1180 |
+
#: includes/options_helptexts.php:106
|
1181 |
msgid "This option adds a RSS feed in the html head for the events."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/options_helptexts.php:107
|
1185 |
msgid "There are 2 alternatives to include the RSS feed"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/options_helptexts.php:108
|
1189 |
msgid ""
|
1190 |
"The first way is this option to include a link in the html head. This link "
|
1191 |
"will be recognized by browers or feed readers."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/options_helptexts.php:109
|
1195 |
#, php-format
|
1196 |
msgid ""
|
1197 |
"The second way is to include a visible feed link directly in the event list."
|
1198 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:110
|
1202 |
#, php-format
|
1203 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: includes/options_helptexts.php:113
|
1207 |
msgid "Position of the RSS feed link"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: includes/options_helptexts.php:114
|
1211 |
msgid "at the top (above the navigation bar)"
|
1212 |
msgstr "na górze (ponad panelem nawigacyjnym)"
|
1213 |
|
1214 |
+
#: includes/options_helptexts.php:114
|
1215 |
msgid "between navigation bar and events"
|
1216 |
msgstr "pomiędzy panelem nawigacyjnym a wydarzeniami"
|
1217 |
|
1218 |
+
#: includes/options_helptexts.php:114
|
1219 |
msgid "at the bottom"
|
1220 |
msgstr "na dole"
|
1221 |
|
1222 |
+
#: includes/options_helptexts.php:115
|
1223 |
msgid ""
|
1224 |
"This option specifies the position of the RSS feed link in the event list."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1228 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1229 |
#, php-format
|
1230 |
msgid ""
|
1231 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1232 |
" feed link."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: includes/options_helptexts.php:119
|
1236 |
msgid "Align of the RSS feed link"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: includes/options_helptexts.php:120
|
1240 |
msgid "left"
|
1241 |
msgstr "do lewej"
|
1242 |
|
1243 |
+
#: includes/options_helptexts.php:120
|
1244 |
msgid "center"
|
1245 |
msgstr "do środka"
|
1246 |
|
1247 |
+
#: includes/options_helptexts.php:120
|
1248 |
msgid "right"
|
1249 |
msgstr "do prawej"
|
1250 |
|
1251 |
+
#: includes/options_helptexts.php:121
|
1252 |
msgid ""
|
1253 |
"This option specifies the align of the RSS feed link in the event list."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options_helptexts.php:125
|
1257 |
msgid "Feed link text"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: includes/options_helptexts.php:126
|
1261 |
msgid ""
|
1262 |
"This option specifies the caption of the RSS feed link in the event list."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:127
|
1266 |
msgid ""
|
1267 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1268 |
"image."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:131
|
1272 |
msgid "Feed link image"
|
1273 |
msgstr "Obraz łącza kanału"
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:132
|
1276 |
msgid "Show rss image in feed link"
|
1277 |
msgstr "Wyświetlaj braz łącza kanału RSS"
|
1278 |
|
1279 |
+
#: includes/options_helptexts.php:133
|
1280 |
msgid ""
|
1281 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1282 |
" front of the text."
|
1283 |
msgstr "Ta opcja określa, czy obraz powinien być wyświetlany w łączu kanału RSS przed tekstem."
|
1284 |
|
1285 |
+
#: includes/options_helptexts.php:139
|
1286 |
msgid "Event Category handling"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/options_helptexts.php:140
|
1290 |
msgid "Use Post Categories"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options_helptexts.php:141
|
1294 |
msgid ""
|
1295 |
"Do not maintain seperate categories for the events, and use the existing "
|
1296 |
"post categories instead."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:142
|
1300 |
msgid "Attention"
|
1301 |
msgstr "Uwaga"
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:143
|
1304 |
msgid ""
|
1305 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1306 |
" switching page from here."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
#: includes/options.php:40
|
1310 |
+
msgid "events"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: includes/options.php:41
|
1314 |
+
msgid "Show content"
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: includes/options.php:42
|
1318 |
msgid "Hide content"
|
1319 |
msgstr ""
|
1320 |
|
languages/event-list-pt_BR.po
CHANGED
@@ -10,8 +10,8 @@ msgid ""
|
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
-
"POT-Creation-Date: 2018-
|
14 |
-
"PO-Revision-Date: 2018-
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
@@ -34,7 +34,7 @@ msgstr ""
|
|
34 |
msgid "no additional information available"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
38 |
msgid "Event List Settings"
|
39 |
msgstr "Configurações da Lista de Eventos"
|
40 |
|
@@ -57,7 +57,7 @@ msgid_plural "%s Events"
|
|
57 |
msgstr[0] ""
|
58 |
msgstr[1] ""
|
59 |
|
60 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
61 |
msgid "General"
|
62 |
msgstr "Geral"
|
63 |
|
@@ -432,80 +432,72 @@ msgstr ""
|
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
436 |
msgid "Import Events"
|
437 |
msgstr "Importar Eventos"
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Step"
|
441 |
msgstr "Passo"
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
msgid "Set import file and options"
|
445 |
msgstr "Informar arquivo de importação e opções"
|
446 |
|
447 |
-
#: admin/includes/admin-import.php:
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
msgid "Example file"
|
454 |
msgstr "Arquivo de exemplo"
|
455 |
|
456 |
-
#: admin/includes/admin-import.php:
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid "Note"
|
464 |
msgstr "Nota"
|
465 |
|
466 |
-
#: admin/includes/admin-import.php:
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin/includes/admin-import.php:
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin/includes/admin-import.php:
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:156
|
502 |
-
msgid "Import with errors!"
|
503 |
-
msgstr "Importar com erros!"
|
504 |
-
|
505 |
-
#: admin/includes/admin-import.php:157
|
506 |
-
msgid "Sorry, an error occurred during import!"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
#: admin/includes/admin-import.php:161
|
510 |
msgid "Import successful!"
|
511 |
msgstr "Importado com sucesso!"
|
@@ -514,54 +506,64 @@ msgstr "Importado com sucesso!"
|
|
514 |
msgid "Go back to All Events"
|
515 |
msgstr "Voltar para Todos os Eventos"
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
#: includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr "Título"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "Start Date"
|
524 |
msgstr "Início"
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
msgid "End Date"
|
528 |
msgstr "Término"
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
532 |
msgid "Time"
|
533 |
msgstr "Hora"
|
534 |
|
535 |
-
#: admin/includes/admin-import.php:
|
536 |
-
#: admin/includes/admin-new.php:
|
537 |
#: includes/options_helptexts.php:46
|
538 |
msgid "Location"
|
539 |
msgstr "Localização"
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Content"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
546 |
msgid "Category slugs"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: admin/includes/admin-import.php:
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
553 |
"missing or not correct!"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/includes/admin-import.php:
|
557 |
msgid "Import events"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/includes/admin-import.php:
|
561 |
msgid "Add additional categories"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: admin/includes/admin-import.php:
|
565 |
msgid "Import"
|
566 |
msgstr "Importar"
|
567 |
|
@@ -586,82 +588,82 @@ msgstr ""
|
|
586 |
msgid "Event data"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: admin/includes/admin-new.php:
|
590 |
msgid "Add Copy"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: admin/includes/admin-new.php:
|
594 |
msgid "Date"
|
595 |
msgstr "Data"
|
596 |
|
597 |
-
#: admin/includes/admin-new.php:
|
598 |
msgid "required"
|
599 |
msgstr "obrigatório"
|
600 |
|
601 |
-
#: admin/includes/admin-new.php:
|
602 |
msgid "Multi-Day Event"
|
603 |
msgstr "Evento de vários dias"
|
604 |
|
605 |
-
#: admin/includes/admin-new.php:
|
606 |
msgid "Event Title"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: admin/includes/admin-new.php:
|
610 |
msgid "Event Content"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: admin/includes/admin-new.php:
|
614 |
msgid "Event updated."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: admin/includes/admin-new.php:
|
618 |
msgid "View event"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: admin/includes/admin-new.php:
|
622 |
#, php-format
|
623 |
msgid "Event restored to revision from %1$s"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: admin/includes/admin-new.php:
|
627 |
msgid "Event published."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: admin/includes/admin-new.php:
|
631 |
msgid "Event submitted."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/includes/admin-new.php:
|
635 |
-
#: admin/includes/admin-new.php:
|
636 |
msgid "Preview event"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: admin/includes/admin-new.php:
|
640 |
#, php-format
|
641 |
msgid "Event scheduled for: %1$s>"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/includes/admin-new.php:
|
645 |
msgid "Event draft updated."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: admin/includes/admin-settings.php:
|
649 |
msgid "Go to Event Category switching page"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: admin/includes/admin-settings.php:
|
653 |
msgid "Frontend Settings"
|
654 |
msgstr "Configurações de Frontend"
|
655 |
|
656 |
-
#: admin/includes/admin-settings.php:
|
657 |
msgid "Admin Page Settings"
|
658 |
msgstr "Configurações do Administrador"
|
659 |
|
660 |
-
#: admin/includes/admin-settings.php:
|
661 |
msgid "Feed Settings"
|
662 |
msgstr "Configurações de Feed"
|
663 |
|
664 |
-
#: admin/includes/admin-settings.php:
|
665 |
msgid "Category Taxonomy"
|
666 |
msgstr ""
|
667 |
|
@@ -824,7 +826,7 @@ msgstr "Passado"
|
|
824 |
msgid "This value defines a range from the past to the previous day."
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/event.php:
|
828 |
msgid "No valid start date provided"
|
829 |
msgstr ""
|
830 |
|
@@ -1033,273 +1035,286 @@ msgid ""
|
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: includes/options_helptexts.php:56
|
1036 |
-
msgid "
|
1037 |
msgstr ""
|
1038 |
|
1039 |
#: includes/options_helptexts.php:57
|
1040 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
"With this option the displayed text for the link to show the event content "
|
1042 |
"can be changed, when collapsing is enabled."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: includes/options_helptexts.php:
|
1046 |
msgid "Text for \"Hide content\""
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/options_helptexts.php:
|
1050 |
msgid ""
|
1051 |
"With this option the displayed text for the link to hide the event content "
|
1052 |
"can be changed, when collapsing is enabled."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: includes/options_helptexts.php:
|
1056 |
msgid "Disable CSS file"
|
1057 |
msgstr "Desativar arquivo CSS"
|
1058 |
|
1059 |
-
#: includes/options_helptexts.php:
|
1060 |
#, php-format
|
1061 |
msgid "Disable the %1$s file."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: includes/options_helptexts.php:
|
1065 |
#, php-format
|
1066 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/options_helptexts.php:
|
1070 |
msgid ""
|
1071 |
"This normally only make sense if you have css conflicts with your theme and "
|
1072 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: includes/options_helptexts.php:
|
1076 |
msgid "Date format in edit form"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/options_helptexts.php:
|
1080 |
msgid ""
|
1081 |
"This option sets the displayed date format for the event date fields in the "
|
1082 |
"event new / edit form."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: includes/options_helptexts.php:
|
1086 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/options_helptexts.php:
|
1090 |
#, php-format
|
1091 |
msgid ""
|
1092 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: includes/options_helptexts.php:
|
1096 |
msgid "Enable RSS feed"
|
1097 |
msgstr "Habilitar Feed RSS"
|
1098 |
|
1099 |
-
#: includes/options_helptexts.php:
|
1100 |
msgid "Enable support for an event RSS feed"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: includes/options_helptexts.php:
|
1104 |
msgid "This option activates a RSS feed for the events."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid ""
|
1109 |
"You have to enable this option if you want to use one of the RSS feed "
|
1110 |
"features."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: includes/options_helptexts.php:
|
1114 |
msgid "Feed name"
|
1115 |
msgstr "Nome do feed"
|
1116 |
|
1117 |
-
#: includes/options_helptexts.php:
|
1118 |
#, php-format
|
1119 |
msgid "This option sets the feed name. The default value is %1$s."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
#, php-format
|
1124 |
msgid ""
|
1125 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1126 |
"enabled)."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
msgid "Feed Description"
|
1131 |
msgstr "Descrição do feed"
|
1132 |
|
1133 |
-
#: includes/options_helptexts.php:
|
1134 |
#, php-format
|
1135 |
msgid "This options set the feed description. The default value is %1$s."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
msgid ""
|
1140 |
"This description will be used in the title for the feed link in the html "
|
1141 |
"head and for the description in the feed itself."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: includes/options_helptexts.php:
|
1145 |
msgid "Listed events"
|
1146 |
msgstr "Eventos listados"
|
1147 |
|
1148 |
-
#: includes/options_helptexts.php:
|
1149 |
msgid "Only show upcoming events in feed"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: includes/options_helptexts.php:
|
1153 |
msgid ""
|
1154 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/options_helptexts.php:
|
1162 |
msgid "Add RSS feed link in head"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: includes/options_helptexts.php:
|
1166 |
msgid "Add RSS feed link in the html head"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "This option adds a RSS feed in the html head for the events."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "There are 2 alternatives to include the RSS feed"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid ""
|
1179 |
"The first way is this option to include a link in the html head. This link "
|
1180 |
"will be recognized by browers or feed readers."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: includes/options_helptexts.php:
|
1184 |
#, php-format
|
1185 |
msgid ""
|
1186 |
"The second way is to include a visible feed link directly in the event list."
|
1187 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/options_helptexts.php:
|
1196 |
msgid "Position of the RSS feed link"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/options_helptexts.php:
|
1200 |
msgid "at the top (above the navigation bar)"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/options_helptexts.php:
|
1204 |
msgid "between navigation bar and events"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/options_helptexts.php:
|
1208 |
msgid "at the bottom"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/options_helptexts.php:
|
1212 |
msgid ""
|
1213 |
"This option specifies the position of the RSS feed link in the event list."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
-
#: includes/options_helptexts.php:
|
1218 |
#, php-format
|
1219 |
msgid ""
|
1220 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1221 |
" feed link."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: includes/options_helptexts.php:
|
1225 |
msgid "Align of the RSS feed link"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/options_helptexts.php:
|
1229 |
msgid "left"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: includes/options_helptexts.php:
|
1233 |
msgid "center"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/options_helptexts.php:
|
1237 |
msgid "right"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/options_helptexts.php:
|
1241 |
msgid ""
|
1242 |
"This option specifies the align of the RSS feed link in the event list."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: includes/options_helptexts.php:
|
1246 |
msgid "Feed link text"
|
1247 |
msgstr "Texto do link do Feed"
|
1248 |
|
1249 |
-
#: includes/options_helptexts.php:
|
1250 |
msgid ""
|
1251 |
"This option specifies the caption of the RSS feed link in the event list."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/options_helptexts.php:
|
1255 |
msgid ""
|
1256 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1257 |
"image."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: includes/options_helptexts.php:
|
1261 |
msgid "Feed link image"
|
1262 |
msgstr "Imagem do link do Feed"
|
1263 |
|
1264 |
-
#: includes/options_helptexts.php:
|
1265 |
msgid "Show rss image in feed link"
|
1266 |
msgstr "Exibir imagem rss no link do feed"
|
1267 |
|
1268 |
-
#: includes/options_helptexts.php:
|
1269 |
msgid ""
|
1270 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1271 |
" front of the text."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: includes/options_helptexts.php:
|
1275 |
msgid "Event Category handling"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options_helptexts.php:
|
1279 |
msgid "Use Post Categories"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options_helptexts.php:
|
1283 |
msgid ""
|
1284 |
"Do not maintain seperate categories for the events, and use the existing "
|
1285 |
"post categories instead."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: includes/options_helptexts.php:
|
1289 |
msgid "Attention"
|
1290 |
msgstr "Atenção"
|
1291 |
|
1292 |
-
#: includes/options_helptexts.php:
|
1293 |
msgid ""
|
1294 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1295 |
" switching page from here."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
#: includes/options.php:40
|
1299 |
-
msgid "
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1303 |
msgid "Hide content"
|
1304 |
msgstr ""
|
1305 |
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
14 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
34 |
msgid "no additional information available"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
38 |
msgid "Event List Settings"
|
39 |
msgstr "Configurações da Lista de Eventos"
|
40 |
|
57 |
msgstr[0] ""
|
58 |
msgstr[1] ""
|
59 |
|
60 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
61 |
msgid "General"
|
62 |
msgstr "Geral"
|
63 |
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:50
|
436 |
msgid "Import Events"
|
437 |
msgstr "Importar Eventos"
|
438 |
|
439 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
440 |
msgid "Step"
|
441 |
msgstr "Passo"
|
442 |
|
443 |
+
#: admin/includes/admin-import.php:70
|
444 |
msgid "Set import file and options"
|
445 |
msgstr "Informar arquivo de importação e opções"
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:73
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin/includes/admin-import.php:76
|
453 |
msgid "Example file"
|
454 |
msgstr "Arquivo de exemplo"
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:77
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin/includes/admin-import.php:78
|
463 |
msgid "Note"
|
464 |
msgstr "Nota"
|
465 |
|
466 |
+
#: admin/includes/admin-import.php:78
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
473 |
+
#: admin/includes/admin-import.php:106
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:86
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:94
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:123
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/includes/admin-import.php:126
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:132
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr ""
|
500 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
501 |
#: admin/includes/admin-import.php:161
|
502 |
msgid "Import successful!"
|
503 |
msgstr "Importado com sucesso!"
|
506 |
msgid "Go back to All Events"
|
507 |
msgstr "Voltar para Todos os Eventos"
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:166
|
510 |
+
msgid "Import with errors!"
|
511 |
+
msgstr "Importar com erros!"
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:167
|
514 |
+
#, php-format
|
515 |
+
msgid ""
|
516 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
520 |
#: includes/widget_helptexts.php:8
|
521 |
msgid "Title"
|
522 |
msgstr "Título"
|
523 |
|
524 |
+
#: admin/includes/admin-import.php:175
|
525 |
msgid "Start Date"
|
526 |
msgstr "Início"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:176
|
529 |
msgid "End Date"
|
530 |
msgstr "Término"
|
531 |
|
532 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
533 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
534 |
msgid "Time"
|
535 |
msgstr "Hora"
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
538 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
539 |
#: includes/options_helptexts.php:46
|
540 |
msgid "Location"
|
541 |
msgstr "Localização"
|
542 |
|
543 |
+
#: admin/includes/admin-import.php:179
|
544 |
msgid "Content"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/includes/admin-import.php:180
|
548 |
msgid "Category slugs"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/includes/admin-import.php:219
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
555 |
"missing or not correct!"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin/includes/admin-import.php:251
|
559 |
msgid "Import events"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: admin/includes/admin-import.php:252
|
563 |
msgid "Add additional categories"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
567 |
msgid "Import"
|
568 |
msgstr "Importar"
|
569 |
|
588 |
msgid "Event data"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: admin/includes/admin-new.php:80
|
592 |
msgid "Add Copy"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/includes/admin-new.php:84
|
596 |
msgid "Date"
|
597 |
msgstr "Data"
|
598 |
|
599 |
+
#: admin/includes/admin-new.php:84
|
600 |
msgid "required"
|
601 |
msgstr "obrigatório"
|
602 |
|
603 |
+
#: admin/includes/admin-new.php:87
|
604 |
msgid "Multi-Day Event"
|
605 |
msgstr "Evento de vários dias"
|
606 |
|
607 |
+
#: admin/includes/admin-new.php:106
|
608 |
msgid "Event Title"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/includes/admin-new.php:121
|
612 |
msgid "Event Content"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
616 |
msgid "Event updated."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
620 |
msgid "View event"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: admin/includes/admin-new.php:184
|
624 |
#, php-format
|
625 |
msgid "Event restored to revision from %1$s"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: admin/includes/admin-new.php:185
|
629 |
msgid "Event published."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/includes/admin-new.php:187
|
633 |
msgid "Event submitted."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
637 |
+
#: admin/includes/admin-new.php:190
|
638 |
msgid "Preview event"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/includes/admin-new.php:188
|
642 |
#, php-format
|
643 |
msgid "Event scheduled for: %1$s>"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: admin/includes/admin-new.php:190
|
647 |
msgid "Event draft updated."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: admin/includes/admin-settings.php:71
|
651 |
msgid "Go to Event Category switching page"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: admin/includes/admin-settings.php:83
|
655 |
msgid "Frontend Settings"
|
656 |
msgstr "Configurações de Frontend"
|
657 |
|
658 |
+
#: admin/includes/admin-settings.php:84
|
659 |
msgid "Admin Page Settings"
|
660 |
msgstr "Configurações do Administrador"
|
661 |
|
662 |
+
#: admin/includes/admin-settings.php:85
|
663 |
msgid "Feed Settings"
|
664 |
msgstr "Configurações de Feed"
|
665 |
|
666 |
+
#: admin/includes/admin-settings.php:86
|
667 |
msgid "Category Taxonomy"
|
668 |
msgstr ""
|
669 |
|
826 |
msgid "This value defines a range from the past to the previous day."
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/event.php:107
|
830 |
msgid "No valid start date provided"
|
831 |
msgstr ""
|
832 |
|
1035 |
msgstr ""
|
1036 |
|
1037 |
#: includes/options_helptexts.php:56
|
1038 |
+
msgid "Events permalink slug"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: includes/options_helptexts.php:57
|
1042 |
msgid ""
|
1043 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/options_helptexts.php:60
|
1047 |
+
msgid "Text for \"Show content\""
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/options_helptexts.php:61
|
1051 |
+
msgid ""
|
1052 |
"With this option the displayed text for the link to show the event content "
|
1053 |
"can be changed, when collapsing is enabled."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/options_helptexts.php:64
|
1057 |
msgid "Text for \"Hide content\""
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/options_helptexts.php:65
|
1061 |
msgid ""
|
1062 |
"With this option the displayed text for the link to hide the event content "
|
1063 |
"can be changed, when collapsing is enabled."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:68
|
1067 |
msgid "Disable CSS file"
|
1068 |
msgstr "Desativar arquivo CSS"
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:69
|
1071 |
#, php-format
|
1072 |
msgid "Disable the %1$s file."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: includes/options_helptexts.php:70
|
1076 |
#, php-format
|
1077 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:71
|
1081 |
msgid ""
|
1082 |
"This normally only make sense if you have css conflicts with your theme and "
|
1083 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:75
|
1087 |
msgid "Date format in edit form"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:76
|
1091 |
msgid ""
|
1092 |
"This option sets the displayed date format for the event date fields in the "
|
1093 |
"event new / edit form."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: includes/options_helptexts.php:77
|
1097 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: includes/options_helptexts.php:78
|
1101 |
#, php-format
|
1102 |
msgid ""
|
1103 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1107 |
msgid "Enable RSS feed"
|
1108 |
msgstr "Habilitar Feed RSS"
|
1109 |
|
1110 |
+
#: includes/options_helptexts.php:83
|
1111 |
msgid "Enable support for an event RSS feed"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: includes/options_helptexts.php:84
|
1115 |
msgid "This option activates a RSS feed for the events."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/options_helptexts.php:85
|
1119 |
msgid ""
|
1120 |
"You have to enable this option if you want to use one of the RSS feed "
|
1121 |
"features."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/options_helptexts.php:88
|
1125 |
msgid "Feed name"
|
1126 |
msgstr "Nome do feed"
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:89
|
1129 |
#, php-format
|
1130 |
msgid "This option sets the feed name. The default value is %1$s."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/options_helptexts.php:90
|
1134 |
#, php-format
|
1135 |
msgid ""
|
1136 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1137 |
"enabled)."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: includes/options_helptexts.php:93
|
1141 |
msgid "Feed Description"
|
1142 |
msgstr "Descrição do feed"
|
1143 |
|
1144 |
+
#: includes/options_helptexts.php:94
|
1145 |
#, php-format
|
1146 |
msgid "This options set the feed description. The default value is %1$s."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:95
|
1150 |
msgid ""
|
1151 |
"This description will be used in the title for the feed link in the html "
|
1152 |
"head and for the description in the feed itself."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/options_helptexts.php:98
|
1156 |
msgid "Listed events"
|
1157 |
msgstr "Eventos listados"
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:99
|
1160 |
msgid "Only show upcoming events in feed"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:100
|
1164 |
msgid ""
|
1165 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:101
|
1169 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/options_helptexts.php:104
|
1173 |
msgid "Add RSS feed link in head"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/options_helptexts.php:105
|
1177 |
msgid "Add RSS feed link in the html head"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: includes/options_helptexts.php:106
|
1181 |
msgid "This option adds a RSS feed in the html head for the events."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/options_helptexts.php:107
|
1185 |
msgid "There are 2 alternatives to include the RSS feed"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/options_helptexts.php:108
|
1189 |
msgid ""
|
1190 |
"The first way is this option to include a link in the html head. This link "
|
1191 |
"will be recognized by browers or feed readers."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/options_helptexts.php:109
|
1195 |
#, php-format
|
1196 |
msgid ""
|
1197 |
"The second way is to include a visible feed link directly in the event list."
|
1198 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:110
|
1202 |
#, php-format
|
1203 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: includes/options_helptexts.php:113
|
1207 |
msgid "Position of the RSS feed link"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: includes/options_helptexts.php:114
|
1211 |
msgid "at the top (above the navigation bar)"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: includes/options_helptexts.php:114
|
1215 |
msgid "between navigation bar and events"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: includes/options_helptexts.php:114
|
1219 |
msgid "at the bottom"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: includes/options_helptexts.php:115
|
1223 |
msgid ""
|
1224 |
"This option specifies the position of the RSS feed link in the event list."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1228 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1229 |
#, php-format
|
1230 |
msgid ""
|
1231 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1232 |
" feed link."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: includes/options_helptexts.php:119
|
1236 |
msgid "Align of the RSS feed link"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: includes/options_helptexts.php:120
|
1240 |
msgid "left"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: includes/options_helptexts.php:120
|
1244 |
msgid "center"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: includes/options_helptexts.php:120
|
1248 |
msgid "right"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: includes/options_helptexts.php:121
|
1252 |
msgid ""
|
1253 |
"This option specifies the align of the RSS feed link in the event list."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options_helptexts.php:125
|
1257 |
msgid "Feed link text"
|
1258 |
msgstr "Texto do link do Feed"
|
1259 |
|
1260 |
+
#: includes/options_helptexts.php:126
|
1261 |
msgid ""
|
1262 |
"This option specifies the caption of the RSS feed link in the event list."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:127
|
1266 |
msgid ""
|
1267 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1268 |
"image."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:131
|
1272 |
msgid "Feed link image"
|
1273 |
msgstr "Imagem do link do Feed"
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:132
|
1276 |
msgid "Show rss image in feed link"
|
1277 |
msgstr "Exibir imagem rss no link do feed"
|
1278 |
|
1279 |
+
#: includes/options_helptexts.php:133
|
1280 |
msgid ""
|
1281 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1282 |
" front of the text."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options_helptexts.php:139
|
1286 |
msgid "Event Category handling"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/options_helptexts.php:140
|
1290 |
msgid "Use Post Categories"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options_helptexts.php:141
|
1294 |
msgid ""
|
1295 |
"Do not maintain seperate categories for the events, and use the existing "
|
1296 |
"post categories instead."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:142
|
1300 |
msgid "Attention"
|
1301 |
msgstr "Atenção"
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:143
|
1304 |
msgid ""
|
1305 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1306 |
" switching page from here."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
#: includes/options.php:40
|
1310 |
+
msgid "events"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: includes/options.php:41
|
1314 |
+
msgid "Show content"
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: includes/options.php:42
|
1318 |
msgid "Hide content"
|
1319 |
msgstr ""
|
1320 |
|
languages/event-list-sk_SK.po
CHANGED
@@ -9,8 +9,8 @@ msgid ""
|
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
12 |
-
"POT-Creation-Date: 2018-
|
13 |
-
"PO-Revision-Date: 2018-
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/mibuthu/wp-event-list/language/sk_SK/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
@@ -33,7 +33,7 @@ msgstr ""
|
|
33 |
msgid "no additional information available"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
37 |
msgid "Event List Settings"
|
38 |
msgstr "Nastavenia zoznamu udalostí"
|
39 |
|
@@ -57,7 +57,7 @@ msgstr[0] ""
|
|
57 |
msgstr[1] ""
|
58 |
msgstr[2] ""
|
59 |
|
60 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
61 |
msgid "General"
|
62 |
msgstr "Všeobecné"
|
63 |
|
@@ -432,80 +432,72 @@ msgstr ""
|
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
436 |
msgid "Import Events"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Step"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
msgid "Set import file and options"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin/includes/admin-import.php:
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
msgid "Example file"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: admin/includes/admin-import.php:
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid "Note"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: admin/includes/admin-import.php:
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin/includes/admin-import.php:
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin/includes/admin-import.php:
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:156
|
502 |
-
msgid "Import with errors!"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: admin/includes/admin-import.php:157
|
506 |
-
msgid "Sorry, an error occurred during import!"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
#: admin/includes/admin-import.php:161
|
510 |
msgid "Import successful!"
|
511 |
msgstr ""
|
@@ -514,54 +506,64 @@ msgstr ""
|
|
514 |
msgid "Go back to All Events"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
#: includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "Start Date"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
msgid "End Date"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
532 |
msgid "Time"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: admin/includes/admin-import.php:
|
536 |
-
#: admin/includes/admin-new.php:
|
537 |
#: includes/options_helptexts.php:46
|
538 |
msgid "Location"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Content"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
546 |
msgid "Category slugs"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: admin/includes/admin-import.php:
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
553 |
"missing or not correct!"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/includes/admin-import.php:
|
557 |
msgid "Import events"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/includes/admin-import.php:
|
561 |
msgid "Add additional categories"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: admin/includes/admin-import.php:
|
565 |
msgid "Import"
|
566 |
msgstr ""
|
567 |
|
@@ -586,82 +588,82 @@ msgstr ""
|
|
586 |
msgid "Event data"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: admin/includes/admin-new.php:
|
590 |
msgid "Add Copy"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: admin/includes/admin-new.php:
|
594 |
msgid "Date"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: admin/includes/admin-new.php:
|
598 |
msgid "required"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: admin/includes/admin-new.php:
|
602 |
msgid "Multi-Day Event"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: admin/includes/admin-new.php:
|
606 |
msgid "Event Title"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: admin/includes/admin-new.php:
|
610 |
msgid "Event Content"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: admin/includes/admin-new.php:
|
614 |
msgid "Event updated."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: admin/includes/admin-new.php:
|
618 |
msgid "View event"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: admin/includes/admin-new.php:
|
622 |
#, php-format
|
623 |
msgid "Event restored to revision from %1$s"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: admin/includes/admin-new.php:
|
627 |
msgid "Event published."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: admin/includes/admin-new.php:
|
631 |
msgid "Event submitted."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/includes/admin-new.php:
|
635 |
-
#: admin/includes/admin-new.php:
|
636 |
msgid "Preview event"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: admin/includes/admin-new.php:
|
640 |
#, php-format
|
641 |
msgid "Event scheduled for: %1$s>"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/includes/admin-new.php:
|
645 |
msgid "Event draft updated."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: admin/includes/admin-settings.php:
|
649 |
msgid "Go to Event Category switching page"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: admin/includes/admin-settings.php:
|
653 |
msgid "Frontend Settings"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: admin/includes/admin-settings.php:
|
657 |
msgid "Admin Page Settings"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: admin/includes/admin-settings.php:
|
661 |
msgid "Feed Settings"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: admin/includes/admin-settings.php:
|
665 |
msgid "Category Taxonomy"
|
666 |
msgstr ""
|
667 |
|
@@ -824,7 +826,7 @@ msgstr ""
|
|
824 |
msgid "This value defines a range from the past to the previous day."
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/event.php:
|
828 |
msgid "No valid start date provided"
|
829 |
msgstr ""
|
830 |
|
@@ -1033,273 +1035,286 @@ msgid ""
|
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: includes/options_helptexts.php:56
|
1036 |
-
msgid "
|
1037 |
msgstr ""
|
1038 |
|
1039 |
#: includes/options_helptexts.php:57
|
1040 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
"With this option the displayed text for the link to show the event content "
|
1042 |
"can be changed, when collapsing is enabled."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: includes/options_helptexts.php:
|
1046 |
msgid "Text for \"Hide content\""
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/options_helptexts.php:
|
1050 |
msgid ""
|
1051 |
"With this option the displayed text for the link to hide the event content "
|
1052 |
"can be changed, when collapsing is enabled."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: includes/options_helptexts.php:
|
1056 |
msgid "Disable CSS file"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: includes/options_helptexts.php:
|
1060 |
#, php-format
|
1061 |
msgid "Disable the %1$s file."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: includes/options_helptexts.php:
|
1065 |
#, php-format
|
1066 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/options_helptexts.php:
|
1070 |
msgid ""
|
1071 |
"This normally only make sense if you have css conflicts with your theme and "
|
1072 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: includes/options_helptexts.php:
|
1076 |
msgid "Date format in edit form"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/options_helptexts.php:
|
1080 |
msgid ""
|
1081 |
"This option sets the displayed date format for the event date fields in the "
|
1082 |
"event new / edit form."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: includes/options_helptexts.php:
|
1086 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/options_helptexts.php:
|
1090 |
#, php-format
|
1091 |
msgid ""
|
1092 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: includes/options_helptexts.php:
|
1096 |
msgid "Enable RSS feed"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: includes/options_helptexts.php:
|
1100 |
msgid "Enable support for an event RSS feed"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: includes/options_helptexts.php:
|
1104 |
msgid "This option activates a RSS feed for the events."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid ""
|
1109 |
"You have to enable this option if you want to use one of the RSS feed "
|
1110 |
"features."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: includes/options_helptexts.php:
|
1114 |
msgid "Feed name"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/options_helptexts.php:
|
1118 |
#, php-format
|
1119 |
msgid "This option sets the feed name. The default value is %1$s."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
#, php-format
|
1124 |
msgid ""
|
1125 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1126 |
"enabled)."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
msgid "Feed Description"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/options_helptexts.php:
|
1134 |
#, php-format
|
1135 |
msgid "This options set the feed description. The default value is %1$s."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
msgid ""
|
1140 |
"This description will be used in the title for the feed link in the html "
|
1141 |
"head and for the description in the feed itself."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: includes/options_helptexts.php:
|
1145 |
msgid "Listed events"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: includes/options_helptexts.php:
|
1149 |
msgid "Only show upcoming events in feed"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: includes/options_helptexts.php:
|
1153 |
msgid ""
|
1154 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/options_helptexts.php:
|
1162 |
msgid "Add RSS feed link in head"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: includes/options_helptexts.php:
|
1166 |
msgid "Add RSS feed link in the html head"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "This option adds a RSS feed in the html head for the events."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "There are 2 alternatives to include the RSS feed"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid ""
|
1179 |
"The first way is this option to include a link in the html head. This link "
|
1180 |
"will be recognized by browers or feed readers."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: includes/options_helptexts.php:
|
1184 |
#, php-format
|
1185 |
msgid ""
|
1186 |
"The second way is to include a visible feed link directly in the event list."
|
1187 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/options_helptexts.php:
|
1196 |
msgid "Position of the RSS feed link"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/options_helptexts.php:
|
1200 |
msgid "at the top (above the navigation bar)"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/options_helptexts.php:
|
1204 |
msgid "between navigation bar and events"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/options_helptexts.php:
|
1208 |
msgid "at the bottom"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/options_helptexts.php:
|
1212 |
msgid ""
|
1213 |
"This option specifies the position of the RSS feed link in the event list."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
-
#: includes/options_helptexts.php:
|
1218 |
#, php-format
|
1219 |
msgid ""
|
1220 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1221 |
" feed link."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: includes/options_helptexts.php:
|
1225 |
msgid "Align of the RSS feed link"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/options_helptexts.php:
|
1229 |
msgid "left"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: includes/options_helptexts.php:
|
1233 |
msgid "center"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/options_helptexts.php:
|
1237 |
msgid "right"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/options_helptexts.php:
|
1241 |
msgid ""
|
1242 |
"This option specifies the align of the RSS feed link in the event list."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: includes/options_helptexts.php:
|
1246 |
msgid "Feed link text"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: includes/options_helptexts.php:
|
1250 |
msgid ""
|
1251 |
"This option specifies the caption of the RSS feed link in the event list."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/options_helptexts.php:
|
1255 |
msgid ""
|
1256 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1257 |
"image."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: includes/options_helptexts.php:
|
1261 |
msgid "Feed link image"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: includes/options_helptexts.php:
|
1265 |
msgid "Show rss image in feed link"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: includes/options_helptexts.php:
|
1269 |
msgid ""
|
1270 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1271 |
" front of the text."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: includes/options_helptexts.php:
|
1275 |
msgid "Event Category handling"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options_helptexts.php:
|
1279 |
msgid "Use Post Categories"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options_helptexts.php:
|
1283 |
msgid ""
|
1284 |
"Do not maintain seperate categories for the events, and use the existing "
|
1285 |
"post categories instead."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: includes/options_helptexts.php:
|
1289 |
msgid "Attention"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: includes/options_helptexts.php:
|
1293 |
msgid ""
|
1294 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1295 |
" switching page from here."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
#: includes/options.php:40
|
1299 |
-
msgid "
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1303 |
msgid "Hide content"
|
1304 |
msgstr ""
|
1305 |
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
12 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
13 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/mibuthu/wp-event-list/language/sk_SK/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
33 |
msgid "no additional information available"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
37 |
msgid "Event List Settings"
|
38 |
msgstr "Nastavenia zoznamu udalostí"
|
39 |
|
57 |
msgstr[1] ""
|
58 |
msgstr[2] ""
|
59 |
|
60 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
61 |
msgid "General"
|
62 |
msgstr "Všeobecné"
|
63 |
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:50
|
436 |
msgid "Import Events"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
440 |
msgid "Step"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: admin/includes/admin-import.php:70
|
444 |
msgid "Set import file and options"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:73
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin/includes/admin-import.php:76
|
453 |
msgid "Example file"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:77
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin/includes/admin-import.php:78
|
463 |
msgid "Note"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: admin/includes/admin-import.php:78
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
473 |
+
#: admin/includes/admin-import.php:106
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:86
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:94
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:123
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/includes/admin-import.php:126
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:132
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr ""
|
500 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
501 |
#: admin/includes/admin-import.php:161
|
502 |
msgid "Import successful!"
|
503 |
msgstr ""
|
506 |
msgid "Go back to All Events"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:166
|
510 |
+
msgid "Import with errors!"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:167
|
514 |
+
#, php-format
|
515 |
+
msgid ""
|
516 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
520 |
#: includes/widget_helptexts.php:8
|
521 |
msgid "Title"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin/includes/admin-import.php:175
|
525 |
msgid "Start Date"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:176
|
529 |
msgid "End Date"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
533 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
534 |
msgid "Time"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
538 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
539 |
#: includes/options_helptexts.php:46
|
540 |
msgid "Location"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: admin/includes/admin-import.php:179
|
544 |
msgid "Content"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/includes/admin-import.php:180
|
548 |
msgid "Category slugs"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/includes/admin-import.php:219
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
555 |
"missing or not correct!"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin/includes/admin-import.php:251
|
559 |
msgid "Import events"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: admin/includes/admin-import.php:252
|
563 |
msgid "Add additional categories"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
567 |
msgid "Import"
|
568 |
msgstr ""
|
569 |
|
588 |
msgid "Event data"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: admin/includes/admin-new.php:80
|
592 |
msgid "Add Copy"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/includes/admin-new.php:84
|
596 |
msgid "Date"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: admin/includes/admin-new.php:84
|
600 |
msgid "required"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: admin/includes/admin-new.php:87
|
604 |
msgid "Multi-Day Event"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: admin/includes/admin-new.php:106
|
608 |
msgid "Event Title"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/includes/admin-new.php:121
|
612 |
msgid "Event Content"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
616 |
msgid "Event updated."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
620 |
msgid "View event"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: admin/includes/admin-new.php:184
|
624 |
#, php-format
|
625 |
msgid "Event restored to revision from %1$s"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: admin/includes/admin-new.php:185
|
629 |
msgid "Event published."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/includes/admin-new.php:187
|
633 |
msgid "Event submitted."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
637 |
+
#: admin/includes/admin-new.php:190
|
638 |
msgid "Preview event"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/includes/admin-new.php:188
|
642 |
#, php-format
|
643 |
msgid "Event scheduled for: %1$s>"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: admin/includes/admin-new.php:190
|
647 |
msgid "Event draft updated."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: admin/includes/admin-settings.php:71
|
651 |
msgid "Go to Event Category switching page"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: admin/includes/admin-settings.php:83
|
655 |
msgid "Frontend Settings"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: admin/includes/admin-settings.php:84
|
659 |
msgid "Admin Page Settings"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: admin/includes/admin-settings.php:85
|
663 |
msgid "Feed Settings"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: admin/includes/admin-settings.php:86
|
667 |
msgid "Category Taxonomy"
|
668 |
msgstr ""
|
669 |
|
826 |
msgid "This value defines a range from the past to the previous day."
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/event.php:107
|
830 |
msgid "No valid start date provided"
|
831 |
msgstr ""
|
832 |
|
1035 |
msgstr ""
|
1036 |
|
1037 |
#: includes/options_helptexts.php:56
|
1038 |
+
msgid "Events permalink slug"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: includes/options_helptexts.php:57
|
1042 |
msgid ""
|
1043 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/options_helptexts.php:60
|
1047 |
+
msgid "Text for \"Show content\""
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/options_helptexts.php:61
|
1051 |
+
msgid ""
|
1052 |
"With this option the displayed text for the link to show the event content "
|
1053 |
"can be changed, when collapsing is enabled."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/options_helptexts.php:64
|
1057 |
msgid "Text for \"Hide content\""
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/options_helptexts.php:65
|
1061 |
msgid ""
|
1062 |
"With this option the displayed text for the link to hide the event content "
|
1063 |
"can be changed, when collapsing is enabled."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:68
|
1067 |
msgid "Disable CSS file"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:69
|
1071 |
#, php-format
|
1072 |
msgid "Disable the %1$s file."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: includes/options_helptexts.php:70
|
1076 |
#, php-format
|
1077 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:71
|
1081 |
msgid ""
|
1082 |
"This normally only make sense if you have css conflicts with your theme and "
|
1083 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:75
|
1087 |
msgid "Date format in edit form"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:76
|
1091 |
msgid ""
|
1092 |
"This option sets the displayed date format for the event date fields in the "
|
1093 |
"event new / edit form."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: includes/options_helptexts.php:77
|
1097 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: includes/options_helptexts.php:78
|
1101 |
#, php-format
|
1102 |
msgid ""
|
1103 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1107 |
msgid "Enable RSS feed"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: includes/options_helptexts.php:83
|
1111 |
msgid "Enable support for an event RSS feed"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: includes/options_helptexts.php:84
|
1115 |
msgid "This option activates a RSS feed for the events."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/options_helptexts.php:85
|
1119 |
msgid ""
|
1120 |
"You have to enable this option if you want to use one of the RSS feed "
|
1121 |
"features."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/options_helptexts.php:88
|
1125 |
msgid "Feed name"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:89
|
1129 |
#, php-format
|
1130 |
msgid "This option sets the feed name. The default value is %1$s."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/options_helptexts.php:90
|
1134 |
#, php-format
|
1135 |
msgid ""
|
1136 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1137 |
"enabled)."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: includes/options_helptexts.php:93
|
1141 |
msgid "Feed Description"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: includes/options_helptexts.php:94
|
1145 |
#, php-format
|
1146 |
msgid "This options set the feed description. The default value is %1$s."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:95
|
1150 |
msgid ""
|
1151 |
"This description will be used in the title for the feed link in the html "
|
1152 |
"head and for the description in the feed itself."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/options_helptexts.php:98
|
1156 |
msgid "Listed events"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:99
|
1160 |
msgid "Only show upcoming events in feed"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:100
|
1164 |
msgid ""
|
1165 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:101
|
1169 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/options_helptexts.php:104
|
1173 |
msgid "Add RSS feed link in head"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/options_helptexts.php:105
|
1177 |
msgid "Add RSS feed link in the html head"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: includes/options_helptexts.php:106
|
1181 |
msgid "This option adds a RSS feed in the html head for the events."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/options_helptexts.php:107
|
1185 |
msgid "There are 2 alternatives to include the RSS feed"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/options_helptexts.php:108
|
1189 |
msgid ""
|
1190 |
"The first way is this option to include a link in the html head. This link "
|
1191 |
"will be recognized by browers or feed readers."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/options_helptexts.php:109
|
1195 |
#, php-format
|
1196 |
msgid ""
|
1197 |
"The second way is to include a visible feed link directly in the event list."
|
1198 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:110
|
1202 |
#, php-format
|
1203 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: includes/options_helptexts.php:113
|
1207 |
msgid "Position of the RSS feed link"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: includes/options_helptexts.php:114
|
1211 |
msgid "at the top (above the navigation bar)"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: includes/options_helptexts.php:114
|
1215 |
msgid "between navigation bar and events"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: includes/options_helptexts.php:114
|
1219 |
msgid "at the bottom"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: includes/options_helptexts.php:115
|
1223 |
msgid ""
|
1224 |
"This option specifies the position of the RSS feed link in the event list."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1228 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1229 |
#, php-format
|
1230 |
msgid ""
|
1231 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1232 |
" feed link."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: includes/options_helptexts.php:119
|
1236 |
msgid "Align of the RSS feed link"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: includes/options_helptexts.php:120
|
1240 |
msgid "left"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: includes/options_helptexts.php:120
|
1244 |
msgid "center"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: includes/options_helptexts.php:120
|
1248 |
msgid "right"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: includes/options_helptexts.php:121
|
1252 |
msgid ""
|
1253 |
"This option specifies the align of the RSS feed link in the event list."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options_helptexts.php:125
|
1257 |
msgid "Feed link text"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: includes/options_helptexts.php:126
|
1261 |
msgid ""
|
1262 |
"This option specifies the caption of the RSS feed link in the event list."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:127
|
1266 |
msgid ""
|
1267 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1268 |
"image."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:131
|
1272 |
msgid "Feed link image"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:132
|
1276 |
msgid "Show rss image in feed link"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/options_helptexts.php:133
|
1280 |
msgid ""
|
1281 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1282 |
" front of the text."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options_helptexts.php:139
|
1286 |
msgid "Event Category handling"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/options_helptexts.php:140
|
1290 |
msgid "Use Post Categories"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options_helptexts.php:141
|
1294 |
msgid ""
|
1295 |
"Do not maintain seperate categories for the events, and use the existing "
|
1296 |
"post categories instead."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:142
|
1300 |
msgid "Attention"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:143
|
1304 |
msgid ""
|
1305 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1306 |
" switching page from here."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
#: includes/options.php:40
|
1310 |
+
msgid "events"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: includes/options.php:41
|
1314 |
+
msgid "Show content"
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: includes/options.php:42
|
1318 |
msgid "Hide content"
|
1319 |
msgstr ""
|
1320 |
|
languages/event-list-sl_SI.po
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
-
"POT-Creation-Date: 2018-
|
12 |
-
"PO-Revision-Date: 2018-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/mibuthu/wp-event-list/language/sl_SI/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -32,7 +32,7 @@ msgstr ""
|
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Nastavitve seznama dogodkov"
|
38 |
|
@@ -57,7 +57,7 @@ msgstr[1] ""
|
|
57 |
msgstr[2] ""
|
58 |
msgstr[3] ""
|
59 |
|
60 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
61 |
msgid "General"
|
62 |
msgstr ""
|
63 |
|
@@ -432,80 +432,72 @@ msgstr ""
|
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
436 |
msgid "Import Events"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Step"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
msgid "Set import file and options"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin/includes/admin-import.php:
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
msgid "Example file"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: admin/includes/admin-import.php:
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid "Note"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: admin/includes/admin-import.php:
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin/includes/admin-import.php:
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin/includes/admin-import.php:
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:156
|
502 |
-
msgid "Import with errors!"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: admin/includes/admin-import.php:157
|
506 |
-
msgid "Sorry, an error occurred during import!"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
#: admin/includes/admin-import.php:161
|
510 |
msgid "Import successful!"
|
511 |
msgstr ""
|
@@ -514,54 +506,64 @@ msgstr ""
|
|
514 |
msgid "Go back to All Events"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
#: includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "Start Date"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
msgid "End Date"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
532 |
msgid "Time"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: admin/includes/admin-import.php:
|
536 |
-
#: admin/includes/admin-new.php:
|
537 |
#: includes/options_helptexts.php:46
|
538 |
msgid "Location"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Content"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
546 |
msgid "Category slugs"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: admin/includes/admin-import.php:
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
553 |
"missing or not correct!"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/includes/admin-import.php:
|
557 |
msgid "Import events"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/includes/admin-import.php:
|
561 |
msgid "Add additional categories"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: admin/includes/admin-import.php:
|
565 |
msgid "Import"
|
566 |
msgstr ""
|
567 |
|
@@ -586,82 +588,82 @@ msgstr ""
|
|
586 |
msgid "Event data"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: admin/includes/admin-new.php:
|
590 |
msgid "Add Copy"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: admin/includes/admin-new.php:
|
594 |
msgid "Date"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: admin/includes/admin-new.php:
|
598 |
msgid "required"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: admin/includes/admin-new.php:
|
602 |
msgid "Multi-Day Event"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: admin/includes/admin-new.php:
|
606 |
msgid "Event Title"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: admin/includes/admin-new.php:
|
610 |
msgid "Event Content"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: admin/includes/admin-new.php:
|
614 |
msgid "Event updated."
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: admin/includes/admin-new.php:
|
618 |
msgid "View event"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: admin/includes/admin-new.php:
|
622 |
#, php-format
|
623 |
msgid "Event restored to revision from %1$s"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: admin/includes/admin-new.php:
|
627 |
msgid "Event published."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: admin/includes/admin-new.php:
|
631 |
msgid "Event submitted."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/includes/admin-new.php:
|
635 |
-
#: admin/includes/admin-new.php:
|
636 |
msgid "Preview event"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: admin/includes/admin-new.php:
|
640 |
#, php-format
|
641 |
msgid "Event scheduled for: %1$s>"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/includes/admin-new.php:
|
645 |
msgid "Event draft updated."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: admin/includes/admin-settings.php:
|
649 |
msgid "Go to Event Category switching page"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: admin/includes/admin-settings.php:
|
653 |
msgid "Frontend Settings"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: admin/includes/admin-settings.php:
|
657 |
msgid "Admin Page Settings"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: admin/includes/admin-settings.php:
|
661 |
msgid "Feed Settings"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: admin/includes/admin-settings.php:
|
665 |
msgid "Category Taxonomy"
|
666 |
msgstr ""
|
667 |
|
@@ -824,7 +826,7 @@ msgstr ""
|
|
824 |
msgid "This value defines a range from the past to the previous day."
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: includes/event.php:
|
828 |
msgid "No valid start date provided"
|
829 |
msgstr ""
|
830 |
|
@@ -1033,273 +1035,286 @@ msgid ""
|
|
1033 |
msgstr ""
|
1034 |
|
1035 |
#: includes/options_helptexts.php:56
|
1036 |
-
msgid "
|
1037 |
msgstr ""
|
1038 |
|
1039 |
#: includes/options_helptexts.php:57
|
1040 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
"With this option the displayed text for the link to show the event content "
|
1042 |
"can be changed, when collapsing is enabled."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: includes/options_helptexts.php:
|
1046 |
msgid "Text for \"Hide content\""
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/options_helptexts.php:
|
1050 |
msgid ""
|
1051 |
"With this option the displayed text for the link to hide the event content "
|
1052 |
"can be changed, when collapsing is enabled."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: includes/options_helptexts.php:
|
1056 |
msgid "Disable CSS file"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: includes/options_helptexts.php:
|
1060 |
#, php-format
|
1061 |
msgid "Disable the %1$s file."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: includes/options_helptexts.php:
|
1065 |
#, php-format
|
1066 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/options_helptexts.php:
|
1070 |
msgid ""
|
1071 |
"This normally only make sense if you have css conflicts with your theme and "
|
1072 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: includes/options_helptexts.php:
|
1076 |
msgid "Date format in edit form"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/options_helptexts.php:
|
1080 |
msgid ""
|
1081 |
"This option sets the displayed date format for the event date fields in the "
|
1082 |
"event new / edit form."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: includes/options_helptexts.php:
|
1086 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/options_helptexts.php:
|
1090 |
#, php-format
|
1091 |
msgid ""
|
1092 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: includes/options_helptexts.php:
|
1096 |
msgid "Enable RSS feed"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: includes/options_helptexts.php:
|
1100 |
msgid "Enable support for an event RSS feed"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: includes/options_helptexts.php:
|
1104 |
msgid "This option activates a RSS feed for the events."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid ""
|
1109 |
"You have to enable this option if you want to use one of the RSS feed "
|
1110 |
"features."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: includes/options_helptexts.php:
|
1114 |
msgid "Feed name"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/options_helptexts.php:
|
1118 |
#, php-format
|
1119 |
msgid "This option sets the feed name. The default value is %1$s."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
#, php-format
|
1124 |
msgid ""
|
1125 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1126 |
"enabled)."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
msgid "Feed Description"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/options_helptexts.php:
|
1134 |
#, php-format
|
1135 |
msgid "This options set the feed description. The default value is %1$s."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
msgid ""
|
1140 |
"This description will be used in the title for the feed link in the html "
|
1141 |
"head and for the description in the feed itself."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: includes/options_helptexts.php:
|
1145 |
msgid "Listed events"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: includes/options_helptexts.php:
|
1149 |
msgid "Only show upcoming events in feed"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: includes/options_helptexts.php:
|
1153 |
msgid ""
|
1154 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/options_helptexts.php:
|
1162 |
msgid "Add RSS feed link in head"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: includes/options_helptexts.php:
|
1166 |
msgid "Add RSS feed link in the html head"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "This option adds a RSS feed in the html head for the events."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "There are 2 alternatives to include the RSS feed"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid ""
|
1179 |
"The first way is this option to include a link in the html head. This link "
|
1180 |
"will be recognized by browers or feed readers."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: includes/options_helptexts.php:
|
1184 |
#, php-format
|
1185 |
msgid ""
|
1186 |
"The second way is to include a visible feed link directly in the event list."
|
1187 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/options_helptexts.php:
|
1196 |
msgid "Position of the RSS feed link"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/options_helptexts.php:
|
1200 |
msgid "at the top (above the navigation bar)"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/options_helptexts.php:
|
1204 |
msgid "between navigation bar and events"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/options_helptexts.php:
|
1208 |
msgid "at the bottom"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/options_helptexts.php:
|
1212 |
msgid ""
|
1213 |
"This option specifies the position of the RSS feed link in the event list."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
-
#: includes/options_helptexts.php:
|
1218 |
#, php-format
|
1219 |
msgid ""
|
1220 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1221 |
" feed link."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: includes/options_helptexts.php:
|
1225 |
msgid "Align of the RSS feed link"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/options_helptexts.php:
|
1229 |
msgid "left"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: includes/options_helptexts.php:
|
1233 |
msgid "center"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/options_helptexts.php:
|
1237 |
msgid "right"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/options_helptexts.php:
|
1241 |
msgid ""
|
1242 |
"This option specifies the align of the RSS feed link in the event list."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: includes/options_helptexts.php:
|
1246 |
msgid "Feed link text"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: includes/options_helptexts.php:
|
1250 |
msgid ""
|
1251 |
"This option specifies the caption of the RSS feed link in the event list."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/options_helptexts.php:
|
1255 |
msgid ""
|
1256 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1257 |
"image."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: includes/options_helptexts.php:
|
1261 |
msgid "Feed link image"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: includes/options_helptexts.php:
|
1265 |
msgid "Show rss image in feed link"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: includes/options_helptexts.php:
|
1269 |
msgid ""
|
1270 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1271 |
" front of the text."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: includes/options_helptexts.php:
|
1275 |
msgid "Event Category handling"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options_helptexts.php:
|
1279 |
msgid "Use Post Categories"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options_helptexts.php:
|
1283 |
msgid ""
|
1284 |
"Do not maintain seperate categories for the events, and use the existing "
|
1285 |
"post categories instead."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: includes/options_helptexts.php:
|
1289 |
msgid "Attention"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: includes/options_helptexts.php:
|
1293 |
msgid ""
|
1294 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1295 |
" switching page from here."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
#: includes/options.php:40
|
1299 |
-
msgid "
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1303 |
msgid "Hide content"
|
1304 |
msgstr ""
|
1305 |
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
12 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/mibuthu/wp-event-list/language/sl_SI/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "Nastavitve seznama dogodkov"
|
38 |
|
57 |
msgstr[2] ""
|
58 |
msgstr[3] ""
|
59 |
|
60 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
61 |
msgid "General"
|
62 |
msgstr ""
|
63 |
|
432 |
msgid "none"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:50
|
436 |
msgid "Import Events"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
440 |
msgid "Step"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: admin/includes/admin-import.php:70
|
444 |
msgid "Set import file and options"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:73
|
448 |
#, php-format
|
449 |
msgid "Proceed with Step %1$s"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin/includes/admin-import.php:76
|
453 |
msgid "Example file"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:77
|
457 |
#, php-format
|
458 |
msgid ""
|
459 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: admin/includes/admin-import.php:78
|
463 |
msgid "Note"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: admin/includes/admin-import.php:78
|
467 |
msgid ""
|
468 |
"Do not change the column header and separator line (first two lines), "
|
469 |
"otherwise the import will fail!"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
473 |
+
#: admin/includes/admin-import.php:106
|
474 |
msgid "Sorry, there has been an error."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:86
|
478 |
msgid "The file does not exist, please try again."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:94
|
482 |
msgid "The file is not a CSV file."
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:123
|
486 |
msgid "Events review and additonal category selection"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/includes/admin-import.php:126
|
490 |
msgid ""
|
491 |
"Warning: The following category slugs are not available and will be removed "
|
492 |
"from the imported events:"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:132
|
496 |
msgid ""
|
497 |
"If you want to keep these categories, please create these Categories first "
|
498 |
"and do the import afterwards."
|
499 |
msgstr ""
|
500 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
501 |
#: admin/includes/admin-import.php:161
|
502 |
msgid "Import successful!"
|
503 |
msgstr ""
|
506 |
msgid "Go back to All Events"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:166
|
510 |
+
msgid "Import with errors!"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:167
|
514 |
+
#, php-format
|
515 |
+
msgid ""
|
516 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
520 |
#: includes/widget_helptexts.php:8
|
521 |
msgid "Title"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin/includes/admin-import.php:175
|
525 |
msgid "Start Date"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:176
|
529 |
msgid "End Date"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
533 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
534 |
msgid "Time"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
538 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
539 |
#: includes/options_helptexts.php:46
|
540 |
msgid "Location"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: admin/includes/admin-import.php:179
|
544 |
msgid "Content"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/includes/admin-import.php:180
|
548 |
msgid "Category slugs"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/includes/admin-import.php:219
|
552 |
#, php-format
|
553 |
msgid ""
|
554 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
555 |
"missing or not correct!"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin/includes/admin-import.php:251
|
559 |
msgid "Import events"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: admin/includes/admin-import.php:252
|
563 |
msgid "Add additional categories"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
567 |
msgid "Import"
|
568 |
msgstr ""
|
569 |
|
588 |
msgid "Event data"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: admin/includes/admin-new.php:80
|
592 |
msgid "Add Copy"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/includes/admin-new.php:84
|
596 |
msgid "Date"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: admin/includes/admin-new.php:84
|
600 |
msgid "required"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: admin/includes/admin-new.php:87
|
604 |
msgid "Multi-Day Event"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: admin/includes/admin-new.php:106
|
608 |
msgid "Event Title"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/includes/admin-new.php:121
|
612 |
msgid "Event Content"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
616 |
msgid "Event updated."
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
620 |
msgid "View event"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: admin/includes/admin-new.php:184
|
624 |
#, php-format
|
625 |
msgid "Event restored to revision from %1$s"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: admin/includes/admin-new.php:185
|
629 |
msgid "Event published."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/includes/admin-new.php:187
|
633 |
msgid "Event submitted."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
637 |
+
#: admin/includes/admin-new.php:190
|
638 |
msgid "Preview event"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/includes/admin-new.php:188
|
642 |
#, php-format
|
643 |
msgid "Event scheduled for: %1$s>"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: admin/includes/admin-new.php:190
|
647 |
msgid "Event draft updated."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: admin/includes/admin-settings.php:71
|
651 |
msgid "Go to Event Category switching page"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: admin/includes/admin-settings.php:83
|
655 |
msgid "Frontend Settings"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: admin/includes/admin-settings.php:84
|
659 |
msgid "Admin Page Settings"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: admin/includes/admin-settings.php:85
|
663 |
msgid "Feed Settings"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: admin/includes/admin-settings.php:86
|
667 |
msgid "Category Taxonomy"
|
668 |
msgstr ""
|
669 |
|
826 |
msgid "This value defines a range from the past to the previous day."
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/event.php:107
|
830 |
msgid "No valid start date provided"
|
831 |
msgstr ""
|
832 |
|
1035 |
msgstr ""
|
1036 |
|
1037 |
#: includes/options_helptexts.php:56
|
1038 |
+
msgid "Events permalink slug"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: includes/options_helptexts.php:57
|
1042 |
msgid ""
|
1043 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/options_helptexts.php:60
|
1047 |
+
msgid "Text for \"Show content\""
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/options_helptexts.php:61
|
1051 |
+
msgid ""
|
1052 |
"With this option the displayed text for the link to show the event content "
|
1053 |
"can be changed, when collapsing is enabled."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/options_helptexts.php:64
|
1057 |
msgid "Text for \"Hide content\""
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/options_helptexts.php:65
|
1061 |
msgid ""
|
1062 |
"With this option the displayed text for the link to hide the event content "
|
1063 |
"can be changed, when collapsing is enabled."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:68
|
1067 |
msgid "Disable CSS file"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:69
|
1071 |
#, php-format
|
1072 |
msgid "Disable the %1$s file."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: includes/options_helptexts.php:70
|
1076 |
#, php-format
|
1077 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:71
|
1081 |
msgid ""
|
1082 |
"This normally only make sense if you have css conflicts with your theme and "
|
1083 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:75
|
1087 |
msgid "Date format in edit form"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:76
|
1091 |
msgid ""
|
1092 |
"This option sets the displayed date format for the event date fields in the "
|
1093 |
"event new / edit form."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: includes/options_helptexts.php:77
|
1097 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: includes/options_helptexts.php:78
|
1101 |
#, php-format
|
1102 |
msgid ""
|
1103 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1107 |
msgid "Enable RSS feed"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: includes/options_helptexts.php:83
|
1111 |
msgid "Enable support for an event RSS feed"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: includes/options_helptexts.php:84
|
1115 |
msgid "This option activates a RSS feed for the events."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/options_helptexts.php:85
|
1119 |
msgid ""
|
1120 |
"You have to enable this option if you want to use one of the RSS feed "
|
1121 |
"features."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/options_helptexts.php:88
|
1125 |
msgid "Feed name"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:89
|
1129 |
#, php-format
|
1130 |
msgid "This option sets the feed name. The default value is %1$s."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/options_helptexts.php:90
|
1134 |
#, php-format
|
1135 |
msgid ""
|
1136 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1137 |
"enabled)."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: includes/options_helptexts.php:93
|
1141 |
msgid "Feed Description"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: includes/options_helptexts.php:94
|
1145 |
#, php-format
|
1146 |
msgid "This options set the feed description. The default value is %1$s."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:95
|
1150 |
msgid ""
|
1151 |
"This description will be used in the title for the feed link in the html "
|
1152 |
"head and for the description in the feed itself."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/options_helptexts.php:98
|
1156 |
msgid "Listed events"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:99
|
1160 |
msgid "Only show upcoming events in feed"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:100
|
1164 |
msgid ""
|
1165 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:101
|
1169 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/options_helptexts.php:104
|
1173 |
msgid "Add RSS feed link in head"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/options_helptexts.php:105
|
1177 |
msgid "Add RSS feed link in the html head"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: includes/options_helptexts.php:106
|
1181 |
msgid "This option adds a RSS feed in the html head for the events."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/options_helptexts.php:107
|
1185 |
msgid "There are 2 alternatives to include the RSS feed"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/options_helptexts.php:108
|
1189 |
msgid ""
|
1190 |
"The first way is this option to include a link in the html head. This link "
|
1191 |
"will be recognized by browers or feed readers."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/options_helptexts.php:109
|
1195 |
#, php-format
|
1196 |
msgid ""
|
1197 |
"The second way is to include a visible feed link directly in the event list."
|
1198 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:110
|
1202 |
#, php-format
|
1203 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: includes/options_helptexts.php:113
|
1207 |
msgid "Position of the RSS feed link"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: includes/options_helptexts.php:114
|
1211 |
msgid "at the top (above the navigation bar)"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: includes/options_helptexts.php:114
|
1215 |
msgid "between navigation bar and events"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: includes/options_helptexts.php:114
|
1219 |
msgid "at the bottom"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: includes/options_helptexts.php:115
|
1223 |
msgid ""
|
1224 |
"This option specifies the position of the RSS feed link in the event list."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1228 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1229 |
#, php-format
|
1230 |
msgid ""
|
1231 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1232 |
" feed link."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: includes/options_helptexts.php:119
|
1236 |
msgid "Align of the RSS feed link"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: includes/options_helptexts.php:120
|
1240 |
msgid "left"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: includes/options_helptexts.php:120
|
1244 |
msgid "center"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: includes/options_helptexts.php:120
|
1248 |
msgid "right"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: includes/options_helptexts.php:121
|
1252 |
msgid ""
|
1253 |
"This option specifies the align of the RSS feed link in the event list."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options_helptexts.php:125
|
1257 |
msgid "Feed link text"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: includes/options_helptexts.php:126
|
1261 |
msgid ""
|
1262 |
"This option specifies the caption of the RSS feed link in the event list."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:127
|
1266 |
msgid ""
|
1267 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1268 |
"image."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:131
|
1272 |
msgid "Feed link image"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:132
|
1276 |
msgid "Show rss image in feed link"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/options_helptexts.php:133
|
1280 |
msgid ""
|
1281 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1282 |
" front of the text."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options_helptexts.php:139
|
1286 |
msgid "Event Category handling"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/options_helptexts.php:140
|
1290 |
msgid "Use Post Categories"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options_helptexts.php:141
|
1294 |
msgid ""
|
1295 |
"Do not maintain seperate categories for the events, and use the existing "
|
1296 |
"post categories instead."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:142
|
1300 |
msgid "Attention"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:143
|
1304 |
msgid ""
|
1305 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1306 |
" switching page from here."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
#: includes/options.php:40
|
1310 |
+
msgid "events"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: includes/options.php:41
|
1314 |
+
msgid "Show content"
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: includes/options.php:42
|
1318 |
msgid "Hide content"
|
1319 |
msgstr ""
|
1320 |
|
languages/event-list-sv_SE.po
CHANGED
@@ -9,8 +9,8 @@ msgid ""
|
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
12 |
-
"POT-Creation-Date: 2018-
|
13 |
-
"PO-Revision-Date: 2018-
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/mibuthu/wp-event-list/language/sv_SE/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
@@ -33,7 +33,7 @@ msgstr ""
|
|
33 |
msgid "no additional information available"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
37 |
msgid "Event List Settings"
|
38 |
msgstr "Inställningar Event List"
|
39 |
|
@@ -56,7 +56,7 @@ msgid_plural "%s Events"
|
|
56 |
msgstr[0] ""
|
57 |
msgstr[1] ""
|
58 |
|
59 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
60 |
msgid "General"
|
61 |
msgstr "Allmän"
|
62 |
|
@@ -431,80 +431,72 @@ msgstr ""
|
|
431 |
msgid "none"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: admin/includes/admin-import.php:
|
435 |
msgid "Import Events"
|
436 |
msgstr "Importera aktiviteter"
|
437 |
|
438 |
-
#: admin/includes/admin-import.php:
|
439 |
msgid "Step"
|
440 |
msgstr "Steg"
|
441 |
|
442 |
-
#: admin/includes/admin-import.php:
|
443 |
msgid "Set import file and options"
|
444 |
msgstr "Ange importfilen och alternativ"
|
445 |
|
446 |
-
#: admin/includes/admin-import.php:
|
447 |
#, php-format
|
448 |
msgid "Proceed with Step %1$s"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: admin/includes/admin-import.php:
|
452 |
msgid "Example file"
|
453 |
msgstr "Exempelfil"
|
454 |
|
455 |
-
#: admin/includes/admin-import.php:
|
456 |
#, php-format
|
457 |
msgid ""
|
458 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
459 |
msgstr "Du kan ladda ner en exempelfil %1$shere%2$s (Kommaseparared CSV)"
|
460 |
|
461 |
-
#: admin/includes/admin-import.php:
|
462 |
msgid "Note"
|
463 |
msgstr "Anteckning"
|
464 |
|
465 |
-
#: admin/includes/admin-import.php:
|
466 |
msgid ""
|
467 |
"Do not change the column header and separator line (first two lines), "
|
468 |
"otherwise the import will fail!"
|
469 |
msgstr "Ändra inte raderna kolumnrubrik och separator (två rader), annars misslyckas importen!"
|
470 |
|
471 |
-
#: admin/includes/admin-import.php:
|
472 |
-
#: admin/includes/admin-import.php:
|
473 |
msgid "Sorry, there has been an error."
|
474 |
msgstr "Tyvärr, det har blivit ett fel."
|
475 |
|
476 |
-
#: admin/includes/admin-import.php:
|
477 |
msgid "The file does not exist, please try again."
|
478 |
msgstr "Filen existerar inte, försök igen."
|
479 |
|
480 |
-
#: admin/includes/admin-import.php:
|
481 |
msgid "The file is not a CSV file."
|
482 |
msgstr "Filen är inte en CSV-fil."
|
483 |
|
484 |
-
#: admin/includes/admin-import.php:
|
485 |
msgid "Events review and additonal category selection"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/includes/admin-import.php:
|
489 |
msgid ""
|
490 |
"Warning: The following category slugs are not available and will be removed "
|
491 |
"from the imported events:"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: admin/includes/admin-import.php:
|
495 |
msgid ""
|
496 |
"If you want to keep these categories, please create these Categories first "
|
497 |
"and do the import afterwards."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: admin/includes/admin-import.php:156
|
501 |
-
msgid "Import with errors!"
|
502 |
-
msgstr "Import med fel!"
|
503 |
-
|
504 |
-
#: admin/includes/admin-import.php:157
|
505 |
-
msgid "Sorry, an error occurred during import!"
|
506 |
-
msgstr ""
|
507 |
-
|
508 |
#: admin/includes/admin-import.php:161
|
509 |
msgid "Import successful!"
|
510 |
msgstr "Import lyckades!"
|
@@ -513,54 +505,64 @@ msgstr "Import lyckades!"
|
|
513 |
msgid "Go back to All Events"
|
514 |
msgstr "Gå tillbaka till Alla aktiviteter"
|
515 |
|
516 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
517 |
#: includes/widget_helptexts.php:8
|
518 |
msgid "Title"
|
519 |
msgstr "Titel"
|
520 |
|
521 |
-
#: admin/includes/admin-import.php:
|
522 |
msgid "Start Date"
|
523 |
msgstr "Startdatum"
|
524 |
|
525 |
-
#: admin/includes/admin-import.php:
|
526 |
msgid "End Date"
|
527 |
msgstr "Slutdatum"
|
528 |
|
529 |
-
#: admin/includes/admin-import.php:
|
530 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
531 |
msgid "Time"
|
532 |
msgstr "Tid"
|
533 |
|
534 |
-
#: admin/includes/admin-import.php:
|
535 |
-
#: admin/includes/admin-new.php:
|
536 |
#: includes/options_helptexts.php:46
|
537 |
msgid "Location"
|
538 |
msgstr "Plats"
|
539 |
|
540 |
-
#: admin/includes/admin-import.php:
|
541 |
msgid "Content"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/includes/admin-import.php:
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/includes/admin-import.php:
|
556 |
msgid "Import events"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: admin/includes/admin-import.php:
|
560 |
msgid "Add additional categories"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: admin/includes/admin-import.php:
|
564 |
msgid "Import"
|
565 |
msgstr "Importera"
|
566 |
|
@@ -585,82 +587,82 @@ msgstr ""
|
|
585 |
msgid "Event data"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: admin/includes/admin-new.php:
|
589 |
msgid "Add Copy"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: admin/includes/admin-new.php:
|
593 |
msgid "Date"
|
594 |
msgstr "Datum"
|
595 |
|
596 |
-
#: admin/includes/admin-new.php:
|
597 |
msgid "required"
|
598 |
msgstr "krävs"
|
599 |
|
600 |
-
#: admin/includes/admin-new.php:
|
601 |
msgid "Multi-Day Event"
|
602 |
msgstr "Flerdagsaktivitet"
|
603 |
|
604 |
-
#: admin/includes/admin-new.php:
|
605 |
msgid "Event Title"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: admin/includes/admin-new.php:
|
609 |
msgid "Event Content"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: admin/includes/admin-new.php:
|
613 |
msgid "Event updated."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: admin/includes/admin-new.php:
|
617 |
msgid "View event"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: admin/includes/admin-new.php:
|
621 |
#, php-format
|
622 |
msgid "Event restored to revision from %1$s"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: admin/includes/admin-new.php:
|
626 |
msgid "Event published."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: admin/includes/admin-new.php:
|
630 |
msgid "Event submitted."
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: admin/includes/admin-new.php:
|
634 |
-
#: admin/includes/admin-new.php:
|
635 |
msgid "Preview event"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: admin/includes/admin-new.php:
|
639 |
#, php-format
|
640 |
msgid "Event scheduled for: %1$s>"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: admin/includes/admin-new.php:
|
644 |
msgid "Event draft updated."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: admin/includes/admin-settings.php:
|
648 |
msgid "Go to Event Category switching page"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: admin/includes/admin-settings.php:
|
652 |
msgid "Frontend Settings"
|
653 |
msgstr "Utvisningsinställningar"
|
654 |
|
655 |
-
#: admin/includes/admin-settings.php:
|
656 |
msgid "Admin Page Settings"
|
657 |
msgstr "Admininstratörsinställningar"
|
658 |
|
659 |
-
#: admin/includes/admin-settings.php:
|
660 |
msgid "Feed Settings"
|
661 |
msgstr "Flödesinställningar"
|
662 |
|
663 |
-
#: admin/includes/admin-settings.php:
|
664 |
msgid "Category Taxonomy"
|
665 |
msgstr ""
|
666 |
|
@@ -823,7 +825,7 @@ msgstr "Tidigare"
|
|
823 |
msgid "This value defines a range from the past to the previous day."
|
824 |
msgstr "Detta värde definierar ett intervall från det förflutna till föregående dag."
|
825 |
|
826 |
-
#: includes/event.php:
|
827 |
msgid "No valid start date provided"
|
828 |
msgstr ""
|
829 |
|
@@ -1032,273 +1034,286 @@ msgid ""
|
|
1032 |
msgstr ""
|
1033 |
|
1034 |
#: includes/options_helptexts.php:56
|
1035 |
-
msgid "
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/options_helptexts.php:57
|
1039 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1040 |
"With this option the displayed text for the link to show the event content "
|
1041 |
"can be changed, when collapsing is enabled."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: includes/options_helptexts.php:
|
1045 |
msgid "Text for \"Hide content\""
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: includes/options_helptexts.php:
|
1049 |
msgid ""
|
1050 |
"With this option the displayed text for the link to hide the event content "
|
1051 |
"can be changed, when collapsing is enabled."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: includes/options_helptexts.php:
|
1055 |
msgid "Disable CSS file"
|
1056 |
msgstr "Inaktivera CSS-filen"
|
1057 |
|
1058 |
-
#: includes/options_helptexts.php:
|
1059 |
#, php-format
|
1060 |
msgid "Disable the %1$s file."
|
1061 |
msgstr "Inaktivera %1$s filen."
|
1062 |
|
1063 |
-
#: includes/options_helptexts.php:
|
1064 |
#, php-format
|
1065 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1066 |
msgstr "Med denna inställning kan du inaktivera inkluderingen av %1$s filen."
|
1067 |
|
1068 |
-
#: includes/options_helptexts.php:
|
1069 |
msgid ""
|
1070 |
"This normally only make sense if you have css conflicts with your theme and "
|
1071 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1072 |
msgstr "Normalt används detta om du har css-konflikter i ditt tema och du vill bestämma alla valda stilar någon annanstans (ex i temats css)."
|
1073 |
|
1074 |
-
#: includes/options_helptexts.php:
|
1075 |
msgid "Date format in edit form"
|
1076 |
msgstr "Datumformat i redigeringsformulär"
|
1077 |
|
1078 |
-
#: includes/options_helptexts.php:
|
1079 |
msgid ""
|
1080 |
"This option sets the displayed date format for the event date fields in the "
|
1081 |
"event new / edit form."
|
1082 |
msgstr "Detta val ställer in datumformatet för händelsens datumfält i nytt/ändra händelse/event."
|
1083 |
|
1084 |
-
#: includes/options_helptexts.php:
|
1085 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: includes/options_helptexts.php:
|
1089 |
#, php-format
|
1090 |
msgid ""
|
1091 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1092 |
msgstr "Alla val för att specifiera datumformat hittas här: %1$shere%2$s."
|
1093 |
|
1094 |
-
#: includes/options_helptexts.php:
|
1095 |
msgid "Enable RSS feed"
|
1096 |
msgstr "Aktivera RSS-flöde"
|
1097 |
|
1098 |
-
#: includes/options_helptexts.php:
|
1099 |
msgid "Enable support for an event RSS feed"
|
1100 |
msgstr "Aktivera stöd för en aktvitets RSS-flöde"
|
1101 |
|
1102 |
-
#: includes/options_helptexts.php:
|
1103 |
msgid "This option activates a RSS feed for the events."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: includes/options_helptexts.php:
|
1107 |
msgid ""
|
1108 |
"You have to enable this option if you want to use one of the RSS feed "
|
1109 |
"features."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: includes/options_helptexts.php:
|
1113 |
msgid "Feed name"
|
1114 |
msgstr "Flödesnamn"
|
1115 |
|
1116 |
-
#: includes/options_helptexts.php:
|
1117 |
#, php-format
|
1118 |
msgid "This option sets the feed name. The default value is %1$s."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: includes/options_helptexts.php:
|
1122 |
#, php-format
|
1123 |
msgid ""
|
1124 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1125 |
"enabled)."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: includes/options_helptexts.php:
|
1129 |
msgid "Feed Description"
|
1130 |
msgstr "Flödesbeskrivning"
|
1131 |
|
1132 |
-
#: includes/options_helptexts.php:
|
1133 |
#, php-format
|
1134 |
msgid "This options set the feed description. The default value is %1$s."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: includes/options_helptexts.php:
|
1138 |
msgid ""
|
1139 |
"This description will be used in the title for the feed link in the html "
|
1140 |
"head and for the description in the feed itself."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: includes/options_helptexts.php:
|
1144 |
msgid "Listed events"
|
1145 |
msgstr "Listade aktiviteter"
|
1146 |
|
1147 |
-
#: includes/options_helptexts.php:
|
1148 |
msgid "Only show upcoming events in feed"
|
1149 |
msgstr "Visa endast kommande händelser i flödet"
|
1150 |
|
1151 |
-
#: includes/options_helptexts.php:
|
1152 |
msgid ""
|
1153 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: includes/options_helptexts.php:
|
1157 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: includes/options_helptexts.php:
|
1161 |
msgid "Add RSS feed link in head"
|
1162 |
msgstr "Lägg till RSS-flödeslänk i huvud"
|
1163 |
|
1164 |
-
#: includes/options_helptexts.php:
|
1165 |
msgid "Add RSS feed link in the html head"
|
1166 |
msgstr "Lägg till RSS-flödeslänk i html huvudet"
|
1167 |
|
1168 |
-
#: includes/options_helptexts.php:
|
1169 |
msgid "This option adds a RSS feed in the html head for the events."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: includes/options_helptexts.php:
|
1173 |
msgid "There are 2 alternatives to include the RSS feed"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: includes/options_helptexts.php:
|
1177 |
msgid ""
|
1178 |
"The first way is this option to include a link in the html head. This link "
|
1179 |
"will be recognized by browers or feed readers."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: includes/options_helptexts.php:
|
1183 |
#, php-format
|
1184 |
msgid ""
|
1185 |
"The second way is to include a visible feed link directly in the event list."
|
1186 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: includes/options_helptexts.php:
|
1190 |
#, php-format
|
1191 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: includes/options_helptexts.php:
|
1195 |
msgid "Position of the RSS feed link"
|
1196 |
msgstr "Position av RSS-flödeslänk"
|
1197 |
|
1198 |
-
#: includes/options_helptexts.php:
|
1199 |
msgid "at the top (above the navigation bar)"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: includes/options_helptexts.php:
|
1203 |
msgid "between navigation bar and events"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: includes/options_helptexts.php:
|
1207 |
msgid "at the bottom"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: includes/options_helptexts.php:
|
1211 |
msgid ""
|
1212 |
"This option specifies the position of the RSS feed link in the event list."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: includes/options_helptexts.php:
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
#, php-format
|
1218 |
msgid ""
|
1219 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1220 |
" feed link."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: includes/options_helptexts.php:
|
1224 |
msgid "Align of the RSS feed link"
|
1225 |
msgstr "Positionering av RSS-flödeslänk"
|
1226 |
|
1227 |
-
#: includes/options_helptexts.php:
|
1228 |
msgid "left"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: includes/options_helptexts.php:
|
1232 |
msgid "center"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: includes/options_helptexts.php:
|
1236 |
msgid "right"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: includes/options_helptexts.php:
|
1240 |
msgid ""
|
1241 |
"This option specifies the align of the RSS feed link in the event list."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: includes/options_helptexts.php:
|
1245 |
msgid "Feed link text"
|
1246 |
msgstr "Flödets länk-text"
|
1247 |
|
1248 |
-
#: includes/options_helptexts.php:
|
1249 |
msgid ""
|
1250 |
"This option specifies the caption of the RSS feed link in the event list."
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: includes/options_helptexts.php:
|
1254 |
msgid ""
|
1255 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1256 |
"image."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: includes/options_helptexts.php:
|
1260 |
msgid "Feed link image"
|
1261 |
msgstr "Flödets länk-bild"
|
1262 |
|
1263 |
-
#: includes/options_helptexts.php:
|
1264 |
msgid "Show rss image in feed link"
|
1265 |
msgstr "Visa RSS-bild i flödes-länken."
|
1266 |
|
1267 |
-
#: includes/options_helptexts.php:
|
1268 |
msgid ""
|
1269 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1270 |
" front of the text."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: includes/options_helptexts.php:
|
1274 |
msgid "Event Category handling"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: includes/options_helptexts.php:
|
1278 |
msgid "Use Post Categories"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: includes/options_helptexts.php:
|
1282 |
msgid ""
|
1283 |
"Do not maintain seperate categories for the events, and use the existing "
|
1284 |
"post categories instead."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: includes/options_helptexts.php:
|
1288 |
msgid "Attention"
|
1289 |
msgstr "OBS"
|
1290 |
|
1291 |
-
#: includes/options_helptexts.php:
|
1292 |
msgid ""
|
1293 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1294 |
" switching page from here."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
#: includes/options.php:40
|
1298 |
-
msgid "
|
1299 |
msgstr ""
|
1300 |
|
1301 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1302 |
msgid "Hide content"
|
1303 |
msgstr ""
|
1304 |
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
12 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
13 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/mibuthu/wp-event-list/language/sv_SE/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
33 |
msgid "no additional information available"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
37 |
msgid "Event List Settings"
|
38 |
msgstr "Inställningar Event List"
|
39 |
|
56 |
msgstr[0] ""
|
57 |
msgstr[1] ""
|
58 |
|
59 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
60 |
msgid "General"
|
61 |
msgstr "Allmän"
|
62 |
|
431 |
msgid "none"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: admin/includes/admin-import.php:50
|
435 |
msgid "Import Events"
|
436 |
msgstr "Importera aktiviteter"
|
437 |
|
438 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
439 |
msgid "Step"
|
440 |
msgstr "Steg"
|
441 |
|
442 |
+
#: admin/includes/admin-import.php:70
|
443 |
msgid "Set import file and options"
|
444 |
msgstr "Ange importfilen och alternativ"
|
445 |
|
446 |
+
#: admin/includes/admin-import.php:73
|
447 |
#, php-format
|
448 |
msgid "Proceed with Step %1$s"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: admin/includes/admin-import.php:76
|
452 |
msgid "Example file"
|
453 |
msgstr "Exempelfil"
|
454 |
|
455 |
+
#: admin/includes/admin-import.php:77
|
456 |
#, php-format
|
457 |
msgid ""
|
458 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
459 |
msgstr "Du kan ladda ner en exempelfil %1$shere%2$s (Kommaseparared CSV)"
|
460 |
|
461 |
+
#: admin/includes/admin-import.php:78
|
462 |
msgid "Note"
|
463 |
msgstr "Anteckning"
|
464 |
|
465 |
+
#: admin/includes/admin-import.php:78
|
466 |
msgid ""
|
467 |
"Do not change the column header and separator line (first two lines), "
|
468 |
"otherwise the import will fail!"
|
469 |
msgstr "Ändra inte raderna kolumnrubrik och separator (två rader), annars misslyckas importen!"
|
470 |
|
471 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
472 |
+
#: admin/includes/admin-import.php:106
|
473 |
msgid "Sorry, there has been an error."
|
474 |
msgstr "Tyvärr, det har blivit ett fel."
|
475 |
|
476 |
+
#: admin/includes/admin-import.php:86
|
477 |
msgid "The file does not exist, please try again."
|
478 |
msgstr "Filen existerar inte, försök igen."
|
479 |
|
480 |
+
#: admin/includes/admin-import.php:94
|
481 |
msgid "The file is not a CSV file."
|
482 |
msgstr "Filen är inte en CSV-fil."
|
483 |
|
484 |
+
#: admin/includes/admin-import.php:123
|
485 |
msgid "Events review and additonal category selection"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: admin/includes/admin-import.php:126
|
489 |
msgid ""
|
490 |
"Warning: The following category slugs are not available and will be removed "
|
491 |
"from the imported events:"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: admin/includes/admin-import.php:132
|
495 |
msgid ""
|
496 |
"If you want to keep these categories, please create these Categories first "
|
497 |
"and do the import afterwards."
|
498 |
msgstr ""
|
499 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
#: admin/includes/admin-import.php:161
|
501 |
msgid "Import successful!"
|
502 |
msgstr "Import lyckades!"
|
505 |
msgid "Go back to All Events"
|
506 |
msgstr "Gå tillbaka till Alla aktiviteter"
|
507 |
|
508 |
+
#: admin/includes/admin-import.php:166
|
509 |
+
msgid "Import with errors!"
|
510 |
+
msgstr "Import med fel!"
|
511 |
+
|
512 |
+
#: admin/includes/admin-import.php:167
|
513 |
+
#, php-format
|
514 |
+
msgid ""
|
515 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
519 |
#: includes/widget_helptexts.php:8
|
520 |
msgid "Title"
|
521 |
msgstr "Titel"
|
522 |
|
523 |
+
#: admin/includes/admin-import.php:175
|
524 |
msgid "Start Date"
|
525 |
msgstr "Startdatum"
|
526 |
|
527 |
+
#: admin/includes/admin-import.php:176
|
528 |
msgid "End Date"
|
529 |
msgstr "Slutdatum"
|
530 |
|
531 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
532 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
533 |
msgid "Time"
|
534 |
msgstr "Tid"
|
535 |
|
536 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
537 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
538 |
#: includes/options_helptexts.php:46
|
539 |
msgid "Location"
|
540 |
msgstr "Plats"
|
541 |
|
542 |
+
#: admin/includes/admin-import.php:179
|
543 |
msgid "Content"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: admin/includes/admin-import.php:180
|
547 |
msgid "Category slugs"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/includes/admin-import.php:219
|
551 |
#, php-format
|
552 |
msgid ""
|
553 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
554 |
"missing or not correct!"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin/includes/admin-import.php:251
|
558 |
msgid "Import events"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: admin/includes/admin-import.php:252
|
562 |
msgid "Add additional categories"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
566 |
msgid "Import"
|
567 |
msgstr "Importera"
|
568 |
|
587 |
msgid "Event data"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: admin/includes/admin-new.php:80
|
591 |
msgid "Add Copy"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: admin/includes/admin-new.php:84
|
595 |
msgid "Date"
|
596 |
msgstr "Datum"
|
597 |
|
598 |
+
#: admin/includes/admin-new.php:84
|
599 |
msgid "required"
|
600 |
msgstr "krävs"
|
601 |
|
602 |
+
#: admin/includes/admin-new.php:87
|
603 |
msgid "Multi-Day Event"
|
604 |
msgstr "Flerdagsaktivitet"
|
605 |
|
606 |
+
#: admin/includes/admin-new.php:106
|
607 |
msgid "Event Title"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: admin/includes/admin-new.php:121
|
611 |
msgid "Event Content"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
615 |
msgid "Event updated."
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
619 |
msgid "View event"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: admin/includes/admin-new.php:184
|
623 |
#, php-format
|
624 |
msgid "Event restored to revision from %1$s"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: admin/includes/admin-new.php:185
|
628 |
msgid "Event published."
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: admin/includes/admin-new.php:187
|
632 |
msgid "Event submitted."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
636 |
+
#: admin/includes/admin-new.php:190
|
637 |
msgid "Preview event"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: admin/includes/admin-new.php:188
|
641 |
#, php-format
|
642 |
msgid "Event scheduled for: %1$s>"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: admin/includes/admin-new.php:190
|
646 |
msgid "Event draft updated."
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: admin/includes/admin-settings.php:71
|
650 |
msgid "Go to Event Category switching page"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: admin/includes/admin-settings.php:83
|
654 |
msgid "Frontend Settings"
|
655 |
msgstr "Utvisningsinställningar"
|
656 |
|
657 |
+
#: admin/includes/admin-settings.php:84
|
658 |
msgid "Admin Page Settings"
|
659 |
msgstr "Admininstratörsinställningar"
|
660 |
|
661 |
+
#: admin/includes/admin-settings.php:85
|
662 |
msgid "Feed Settings"
|
663 |
msgstr "Flödesinställningar"
|
664 |
|
665 |
+
#: admin/includes/admin-settings.php:86
|
666 |
msgid "Category Taxonomy"
|
667 |
msgstr ""
|
668 |
|
825 |
msgid "This value defines a range from the past to the previous day."
|
826 |
msgstr "Detta värde definierar ett intervall från det förflutna till föregående dag."
|
827 |
|
828 |
+
#: includes/event.php:107
|
829 |
msgid "No valid start date provided"
|
830 |
msgstr ""
|
831 |
|
1034 |
msgstr ""
|
1035 |
|
1036 |
#: includes/options_helptexts.php:56
|
1037 |
+
msgid "Events permalink slug"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
#: includes/options_helptexts.php:57
|
1041 |
msgid ""
|
1042 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: includes/options_helptexts.php:60
|
1046 |
+
msgid "Text for \"Show content\""
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: includes/options_helptexts.php:61
|
1050 |
+
msgid ""
|
1051 |
"With this option the displayed text for the link to show the event content "
|
1052 |
"can be changed, when collapsing is enabled."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: includes/options_helptexts.php:64
|
1056 |
msgid "Text for \"Hide content\""
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: includes/options_helptexts.php:65
|
1060 |
msgid ""
|
1061 |
"With this option the displayed text for the link to hide the event content "
|
1062 |
"can be changed, when collapsing is enabled."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: includes/options_helptexts.php:68
|
1066 |
msgid "Disable CSS file"
|
1067 |
msgstr "Inaktivera CSS-filen"
|
1068 |
|
1069 |
+
#: includes/options_helptexts.php:69
|
1070 |
#, php-format
|
1071 |
msgid "Disable the %1$s file."
|
1072 |
msgstr "Inaktivera %1$s filen."
|
1073 |
|
1074 |
+
#: includes/options_helptexts.php:70
|
1075 |
#, php-format
|
1076 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1077 |
msgstr "Med denna inställning kan du inaktivera inkluderingen av %1$s filen."
|
1078 |
|
1079 |
+
#: includes/options_helptexts.php:71
|
1080 |
msgid ""
|
1081 |
"This normally only make sense if you have css conflicts with your theme and "
|
1082 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1083 |
msgstr "Normalt används detta om du har css-konflikter i ditt tema och du vill bestämma alla valda stilar någon annanstans (ex i temats css)."
|
1084 |
|
1085 |
+
#: includes/options_helptexts.php:75
|
1086 |
msgid "Date format in edit form"
|
1087 |
msgstr "Datumformat i redigeringsformulär"
|
1088 |
|
1089 |
+
#: includes/options_helptexts.php:76
|
1090 |
msgid ""
|
1091 |
"This option sets the displayed date format for the event date fields in the "
|
1092 |
"event new / edit form."
|
1093 |
msgstr "Detta val ställer in datumformatet för händelsens datumfält i nytt/ändra händelse/event."
|
1094 |
|
1095 |
+
#: includes/options_helptexts.php:77
|
1096 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: includes/options_helptexts.php:78
|
1100 |
#, php-format
|
1101 |
msgid ""
|
1102 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1103 |
msgstr "Alla val för att specifiera datumformat hittas här: %1$shere%2$s."
|
1104 |
|
1105 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1106 |
msgid "Enable RSS feed"
|
1107 |
msgstr "Aktivera RSS-flöde"
|
1108 |
|
1109 |
+
#: includes/options_helptexts.php:83
|
1110 |
msgid "Enable support for an event RSS feed"
|
1111 |
msgstr "Aktivera stöd för en aktvitets RSS-flöde"
|
1112 |
|
1113 |
+
#: includes/options_helptexts.php:84
|
1114 |
msgid "This option activates a RSS feed for the events."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: includes/options_helptexts.php:85
|
1118 |
msgid ""
|
1119 |
"You have to enable this option if you want to use one of the RSS feed "
|
1120 |
"features."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: includes/options_helptexts.php:88
|
1124 |
msgid "Feed name"
|
1125 |
msgstr "Flödesnamn"
|
1126 |
|
1127 |
+
#: includes/options_helptexts.php:89
|
1128 |
#, php-format
|
1129 |
msgid "This option sets the feed name. The default value is %1$s."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: includes/options_helptexts.php:90
|
1133 |
#, php-format
|
1134 |
msgid ""
|
1135 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1136 |
"enabled)."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/options_helptexts.php:93
|
1140 |
msgid "Feed Description"
|
1141 |
msgstr "Flödesbeskrivning"
|
1142 |
|
1143 |
+
#: includes/options_helptexts.php:94
|
1144 |
#, php-format
|
1145 |
msgid "This options set the feed description. The default value is %1$s."
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: includes/options_helptexts.php:95
|
1149 |
msgid ""
|
1150 |
"This description will be used in the title for the feed link in the html "
|
1151 |
"head and for the description in the feed itself."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: includes/options_helptexts.php:98
|
1155 |
msgid "Listed events"
|
1156 |
msgstr "Listade aktiviteter"
|
1157 |
|
1158 |
+
#: includes/options_helptexts.php:99
|
1159 |
msgid "Only show upcoming events in feed"
|
1160 |
msgstr "Visa endast kommande händelser i flödet"
|
1161 |
|
1162 |
+
#: includes/options_helptexts.php:100
|
1163 |
msgid ""
|
1164 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: includes/options_helptexts.php:101
|
1168 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: includes/options_helptexts.php:104
|
1172 |
msgid "Add RSS feed link in head"
|
1173 |
msgstr "Lägg till RSS-flödeslänk i huvud"
|
1174 |
|
1175 |
+
#: includes/options_helptexts.php:105
|
1176 |
msgid "Add RSS feed link in the html head"
|
1177 |
msgstr "Lägg till RSS-flödeslänk i html huvudet"
|
1178 |
|
1179 |
+
#: includes/options_helptexts.php:106
|
1180 |
msgid "This option adds a RSS feed in the html head for the events."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: includes/options_helptexts.php:107
|
1184 |
msgid "There are 2 alternatives to include the RSS feed"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: includes/options_helptexts.php:108
|
1188 |
msgid ""
|
1189 |
"The first way is this option to include a link in the html head. This link "
|
1190 |
"will be recognized by browers or feed readers."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: includes/options_helptexts.php:109
|
1194 |
#, php-format
|
1195 |
msgid ""
|
1196 |
"The second way is to include a visible feed link directly in the event list."
|
1197 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/options_helptexts.php:110
|
1201 |
#, php-format
|
1202 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: includes/options_helptexts.php:113
|
1206 |
msgid "Position of the RSS feed link"
|
1207 |
msgstr "Position av RSS-flödeslänk"
|
1208 |
|
1209 |
+
#: includes/options_helptexts.php:114
|
1210 |
msgid "at the top (above the navigation bar)"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: includes/options_helptexts.php:114
|
1214 |
msgid "between navigation bar and events"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: includes/options_helptexts.php:114
|
1218 |
msgid "at the bottom"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: includes/options_helptexts.php:115
|
1222 |
msgid ""
|
1223 |
"This option specifies the position of the RSS feed link in the event list."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1227 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1228 |
#, php-format
|
1229 |
msgid ""
|
1230 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1231 |
" feed link."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: includes/options_helptexts.php:119
|
1235 |
msgid "Align of the RSS feed link"
|
1236 |
msgstr "Positionering av RSS-flödeslänk"
|
1237 |
|
1238 |
+
#: includes/options_helptexts.php:120
|
1239 |
msgid "left"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/options_helptexts.php:120
|
1243 |
msgid "center"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: includes/options_helptexts.php:120
|
1247 |
msgid "right"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: includes/options_helptexts.php:121
|
1251 |
msgid ""
|
1252 |
"This option specifies the align of the RSS feed link in the event list."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: includes/options_helptexts.php:125
|
1256 |
msgid "Feed link text"
|
1257 |
msgstr "Flödets länk-text"
|
1258 |
|
1259 |
+
#: includes/options_helptexts.php:126
|
1260 |
msgid ""
|
1261 |
"This option specifies the caption of the RSS feed link in the event list."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: includes/options_helptexts.php:127
|
1265 |
msgid ""
|
1266 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1267 |
"image."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: includes/options_helptexts.php:131
|
1271 |
msgid "Feed link image"
|
1272 |
msgstr "Flödets länk-bild"
|
1273 |
|
1274 |
+
#: includes/options_helptexts.php:132
|
1275 |
msgid "Show rss image in feed link"
|
1276 |
msgstr "Visa RSS-bild i flödes-länken."
|
1277 |
|
1278 |
+
#: includes/options_helptexts.php:133
|
1279 |
msgid ""
|
1280 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1281 |
" front of the text."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: includes/options_helptexts.php:139
|
1285 |
msgid "Event Category handling"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: includes/options_helptexts.php:140
|
1289 |
msgid "Use Post Categories"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options_helptexts.php:141
|
1293 |
msgid ""
|
1294 |
"Do not maintain seperate categories for the events, and use the existing "
|
1295 |
"post categories instead."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/options_helptexts.php:142
|
1299 |
msgid "Attention"
|
1300 |
msgstr "OBS"
|
1301 |
|
1302 |
+
#: includes/options_helptexts.php:143
|
1303 |
msgid ""
|
1304 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1305 |
" switching page from here."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
#: includes/options.php:40
|
1309 |
+
msgid "events"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
#: includes/options.php:41
|
1313 |
+
msgid "Show content"
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: includes/options.php:42
|
1317 |
msgid "Hide content"
|
1318 |
msgstr ""
|
1319 |
|
languages/event-list-zh_CN.po
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
-
"POT-Creation-Date: 2018-
|
12 |
-
"PO-Revision-Date: 2018-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Chinese (China) (http://www.transifex.com/mibuthu/wp-event-list/language/zh_CN/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -32,7 +32,7 @@ msgstr ""
|
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "活动列表设置"
|
38 |
|
@@ -54,7 +54,7 @@ msgid "%s Event"
|
|
54 |
msgid_plural "%s Events"
|
55 |
msgstr[0] ""
|
56 |
|
57 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
58 |
msgid "General"
|
59 |
msgstr "一般"
|
60 |
|
@@ -429,80 +429,72 @@ msgstr ""
|
|
429 |
msgid "none"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/includes/admin-import.php:
|
433 |
msgid "Import Events"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: admin/includes/admin-import.php:
|
437 |
msgid "Step"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin/includes/admin-import.php:
|
441 |
msgid "Set import file and options"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin/includes/admin-import.php:
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin/includes/admin-import.php:
|
450 |
msgid "Example file"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin/includes/admin-import.php:
|
454 |
#, php-format
|
455 |
msgid ""
|
456 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin/includes/admin-import.php:
|
460 |
msgid "Note"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin/includes/admin-import.php:
|
464 |
msgid ""
|
465 |
"Do not change the column header and separator line (first two lines), "
|
466 |
"otherwise the import will fail!"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: admin/includes/admin-import.php:
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
msgid "Sorry, there has been an error."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/includes/admin-import.php:
|
475 |
msgid "The file does not exist, please try again."
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/includes/admin-import.php:
|
479 |
msgid "The file is not a CSV file."
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: admin/includes/admin-import.php:
|
483 |
msgid "Events review and additonal category selection"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: admin/includes/admin-import.php:
|
487 |
msgid ""
|
488 |
"Warning: The following category slugs are not available and will be removed "
|
489 |
"from the imported events:"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: admin/includes/admin-import.php:
|
493 |
msgid ""
|
494 |
"If you want to keep these categories, please create these Categories first "
|
495 |
"and do the import afterwards."
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: admin/includes/admin-import.php:156
|
499 |
-
msgid "Import with errors!"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: admin/includes/admin-import.php:157
|
503 |
-
msgid "Sorry, an error occurred during import!"
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
#: admin/includes/admin-import.php:161
|
507 |
msgid "Import successful!"
|
508 |
msgstr ""
|
@@ -511,54 +503,64 @@ msgstr ""
|
|
511 |
msgid "Go back to All Events"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
515 |
#: includes/widget_helptexts.php:8
|
516 |
msgid "Title"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin/includes/admin-import.php:
|
520 |
msgid "Start Date"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin/includes/admin-import.php:
|
524 |
msgid "End Date"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: admin/includes/admin-import.php:
|
528 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
529 |
msgid "Time"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/includes/admin-import.php:
|
533 |
-
#: admin/includes/admin-new.php:
|
534 |
#: includes/options_helptexts.php:46
|
535 |
msgid "Location"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: admin/includes/admin-import.php:
|
539 |
msgid "Content"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: admin/includes/admin-import.php:
|
543 |
msgid "Category slugs"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: admin/includes/admin-import.php:
|
547 |
#, php-format
|
548 |
msgid ""
|
549 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
550 |
"missing or not correct!"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: admin/includes/admin-import.php:
|
554 |
msgid "Import events"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: admin/includes/admin-import.php:
|
558 |
msgid "Add additional categories"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: admin/includes/admin-import.php:
|
562 |
msgid "Import"
|
563 |
msgstr ""
|
564 |
|
@@ -583,82 +585,82 @@ msgstr ""
|
|
583 |
msgid "Event data"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: admin/includes/admin-new.php:
|
587 |
msgid "Add Copy"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: admin/includes/admin-new.php:
|
591 |
msgid "Date"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: admin/includes/admin-new.php:
|
595 |
msgid "required"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: admin/includes/admin-new.php:
|
599 |
msgid "Multi-Day Event"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: admin/includes/admin-new.php:
|
603 |
msgid "Event Title"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: admin/includes/admin-new.php:
|
607 |
msgid "Event Content"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: admin/includes/admin-new.php:
|
611 |
msgid "Event updated."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: admin/includes/admin-new.php:
|
615 |
msgid "View event"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: admin/includes/admin-new.php:
|
619 |
#, php-format
|
620 |
msgid "Event restored to revision from %1$s"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: admin/includes/admin-new.php:
|
624 |
msgid "Event published."
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: admin/includes/admin-new.php:
|
628 |
msgid "Event submitted."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: admin/includes/admin-new.php:
|
632 |
-
#: admin/includes/admin-new.php:
|
633 |
msgid "Preview event"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: admin/includes/admin-new.php:
|
637 |
#, php-format
|
638 |
msgid "Event scheduled for: %1$s>"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: admin/includes/admin-new.php:
|
642 |
msgid "Event draft updated."
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: admin/includes/admin-settings.php:
|
646 |
msgid "Go to Event Category switching page"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: admin/includes/admin-settings.php:
|
650 |
msgid "Frontend Settings"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: admin/includes/admin-settings.php:
|
654 |
msgid "Admin Page Settings"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: admin/includes/admin-settings.php:
|
658 |
msgid "Feed Settings"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: admin/includes/admin-settings.php:
|
662 |
msgid "Category Taxonomy"
|
663 |
msgstr ""
|
664 |
|
@@ -821,7 +823,7 @@ msgstr ""
|
|
821 |
msgid "This value defines a range from the past to the previous day."
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: includes/event.php:
|
825 |
msgid "No valid start date provided"
|
826 |
msgstr ""
|
827 |
|
@@ -1030,273 +1032,286 @@ msgid ""
|
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: includes/options_helptexts.php:56
|
1033 |
-
msgid "
|
1034 |
msgstr ""
|
1035 |
|
1036 |
#: includes/options_helptexts.php:57
|
1037 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1038 |
"With this option the displayed text for the link to show the event content "
|
1039 |
"can be changed, when collapsing is enabled."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/options_helptexts.php:
|
1043 |
msgid "Text for \"Hide content\""
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/options_helptexts.php:
|
1047 |
msgid ""
|
1048 |
"With this option the displayed text for the link to hide the event content "
|
1049 |
"can be changed, when collapsing is enabled."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: includes/options_helptexts.php:
|
1053 |
msgid "Disable CSS file"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/options_helptexts.php:
|
1057 |
#, php-format
|
1058 |
msgid "Disable the %1$s file."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: includes/options_helptexts.php:
|
1062 |
#, php-format
|
1063 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: includes/options_helptexts.php:
|
1067 |
msgid ""
|
1068 |
"This normally only make sense if you have css conflicts with your theme and "
|
1069 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: includes/options_helptexts.php:
|
1073 |
msgid "Date format in edit form"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: includes/options_helptexts.php:
|
1077 |
msgid ""
|
1078 |
"This option sets the displayed date format for the event date fields in the "
|
1079 |
"event new / edit form."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: includes/options_helptexts.php:
|
1083 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
#, php-format
|
1088 |
msgid ""
|
1089 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: includes/options_helptexts.php:
|
1093 |
msgid "Enable RSS feed"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/options_helptexts.php:
|
1097 |
msgid "Enable support for an event RSS feed"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/options_helptexts.php:
|
1101 |
msgid "This option activates a RSS feed for the events."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: includes/options_helptexts.php:
|
1105 |
msgid ""
|
1106 |
"You have to enable this option if you want to use one of the RSS feed "
|
1107 |
"features."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: includes/options_helptexts.php:
|
1111 |
msgid "Feed name"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/options_helptexts.php:
|
1115 |
#, php-format
|
1116 |
msgid "This option sets the feed name. The default value is %1$s."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: includes/options_helptexts.php:
|
1120 |
#, php-format
|
1121 |
msgid ""
|
1122 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1123 |
"enabled)."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: includes/options_helptexts.php:
|
1127 |
msgid "Feed Description"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: includes/options_helptexts.php:
|
1131 |
#, php-format
|
1132 |
msgid "This options set the feed description. The default value is %1$s."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: includes/options_helptexts.php:
|
1136 |
msgid ""
|
1137 |
"This description will be used in the title for the feed link in the html "
|
1138 |
"head and for the description in the feed itself."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: includes/options_helptexts.php:
|
1142 |
msgid "Listed events"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/options_helptexts.php:
|
1146 |
msgid "Only show upcoming events in feed"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/options_helptexts.php:
|
1150 |
msgid ""
|
1151 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: includes/options_helptexts.php:
|
1155 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: includes/options_helptexts.php:
|
1159 |
msgid "Add RSS feed link in head"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options_helptexts.php:
|
1163 |
msgid "Add RSS feed link in the html head"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: includes/options_helptexts.php:
|
1167 |
msgid "This option adds a RSS feed in the html head for the events."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: includes/options_helptexts.php:
|
1171 |
msgid "There are 2 alternatives to include the RSS feed"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/options_helptexts.php:
|
1175 |
msgid ""
|
1176 |
"The first way is this option to include a link in the html head. This link "
|
1177 |
"will be recognized by browers or feed readers."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/options_helptexts.php:
|
1181 |
#, php-format
|
1182 |
msgid ""
|
1183 |
"The second way is to include a visible feed link directly in the event list."
|
1184 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/options_helptexts.php:
|
1188 |
#, php-format
|
1189 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: includes/options_helptexts.php:
|
1193 |
msgid "Position of the RSS feed link"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options_helptexts.php:
|
1197 |
msgid "at the top (above the navigation bar)"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options_helptexts.php:
|
1201 |
msgid "between navigation bar and events"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: includes/options_helptexts.php:
|
1205 |
msgid "at the bottom"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: includes/options_helptexts.php:
|
1209 |
msgid ""
|
1210 |
"This option specifies the position of the RSS feed link in the event list."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: includes/options_helptexts.php:
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
#, php-format
|
1216 |
msgid ""
|
1217 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1218 |
" feed link."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: includes/options_helptexts.php:
|
1222 |
msgid "Align of the RSS feed link"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: includes/options_helptexts.php:
|
1226 |
msgid "left"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: includes/options_helptexts.php:
|
1230 |
msgid "center"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: includes/options_helptexts.php:
|
1234 |
msgid "right"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/options_helptexts.php:
|
1238 |
msgid ""
|
1239 |
"This option specifies the align of the RSS feed link in the event list."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/options_helptexts.php:
|
1243 |
msgid "Feed link text"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/options_helptexts.php:
|
1247 |
msgid ""
|
1248 |
"This option specifies the caption of the RSS feed link in the event list."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: includes/options_helptexts.php:
|
1252 |
msgid ""
|
1253 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1254 |
"image."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: includes/options_helptexts.php:
|
1258 |
msgid "Feed link image"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options_helptexts.php:
|
1262 |
msgid "Show rss image in feed link"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options_helptexts.php:
|
1266 |
msgid ""
|
1267 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1268 |
" front of the text."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/options_helptexts.php:
|
1272 |
msgid "Event Category handling"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: includes/options_helptexts.php:
|
1276 |
msgid "Use Post Categories"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/options_helptexts.php:
|
1280 |
msgid ""
|
1281 |
"Do not maintain seperate categories for the events, and use the existing "
|
1282 |
"post categories instead."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options_helptexts.php:
|
1286 |
msgid "Attention"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options_helptexts.php:
|
1290 |
msgid ""
|
1291 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1292 |
" switching page from here."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
#: includes/options.php:40
|
1296 |
-
msgid "
|
1297 |
msgstr ""
|
1298 |
|
1299 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1300 |
msgid "Hide content"
|
1301 |
msgstr ""
|
1302 |
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
12 |
+
"PO-Revision-Date: 2018-02-04 11:46+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Chinese (China) (http://www.transifex.com/mibuthu/wp-event-list/language/zh_CN/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
32 |
msgid "no additional information available"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
36 |
msgid "Event List Settings"
|
37 |
msgstr "活动列表设置"
|
38 |
|
54 |
msgid_plural "%s Events"
|
55 |
msgstr[0] ""
|
56 |
|
57 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
58 |
msgid "General"
|
59 |
msgstr "一般"
|
60 |
|
429 |
msgid "none"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin/includes/admin-import.php:50
|
433 |
msgid "Import Events"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
437 |
msgid "Step"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin/includes/admin-import.php:70
|
441 |
msgid "Set import file and options"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin/includes/admin-import.php:73
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/includes/admin-import.php:76
|
450 |
msgid "Example file"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:77
|
454 |
#, php-format
|
455 |
msgid ""
|
456 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: admin/includes/admin-import.php:78
|
460 |
msgid "Note"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:78
|
464 |
msgid ""
|
465 |
"Do not change the column header and separator line (first two lines), "
|
466 |
"otherwise the import will fail!"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
470 |
+
#: admin/includes/admin-import.php:106
|
471 |
msgid "Sorry, there has been an error."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin/includes/admin-import.php:86
|
475 |
msgid "The file does not exist, please try again."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: admin/includes/admin-import.php:94
|
479 |
msgid "The file is not a CSV file."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: admin/includes/admin-import.php:123
|
483 |
msgid "Events review and additonal category selection"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: admin/includes/admin-import.php:126
|
487 |
msgid ""
|
488 |
"Warning: The following category slugs are not available and will be removed "
|
489 |
"from the imported events:"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin/includes/admin-import.php:132
|
493 |
msgid ""
|
494 |
"If you want to keep these categories, please create these Categories first "
|
495 |
"and do the import afterwards."
|
496 |
msgstr ""
|
497 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
#: admin/includes/admin-import.php:161
|
499 |
msgid "Import successful!"
|
500 |
msgstr ""
|
503 |
msgid "Go back to All Events"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: admin/includes/admin-import.php:166
|
507 |
+
msgid "Import with errors!"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: admin/includes/admin-import.php:167
|
511 |
+
#, php-format
|
512 |
+
msgid ""
|
513 |
+
"Sorry, an error occurred during import! %1$d events could not be imported."
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
517 |
#: includes/widget_helptexts.php:8
|
518 |
msgid "Title"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/includes/admin-import.php:175
|
522 |
msgid "Start Date"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:176
|
526 |
msgid "End Date"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
530 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
531 |
msgid "Time"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
535 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
536 |
#: includes/options_helptexts.php:46
|
537 |
msgid "Location"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/includes/admin-import.php:179
|
541 |
msgid "Content"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:180
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:219
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:251
|
556 |
msgid "Import events"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin/includes/admin-import.php:252
|
560 |
msgid "Add additional categories"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
564 |
msgid "Import"
|
565 |
msgstr ""
|
566 |
|
585 |
msgid "Event data"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: admin/includes/admin-new.php:80
|
589 |
msgid "Add Copy"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: admin/includes/admin-new.php:84
|
593 |
msgid "Date"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: admin/includes/admin-new.php:84
|
597 |
msgid "required"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: admin/includes/admin-new.php:87
|
601 |
msgid "Multi-Day Event"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: admin/includes/admin-new.php:106
|
605 |
msgid "Event Title"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: admin/includes/admin-new.php:121
|
609 |
msgid "Event Content"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
613 |
msgid "Event updated."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
617 |
msgid "View event"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: admin/includes/admin-new.php:184
|
621 |
#, php-format
|
622 |
msgid "Event restored to revision from %1$s"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: admin/includes/admin-new.php:185
|
626 |
msgid "Event published."
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: admin/includes/admin-new.php:187
|
630 |
msgid "Event submitted."
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
634 |
+
#: admin/includes/admin-new.php:190
|
635 |
msgid "Preview event"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: admin/includes/admin-new.php:188
|
639 |
#, php-format
|
640 |
msgid "Event scheduled for: %1$s>"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/includes/admin-new.php:190
|
644 |
msgid "Event draft updated."
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: admin/includes/admin-settings.php:71
|
648 |
msgid "Go to Event Category switching page"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/includes/admin-settings.php:83
|
652 |
msgid "Frontend Settings"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: admin/includes/admin-settings.php:84
|
656 |
msgid "Admin Page Settings"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: admin/includes/admin-settings.php:85
|
660 |
msgid "Feed Settings"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: admin/includes/admin-settings.php:86
|
664 |
msgid "Category Taxonomy"
|
665 |
msgstr ""
|
666 |
|
823 |
msgid "This value defines a range from the past to the previous day."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: includes/event.php:107
|
827 |
msgid "No valid start date provided"
|
828 |
msgstr ""
|
829 |
|
1032 |
msgstr ""
|
1033 |
|
1034 |
#: includes/options_helptexts.php:56
|
1035 |
+
msgid "Events permalink slug"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/options_helptexts.php:57
|
1039 |
msgid ""
|
1040 |
+
"With this option the slug for the events permalink URLs can be defined."
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: includes/options_helptexts.php:60
|
1044 |
+
msgid "Text for \"Show content\""
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: includes/options_helptexts.php:61
|
1048 |
+
msgid ""
|
1049 |
"With this option the displayed text for the link to show the event content "
|
1050 |
"can be changed, when collapsing is enabled."
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/options_helptexts.php:64
|
1054 |
msgid "Text for \"Hide content\""
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: includes/options_helptexts.php:65
|
1058 |
msgid ""
|
1059 |
"With this option the displayed text for the link to hide the event content "
|
1060 |
"can be changed, when collapsing is enabled."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: includes/options_helptexts.php:68
|
1064 |
msgid "Disable CSS file"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: includes/options_helptexts.php:69
|
1068 |
#, php-format
|
1069 |
msgid "Disable the %1$s file."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: includes/options_helptexts.php:70
|
1073 |
#, php-format
|
1074 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: includes/options_helptexts.php:71
|
1078 |
msgid ""
|
1079 |
"This normally only make sense if you have css conflicts with your theme and "
|
1080 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: includes/options_helptexts.php:75
|
1084 |
msgid "Date format in edit form"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: includes/options_helptexts.php:76
|
1088 |
msgid ""
|
1089 |
"This option sets the displayed date format for the event date fields in the "
|
1090 |
"event new / edit form."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: includes/options_helptexts.php:77
|
1094 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/options_helptexts.php:78
|
1098 |
#, php-format
|
1099 |
msgid ""
|
1100 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1104 |
msgid "Enable RSS feed"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:83
|
1108 |
msgid "Enable support for an event RSS feed"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:84
|
1112 |
msgid "This option activates a RSS feed for the events."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/options_helptexts.php:85
|
1116 |
msgid ""
|
1117 |
"You have to enable this option if you want to use one of the RSS feed "
|
1118 |
"features."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/options_helptexts.php:88
|
1122 |
msgid "Feed name"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: includes/options_helptexts.php:89
|
1126 |
#, php-format
|
1127 |
msgid "This option sets the feed name. The default value is %1$s."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:90
|
1131 |
#, php-format
|
1132 |
msgid ""
|
1133 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1134 |
"enabled)."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/options_helptexts.php:93
|
1138 |
msgid "Feed Description"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/options_helptexts.php:94
|
1142 |
#, php-format
|
1143 |
msgid "This options set the feed description. The default value is %1$s."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: includes/options_helptexts.php:95
|
1147 |
msgid ""
|
1148 |
"This description will be used in the title for the feed link in the html "
|
1149 |
"head and for the description in the feed itself."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: includes/options_helptexts.php:98
|
1153 |
msgid "Listed events"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: includes/options_helptexts.php:99
|
1157 |
msgid "Only show upcoming events in feed"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: includes/options_helptexts.php:100
|
1161 |
msgid ""
|
1162 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: includes/options_helptexts.php:101
|
1166 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: includes/options_helptexts.php:104
|
1170 |
msgid "Add RSS feed link in head"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: includes/options_helptexts.php:105
|
1174 |
msgid "Add RSS feed link in the html head"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:106
|
1178 |
msgid "This option adds a RSS feed in the html head for the events."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:107
|
1182 |
msgid "There are 2 alternatives to include the RSS feed"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:108
|
1186 |
msgid ""
|
1187 |
"The first way is this option to include a link in the html head. This link "
|
1188 |
"will be recognized by browers or feed readers."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options_helptexts.php:109
|
1192 |
#, php-format
|
1193 |
msgid ""
|
1194 |
"The second way is to include a visible feed link directly in the event list."
|
1195 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: includes/options_helptexts.php:110
|
1199 |
#, php-format
|
1200 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: includes/options_helptexts.php:113
|
1204 |
msgid "Position of the RSS feed link"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: includes/options_helptexts.php:114
|
1208 |
msgid "at the top (above the navigation bar)"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: includes/options_helptexts.php:114
|
1212 |
msgid "between navigation bar and events"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/options_helptexts.php:114
|
1216 |
msgid "at the bottom"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: includes/options_helptexts.php:115
|
1220 |
msgid ""
|
1221 |
"This option specifies the position of the RSS feed link in the event list."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1225 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1226 |
#, php-format
|
1227 |
msgid ""
|
1228 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1229 |
" feed link."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: includes/options_helptexts.php:119
|
1233 |
msgid "Align of the RSS feed link"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: includes/options_helptexts.php:120
|
1237 |
msgid "left"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/options_helptexts.php:120
|
1241 |
msgid "center"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/options_helptexts.php:120
|
1245 |
msgid "right"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:121
|
1249 |
msgid ""
|
1250 |
"This option specifies the align of the RSS feed link in the event list."
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: includes/options_helptexts.php:125
|
1254 |
msgid "Feed link text"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: includes/options_helptexts.php:126
|
1258 |
msgid ""
|
1259 |
"This option specifies the caption of the RSS feed link in the event list."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/options_helptexts.php:127
|
1263 |
msgid ""
|
1264 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1265 |
"image."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: includes/options_helptexts.php:131
|
1269 |
msgid "Feed link image"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/options_helptexts.php:132
|
1273 |
msgid "Show rss image in feed link"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/options_helptexts.php:133
|
1277 |
msgid ""
|
1278 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1279 |
" front of the text."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: includes/options_helptexts.php:139
|
1283 |
msgid "Event Category handling"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/options_helptexts.php:140
|
1287 |
msgid "Use Post Categories"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/options_helptexts.php:141
|
1291 |
msgid ""
|
1292 |
"Do not maintain seperate categories for the events, and use the existing "
|
1293 |
"post categories instead."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options_helptexts.php:142
|
1297 |
msgid "Attention"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options_helptexts.php:143
|
1301 |
msgid ""
|
1302 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1303 |
" switching page from here."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: includes/options.php:40
|
1307 |
+
msgid "events"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
#: includes/options.php:41
|
1311 |
+
msgid "Show content"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/options.php:42
|
1315 |
msgid "Hide content"
|
1316 |
msgstr ""
|
1317 |
|
languages/event-list.pot
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
9 |
-
"POT-Creation-Date: 2018-
|
10 |
"Language: en\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -27,7 +27,7 @@ msgstr ""
|
|
27 |
msgid "no additional information available"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: admin/admin.php:95 admin/includes/admin-settings.php:
|
31 |
msgid "Event List Settings"
|
32 |
msgstr ""
|
33 |
|
@@ -50,7 +50,7 @@ msgid_plural "%s Events"
|
|
50 |
msgstr[0] ""
|
51 |
msgstr[1] ""
|
52 |
|
53 |
-
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:
|
54 |
msgid "General"
|
55 |
msgstr ""
|
56 |
|
@@ -387,73 +387,65 @@ msgstr ""
|
|
387 |
msgid "none"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin/includes/admin-import.php:
|
391 |
msgid "Import Events"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: admin/includes/admin-import.php:
|
395 |
msgid "Step"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: admin/includes/admin-import.php:
|
399 |
msgid "Set import file and options"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin/includes/admin-import.php:
|
403 |
#, php-format
|
404 |
msgid "Proceed with Step %1$s"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin/includes/admin-import.php:
|
408 |
msgid "Example file"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: admin/includes/admin-import.php:
|
412 |
#, php-format
|
413 |
msgid "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: admin/includes/admin-import.php:
|
417 |
msgid "Note"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: admin/includes/admin-import.php:
|
421 |
msgid "Do not change the column header and separator line (first two lines), otherwise the import will fail!"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: admin/includes/admin-import.php:
|
425 |
-
#: admin/includes/admin-import.php:
|
426 |
msgid "Sorry, there has been an error."
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin/includes/admin-import.php:
|
430 |
msgid "The file does not exist, please try again."
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin/includes/admin-import.php:
|
434 |
msgid "The file is not a CSV file."
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin/includes/admin-import.php:
|
438 |
msgid "Events review and additonal category selection"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
msgid "Warning: The following category slugs are not available and will be removed from the imported events:"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin/includes/admin-import.php:
|
446 |
msgid "If you want to keep these categories, please create these Categories first and do the import afterwards."
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin/includes/admin-import.php:156
|
450 |
-
msgid "Import with errors!"
|
451 |
-
msgstr ""
|
452 |
-
|
453 |
-
#: admin/includes/admin-import.php:157
|
454 |
-
msgid "Sorry, an error occurred during import!"
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
#: admin/includes/admin-import.php:161
|
458 |
msgid "Import successful!"
|
459 |
msgstr ""
|
@@ -462,52 +454,61 @@ msgstr ""
|
|
462 |
msgid "Go back to All Events"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
#: includes/widget_helptexts.php:8
|
467 |
msgid "Title"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
msgid "Start Date"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/includes/admin-import.php:
|
475 |
msgid "End Date"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/includes/admin-import.php:
|
479 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
480 |
msgid "Time"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: admin/includes/admin-import.php:
|
484 |
-
#: admin/includes/admin-new.php:
|
485 |
#: includes/options_helptexts.php:46
|
486 |
msgid "Location"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid "Content"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/includes/admin-import.php:
|
494 |
msgid "Category slugs"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/includes/admin-import.php:
|
498 |
#, php-format
|
499 |
msgid "There was an error at line %1$s when reading this CSV file: Header line is missing or not correct!"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: admin/includes/admin-import.php:
|
503 |
msgid "Import events"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: admin/includes/admin-import.php:
|
507 |
msgid "Add additional categories"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: admin/includes/admin-import.php:
|
511 |
msgid "Import"
|
512 |
msgstr ""
|
513 |
|
@@ -532,82 +533,82 @@ msgstr ""
|
|
532 |
msgid "Event data"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: admin/includes/admin-new.php:
|
536 |
msgid "Add Copy"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: admin/includes/admin-new.php:
|
540 |
msgid "Date"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/includes/admin-new.php:
|
544 |
msgid "required"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin/includes/admin-new.php:
|
548 |
msgid "Multi-Day Event"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin/includes/admin-new.php:
|
552 |
msgid "Event Title"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/includes/admin-new.php:
|
556 |
msgid "Event Content"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: admin/includes/admin-new.php:
|
560 |
msgid "Event updated."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: admin/includes/admin-new.php:
|
564 |
msgid "View event"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: admin/includes/admin-new.php:
|
568 |
#, php-format
|
569 |
msgid "Event restored to revision from %1$s"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: admin/includes/admin-new.php:
|
573 |
msgid "Event published."
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: admin/includes/admin-new.php:
|
577 |
msgid "Event submitted."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: admin/includes/admin-new.php:
|
581 |
-
#: admin/includes/admin-new.php:
|
582 |
msgid "Preview event"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: admin/includes/admin-new.php:
|
586 |
#, php-format
|
587 |
msgid "Event scheduled for: %1$s>"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: admin/includes/admin-new.php:
|
591 |
msgid "Event draft updated."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: admin/includes/admin-settings.php:
|
595 |
msgid "Go to Event Category switching page"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: admin/includes/admin-settings.php:
|
599 |
msgid "Frontend Settings"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: admin/includes/admin-settings.php:
|
603 |
msgid "Admin Page Settings"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: admin/includes/admin-settings.php:
|
607 |
msgid "Feed Settings"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: admin/includes/admin-settings.php:
|
611 |
msgid "Category Taxonomy"
|
612 |
msgstr ""
|
613 |
|
@@ -760,7 +761,7 @@ msgstr ""
|
|
760 |
msgid "This value defines a range from the past to the previous day."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: includes/event.php:
|
764 |
msgid "No valid start date provided"
|
765 |
msgstr ""
|
766 |
|
@@ -949,240 +950,252 @@ msgid "If you want to load your own language file from the general language dire
|
|
949 |
msgstr ""
|
950 |
|
951 |
#: includes/options_helptexts.php:56
|
952 |
-
msgid "
|
953 |
msgstr ""
|
954 |
|
955 |
#: includes/options_helptexts.php:57
|
956 |
-
msgid "With this option the
|
957 |
msgstr ""
|
958 |
|
959 |
#: includes/options_helptexts.php:60
|
960 |
-
msgid "Text for \"
|
961 |
msgstr ""
|
962 |
|
963 |
#: includes/options_helptexts.php:61
|
964 |
-
msgid "With this option the displayed text for the link to
|
965 |
msgstr ""
|
966 |
|
967 |
#: includes/options_helptexts.php:64
|
968 |
-
msgid "
|
969 |
msgstr ""
|
970 |
|
971 |
#: includes/options_helptexts.php:65
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
972 |
#, php-format
|
973 |
msgid "Disable the %1$s file."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: includes/options_helptexts.php:
|
977 |
#, php-format
|
978 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: includes/options_helptexts.php:
|
982 |
msgid "This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css)."
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: includes/options_helptexts.php:
|
986 |
msgid "Date format in edit form"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: includes/options_helptexts.php:
|
990 |
msgid "This option sets the displayed date format for the event date fields in the event new / edit form."
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: includes/options_helptexts.php:
|
994 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: includes/options_helptexts.php:
|
998 |
#, php-format
|
999 |
msgid "All available options to specify the date format can be found %1$shere%2$s."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/options_helptexts.php:
|
1003 |
msgid "Enable RSS feed"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: includes/options_helptexts.php:
|
1007 |
msgid "Enable support for an event RSS feed"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: includes/options_helptexts.php:
|
1011 |
msgid "This option activates a RSS feed for the events."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: includes/options_helptexts.php:
|
1015 |
msgid "You have to enable this option if you want to use one of the RSS feed features."
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/options_helptexts.php:
|
1019 |
msgid "Feed name"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: includes/options_helptexts.php:
|
1023 |
#, php-format
|
1024 |
msgid "This option sets the feed name. The default value is %1$s."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: includes/options_helptexts.php:
|
1028 |
#, php-format
|
1029 |
msgid "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled)."
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: includes/options_helptexts.php:
|
1033 |
msgid "Feed Description"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: includes/options_helptexts.php:
|
1037 |
#, php-format
|
1038 |
msgid "This options set the feed description. The default value is %1$s."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: includes/options_helptexts.php:
|
1042 |
msgid "This description will be used in the title for the feed link in the html head and for the description in the feed itself."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: includes/options_helptexts.php:
|
1046 |
msgid "Listed events"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/options_helptexts.php:
|
1050 |
msgid "Only show upcoming events in feed"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/options_helptexts.php:
|
1054 |
msgid "If this option is enabled only the upcoming events are listed in the feed."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: includes/options_helptexts.php:
|
1058 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: includes/options_helptexts.php:
|
1062 |
msgid "Add RSS feed link in head"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: includes/options_helptexts.php:
|
1066 |
msgid "Add RSS feed link in the html head"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/options_helptexts.php:
|
1070 |
msgid "This option adds a RSS feed in the html head for the events."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/options_helptexts.php:
|
1074 |
msgid "There are 2 alternatives to include the RSS feed"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: includes/options_helptexts.php:
|
1078 |
msgid "The first way is this option to include a link in the html head. This link will be recognized by browers or feed readers."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: includes/options_helptexts.php:
|
1082 |
#, php-format
|
1083 |
msgid "The second way is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute %1$s to %2$s."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
#, php-format
|
1088 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: includes/options_helptexts.php:
|
1092 |
msgid "Position of the RSS feed link"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: includes/options_helptexts.php:
|
1096 |
msgid "at the top (above the navigation bar)"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: includes/options_helptexts.php:
|
1100 |
msgid "between navigation bar and events"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: includes/options_helptexts.php:
|
1104 |
msgid "at the bottom"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid "This option specifies the position of the RSS feed link in the event list."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/options_helptexts.php:
|
1112 |
-
#: includes/options_helptexts.php:
|
1113 |
#, php-format
|
1114 |
msgid "You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/options_helptexts.php:
|
1118 |
msgid "Align of the RSS feed link"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: includes/options_helptexts.php:
|
1122 |
msgid "left"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: includes/options_helptexts.php:
|
1126 |
msgid "center"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
msgid "right"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/options_helptexts.php:
|
1134 |
msgid "This option specifies the align of the RSS feed link in the event list."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: includes/options_helptexts.php:
|
1138 |
msgid "Feed link text"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: includes/options_helptexts.php:
|
1142 |
msgid "This option specifies the caption of the RSS feed link in the event list."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/options_helptexts.php:
|
1146 |
msgid "Insert an empty text to hide any text if you only want to show the rss image."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/options_helptexts.php:
|
1150 |
msgid "Feed link image"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: includes/options_helptexts.php:
|
1154 |
msgid "Show rss image in feed link"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid "This option specifies if the an image should be dispayed in the feed link in front of the text."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/options_helptexts.php:
|
1162 |
msgid "Event Category handling"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: includes/options_helptexts.php:
|
1166 |
msgid "Use Post Categories"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "Do not maintain seperate categories for the events, and use the existing post categories instead."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "Attention"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid "This option cannot be changed directly, but you can go to the Event Category switching page from here."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
#: includes/options.php:40
|
1182 |
-
msgid "
|
1183 |
msgstr ""
|
1184 |
|
1185 |
#: includes/options.php:41
|
|
|
|
|
|
|
|
|
1186 |
msgid "Hide content"
|
1187 |
msgstr ""
|
1188 |
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
9 |
+
"POT-Creation-Date: 2018-02-04 12:46+0100\n"
|
10 |
"Language: en\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
27 |
msgid "no additional information available"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin/admin.php:95 admin/includes/admin-settings.php:65
|
31 |
msgid "Event List Settings"
|
32 |
msgstr ""
|
33 |
|
50 |
msgstr[0] ""
|
51 |
msgstr[1] ""
|
52 |
|
53 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
54 |
msgid "General"
|
55 |
msgstr ""
|
56 |
|
387 |
msgid "none"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: admin/includes/admin-import.php:50
|
391 |
msgid "Import Events"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: admin/includes/admin-import.php:70 admin/includes/admin-import.php:123
|
395 |
msgid "Step"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin/includes/admin-import.php:70
|
399 |
msgid "Set import file and options"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: admin/includes/admin-import.php:73
|
403 |
#, php-format
|
404 |
msgid "Proceed with Step %1$s"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin/includes/admin-import.php:76
|
408 |
msgid "Example file"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: admin/includes/admin-import.php:77
|
412 |
#, php-format
|
413 |
msgid "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: admin/includes/admin-import.php:78
|
417 |
msgid "Note"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: admin/includes/admin-import.php:78
|
421 |
msgid "Do not change the column header and separator line (first two lines), otherwise the import will fail!"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: admin/includes/admin-import.php:85 admin/includes/admin-import.php:93
|
425 |
+
#: admin/includes/admin-import.php:106
|
426 |
msgid "Sorry, there has been an error."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: admin/includes/admin-import.php:86
|
430 |
msgid "The file does not exist, please try again."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:94
|
434 |
msgid "The file is not a CSV file."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:123
|
438 |
msgid "Events review and additonal category selection"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:126
|
442 |
msgid "Warning: The following category slugs are not available and will be removed from the imported events:"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: admin/includes/admin-import.php:132
|
446 |
msgid "If you want to keep these categories, please create these Categories first and do the import afterwards."
|
447 |
msgstr ""
|
448 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
#: admin/includes/admin-import.php:161
|
450 |
msgid "Import successful!"
|
451 |
msgstr ""
|
454 |
msgid "Go back to All Events"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: admin/includes/admin-import.php:166
|
458 |
+
msgid "Import with errors!"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: admin/includes/admin-import.php:167
|
462 |
+
#, php-format
|
463 |
+
msgid "Sorry, an error occurred during import! %1$d events could not be imported."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: admin/includes/admin-import.php:174 admin/includes/admin-main.php:60
|
467 |
#: includes/widget_helptexts.php:8
|
468 |
msgid "Title"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: admin/includes/admin-import.php:175
|
472 |
msgid "Start Date"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:176
|
476 |
msgid "End Date"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:91
|
480 |
#: includes/options_helptexts.php:40 includes/options_helptexts.php:41
|
481 |
msgid "Time"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-main.php:61
|
485 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:45
|
486 |
#: includes/options_helptexts.php:46
|
487 |
msgid "Location"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: admin/includes/admin-import.php:179
|
491 |
msgid "Content"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: admin/includes/admin-import.php:180
|
495 |
msgid "Category slugs"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: admin/includes/admin-import.php:219
|
499 |
#, php-format
|
500 |
msgid "There was an error at line %1$s when reading this CSV file: Header line is missing or not correct!"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: admin/includes/admin-import.php:251
|
504 |
msgid "Import events"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:252
|
508 |
msgid "Add additional categories"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: admin/includes/admin-import.php:259 admin/includes/admin-main.php:192
|
512 |
msgid "Import"
|
513 |
msgstr ""
|
514 |
|
533 |
msgid "Event data"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: admin/includes/admin-new.php:80
|
537 |
msgid "Add Copy"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/includes/admin-new.php:84
|
541 |
msgid "Date"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-new.php:84
|
545 |
msgid "required"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-new.php:87
|
549 |
msgid "Multi-Day Event"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin/includes/admin-new.php:106
|
553 |
msgid "Event Title"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/includes/admin-new.php:121
|
557 |
msgid "Event Content"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:183
|
561 |
msgid "Event updated."
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/includes/admin-new.php:180 admin/includes/admin-new.php:185
|
565 |
msgid "View event"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: admin/includes/admin-new.php:184
|
569 |
#, php-format
|
570 |
msgid "Event restored to revision from %1$s"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: admin/includes/admin-new.php:185
|
574 |
msgid "Event published."
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: admin/includes/admin-new.php:187
|
578 |
msgid "Event submitted."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: admin/includes/admin-new.php:187 admin/includes/admin-new.php:189
|
582 |
+
#: admin/includes/admin-new.php:190
|
583 |
msgid "Preview event"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: admin/includes/admin-new.php:188
|
587 |
#, php-format
|
588 |
msgid "Event scheduled for: %1$s>"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: admin/includes/admin-new.php:190
|
592 |
msgid "Event draft updated."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/includes/admin-settings.php:71
|
596 |
msgid "Go to Event Category switching page"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: admin/includes/admin-settings.php:83
|
600 |
msgid "Frontend Settings"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: admin/includes/admin-settings.php:84
|
604 |
msgid "Admin Page Settings"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: admin/includes/admin-settings.php:85
|
608 |
msgid "Feed Settings"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/includes/admin-settings.php:86
|
612 |
msgid "Category Taxonomy"
|
613 |
msgstr ""
|
614 |
|
761 |
msgid "This value defines a range from the past to the previous day."
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: includes/event.php:107
|
765 |
msgid "No valid start date provided"
|
766 |
msgstr ""
|
767 |
|
950 |
msgstr ""
|
951 |
|
952 |
#: includes/options_helptexts.php:56
|
953 |
+
msgid "Events permalink slug"
|
954 |
msgstr ""
|
955 |
|
956 |
#: includes/options_helptexts.php:57
|
957 |
+
msgid "With this option the slug for the events permalink URLs can be defined."
|
958 |
msgstr ""
|
959 |
|
960 |
#: includes/options_helptexts.php:60
|
961 |
+
msgid "Text for \"Show content\""
|
962 |
msgstr ""
|
963 |
|
964 |
#: includes/options_helptexts.php:61
|
965 |
+
msgid "With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled."
|
966 |
msgstr ""
|
967 |
|
968 |
#: includes/options_helptexts.php:64
|
969 |
+
msgid "Text for \"Hide content\""
|
970 |
msgstr ""
|
971 |
|
972 |
#: includes/options_helptexts.php:65
|
973 |
+
msgid "With this option the displayed text for the link to hide the event content can be changed, when collapsing is enabled."
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: includes/options_helptexts.php:68
|
977 |
+
msgid "Disable CSS file"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: includes/options_helptexts.php:69
|
981 |
#, php-format
|
982 |
msgid "Disable the %1$s file."
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: includes/options_helptexts.php:70
|
986 |
#, php-format
|
987 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: includes/options_helptexts.php:71
|
991 |
msgid "This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css)."
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: includes/options_helptexts.php:75
|
995 |
msgid "Date format in edit form"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: includes/options_helptexts.php:76
|
999 |
msgid "This option sets the displayed date format for the event date fields in the event new / edit form."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: includes/options_helptexts.php:77
|
1003 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: includes/options_helptexts.php:78
|
1007 |
#, php-format
|
1008 |
msgid "All available options to specify the date format can be found %1$shere%2$s."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: includes/options_helptexts.php:82 includes/options_helptexts.php:110
|
1012 |
msgid "Enable RSS feed"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: includes/options_helptexts.php:83
|
1016 |
msgid "Enable support for an event RSS feed"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: includes/options_helptexts.php:84
|
1020 |
msgid "This option activates a RSS feed for the events."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: includes/options_helptexts.php:85
|
1024 |
msgid "You have to enable this option if you want to use one of the RSS feed features."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: includes/options_helptexts.php:88
|
1028 |
msgid "Feed name"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: includes/options_helptexts.php:89
|
1032 |
#, php-format
|
1033 |
msgid "This option sets the feed name. The default value is %1$s."
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: includes/options_helptexts.php:90
|
1037 |
#, php-format
|
1038 |
msgid "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled)."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: includes/options_helptexts.php:93
|
1042 |
msgid "Feed Description"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: includes/options_helptexts.php:94
|
1046 |
#, php-format
|
1047 |
msgid "This options set the feed description. The default value is %1$s."
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:95
|
1051 |
msgid "This description will be used in the title for the feed link in the html head and for the description in the feed itself."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:98
|
1055 |
msgid "Listed events"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:99
|
1059 |
msgid "Only show upcoming events in feed"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/options_helptexts.php:100
|
1063 |
msgid "If this option is enabled only the upcoming events are listed in the feed."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:101
|
1067 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:104
|
1071 |
msgid "Add RSS feed link in head"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: includes/options_helptexts.php:105
|
1075 |
msgid "Add RSS feed link in the html head"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:106
|
1079 |
msgid "This option adds a RSS feed in the html head for the events."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/options_helptexts.php:107
|
1083 |
msgid "There are 2 alternatives to include the RSS feed"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:108
|
1087 |
msgid "The first way is this option to include a link in the html head. This link will be recognized by browers or feed readers."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:109
|
1091 |
#, php-format
|
1092 |
msgid "The second way is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute %1$s to %2$s."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: includes/options_helptexts.php:110
|
1096 |
#, php-format
|
1097 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: includes/options_helptexts.php:113
|
1101 |
msgid "Position of the RSS feed link"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: includes/options_helptexts.php:114
|
1105 |
msgid "at the top (above the navigation bar)"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: includes/options_helptexts.php:114
|
1109 |
msgid "between navigation bar and events"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: includes/options_helptexts.php:114
|
1113 |
msgid "at the bottom"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/options_helptexts.php:115
|
1117 |
msgid "This option specifies the position of the RSS feed link in the event list."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1121 |
+
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1122 |
#, php-format
|
1123 |
msgid "You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/options_helptexts.php:119
|
1127 |
msgid "Align of the RSS feed link"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:120
|
1131 |
msgid "left"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/options_helptexts.php:120
|
1135 |
msgid "center"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/options_helptexts.php:120
|
1139 |
msgid "right"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: includes/options_helptexts.php:121
|
1143 |
msgid "This option specifies the align of the RSS feed link in the event list."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: includes/options_helptexts.php:125
|
1147 |
msgid "Feed link text"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: includes/options_helptexts.php:126
|
1151 |
msgid "This option specifies the caption of the RSS feed link in the event list."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: includes/options_helptexts.php:127
|
1155 |
msgid "Insert an empty text to hide any text if you only want to show the rss image."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: includes/options_helptexts.php:131
|
1159 |
msgid "Feed link image"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/options_helptexts.php:132
|
1163 |
msgid "Show rss image in feed link"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:133
|
1167 |
msgid "This option specifies if the an image should be dispayed in the feed link in front of the text."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: includes/options_helptexts.php:139
|
1171 |
msgid "Event Category handling"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: includes/options_helptexts.php:140
|
1175 |
msgid "Use Post Categories"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/options_helptexts.php:141
|
1179 |
msgid "Do not maintain seperate categories for the events, and use the existing post categories instead."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/options_helptexts.php:142
|
1183 |
msgid "Attention"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/options_helptexts.php:143
|
1187 |
msgid "This option cannot be changed directly, but you can go to the Event Category switching page from here."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
#: includes/options.php:40
|
1191 |
+
msgid "events"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
#: includes/options.php:41
|
1195 |
+
msgid "Show content"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: includes/options.php:42
|
1199 |
msgid "Hide content"
|
1200 |
msgstr ""
|
1201 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
|
5 |
Requires at least: 4.2
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 0.8.
|
8 |
Plugin URI: http://wordpress.org/extend/plugins/event-list
|
9 |
Licence: GPLv2
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -85,6 +85,18 @@ Another possibility would be to call the wordpress function "do_shortcode()".
|
|
85 |
|
86 |
== Changelog ==
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
= 0.8.0 (2018-01-27) =
|
89 |
* switch plugin and data structure to use custom post types with custom metadata and wordpress categories (with all the advantages and new features provided for custom post types)
|
90 |
* huge rewrite of the plugin required to implement the above modification
|
@@ -95,6 +107,7 @@ The modifications in this versions are huge. This modifications will bring some
|
|
95 |
But inspite of a lot testing it doesn't eliminate any possibility for some regressions or problems during update process to the new data structure.
|
96 |
|
97 |
Due to this there are some steps you should consider before and after this upgrade:
|
|
|
98 |
* have a look at the support forum if there are issues reported with the new version, and wait with the upgrade until these are solved
|
99 |
* if you have a big productive site probably do not upgrade in the first days
|
100 |
* have a look at the PHP error file after upgrade, the upgrade function will write some informations regarding the upgrade process to this file
|
@@ -103,10 +116,12 @@ Due to this there are some steps you should consider before and after this upgra
|
|
103 |
* please report problems with the upgrade or issues/regressions after the upgrade in the support forum or on github
|
104 |
|
105 |
There are some manual changes required after the upgrade:
|
|
|
106 |
* renaming the shortcode attribute "show_details" to "show_content" in all shortcodes
|
107 |
* renaming the shortcode attribute "details_length" to "content_length" in all shortcodes
|
108 |
* renaming the shortcode attribute "collapse_details" to "collapse_content" in all shortcodes
|
109 |
* update your widget (goto Admin page -> Appearance -> Widget and "Safe" all event-list widgets)
|
|
|
110 |
|
111 |
= 0.7.12 (2017-10-09) =
|
112 |
* fixed some mature issues with older wordpress versions
|
4 |
Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
|
5 |
Requires at least: 4.2
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 0.8.1
|
8 |
Plugin URI: http://wordpress.org/extend/plugins/event-list
|
9 |
Licence: GPLv2
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
85 |
|
86 |
== Changelog ==
|
87 |
|
88 |
+
= 0.8.1 (2018-02-04) =
|
89 |
+
* added option to change events permalink slug
|
90 |
+
* added some additional upgrade check to improve the 0.8.0 upgrade
|
91 |
+
* fixed time display on frontpage
|
92 |
+
* fixed copy event function
|
93 |
+
* fixed issues with older php versions
|
94 |
+
* fixed issues with older WordPress versions
|
95 |
+
|
96 |
+
Attention:
|
97 |
+
This version fixes a lot of issues reported with the 0.8.0 version. It is now more safe to update, but in general the information provided in the changelog of 0.8.0 is still valid.
|
98 |
+
Also check the required manual changes provided there.
|
99 |
+
|
100 |
= 0.8.0 (2018-01-27) =
|
101 |
* switch plugin and data structure to use custom post types with custom metadata and wordpress categories (with all the advantages and new features provided for custom post types)
|
102 |
* huge rewrite of the plugin required to implement the above modification
|
107 |
But inspite of a lot testing it doesn't eliminate any possibility for some regressions or problems during update process to the new data structure.
|
108 |
|
109 |
Due to this there are some steps you should consider before and after this upgrade:
|
110 |
+
|
111 |
* have a look at the support forum if there are issues reported with the new version, and wait with the upgrade until these are solved
|
112 |
* if you have a big productive site probably do not upgrade in the first days
|
113 |
* have a look at the PHP error file after upgrade, the upgrade function will write some informations regarding the upgrade process to this file
|
116 |
* please report problems with the upgrade or issues/regressions after the upgrade in the support forum or on github
|
117 |
|
118 |
There are some manual changes required after the upgrade:
|
119 |
+
|
120 |
* renaming the shortcode attribute "show_details" to "show_content" in all shortcodes
|
121 |
* renaming the shortcode attribute "details_length" to "content_length" in all shortcodes
|
122 |
* renaming the shortcode attribute "collapse_details" to "collapse_content" in all shortcodes
|
123 |
* update your widget (goto Admin page -> Appearance -> Widget and "Safe" all event-list widgets)
|
124 |
+
* the following classes were renamed, adapt them in your custom CSS-styles if required: .start-date -> .startdate, .end-date -> .enddate, .event-details -> .event-content
|
125 |
|
126 |
= 0.7.12 (2017-10-09) =
|
127 |
* fixed some mature issues with older wordpress versions
|